@charset "UTF-8";

body {
    margin: 0;
    /* it's good practice to zero the margin and padding of the body
       element to account for differing browser defaults */
    padding: 0;
    /* this centers the container in IE 5* browsers. The text is then set
       to the left aligned default in the #container selector */
    text-align: center;
    color: #000000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    background-repeat: repeat-x;
    background-color: #7C0505;
}

.thrColFixHdr #container {
    /* the auto margins (in conjunction with a width) center the page */
    width: 980px;
    border: 1px solid #000000;
    /* this overrides the text-align: center on the body element. */
    text-align: left;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    background-color: #FFFFFF;
} 

.thrColFixHdr #header {
    /* this padding matches the left alignment of the elements in the divs
       that appear beneath it. If an image is used in the #header instead
       of text, you may want to remove the padding. */
    padding: 0;
} 

#menu {
    font-size: 9px;
    width: 840px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom-width: 2px;
    border-bottom-style: dotted;
    border-bottom-color: #777700;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.thrColFixHdr #container #header #menu a {
    color: #006600;
    text-decoration: underline;
    font-family: Voltaire;
    font-size: 12px;
}

.thrColFixHdr #container #header #menu a:hover {
    color: #999999;
}

.thrColFixHdr #sidebar1 {
    float: left; /* since this element is floated, a width must be given */
    width: 170px; /* padding keeps content of the div away from the edges */
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
    border-right-width: thin;
    border-right-style: solid;
    border-right-color: #999;
    margin-right: 15px;
}

.thrColFixHdr #sidebar2 {
    float: right; /* since this element is floated, a width must be given */
    width: 185px; /* padding keeps content of the div away from the edges */
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 8px;
    margin-right: 10px;
    padding-right: 4px;
    margin-left: 10px;
    border-left-width: thin;
    border-left-style: solid;
    border-left-color: #999;
}

.H1 {
    font-family: Cinzel;
    font-size: 20px;
    line-height: 22px;
    color: #9B0303;
    text-transform: #CB0404;
}

.H2 {
    font-family: Coda;
    font-size: 16px;
    line-height: 22px;
    padding-bottom: -20px;
    bottom: -22px;
}

.SubHd {
    font-family: Voltaire;
    font-size: 16px;
    color: #B52626;
}

.Sidebar2p {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    font-weight: normal;
}

.Sidebar2H1 {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 20px;
    color: #9C2004;
}

.thrColFixHdr #mainContent {
    margin-top: 0;
    margin-right: 200px;
    margin-bottom: 0;
    margin-left: 175px;
    padding-top: 0;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 14px;
} 

.thrColFixHdr #footer {
    padding: 0 10px 0 20px;
    font-size: 9px;
    color: #D7B879;
} 

.thrColFixHdr #footer p {
    /* zeroing the margins of the first element in the footer will avoid
       the possibility of margin collapse - a space between divs */
    margin: 0;
    /* padding on this element will create space, just as the the margin
       would have, without the margin collapse issue */
    padding: 10px 0;
}

.fltrt {
    /* this class can be used to float an element right in your page. The
       floated element must precede the element it should be next to on
       the page. */
    float: right;
    margin-left: 8px;
}

.fltlft {
    /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}

.clearfloat {
    /* this class should be placed on a div or break element and should
       be the final element before the close of a container that should
       fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

