/* 
  -----------------------------------
  Pop Menu Magic 2
  by Project Seven Development
  www.projectseven.com
  Menu Type: Vertical
  Style Theme: 17 - Ruby Black
  -----------------------------------
*/

/*Menu Outer Wrapper*/
.p7PMMv17 {
	width: auto;
	margin: 0 auto;
	font-size: inherit;
	padding: 0px;
	text-align: left;
	line-height: normal;
	
}
/*Hide Sub-Menu in Design View*/
.p7PMMv17 ul div {
	display: none;
	padding-left: 2px;
}
.p7PMMv17 ul ul div {
	padding-left: 0px;
}
/*
TOP LEVEL MENU
*/
.p7PMMv17 ul {
	margin: 0;
	padding: 0;
}
.p7PMMv17 li {
	list-style-type: none;
	margin-bottom: 4px;
}
.p7PMMv17 a {
	display: block;
	text-decoration: none;
	padding: 5px 16px;
	color: #000;
	text-align: left;
	background-color: #C30;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	box-shadow: 5px 5px 20px #AAA;
	-moz-box-shadow: 5px 5px 20px #AAA;
	-khtml-box-shadow: 5px 5px 20px #AAA;
	border-top: 1px solid #DF3800;
	border-right: 1px solid #BB2F00;
	border-bottom: 1px solid #BB2F00;
	border-left: 1px solid #DF3800;
}
.p7PMMv17 a:hover, .p7PMMv17 a.trig_open, .p7PMMv17 a.trig_open_left {
	color: #CCC;
	background-color: #000;
	border-color: #000;
}
/*
Syntax for special classes programatically assigned to first and last links and also LIs
See user guide for more information
*/
.p7PMMv17 ul a.pmmfirst {
}
.p7PMMv17 ul a.pmmlast {
}
.p7PMMv17 ul li.pmmfirst {
}
.p7PMMv17 ul li.pmmlast {
	margin-bottom: 0px;
}

/*First Sub Level*/
.p7PMMv17 ul ul {
	z-index: 10000;
	width: 200px;
	background-image: url(img/ruby-black-sub.png);
	border-radius: 3px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	border: 2px solid #000;
	box-shadow: 5px 5px 20px #333;
	-moz-box-shadow: 5px 5px 20px #333;
	-khtml-box-shadow: 5px 5px 20px #333;
	
}
.p7PMMv17 ul ul li {
	background-image: none;
	margin-bottom: 0px;
}
.p7PMMv17 ul ul a {
	color: #CCC;
	background-color: transparent;
	text-align: left;
	border: 0;
	overflow: hidden;
	border-radius: 0;
	-moz-border-radius: 0;
	-khtml-border-radius: 0;
	box-shadow: 0px 0px 0px #000;
	-moz-box-shadow: 0px 0px 0px #000;
	-khtml-box-shadow: 0px 0px 0px #000;
}
.p7PMMv17 ul ul a.pmmfirst {
	border-radius: 2px 2px 0 0;
	-moz-border-radius: 2px 2px 0 0;
	-khtml-border-radius: 2px 2px 0 0;
}
.p7PMMv17 ul ul a.pmmlast {
	border-radius: 0 0 2px 2px;
	-moz-border-radius: 0 0 2px 2px;
	-khtml-border-radius: 0 0 2px 2px;
}
.p7PMMv17 ul ul a:hover, .p7PMMv17 ul ul a.trig_open, .p7PMMv17 ul ul a.trig_open_left {
	color: #000;
	text-align: left;
	background-color: #C30;
}

/*
SPECIAL IMAGE-BASED RULES
*/
.p7PMMv17 img {
	border: 0;
}
.p7PMMv17 .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*/

.p7PMMv17 a.trig_closed {
	background-image: url(img/pmm_east_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.p7PMMv17 a.trig_closed_up {
	background-image: url(img/pmm_north_dark.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.p7PMMv17 a.trig_closed_left {
	background-image: url(img/pmm_west_medium.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
/*Sub Level*/
.p7PMMv17 ul ul a.trig_closed {
	background-image: url(img/pmm_east_medium.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.p7PMMv17 ul ul a.trig_closed_left {
	background-image: url(img/pmm_west_dark.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

/*The Current Marker (You are here) links*/
.p7PMMv17 .current_mark {
	font-weight: normal;
	text-decoration: underline;
}
.p7PMMv17 ul ul .current_mark {
}

