/* common styling */
.menu {
	width:780px;
	display:block;
	float:right;
	margin:108px 0 0 0;
	z-index:999;
	height:62px;
}
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#333;
	width:130px;
	height:62px; 	line-height:62px;
	font-size:16px;
	text-align:center;
	overflow:hidden;
	text-shadow:none;
	border-right:#666 solid 1px;
	background:none;
	margin:0;
	font-weight:normal;
}

.menu ul li.active a {
	color:#FFF;
	background:url(imgs/png/topmenu_active_back-03.png) top center no-repeat;
}

.menu ul li.first a {
	border-left:#666 solid 1px;}
	
	
.menu ul {padding:0; margin:0;list-style-type: none; }
.menu ul li {float:left; position:relative;}
.menu ul li ul {display: none;}

/* specific to non IE browsers */
.menu ul li:hover a {
	color:#FFF;
	background:url(imgs/jpgbckg/header_out_back-mntmhov.jpg) bottom left repeat-x;
}

.menu ul li.active:hover a {
	color:#FFF;
	background:url(imgs/png/topmenu_active_back-03.png) top center no-repeat rgba(20, 20, 20, 0.75);
	text-shadow: 1px 1px 2px #000000;
	filter: dropshadow(color=#000000, offx=4, offy=4);
}
.menu ul li:hover ul {display:block; position:absolute; top:21px; left:0; width:105px;}
.menu ul li:hover ul li a.hide {background:#6a3; color:#fff;}
.menu ul li:hover ul li:hover a.hide {background:#6fc; color:#000;}
.menu ul li:hover ul li ul {display: none;}
.menu ul li:hover ul li a {display:block; background:#ddd; color:#000;}
.menu ul li:hover ul li a:hover {background:#6fc; color:#000;}
.menu ul li:hover ul li:hover ul {display:block; position:absolute; left:105px; top:0;}
.menu ul li:hover ul li:hover ul.left {left:-105px;}


.navi {
position:relative; 
z-index:1000;
font-size:90%;
}

/* remove all the bullets, borders and padding from the default list styling */
.navi ul {
padding:0;
margin:0;
list-style-type:none;
width:150px;
}
/* hack for IE5.5 */
* html .navi ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.navi li {
position:relative;
}

/* get rid of the table */
table {position:absolute; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.navi a, .navi a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:149px;
color:#000;
background:#d4d8bd;
text-indent:5px;
border:1px solid #fff;
border-width:0 1px 1px 0;
}
/* hack for IE5.5 */
* html .navi a, * html .navi a:visited {width:150px; w\idth:149px;}
/* style the link hover */
.navi a:hover{
color:#fff; 
background:#949e7c;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.navi ul ul {
visibility:hidden;
position:absolute;
top:0;
left:150px; 
}
/* make the second level visible when hover on first level list OR link */
.navi ul :hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.navi ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.navi ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.navi ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.navi ul :hover ul :hover ul :hover ul { 
visibility:visible;
}