
/*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;
}
/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	z-index:20;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 0px;
	font-size: 12px;
	font-weight:normal;
	color: #000000;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7menubar a.trigger {
	padding: 0px;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7menubar li {
	float: left;
}

/*
Sub menu width
*/
#p7menubar li ul, #p7menubar ul li  {
	width: 150px;
}
/*
Sub menu style
*/
#p7menubar ul li a  {
	color: #565656;
	padding: 5px 11px 5px 7px;
	font-size:13px;
	line-height:normal;
}
/*
Sub menus - Main
*/
#p7menubar li ul {
	margin-left:0px;
	margin-top:0px;
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

/*
main state
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #fff;
	background-color: #ae0f30;
	border-top: 1px solid #fff;
}
/*
hover
*/
#p7menubar ul a:hover {
	background-color: #b5934c!important;
	color: #FFFFFF!important;
}











#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: #FFFFFF;
	background-color: transparent;
}

#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}

#p7menubar li {width: auto;}
