.menu {
	height:25px;
	position:relative;
	z-index:100;
	font-size:11px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:1000px; w\idth:1000px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	height:25px;
	list-style:none;
	margin:0;
	padding:0;
	border-left-style: dotted;
	border-left-width: 1px;
	border-left-color: #A0A0A4;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	padding:0px;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color: #fff;
	border-right-style: dotted;
	border-right-width: 1px;
	border-right-color: #A0A0A4;
	line-height:25px;
	padding-top: 0px;
	padding-right: 12px;
	padding-bottom: 0px;
	padding-left: 12px;
}
 
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color: #6C7C72;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background-color: #6C7C72;
}
.menu ul ul :hover > a.drop {
	background-color: #6C7C72;
}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	left:0;
	width:175px;
}
/* another hack for IE5.5 */
* html .menu ul ul {top:0px;t\op:0px;}
 
/* style the table so that it takes no part in the layout - required for IE to work */

.menu_table {
	padding-top: 0px;
}
 
.menu_table table {
	position:absolute;
	top:20;
	left:0;
	border-collapse:collapse;
	width:175px;
}

.menu_table li {
	white-space: nowrap;
}
 
.menu .menu_table a, .menu .menu_table a:visited {
	width: 175px;
}
 
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#6C7C72;
	height:25px;
	font-size:11px;
	font-style:normal;
	margin:0px;
	padding:0px 10px 0px 15px;
	text-align:left;
	width:175px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}
 
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	background-color: #8C9E9C;
}
.menu :hover > a, .menu ul ul :hover > a {
	background-color: #8C9E9C;
}
 
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}

.selected {
	color:#000;
}
