@charset "UTF-8";

/* Get rid of the margin, padding and bullets in the unordered lists */
#dmenu, #dmenu ul {padding:0; margin:0; list-style-type: none;}

/* Set up the link size, color and borders */
#dmenu a, #dmenu a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	display: block;
	width:100%;
	top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	text-decoration:none;
	text-indent:0%;
	text-align: center;
	font-weight: bold;
		}
	
/* Set up the sub level borders */


#dmenu li ul li a, #dmenu li ul li a:visited {
}
#dmenu li a.enclose, #dmenu li a.enclose:visited {
	border-width:0px;
	width: 175PX;
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

/* Set up the list items */
#dmenu li {
	float:left;
	background:#4a5a6b;
	padding: 5px 0px;
}

/* For Non-IE browsers and IE7 */
#dmenu li:hover {position:relative;}
/* Make the hovered list color persist */
#dmenu li:hover > a {
	color: #FFFF99;
}
/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
#dmenu li ul {display:none;}
/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
#dmenu li:hover > ul {
	display:block;
	position:absolute;
	top:-10px;
	left:126px;
	padding:13px 30px 30px;
	width:100%;
}
/* Position the first sub level beneath the top level liinks */
#dmenu > li:hover > ul {left:-30px; top:13px;}

/* get rid of the table */
#dmenu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html #dmenu li a:hover {
	position:relative;
	background:url(images/buttonbackgroundhover.jpg) repeat-x;
	color:#FFFFFF;
}

/* For accessibility of the top level menu when tabbing */
#dmenu li a:active, #dmenu li a:focus {
	background:url(images/buttonbackgroundhover.jpg) repeat-x;
	color:#FFFFFF;
}

/* Set up the pointers for the sub level indication */
#dmenu li.fly {
}
#dmenu li.drop {
	background:no-repeat center center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}


/* This lot is for IE5.5 and IE6 ONLY and is necessary to make the sublevels appear */

/* change the drop down levels from display:none; to visibility:hidden; */
* html #dmenu li ul {visibility:hidden; display:block; position:absolute; top:-11px; left:80px; padding:10px 30px 30px 30px; background:transparent
}
/* keep the third level+ hidden when you hover on first level link */
#dmenu li a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link and position it */
#dmenu li a:hover ul {
visibility:visible; left:-30px; top:14px; lef\t:-31px; to\p:15px;
}

/* make the third level visible when you hover over second level link and position it and all further levels */
#dmenu li a:hover ul a:hover ul{ 
visibility:visible; top:-11px; left:80px;
}
