
/*Sets line-height of all menuitems*/
#p7TMnav {

	margin: 0px 0px 0px 0px;
}

#p7TMnav a {

}

#p7TMnav div {
	
}
/*second level menuitem divs on - Cascades to lower levels*/
/*Sets left margin to 16px establishing a cascading indent*/
/*(Amy) I changed to padding instead of margin*/
/* (Chris) Removed to allow highlight color to span full width */
#p7TMnav div div {
	/*padding-left: 16px;*/
}

/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	text-decoration: none;
	display:block;
	margin:0px;
	padding-left:25px !important;
	padding-top:5px !important;
	padding-right:0.3em !important;
	padding-bottom:5px !important;
	border-bottom:solid 3px white;
	background-repeat: no-repeat;
	background-position: 0px 50%;
}

/*(Amy) added link & active*/
#p7TMnav div a:link {

}
#p7TMnav div a:visited {

}
#p7TMnav div a:hover
{
	text-decoration: none;
	background-color: #ffffff;
	font-weight: normal;
	
}
#p7TMnav div a:active {
	background-color: #669ab2;
	color: white;
	display:block;
	font-weight: normal;
	border-bottom:solid 3px white;
}

/*The Link style for second-level menuitems*/
#p7TMnav div div a {
	margin:0px;
	display:block !important;
	padding-left: 35px !important;
	font-weight: normal;
	border-bottom:solid 3px white;
}

/*(Amy) added link, visited, hover & active*/
#p7TMnav div div a:link {

}
#p7TMnav div div a:visited {

}
#p7TMnav div div a:hover {
	text-decoration: none;
	background-color: #ffffff;
}
#p7TMnav div div a:active {
	background-color: #669ab2;
	color: white;
	display:block;
	font-weight: normal;
	border-bottom:solid 3px white;
}

/*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
{
	display: block;
	padding-left: 45px !important;
	font-weight: normal;
	border-style: solid;
	border-color: #d6e4ea;
	border-bottom:solid 3px white;
}

#p7TMnav div div div a:link {

}
#p7TMnav div div div a:visited {

}
#p7TMnav div div div a:hover
{
		text-decoration: none;
		background-color: #ffffff;
}
#p7TMnav div div div a:active {
	background-color: #669ab2;
	color: white;
	display:block;
	font-weight: normal;
	border-bottom:solid 3px white;
}


#p7TMnav div div div div a
{
	background-color: #EEFFFF;
	display: block;
	font-weight: normal;
	border-bottom: solid 1px #FFFFFF;
}

#p7TMnav div div div div a:link {

}
#p7TMnav div div div div a:visited {

}
#p7TMnav div div div div a:hover
{
	text-decoration: none;
	background-color: #aec9d6;
}
#p7TMnav div div div div a:active {
	background-color: #669ab2;
	color: white;
	display:block;
	font-weight: normal;
	border-bottom:solid 3px white;
}
/*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('/assets/images/arrow.gif');
	background-position: 6px 50%;
	padding: 1px 0 1px 20px !important;
}
.p7minusmark {
	background-repeat: no-repeat;
	background-image: url('/assets/images/arrow.gif');
	background-position: 6px 50%;
	padding: 1px 0 1px 20px !important;
}
.p7defmark {
	padding: 1px 0 1px 20px !important;
}
.p7currentmark {
	font-weight: bold !important;
	padding: 1px 0 1px 20px !important;
	color: #FFFFFF !important;
	background-color: #669ab2 !important;
	text-decoration: none !important;
}


