/* remove the bullets, padding and margins from the lists */
.topmenu {
padding-top:6px;
padding-left:10px;
z-index:2;
height:18px;
}

.topmenu ul{
list-style-type:none;
padding-left:0px;
padding-top:0px;
margin:0;
/*height:30px;*/
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.topmenu li{
float:left;
position:relative;
z-index:0;
/*
border-left:1px solid #CCC;
border-right:1px solid #CCC;
border-top:1px solid #CCC;
*/
}

#topmenu_tab_line {
	width:775px;
	height:29px;
	background:#6f0913;
	position: absolute;
	top: 72px;
	left: 200px;
	margin-top:0px;
	z-index:0;
}

 
/* use the table to position the dropdown list */
.topmenu table{
position:absolute;
border-collapse:collapse;
z-index:100;
left:-1px;
top:15px;
}
 
/* style all the links */
.topmenu a, .topmenu a:visited {
display:block;
font-size:11px;
width:65px;
color:#444;
background:#FFBB55;
text-decoration:none;
/*margin-right:1px;*/
text-align:center;
position:relative;
z-index:100;
}
/* style the links hover */
.topmenu a:hover{
color:#FFF;
background:#6f0913;
text-decoration:none;
font-size:11px;
position:relative;
z-index:100;
}

.topmenu li {
	/*height:14px;*/
}

.topmenu li.current a {
color:#FFF;
background:#6f0913;
}

.topmenu li.current {
	/*
	border-left:1px solid #777;
	border-right:1px solid #777;
	border-top:1px solid #777;
	border-bottom:1px solid #FFBB55;
	*/
}

#top_navigation {
	z-index:1;
width: 100%;
height: 24px;
background: #FF9933;
padding: 0px;
border: 0px solid black;
text-align: center;
position: relative;
/*border-bottom:1px solid #777;*/
}
 
/* hide the sub level links */
.topmenu ul ul {
visibility:hidden;
position:absolute;
width:65px;
height:0;
z-index:100;
}
/* make the sub level visible on hover list or link */
.topmenu ul li:hover ul,
.topmenu ul a:hover ul{
visibility:visible;
}
