body,p,table {font-family: tahoma; font-size: 11px;}
	
.header {color: #D43D1A; font-family: Garamond; font-size: 26px; font-weight: bold;}
.subheader {color: #D43D1A; font-family: Garamond; font-size: 18px; font-weight: bold;}

a.nav:link {color: white; font-family: tahoma; font-size: 11px; font-weight: bold;}
a.nav:hover {color: #white; font-family: tahoma; font-size: 11px; font-weight: bold;}
a.nav:visited {color: white; font-family: tahoma; font-size: 11px;}

a.footer:link {color: navy; font-family: tahoma; font-size: 10px; font-weight: bold;}
a.footer:hover {color: navy; font-family: tahoma; font-size: 10px; font-weight: bold;}
a.footer:visited {color: navy; font-family: tahoma; font-size: 10px;}
	
a:link {color: #D43D1A; font-family: tahoma; font-size: 11px; font-weight: bold;}
a:hover {color: #D43D1A; font-family: tahoma; font-size: 11px; font-weight: bold;}
a:visited {color: #D43D1A; font-family: tahoma; font-size: 11px; font-weight: bold;}
	
.frame {border: 1px solid rgb(61, 61, 41);}
.heading { valign: top; font-family: garamond; font-weight: bold; font-size: 22px; color: #666666; }


<!--Begin code for nav menu-->
/* Begin CSS Popout Menu */

.suckertreemenu
	{
	position:  absolute;		
	top: 1em;
	left: 1em;

	}

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;

}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #999999; /*overall menu background color*/

}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 83px; /*Width of top level menu link items*/
padding: 4px 6px;
border: 0px;
border-left-width: 0;
text-decoration: none;
color: D43D1A;
font-weight: bold;
font-size: 11px;
text-align: left;

}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
background-color: #fff;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 160px; /*width of sub menu levels*/
color: #D43D1A;
text-decoration: none;
padding: 1px 5px;
border: 1px solid #555;
}

.suckertreemenu ul li a:hover{
background-color: rgb(61, 61, 41);
color: white;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: #999999 url(0080_contentbullet.png) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #999999 url(media/arrow-right.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */