.hl {
    color: #cc0000;
    font-style: italic;
    }

a:link {
        color: #003399;
        text-decoration: none;
        }

a:visited {
        color: #1a2b54;
        text-decoration: none;
        }

a:hover {
        color: #003399;
        text-decoration: underline;
        }

body {
        background: #fff;
        }

#anchor {
    width: 914px;
    margin: 30px auto;
    }

#container {
    float: left;
    width: 912px;
    background: #cadbeb;
    background: url('../images/shadow.jpg') bottom right;
    padding-bottom: 12px;
    }

#page {
    float: left;
    margin-top: -3px;
    width: 900px;
    background: #fff;
        border: 1px solid #8f8179;
    }

#header {
    background: #fff;
    width: 840px;
    position: relative;
    margin: 0px auto;
    padding: 25px 30px;
    border-top: 8px solid #8f8179;
    border-bottom: 8px solid #8f8179;
    }

#header img {
    margin-top: 10px;
    margin-bottom: 40px;
    border: none;
    }

#header p {
    font-family: Helvetica, sans-serif;
    color: #df7b26;
    font-size: 20px;
    font-style: oblique;
    font-weight: bold;
    text-align: right;
    margin-top: -95px;
    }

#header a {
    color: #ffffff;
    }

h1 {
    color: #3f2b15;
    font-size: 1.5em;
    }

h2 {
    color: #3f2b15;
    font-size: 1.25em;
    }

#content-left {
    float: left;
    width: 200px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: small;
    color: #333333;
    line-height: 1.5;
    border-right: 1px solid #666666;
    }

#content-right {
    float: left;
    width: 570px;
    padding-left: 50px;
    padding-bottom: 20px;
    margin: 10px 20px 20px -1px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: small;
    color: #333333;
    line-height: 1.5;
    border-left: 1px solid #666666;
    }

#content-right img {
    border: none;
    }

#content-right img.hs {
    margin-left: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    }

/* callout content boxes ---------------------------------------------*/

#callout_rt {
    float: right;
    width: 150px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.5em;
    margin-left: 2em;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 8px;
    padding-right: 8px;
    border-top : 4px solid #faaa54;
    border-bottom : 4px solid #faaa54;
    background: url('../images/bg_callout.png') center no-repeat;
    }

table {
    border: solid #666666;
	border-width: thin;
	border-collapse: collapse ;
	border-spacing: 0px; 
    cellspacing: 0px;
    }

/* options for th blue 2a9ed5, lt blue aad8ee, green 6d993d, lt green b6cc9e */

th {
    background: #b6cc9e;
    color: #000;
    text-align: left;
    padding: 0 5px;
    border: solid #666666;
	border-width: thin;
	border-collapse: collapse ;
	border-spacing: 0px;
    }

td {
    vertical-align: top;
    padding: 5px;
    border: solid #666666;
	border-width: thin;
	border-collapse: collapse ;
	border-spacing: 0px;
    }

table.no-border {
    border: none;
    }

td.no-border {
    vertical-align: top;
    padding: 5px;
    border: none;
    }

.rt-photo {
    float: right;
    border: 1px solid #000;
    margin-left: 10px;
    margin-bottom: 10px;
    }

.bottom-container {
    background: #ffab52;
    width: 900px;
    padding: 20px 0;
    margin: 0px 0px -1px 0px;
    clear: both;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 10px;
    color: #3f2b15;
    border-top: 1px solid #3f2b15;
    border-bottom: 1px solid #3f2b15;
    }

.clearer {
	clear: both;
	line-height: 0;
	height: 0;
	}


/* NAVIGATION STYLING  */

#nav, #nav ul { /* all lists */
    list-style: none;
    margin-top: 0;
    padding-bottom: .95em;
    }

#nav a {
    display: block;
    color: #fff;
    }


#nav li { /* all list items */

margin-top: 5px;
    margin-bottom: 5px;
	float: left;
    text-align: center;
	width: 120px; /* sets top level box width - width needed or else Opera goes nuts */
	/*margin-right: 4px; margin between top nav boxes - my code*/
	/*margin-left: 4px; margin between top nav boxes - my code*/
	padding: 4px; /*padding to display bottom of buttons*/
	border: 1px solid #ffffff;
	background: #faaa54 /*hover styles - my code */
}

#nav li:hover, #nav li.sfhover {/* 1st level hover styles - my code */
	background: #8f8179 ;
}

/* SECOND LEVEL CODE */

#nav li ul { /* second-level lists */
	position: absolute;
	margin-left: 10px; /*offset margin between top nav boxes and second level boxes - my code - currently no effect?*/
	width: 125px; /* sets second/third level box width - my code */
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li { /* format second level boxes */
	margin-left: 0px;
	margin-bottom: -5px;
    text-align: left;
	padding: 4px; /* pads text within boxes */
	background: #704d33; /*hover styles - my code */
	border-top: 1px solid #ffffff;
	border-right: 1px solid #704d33;
	border-bottom: 1px solid #704d33;
	border-left: 1px solid #704d33;
}

#nav li:hover ul ul, #nav li.sfhover ul ul { /* hides third-and-above-level lists when parent not hovered */
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
    margin-left: -44px; /* sets offset on 2nd level boxes in relation to 1st level boxes */
}
#nav li ul li:hover, #nav li ul li.sfhover {/* 2nd level hover styles - my code */
	background: #8c786a;
}


.notes-highlights {
    font-weight: bold;
    color: #003399;
    background: #ffff99;
    }