@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	min-width:920px; /* must be 50 more than the minimum width of the picture/menu table */
}
/* 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 #outer {
	text-align: center;
	border:15px solid #009900;
}
.oneColElsCtrHdr #inner {
	text-align: center;
	border:10px solid #FFCC00;
}
.oneColElsCtrHdr #container {
	background: #FFFFFF;
	margin: 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. */
	width:100%;
}
.oneColElsCtrHdr #header {
	background: #fff;
	text-align:center;
}
.oneColElsCtrHdr #mainContent {
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#subheader2 {
	height:1.75em;
	background:#009900; /* green */
}
table#pics {
		min-width:870px; /* width of all pictures squished completely together */
		padding:15px 0;
}
#footer {
	clear:both;
	border-top: #FFCC00 2px solid;
	padding: 5px 10px;
}


