@charset "utf-8";
/* 	Netco Drop Down Menus
	Written by Daniel Spavin
	20 May 2008
 */

body{	font-family: arial, helvetica, sans-serif;}
div#menu{	width: 650px;
	height: 35px;
	margin: 0px;
	z-index: 500;
	}
div#menu ul{list-style:none;text-align:left;}

/* Position drop down in relation to top level LI */
div#menu ul ul{
	list-style:none;
	background-color:white;
	position:absolute;
	text-align:left;
	width: 140px;
	margin: 0em 0px 0px -10px;
	padding: 0px;
	}
/* Make all Anchors Block elements */
div#menu li a{
	color:white;
	text-decoration: none;
	margin: -2px 0px 0px 0px;
	display:block;
	width: 100%;
	padding: 0px 0px 0px 0px;
	}



/* Top elements */
li.top{
	float:left;
	line-height: 200%;
	background: url(/images/bg-but.jpg) no-repeat center;
	height: 22px;
	width: 90px;
	margin-right: 2px;
	padding: 8px 5px 5px 10px;
	font-weight: bold;
	font-size: 90%;
	text-transform:uppercase;
	text-align: center;
}
/* Dropdown Elements */
li.item{
	background:#100970;
	padding: 8px 5px 8px 5px;
	margin: 0px 0px 0px 0px;
	font-weight: bold;
	border-bottom: 1px dashed white;
	border-left: 1px solid white;
	border-right: 1px solid white;
	text-align:left;
}

/* Hover top level menu when hovering: li.top, top A tag, dropdown menu */
li.top:hover a, li.top a:hover{color:#90C870!important;}

/* Show Second level menu */
li.top:hover li.item{display: block;}
li.top:hover li.item a{color:white!important;}

/* Hover Second level menu items */
li.item:hover, li.item:hover a{color:white; background-color: #58539B;}
/* Hide Dropdowns */
li.item {display:none;}