/*
   New Perspectives on HTML and CSS
   Tutorial 9
   Case Problem 4
   Filename: mw.css

   This file contains styles used in the Maxwell Scientific Web site

*/				
		p, ul
		{
		   color: yellow;
		}
		
	     /*Navigation list styles */

		#headernav 
		{		   
		   width: 100%;		   
		}

		#headernav li 
		{
           display: block;		
		   width: 8%;
		   margin-left: 10%;
		   float: left;
		   margin-bottom: 5px; 
        }		   


		#headernav li a {
		   display: block;
		   width: 100%;
		   height: 2em;
		   line-height: 2em;
		   text-align: center;
		   color: white;
		   font-size: 0.8em;
		   -moz-border-radius: 2em;
		   -webkit-border-radius: 2em;
		   border-radius: 2em;
		   background-color: rgb(233, 69, 0);
		}

		#headernav li a:hover {
		   background-color: rgb(235, 152, 66);
		}
	  