@charset "utf-8";
/* CSS Document */

#meny
	{
	font-size: 12px;
	margin-right:10px;
	margin-bottom:3px;
	margin-top:59px;
	float:right;
	
	font-family: Kalinga, Calibri;
	font-weight:bold;
	}
		
#meny a
	{
	text-align: center;
	display:block;
	/*border: 1px solid #555;*/
	white-space: nowrap;
	margin:0;
	padding: 0.1em;
	}
	
#meny a:link, #meny a:visited, #meny a:active	/* menu at rest */
	{
	color: black;
	/*background-color: white;*/
	text-decoration:none;
	}
	
#meny a:hover						/* menu on mouse-over  */
	{
	color: #999;
	/*background-color: #FFF;*/
	text-decoration:none;
	}	
	
#meny a.top_parent, #meny a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(bilder/style/navdown_black.png);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#meny a.parent, #meny a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(bilder/style/nav_black.png);
	background-position: right center;
	background-repeat: no-repeat;
	}

#meny ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	min-width:80px;
	width:auto;	/* width of all menu boxes */
	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	}

#meny li
	{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	}

#meny ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 3px;
	margin:0 0 0 0;
	background-color:#FFF;
	border:thin solid #CCC;
	}
	
#meny ul ul a
	{
	text-align: center;
	display:block;
	/*border: 1px solid #555;*/
	white-space: nowrap;
	margin:0;
	padding: 5px;
	}

#meny ul ul ul
	{
	top:0;
	left:100%;
	}

div#meny li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#meny li:hover ul ul,
div#meny li li:hover ul ul,
div#meny li li li:hover ul ul,
div#meny li li li li:hover ul ul
{display:none;}

div#meny li:hover ul,
div#meny li li:hover ul,
div#meny li li li:hover ul,
div#meny li li li li:hover ul
{display:block;}

/*Adminmeny*/
#adminmeny{margin: 0; padding: 4px 0; font-size: 12px; background-color:#FFF;}
#adminmeny li{ margin-top:10px; display: block; list-style-type: none; background-color:#FFF;}
#adminmeny a{padding: 4px 12px; text-decoration: none;}

#adminmeny a:link{color: #000; background-color:#FFF;}
#adminmeny a:visited{color: #000; background-color:#FFF;}
#adminmeny a:hover{color:#000; background-color: #999}
#adminmeny a#current{color: #000; background-color: #FFF;}

/*Adminmeny Under*/
#adminmeny_under {margin: 0; padding: 4px 0; font-size: 12px; background-color:#FFF; font-style:italic;}
#adminmeny_under li{ margin-top:10px; display: block; list-style-type: none; background-color:#FFF;}
#adminmeny_under a{padding: 4px 30px; text-decoration: none;}

#adminmeny_under a:link{color: #000; background-color:#FFF;}
#adminmeny_under a:visited{color: #000; background-color:#FFF;}
#adminmeny_under a:hover{color:#000; background-color: #999}
#adminmeny_under a#current{color: #000; background-color: #FFF;}

