/* CSS Document */
@charset "utf-8";

/* CSS Popout Menu */
#menu{
	border-bottom: 1px solid #0d3a58;
}
#menu a:hover{
	background-color: #cbcbcb;
	color: #141414;
}
#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width:120px;
}
#menu ul li {
	position: relative;
	padding: 0px; /* padding between main menu elements */
}
#menu li ul {
	position: absolute;
	left: 120px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	padding:0px 0px 0px 3px;
	margin:0px;
	width: 125px;
	_width: 123px; /* IE Fix */
}

/* Styles for Menu Items */
#menu ul li a {
	display: block;
	font-size:11px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	white-space:nowrap;
	text-indent: 2px;
	padding: 3px 0px 3px 3px;
	width:120px;
	_width:123px; /* IE Fix */
	color: #cbcbcb;
	background: #0d3a58;
	text-decoration:none;
}
	
/* Hack. IE Requirement \*/
* html #menu ul li { float: left; height: 1%; }
* html #menu ul li a { height: 1%; }
/* End */

#menu li:hover ul, #menu li.over ul { display: block; } /* The magic */

#menu a.x, #menu a.x:visited{
	display: block;
	padding: 3px 0px 3px 0px;
	color: #cbcbcb;
	text-decoration:none;
	background-image:url(l_dotted.gif);
	background-position: bottom center;
	background-repeat:no-repeat;
}

#menu a.x:hover {
	background-color: #cbcbcb;
	color: #141414;
	background-image:url(l_dotted.gif);
	background-position: bottom center;
	background-repeat: no-repeat;
}

#menu a.x:active{
	background-color: #cbcbcb;
	color: #141414;
	background-image:url(l_dotted.gif);
	background-position: bottom center;
	background-repeat: no-repeat;
}