/* Below controls the color link are after a user clicks on them. */
a:link, a:visited {
    color: #0A3D90;
    font-weight: bold;
    text-decoration: underline;
}

/* This changes the color of links when the mouse hovers over them */
a:active, a:hover {
    color: #687A9E;
    text-decoration: none;
}

/* Body controls all of the content related to the entire document.  All elements controlling fonts in this document are located below. Color will change the font color.*/

body {
    background-color: #274c62; /* page border background color*/
    color: #02102B;
    font-family: Arial, Tahoma, Comic Sans MS, sans-serif;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 5px;
    text-align: center;
}

h1, h2, h3 {
    display: inline;
    font-family: Arial, Tahoma, Comic Sans MS, sans-serif;
    color: #000000;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 16px;
    text-indent: 0px;
}

h3.fr {
    color: #000000;
    font-size: 16px;
    text-align: left;
    text-indent: 10px;
}

td p {
    padding: 0px;
    vertical-align: top;
}

table, td {
    padding: 0px;
}
/* Holder controls the entire box that covers the header, footer, and all content. Min-height controls the minimum size that the browser window will appear in most browsers */

#holder {
    background-image: url('images/bg.jpg');
    background-repeat: repeat-y;
    border: 0px;
    margin: 0px;
    padding: 0px 0px 5px 0px;
    text-align: center;
    width: 980px;
    min-height: 800px;
}

/* This controls the area in which the header.gif is places. Changing the adding will change the amount of space around this image. */

#header {
    margin: 0;
    padding-top: 5px;
    text-align: center;
}

/* This controls the placement of the menu. None of this should have to be changed */

#menu {
    margin-bottom: 0px;
    padding: 0px 0px 0px 20px;
    text-align: center;
}

/* Content controls the area around the menu and the text.  */

#content {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
    padding: 14px 30px 0px 30px;
    text-align: left;
    text-indent: 0px;
    width: 900px;
}

/* Below is the placement of the footer. In the current configuration, it will be centered wherever placed */

#footer {
    font-size: 9px;
    margin-bottom: 0px;
    text-align: center;
    margin-left: 0px;
    margin-right: 0px;
}

#nav ul {
    background-color: #274c62;
    font-weight: bold;
    line-height: 12px;
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    width: 895px;
}

/* All of the elements below control the menu. Nav A is what the menu looks like before the user inteacts with it. */

#nav a {
    color: #ffffff;
    display: block;
    height: 35px;
    text-decoration: none;
    width: 110px;
    padding: 3px 3px 1px;
}

/* This controls the look and placement of the submenu.  */
#nav li {
    background-color: #274c62;
    float: left;
    list-style-type: none;
    margin-right: 5px;
    padding: 3px;
    text-transform: uppercase;
    width: 115px;
}
/* Margin-right controls the amount of white space in between each box */

/* This controls the look of the submenu when the user mouses over each section. */
#nav li ul {
    height: auto;
    font-weight: normal;
    left: -999em;
    margin: 0;
    padding: 2px 0;
    position: absolute;
    width: 180px;
}

#nav li li {
    padding: 4px;
    width: 175px;
}

#nav li ul a {
    height: auto;
    padding: 1px;
    width: 170px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
    left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
    left: auto;
}

#nav li:hover, #nav li.sfhover {
    background: #0068A6;
}