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

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #abd0fd;
	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;
}


#header{

height:110px;
width:480px;
background-image:url(images/header.jpg);
}

#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #abd0fd;
	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. */
}
#navContainer {
	float: left; /* 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: #abd0fd; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:0;
	margin-top:160px;
}
#nav{

height:160px;
padding-top:117px;
background-image:url(images/nav_top.jpg);
}
#nav ul{
padding-top:40px;

list-style:none;
padding-left:24px;
margin-left:0px;
font-size:14px;
}
#nav ul li{
margin-bottom:5px;
}
#nav ul a{
color:#000;
text-decoration:none;
}
#nav ul a:hover{
text-decoration:underline;
}
#nav_bottom{

height:160px;
background-image:url(images/nav_bottom.jpg);

}

#contentContainer { 
	margin: 0 0 0 160px; /* 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 0 /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#content_top{
height:47px;
width:480px;
background-image:url(images/content_top.jpg);
}

#content{
margin-top:-19px;
width:480px;
font-family:Verdana, Arial, Helvetica, sans-serif;
background-image:url(images/content_middle.jpg);
min-height:450px;
}
#content p{
font-size:12px;
margin:0 23px 0 23px;
}
#content h2{
padding:0 0 5px 0;
}
#content h3{

margin-left:20px;
margin-bottom:15px;
padding-right:5px;
font-size:14px;
}
#content h4{
font-size:12px;
width:408px;
height:20px;
background-image:url(images/h3.jpg);
margin-left:46px;
padding: 3px 0 0 10px;
margin-right:20px;
margin-bottom:15px;
}
#footer{

width:480px;
height:224px;
background-image:url(images/content_bottom.jpg);
}

.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;
}

#introText{
margin:15px;
padding:15px;
}