@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #484848;
	margin: 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: #FFFFFF;
}
a:link { color: #c2cdaf; text-decoration: none}
a:visited { color: #bbcd9c; text-decoration: none}
a:hover {
	color: #000000;
	text-decoration: none;
	background-color: #c2cdaf;
}
a:active  { 
	color: #999999;
	text-decoration: none;
	background-color: #2b2b2b;
}

.twoColFixLtHdr #container {
	width: 920px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999999;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #000000; 
	padding: 0 0 20px 0;  
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	font-size: 75%;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 310px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 40px 20px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 90%;
} 
.twoColFixLtHdr #mainContent h1 {
	font-size: 160%;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.twoColFixLtHdr #mainContent h2 { 
	font-size: 130%;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}

.twoColFixLtHdr #mainContent h3 { 
	font-size: 160%;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #beec6d;
	
}

.twoColFixLtHdr #mainContentHome { 
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 40px 40px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 90%;
} 
.twoColFixLtHdr #mainContentHome h1 {
	font-size: 160%;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.twoColFixLtHdr #mainContentHome h2 { 
	font-size: 130%;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}
.twoColFixLtHdr #mainContentRight { 
	margin: 0 0 0 450px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#2b2b2b;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
	font-size: 75%;
	color: #999999; 
}
.twoColFixLtHdr #footer p {
	margin: 0; /* 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 */
}
.twoColFixLtHdr #footer a:link  { color: #999999; text-decoration: none }
.twoColFixLtHdr #footer a:visited  { color: #999999; text-decoration: none }
.twoColFixLtHdr #footer a:hover { color: #999999; text-decoration: underline}
.twoColFixLtHdr #footer a:active  { color: #999999; text-decoration: underline}

.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;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#2b2b2b;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
	font-size: 75%;
	color: #999999; 
}
.calloutHome {
	margin: 0;
	padding: 20px;
	font-size: 85%;
	background-color: #2b2b2b;
	border: 1px solid #999999;
}
.calloutHome a:link  { color: #bbcd9c; text-decoration: none }
.calloutHome a:visited  { color: #bbcd9c; text-decoration: none }
.calloutHome a:hover {
	color: #000000;
	text-decoration: none;
	background-color: #c2cdaf;
}
.calloutHome a:active  { 
	color: #000000;
	text-decoration: none;
	background-color: #c2cdaf;
}

.borderWhiteRight {
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
	border: 1px solid #ffffff;
}
.borderWhiteLeft {
	float: left;
	margin-bottom: 20px;
	margin-right: 20px;
	border: 1px solid #ffffff;
}
.borderWhite {
	border: 1px solid #ffffff;
}

.fltrtCaption { 
	float: right;
	margin: 0 0 20px 20px;
	font-size: 85%;
	color: #cadba7;
}
.fltlftCaption { 
	float: left;
	margin: 0 20px 20px 0;
	font-size: 85%;
	color: #cadba7;	
}
#apDiv1 {
	position: absolute;
	width:355px;
	float: right;
	z-index:1;
	visibility: visible;
}
#apDiv2 {
	position: absolute;
	width:355px;
	float: right;
	z-index:2;
	visibility: hidden;
}
#apDiv3 {
	position: absolute;
	width:355px;
	float: right;
	z-index:3;
	visibility: hidden;
}
#apDiv4 {
	position: absolute;
	width:355px;
	float: right;
	z-index:4;
	visibility: hidden;
}
#apDiv5 {
	position: absolute;
	width:355px;
	float: right;
	z-index:5;
	visibility: hidden;
}
#apDiv6 {
	position: absolute;
	width:355px;
	float: right;
	z-index:6;
	visibility: hidden;
}
#apDiv7 {
	position: absolute;
	width:355px;
	float: right;
	z-index:7;
	visibility: hidden;
}
#apDiv8 {
	position: absolute;
	width:355px;
	float: right;
	z-index:8;
	visibility: hidden;
}
.textSmall {
	font-size: 85%;
}
