@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #ededed;
	background-image: url(../images/wrapper_bg.jpg);
	background-repeat: repeat-y;
	background-position: center top;
}
.thrColFixHdr #container {
	width: 880px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #FFFFFF;
} 
.thrColFixHdr #header {
	background: #FFFFFF;
	padding: 10px 0 10px 0;  /* 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. */
	margin: 0;
} 
.thrColFixHdr #underlinemenu {
	margin: 0;
	padding: 0;
	height: 30px;
}
.thrColFixHdr #underlinemenu ul {
	padding-left: 0;
	float: left;
	font-weight: normal;
	width: 100%;
	background-repeat: repeat-x;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	border-top-width: 1px;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #DFDFDF;
	border-right-color: #DFDFDF;
	border-bottom-color: #DFDFDF;
	border-left-color: #DFDFDF;
	background-image: url(../images/nav_bg_test3.jpg);
}
.thrColFixHdr #underlinemenu ul li {
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #d92128;
}
.thrColFixHdr #underlinemenu ul li a {
	float: left;
	color: #CCCCCC;
	font-weight: normal;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: white;
	background-repeat: repeat-x;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	padding-top: 2px;
	background-image: url(../images/nav_bg_test3.jpg);
	width: 110px;
	text-align: center;
}
.thrColFixHdr #underlinemenu ul li a:hover {
	color: #FFFFFF;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #d92128;
	padding-bottom: 5px;
}
* html #underlinemenu ul { /*IE only rule. Delete extra margin-bottom*/
	margin-bottom: 0;
}
.thrColFixHdr #subheader {
	padding: 0;
	vertical-align: top;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}
.thrColFixHdr #header h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #333D49;
	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 */
}
.redbold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #d92128;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 280px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	margin-left: 20px;
}
.thrColFixHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 280px;
	margin-left: 20px;
} 
.thrColFixHdr #sidebar3 {
	float: right; /* since this element is floated, a width must be given */
	width: 280px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
.thrColFixHdr #mainContent2 {
	margin: 0 295px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.thrColFixHdr #mainContent3 {
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


.thrColFixHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: right;
} 
.thrColFixHdr #footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #999999;
	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 */
}
.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;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #d92128;
	background-color: #FFFFFF;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
h3 {
	color: #d92128;
	font-size: 14px;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	padding: 0;
	margin: 0;
}
input {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333D49;
	border-right-color: #333D49;
	border-bottom-color: #333D49;
	border-left-color: #333D49;
	background-image: url(../images/shadow_hr.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}
form {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
textarea {
	border: 1px solid #333D49;
	background-color: #FFFFFF;
	overflow:auto;
	background-image: url(../images/shadow_hr.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}
	
html {
	overflow-y: scroll;
}
.col_header {
	background-color: #d92128;
	margin: 0 4px;
	padding: 0;
	height: 1px;
}
a:active, a:link, a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #d92128;
	text-decoration: none;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	color: #990000;
	text-decoration: underline;
}

.partner_table {
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 1px;
	border-bottom-color: #990000;
	border-right-width: 1px;
	border-right-color: #990000;
}
.nobottomborder {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #990000;
}
.sitemap_ul {
	margin: 0px;
	padding-left: 10px;
}
.pixel_indent {
	margin-left: 1px;
}
