#nav_container {
height: auto;
width: 780;
font: Georgia, "Times New Roman", Times, serif;
text-align:center;
font-size: 0.8em;
background:#FFFFFF;
z-index:150;
}

* html #nav_container {
	}


/*#menu_container {
margin: -10px 0 40px 10px;
position: relative;
width: 780px;
height: 30px;
z-index: 100;
}*/

#menu, #menu ul {
padding: 0;
margin: 0;
list-style-type: none;
}


/* ------------------ LINK STYLING --------------------- */

#menu a, #menu a:visited { 
display: block;
width: 130px;
font-size: 10px;
color: #000;
background-color: #fff;
/*background-color: #2e9fb4;*/
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: bold;
height: 20px;
line-height: 20px;
background-image: url(../img/topmenybg.png);
background-repeat: repeat-x;
background-position: left bottom;
text-decoration: none;
border-color: #096e82;
/*border-style: solid;*/
border-width: 0px;
}

#menu a.active {
color: #000;
/*background-image: url(../images/button_bg_active.gif);
background-repeat: repeat-x;
background-position: left 0;*/
}

/* ----------- LIST ITEM LINK STYLING ------------------- */
#menu li ul li a, #menu li ul li a:visited { /* Sets up all sub level styling */
color: #000;
background: #fff;
font-size: 11px;
font-weight: normal;
text-align: left;
text-indent: 5px;
}

#menu li ul li a:hover, #menu li ul li a:active, #menu li ul li a:focus {
color: #000;
background:#f3f3f3;
}

#menu li { /* Set up the list items */
float:left;
border-color:none;
/*border-width: 2px 0px 0px 2px;
border-style: solid;*/
}

#menu li:hover, #menu li:active, #menu li:focus { /* For Non-IE browsers and IE7 */
position: relative;
background-image: none;
background-color: #fff;
color: #000;
}

#menu li:hover > a {  /* Make the hovered list color persist thru all items */
background-image: none;
/*background-color: #1b8194;*/
color: #000;
}

#menu li ul { /* Set up the sublevel lists with a position absolute for flyouts and overrun padding. */
display: none;
}

#menu li:hover > ul { /* For Non-IE and IE7, position and make visible the sublevels on hover. */
display:block;
position: absolute;
top: -1px;
left: 98px;
padding: 4px 30px 0px 31px;
background: transparent;
}

#menu > li:hover > ul { /* Position the whole drop down menu beneath the top level liinks */
left: -30px;
top: 16px;
}


/* ----------------- TABLE STYLING FOR IE -----------------*/
#menu table { /* get rid of the table needed for IE */
position: absolute;
border-collapse: collapse;
top: 0;
left: 0;
z-index: 100;
font-size: 1em;
}

* html #menu li a:hover { /* KLUDGE: For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
position:relative;
background-color: #ffffff;
color:#000;
}

#menu li a:active, #menu li a:focus { /* For accessibility of the top level menu when tabbing */
background:#ffffff;
color:#000;
}


/* ---------------------- CLASSES ---------------------- */
#menu li.drop { /* top level menu items */
text-align: center;
font-weight: normal;
}

#menu li.fly { /* to indicate second menu items which have submenus */
background: url(../images/meny_pil.gif) no-repeat left center;
}

#menu li a.enclose, #menu li a.enclose:visited { 
/*border-top: 1px solid #000;*/
}

/* ---------------- SUBMENU STYLING ------------------- */
* html #menu li ul { 
/* HACK: IE5.5 and IE6 position and make visible the sublevels on hover;
change the drop down levels from display:none;
to visibility:hidden;
*/
visibility:hidden;

display:block;
position:absolute;
top:-1px;
left:80px;
padding: 15px 30px 30px 10px;
background:transparent;
}

#menu li a:hover ul ul{ /* keep the third level+ hidden when you hover on first level link */
visibility:hidden;
}

#menu li a:hover ul a:hover ul ul{ /* keep the fourth level+ hidden when you hover on second level link */
visibility:hidden;
}

#menu li a:hover ul { /* make whole dropdown visible when hover on first level link and position it */
visibility:visible;
left:10px;
top:14px;
}

* html #menu li a:hover ul {
top:0;
left:0;
}

#menu li a:hover ul a:hover ul{ /* make the third level visible when you hover over second level link and position it and all further levels */
visibility: visible;
top: -16px;
left: 117px;
}

#menu li a:hover ul a:hover ul a:hover ul { /* make the fourth level visible when you hover over third level link */
color: #000;
visibility:visible;
}

