@charset "utf-8";
/* Father's Hall of Fame CSS copysheet master
Author: Barbara Weller
Date: March 20, 2008
www.etelligentcreative.com 
*/
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 10px 30px 0 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: #333333;
	background-color: #C4C1E1;
}

/* 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.
*/
.thrColElsHdr #container {
	width: 900px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px inset #52617B;
	text-align: left;
} 
/* Set z-index to 2 and position to relative to help with positioning pillars in Firefox and Safari do to IE7 gap problem*/
.thrColElsHdr #header {
	background: #fff;
	margin-bottom: 0px;
	position: relative;
	z-index: 2;
} 
.thrColElsHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* top margin set to minus 1.9 ems to line up with roof in ie7
*/
.thrColElsHdr #sidebar1 {
	float: left;
	width: 11em; /* top and bottom padding create visual space within this div */
	margin-left: 25px;
	margin-top: -1.2em;
}
.thrColElsHdr #sidebar2 {
	float: right;
	width: 11em;
	margin-right: 40px;
	margin-top: -1.2em;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. 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.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColElsHdr #mainContent {
	margin: 0 12em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	background-color: #FFFFFF;
} 
.thrColElsHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
} 
.thrColElsHdr #footer p {
	margin: 0 4em 0 4em; /* 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 */
	width: auto;
}

/* 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;
}

/* This is the controls the appearance of the top navigation elements
*/
.thrColElsHdr #container #header #topNav
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #FFFFFF;
	height: 60px;
	width: auto;
	border: 6px solid #313431;
	margin: 0 5em 0 4em;
	text-align: center;
	z-index: 1;
}
/* This is the border around the top navigation box
*/
#topNav
{
	border: thick solid #52555A;
	margin: 0em 10em 0em 11em;
}
/* This is the unordered list that the links appear in
*/
div#topNav ul {
    margin: 0px;
    padding: 0px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    color: #000;
    
    white-space: nowrap;
}
div#topNav li {
	list-style-type: square;
	display: inline;
}
/* This is the link colors and font sizes
*/
div#topNav li a {
    font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
    text-decoration: none;
    padding: 7px 10px;
    color: #6A6240;
	line-height: 30px;
	list-style-type: square;
}
div#topNav li a:link {
	color: #993300;
}
div#topNav li a:visited {
	color: #393C39;
}
div#topNav li a:hover {
	font-weight: bold;
	color: #666666;
	background-color: #999999;
}

/* This is the center area div that keeps the pillars from moving down with the content additions
*/
.thrColElsHdr #container #centerArea
{
	text-align: center;
	width: 900px;
	margin-top: 0px;
}
/* This is the copyright text
*/
h5 
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #6A6240;
	line-height: 1.2em;
}

/* This is the About Us title in the content area 
*/

h2 
{
	font-family: "Trebuchet MS";
	font-size: 20px;
	color: #6A6240;
	line-height: 1.2em;
}

p 
{
	font-family: "Trebuchet MS";
	font-size: 15px;
	color: #333333;
	line-height: 1.2em;
}
/* This is the links within the main content area
*/
.links 
{
font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #333333;
	line-height: 1.2em;
}
/* This is the link to my site at the page bottom
*/
a:link
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #6F6142;
	line-height: 1em;
	text-decoration: underline;
	padding: 7px 10px;
}

 a:visited {
    color: #393C39;
	}

/* This is the controls the appearance of the bottom navigation elements
*/
.thrColElsHdr #container #header #bottomNav
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	word-spacing: inherit;
	height: 60px;
	width: auto;
	text-align: center;
	z-index: 1;
}
/* This is the border around the bottom navigation box
*/
#bottomNav
{
	margin: 0em 10em 0em 11em;
	padding: 0 .3em 0 .3em;
}
/* This is the unordered list that the links appear in
*/
div#bottomNav ul {
    margin: 0px;
    padding: 10px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 12px;
    color: #000;
    
 
}
div#bottomNav li {
	list-style-type: square;
	display: inline;
	margin: 0 10px 0 10px;	
}
/* This is the link colors and font sizes
*/
div#bottomNav li a {
    font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
  
   
    color: #6A6240;
	line-height: 20px;
	list-style-type: square;
}
div#bottomNav li a:link {
	color: #993300;
}
div#bottomNav li a:visited {
	color: #393C39;
}
div#bottomNav li a:hover {
	font-weight: bold;
	color: #4A5D7B;
	
}

a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
a:visited {
	color: #6B5D8C;
}
a:hover {
	color: #333333;
}
a:active {
	color: #9C96BD;
}
.highlight {
	color: #993333;
	font-weight: bold;
}
.thrColElsHdr #container #centerArea #mainContent h3
{
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: normal;
	color: #333333;
}
.thrColElsHdr #container #centerArea #mainContent h3
{
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	color: #333333;
}
.thrColElsHdr #container #footer a
{
	font-family: "Trebuchet MS";
	font-size: 9px;
	color: #6B6142;
}
.zachTitle {
Font: Trebuchet MS;
Font-size: 18px;
Color: #6A6240;
Line-height: 1.2em;
}

.zachLinks a {
Font: Verdana, Arial, Helvetica, sans-serif;
Font-size: 14px;
Font-weight: bold;
Color: #6A6240;
Line-height: 1.2em;
}

.zachLinks a:visited {
Font: Verdana, Arial, Helvetica, sans-serif;
Font-size: 14px;
Font-weight: bold;
Color: #393C39;
Line-height: 1.2em;
}
.zachUnorderlists {
Font: Trebuchet MS;
Font-size: 16px;
Color: #393C39;
Line-height: 1.2em;
}

