@charset "utf-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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: #3A0C01;
}
h3 {
	color: #3A0C01;
	padding-left: 10px;
}
a:link, a:visited {
	color: #3A0C01;
}
a:hover, a:active {
	color: #FF7800;
}

.twoColFixLtHdr #container { 
	width: 800px;  
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #3A0C01; 
	height: 125px;
	padding: 0 0 0 20px;  /* 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. */
} 
.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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background: url(../graphics/main_web_logo.png) bottom left no-repeat;
	height: 75px;
	width: 301px;
	float: left;
	text-indent: -9999px;
}
.twoColFixLtHdr #header ul {
	list-style: none;
	background: #FFFFFF url(../graphics/topnav_corner.png) bottom left no-repeat;
	margin: 0;
	padding: 0 10px 0 30px;
}
.twoColFixLtHdr #header ul li{
	float: left;
	margin: 0;
	padding: 4px 7px;
}
.twoColFixLtHdr #header ul a{
	text-decoration: none;
	text-indent: -9999px;
	display: block;
	height: 11px;
	font-size:5px;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 38px 10px 15px 10px;
}

.twoColFixLtHdr #innerContainer {
	border-left: 1px solid #3A0C01;
	border-right: 1px solid #3A0C01;
}

.twoColFixLtHdr #mainContent { 
	margin: 10px 10px 10px 270px; /* 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. */
	background: #EFEDE7;
	text-align: justify;
} 
.twoColFixLtHdr #mainContent_search { 
	margin: 10px; /* 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. */
	background: #EFEDE7;
} 

.twoColFixLtHdr #mainContent h2, #mainContent_search h2{ 
	margin: 0;
	padding: 0;
	text-indent: -9999px;
	height: 28px;
}
.twoColFixLtHdr #mainContent p, #mainContent_search p{
	margin: 0;
	padding: 10px 20px;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../graphics/pagefooter.png) top left no-repeat; 
	height: 25px;
} 
.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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-indent: -9999px;
}
.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;
}

/* Header Nav hover effects and such  */
a.headnav_home:link, a.headnav_home:visited {
	width: 43px;
	background: url(../graphics/topnav_home.png) 0 0 no-repeat;
}
a.headnav_home:hover, a.headnav_home:active {
	width: 43px;
	background: url(../graphics/topnav_home.png) 0 -11px no-repeat;
}
a.headnav_about:link, a.headnav_about:visited {
	width: 72px;
	background: url(../graphics/topnav_about.png) 0 0 no-repeat;
}
a.headnav_about:hover, a.headnav_about:active {
	width: 72px;
	background: url(../graphics/topnav_about.png) 0 -11px no-repeat;
}
a.headnav_art:link, a.headnav_art:visited {
	width: 112px;
	background: url(../graphics/topnav_viewart.png) 0 0 no-repeat;
}
a.headnav_art:hover, a.headnav_art:active {
	width: 112px;
	background: url(../graphics/topnav_viewart.png) 0 -11px no-repeat;
}
a.headnav_serv:link, a.headnav_serv:visited {
	width: 65px;
	background: url(../graphics/topnav_services.png) 0 0 no-repeat;
}
a.headnav_serv:hover, a.headnav_serv:active {
	width: 65px;
	background: url(../graphics/topnav_services.png) 0 -11px no-repeat;
}
a.headnav_contact:link, a.headnav_contact:visited {
	width: 88px;
	background: url(../graphics/topnav_contact.png) 0 0 no-repeat;
}
a.headnav_contact:hover, a.headnav_contact:active {
	width: 88px;
	background: url(../graphics/topnav_contact.png) 0 -11px no-repeat;
}

#quicksearch {
	float: right;
	width: 150px;
	margin: 0;
	padding: 5px 5px 0 0;
}
#quicksearch img {
	margin: 0;
	padding-top: 5px;
}
#quicksearch form {
	padding: 0;
	margin: 0;
}
#quicksearch select {
	width: 135px;
	font-size: 9px;
	margin: 4px 2px;
}

.thumbnails {
	margin: 0 auto;
	padding: 15px 2px;
	float:left;
	width: 125px;
	height: 175px;
	text-align: center;
	border-bottom: 1px solid #FFFFFF;
	font-size: 90%;	/* that is, 90% of the 80% set for the body */
}
.thumbnails .thumbimg {
	width:125px;
	height: 125px;
}
.thumbimg img {
	border: 0;
}

.detailpage_thumbnails {
	margin: 0 auto;
	text-align: center;
	padding: 15px 0;	
}
.detailpage_thumbnails .thumbimg {
	margin: 0 auto;
	width:125px;
}
.detailpage_thumbnails .thumbimg img {
	border: 0;
}

#sidebar1 img {
	padding: 0 3px 8px 3px;
	border: 0;
}

.paging {
	border-collapse: collapse;
	margin: 0 auto;
	color:#999999;
}
