@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;
	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 */
}
.thrColFixHdr #container {
	width: 1000px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header {
	height: 92px;
	width: 100%;
} 
#divHeaderLogo01 {
	width: 190px;
	float: left;
}
#divHeaderHorRule01 {
	background: #D26C2C;
	height: 3px;
	width: 100%;
}
.thrColFixHdr #sidebar01 {
	float: left; /* since this element is floated, a width must be given */
	width: 175px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar02 {
	float: right; /* since this element is floated, a width must be given */
	width: 175px;
}
#divSidebar02CapTop {
}
#divSidebar02Content {
	background: #F08F19 url(../images/content_sidebar02-bkg-middle.jpg) repeat-x;
	margin: 0px;
	padding: 1px 10px;
}
#divSidebar02CapBottom {
	background: url(../images/sidebar02-bkg-cap-bottom.jpg) no-repeat;
	width: 100%;
}
.thrColFixHdr #mainContent {
	margin: 0px 190px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#divContentCapTop {
}
#divContentMiddle {
	background: #F08F19 url(../images/content_sidebar02-bkg-middle.jpg) repeat-x;
	margin: 0px;
	padding: 1px 18px;
}
#divContentCapBottom {
}
#divHeadingMain {
	padding-top: 10px;
}
.divImageLeft {
	padding-right: 10px;
	padding-bottom: 5px;
	float: left;
}
.divImageRight {
	padding-left: 10px;
	padding-bottom: 5px;
	float: right;
}
.thrColFixHdr #footer {
	background:url(../images/footer-bkg-01.png) no-repeat right;
	height: 60px;
	margin-top: 15px;
	margin-bottom: 15px;
	clear: both;
} 
#divTwitter {
	width: 575px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 205px;
	height: 50px;
	float: left;
}
#divShareThis {
	height: 50px;
	width: 120px;
	float: right;
	margin: 5px 15px;
}
#footer a:link, #footer a:visited, #footer a:active {
	color: #333;
	text-decoration: none;
}
#footer a:hover, #footer a.current:link, #footer a.current:visited {
	color: #333;
	text-decoration: underline;
}


.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}
