/*    * ul.dropdown will style the main list (the horizontal bar itself)
    * ul.dropdown li will style an individual within the main list 
    * ul.dropdown ul will style the vertical column that drops down 
    * ul.dropdown ul li will style items with that vertical column 
    * ul.dropdown ul ul will style the menus that pop out to the right of the vertical column
	
	Save your background image somewhere in your Web site folder. Here’s where the background image needs to be placed in our CSS code:

    * ul.dropdown
    * ul.dropdown ul
    * ul.dropdown li:hover
    * ul.dropdown ul li

*/
* { padding: 0; margin: 0; }


#wrapper {
	margin: 0 auto;
	width: 922px;
	padding:0px;
	color: #FFF;
}
#header {
	width: 922px;
	color: #FFF;
	padding: 0px;
	height: 155px;
	margin: 10px 0px 0px 0px;
	background-color:#FFF;
	background-image: url(Image/header.jpg);
	background-repeat: repeat-x;
}


#image {
	float:left;
}

ul.dropdown {
	background-image:url(Image/Knapp.gif);
	font-family:Verdana, Geneva, sans-serif;
	width:903px;
	margin: 0px;
	padding-left: 20px;
	float: left;
	list-style-image: none;
	list-style-type: none;
	position: absolute;
	z-index: 597;
	font-size: 12px;
	color: #FFF;
}
ul.dropdown ul {
	background-image:url(Image/Knapp.gif);
	margin: 0px;
	padding: 0px;
	width: 175px;/*Denne styrer bredden på submenu*/
	list-style-image: none;
	list-style-type: none;
	position: absolute;
	visibility: hidden;
	z-index: 700px;
	left: 0px;
	top: 100%;
}
ul.dropdown li {
	line-height:100%;
	vertical-align: middle;
	height:20px;
	margin: auto;
	float: left;
	padding-top: 4px;
	padding-right: 3px;
	padding-bottom: 7px;
	padding-left: 6px;
	list-style-image: none;
	list-style-type: none;
}
ul.dropdown li:hover {
	background-image:url(Image/Knapp.gif);
	position: relative;
	z-index: 599;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFF;
}
/*Styrer bakgrunnsfarge på dropdown menyer*/
ul.dropdown li:hover > ul {
	visibility: visible;
}
/*ul.dropdown ul li Styrer dropdown menyene*/
ul.dropdown ul li {
	float: none;
}
ul.dropdown ul ul {
	left: 99%;
	top: 1px;
}



/*Dette styrer linkenes oppførsel*/

ul.dropdown a:link {
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	font-weight:bold;
	color:#FFF;
	text-decoration: none;
}
ul.dropdown a:visited {
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
	text-decoration: none;
	font-weight: bold;
}
ul.dropdown a:hover {
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
	text-decoration: none;
	font-weight: bold;
}
