/*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: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: normal;
	z-index:100;	
}
/*Root-Level Links*/
#p7menubar a 
{
	width: 131px;
	height: 44px;
	display: block;
	margin: 0px;
	text-indent: 15px;
	line-height: 50px;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	background:url(../images/topnav_item_bg.gif) no-repeat left top;	
	border-left: 1px solid #ffffff;
}
#p7menubar a:hover
{
	background-position: 100% -44px;
}
/*Class assigned to those Root-Level links
that have associated Sub-Menus*/
#p7menubar a.trigger 
{
	margin: 0;
	border: 0;
	text-indent: 15px;
	line-height: 50px;
	background:url(../images/topnav_item_bg.gif) no-repeat left top;
	font-weight: bold;
}
#p7menubar a.trigger:hover
{
	background-position: 0% -44px;
}
/*The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac
*/
#p7menubar li {
	float: left;
}
/*Sets width for Sub-Menu List Items
*/
#p7menubar ul li  {
	width: 131px;
	margin: 0;
	padding: 0;
}
#p7menubar ul li a  
{
	margin: 0px;
	color: #FFFFFF;
	font-weight: normal;
	background:url(../images/topnav_subitem_bg.gif) no-repeat left top;
	height: 34px;
	text-indent: 7px;
	line-height: 32px;
}
/* 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 
{
	margin: 0;
	padding: 0;
	width: 131px;
	position: absolute;
	display: none;
	background-color: #93adbf;
}
/*
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: #FFFFFF;
}
/*
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: #FFFFFF;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers.
*/
#p7menubar ul a:hover {
	background-position: 0% -34px;
}
/* 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;}