#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 16px;
	font-weight: normal;
	color: #313131;
	text-decoration: none;
}

.delimiter{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-right: 8px;
	font-size: 10px;
	line-height: 16px;
	font-weight: normal;
	color: #313131;
	text-decoration: none;
}



.mainitems a{
	margin-left: 0px; /* Var initialt 6 */
	margin-right: 8px;
	text-decoration: none;
	font-size: 10px;
	line-height: 16px;
	font-weight: normal;
	color: #313131;
}

.subuls{
display: none;
width: 170px;
position: absolute;
top: 16px; /* Styr mellanrummet från topnod till submeny */
left: 0px; /* Styr placeringen av submenyn i sidled  var initialt 6 */
background-color: #ffffff;
border: 1px solid black;
}

.subuls li{
width: 100%;
}

.subuls li a{
text-decoration: none;
}

#cssdropdown li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
/*top: auto;*/
/*left: auto;*/
}

#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}

#restofcontent { /*wrap rest of content of the page inside this div*/
clear: left;
}