@charset "UTF-8";
.menu {
	z-index:95;
	font-size:14px;
	width: 340px;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 2px;
	padding-top: 5px;
	position: absolute;
	left: -1px;
	top: 121px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:216px;
}
/* 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;
	height:42px;
	background-color: #09F;
}
.menu li li {
height:36px;
}

/* 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;
	background-image: url(../assets/Images/W_Wings_1.png);
	background-repeat: no-repeat;
	height:41px;
	line-height:41px;
	width:216px;
	color:#000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #3FF;
	border-right-color: #3FF;
	border-bottom-color: #3FF;
	border-left-color: #3FF;
	text-indent: 50px;
	background-attachment: scroll;
	background-position: .1px center;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {
	width:216px;
	w\idth:215px;
	background-color: #09F;
	background-position: .1px center;
}
/* style the link hover */
* html .menu a:hover {
	color:#fff;
	background-color: #039;
}

.menu :hover > a {
	color:#fff;
	background-color: #039;
	background-image: url(../assets/Images/W_Wings_3.png);
	background-position: .1px center;
}

/* 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:216px;
	z-index: 99;
	height: 36px;
	width: 120px;
}
/* style the links */
.menu ul ul a, .menu ul ul a:visited {
	height:35px;
	line-height:35px;
	width:119px;
	background-image: none;
	text-indent: 10px;
}
/* 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;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}
