/*Control DIV for expand all and collapse all links*/

/*Sets top and bottom margins and width of menu area*/
div#p7TMnav {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 10px;
	}
/*Sets line-height of all menuitems*/
#p7TMnav {line-height: 1.00;}
/*Sets background color and border around the menu DIV*/
#p7TMnav {border-bottom: 1px solid #cccccc;}
#p7TMnav div {
	border-top: 1px solid #cccccc;
	border-bottom: none;
	padding: 4px 5px 4px 0px;	
	}
#p7TMnav div div {
	border-top: none;
	padding-left: 8px; 
	}
/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	color: #434a44;
	font-size: 98%; /*Instead of 90% - makes Safari and other Mozilla same size */
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	border: 0px solid #cccccc;
	text-decoration: none;
	display: block;
	color: #434a44;
	}
#p7TMnav div a:link, #p7TMnav div a:visited {color: #434a44;}
#p7TMnav div a:hover {color: #990000;}
/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	font-size: 88%;
	font-weight: normal;
	}
/*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 {font-size: 88%;}
/*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: url('../uiparts/p7t_plus_gray.gif') 5px 4px no-repeat;
	padding: 3px 1px 3px 17px !important;
	}
.p7minusmark {
	background: url('../uiparts/p7t_minus_gray.gif') 5px 4px no-repeat;
	padding: 3px 1px 3px 17px !important;
	}
/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.p7defmark {padding: 3px 1px 3px 17px !important;}
/*rules programatically assigned to page link corresponding to current page (You are Here)*/
.p7currentmark {
	color: #990000 !important;
	background-repeat: no-repeat;
	background-image:  url('../uiparts/here.gif');
	/*background-position: 5px 50%;*/
	background-position: 5px 4px;
	padding: 3px 1px 3px 17px !important;
	}