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

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background:url(../images/background.gif) repeat-x #eaeae1;
	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;
}
div {
	float:left;
	width:100%;
}

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 60px auto 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. */
	float:none; !important;
}	
	#topMenu {
		background:url(../images/topMenu.gif) no-repeat #ffffff;
		height:13px;
	}
	#menu {
		background:white;
		padding:10px 0;
	}
		#menu ul {
			list-style:inside;
			list-style-type:none;
			margin:0;
			padding:0;
		}
			#menu ul li {
				display:inline;
				margin-right:35px;
				color:#333333;
			}
			#menu a:link, #menu a:visited {
				color:#333333;
				text-decoration:none;
			}
			#menu a:hover {
				color:#666666;
				text-decoration:none;
			}
	#banner {
		height:157px;
		background:url(../images/banner.jpg) no-repeat;
	}
		#banner img {
			margin:25px 0 0 20px;
			border:0;
		}
	#body {
		background:white;
	}
	#footer {
		height:41px;
		background:url(../images/footer.gif) no-repeat;
		text-align:center;
		font-size:10px;
		color:white;
		padding-top:15px;
		margin-bottom:120px;
	}
		#footer a:link, #footer a:hover, #footer a:visited {
			color:white;
		}
	
	

.pad10 {
	padding:0 30px 0 10px;
}
.pad20 {
	padding:0 20px;
}
.medSmall { 
	font-size:22px;
}
.medium {
	font-size:32px;
}
.big {
	font-size:48px;
}
.green {
	color:#9acc13;
}
.margin10 {
	margin-bottom:10px;
}
.margin15 {
	margin-bottom:15px;
}
.margin20 {
	margin-bottom:20px;
}
.margin25 {
	margin-bottom:25px;
}
.margin30 {
	margin-bottom:30px;
}
.margin35 {
	margin-bottom:35px;
}
.cornice {
	padding:5px;
	border:1px solid #999999;
}
.fltLeft {
	float:left;
	margin-right:10px;
}
.fltRight {
	float:right;
	margin-left:10px;
}
.hide {
	display:none;
}