﻿@charset "utf-8";
/* CSS Document */

body  {
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	line-height: 1.7em;
	margin-top: 2px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	background-image: url(images-interface/body-bkgr.gif);
	background-repeat: repeat-x;
	background-position: top;
}
#container {
	width: 950px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: 1px solid #FFFFFF;
	background-color: #FFFFFF;
} 
#header1 {
	float: left;
	background-color: #FFFFFF;
	background-image: url(images-interface/header1.gif);
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: left top;
	height: 134px;
	width: 302px;
} 
#header3 {
	float: right;
	background-color: #FFFFFF;
	background-image: url(images-interface/headerRight.jpg);
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: right top;
	height: 134px;
	width: 419px;
}
#header2 {
	background-color: #FFFFFF;
	background-image: url(images-interface/headerBkgr.gif);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-repeat: repeat-x;
	height: 134px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-position: left top;
}
#header  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-image: url(images-interface/headerBkgr.gif);
	background-repeat: repeat-x;
}

/* This is the horizontal menu */

#horizmenu {
	color: #FFFFFF;
	font-size: small;
	font-weight: bold;
	background-color: #B71E23;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 5px;
	padding-left: 5px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#horizmenu a {
	color: #FFFFFF;
	text-decoration: none;
}
#horizmenu a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
#horizmenu a:hover {
	color: #66C130;
	text-decoration: none;
}
#horizmenu a:active {
	color: #FFFF00;
	text-decoration: none;
}
/* This is the website-tabs menu */

#website-links {
	color: #FFFFFF;
	font-size: 10px;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 0px;
	padding-right: 3px;
	padding-left: 5px;
	width: 950px;
	margin-right: auto;
	margin-left: auto;
}
#website-links a {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #207CBD;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #BDE4A5;
	border-right-color: #BDE4A5;
	margin-left: 2px;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 3px;
	padding-left: 4px;
}
#website-links a:hover {
	color: #207CBD;
	text-decoration: none;
	background-color: #FFFFFF;
}
#website-links a:active {
	color: #000000;
	text-decoration: none;
}
/* This is the 3-column content area */
#sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 220px;
	background-repeat: no-repeat;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: x-small;
	line-height: 1.5em;
	color: #000000;
	background-color: #FFFFFF;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	margin-top: 20px;
	padding-left: 10px;
	margin-left: 5px;
}
#sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 200px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 5px;
	font-size: x-small;
	line-height: normal;
}
#sidebar2 h2{
	color:#B71E23;
	padding-right: 5px;
	padding-left: 5px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #EBEBEB;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #EBEBEB;
	margin-bottom: -10px;
	font-size: medium;
}


/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent {
	padding-right: 20px;
	padding-left: 10px;
	width: 680px;
	margin: 0;
	float: left;
}
#mainContent p {
	margin-right: 10px;
	margin-left: 10px;
}
#mainContent img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#mainContent h1{
	color: #333333;
	font-size: x-large;
	font-family: Georgia, "Times New Roman", Times, serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EBEBEB;
	background-color: #FFFFFF;
	padding-top: 3px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
	line-height: 1.1em;
	margin-bottom: 0px;
	margin-top: 10px;
}
#mainContent h2{
	color: #666666;
	font-size: large;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-right: 5px;
	margin-left: 5px;
	margin-top: 0px;
}
#mainContent h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: medium;
	font-weight: bold;
	color: #999999;
	margin-right: 5px;
	margin-left: 5px;
}

#mainContent hr{
	color: #EBEBEB;
}
/* This is the footer with the copyright language and contact info */

#footer {
	color: #333333;
	font-size: xx-small;
	font-weight: normal;
	padding:0px;
	line-height: 1.5em;
	width: 950px;
	float:left;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #C5E7B0;
}

