.menue  a:link		{  text-decoration:none;	}           
.menue  a:visited 	{  text-decoration:none;	}         
.menue a:hover 		{  text-decoration:none;	}     
.menue a:active 	{  text-decoration:none; 	}  


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

}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menue positon */
.menue li {
float:left !important;
position:relative;
white-space: nowrap;
}

/* style the links for the top level */
.menue a, .menue a:visited {
font-family:verdana, arial, helvetica, sans-serif;
display:block;
font-size:12px;
font-weight: normal;
text-decoration:none; 
color:#697d9e; 
height:25px; 
padding-left: 10px;
padding-right: 10px;
line-height: 25px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menue a, * html .menue a:visited {
float: left;
}
.menue a.active, .menue ul ul a.active	{
color: #000;,
background: url(nav_back.gif) bottom repeat-x;
}
.menue a.dropactive, .menue ul ul a.dropactive{
color: #000;
background: url(nav_back.gif) bottom repeat-x;
}
.menue a.active, .menue ul ul a.active{
color: #000;
background: url(nav_back.gif) bottom repeat-x;
}

.menue li.first {background:#eef1f6;}
.menue li.second {background:#eef1f6;}








/* style the second level background */
.menue ul ul a.drop, .menue ul ul a.drop:visited {
color: #9b9b9b;
background:#d0dce7 url(arrow.gif) bottom right no-repeat;
}

/* style the second level hover */
.menue ul ul a.drop:hover{
color: #000;
background:#d0dce7 url(arrow.gif) bottom right no-repeat;
}

.menue ul ul :hover > a.drop {
color: #000;
background:#d0dce7 url(arrow.gif) bottom right no-repeat;
}









/* style the third level background */
.menue ul ul ul a, .menue ul ul ul a:visited {
color: #9b9b9b;
background: #d0dce7;
}
/* style the third level hover */
.menue ul ul ul a:hover {
color: #000;
background: #d0dce7;
}




/* 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: 25px;
border-top: 1px solid #fff;
left: -1px; 
width:140px;
}
/* another hack for IE5.5 */
* html .menue ul ul {
top:25px;
t\op: 25px;
}

/* position the third level flyout menue */
.menue ul ul ul{
left:153px; 
top: -1px;
width:140px;
}
/* position the third level flyout menue for a left flyout */
.menue ul ul ul.left {
left:-140px;
}

/* style the table so that it takes no ppart 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 {
height:auto;
line-height: 10px;
padding: 6px; 
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
width:140px;
color: #9b9b9b;
background: #d0dce7;
/* yet another hack for IE5.5 */
}
* html .menue ul ul a{
width:139px;
w\idth:140px;
}



/* style the top level hover */
.menue a:hover, .menue ul ul a:hover{
color:#000;
background-color: #d0dce7;
}
.menue :hover > a, .menue ul ul :hover > a {
color:#000;
background-color: #d0dce7;
}

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

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

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

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

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