#menuwrapper {
width: 140px;
margin: 0 auto;
}
#p7TMnav div {
text-transform: uppercase;
}
/*Sets background color, border, and padding around the menu DIV*/
#p7TMnav {
padding: 0px;
margin: 0px;
}
/*second level menuitem divs and lower -Cascades to lower levels-*/
/*Sets left margin to 12px establishing a cascading indent*/
/*Anne reset to 0 to remove cascading indent*/
#p7TMnav div div {
margin: 0 0 0 0px;
}
/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
display: block;
color: #FFFFFF;
font-size: 11px;
font-weight: bold;
background-color: #8C9AA8;
border-bottom: 1px solid #FFF;
padding: 8px 12px;
text-decoration: none;
zoom: 1;
}
#p7TMnav div a:visited {
color: #FFFFFF;
}
#p7TMnav div a:hover {
color: #FFFFFF;
background-color: #9AC0CD;
}
/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
padding: 6px;
background-color: #8C9AA8;
color: #003399;
font-size: 9px;
font-weight: normal;
text-decoration: none;
}
#p7TMnav div div a:visited {
color: #003399;
}
#p7TMnav div div a:hover {
color: #003399;
background-color: #9AC0CD;
}
/*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*/
#p7TMnav .p7plusmark {
background-repeat: no-repeat;
background-image: url(p7t_plus.gif);
background-position: 8px 50%;
padding-left: 28px;
}
#p7TMnav .p7minusmark {
background-repeat: no-repeat;
background-image: url(p7t_minus.gif);
background-position: 8px 50%;
padding-left: 28px;
}
/*rule programatically assigned to child links when image-based plus and minus option is selected*/
#p7TMnav .p7defmark {
background-repeat: no-repeat;
background-image: url(p7t_page.gif);
background-position: 8px 50%;
padding-left: 28px;
}
/*rules programatically assigned to page link corresponding to current page (You are Here)*/
#p7TMnav .p7currentmark {
background-color: #9AC0CD !important;
background-repeat: no-repeat;
background-image: url(p7t_current.gif);
background-position: 8px 50%;
padding-left: 28px;

}