/*Control DIV for expand all and collapse all links*/
#p7TMctrl {
	margin: 0 0 12px 0;
	display: table;
	width: 189px;
	height: auto;
	clear: none;
}

#p7TMctrl a:link {
	color: #000000;
}
#p7TMctrl a:visited {
	color: #000000;
}
#p7TMctrl a:hover {
	text-decoration: underline;
	color: #000000;
}


/*Sets line-height of menuitems*/
#p7TMnav div {
	line-height: 2.0;
	margin: 0 0 1px 0;
}


/*Sets background color, border, and padding around the menu DIV*/
#p7TMnav {
	color: #000000;
}

/*second level menuitem divs and lower -Cascades to lower levels-*/
/*Sets left margin to 12px establishing a cascading indent*/
#p7TMnav div div {
	margin: 1px 0 1px 0;
	background-color: #BBB;
	padding: 0 0 0 12px;
}

#p7TMnav div div div {
	margin: 1px 0 1px 0;
	background-color: #dddddd;
	padding: 0 0 0 24;
	margin-left: -12px;
}

/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	background-color: #cc9999;
	color: #000000;
	display: block;
}
#p7TMnav div a:hover {
	background-color: #cc9999;
	text-decoration: underline;
	color: #000000;
}

/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	background-color: #bbbbbb;
	color: #000000;
}
#p7TMnav div div a:hover {
	background-color: #bbbbbb;
	text-decoration: underline;
	color: #000000;
}

/*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 {
	background-color: #dddddd;
	color: #000000;
	padding: 0 0 0 24;
}

#p7TMnav div div div a:hover {
	background-color: #dddddd;
	text-decoration: underline;
	color: #000000;
	padding: 0 0 0 24;
}

/*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(ln_link.gif);
	background-position: 4px 50%;
	padding: 0 0 0 20px !important;
}
.p7minusmark {
	background-repeat: no-repeat;
	background-image:    url(ln_down.gif);
	background-position: 4px 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(ln_link.gif);
	background-position: 4px 50%;
	padding: 0 0 0 20px !important;
}

/*rules programatically assigned to page link correesponding to current page (You are Here)*/
.p7currentmark {
	background-repeat: no-repeat;
	background-image: url(ln_current.gif);
	background-position: 4px 50%;	
	padding: 0 0 0 20px !important;
}
