/* CSS Document */
.menu{
	width:450px;
	}
,menu h6{
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin:0px;
	padding:0px;
}
.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;
position:relative;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
	display:block;
	font-size:10px;
	width:149px;
	padding:7px 0;
	color:#000;
	background:#F0F0F0;
	text-decoration:none;
	margin-right:-1px;
	text-align:center;
	border: solid #999999 1px;
	margin-bottom: -1px;
	border-top: none;
	font-family: Arial, Helvetica, sans-serif;
}
/* style the links hover */
.menu :hover{
color:#FFFFFF;
background:#999999;
}


/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}
.style3 {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
body {
	margin-left: 0px;
	margin-right: 0px;
}
.menu li.selected a {
	background: #E6E6E6;
	border-bottom: solid #E6E6E6 1px;
}
.menu li.bottom a {
	border-bottom: solid #999999 1px;
}
.menu li.bottom a:hover {
	background: #0099FF;
}
.menu li.on a {
}
.menu li.on a:hover {
	background: #999999;
	color: #FFFFFF;
}
.menu li.selected a:hover {
	background: #999999;
	color: #FFFFFF;
}
td.headback {
   background-color: #ffffff;  /* the background          */
   filter:alpha(opacity=70);   /* Internet Explorer       */
   -moz-opacity:0.7;           /* Mozilla 1.6 and below   */
   opacity: 0.7;               /* newer Mozilla and CSS-3 */
}
