@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #a52b31;
	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;
}
.oneColFixCtr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 40px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 5px;
}
.oneColFixCtr #innerBorder {
	border: 1px solid #000000;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image:url(images/page_bg.jpg);
}
.oneColFixCtr #logo {
	position: relative;
	height: 56px;
	width: 200px;
	left: 325px;
	top: -250px;
	z-index: 1;
}
.oneColFixCtr #banner {
	height: 220px;
	width: 898px;
	margin: 0px;
	border-bottom: 5px solid #a52b31;
}
.oneColFixCtr #mainContent {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: relative;
	top: -56px;
	z-index:20;
}
.oneColFixCtr #inlinePhotoLeft {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	text-align:center;
	position:relative;
}
.oneColFixCtr #inlinePhotoRight {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: right;
	text-align:center;
	position:relative;
}
.oneColFixCtr #inlinePhotoCenter {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align:center;
	
}

/*******************************************************************************

 BROWSER HACKS

 *******************************************************************************/

/* HACK FOR IE: to put the logo in the right place */
.oneColFixCtr #navbar IE {
	top: -79px;
}
