/* style the outer div to give it width */
.menuu {
	font-size:0.8em;
	padding-bottom:15px;
	position:absolute;
	left:0;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	z-index: 50;	
	top:75px;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menuu ul 
	{
	padding:0;
	margin:0;
	list-style-type:none; 
	height:2.5em;
	width:auto;
	}

/* style the sub-level lists */
.menuu ul ul
	{
	width:15em;
	}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menuu positon */
.menuu ul li
	{
	float:left;
	height:2.5em;
	line-height:2.5em;
	}

/* style the sub level list items */
.menuu ul ul li
	{
	display:block;
	width:12em;
	height:auto;
	position:relative;
	line-height:1em;
	}

/* style the links for the top level */
.menuu a, .menuu a:visited
	{
	display:block;
	float:left;
	height:100%;
	font-size:1em;
	text-decoration:none;
	color:#001a57;
	padding:0 3em 0 2em;
	background-color: #ffffff;
	FILTER: alpha(opacity=90);
	opacity: 0.90;
	MozOpacity: 0.90;
	KhtmlOpacity: 0.90;
	}

/* style the sub level links */
.menuu ul ul a, .menuu ul ul a:visited
	{
	display:block;
	background-color: #ffffff; 
	color:#001a57;
	width:12em;
	height:100%;
	line-height:1em;
	padding:0.4em 1em;
	FILTER: alpha(opacity=90);
	opacity: 0.90;
	MozOpacity: 0.90;
	KhtmlOpacity: 0.90;
	}

.menuu ul table ul a, .menuu ul table ul a:visited
	{
	width:14em;
	w\idth:12em;
	}


/* style the table so that it takes no part in the layout - required for IE to work */
.menuu table {
	position:absolute; 
	left:0; 
	top:0; 
	font-size:1em;
	}

.menuu ul ul table {
	lef\t:-1px;
	}

.menuu ul ul table ul.left {
	margin-lef\t:2px;
	}

.menuu li:hover {
	position:relative;
	}

* html .menuu a:hover {
	position:relative;
	}

/* style the third level background */
.menuu ul ul ul a, .menuu ul ul ul a:visited
	{
	background:#ffffff;
	FILTER: alpha(opacity=90);
	opacity: 0.90;
	MozOpacity: 0.90;
	KhtmlOpacity: 0.90;
	}

/* style the fourth level background */
.menuu ul ul ul ul a, .menuu ul ul ul ul a:visited
	{
	background:#ffffff;
	}

/* style the sub level 1 background */
.menuu ul :hover a.sub1 {}

/* style the sub level 2 background */
.menuu ul ul :hover a.sub2 {
	background: #ffffff;
	}

/* style the level hovers */

/* first */	
.menuu a:hover
	{
	color:#ffffff;
	background: #001a57;
	FILTER: alpha(opacity=75);
	opacity: 0.75;
	MozOpacity: 0.75;
	KhtmlOpacity: 0.75;
	}	

.menuu :hover > a
	{
	color:#ffffff;
	background: #001a57;
	FILTER: alpha(opacity=75);
	opacity: 0.75;
	MozOpacity: 0.75;
	KhtmlOpacity: 0.75;
	}

/* second */
.menuu ul ul a:hover
	{
	color:#001a57;
	background:#e8e8e8;
	}
.menuu ul ul :hover > a
	{
	color:#001a57;
	background:#e8e8e8;
	}

/* third */
.menuu ul ul ul a:hover
	{
	color:#001a57;
	background:#e8e8e8;
	}
.menuu ul ul ul :hover > a
	{
	color:#001a57;
	background:#e8e8e8;
	}

/* fourth */
.menuu ul ul ul ul a:hover
	{
	color:#001a57;
	}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuu ul ul
	{
	visibility:hidden;
	position:absolute;
	height:0;
	top:2.5em;
	left:0;
	width:14em;
	}

/* position the third level flyout menuu */
.menuu ul ul ul
	{
	left:14em;
	top:0;width:
	14em;
	}

/* position the third level flyout menuu for a left flyout */
.menuu ul ul ul.left
	{
	left:-14em;
	}


/* make the second level visible when hover on first level list OR link */
.menuu ul li:hover ul, .menuu ul a:hover ul
	{
	visibility:visible;
	height:auto;
	padding-bottom:3em;
	}

/* keep the third level hidden when you hover on first level list OR link */
.menuu ul :hover ul ul
	{
	visibility:hidden;
	}

/* keep the fourth level hidden when you hover on second level list OR link */
.menuu ul :hover ul :hover ul ul
	{
	visibility:hidden;
	}

/* make the third level visible when you hover over second level list OR link */
.menuu ul :hover ul :hover ul
	{
	visibility:visible;
	}

/* make the fourth level visible when you hover over third level list OR link */
.menuu ul :hover ul :hover ul :hover ul
	{
	visibility:visible;
	}