@charset "utf-8";
/* CSS Document */
.menu {
	z-index:1000;
	font-size:12px;
	color:#FFFFFF;
	margin:0px;
	margin-left:10px;
	width:150px;
	display:block;
	border-right-style:solid;
	border-right-color:#9ACDFF;
	border-right-width:5px;
}
#sub a:link, #sub a:visited{
	display:block;
	text-decoration:none;
	height:29px;
	line-height:30px;
	width:170px;
	color:#FFFFFF;
	text-indent:5px;
	background-color:#99CCFF;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#FFFFFF;
	z-index:1000;
}
#sub a:hover{
	background-color:#01A0C7;
	color: #FFFFFF;
	z-index:1000;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	width:150px;
}
/* hack for IE5.5 */
* html .menu ul {
	margin-left:-16px;
	margin-left:0;
}
/* position relative so that you can position the sub levels */
.menu li {
	position:relative;
	background:#9ACDFF;
	height:30px;
	color: #FFFFFF;
}
/* 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:link, .menu a:visited {
	display:block;
	text-decoration:none;
	height:29px;
	line-height:30px;
	width:149px;
	color:#FFFFFF;
	text-indent:5px;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#FFFFFF;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {
	background:#9ACDFF;
	width:150px;
	width:149px;
}
/* style the link hover */
* html .menu a:hover {
	color:#fff;
	background:#01A0C7;
}
.menu :hover > a {
	color:#fff;
	background:#01A0C7;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:150px;
}
/* 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;
	color: #FFFFFF;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
	visibility:hidden;
	color: #FFFFFF;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul {
	visibility:hidden;
	color: #FFFFFF;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	visibility:visible;
	color: #FFFFFF;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
	visibility:visible;
	color: #FFFFFF;
}
