/* 
  -----------------------------------
  Pop Menu Magic 2
  by Project Seven Development
  www.projectseven.com
  Menu Type: Vertical
  Style Theme: 08 - Cayenne
  -----------------------------------
*/

/*Menu Outer Wrapper*/
.menu_side {
	width: auto;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	padding: 0;
	text-align: left;
	line-height: normal;
}
/*Hide Sub-Menu in Design View*/
.menu_side ul div {
	display: none;
}
/*
TOP LEVEL MENU
*/
.menu_side ul {
	margin: 0;
	padding: 0;
}
.menu_side li {
	list-style-type: none;
}
.menu_side a {
	display: block;
	text-decoration: none;
	padding: 5px 16px;
	color: #FFFFFF !important;
	background-color: #FF9900;
	border-top: 1px solid #FDFAD9;
	border-right: 1px solid #FDFAD9;
	border-bottom: 1px solid #FDFAD9;
	border-left: 1px solid #FDFAD9;
	text-align: left;
}
.menu_side a:hover {
	color: #FFF !important;
	background-color: #FF6600 !important;
	border-color: #FF3300;
}
/*
Syntax for special classes programatically assigned to first and last links and also LIs
See user guide for more information
*/
.menu_side ul a.pmmfirst {
}
.menu_side ul a.pmmlast {
}
.menu_side ul li.pmmfirst {
}
.menu_side ul li.pmmlast {
}

/*First Sub Level*/
.menu_side ul ul {
	z-index: 10000;
	width: 180px;
	background-color: #FF3300;
}
.menu_side ul ul li {
	background-image: none;
	background-color: #fff;
}
.menu_side ul ul a {
	color: #FFCC00 !important;
	background-color: #FF3300;
	text-align: left;
	overflow: hidden;
	border-top-color: #FF3300;
	border-right-color: #FF3300;
	border-bottom-color: #FF3300;
	border-left-color: #FF3300;
}
.menu_side ul ul a:hover {
	border-color: #FF9900;
}
/*
SPECIAL IMAGE-BASED RULES
*/
.menu_side img {
	border: 0;
}
.menu_side .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
*/

/*Root Level*/
.menu_side a.trig_open {
	border-color: #FF9900;
}
.menu_side a.trig_closed {
	background-image: url(img/pmm_east_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.menu_side a.trig_closed_up {
	background-image: url(img/pmm_north_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.menu_side a.trig_closed_left {
	background-image: url(img/pmm_west_dark.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.menu_side a.trig_open, .menu_side a.trig_open_left {
	color: #FFCC00 !important;
	background-color: #FF3300 !important;
}
/*Sub Level*/
.menu_side ul ul a.trig_closed {
	background-image: url(img/pmm_east_medium.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.menu_side ul ul a.trig_closed_left {
	background-image: url(img/pmm_west_medium.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.menu_side ul ul a.trig_open, .menu_side ul ul a.trig_open_left {
	color: #FFCC00 !important;
	background-color: #FF9900 !important;
	background-image: none;
	border-color: #FF9900;
}

/*The Current Marker (You are here) links*/
.menu_side .current_mark {
	font-weight: bold;
	color: #000 !important;
	font-variant: small-caps;
}
.menu_side ul ul .current_mark {
	color: #FFCC00 !important;
}
.menu_side .current_mark:hover {
	font-weight: bold;
	color: #FFFFFF !important;
}