#footer p {
	padding: 5px;
}
#footer a {
	color: #333333;
	text-decoration: none;
	font-weight: bold;
}
#footer a:visited {
	color: #333333;
	text-decoration: none;
	font-weight: bold;
}
#footer a:hover {
	color: #CC0033;
	text-decoration: underline;
	font-weight: bold;
}
#footer a:active {
	color: #CCCCCC;
	text-decoration: none;
	font-weight: normal;
}
#footer-left {
	float: left;
}
#footer-right {
	float: right;
}
#sidebar1 .pagemenu {
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
#sidebar1 .pagemenu h3 {
	background-color: #000000;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
	padding: 5px;
}
#sidebar1 .pagemenu p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: #999999;
	background-image: url(images-common/menu-triangle.gif);
	background-repeat: no-repeat;
	background-position: left 3px;
	padding-left: 13px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EBEBEB;
}
#sidebar1 .pagemenu a {
	color: #333333;
	text-decoration: none;
	font-weight: bold;
}
#sidebar1 .pagemenu a:visited {
	color: #333333;
	text-decoration: none;
}
#sidebar1 .pagemenu a:hover {
	color: #B71E23;
	text-decoration: none;
}
#sidebar1 .pagemenu a:active {
	color: #333333;
	text-decoration: none;
}
#sidebar1 .pagemenu img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.sponsorlink {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: medium;
	font-weight: bold;
}






/* Miscellaneous classes for reuse */

.altNav {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	width: 950px;
	clear: both;
	float: left;
}
.altNav a{
	color: #FFFFFF;
}
.altNav a:visited{
	color: #FFFFFF;
}
.nav {
	color:#000000;
}
.nav th{
	background-color:#FFF700;
	color:#000000;
	text-align: left;
}
.nav td{
	background-color:#FF7200;
	color:#000000;
}
.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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.redBold14 {
	font-size: 14px;
	font-weight: bold;
	color: #D92600;
}
.redText {
	color: #D92600;
}
.aquaBox {
	background-color: #76D5F3;
	border: 4px dotted #0CADC9;
	float: left;
	width: 200px;
	padding: 3px;
	margin: 5px;
}
.yellowBox {
	background-color: #FFFF00;
	border: 4px dotted #FF7200;
	float: right;
	width: 200px;
	padding: 3px;
	margin: 5px;
	font-size: 14px;
	color: #FF7200;
	font-weight: bold;
	text-align: center;
}
.whiteBoxRight {
	background-color: #FFFFFF;
	float: right;
	width: 220px;
	padding: 3px;
	margin: 5px;
	font-size: 10px;
	color: #FF7200;
	font-weight: bold;
	text-align: center;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #FFFF00;
}
.blurbBox {
	background-color: #FF7200;
	border: 4px dotted #D92600;
	float: left;
	width: 100%;
	padding: 3px;
	margin: 5px;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
.cartBox {
	padding: 3px;
	border: 1px solid #CC3300;
}
.tabulardata {
	border: 1px solid #CC3300;
	margin-right: auto;
	margin-left: auto;
	padding: 5px;
}
.tabulardata th{
	background-color: #CC0000;
	color: #FFFFFF;
	padding: 5px;
}
.tabulardata td{
	padding: 5px;
}
.listTable {
	margin-right: auto;
	margin-left: auto;
	padding: 5px;
}
.listTable th{
	background-color: #3389C5;
	color: #FFFFFF;
	padding: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: x-large;
	text-align: left;
}
.listTable td{
	padding: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EBEBEB;
}
/* BEFORE EDITING calloutBox, CHECK USE ON LW.cfm */
.calloutBox {
	background-color: #ebebeb;
	border: 1px dashed #999999;
	width: 420px;
	padding: 5px;
	font-size: 12px;
	font-weight: normal;
	margin-right: auto;
	margin-left: auto;
}
/* BEFORE EDITING leftPanelBox, CHECK USE ON LW.cfm */
.leftPanelBox {
	background-color: #FFFFCC;
	border: 1px dashed #FFCC00;
	width: 200px;
	padding: 5px;
	font-size: 10px;
	font-weight: bold;
	font-family: "Lucida Sans", "Monotype Corsiva", "Arial Black";
	color: #000099;
}
.plainTable {
	margin-right: auto;
	margin-left: auto;
}
.photoRight {
	color: #999999;
	font-size:10px;
	text-align: center;
	float: right;
	width: 260px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 25px;
}
.photoCaptions {
	color: #999999;
	font-size:x-small;
	text-align: center;
	padding: 5px;
	line-height: 1.2em;
}
.gavel {
	background-image: url(images-banners/gavel.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 50px;
	width: 198px;
	color: #000000;
	padding-top: 50px;
	padding-bottom: 5px;
	font-weight: normal;
	border: 1px solid #A48B74;
	background-color: #D4C2A8;
}
.small {
	color:#666666;
	font-size: x-small;
}
