trees.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 {
	background-color: #884C1A;
	font-size: medium;
	color: #2e2d2c;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background-image: url('images/background.jpg');
	background-repeat: repeat-x;
}
/*===============indicates no border around any image ============*/
body img {
	border: 0px;
	text-decoration: none;
}
/* Commonly used to style page titles. */

h1, h2, h3 {
	background-color: inherit;
	color: #663300;
	font-family: Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 150%;
}
h2 {
	font-size: 130%;
}
h3 {
	font-size: 100%;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #884C1A;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #006600;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  width: 740px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  margin: 10px auto 10px auto; 
}

#outerWrapper #sitename {
	background-position: center center;
	background-color: #ffffff;
	text-align: center;
	font-size: 2em;
	padding: 0px;
	margin: 0px;
	border-top: 2px solid #44260D;
	border-bottom: 2px solid #44260D;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
	background-image: url('images/family-genealogy-logo3.gif');
	background-repeat: no-repeat;
	height: 85px;
}

#outerWrapper #header {
	height: 200px;
	padding: 0px 20px 0px 0px;
	border-bottom: solid 1px #826a50;
	background: #B56523 url('images/tree-masthead.jpg') no-repeat;

}
#outerWrapper #topNavigation {
	background-color: #44260D;
}


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.mattblacktabs{
width: 100%;
overflow: hidden;
border-bottom: 1px solid black; /*bottom horizontal line that runs beneath tabs*/
}

.mattblacktabs ul{
margin: 0;
padding: 0;
padding-left: 10px; /*offset of tabs relative to browser left edge*/
font: bold 12px Verdana;
list-style-type: none;
}

.mattblacktabs li{
display: inline;
margin: 0;
}

.mattblacktabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 8px; /*padding inside each tab*/	
	border-right: 1px solid white; /*right divider between tabs*/	
	color: white;
	background: #44260D; /*background of tabs (default state)*/
}
.mattblacktabs li a:visited{
	color: #FFFFFF;
}
.mattblacktabs li a:hover, .mattblacktabs li.selected a{
	background: #884C1A; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}

#outerWrapper #contentWrapper #content {
  padding: 10px 20px;
  margin: 0px; 
}
#outerWrapper #footer {
  background-color: #ffffff;
  border-top: solid 1px #b66524; 
  padding: 10px; 
  text-align:center;
}

#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}
/*=============images =============*/
.imglft {
	float: left;
	padding: 5px;
}
.imgrgt {
	float: right;
	padding: 5px;
}