/* 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.
*/
.thrColElsHdr #container {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: center; /* this overrides the text-align: center on the body element. */
} 
.thrColElsHdr #container .clearfloat {

}
.thrColElsHdr #header {
	background: #000066;
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColElsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

hr {
	margin-right: 5em;
	margin-left: 10em;
	background-color: #003366;
}

h1 {
	font-family: "Kunstler Script", Manuscript, "Times New Roman";
	font-size: 2em;
	line-height: 2.1em;
	font-weight: bolder;
	color: #DCDCB8;
	text-align: center;
	background-color: #003366;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.6em;
	color: #FFFFFF;
	text-align: left;
}


h3 {
	font-family: "Monotype Corsiva", "Times New Roman";
	font-size: 1.5em;
	line-height: 1.6em;
	color: #FFFFCC;
	text-align: center;
	font-weight: bolder;
}

h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	background-color: #000066;
	font-size: 1em;
	line-height: 1.9em;
}
body {
	margin-left: 5em;
	text-align: center;
	background-color: #00274F;
	background-position: center center;
	float: left;
	margin-right: 40px;
}
.thrColElsHdr #container #header {
	background-color: #00274F;
}

.thrColElsHdr #container #header h1 {
	background-color: #00274F;
}
.thrColElsHdr #container #mainContent p {
	text-align: center;
	color: #C9C994;
	font-size: 1.2em;
	line-height: 1.7pc;
	font-weight: bold;
}
.thrColElsHdr #container #mainContent h1 {
	background-color: #003366;
	color: #FFFFFF;
	text-align: center;
}
.thrColElsHdr #container #mainContent ul {
	color: #E7E7CF;
	font-size: 1.1em;
	line-height: 1.3em;
}
.thrColElsHdr #container #mainContent h5 {
	color: #D9D9B3;
	font-size: .9em;
	line-height: 1.2em;
	text-align: center;
}


.thrColElsHdr #sidebar2 {
	float: right; 
	width: 11em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColElsHdr #container #sidebar2 {
	background-color: #003366;
	color: #CECE9D;
	font-weight: bold;
}
.thrColElsHdr #container #sidebar2 h3 {

}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/
.thrColElsHdr #sidebar1 {
	float: left; 
	width: 11em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColElsHdr #container #sidebar1 {
	background-color: #003366;
	color: #D2D2A6;
	font-weight: bold;
}

.thrColElsHdr #container #sidebar1 h3 {
	background-color: #003366;
}
.thrColElsHdr #container #footer {
	font-family: "Times New Roman", Arial, "Courier New";
	font-weight: bolder;
	color: #FFFFFF;
	background-color: #000066;
	text-align: center;
	font-size: 1em;
	line-height: 1.9em;
}

