.menu_css {
 width:850px;
 font-size:0.85em;
 position:relative;
 z-index:100;
 background: #1e4c72;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu_css ul {
 padding:0;
 margin:0;
 list-style-type:none;
}
.menu_css ul ul {
 width: 150px;
}	

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu_css li {
 float:left;
 width:110px;
 position:relative;
 border:1px solid #fff;
 border-width: 0px 3px 0px 0px;
}

/* style the links for the top level */
.menu_css a, .menu_css a:visited {
  display:block;
  font-family: arial;
  font-size:11px;
  font-weight: bold;
  text-decoration:none;
  color:#fff;
  width:100px;
  height:20px;
  border:1px solid #1e4c72;
  border-width:0px 1px 1px 1px;
  background:#1e4c72;
  padding-left:5px;
  padding-right: 5px;
  line-height:19px;
  text-align: center;
}	
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu_css a, * html .menu_css a:visited {
width:137px;
w\idth:137px;
}

/* style the second level background */
.menu_css ul ul a.drop, .menu_css ul ul a.drop:visited {
  background:#fff url(../../graphics/drop.gif) bottom right no-repeat;
}
/* style the second level hover */
.menu_css ul ul a.drop:hover{
  background:#fff url(../../graphics/drop.gif) bottom right no-repeat;
  color: #de944e;
}
.menu_css ul ul :hover > a.drop {
  background:#fff url(../../graphics/drop.gif) bottom right no-repeat;
  color: #de944e;
}

/* style the third level background */
.menu_css ul ul ul a, .menu_css ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.menu_css ul ul ul a:hover {
background:#b2ab9b;
}

/* style the *fourth* level background */
.menu_css ul ul ul ul a, .menu_css ul ul ul ul a:visited {
background:#a2dfa8;
}
/* style the *fourth* level hover */
.menu_css ul ul ul ul a:hover {
background:#a2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu_css ul ul {
visibility:hidden;
position:absolute;
height:0;
top:21px;
left:0;
width:150px;
}
/* another hack for IE5.5 */
* html .menu_css ul ul {
top:30px;
t\op:31px;
}
	
/* hide the *4* sub levels and give them a positon absolute so that they take up no room */
.menu_css ul ul ul {
 visibility:hidden;
 position:absolute;
 height:0;
 top:21px;
 left:0;
 width:137px;
}
/* another hack for IE5.5 */
* html .menu_css ul ul ul {
top:30px;
t\op:31px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu_css ul ul ul ul {
visibility:hidden;
position	:absolute;
height:0;
top:21px;
left:139px;
width:137px;
}
/* another hack for IE5.5 */
* html .menu_css	 ul ul ul ul {
top:30px;
t\op:31px;
}
/* position the third level flyout menu */
.menu_css ul ul ul{
left:137px;
top:0;
width:137px;
}
/* position the third level flyout menu for a left flyout */
.menu_css ul ul ul.left {
left:-137px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu_css table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu_css ul ul a, .menu_css ul ul a:visited {
background:#fff;
color:#000;
height:auto;
line-height:1em;
padding:5px 10px;
width:130px;
/* yet another hack for IE5.5 */
}
* html .menu_css ul ul a{
width:137px;
w\idth:129px;
}


/* style the top level hover */
.menu_css a:hover, .menu_css ul ul a:hover{
  color:#de944e;
}

/*
.menu_css :hover > a, .menu_css ul ul :hover > a {
  color:#fff;
  background:#949e7c;
}
*/

/* Style den active menu lvl 1 */
.menu_css ul a.dropact {
  color:#de944e;
/*  background:#fff; */		
/*  	border: 1px solid #fff; */
}

/* Style den active menu lvl 2*/
.menu_css ul ul a.dropact {
  color:#de944e;
  background:#fff;
  border: 1px solid #1e4c72;
  border-width: 0px 1px 1px 1px;
}


/* make the second level visible when hover on first level list OR link */
.menu_css ul li:hover ul,
.menu_css ul a:hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu_css ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu_css ul :hover ul :hover ul{
visibility:visible;
}

/* keep the *fourth* level hidden when you hover on first level list OR link */
.menu_css ul ul ul ul :hover ul :hover ul{
visibility:hidden;
}

/* make the fourth level visible when you hover over third level list OR link */
.menu_css ul :hover ul :hover ul :hover ul{
visibility:visible;
}
