/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/

/* Container for the menu. */
#menuwrapper {
	width:770px;
	position:relative;top:152px;left:35px;
}
/*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. */
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*Root-Level Links.  Do not change the first two properties. Font-size is set here and will apply to all menu levels.*/
#p7menubar a {
	display: block;
	text-decoration: none;
	height:14px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	font-weight: normal;
	line-height:14px;
	color: #fff;
	text-align:center;
	border-right:solid 1px white;
}
	
/*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 - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#p7menubar li ul, #p7menubar ul li  {
	width: 85px;
}

/* The sub-menu links. */
#p7menubar ul li a {
	border:none;
	width: 83px !important;
	width: 85px;
	text-align:left;
	text-indent:5px;
	padding: 2px 0px 2px 0px
}
/*
Sub-Menu Unordered Lists 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: #7b1501;
	background-image: none;
}
/*
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, 
#p7menubar a.selected {
	/*background-image: url(../images/tab_yellow.jpg);*/
	color:#b0953a;
}
/*
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.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #fff;
	background-color: transparent;
	background-image: none;
}

/* The normal hover class for Sub-Level links. The Important directive is required for older browsers. */
#p7menubar ul a:hover 
{
	background-color: #7b1501!important;
	color: #b0953a!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 this rule in any way. */
#p7menubar li {width: auto;}
