.nav_div * {
-moz-opacity: .92;
opacity: .92;
}

.nav_div ul {
margin: 0;
padding: 0;
list-style-type: none;
width: 200px; /* Width of Menu Items */
height: 100%;
border-bottom: 0 solid #ccc;
font-size: 14px;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}
	
.nav_div ul li {
position: relative;
padding-right: 10px;
}
	
/*Sub level menu items */
.nav_div ul li ul {
position: absolute;
width: 200px; /*sub menu width*/
top: 0;
visibility: hidden;
}
.nav_div ul li a:visited, .nav_div ul li ul a:visited {
text-decoration: none;
}

.nav_div ul li ul a:hover {
background-position: 0px center;
background-repeat: no-repeat;
}

/* Sub level menu links style */
.nav_div ul li a {
display: block;
overflow: auto; /*force hasLayout in IE7 */
text-decoration: none;
padding: 1px 5px;
border: 0 solid #ccc;
border-bottom: 0;
filter: alpha(opacity=80);
}
	
/* Holly Hack for IE \*/
* html .nav_div ul li { float: left; height: 1%; }
* html .nav_div ul li a { height: 1%; }
/* End */