@charset "utf-8";
/* CSS Document */

body  {
	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: #333333;
	background-image: url(../elements/layout/bodyBackground.jpg);
	background-color: #8DC73F;
	background-repeat: no-repeat;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	line-height: 130%;
}
#container {
	width: 950px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
} 
#header { 
	 
} 

#rapper {
	background-image:url(../elements/layout/backgroundContent.gif);
	background-repeat: no-repeat;
	margin-top: 20px;
	height:auto;

}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	text-align: center;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
#mainContent {
	background-image:url(../elements/layout/mainBackground.png);
	background-repeat: repeat;
	min-height: 450px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 210px;
	min-height:460px;
	padding: 10px;
} 
#footer_links {
	background-color: #8DC73F;
	text-align: center;
	clear: both;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-color: #42210A;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	border-top-style: solid;
}


#footer {
	height: auto;
	text-align: center;
	margin-bottom: 20px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #42210A;
	border-right-color: #42210A;
	border-bottom-color: #42210A;
	border-left-color: #42210A;
	font-size: 95%;
	line-height: 100%;
	padding: 5px;
} 

