@charset "utf-8";
body {
	font: 100% Arial, Verdana, Tahoma, sans-serif;
	background: #FFF;
	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;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

.oneColElsCtrHdr #container {
	width: 1007px;
	margin: auto;
	text-align: left;
	background-color: #FFF;
}
.oneColElsCtrHdr #header {
	width: 1007px;
	padding: 0;
	background-color:#000;
	clear: both;	
} 
.oneColElsCtrHdr #mainContent {
	padding: 0 0px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 1007px;
	background-color: #FFF;
	font-size:12px;
	text-align: center;
} 
.oneColElsCtrHdr #textContent {
	padding: 0 0px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 850px;
	background-color: #FFF;
	font-size: 12px;
	margin-top: 20px;
	margin-left: 75px;
}
.oneColElsCtrHdr #imageContainer {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 195px;
	float: left;
	margin-left: 10px;
	margin-top: 20px;
	font-size:12px;	
}
.oneColElsCtrHdr #footermenu {
	height: 22px;
	clear: both;.oneColElsCtrHdr #container #mainContent center table tr td a img {
	color: #000;
}
* html ..oneColElsCtrHdr #footermenu {
	margin-bottom: -3px;

