/* ================================================================ 
This copyright notice must be untouched at all times.
 
The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
div#topmenu  {
	position:relative;
	float:right;
	margin:0 0px 0 0 ;
	background-color:#ffda68;
	vertical-align:bottom;
	width:716px;
	top:21px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

/* remove the bullets, padding and margins from the lists */
#topmenu ul{
	list-style-type:none;
	padding:0;
	/*margin-left:10px*/
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#topmenu li{
	background-color:#ffda68;
	display:block;
	float:left;
	margin: 0;
	border-right: 1px solid #93855a;
	position:relative;
	z-index:100;
}

#topmenu li.last {
	border-right:none;
	color:white;
}
 
/* use the table to position the dropdown list */
#topmenu table{
	position:absolute;
	border-collapse:collapse;
	z-index:80;
	left:-1px;
	top:25px;
	margin:0;
	padding:0;
}
 
/* style all the links */
#topmenu > ul > li > a {
	display:block;
	/*width:149px;*/
	padding:8px 10px 4px 10px;
	color:#000;
	text-decoration:none;
	margin-right:1px;
	text-align:center;
	font-family:"trebuchet ms", "arial narrow", "helvetica narrow", helvetica, arial,  sans-serif; 
	font-size:12px;
	font-weight:bold;
	text-transform:uppercase;
}

#topmenu ul li a.first {
	padding-left:20px;
}

/* style the links hover */
#topmenu a:hover{
	color:#E2AE10;
	text-decoration:underline;
}
 
/* hide the sub level links */
#topmenu ul ul {
	visibility:hidden;
	margin-bottom:0px;
	margin-left:0px;
	padding-left:0px;
	position:absolute;
}

#topmenu ul li ul li {
	float:none;
	
	width:156px;
	background-color:#ffe978;
	border-bottom:1px solid #efd968;
}

#topmenu ul li ul li a:hover { background-color:#fff988; }

#topmenu ul li ul li a {
	color:#000;
	display:block;
	font-family:"trebuchet ms", "arial narrow", "helvetica narrow", helvetica, arial,  sans-serif; 
	font-size:12px;
	font-weight:bold;
	text-align:left;
	text-decoration:none;
	text-transform:none;
	padding:5px 10px 5px 10px;	
}



/* make the sub level visible on hover list or link */
#topmenu ul li:hover ul,
#topmenu ul a:hover ul{
	visibility:visible;
}
