/* Default menu font styles */
.menu
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-align: left;
	z-index: 10000;
}

/* Remove default list decoration */
/* Menu is "centered" by setting a left margin by hand due to IE compromises.
   See below where li ul have their leftpos set to -100px to compensate. 
 */
.menu, .menu ul
{
	list-style: none;
	padding: 0;
	margin: 0;
	margin-left: 100px;
	z-index: 10000;
}

/* Flatten the top level items (.menu > li) */
.topmenu
{
	float: left;
	position: relative;
	height: 25px;
}

.menu ul li
{
	position: relative;
	width: 200px;
}

/* Hide the subitems */
.menu li ul
{
	display: none;
	position: absolute;
	float: none;
	top: 23px;
	left: -100px;
	width: 200px;
	padding: 5px;
 
	border: 1px #2a2a2a solid;
	background: #222;
	z-index: 10000;
}

.menu a
{
	color: #ccc;
	text-decoration: none;
	line-height: 150%;
}

.menu a:hover
{
	color: #f1a836;
	/*text-decoration: underline;*/
}


