/* remove all the bullets, borders and padding from the default list styling */
.menue ul 
{
	padding:0;
	margin:0;
	list-style-type:none;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menue li
{
	text-align:left;
	width:120px;
	position:relative;
}

/* style the links for the top level */
.menue a, .menue a:visited
{
	display:block;
	font-size: 13px;
	text-decoration:none; 
	width:115px; 
	height:30px; 
	padding-left:5px; 
	line-height:30px;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menue ul ul
{
	visibility:hidden;
	position:absolute;
	bottom:31px;
	left:0; 
	width:150px;
}

/* position the third level flyout menu */
.menue ul ul
{
	text-align:left;
	bottom:25px;
	width:150px;
}

/* position the third level flyout menu */
.menue ul ul ul
{
	left:200px; 
	bottom:0;
	width:150px;
}

/* style the second level links */
.menue ul ul a, .menue ul ul a:visited
{
	background:#005392; 
	color:#ffffff; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:200px;
}

.menue ul ul a:hover
{
	background:#91D0FF; 
	color:#000000; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:200px;
}

/* style the second level links */
.menue ul ul ul a, .menue ul ul ul a:visited
{
	background:#20569C; 
	color:#ffffff; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:200px;
}


/* make the second level visible when hover on first level list OR link */
.menue ul :hover ul
{
	visibility:visible;
	height:auto;
}

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

/* make the third level visible when you hover over second level list OR link */
.menue ul :hover ul :hover ul
{ 
	display:block;
	bottom:0;
}

