/*Navigation (left) Table Cell*/
#navCell {
	background-color: #FF3399;
	vertical-align: top;
	border-right: 1px solid #333333;
}


/*Contains the Expand All and Collapse All controls*/
#p7TMctrl {
	margin: 0 0 12px;
	font-size: 14px;
	display: none;
	/*/*/display: block;
	font-family: Arial, Helvetica, sans-serif;
}
#p7TMctrl a:link {
	color: #333333;
}
#p7TMctrl a:visited {
	color: #333333;
}
#p7TMctrl a:hover {
	color: #FFFFFF;
}

/*Top-level menuitem divs*/
/* sets a 3px bottom margin on top-level menu items*/
#p7TMnav div {
	margin: 0 0 3px -7px;
}

/*Second-level menuitem divs*/
/* sets bottom margin back to zero*/
#p7TMnav div div {
	margin: 0 0 0 6px;
}


/*third level menuitem divs*/
/*Sets left margin to 12px establishing a cascading indent*/
#p7TMnav div div div {
	margin: 0 0 0 9px;
}

/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	color: #595959;
	font-size: 14px;
	line-height: 20px;
	font-family: Arial, Helvetica, sans-serif;
}

/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	/*/*/font-size: 14px;
	border: 0;
	display: block;
	text-decoration: none; /* */
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 6px;
}
#p7TMnav div a:hover {
	color: #FFFFFF;
	background-color: #30588E;
	margin-right: 10px;
}

/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	color: #595959;
	font-size: 13px;
	background-color: transparent;
	border: 0;
	line-height: 18px;
	padding: 0 4px 0 13px;
	font-family: Arial, Helvetica, sans-serif;
}
#p7TMnav div div a:hover {
	color: #FFFFFF;
	background-color: #FF3399;
}

/*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: p7TMnav div div div div a {declaration}*/
#p7TMnav div div div a {
	color: #333333;
	font-size: 10px;
	line-height: 14px;
	font-family: Arial, Helvetica, sans-serif;
}
#p7TMnav div div div a:hover {
	color: #FF3399;
	background-color: #CCC;
}

/*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 p7TMnav div a selector when you've chosen the option to use images for the plus and minus signs*/
.p7plusmark {
	background-repeat: no-repeat;
	background-image:    url(p7t_plus.gif);
	background-position: 6px 50%;
	padding: 0 0 0 20px !important;
	border: thin solid #333333;
}
.p7minusmark {
	background-repeat: no-repeat;
	background-image:    url(p7t_minus.gif);
	background-position: 6px 50%;
	padding: 0 0 0 20px !important;
}

/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.p7defmark {
	background-repeat: no-repeat;
	background-image:    url(blank2.gif);
	background-position: 6px 50%;
	padding: 0 0 0 20px !important;
}

/*rules programatically assigned to page link correesponding to current page (You are Here)*/
.p7currentmark {
	font-weight: bold;
	color: #FF3399 !important;
	background-color: transparent !important;
	background-repeat: no-repeat;
	background-image:     url(blank3.gif);
	background-position: 6px 50%;
	padding: 0 0 0 20px !important;
}

