/* CSS Document. Thanks to Stu Nicholls at CSSplay for help with the menu, http://www.cssplay.co.uk. */

.menu {
	z-index:1000;
	font: bold 100% Verdana, Arial, Helvetica, sans-serif;
	width: 180px;
	float: left;
	height: 204px;
}

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

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

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:33px;
line-height:33px;
width:174px;
color:#fff;
text-align:right; padding-right:5px;
border:1px solid #ACB3B6;
border-width:0 1px 1px 0;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {background:#819096; width:174px; w\idth:174px;}
/* style the link hover */
* html .menu a:hover {
	color:#fff;
	background:#ACB3B6;
	background-image: url(images/ballhover.gif);
}

.menu :hover > a {
	color:#fff;
	background-image: url(images/ballhover.gif);
	background-repeat: no-repeat;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	position:absolute;
	top:0;
	left:180px;
	height:204px;
	width:190px;
	background:#ACB3B6;
	visibility: hidden;
}
/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
visibility:visible;
filter: alpha(opacity=95); 
opacity: .95;
}
.menu ul :hover ul li {height:18px; padding:10px 0 0 0; background:#ACB3B6;}
.menu ul :hover ul a {background:#ACB3B6; text-align:left; padding-left:10px; height:16px; line-height:16px;}
.menu ul :hover ul a:hover {color:#333;}