#top-menu {
  position: absolute;
  top: 0;
  left: 0;
  /*display: inline-block; - ÄNDRINGAR FÖR BRED MENY*/
}

#top-menu ul {
	margin: 0;
	padding: 0;
	line-height: 100%;
  position: relative;
  z-index: 9999;
}
#top-menu ul li {
	float: left;
	/*position: relative; - ÄNDRINGAR FÖR BRED MENY*/
	margin: 0;
	padding: 0;
	list-style: none;
}

/* main level link */
#top-menu ul li a {
  display: block;
  padding: 0px 15px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  border-right: 1px solid #808080;
  text-shadow: 1px 1px 0px #4c4c4c;
  text-align: center;
  line-height: 47px;
  color: #fff;
}
#top-menu ul li a div.arrow {
  background-image: url(../images/arrow-down.png);
  width: 9px;
  height: 5px;
  margin-left: 10px;
  display: inline-block;
}
#top-menu ul li a:hover div.arrow {
  background-image: url(../images/arrow-up.png);
  width: 9px;
  height: 5px;
  margin-left: 10px;
  display: inline-block;
}

#top-menu ul li:hover {
	/*background: rgba(255, 255, 255, 0.75);
  -moz-box-shadow:    inset 0 0px 2px #ccc;
  -webkit-box-shadow: inset 0 0px 2px #ccc;
  box-shadow:         inset 0px 0px 2px #ccc;*/
}

/* main level link hover */
#top-menu ul .current a, #top-menu ul li:hover > a {
	background-color: #fff;
  color: #000;
  text-shadow: none;
  text-decoration: underline;
}

#top-menu ul li:hover:first-child > a:first-child {
	background-color: #808080;
  color: #000;
  text-shadow: none;
  text-decoration: underline;
}


/* sub levels link hover */
#top-menu ul li ul li:hover:first-child > a:first-child {
	background-color: #fff;
  color: inherit;
  text-shadow: inherit;
  text-decoration: underline;
}
#top-menu ul ul li:hover a, #top-menu ul li:hover li a {
	color: #333;
}
#top-menu ul ul li a:hover {
  color: #000 !important;
  background-color: none !important;
}

/* dropdown */
#top-menu ul li:hover > ul {
	display: block;
}

/* level 2 list */
#top-menu ul ul {
	display: none;
	position: absolute;
	top: 47px;
  left: 0px; /* compensate margin */

	margin-left: -1px;
  
	width: 963px;
	padding: 8px 0px 15px 15px;
  
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  
  background-color: #fff;
  
  /*
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#ececec');
  background-image: linear-gradient(bottom, #ececec 9%, #f9f9f9 55%);
  background-image: -o-linear-gradient(bottom, #ececec 9%, #f9f9f9 55%);
  background-image: -moz-linear-gradient(bottom, #ececec 9%, #f9f9f9 55%);
  background-image: -webkit-linear-gradient(bottom, #ececec 9%, #f9f9f9 55%);
  background-image: -ms-linear-gradient(bottom, #ececec 9%, #f9f9f9 55%);
  background-image: -webkit-gradient(	linear,	left bottom, left top, color-stop(0.09, #ececec), color-stop(0.55, #f9f9f9));
  */
  
	/*
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	box-shadow: 0 1px 1px rgba(0,0,0, .2);
  */
  
	border-left: 1px solid #737373;
  border-right: 1px solid #737373;
  border-bottom: 3px solid #4c4c4c;
  border-top: 0px solid #fff;
}
#top-menu ul ul.styles {
  padding-top: 20px;
}
#top-menu ul ul.styles li a {
  text-align: center;
  line-height: 300%;
}

#top-menu ul ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#top-menu ul ul li a {
  width: 135px;
  padding: 0;
	text-decoration: none;
	text-align: left;
  color: #707070 !important;
  text-shadow: none !important;
  text-transform: none !important;
  font-size: 12px !important;
  border-right: 0 !important;
  line-height: 150%;
}

/* level 3+ list */
#top-menu ul ul ul {
	left: 185px;
	top: -1px;
}

/* clearfix */
#top-menu ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
html[xmlns] #top-menu ul {
	display: block;
}
 
* html #top-menu ul {
	height: 1%;
}