@charset "UTF-8";
/* CSS Document */

/* ------------ "generic" styles */

body {
	margin: 0; padding: 0;
	background-color: #030;
	color: #030;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

a {
	color: #087ba5;
	text-decoration: none;
}

a img {
	border: 0;
}

/* ------------ "generic" styles */


.twoColumnHeadFoot #container { 
	width: 90%;
	background-color: #cdc;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColumnHeadFoot #header { 
	background-color: #99c496; 
	padding: 0;
} 
.twoColumnHeadFoot #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. */
	padding: 0.5em 1em;
	text-align: center;
}
.twoColumnHeadFoot #subMenu {
	float: left; 
	width: 200px; /* since this element is floated, a width must be given */
	background-color: #cdc; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 0 0 1em; /* top and bottom padding create visual space within this div  */
}
.twoColumnHeadFoot #subMenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.twoColumnHeadFoot #subMenu li {
	margin: 0;
	padding: 0.5em 0 0.5em 0;
}
.twoColumnHeadFoot #mainContent { 
	margin: 0px 0px 0px 220px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 0.5em 1em 1em 1em;
	background-color:#e3edc2;
}
.twoColumnHeadFoot #mainContent h1 { 
	margin: 0;
	padding: 0;
}
.twoColumnHeadFoot #footer { 
	padding: 0 0 0 0;
	background-color: #99c496;
} 
.twoColumnHeadFoot #footer ul {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 1em 1em 1em 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
}
.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;
}

#breadcrumbs {
	background-color: #9C6;
	margin: 0;
	padding: 0.5em;
}

/*#main_content ul {
	margin: 0;
	padding: 0 0 0 1em;
}

#main_content li {
	margin: 0;
	padding: 0;
}

#footer {
	clear: both;
	border-top: 1px solid #999;
}*/

/* ------------ my styles */

/*h1 {
	font-size: 24px;
	color: #040;
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0;
	padding: 0;
}
