@charset "utf-8";
body {
	font-size: 12px; 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background: #03C;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
.oneColFixCtrHdr #container {
	font-size: 12px; 
	width: 780px;
	background: #FFFFFF;
	margin: 0 auto; 
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background-image: url(images/bear_lake_country_cabins.jpg);
	background-repeat: no-repeat;
	padding: 0;
	height: 176px;
	width: 100%;
	border: 1px double black;
}
.oneColFixCtrHdr #headline {
	margin: 20px 20px 20px 220px;
	font-family: "Comic Sans MS", cursive;
	font-size: 28pt;
}
.oneColFixCtrHdr #subHeadline {
	margin: 30px 20px 20px 220px;
	font-family: "Comic Sans MS", cursive;
	font-size: 18pt;
}
.oneColFixCtrHdr h1 {
	margin: 0;
	padding: 0; 
	font-family: "Comic Sans MS", cursive;
	font-size: 18pt;
}
.oneColFixCtrHdr #mainContent {
	font-size: 12px; 
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColFixCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.alignCenter {
	text-align: center;
}

.alignLeft {
	text-align: left;
}

.floatLeft {
	float: left;
	margin-right: 12px;
}
.verticalAlign {
	vertical-align: middle;
}
.alignTop {
	vertical-align: top;
}


.floatRight {
	float: right;
	margin-left: 12px;
}