.menue {
    text-align: left;
}

.menue ul, .menue li {
    list-style-type: none;
	padding: 0;
    margin: 0;
	background: #fff;
	z-index: 10;
}

/** Level 1 Normal Styles (
 * 	Line1:normal+visited, 
 * 	Line2:hover, 
 * 	Line3:active, 
 * 	Line4:sublinks
 **/
li.sub_menu_1 ul a {width: 173px;}
li.sub_menu_2 ul a {width: 92px;}
li.sub_menu_3 ul a {width: 145px;}
li.sub_menu_4 ul a {width: 140px;}
li.sub_menu_5 ul a {width: 173px;}
li.sub_menu_6 ul a {width: 141px;}
li.sub_menu_7 ul a {width: 98px;}
li.sub_menu_8 ul a {width: 92px;}
/* 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 {
float:left;
position:relative;
}
/* style the links for the top level */
.menue a, .menue a:visited {
display:block;
text-decoration:none;
color:#fff;
height:37px;
border:none;
line-height:37px;
}

/* style the second level background */
.menue ul ul a.drop, .menue ul ul a.drop:visited {
background:#949da4;
border: 1px solid white;
}
/* style the second level hover */
.menue ul ul a.drop:hover{
background:#c9ba65;
}
.menue ul ul :hover > a.drop {
background:#c9ba65;
}

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

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

/* style the second level links */
.menue ul ul a, .menue ul ul a:visited {
background:#949da4;
color:#fff;
height:auto;
line-height:1em;
padding:8px 0 8px 8px;border: 1px solid #3a4151;border-top:none;
}

/* style the top level hover */*HTML .menue a:hover {	height:auto !important;	line-height:37px;	border: 1px solid #3a4151;	border-top:none;} .menue ul ul a:hover{
color:#fff;
height:auto !important;
background:#3A4252;line-height:1em;border: 1px solid #3a4151;border-top:none;
}
/*.menue :hover > a, */.menue ul ul :hover > a {
color:#fff;
height:auto !important;
background:#3A4252;
}

/* make the second level visible when hover on first level list OR link */
.menue ul li:hover ul,
.menue ul a:hover ul{
visibility:visible !important;
}
/* keep the third level hidden when you hover on first level list OR link */
.menue ul :hover ul ul{
visibility:hidden !important;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menue ul :hover ul :hover ul ul{
visibility:hidden !important;
}
/* make the third level visible when you hover over second level list OR link */
.menue ul :hover ul :hover ul{
visibility:visible !important;
}
/* make the fourth level visible when you hover over third level list OR link */
.menue ul :hover ul :hover ul :hover ul {
visibility:visible !important;
}
