@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #9aadcf url(../assets/images/layout/bg.jpg) repeat center;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

#container {
	width: 873px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(../assets/layout/layout_04.jpg) repeat-y;
} 

#header {
	background: #DDDDDD url(../assets/layout/layout_01.jpg);
	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. */
	height: 156px;
	margin: 0px;
} 

#topNav {
	background: url(../assets/layout/layout_02.jpg) no-repeat;
	height: 63px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#contentWrapper {
	margin: 0px;
	padding: 0px;
	background: url(../assets/layout/layout_03.jpg) no-repeat;

}

#mainContent {
	margin: 0px 0px 0px 25px; /* 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: 0px 0px 0px 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: small;
	width: 600px;
	float: left;
	display: inline;
} 

#mainContent h1 {
	font-size: medium;
	color: #003366;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#mainContent h2 {
	font-size: small;
}
#mainContent p {
	font-size: small;
}

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 175px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 35px 0px 0px;
	font-size: small;
}
#sidebar  h1 {
	font-size: small;
	margin: 0px;
	padding: 0px;
	color: #000099;
}
#sidebar  p {
	font-size: 9pt;
	margin: 0px 0px 10px;
	padding: 0px;
	text-align: justify;
}

#footer {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #9aadcf url(../assets/layout/layout_05.jpg) no-repeat;
	margin: 0px;
	clear: both;
} 
#footer a {
}
#footer a:hover {
	color: #000000;
}
#footer h2 {
	font-size: x-small;
	font-weight: normal;
	text-align: center;
	margin: 10px 0px 0px;
	padding: 0px;
}

#footer h1 {
	font-size: small;
	padding: 35px 25px 0px 25px;
	text-align: center;
	margin: 0px;
}

#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: 0px 10px 0px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: x-small;
	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:0px;
	font-size: 1px;
	line-height: 0px;
}
#sidebar hr {
	margin: 0px;
	padding: 0px;
}
