

/*Control DIV for expand all and collapse all links*/
#p8TMctrl {
	
	display: none;
	/*/*/display: block; /* Hide from NN4*/
}
#p8TMctrl a:link {
	color: #666666;
}
#p8TMctrl a:visited {
	color: #666666;
}
#p8TMctrl a:hover {
	color: #87A2A6;
}


/*Sets line-height of all menuitems*/
#p8TMnav div {
	/*/*/line-height: 2.5; /* */
}


/*The Link style for top-level menuitems and is read by all browsers*/
#p8TMnav div a {
	color: #000;
	font-size: 1em;
}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#p8TMnav div a {
	display: block;
	color: #FFFFFF;
	
	text-decoration: none;
	background-color: #ffffff;
	
}
#p8TMnav div a:visited {
	color: #fff;
}
#p8TMnav div a:hover {
	color: #333;
	background-color: #ffffff;
}

/*The Link and visited styles combined for second-level menuitems*/
#p8TMnav div div a, #p8TMnav div div a:visited {
	color: #666666;
	font-size: 9px;
	background-color: #ffffff;
	border-top-color: #87A2A6;
	border-top-style: solid;
	border-top-width: 1px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 6px;
}
#p8TMnav div div a:hover {
	color: #666666;
	background-color: #D4DEDD;
}

/*The Link style for third-level menuitems and lower*/
/*To set a specific style for the fourth level, add a div to the selector*/
/*Fourth-level example syntax: p8TMnav div div div div a {declaration}*/
#p8TMnav div div div a {
	font-size: .7em;
}

/*rules programatically assigned to parent links when image-based plus and minus option is selected. The padding on the 4 following rules supercedes (via !important) the padding on the p8TMnav div a selector when you've chosen the option to use images for the plus and minus signs*/
.p8plusmark {
	background-repeat: no-repeat;
	background-image: url(p8t_plus.gif);
	background-position: 6px 50%;
	padding: 0 0 0 18px !important;
}
.p8minusmark {
	background-repeat: no-repeat;
	background-image: url(p8t_minus.gif);
	background-position: 6px 50%;
	padding: 0 0 0 18px !important;
}

/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.p8defmark {
	background-image:  none;
	/*padding: 0 0 0 20px !important;*/
	padding: 0 0 0 18px !important;
}

/*rules programatically assigned to page link correesponding to current page (You are Here)*/
.p8currentmark {
	font-weight: bold;
	text-transform: uppercase;
	background-color: transparent !important;
	color: #333 !important;
	padding: 0 0 0 18px !important;
}

