﻿/*
   New Perspectives on HTML and CSS
   Tutorial 4
   Tutorial Case

   Cycle Pathology Styles to Reset Style Defaults
   Author: 
   Date:   

   Filename:         cp_reset.css
   Supporting Files: none

*/
/*Display HTMLS structural elements as blocks*/

  articles,aside,figure,figcaption,footer,hggroup,header,section,nav 
  
  {
               display:block;
  }


/* Set the default page element styles */

body * {
   font-family: Verdana, Geneva, sans-serif;
   font-size: 100%;
   font-weight: inherit;
   line-height: 1.2em;
   list-style: none;
   margin: 0px;
   padding: 0px;
   text-decoration: none;
   vertical-align: baseline;
}

