@charset "UTF-8";
body  {
	font: 13px/1.4em "Lucida Grande", Myriad, Arial, Helvetica, sans-serif;
	background: #010101 url(../images/bg.jpg) no-repeat center top;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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;
}
a:link {
	color: #b21c1c;
	text-decoration: none;
}
a:visited {
	color: #b21c1c;
	text-decoration: none;
}
a:hover {
	color: #343434;
	text-decoration: underline;
}
p {
	margin-top: 0.2em;
	margin-bottom: 0.2em;
}
h1 {
	color: #b21c1c;
	line-height: 1.2em;
}
h2 {
	color: #b21c1c;
}
h3 {
	margin-top: 0.4em;
	margin-bottom: 0.1em;
}
h4 {
	font-size: 1.1em;
	font-weight: normal;
	text-transform: uppercase;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}
.thrColFixHdr #container {
	width: 990px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #wrapper {
	background-image: url(../images/main-bg.png);
	background-repeat: repeat-y;
}
.thrColFixHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
} 
.thrColFixHdr #header h1 {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #main_top {
	background-image: url(../images/main-top.png);
	background-repeat: no-repeat;
	height: 44px;
}
.img-left {
	float: left;
	margin-top: 4px;
	margin-right: 12px;
	margin-bottom: 24px;
}
.thrColFixHdr #nav {
	background-color: #992121;
	text-align: center;
	height: 35px;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/nav_bg.jpg);
	background-repeat: no-repeat;
}
#nav ul {
	margin: 0px;
	list-style-position: inside;
	text-indent: 0px;
}
#nav li {
	float: left;
	list-style-type: none;
	margin-right: 15px;
}
#nav a {
	color: #FFF;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1em;
	display: block;
	height: 19px;
	padding: 8px;
	text-shadow: black 0.1em 0.1em 0.1em;
}
#nav a:visited {
	color: #FFF;
}
#nav a:hover {
	color: #b21c1c;
	background-color: #FFF;
	text-shadow: white 0.1em 0.1em 0.1em;
}
.thrColFixHdr #sidebar1 {
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 32px;
}
.thrColFixHdr #sidebar1 h1 {
	padding-left: 20px;
	margin:15px 2px 14px;
	padding-top:8px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #BCBCBC;
}
.thrColFixHdr #sidebar2 {
	float: right; /* padding keeps the content of the div away from the edges */
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-right: 22px;
}
.thrColFixHdr #sidebar2 h1 {
	padding-left: 3px;
	margin:15px 2px 14px;
	padding-top:8px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #BCBCBC;
	clear: left;
}
#sidebar2 p {
	padding-left: 20px;
}
#sidebar2 h3 {
	clear: left;
	margin-right: 35px;
	padding-top: 5px;
	margin-top: 16px;
	margin-bottom: 6px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #b21c1c;
}
.thrColFixHdr #mainContent {
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
} 
.thrColFixHdr #mainContent p {
	padding-right: 12px;
	padding-left: 12px;
}
.thrColFixHdr #mainContent h1 {
	margin:15px 2px 14px;
	padding-top:8px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #BCBCBC;
}
.thrColFixHdr #footer {
	color: #FFFAF6;
	padding-top: 12px;
	padding-left: 16px;
	margin-bottom: 12px;
} 
.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColFixHdr #main_bottom {
	background-image: url(../images/main-bottom.png);
	margin: 0px;
	height: 29px;
	width: 990px;
}
.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;
}
.left-column {
	width: 274px;
	padding-right: 30px;
	border-right: 1px solid #333;
	float: left;
	height: 280px;
	overflow: hidden;
	padding-left: 12px;
}
/* Billboard */

#billboard {
	margin-top: 0px;
	width: 960px;
	margin-left: 20px;
}
#billboard h1 {
	margin-top: 0px;
	padding-top: 20px;
	padding-left: 32px;
	margin-bottom: 0.4em;
}
ul {
	padding-left: 1em;
	margin-left: 0px;
	list-style-position: inside;
	list-style-type: disc;
}
li {
	text-indent: 0px;
	padding-left: 3px;
}

#billboard p {
	padding-left: 32px;
	margin-right: 16px;
	margin-top: 0.3em;
	line-height: 1.5em;
}
.billboard-divider {
	height: 1px;
	background-color: #FAF6F3;
	border-top: 1px solid #D2CFCD;
	margin: 30px 0px 30px 30px;
	width: 350px;
	overflow: hidden;
}

.billboard-img {
	float: right;
	background: url(../images/featured-bg.png) no-repeat;
	margin-top: -260px;
	width: 530px;
	height: 323px;
}

#billboard-image-core {
	overflow: hidden;
}

#billboard-image-core img {
	background: url(../images/featured-bg-gradient.jpg);
	padding: 4px;
	border: 1px solid #ffffff;
	margin-left: 29px;

}

/* MISC */

.clear {
	clear: both;
	color: #FFFAF6;
	padding-left: 35px;
}
.img-left-bg {
	background-image: url(../images/vertical-image-bg.jpg);
	background-repeat: no-repeat;
	height: 315px;
	width: 245px;
	padding-top: 5px;
	padding-right: 5px;
	float: left;
	text-align: right;
	margin-right: 12px;
	margin-bottom: 8px;
}
.div-divider {
	height: 1px;
	background-color: #F0EDEA;
	border-top: 1px solid #D2CFCD;
	margin: 30px 0px 30px 30px;
	width: 410px;
	overflow: hidden;
	clear: both;
}
.subdivision-left {
	width: 218px;
	float: left;
}
.thickbox {
	float: left;
	margin: 4px 4px 8px;
}
img {
  border: 0px;
}

/* CONTACT FORM */

form {
	border: none;
	font-size: 12px;
	color: #fffafe;
}

fieldset {
	border: none;
	margin: 10px 0px;
	padding: 0px;
}

#fields legend {
	padding:7px 10px;
	font-weight:bold;
	color:#FFF;
	border:1px solid #eee;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	margin-bottom:0 !important;
	margin-bottom:20px;
}

#fields label {
	display: inline-block;
	float: left;
	height: 26px;
	line-height: 26px;
	width: 55px;
	-webkit-border-radius:5px;
}
#fields input, textarea, select {
	width: 200px;
	margin: 0;
	padding: 3px 5px;
	color: #212121;
	background: #f5f5f5;
	border: 1px solid #ccc;
	margin: 5px 0;
	font:0.9em "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
}   

.notification_error {
	border: 1px solid #A25965;
	height: auto;
	width: 408px;
	padding: 4px;
	background: #F8F0F1;
	text-align: left;
	font-size: 12px;
	color: #333;
}

.notification_ok {
	border: 1px #567397 solid;
	height: auto;
	width: 408px;
	padding: 8px;
	background: #f5f9fd;
	text-align: center;
	font-size: 12px;
	color: #333;
}

.info_fieldset {
	border: none;
	margin: 5px 0px 0px;
	padding: 0px;
}


.contact-button {
	border: 1px solid #999999;
	background: white;
	color: #2F3738;
	font-size: 12px;
	margin: 0px;
	padding: 5px;
	font-weight: bold;
}
#footer a:link {
	color: #FFF;
	text-decoration: none;
}
#footer a:visited {
	color: #FFF;
	text-decoration: none;
}
#footer a:hover {
	color: #b21c1c;
	text-decoration: underline;
}

