/* 
  -----------------------------------
  Pop Menu Magic 2
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme: 09 - Pipes
  -----------------------------------
*/

/*Menu Outer Wrapper*/
.menu_bottom {
	width: auto;
	margin: 0 auto;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: inherit;
	text-align: center;
	line-height: normal;
}
/*Hide Sub-Menu in Design View
Compensate for LI padding on Sliding Doors themes*/
.menu_bottom ul div {
	display: none;
}
/*
TOP LEVEL MENU
*/
.menu_bottom ul {
	margin: 0;
	padding: 0;
}
.menu_bottom li {
	list-style-type: none;
	float: left;
	width: 100px;
	background-image: url(img/pmm_pipe_dark.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
/* Hide from IE5 Mac \*/
.menu_bottom li {
	width: auto;
}
/*Top Level Links*/
.menu_bottom a {
	display: block;
	text-decoration: none;
	padding: 8px 14px 8px 12px;
	color: #FF3300 !important;
	text-align: left;
	font-size: 0.7em;
	font-weight: bold;
}
.menu_bottom a:hover {
	color: #F59D3D !important;
}
/*
Syntax for special classes programatically assigned to first and last links and also LIs
See user guide for more information
*/
.menu_bottom ul a.pmmfirst {
}
.menu_bottom ul a.pmmlast {
}
.menu_bottom ul li.pmmfirst {
	background-image: none;
}
.menu_bottom ul li.pmmlast {
}
/*First Sub Level*/
.menu_bottom ul ul {
	z-index: 10000;
	background-color: #FF3300;
	width: 200px;
	border-right: 1px solid #FDFAD9;
	border-bottom: 1px solid #FDFAD9;
}
.menu_bottom ul ul li {
	float: none;
	background-image: none;
}
.menu_bottom ul ul a {
	padding: 4px 12px;
	color: #FFCC00 !important;
	background-image: none;
	text-align: left;
	font-variant: normal;
	font-size: .7em;
	overflow: hidden;
	border-color: #FF3300;
	border: 1px solid;
}
.menu_bottom ul ul a:hover {
	background-color: #FF6600 !important;
	color: #FFF !important;
	background-image: none;
	border-color: #FF9900;
	border: 1px solid;
}
/*Third Level (Flyouts in horizontal menu)*/
.menu_bottom ul ul ul {
	border-top: 1px solid #F8BD7C;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	border-left: 1px solid #F8BD7C;
}
/*
SPECIAL IMAGE-BASED RULES
*/
.menu_bottom img {
	border: 0;
}
.menu_bottom .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*/
.menu_bottom ul a.trig_closed, .menu_bottom ul a.trig_closed_left {
	background-image: url(img/pmm_south_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.menu_bottom ul a.trig_closed_up {
	background-image: url(img/pmm_north_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.menu_bottom ul a.trig_open, .menu_bottom ul a.trig_open_up {
	color: #F59D3D !important;
	text-decoration: underline;
}
.menu_bottom ul ul a.trig_closed {
	background-image: url(img/pmm_east_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.menu_bottom ul ul a.trig_closed_left {
	background-image: url(img/pmm_west_dark.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.menu_bottom ul ul a.trig_open {
	color: #FFF !important;
	background-color: #000 !important;
}
/*The Current Marker (You are here) links*/
.menu_bottom .current_mark {
	font-weight: bold;
	color: #000 !important;
	text-transform: uppercase;
}
.menu_bottom ul ul .current_mark {
	color: #FFF !important;
}

/*
Utility Rule used for Clearing floats in Horizontal Menus
*/
.p7pmmclearfloat {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}
