@charset "UTF-8";
body  {
	background: #1C425C;
	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: #ffffff;
}
#container {
	padding: 0;
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */ 
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 

#header {
	position: absolute;
	top: 0;
	height: 187px;
	width:  1024px; 
	background: url(images/banner.jpg) no-repeat;
}

ul#navbar {
	list-style: none;
	margin-left: 320px;
	margin-top: 160px;
}

ul#navbar li {
	float: left;
}
ul#navbar li a {
	color: #6ABDC4;
	text-decoration: none;
	padding-right: 55px;
	letter-spacing: .03em;
	font: bold 26px Helvetica, Arial, Verdana, sans-serif;
} 

h1 {
	padding: 0;
	color: #1C425C;
	font: bold 22px Helvetica, Arial, Verdana, sans-serif;
	margin: 0;
}

h2 {
	color: #1C425C;
	font: italic bold 20px Helvetica, Arial, Verdana, sans-serif;
	font-style: italic;
	padding-top: 10px;
	padding-left: 10px;
}

a:link {
	color: #1c425c;
	font: Helvetica, Arial, Verdana, sans-serif;
}

a:visited {
	color: #1c425c;
	font: Helvetica, Arial, Verdana, sans-serif;

}
a:hover {
	color: #1c425c;
	font: Helvetica, Arial, Verdana, sans-serif;

}
a:active {
	color: #1c425c;
	font: Helvetica, Arial, Verdana, sans-serif;
}	

p, td {
	padding-left: 20px;
	padding-top: 5px;
	font: 18px/20px Helvetica, Arial, Verdana, sans-serif;
}

table {
	margin-top: 15px;
	margin-left: 20px;
}

strong {
	color: #1C425C;
	font-style: italic;
}

#sidebar1 {
	position: absolute;
	top: 187px;
	left: 0;
	width: 325px; 
	height: 603px;
	background: url(images/l_column.jpg) no-repeat;
	float: left;
	padding-top: 50px;
	padding-right: 35px;
	padding-left: 70px;
}

#contact {
	position: absolute;
	top: 187px;
	width: 754px;
	height: 603px;
	background: url(images/contact.jpg) no-repeat;
	padding-top: 50px;
	padding-right: 145px;
	padding-left: 125px;
}

#mainContent {
	position: absolute;
	top: 187px; 
	background: url(images/r_column.jpg) no-repeat;
	width: 509px;
	height: 603px;
	left: 430px;
	padding-top: 50px;
	padding-left: 40px;
	padding-right: 45px;
} 

#footer { 
	background: url(images/footer.jpg) no-repeat; 
	height: 50px;
	width: 1024px;
	position: absolute;
	top: 840px;
} 

#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: 5px 0 10px;
	font: 12px Helvetica, Arial, Verdana, sans-serif;
	text-align: center;
}
.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;
}

img {
	border-width:0px;
}