.dropdown {
	clear: both;
	display: block;
	margin: 0 0 15px 0;
	position: relative;	
}
	.dropdown ul {
	  font-family: Arial, Verdana;
	  font-size: 16px;
	  margin: 0;
	  padding: 0;
	  position: relative;
	  list-style: none;
	  text-align: center;
	  z-index: 10;
	}
	.dropdown ul li{
	  	display: inline;
	  	position: relative;
	  	margin-right: -2px;
		cursor: default;
	}
	.dropdown li ul  { 
		display: none;
		padding: 0; 
	}
	.dropdown ul li a {	
		background-color: #A60800;  /*Overordnet normal*/
		border-top: 1px solid #fff;
		color: #ffffff;
		font-size: 80% !important;	
		padding: 5px 15px 5px 15px;
		text-decoration: none;
		white-space: nowrap;	
	}
	.dropdown ul li a:hover {
		background-color: #C60A00; /*Overordnet mouseover*/
	}	
	.dropdown li:hover ul {
	  	display: block;
		left: 0;
		position: absolute;
		top: 23px;
	}
	.dropdown li:hover li {		
		display: list-item;
	  	font-size: 13px;
		margin-top: 3px;	
	}
	.dropdown li:hover a {
	}
	.dropdown li:hover li a:hover {
		background-color: #C60A00;   /*dropdown mouseover*/
	}



.alt {
	z-index: 1 !important;
}
	.alt li a {
		background-color: #FF5B53 !important;  /*Overordnet normal*/
	}
	.alt li a:hover {
		background-color: #FF8079 !important; /*Overordnet mouseover*/
	}
	.alt li:hover a {

	}
	.alt li:hover li a:hover {
		background-color: #FF8079 !important;   /*dropdown mouseover*/
	}


/*IE fix...*/
.dropdown ul li  { height: 23px; text-align:left; }
.dropdown ul li a { height: 23px;  }
