@charset "utf-8";
 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(bg.jpg);
	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; 
	color: #273a72;
}

.thrColElsHdr {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-align:justify;
	margin-top: 25px;
}

.thrColElsHdr h3 {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #FF9900;
	padding-left: 15px;
	padding-top: 15px;
}


.thrColElsHdr h1 {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FF9900;
	border-left-width: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-left-color: #FF9900;
	padding-left: 5px;
}

.thrColElsHdr h2 {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FF9900;
	padding-left: 5px;
	border-left-color: #FF9900;
	border-left-width: 5px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
}

.thrColElsHdr #container {
	width: 730px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColElsHdr #header {
	background-color: #273a72;
	background-image: url(logo.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 1px;
	border-bottom: 5px;
	border-left: 15px;
	border-right: 15px;
} 
.thrColElsHdr #header h1 {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #FF9900;
	padding-left: 15px;
	padding-top: 15px;
}

.thrColElsHdr #header p a {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color:#FF9900;
	border-right-width: 2px;
	border-left-width: 2px;
	border-right-style: dotted;
	border-left-style: dotted;
	border-right-color: #FF9900;
	border-left-color: #FF9900;
	padding-right: 5px;
	padding-left: 5px;
}
.thrColElsHdr #header p a:hover {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color:#FFFFFF;
}

.thrColElsHdr #mainContent {
	background-image:url(dolebg.jpg);
	background-position:bottom;
	background-repeat:repeat-x;
	padding-left: 15px;
	padding-right: 15px;
	
} 
.thrColElsHdr #footer {
	background:#273a72;
	text-align: center;
	color: #CCCCCC;
	font-size: 10px;
} 
.thrColElsHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding: 3px;
}

/* Miscellaneous classes for reuse */
.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;
}
