body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #ebebeb;
	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: #333333;
	background-image: url(../images/Back-Fade.jpg);
	line-height: 18px;
	background-repeat: repeat-x;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 990px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header1 {
	height: 46px;  /* 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. */
	background-image: url(../images/CBMU-01.gif);
	background-repeat: no-repeat;
	margin: 0 20px;
} 
.thrColAbsHdr #header1 P {
	padding: 20px 20px 0 0;
	text-align: right;
	color: #0854A1;
	margin: 0;
} 
.thrColAbsHdr #header2 {
	height: 252px;  /* 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. */
	background-image: url(../images/CBMU-02-A.jpg);
	background-repeat: no-repeat;
	margin: 0 20px;
	background-color: #FFFFFF;
} 
.thrColAbsHdr #header3 {
	height: 9px;  /* 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. */
	background-image: url(../images/CBMU-03.gif);
	background-repeat: no-repeat;
	margin: 0 20px;
} 
.thrColAbsHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 214px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #e3ebee; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 32767px 0px; /* padding keeps the content of the div away from the edges */
	margin: 0 0 -32767px 0px;
}
.thrColAbsHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 182px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #e3ebee; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 11px 32767px 12px; /* padding keeps the content of the div away from the edges */
	background-image: url(../images/Side2-fade.jpg);
	background-repeat: no-repeat;
	margin: 0px 0px -32767px 0;
	background-position: TOP;
}
.sidebar-box DIV, H6 {
	padding: 5px 11px 0px 11px;
}
.thrColAbsHdr #mainContent {
	margin: 0 209px 0 214px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 20px 20px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColAbsHdr #mainContent2 {
	margin: 0 0px 0 214px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 20px 20px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColAbsHdr #footer {
	padding: 0 20px 0 20px;
	margin: 0;
	background-image: url(../images/Footer.png);
	background-repeat: no-repeat;
	height: 144px;
} 
.thrColAbsHdr #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: 30px 20px 20px 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFFFFF;
	text-align: center;
	font-size: 10px;
}
.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: 0px;
}
.thrColAbsHdr #wrapper {
	overflow: hidden;
	width: 950px;
	margin: 0  0 0 20px;
	background: #FFFFFF;
	clear:both;
	padding: 0;
	height: 100%;
	min-height: 100%;
}


H1 {
	color : #0061AA;
	font-size : 28px;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-top: 2px;
	text-decoration: none;
	border-bottom: 1px dotted #0061AA;
	padding-bottom: 5px;
	margin: 0 0 11px 0;
	line-height: 32px;
}


H2  {
	color : #6FB1DF;
	font-size : 18px;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-top: 2px;
	text-decoration: none;
	border-bottom: 1px dotted #9dcaef;
	padding-bottom: 5px;
	margin: 0 0 11px 0;
	line-height: 26px;
}


H3 {
	color : #6FB1DF;
	font-size : 18px;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-top: 0px;
	padding-bottom: 0px;
	line-height: 23px;
}


H4 {
	color : #00599C;
	font-size : 16px;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-top: 0px;
	padding-bottom: 0px;
	line-height: 20px;
}


H5 {
	color : #0061AA;
	font-size : 10px;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	line-height: 12px;
}



H6 {
	color : #0061AA;
	font-size : 14px;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	border-bottom : 1px dotted #CCCCCC;
	text-decoration: none;
	margin: 0;
	padding: 0 0 3px 0;
}



 hr {
	border: none 0;
	border-top: 1px dotted #CCCCCC; /*the border*/
	width: 99%;
	height: 1px;
	margin: 7px 0 7px 0;
 }



ul {
	margin: 0 0 0 9px;
	padding: 0 0 0 2px;
}

ul li {
	list-style-type: disc;
	margin: 0px 0px 3px 16px;
	padding: 0;
}



#side_l {
	background: url(../images/Fade-Left.png) repeat-y left;
}
#side_r {
	background: url(../images/Fade-Right.png) repeat-y right;
}

a  {
	font-family : verdana,arial;
	font-size : 12px;
	color : #0060AA;
	text-decoration : none;
}


a:visited  {
	text-decoration : none;
	color : #004E8B;
}


a:hover  {
	color : #008FFF;
}



.thrColAbsHdr #header1 a:link {
	color : #666666;
	font-size : 12px;
	font-family : Arial, Helvetica, sans-serif;
	font-weight: lighter;
}
.thrColAbsHdr #header1 a:visited {
	color : #666666;
	font-size : 12px;
}
.thrColAbsHdr #header1 a:hover {
	color : #0061AA;
}



.thrColAbsHdr #footer a:link {
	color : #B0DAFF;
	font-size : 10px;
	font-family : Arial, Helvetica, sans-serif;
}
.thrColAbsHdr #footer a:visited {
	color : #B0DAFF;
	font-size : 10px;
}
.thrColAbsHdr #footer a:hover {
	color : #FFFFCC;
}



.GREY  {
	color : #666666;
}

.RED  {
	color : #CC0000;
}

.BLUE  {
	color : #003366;
	font-weight: bold;
}

.WHITE  {
	color : #FFFFFF;
}

.smalltext {
	font-size : 10px;
	line-height: 14px;
}
.smalltext a {
	font-size : 10px;
}


#bodybox-left {
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	border: 1px #CCCCCC solid;
	float: left;
	width: 307px;
	background: #fefefe;
	padding: 10px;
	margin: 0 0 20px 0;
}
#bodybox-right {
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	border: 1px #CCCCCC solid;
	float: right;
	width: 307px;
	background: #fefefe;
	padding: 10px;
	margin: 0 0 20px 0;
}

#bodybox-left-short {
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	border: 1px #CCCCCC solid;
	float: left;
	width: 211px;
	background: #fefefe;
	padding: 10px;
	margin: 0 0 20px 0;
}
#bodybox-right-short {
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	border: 1px #CCCCCC solid;
	float: right;
	width: 211px;
	background: #fefefe;
	padding: 10px;
	margin: 0 0 20px 0;
}

#bodybox-100width {
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	border: 1px #CCCCCC solid;
	width: 455px;
	background: #fefefe;
	padding: 10px;
	margin: 0 0 20px 0;
}
