@charset "UTF-8";
/* CSS Document */

/*Remove browser defaults */
#navmenu, .navmenu, #navmenu .navmenu li {
	margin: 0;
	padding: 0;
	
}

/*First level menu items */
#navmenu li {
	float:left; /* makes the menu horizontal */
	display:inline; /* makes the menu horizontal */
	cursor:pointer; 
	list-style:none; /*Remove bullets */ 
	position:relative;
/*Following items are visual preferences and can be changed */	
	padding: 5px 15px 5px 15px; /*Set padding for 1st level menu This puts spaces around the menu items*/
	border-color: #26415E;
	border-style: solid;
	border-width:0 1px 0px 0; /*(Set border for 1st level menu */
}
/*First level submenu items */
#navmenu li ul.first {
	left:0px; /*This accounts for the border around the top level menu and should be the same value */
	top:100%; /*So that it falls directly below the top level menu and leaves room for the bottom margin */
}

#navmenu li, #navmenu li a {
	text-decoration:none;
	color:#fff; /*Set color of menu items */
	/*background-color:#758290; background color is set in the container e.g. <nav>*/ 
	width:100px; /*Set width of main menue items This was not in the orignal code*/
	
}
/*Style the submenu list items only */
#navmenu .navmenu li { 
	width:100%; /*Makes submenu same width as main menu */
/*Following items are visual preferences and can be changed */
 /*	text-indent:10px; /*indents the submenu from the main menu */
	padding:5px 0 5px 5px;
	margin-right:10px; 
	border-top:1px #26415E solid;
	border-bottom:0px #26415E solid; 
	border-left:1px #26415E solid; 
	background:#758290; /*Background color of dropdown submenu */
}
/*Stye the anchor elements */
#navmenu li a {
	display:block; 
	width:inherit; 
	height:inherit;
}
ul.navmenu { 
	display:none; /*Initially hide the submenus */
}
#navmenu li:hover > a, #navmenu li:hover {
	color:#FFED6E; /*Menu Text Color when hover */
	background:#abb9c7; /*Menu Background Color when hover */
}
/*Style the submenu items and Solves the IE Hover Ghost Bug */
li:hover > .navmenu {
	display:block; 
	position:absolute; 
	width:200px; /*Width of drop down block */ 
	top:-1px; /*Compensates for border */
	left:100%; /*Offset of submenu--100% is completely to the right of the first menu */
	z-index:1000; /* Forces the submenu block to be on top of everything else */
	border:0px #000 solid;
}
li:hover {
	position:relative; 
	z-index:2000; 
}
/*This is the horizontal navigation bar at the top */
nav {
	margin:0;
	padding:0;
	border-color:#284360;
	border-style: solid;
	border-width: 0 0px 1px 0;
	background-color: #758290;
	height:25px;
	width:100%;
}