/* ================================================================ 
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/dd_valid.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.
=================================================================== */
/* common styling */


#menu-hori {
	margin: 0 auto;
	font-family: "Arial Narrow", Arial, sans-serif; 
	width:626px;
	position:absolute;
	font-size:18px;
	color:#FFFFFF;
	z-index:100;
	background-image:url(../images/menu_bkgd.jpg);
	background-repeat:no-repeat;
	height:29px;
	left: 388px;
	top: 102px;
	text-align: left;
	padding-top:0px;
	padding-left:20px;
}


#menu-hori 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-hori li{
float:left;
position:relative;
z-index:100;
}
#menu-hori ul li a{

}

/* use the table to position the dropdown list */
#menu-hori table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
#menu-hori a, #menu-hori :visited {
display:block;
font-size:18px;
line-height:18px;
/*width:149px;*/
padding:5px 0px 6px 0px;
color:#000;
/*background:#949e7c;
*/text-decoration:none;
margin-right:1px;
text-align:center;
font-family:"Arial Narrow", Arial, Helvetica, sans-serif;
color:#FFFFFF;
}
/* style the links hover */
#menu-hori :hover{
color:#97d9f3;
}

/* hide the sub level links */
#menu-hori ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
#menu-hori ul li:hover ul,
#menu-hori ul a:hover ul{
visibility:visible;
width:149px;
display:block;
}
#menu-hori ul li ul li a, #menu-hori ul li ul li a:visited{
display:block;
border-top:#FFF solid 1px;
width:155px;
text-align:left;
padding-left:10px;
color:#FFF;
background:#0076a3;
}

#menu-hori ul li ul li a:hover{
width:155px;
text-align:left;
padding-left:10px;
color:#97d9f3;
background:#0076a3;
}


