/*
   New Perspectives on HTML and CSS
   Tutorial 8
   Tutorial Case

   Tree and Book Style Sheet

   Filename:         base.css
   Supporting Files: 

*/

/* Basic styles to be used with all devices and under all conditions */



/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}


/* Set the default page element styles */

body {
   margin: 0px;
   width: 100%;
}

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;

}


/* Web table styles */

section#main table {
   border: 1px solid black;
   border-collapse: collapse;
   font-size: 12px;
   width: 90%;
   margin: 10px auto;
}

section#main table td, section#main table th {
   border: 1px solid black;
   padding: 5px;
   text-align: left;
   background-color: white;
}

section#main table th {
   font-weight: bold;
}