/******************************************************* 
Inspirationen til denne css-baserede menu er hentet på
http://www.alistapart.com/articles/horizdropdowns/
*********************************************************/
ul.nav {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	width: 189px; /* Width of Menu Items */
	font-size:100%;
}

ul.nav li  {
	position: relative;
}
		 
li ul.nav2 {
	position: absolute;
	left: 150px;
	top: 0;
	list-style: none;
	width: 210px; /* Width of Menu Items */
	display: none;
}


/* Styles for Menu Items */
ul.nav li a {
	display: block;
	text-decoration: none;
	color: #000;
	background-color:#fff;
	padding: 6px;
	border-bottom: 0;
	font-weight:normal;
}

/* Fix IE. Hide from IE Mac \*/
* html ul.nav li { float: left; height: 1%; }
* html ul.nav li a { height: 1%; }
/* End */

/* Visited Styles */
ul.nav li a:visited { 
	color: #000;
	background-color:#fff;
	text-decoration:none;
	font-weight:normal;
}
ul.nav2 li a:visited { 
	color: #000;
	background-color:#ddd;
	text-decoration:none;
	font-weight:normal;
}
/* Hover Styles */
ul.nav li a:hover { 
	color: #000;
	background-color:#ddd;
	text-decoration:none;
}
ul.nav2 li a:hover { 
	color: #000;
	background-color:#ccc;
	text-decoration:none;
	font-weight:normal;
}
/* Sub Menu Styles */		 		 
li ul.nav2 li a {
	color:#000;
	padding: 6px;
	background-color:#ddd;
	font-weight:normal;
}
/* The magic */
li:hover ul, li.over ul {
	display: block;
}

