/* CSS FOR DROPDOWN MENU*/


#menucss {
	width: 100%;
	float: left;
}

#menucss ul {
	list-style: none;
	margin: 2;
	padding: 0;
	width: 120px;
	float: left;
}

#menucss a, #menucss h2 {
	font: bold 0.9em/1.4em "Trebuchet MS" arial, helvetica, sans-serif;
	display: block;
	margin: 0;
	padding: 2px 2px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}

#menucss h2 {
	color: #fff;
	background: #578BDE;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
}

#menucss h2.selected{
	background: #FFFFFF;
	font-size: 9px;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
}

#menucss a {
color: #000;
background: #efefef;
text-decoration: none;
}

#menucss a.selected {
color: #fff;
background: #000;
text-decoration: none;
}

#menucss a:hover {
color: #578BDE;
background: #fff;
}

#menucss li {position: relative;}

#menucss li.selected {position: relative;}

#menucss ul ul {
	position: absolute;
	z-index: 500;
	bottom: 25px;
}

#menucss ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#menucss ul ul,
div#menucss ul li:hover ul ul,
div#menucss ul ul li:hover ul ul
{display: none;}

div#menucss ul li:hover ul,
div#menucss ul ul li:hover ul,
div#menucss ul ul ul li:hover ul
{display: block;}

div#menucss ul.selected ul,
div#menucss ul.selected li.selected ul ul,
div#menucss ul ul li.selected ul ul
{display: block;}
