.wayMenu {
	position:relative; 
	z-index:10;
	font-size:90%;
	left:-10px;
	width:180px;
}

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


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

/* style the links */
.wayMenu a, .wayMenu a:visited {
	display:block; 
	font-weight:bold;
	text-decoration:none;
	height:20px;
	line-height:20px;
	width:180px;
	color:#174A7C;
	text-indent:15px;
	border:none;
	border-bottom:1px dashed #b9d8e5;

/*	background-color:#99c7d8;*/
}
.wayMenu li.active ul a {
	text-indent:25px;
}

/* style the link hover */
.wayMenu a:hover,.wayMenu ul li.active ul li.first a:hover{
	color:#fff; 
	background-color:#b9d8e5;
	border-bottom:1px dashed #174A7C;
}

.wayMenu li a:hover, .wayMenu ul :hover ul li.first a:hover, .wayMenu ul li.active ul li a:hover {
	color:#fff; 
	border-bottom:1px dashed #174A7C;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.wayMenu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:170px; 
	z-index:5000;
	background-color:#b9d8e5;
}
/* make the second level visible when hover on first level list OR link */
.wayMenu ul :hover ul{
	visibility:visible;
	z-index:500;
}

/* keep the third level hidden when you hover on first level list OR link */
.wayMenu ul :hover ul ul{
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.wayMenu ul :hover ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.wayMenu ul :hover ul :hover ul{ 
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.wayMenu ul :hover ul :hover ul :hover ul { 
	visibility:visible;
}
.wayMenu li.active table {
	position:relative;
}

.wayMenu ul li.active ul {
 visibility:visible;
 position:relative;
 left:-2px;
}

.wayMenu ul li.parent ul li a, .wayMenu ul li.parent ul li a:hover, .wayMenu ul li.active ul li a, .wayMenu ul li.active ul li a:visited, .wayMenu ul li.active ul li a:hover{
	background-image:none;
}

.wayMenu li.self a {
	color:#fff;
	border-bottom:1px dashed #174A7C;

}
.wayMenu li.self li a {
	color:#174A7C;
	border-bottom:1px solid #b9d8e5;
	z-index:10;
}
.wayMenu li.parent a {
	background-image:url("/img/parent.png");
	background-position:90% 0;
	background-repeat:no-repeat;

}
.wayMenu li.parent a:hover {
	background-image:url("/img/parent-light.png");
	background-position:90% 0;
	background-repeat:no-repeat;

}