/*Control DIV for expand all and collapse all links*/
#p7TMctrl {
	margin: 3px 0 12px 6px;
	font-size: 11px;
	display: block;
	/*/*/display: block; /* Hide from NN4*/
	}
/*Sets top and bottom margins and width of menu area*/
div#p7TMnav {
	margin-top: 0;
	margin-bottom: 0;
/*	width: 100%; */
	}

/*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 #fff;*/
	}

#p7TMnav div {
	/*border-top: 1px solid #fff;*/
	border-bottom: 1px solid #fff;;
	padding: .3em .3em .3em 0;	
	}


/*second level menuitem divs*/
/*Sets left margin for sub-menus establishing a cascading indent*/
/*Sets border and bg color to establish the pastel BOXES*/
#p7TMnav div div {
	line-height: .85em;
	border-top: none;
	border-bottom: none;
	padding: 0 0 0 .7em; 
}
/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	/*color: #336699;*/
	color: #003298;
	font-size: 80%;
	font-weight: bold;
}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	border-top: 0px solid #fff;
	border-right: 0px solid;
	border-bottom: 0px solid #fff;
	border-left: 0px solid #fff;
	text-decoration: none;
	display: block;
	/*color: #434a44;*/
}
#p7TMnav div a:link, #p7TMnav div a:visited {
	/*color: #434a44;*/
}
#p7TMnav div a:hover {
	color: #4A5012;
}
/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	font-size: 85%;
	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: 75%;
}

/*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("../images/p7t_plus_gray.gif");
	background-position: 5px 50%;
	padding: 3px 1px 3px 17px;
}
.p7minusmark {
	background-repeat: no-repeat;
	background-image:    url("../images/p7t_minus_gray.gif");
	background-position: 5px 50%;
	padding: 3px 1px 3px 17px;
}

/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.p7defmark {
	/*background-image:  none;*/
	padding: 3px 1px 3px 17px;
}

/*rules programatically assigned to page link corresponding to current page (You are Here)*/
.p7currentmark {
	/*font-weight: bold;*/
	/*text-transform: none;*/
	/*color: #990000 !important;*/
	background-repeat: no-repeat;
	background-image:  url("../images/here.gif");
	background-position: 5px 50%;
	padding: 3px 1px 3px 17px;
	}
	
