@charset "utf-8";
body  {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	background-color: #2E4E50; /* **Normally overridden below** Dark grey, e.g. if container div reduced to less than 100% */
	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;
}
.twoColHybLtHdr #container {
	width: 90%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #2E4E50;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #2E4E50;	/* Matches header and body colour, so the sidebar appears to extend vertically. Change this and you should also change the sidebar background, the header background, etc. Was #FFFFFF */
} 

.twoColHybLtHdr #container a {
	color: #6BA5A9;
}

.twoColHybLtHdr #header {
	padding: 0 0 0 0px;  /* 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. */
	background-position: right;
	background-repeat: no-repeat;
	background-color: #2E4E50;		/* Matches left edge of JPG image */
} 
.twoColHybLtHdr #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: 20px 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:Verdana, Geneva, sans-serif;
	color: #FFFFEE;
}

.twoColHybLtHdr #firstcontentcontainer {
	background-color:#6BA5A9;
	margin: 0;
	padding: 0;
}
	
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 220px; /* since this element is floated, a width must be given. Change with the left margin of the mainContent */
	background-color: #6BA5A9; /* the background color will be displayed for the length of the content in the column, but no further. Beyond that, the parent container div's background takes over, so they should both be changed together */
	padding: 0px 0 0 0; /* top and bottom padding create visual space within this div  */
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #6BA5A9;
}
/* Tips for sidebar2:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 ".twoColHybLtHdr #sidebar1 p" rule.
*/

.twoColHybLtHdr #maincontent1 {
	margin-left: 225px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. It is zeroed here because we have set the overall page background to the sidebar's background colour, so the sidebar appears to stretch down the page. Left margin is similar to the width of the sidebar. */
	/*	padding: 5px 5px 5px 5px; */
	padding: 0px;
	background-color:#6BA5A9;	/* Setting the background colour of the mainContent div allows us to cope with the body background being non-white, which is done to allow the sidebar background to extend all the way down with the mainContent text */
/*	position: relative; */
}

.twoColHybLtHdr #maincontent1 h3, .twoColHybLtHdr #maincontent1 p {
	font-family:Verdana, Geneva, sans-serif;
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
	background-color: #6BA5A9;
}

.twoColHybLtHdr #mainimage {
	background-color:#6BA5A9;
	margin: 0;
	padding: 0;
/*	display: inline; */
	overflow:hidden;
}

.twoColHybLtHdr #secondcontentcontainer {
	background-color:#1E2C33;
	margin: 0;
	padding: 0;
}

.twoColHybLtHdr #sidebar2 {
	float: left;
	width: 220px; /* since this element is floated, a width must be given. Change with the left margin of the mainContent */
	background-color: #1E2C33; /* the background color will be displayed for the length of the content in the column, but no further. Beyond that, the parent container div's background takes over, so they should both be changed together */
	padding: 0px; /* top and bottom padding create visual space within this div  */
}
.twoColHybLtHdr #sidebar2firstcontainer {
	background-color:#1E2C33;
	margin: 5px;
	padding: 10px;
	border-bottom-color: #FFF;
	border-bottom-style: ridge;
	border-bottom-width: medium;
}

.twoColHybLtHdr #sidebar2secondcontainer {
	background-color:#1E2C33;
	margin: 5px;
	padding: 10px;
/*	width: 85%; */
}


.twoColHybLtHdr #sidebar2 p, .twoColHybLtHdr #sidebar2 h3 {
	font-family:Verdana, Geneva, sans-serif;
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
	background-color: #1E2C33;
	color:#FFF;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/

.twoColHybLtHdr #maincontentcontainer {
	background-color:#1E2C33;
	margin: 10px;
	padding: 0px;
	float: none;
	border-bottom-color: #FFF;
	border-bottom-style: ridge;
	border-bottom-width: medium;
}

.twoColHybLtHdr #mainContent {
	margin: 0 0 0 225px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. It is zeroed here because we have set the overall page background to the sidebar's background colour, so the sidebar appears to stretch down the page. Left margin is similar to the width of the sidebar. */
	padding: 5px 5px 5px 5px;
	background-color:#1E2C33;		/* Setting the background colour of the mainContent div allows us to cope with the body background being non-white, which is done to allow the sidebar background to extend all the way down with the mainContent text */
	float: none;
	position: relative;
}

.twoColHybLtHdr #mainContent p, .twoColHybLtHdr #mainContent li, .twoColHybLtHdr #mainContent h1, .twoColHybLtHdr #mainContent h2 {
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
}
.twoColHybLtHdr #mainContent h1 {
	font-size:large;
}
.twoColHybLtHdr #mainContent h2 {
	font-size:large;
}
.twoColHybLtHdr #mainContent li {
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
}

.twoColHybLtHdr #secondcontentimage {
	background-color:#1E2C33;
	margin: 0;
	padding: 0;
	float: right;
}

.twoColHybLtHdr #columncontainer {
	background-color:#1E2C33;
	margin: 10px;
	padding: 0px;
}

.twoColHybLtHdr #firstcolumn {
	background-color:#293D45;
	margin: 0px 0px;
	padding: 5px 0px;
	width: 45%;
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
/*	float: left; */
}

.twoColHybLtHdr #secondcolumn {
	background-color:#293D45;
	margin: 0px;
	padding: 5px 0px;
	float: right;
	width: 50%;
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
}


.twoColHybLtHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#1E2C33;
} 
.twoColHybLtHdr #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 */
	font-family: Verdana, Geneva, sans-serif;
	color:#FFF;
	font-size: 0.8em;
}
.twoColHybLtHdr #footer a {
	color: #6BA5A9;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
