/*Container for the menu*/
#menuwrapper {
	background-color: #eeeeee;
	font-size: 13px;
	border-bottom: 0px solid #000000;
	background-image: url(bilder/meny.jpg);
	background-repeat: repeat-x;
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*The root and Sub-Level Unordered Lists*/
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana, "Trebuchet MS", Arial, Helvetica, sans-serif;
}
/*Root-Level Links*/
#p7menubar a {
	display: block;
	padding: 7px;
	color: #ffffff;
	text-decoration: none;
	border-right: 1px solid #ffffff;
}
/*Class assigned to those Root-Level links
that have associated Sub-Menus*/
#p7menubar a.trigger {
	padding: 7px;
	background-repeat: no-repeat;
	background-position: right center;
}
/*The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac
*/
#p7menubar li {
	float: left;
	width: 9em;
}
/*Sets width for Sub-Menu List Items
*/
#p7menubar ul li {
	width: 17em;
}
#p7menubar ul li a {
	color: #ffffff;
	background-color: #ffffff;
	border-bottom: 0px solid #ffffff;
	border-right: 0;
	padding: 7px;
}
/* Sub-Menu Unordered List. Width must match
Sub-Munu LI rule (#p7menubar ul li). Positioned
Absolutely to allow it to appear below trigger.
Set to display none to hide it until trigger is
moused over. Background Color must be set.
*/
#p7menubar li ul {
	width: 15em;
	position: absolute;
	display: none;
	background-color: #ffffff;
	border-right: 0px solid #333333;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
*/
#p7menubar li:hover a, #p7menubar a:focus, #p7menubar a:active, #p7menubar li.p7hvr a {
	color: #333333;
	background-color: #eeeeee;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
*/
#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #333333;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers.
*/
#p7menubar ul a:hover {
	background-color: #488c7d;
	color: #ffffff !important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width. */
#p7menubar li {
	width: auto;
}
