/* CSS Document */

/* @group structure */

#head 		{ background-color: #e1ecf6; 
				height: 100px;
				padding-top:0px; 
				}
				 
.wrap 		{ width:900px; 
				margin: 0 auto; 
				}


/* @group core nav menu */

#nav 		{ padding: 10px;  
				list-style: none; 
				height: 110px;   /* This is the height of the nav */
				}			
								
 
#nav li 		{ float: left; display: block; 
				background-color:#002800; 
				position:relative; 
				z-index: 999; 
				margin: 0 1px; 
					}
 
#nav li a 	{ display: block; 
				font-size:20px; font-weight: bold; line-height: 40px; 
				text-decoration: none;  
				color: #fff; 
				zoom: 1; 
				padding: 0px 10px; 
				border-right: 5px solid #fff;	/* Sets the divider line between menu items */
				background-color:#025d29;	
				 }


#nav li a:hover, #nav li a.hov { background-color:#fdd600; /*colour of hover in nav bar*/
										color: #fff; 
							}

/* @group subnav */

#nav ul 			{ position: absolute; left: 1px; display: none; 
					margin: 0; padding: 0; 
					list-style: none; 
					padding-bottom: 0px; 
					 }
					

#nav ul li 		{ width:180px; float: left; 
				text-align: left;
				}
					
