body  {
	font: 100% Trebuchet, 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-image: url(/images/website_bg.jpg);
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: center top;
}

h1 {
	color: #673fbd;
	text-transform: uppercase;
	font-size: 24px;
}

h2 {
	color: #673fbd;
	font-size: 18px;
	margin-top: 5px; 
	margin-bottom: 5px
}
h3 {
	color: #ffffff;
	font-size: 11px;
	text-decoration: none;
	text-transform: uppercase;
	border: 0;
	letter-spacing: 1px;
	line-height: 12px;
	margin-top: 0px; 
	margin-bottom: 0px
}

h4 {
	color: #673fbd;
	font-size: 11px;
	text-decoration: none;
	text-transform: uppercase;
	border: 0;
	letter-spacing: 1px;
	line-height: 10px;	
	margin-top: 0px; 
	margin-bottom: 5px
}

h5 {
	color: #CEF718;
	font-size: 18px;
	text-decoration: bold;
	text-transform: uppercase;
	border: 0;
	letter-spacing: 1px;
	line-height: 8px;
	margin-top: 10px; 
	margin-bottom: 20px
}

li {
	font-size: 12px;
	list-style-type: disc;
	list-style-position: outside;
	padding-bottom: 10px;
}


a {
	color:  #F05425;
}

p, dd, dt, td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 18px;
	margin-top: 10px; 
	margin-bottom: 10px
}

.thrColFixHdr #container { 
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	padding: 0 0px 0 0px;
} 
.thrColFixHdr #header {
	padding: 0 0px 0 0px;  /* 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. */
	height: 90px;
} 

.thrColFixHdr #header2 {
	padding: 0 0px 0 0px;  /* 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: 0px 30px 0px 255px; /* the left margin on this div element creates the column down the left 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. */
} 
.thrColFixHdr #header2 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: 28px 30px 0px 50px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 255px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* 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 */
	margin: 0px 30px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.thrColFixHdr #mainContent { 
	margin: 0px 280px 0px 255px; /* 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. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #footer {
	margin: 0 0 0 355px;
	padding: 0px 0px 0px 0px;
} 
.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 */
}
.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;
	   background: #e9ff11;
}
.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;
}
.headert1 { /* 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 */
	font-size: 28px;
	line-height: normal;
	color: #009900;
	text-transform: uppercase;
}
.headert2 { /* 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 */
	font-size: 46px;
	line-height: 48px;
	color: #FFFFFF;
	text-transform: uppercase;
}

.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	margin-top: 5px; 
	margin-bottom: 5px
}

.newslink {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin-top: 5px; 
	margin-bottom: 15px
}

/* style the links */
.newslink a, .navlink a:visited {
	color:#FFFF00;
	font-weight: bold;
}
/* style the link hover */
.newslink a:hover {
	color:#F05425;
}


.navlink {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	padding-left: 10px;
	color: #FFFFFF;
	text-decoration: none;
}

/* style the links */
.navlink a, .navlink a:visited {
	text-decoration:none;
	color:#FFFFFF;
	font-weight: bold;
}
/* style the link hover */
.navlink a:hover {
	color:#CEF718;
}

.roundedcornr_white_box_body {
   background: #ffffff;
}
.roundedcornr_white_top_body div {
   background: url(/images/roundedcornr_white_tl.png) no-repeat top left;
}
.roundedcornr_white_top_body {
   background: url(/images/roundedcornr_white_tr.png) no-repeat top right;
}
.roundedcornr_white_bottom_body div {
   background: url(/images/roundedcornr_white_bl.png) no-repeat bottom left;
}
.roundedcornr_white_bottom_body {
   background: url(/images/roundedcornr_white_br.png) no-repeat bottom right;
}

.roundedcornr_white_top_body div, .roundedcornr_white_top_body, 
.roundedcornr_white_bottom_body div, .roundedcornr_white_bottom_body {
   width: 100%;
   height: 15px;
   font-size: 1px;
}
.roundedcornr_white_content_body {
	margin: 0px 30px 0px 30px;

}

.roundedcornr_yellow_box_body {
   background: #e9ff11;
}
.roundedcornr_yellow_top_body div {
   background: url(/images/roundedcornr_yellow_tl.png) no-repeat top left;
}
.roundedcornr_yellow_top_body {
   background: url(/images/roundedcornr_yellow_tr.png) no-repeat top right;
}
.roundedcornr_yellow_bottom_body div {
   background: url(/images/roundedcornr_yellow_bl.png) no-repeat bottom left;
}
.roundedcornr_yellow_bottom_body {
   background: url(/images/roundedcornr_yellow_br.png) no-repeat bottom right;
}

.roundedcornr_yellow_top_body div, .roundedcornr_yellow_top_body, 
.roundedcornr_yellow_bottom_body div, .roundedcornr_yellow_bottom_body {
   width: 100%;
   height: 15px;
   font-size: 1px;
}
.roundedcornr_yellow_content_body {
	margin: 0px 30px 0px 30px;

}

  
.roundedcornr_purple_box_body {
   background: #673fbd;
}
.roundedcornr_purple_top_body div {
   background: url(/images/roundedcornr_purple_tl.png) no-repeat top left;
}
.roundedcornr_purple_top_body {
   background: url(/images/roundedcornr_purple_tr.png) no-repeat top right;
}
.roundedcornr_purple_bottom_body div {
   background: url(/images/roundedcornr_purple_br.png) no-repeat bottom left;
}
.roundedcornr_purple_bottom_body {
   background: url(/images/roundedcornr_purple_bl.png) no-repeat bottom right;
}

.roundedcornr_purple_top_body div, .roundedcornr_purple_top_body, 
.roundedcornr_purple_bottom_body div, .roundedcornr_purple_bottom_body {
   width: 100%;
   height: 15px;
   font-size: 1px;
}
.roundedcornr_purple_content_body {
	margin: 0px 30px 0px 30px;

}
