#gomenue
{
position: relative;  margin-top: 5px; margin-left: 135px;
z-index:1000;
}

/* style the outer div to give it width */
.menue {
width:200px;
height:30px;
font-size:11px;
background-color:#FF8F1E;
text-decoration:underline;
z-index:1000;
}

/* remove all the bullets, borders and padding from the default list styling */
.menue ul 
{
padding:0;
margin:0;
margin-bottom:-5px;
list-style-type:none;
background-color:#FF8F1E;
text-decoration:underline;
color:#FFFFFF;
text-align:left;
}

.menue ul ul
{
width:200px;
border:1px solid ;
border-color:#FFFFFF;
}

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

/* style the links for the top level */
.menue a, .menue a:visited
{
display:block;
width:200px; 
height:30px; 
padding-left:10px; 
line-height:29px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menue a, * html .menue a:visited
{
width:200px;
}

/* style the second level background */
.menue ul ul a.drop, .menue ul ul a.drop:visited
{
}

/* style the second level hover */
.menue ul ul a.drop:hover
{
}

.menue ul ul :hover > a.drop
{
}

/* style the third level background */
.menue ul ul ul a, .menue ul ul ul a:visited
{
}

/* style the third level hover */
.menue ul ul ul a:hover
{
}

. menue ul ul ul :hover > a
{
}

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

/* 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:180px;
}

* html .menue ul ul
{
bottom:30px;
}

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

/* position the third level flyout menu for a left flyout */
.menue ul ul ul.left
{
left:-150px;
}


/* style the second level links */
.menue ul ul a, .menue ul ul a:visited
{
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px
/* yet another hack for IE5.5 */
}

* html .menue ul ul a
{
width:150px;
}


/* style the top level hover */
.menue a:hover, .menue ul ul a:hover
{
background:#FF8F1F;
}

.menue :hover > a, .menue ul ul :hover > a
{
}

/* 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;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.menue ul :hover 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;
}

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