/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#menuwrapper {
	background-color:#39F;
	background-repeat:repeat-x;
	width:720px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	z-index:999;
	height:30px;
}

#p7menubar,#p7menubar ul {
	list-style:none;
	font-family:Arial, Helvetica, sans-serif;
	margin:0;
	padding:0;
	font-weight: bold;
}

#p7menubar a {
	display:block;
	text-decoration:none;
	font-size:0.85em;
	color:#003;
	padding:5px 10px;
}

#p7menubar a.trigger {
background-repeat:no-repeat;
background-position:right center;
background-color:#39F;
padding:5px 16px 5px 10px;
}

.text {
font-family:Verdana, Geneva, sans-serif;
font-size:12px;
font-style:normal;
color:#FFF;
}

#p7menubar li {
	float:left;
	height:30px;
	width:auto;
}

#p7menubar li ul,#p7menubar ul li {
	width:11em;
}

#p7menubar ul li a {
color:#565656;
border-right:0;
padding:3px 12px 3px 16px;
}

#p7menubar li ul {
	position:absolute;
	display:none;
	background-color:#D3DAFA;
	background-repeat:repeat-x;
}

#p7menubar li:hover a,#p7menubar a:focus,#p7menubar a:active,#p7menubar li.p7hvr a {
	color:#003;
	background-color:#D3DAFA;
	height:20px;
}

#p7menubar li:hover ul,#p7menubar li.p7hvr ul {
display:block;
}

#p7menubar li:hover ul a,#p7menubar li.p7hvr ul a {
	color:#003;
	background-color:transparent;
}

#p7menubar ul a:hover {
background-color:#B8B4FB !important;
color:#FFFFFF !important;
}
