/*Top-level menuitem divs*/
/* sets a 3px bottom margin on top-level menu items*/
#p7TMnav div {
	margin: 2 0;
}

/*Second-level menuitem divs*/
/* sets bottom margin back to zero*/
#p7TMnav div div {
	margin: 0 0 0 0;
	background-color: #FED535;
}


/*third level menuitem divs*/
/*Sets left margin to 12px establishing a cascading indent*/
#p7TMnav div div div {
	margin: 0 0 0 0px;
}

/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	color: #FFFFFF;
}

/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	display: block;
	text-decoration: none;
	font-size: 1em;
	font-weight: normal;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 12px;
	padding-right: 0px;
	background-color: #6375B0;
}
#p7TMnav div a:hover {
	background-image: url(arrow.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-attachment: fixed;
}

/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	color: #6375B0;
	padding-top: 1px;
	padding-bottom: 1;
	padding-right: 0px;
	background-repeat: repeat-x;
	background-position: bottom;
	background-color: #FED535;
}
#p7TMnav div div a:hover {
	background-image: url(arrow.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

/*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: #fff;
	font-size: 11px;
}
#p7TMnav div div div a:hover {
	color: #FFF;
	background-color: #999;
}

/*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("p7co_plus.gif");
	background-position: 6px 50%;
	padding: 0 0 0 20px !important;
}
.p7minusmark {
	background-repeat: no-repeat;
	background-image:    url("p7co_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("p7co_def.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;
	text-transform: uppercase;
	color: #fff !important;
	background-color: transparent !important;
	background-repeat: no-repeat;
	background-image:     url("p7co_here.gif");
	background-position: 6px 50%;
	padding: 0 0 0 20px !important;
}
.menu {
	width: 160px;
}
