﻿ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 180px; /* Width of Menu Items */
	}
	
ul li {
	position: relative;
	background-color: Black;
	/*width: 180px;*/
	}
	
ul li ul 
{
    margin-top: -1px;
	border-top: 1px solid #e4e4e4;
	}
	
li ul {
	position: absolute;
	left: 180px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #000000;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border-bottom: 1px solid #e4e4e4;
	}
	
ul li a:visited 
{
    color: #000000;
    text-decoration: none;
}

/* undvik att menyn döljs vid hover då det är innehåll bakom */
#vertnav li:hover ul li { position: static; }
	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */

#vertnav li a {
	display: block;
	padding: 7px 7px 7px 0.5em;
	padding-left: 13px;
	border-left: 0px solid #1958b7;
	border-right: 0px solid #508fc4;
	background-color: #ffffff;
	color: #0069B5;
	text-decoration: none;
	width: 100%;
	}
	
#vertnav li li a {
	border-left: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
	}

html>body #vertnav li a {
	width: auto;
	}

#vertnav li a:hover {
	background-color: #ffffff;
	color: #000000;
}

