/* 
  -----------------------------------
  PopMenu Magic Style Sheet
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme:0 -Basic Style
  -----------------------------------
  Adapted for root-level Background Images
*/
/*Font-size is set for all menu items here*/
#p7PMnav {
	margin: 0;
	padding:0;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#p7PMnav li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/*border top is set to zero to allow the top of the first dropdown to abut the bottom of our buttons*/
#p7PMnav ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: -9000px;
	z-index: 10000;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	border-left: 1px solid #333;
}
/*top border is put back on for flyouts*/
#p7PMnav ul li ul {
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	border-left: 1px solid #333;
}
/*this is all we need for top-level links*/
#p7PMnav a {
	display: block;
	text-decoration: none;
}
/*This rule styles the sub-menu links*/
#p7PMnav ul a, #p7PMnav ul a:visited {
	padding: 2px 5px 2px 10px;
	background-color: #b5d0ea;
	color: #374a5e;
}
/*This is top-level only and is the rule that shifts the background image so that we now
see the bottom one. It is deployed via multiple selectors for hovering, tab key access,
and so it stays persistent when its associated sub-menu is open*/
#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus,
#p7PMnav .p7PMon, #p7PMnav .p7PMmark {
	background-position: left bottom;
}
/*the sub-menu hovers*/
#p7PMnav ul a:hover, #p7PMnav ul a:active, #p7PMnav ul a:focus {
	background-color: #a2c4e5;
	color: #FFF;
	letter-spacing: 0.01px;
}
/* ------ the current page marker style ------ */
#p7PMnav ul .p7PMmark {
	color: #fff;
	font-weight: bold;
}
/* ------ the trigger link styles ------- */

/*the normal trigger links */
#p7PMnav ul .p7PMtrg {
	background-image: url(img/p7PM_light_east.gif);
	background-repeat: no-repeat;
	background-position: right center !important;
}
/* the active trigger link style 
We turn the background image off to ensure that our top-level images do not
inherit down.*/
#p7PMnav ul .p7PMon {
	background-color: #374a5e;
	color: #fff;
	background-image: none;
}
/*the submenu classes */
/*The top property here and in the show class serves to fix a minor bug introduced
by the good folks at Apple in their Safari browser for Panther OS*/
#p7PMnav .p7PMhide {
	left: -9000px;
	border: 0;
	top: 0;
}
#p7PMnav .p7PMshow {
	top: auto;
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width
We set width to auto because we are using top-level bg images and the width is
assigned directly via the IDs assigned to the links.*/
#p7PMnav li {
	float: left;
	width: auto;
}
#p7PMnav ul li {
	float: none;
}
/* 2nd and subsequent Submenu widths */
#p7PMnav ul, #p7PMnav ul li {
	width: 150px;
}
#pmmcrumb {
	font-weight: bold;
	margin-bottom: 16px;
	color: #fff;
}
#pmmcrumb a, #pmmcrumb a:visited {
	font-weight: normal;
	color: #535FAC;
}
#pmmcrumb a:hover, #pmmcrumb a:active, #pmmcrumb a:focus {
	font-weight: normal;
	color: #fff;
}
/*The top-level common properties
Height matches the height of the background images. No repeating. Text indent
hides the text offscreen left.
If you need to add more links, place a comma after #b4 and add more selectors,
incrementing from #b5*/
#b1, #b2, #b3, #b4, #b5, #b6, #b7, #b8 {
	height: 29px!important;
	background-repeat: no-repeat;
	text-indent: -3000px;
}
/*The individual top-level IDS. We simply set width to match the width of the
associated background image and then we set the background image.
If you need to add more links, add more selectors, incrementing from #b5*/
#b1 {
	width: 53px;
	background-image: url(../media/nav/nav_comb_about.jpg);
}
#b2 {
	width: 92px;
	background-image:url(../media/nav/nav_comb_traffic.jpg);
}
#b3 {
	width: 94px;
	background-image:url(../media/nav/nav_comb_service.jpg);
}
#b4 {
	width: 45px;
	background-image:url(../media/nav/nav_comb_news.jpg);
}
#b5 {
	width: 58px;
	background-image:url(../media/nav/nav_comb_images.jpg);
}
#b6 {
	width: 46px;
	background-image:url(../media/nav/nav_comb_links.jpg);
}
#b7 {
	width: 61px;
	background-image:url(../media/nav/nav_comb_contact.jpg);
}
#b8 {
	width: 70px;
	background-image:url(../media/nav/nav_comb_home.jpg);
}