@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #556655;
	margin: 0; 
	padding: 10px;
	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: #000000;
}
#container { 
	width: 980px;  
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the container in the page */
	border-top: 7px solid #542224;
	border-right: 1px solid #542224;
	border-bottom: 1px solid #542224;
	border-left: 1px solid #542224;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #17391B; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. */
	color: #C1CAC0;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; 
	width: 70px; 
	background: #C1CAC0; 
	padding: 10px 10px 10px 15px; 
	margin: 70px 0px 0px 40px;
	font-family: Palatino Linotype, Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #556655;
}
#sidebar1 a {
	color: #17391B; text-decoration: none;
}
#sidebar1 a:link {
	color: #17391B; text-decoration: none;
}
#sidebar1 a:visited {
	color: #17391B; text-decoration: none;
}
#sidebar1 a:active  {
	color: #542224; text-decoration: none;
}
#sidebar1 a:hover {
	color: #542224; text-decoration: underline;
	/*color: #C0C9D3;
	background: #442748;*/
}
#sidebar2 {
	float: right; 
	width: 250px; 
	padding: 7px 10px 15px 20px; 
	margin: 40px 0px 24px 0px;
	border-left: thin dashed #C1CAC0;
	/*font-family:Georgia, "Times New Roman", Times, serif*/
}
#mainContent { 
	margin: 0 300px 10px 170px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. */
	padding: 0 10px 10px 10px; 
} 
#mainContent h1,h2,h3,h4,h5 {
	font-family: Palatino Linotype, Georgia, "Times New Roman", Times, serif;
	color: #17391B;
}
#mainContent a{
	color: #536376; text-decoration: underline;
}
#mainContent a:link {
	color: #536376; text-decoration: underline;
}
#mainContent a:visited {
	color: #536376; text-decoration: underline;
}	
#mainContent a:active {
	color: #542224; text-decoration: underline;
}
#mainContent a:hover {
	color: #542224; text-decoration: underline;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#C1CAC0;
	color: #556655;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse */
	padding: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
	font: caption;
	text-transform: lowercase;
	font-weight: bold;
}
#footer a {
	color: #17391B; text-decoration: none;
}
#footer a:link {
	color: #17391B; text-decoration: none;
}
#footer a:visited {
	color: #17391B; text-decoration: none;
}
#footer a:active {
	color: #542224; text-decoration: none;
}
#footer a:hover {
	color: #542224; text-decoration: underline;
}

#subfooter { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#17391B;
	color: #556655;
} 
#subfooter p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse */
	padding: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
	word-spacing: 3px;
	font: caption;
}
#subfooter p.credit {
	text-align: center;
}
#subfooter a {
	color: #C1CAC0; text-decoration: none;
	font-weight: bold;
}
#subfooter a:link {
	color: #C1CAC0; text-decoration: none;
}
#subfooter a:visited {
	color: #C1CAC0; text-decoration: none;
}
#subfooter a:active {
	color: #C0C9D3; text-decoration: none;
}
#subfooter a:hover {
	color: #C0C9D3; text-decoration: underline;
}
#copyrightHolder {
	width: 980px;  
	background: #556655;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the div on the page */
}
#copyrightHolder p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse*/
	padding: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
	font: caption;
	color: #17391B;
}

.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;
}
