@charset "UTF-8";
/* CSS Document */

<!-- 
body  {
	font: 14px Trebuchet MS, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	background-image:url(images/bg.jpg);
	background-position:top;
	background-attachment:fixed;
	background-repeat:no-repeat;
	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: #696969;
}

a{
color:#00CC00;
text-decoration:none;

}

a:hover{
color:#000000;
text-decoration:underline;


}

#header{ 
	padding: 0px;
	margin: 0px;

} 



#nav{ 
	padding: 0px;
	margin: 0px;

} 


#footer { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #E5E5E5;
	padding: 10px;
	font-size:11px;
	text-align:center;
	color:#666666;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px 5px 5px 5px solid #E5E5E5;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


.thrColFix #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	min-height:650px;
	background: #FFFFFF;
	background-image:url(images/bg-content.jpg);
	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. */
} 
.thrColFix #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFix #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFix #mainContent {
	margin-top: 0;
	margin-right: 75px;
	margin-bottom: 0;
	margin-left: 75px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
}


.thrColFix #mainContent p {
line-height: 20px;
}

.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{

color:#7d2c8f;
border-bottom: thin solid #6abb47;
border-bottom-width: 1px;

}

h2{

color:#7d2c8f;


}

--> 

