/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/

/*
Container for the menu. 
*/
#menuwrapper {
	background-color: #6d68aa;
	margin-left: 20px
}
/*
Clears the floated menu items.
*/
.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;
	font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
*/
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	font-size: 12px;
	color: #ffffff;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
*/
#p7menubar a.trigger {
	padding: 5px 10px 5px 10px;
}
/*
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 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: 12em;
	border-top: 1px solid #333366;
}
/*
The sub-menu links. 
*/
#p7menubar ul li a  {
	color: #333366;
	font-size: 11px;
	border-right: 0;
	padding: 2px 2px 2px 7px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
*/
#p7menubar li ul {
	position: absolute;
	display: none;
	background-color: #d6d6d6;
	border: 1px solid #660b12;
	
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. 
*/
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: #ffffff;
	background-color: #660b12;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. 
*/
#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. 
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #333366;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. 
*/
#p7menubar ul a:hover {
	background-color: #660b12!important;
	color: #FFFFFF!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;}

