/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type:none;
	padding:0;
	margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	float:left;
	z-index:100;
}

/* style all the links */
.menu a, .menu :visited {
	display:block;
	font-size:80%;
	font-weight:bold;
	width:158px;
	height:25px;
	color:#FFF;
	background-color:#344353;
	text-decoration:none;
	margin-right:1px;
	text-align:center;
	line-height:270%;
}

/* style the links hover */
.menu :hover{
	color:#444;
	background-color:#d9d7d2;
}

/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:120px;
	height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}

.menu ul li:hover ul a{
	width:156px;
	background-color:#62707d;
	border:1px solid #afafaf;
	border-top:0;
}

.menu_unlink{
	width:156px;
	color:#FFF;
	background-color:#5260a1;
	border:1px solid #afafaf;
	border-top:0;
	font-size:80%;
	font-weight:bold;
	line-height:270%;
	cursor: default;
}

.menu_area_unlink{
	display:block;
	font-size:80%;
	font-weight:bold;
	width:158px;
	height:25px;
	color:#FFF;
	background-color:#5260a1;
	text-decoration:none;
	margin-right:1px;
	text-align:center;
	line-height:270%;
	cursor: default;
}

.menu ul li:hover ul a:hover{
	background-color:#d9d7d2;
}

a.first_item {
	margin-top:1px;
	border-top:1px solid #afafaf !important;
}	