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

body  {
	font: 100% Lucida Grande, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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: #666666;
}
p {
	font-size: 11px;
	line-height: 1.4em;
	margin: 0 0 10px 0;
}
h1, h2, h3 {
	margin: 0 0 10px 0;
}
h1 {
	font-size: 16px;
	margin: 0 0 10px 0;
	color: #3EB6C3;
	padding: 0;
}
h2 {
	font-size: 16px;
	color: #3EB6C3;
}
h3 {
	font-size: 14px;
	color: #3EB6C3;
}
img {
	border: none;
}
a {
	color: #3EB6C3;
	text-decoration: underline;
}
a:hover {
	color: #0066CC;
}
#wrapper {
	margin: 20px 0 0 0;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px 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. */
	padding: 0 20px;
} 
#header {
	background: #FFF;
	padding: 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. */
} 
#header h1 {
	margin: 10px 0;
}
#nav {
	margin: 0 0 0 0;
	float: right;
	width:570px;
}
#nav ul {
	list-style-type: none;
	margin: 0;
	padding: 5px 0;
	background-image: url(../images/lightGreen.gif);
    }
     
#nav ul.left {}
     
#nav ul.right {
    text-align: right ;
    }
     
#nav ul li {
	display: inline;
	padding: 0 0 0 15px;
	font-size: 0.8em;
    } 
#nav a {
	text-decoration: none;
	color: #666666;
	font-weight: bold;
}
#nav a:hover {
	text-decoration: underline;
	color: #3EB6C3;
}
#logo {
	float: left;
	margin: 15px 0 0 0;
}
#badges {
	padding: 5px 0;
	text-align: right;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 340px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px 55px 15px;
	background-color: #FFF;
	background-image: url(../images/quotes.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#mainContent {
	margin: 20px 0 0 430px; /* 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. */
	padding: 0;
} 
#mainImage{
	background:../images/mainImage/1.jpg;}

#leftColumn {
	float: left;
	width: 400px;
	padding: 0px;
	margin: 0;
}
#LrgleftColumn {
	float: left;
	width: 510px;
	padding: 20px;
	margin: 0;
}
#contact {
	background-image: url(../images/contactBg.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
}
#rightColumn {
	margin: 20px 0 0 420px; /* 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. */
	padding: 0 20px 0 20px;
}
#highlight {
	background-color: #EEEEEE;
	padding: 15px 20px 0 20px;
	border: 1px #CCC solid;
}
#smlRightColumn {
	margin: 20px 0 0 570px;
	padding: 10px 0 0 0;
}
#footer {
	padding: 25px 0;
	background-color: #FFF;
	background-image: url(../images/footerLine.gif);
	background-repeat: no-repeat;
} 
#footer p {
	font-size:11px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	color: #666666;
}
#footer img {
	vertical-align: top;
}
.blueBrdr {
	border: 2px solid #39B5BD;
}
.leftThumb {
	padding: 0 2px 0 0;
	text-align: left;
	vertical-align: top;
}
.rightThumb {
	text-align: right;
	vertical-align: top;
}
.midThumb {
	vertical-align: top;
	padding: 0 0 6px 0;
	text-align: center;
}
.intro {
	font-size: 13px;
	font-weight: bold;
}
.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;
}

