/* CSS Document */

/* @group structure */

#head 		{ background-color:#e1ecf6; 
				height:100px; padding-top:0px; }
				 
#wrap	{
	width: 100%; /* Spans the width of the page */
	height: 50px; 
	margin: 0; /* Ensures there is no space between sides of the screen and the menu */
	z-index: 99; /* Makes sure that your menu remains on top of other page elements */
	position: relative; 
	background-color: #366b82;
	}

/* @group core nav menu */

#nav 		{ margin:0; padding:0; 
				list-style:none; 
				height:25px;   /* This is the height of the nav */
				background-color:transparent;  /* This is the background color of the menu */
				}
 
#nav li 		{ float:left; display:block; 
				background-color:transparent; 
				position: relative; z-index:999; margin:0 1px; 	}
 
#nav li a 	{ display: block; zoom: 1; padding: 0;  text-transform :uppercase; font-weight:200; font-size:20px; 

				font-weight:normal; line-height:50px; text-decoration:none;  				
				padding: 0px 0px 0px 10px; /* This is the spacing between menu items */
				}

#nav li a:hover, #nav li a.hov { background-color:transparent;  /*color:#576482;*/ }


/* @group subnav */

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

#nav ul li 		{ width:380px; float:left; text-align:left; 
					background-color:#000;  /* This is the background color of the sub menu */
					}

#nav ul li:hover 	{ 	}

