/* CSS Document */

html, body{
	margin:0;
	padding:0;
	height:102%; /* fix height to 100% for IE */
	max-height:102%; /* fix height for other browsers */
	margin-bottom:1px;
	text-align: left;
}

body  {
	background-image: url(images/bg.jpg);
	background-repeat:repeat-x;
	background-color:#FFFFFF;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: left;
	color: #000000;
}
#wrapper { 
	width: 1000px;
	background: #FFFFFF;
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	position:absolute;
} 

#header { 
	width: 1000px;
	height: 153px;
	background-image: url(images/banner.jpg);
	text-align:left;
	background-repeat:no-repeat;
	margin:0px 0px 0px 0px;
	padding:0px;
} 

#header h1 {
	margin: 0px; /* 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 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

a:link, a:active, a:visited{
color: #FF6600;
text-decoration:none;
}

a:hover{
color: #FF6600;
text-decoration:underline;
}

#mainContent { 
	width: 710px;
	float:left;
	padding: 20px;
} 

#col1{
	width: 350px;
	float: left;
	}
	
#col2{
	width:350px;
	float:right;
	}

#mainContent h2{
	color:#2F2F2F;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	padding: 10px 0 0 0px;
	margin:0px;
	border-bottom: #f78f2e solid 3px;
}

#mainContent h3{
	color:#2F2F2F;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	padding: 10px 0px 3px 0px;
	margin:0px;
	font-style:italic;
}

/* ADDITIONAL STYLES FOR TEXT ****************************************** */

.text-lg{
	color: #000;
	font-size:24px;
	font-weight:bold;
	padding:0px;
}

.text-md{
	color: #000;
	font-size:16px;
	padding:0px 5px 0px 0px;
	font-weight:bold;
}

.text-sm{
	color: #000;
	font-size:14px;
	padding:0px;
	font-weight:bold;
	line-height:30px;
}

.gray-lg{
	color: #666666;
	font-size:20px;
	font-weight:bold;
	padding:0px;
}

.gray-md{
	color: #666666;
	font-size:16px;
	padding:5px 0px 5px 0px;
	font-weight:bold;
	line-height:30px;
}

.gray-sm{
	color: #666666;
	font-size:14px;
	padding:0px;
	font-weight:bold;
}

.white-lg{
	color: #fff;
	font-size:22px;
	font-weight:bold;
	padding:0px;
}

.white-md{
	color: #fff;
	font-size:16px;
	padding:0px 5px 0px 0px;
	font-weight:bold;
}

.white-sm{
	color: #fff;
	font-size:12px;
	padding:0px;
	font-weight:bold;
}

.orange-you{
	color: #f78f2e;
	font-size:22px;
	font-weight:bold;
	}

.blue-text{
	color: #00529c;
	}
	
table tr td{
	border-bottom: #666666 1px solid;
	font-size:12px;
	}

#sidebar1 table tr td{
	border: none;
	font-size:12px;
	}

#sidebar1 {
	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 */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 20px 0px;
	padding: 10px;
}

#footer { 
	padding: 5px 10px 5px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#FFFFFF;
	text-align:center;
}
 
#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 */
	color: #333333;
	font-size:10px;
}

#footer a{
	color: #333333;
}

.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;
}

