/*Container for the menu*/
#menuwrapper {
	background-color: #A8A8A8;
	font-size: .9em;
	border-bottom: 1px solid #333;
	background-image: url(../p7exp/images/emenu_gradient.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: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}
/*Root-Level Links*/
#p7menubar a {
	display: block;
	padding: 3px 10px;
	color: #FFFFFF;
	text-decoration: none;
	border-right: 1px solid #444444;
}
/*Class assigned to those Root-Level links
that have associated Sub-Menus*/
#p7menubar a.trigger {
	padding: 3px 16px 6px 10px;
	background-image: url(images/p7PM_dark_south.gif);
	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: 12em;
}
#p7menubar ul li a  {
	color: #FFFFFF;
	background-color: #FFFFFF;
	border-bottom: 1px solid #38506A;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/* Sub-Menu Unordered List. Width must match
Sub-Menu 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: 12em;
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px 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: #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: #666666;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers.
*/
#p7menubar ul a:hover {
	background-color: #CCCCCC;
	color: #000000 !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;}
