/***************** MENU ********************************/
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #A3AEFF;
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}
	
li div {
	position: absolute;
	left: 0px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}
	
li ul li ul{
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #A3AEFF;
	font-size: 13px;
	background: #000066; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #A3AEFF; /* IE6 Bug */
	border-bottom: 0;
	}

li.sub a {
	display: block;
	text-decoration: none;
	color: #006;
	font-size: 13px;
	background: #A3AEFF; /* IE6 Bug */
	padding: 5px;
	border-top: 1px solid #000066; /* IE6 Bug */
	}

li.subsub a {
	display: block;
	text-decoration: none;
	color: #A3AEFF;
	font-size: 13px;
	background: #000066; /* IE6 Bug */
	padding: 5px;
	border-right: 1px solid #A3AEFF; /* IE6 Bug */
	border-left: 1px solid #000066; /* IE6 Bug */
	border-top: 1px solid #A3AEFF; /* IE6 Bug */
	}

ul.subsub{
	display: none;
}

/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */
ul li ul li:hover div, ul li ul li.over div { display: block; } /* The magic */
li a:hover, li a.hover { background-color: #A3AEFF; color: #000066;} /* The magic */
li.sub a:hover, li.sub a.hover { background-color: #000066; color: #A3AEFF;} /* The magic */
li.subsub a:hover, li.subsub a.hover { background-color: #A3AEFF; color: #000066;} /* The magic */
