@charset "UTF-8";
/* CSS Document */

#nav ul{
list-style-type:none;
padding:0;
margin:0;
font-family: Arial, Helvetica, sans-serif;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#nav li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
#nav table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
#nav a, #nav :visited {
	display:block;
	font-size:11px;
	width:110px;
	height:20px;
	padding:5px 0 0px 5px;
	color:#666666;
	background:#ffffff;
	text-decoration:none;
	margin-right:0px;
	text-align:left;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #000000;
}
/* style the links hover */
#nav :hover{
	color:#ffffff;
	background:#758C9A;
}

/* hide the sub level links */
#nav ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
#nav ul li:hover ul,
#nav ul a:hover ul{
visibility:visible;
}

