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

#nav ul{
	list-style-type:none;
	padding:0;
	margin:0;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
/* 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:auto;
}

/* 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:12px;
	width:102px;
	height:20px;
	padding:7px 0 0px 5px;
	color:#333333;
	background:#ffffff;
	text-decoration:none;
	margin-right:0px;
	text-align:center;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}
/* style the links hover */
#nav :hover{
	color:#ffffff;
	background:#999999;
}

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