@charset "utf-8";
body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4em;
	background-color: #F3F0C8;
	behavior:url(_css/csshover.htc);
}

/* 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.
*/

* {
	margin:0; 
	padding:0;
	} 

.clearthefloats {clear:both;}

.oneColElsCtrHdr #container {
	width: 56em;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #362E40;
	border-width: 1px;
	border-style: solid;
	background-color: #FFFFFF;
	background-image: url(_Images/SchoolHouseWatermark.jpg);
}
/* Miscellaneous classes for reuse */
	
.oneColElsCtrHdr #header {
	font-size: 24px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	color: #F3F0BB;
	background-color: #523857;
	text-align: center;
	background-image: none;
	height: 120px;
	padding: 30px 0px 0px 0px;
	border: medium solid #523857;
} 


.oneColElsCtrHdr div#header h1 {
	margin-bottom: 4%; /* 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 14% 0;*/
}


/* the horizontal menu starts here */
div#listmenu * {
	z-index: 10;
	}

div#listmenu {
	width:100%; 						/* makes the div full width */
	float:left; 						/*makes the div enclose the list */
	/*border-top: 2px solid #2E3640;*/		/* draws line on top edge of div */
	/*border-bottom: 2px solid #2E3640;*/	/* draws line on bottom edge of div */
	font-size: .7em;					/* Sets font size */
	background-color: #F3F0C8;			/* colors the div */
	margin-bottom: 2%;
	}
	
div#listmenu ul {
	margin: auto;					/* indents ul from edge of container  0 2% 2% 2% */
	}
	
div#listmenu li {
	float:left;							/* causes the list to align horizontally instead of stack */
	position:relative; 					/* positioning context for the absolutely positioned drop-down */
	list-style-type:none;				/* removes the bullet off each list item */
	background-color: #F3F0C8; 			/*sets the background of the menu items */
	/*border-right:1px solid #2E3640; */	/* creates dividing lines between the li elements */
	/*border-bottom:1px solid #2E3640; */
	width: 8em;
	text-align:center;
	}
	
div#listmenu li:first-child {
	/*border-left:1px solid #2E3640; */			/*the first vertical line on the menu */
	}
	
div#listmenu li:hover { 
	background-color: #523857;
	color:#FFF;
	}
	
div#listmenu a {
	display: block;
	padding: 0 3px;					/*creates space each side of menu item's text */
	text-decoration: none;	 			/* removes the underlining of the link */
	color: #523857;					/* sets the type color */
	}
	
div#listmenu a:hover {
	color: #FFF;
	}
						/* the horizontal menu ends here */
						
						/* the drop-down starts here */
div#listmenu ul li ul {
	margin: 0;
	position:absolute; 	/* positions the drop-down ul in relation to its relatively positioned li parent */
	width: 100%; 		/*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; 			/*aligns the drop exactly under the menu */
	}
	
div#listmenu ul li ul li {
	width:100%; 						/* makes the list items fill the list container (ul) */
	border-left:1px solid #2E3640; 		/*  three sides of each drop-down item */
	border-bottom:1px solid #2E3640;
	border-right:1px solid #2E3640;
	}
	
div#listmenu ul li ul li:first-child {
	border-top:1px solid #2E3640; 		/*the top edge of the dropdown */
	}
										/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {
	display:none;
	} 									/* conceals the drop-down when menu not hovered */
	
div#listmenu ul li:hover ul {
	display:block;
	} 									/* shows the drop-down when the menu is hovered */


body div#listmenu ul li ul li ul {
	visibility: hidden;
	top: -1px;
	left: 8em;
	} 									/* conceals the drop-down when menu not hovered */
	
div#listmenu ul li ul li:hover ul {
	visibility:visible;
	} 							

/*Listmenu ends here*/

#intro p {
	padding-right: 12px;
	padding-left: 20px;
}
.oneColElsCtrHdr #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;
}

div#mainContent {
	text-align:left;
	color: #362E40;
	background-color: 
	padding: 5% 20px 2% 1px;
	border: medium solid #362E40;
	/*float: right;*/
}

#intro {
	margin-bottom: 3%;
}

#intro p {
	margin-left: 2%;
	margin-bottom: 1%;
	line-height: 150%;
}


#intro H2 {
	margin-top:2%;
	margin-left: 2%;
	margin-bottom: 1%;
}

#intro ol li {
	line-height: 150%;
	padding-bottom: 4px;
	margin-left:10%;
	margin-right:10%;
}

#intro ol ul li {
	margin-left: 14%;
	line-height: 150%;
}


div#spacer {
	clear:both;
	width: 100%;
	}

div#bottom {
	padding-bottom: 2px;
	border-bottom: 2px solid #2E3640;
	}

div#footer {
	width: 100%;
	font-size: 0.75em;
	margin-bottom: 10px;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: center;
	}
	
div#footer UL {
	margin: 2px 0px;
	}
	
div#footer LI {
	display: inline; 
	border-left: 1px solid #2E3640;
	}

div#footer LI:first-child {
	border-left: none; 
	}
/*div#footer LI:unknown {
	border-left: 0px
	}*/
	
div#footer UL LI{
	color: #2E3640;
	padding-right: 7px;
	padding-left: 7px;  
	color: #523857;	
	}
	
div#footer UL LI a {
	text-decoration: underline;
	color: #2E3640;
	}
	
div#footer UL LI a:hover {
	background-color: #523857;
	color:#FFF;
	}
	
div#footer p {
	margin:1% 5% 1% 5%;
	font-style:italic;
}
	
img {
	float: right;
	margin:14px;
	border: medium inset #F3F0C8;
}
.clearthefloats {clear:both;}

