body {
	background-color: #af9a6f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}
#container { 
	width: 793px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #DDDDDD; 
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 125px; /* 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: #96c9ff;
	padding-top: 15px;
	padding-right: 8px;
	padding-bottom: 15px;
	padding-left: 8px;
}
#sidebar1 p {
	color: #96c9ff;
}

#mainContent { 
	margin: 0 0 0 150px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	text-align: center;
	width: 793px;
} 
#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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 8px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.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;
}
h1        { color: #003366; font-size: 16px; font-family: Georgia, "Times New Roman", Times, serif; margin-top: 12pt }
h2        {
	color: #003366;
	font-size: 13px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 12pt;
	font-style: italic;
}
h1.home        {
	color: #003366;
	font-size: 24px;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 6pt;
	line-height: 36px;
}
h2.home        {
	color: #003366;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 6pt;
	font-style: normal;
	line-height: 24px;
}
h3     {
	color: #FF9A00;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
p       {
	color: #000000;
	font-size: 12px;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 12px;
	margin-bottom: 0px;
}
p.menu      {
	color: #000000;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 2px;
	margin-bottom: 0px;
}
h3.menu      {
	margin-top: 3px;
	margin-bottom: 0px;
}
h3.nospace      {
	margin-top: 0px;
	margin-bottom: 0px;
}
h2.menu      {
	margin-top: 3px;
	margin-bottom: 3px;
}
a:link, a:visited     { color: #990000; font-weight: bold; text-decoration: underline}
a:hover      { color: #ff9933; text-decoration: none }
ul       {
	padding: 0px;
	margin-top: 6px;
	margin-bottom: 0px;
}
li       {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: square;
	padding: 0px;
	margin: 0px;
}
li.links       {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: square;
	margin: 10px;
}
li.left       {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: square;
	padding: 0px;
	margin-top: -2px;
	margin-left: 5px;
	margin-bottom: 0px;
	left: 0px;
}

input.test {
	display: none;
}

/* Containers for the Photo Gallery 
div.catcontainer {
	background-color: transparent;
	margin-bottom: 0px;
	margin-top: 0px;
	padding: 0px;
	clear: none;
	float: left;
}*/
div.catcontainer {
	margin-bottom: 0px;
	margin-top: 0px;
	border-bottom-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #CCCCCC;
	padding-bottom: 15px;
}
div.spacer {	 
	clear: both;
}
div.gallerylist {
	float: left;
	width: 175px;
	height: 160px;
	color: navy;
	font-size: 10px;
	font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
	padding-top: 15px;
	text-align: center;
	padding-bottom: 15px;
}
div.catalog {
	float: left;
	width: 175px;
	height: 170px;
	text-align: center;
}
div.catalog p {	 
	text-align: center;
	margin-bottom: 2px;
	font: bold 0.8em;
}
div.catalog img {	 
	text-align: center;
	font: bold 0.8em;
}
/* end containers for the photo gallery */