/*	-------------------------------------------------------------
							Tha menu
					http://www.cssplay.co.uk/
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
/* style the outer div to give it width */
.menu {
/*width:750px;*/
position:absolute; 
z-index:100;
padding: 2px 0px 0px 0px;
/* Vid flytt av meny.top så måste #top-section flytta sin margin-bottom... }*/
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0 0 0 0px;
list-style-type:none;
}
.menu ul ul {
width:187px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
text-decoration:none; 
color:#000;
height:27px;
padding-left:9px;
padding-right:9px;
line-height:27px;
float:left;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
float: left;
}

/* style the second level background - nivå 2 med nivå 3, som har undermenyer*/
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background-color:#fff;
text-decoration:none; 
}

/* style the second level hover AND active*/
.menu ul ul a.drop:hover, 
.menu ul ul a.dropActive:link, 
.menu ul ul a.dropActive:active, 
.menu ul ul a.dropActive:visited, 
.menu ul ul a.dropActive:hover {
text-decoration:none; 
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#fff;
text-decoration:none; 
}
/* style the third level hover */
.menu ul ul ul a:hover, 
.menu ul ul ul a.thirdActive:link, 
.menu ul ul ul a.thirdActive:active, 
.menu ul ul ul a.thirdActive:visited, 
.menu ul ul ul a.thirdActive:hover {
text-decoration:none; 
}
.menu ul ul ul :hover > a {
text-decoration:none; 
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:27px;
left:0px;
/*width:160px;*/
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:27px;
t\op:27px;

}

/* position the third level flyout menu */
.menu ul ul ul{
left:185px; 
top:0;
width:187px;
}
/* position the third level flyout menu for a left flyout */
/*.menu ul ul ul.left {
left:179px;
}*/

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background-color:#fff;
color:#000;
height:auto;
line-height:1em;
padding:5px 15px 5px 10px;
width:160px;
border:solid 1px #d5d5d5;
border-top:0;
}
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:150px;
w\idth:160px;
}

/* style the top level hover */
.menu a:hover, .menu a.active:link {
    cursor: default;
	background: none;
    text-decoration:none; 
}

.menu ul ul a:hover, 
.menu ul ul a.active:link, 
.menu ul ul a.active:active, 
.menu ul ul a.active:visited, 
.menu ul ul a.active:hover {
cursor:pointer;
}

.menu :hover > a {
    background: none;
}

.menu ul .topActive {
	color:#000;
}

/*.menu ul a.topActive:hover table {
	visibility: visible;
}

.menu ul a.topActive:hover ul {
	visibility: visible;
}*/
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
visibility:visible;
z-index:4;

}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
z-index:5;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
z-index:6;
}

.menu ul ul {
    border-top:solid 1px #d5d5d5;
}


.mouseover:hover
{
    cursor:pointer!important;
}