triple-layered.css
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font: 1em Arial, Helvetica, sans-serif;
	background: #663300 url('images/eosmmorn1a.gif') repeat;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0px;
	padding: 0px;
	color: #000000;
}
body img {
	border: 0px;
}
/* =============== headings ================*/
h1, h2, h3, h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #5F4717;
}
h1 {
	font-size: 1.5em;
}
h2 {
	font-size: 1.2em;
}
h3 {
	font-size: 1em;
}
h4 {
	font-size: .9em;
}
/* ================links ===================*/
a, a:link {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
/*============ this is the 2nd layer change the background color to match the image you use ============= */
#outerwrapper {
	padding: 20px;
	width: 90%;
	margin: 0 auto 0 auto;
	background: #A46F3A url('images/eosmmorn1.jpg') repeat;
}
/*================= this is the inner content wrapper 
a light solid color gives a better contrast for the text
======================= */
#innerwrapper {
	border: 1px solid #A46F3A;
	padding: 10px;
	background-color: #FDF9F2;
	width: 90%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0 auto 0 auto;
}
/*=============== masthead ==================*/
#innerwrapper #header {
	background: #5F4717 url('images/family-genealogy-logo2.png') no-repeat center center;
	height: 170px;
}
/* ============== content wrapper contains menu and main content =================*/
/* ============== left navigation ================*/
#innerwrapper #contentWrapper #leftnav {
	float: left;
	padding: 10px;
	margin: 10px;
	border: 1px solid #CCCCCC;
	background-color: #FDF9F2;
	width: 180px;
	font-size: .9em;
}
#leftnav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
#leftnav li {
	list-style: none;
	padding: 2px 0;
}
#leftnav ul li a:link {
	background-position: center top;
	display: block;
	color: #3A1D00;
	padding: 4px;
	text-decoration: none;
	background-image: url('images/buttonB3.jpg');
	border: 1px solid #864E29;
	margin-top: 2px;
	background-repeat: no-repeat;
}
#leftnav a:visited {
	background-position: center top;
	color: #000;
	background-color: #F5ECDD;
	border: 1px solid;
	border: 1px solid #A79780;
	background-image: url('images/buttonB3.jpg');
	display: block;
	background-repeat: no-repeat;
	padding: 4px;
	text-decoration: none;
}
#leftnav a:hover {
	background-position: center top;
	color: #000;
	background-color: #F5ECDD;
	border: 1px solid;
	border: 1px solid #A79780;
	background-image: url('images/buttonB4.jpg');
	display: block;
	background-repeat: no-repeat;
	padding: 4px;
}
#leftnav a:active {
	background-position: center top;
	color: #000;
	background-color: #F5ECDD;
	border: 1px solid;
	border: 1px solid #A79780;
	background-image: url('images/buttonB5.jpg');
	display: block;
	background-repeat: no-repeat;
	padding: 4px;
}
/*=============main content area ================*/
#innerwrapper #contentWrapper #content {
	padding: 10px 10px 10px 10px;
	margin: 0 0 0 210px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#innerwrapper #contentWrapper .clearFloat {
	display: block;
	clear: left;
}
/* ====================footer ===================*/
#innerwrapper #footer {
	background-color: #FDF9F2;
	border-top: solid 1px #666;
	padding: 10px;
	font-size: .85em;
	text-align: center;
}
#innerwrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}
/* ================== global styles ===================*/
.ctr {
	text-align: center;
}
.smalltext {
	font-size: small;
}
.floatleft {
	float: left;
	margin: 10px 10px 10px 15px;
}
.floatright {
	float: right;
	margin: 10px 15px 10px 10px;
}