/* 
  -----------------------------------
  Pop Menu Magic 2
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme: 05 - Oak
  -----------------------------------
*/

/*Menu Outer Wrapper*/
.p7PMMh05 {
	width: 80%; /* Sets the width of the nav bar to 80 percent so that it will match up with the columns below. */
	margin: 0 auto;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: inherit;
	background-color: #663300;
	background-image: url(../images/mainnav-bg.jpg);
	background-repeat: repeat-x;
	border-top: 2px solid #fff; /* Sets top border. */
	border-left: 2px solid #fff; /* Sets background image and tiles it horizontally. Also sets a backup background color. */
	border-bottom: 1px solid #fff;
	text-align: left;
	line-height: normal;
	list-style: none; /* Removes list markers. */
	font-size: 0.9em; /* Sets font size smaller than default set on body. */
	position: absolute; /* Sets the nav bar to be positioned in a precise spot in relation to its nearest postioned ancestor, #header. */
	bottom: 0; /* Makes the nav bar stick to the bottom of the header area, no matter what the font size. */
	right: 16px; /* This, in conjuction with the following rule, positions the nav bar at the right side of the header while killing the default right margin of 16 pixels that MacIE adds to absolutely positioned right boxes. */
	margin: 0 -16px 0 0; /* See note above. Also, zero values get rid of default margin that unordered lists have. */
}


	
	
	
	
	
	
/*Hide Sub-Menu in Design View*/
.p7PMMh05 ul div {
	display: none;
}
/*
TOP LEVEL MENU
*/
.p7PMMh05 ul {
	margin: 0;
	padding: 0;
}
.p7PMMh05 li {
	list-style-type: none;
	float: left;
	width: 120px;
	padding:0.5em;
	border-right: 1px solid #FFF;
	height:22px;
}
/* Hide from IE5 Mac \*/
.p7PMMh05 li {
	width: auto;
}
/*Top Level Links*/
.p7PMMh05 a {
	display: block;
	text-decoration: none;
	color: #FFF !important;
	text-align: left;
	font-weight:bold;
}
.p7PMMh05 a:hover {
	color: #C90 !important;
}
/*
Syntax for special classes programatically assigned to first and last links and also LIs
See user guide for more information
*/
.p7PMMh05 ul a.pmmfirst {
}
.p7PMMh05 ul a.pmmlast {
}
.p7PMMh05 ul li.pmmfirst {
}
.p7PMMh05 ul li.pmmlast {
}
/*First Sub Level*/
.p7PMMh05 ul ul {
	z-index: 10000;
	width: 220px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	background-color: #663300;
}
.p7PMMh05 ul ul li {
	float: none;
	background-image: none;
}
.p7PMMh05 ul ul a {
	padding: 4px 12px;
	color: #FFF !important;
	border-right: 0;
	text-align: left;
	overflow: hidden;
	line-height:100%;
}
.p7PMMh05 ul ul a:hover {
	color: #C90 !important;
}
/*Third Level (Flyouts in horizontal menu)*/
.p7PMMh05 ul ul ul {
	border-top: 1px solid #4E4B46;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #4E4B46;
}
/*
SPECIAL IMAGE-BASED RULES
*/
.p7PMMh05 img {
	border: 0;
}
.p7PMMh05 .p7PMM_img {
	padding: 0;
	border: 0;
	background-image: none;
	background-color: transparent;
}
/*
TRIGGERS and CUURENT MARK RULES
The Closed state relates to trigger items when their child menus are not showing
The Open state relates to trigger items when their child menus are showing
Selectors appended with _left Automatically change arrow position and orientation
if sub levels are set to fly out to the left
*/

/*Sub Level*/
.p7PMMh05 ul a.trig_closed, .p7PMMh05 ul a.trig_closed_left {
	background-image: url(img/pmm_south_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.p7PMMh05 ul a.trig_closed_up {
	background-image: url(img/pmm_north_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.p7PMMh05 ul a.trig_open, .p7PMMh05 ul a.trig_open_left, .p7PMMh05 ul a.trig_open_up {
	color: #C90 !important;
}
.p7PMMh05 ul ul a.trig_closed {
	background-image: url(img/pmm_east_medium.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.p7PMMh05 ul ul a.trig_closed_left {
	background-image: url(img/pmm_west_medium.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.p7PMMh05 ul ul a.trig_open {
	color: #FFF !important;
	background-image: none;
	background-color: #000 !important;
}
/*The Current Marker (You are here) links*/
.p7PMMh05 .current_mark {
	font-weight: bold;
	color: #C90 !important;
	font-style:italic;
}
.p7PMMh05 ul ul .current_mark {
}

/*
Utility Rule used for Clearing floats in Horizontal Menus
*/
.p7pmmclearfloat {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}

