/* Container for the menu */
#menuwrapper {
	background-color: #000;
	border-top: 1px solid #3f3f3f;
	border-bottom: 1px solid #3f3f3f;
	font-size: 11px;
	margin-bottom: 10px;
}

/* 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;
}

/* Root UL and applies to all the sub-menu ULs */
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Root-Level Links. */
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 3px 11px;
	color: #f9bc54;
}
/* The Root-Level list items. Floating left allows them to appear horizontally */
#p7menubar li {
	float: left;
}

/* Sets width for Sub-Menu box and the List Items inside.  */
#p7menubar li ul, #p7menubar ul li  {
	width: 220px;
}

/* The sub-menu links */
#p7menubar ul li a  {
	color: #f9bc54;
	padding: 3px 12px 3px 16px;
}

/* Sub-Menu UL describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
*/
#p7menubar li ul {
	position: absolute;
	display: none;
	background-color: #000;
	color: #f9bc54;
}

/* 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 sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled. */
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: #f9bc54;
}

/* 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 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 via the P7_ExpMenu script. */
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #f9bc54;
}

/* The normal hover class for Sub-Level links. The Important directive
is required for older browsers. */
#p7menubar ul a:hover {
	background-color: #000!important;
	color: #f9bc54!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.
Do not edit. */
#p7menubar li {width: auto;}
