@charset "utf-8";
/* CSS Document */

body {
	font: 11px Tahoma, 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: #666666;
}

a:link {
	color: #4F717F;
	text-decoration: none;
}	
a:visited {
	color: #4F717F;
	text-decoration: none;
}	
a:hover {
	color: #666666;
	text-decoration: underline; 
}	
	
#container {
	width: 957px;  /* 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; /* this overrides the text-align: center on the body element. */
}

#linkbox:link {
	background: #92B0BC;
	color: #FFFFFF;
	font-weight: bold;
	padding: 5px;
	text-decoration: none;
	margin-right: 5px;
}

#linkbox:visited {
	background: #92B0BC;
	color: #FFFFFF;
	font-weight: bold;
	padding: 5px;
	text-decoration: none;
	margin-right: 5px;
}

#linkbox:hover {
	background: #333;
	color: #FFF;
	font-weight: bold;
	padding: 5px;
	text-decoration: underline;
	margin-right: 5px;
}

#subcontent1 {
	width: 580px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	padding: 10px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	line-height: 1.7;
	margin-bottom: 20px;
}

#subcontent h4 {
	background: #4F717F;
	width: 592px;
	padding: 5px;
	margin: 0px;
	color: #FFFFFF;
	font-size: 12px;
}

#header {
	padding: 10px 0px 10px 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. */
}

.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;
}

#nav {
	background-image: url(../images/bg-nav.jpg);
	background-repeat: no-repeat;
	margin-top: 10px;
	margin-right: 0px;
	width: 775px;
	height: 42px;
	float: left;
}

#nav1 {
	float: left;
	margin-top: 10px;
	height: 42px;
}

#mainContent {
	padding: 10px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainimage {
	padding: 7px 7px 0px 6px;
	background-image: url(../images/bg-main-image.jpg);
	height: 126px;
	background-repeat: no-repeat;
	width: 932px;
	z-index: 1;
}

#mainheader {
	padding: 10px 20px 0px 20px;
	background-image: url(../images/bg-main-header.jpg);
	font-size: 15px;
	height: 30px;
	font-family: Trebuchet MS;
	font-weight: bold;
	color: #4F717F;
	background-repeat: no-repeat;
	width: 906px;	
}

#mainbody {
	padding: 0px 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(../images/bg-main-body.jpg);
	line-height: 1.7;
	background-repeat: repeat-y;
}

.col {
	width: 303px;
	float: left;
	margin-top: 10px;
	margin-right: 16px;
	height: 356px;
	background-image: url(../images/bg-col.jpg);
	background-repeat: no-repeat;
}
.colheader {
	background-color: #4F717F;
	width: 282px;
	margin: 7px 7px 0px 7px;
	font-family: Trebuchet MS;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	padding: 5px;
}
.colbody {
	width: 282px;
	margin: 0px 4px 4px 4px;
	padding: 3px;
	line-height: 1.7;
}
.colbody1 {
	margin: 4px 0px 4px 0px;
	padding: 5px;
	line-height: 1.7;
	background-image: url(../images/bg-col-content.jpg);
	width: 282px;
}

.maincol {
	width: 624px;
	margin: 7px 8px 4px 0px;
	padding: 3px;
	line-height: 1.7;
	float: left;
}

.maincolheader {
	background-image: url(../images/bg-maincol-header.jpg);
	background-repeat: no-repeat;
	height: 25px;
	font-size: 15px;
	font-family: Trebuchet MS;
	font-weight: bold;
	color: #4F717F;
	padding: 10px;
}

.maincolbody {
	background-image: url(../images/bg-maincol-body.jpg);
	background-repeat: repeat-y;
	padding: 0px 10px 10px 10px;
	line-height: 1.7;
}

.maincolbody h4 {
	background: #4F717F;
	width: 592px;
	padding: 5px;
	margin: 0px;
	color: #FFFFFF;
	font-size: 12px;
}

#footer {
	padding: 20px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
#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 */
}
#foot1 {
	line-height: 1.9;
	float: left;
}
#foot2 {
	float: right;
	text-align: right;
	color:#CCCCCC;
}