/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
/* helps define the area to the left and right of the main part of the page */
body{
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #333333;
	line-height: 1.166;
	margin: 0px;
	padding: 0px;
	width: auto;
	halign: center;
	background-color: #FFFFF0;
	display: block;
}

/* control text headline layout throughout the site. any elements defined for all H tags will be inherited by that individual H tag unless a new value is named in the individual H tag style. new H tags can be added without limit */
h1, h2, h3, h4 {
	font-family: Arial,sans-serif;
	margin: 0px;
	padding: 0px;
}

h1{
 font-family: Arial,sans-serif;
 font-size: 16px;
 color: #8B3A3A;
 letter-spacing: 1px;
 font-weight: 600;
 padding-top: 5px;
}

h2{
	font-size: 20px;
	color: #333333;
	font-family: "Lucida Sans";
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
}

h3{
	font-size: 14PX;
	color: #A0410D;
	padding-left: 10px;
	line-height: 150%;
	padding-bottom: 0px;
}

h4{
 font-size: 12px;
 font-weight: 600;
 color: #4B4B4B;
 margin-left: 8px;
}

/* used primarily as an ID for h3 tag, within introduction section of homepage, to make special announcement such as upcoming art show, etc. */
#homepageANNOUNCEMENT{
	
	padding-top: 5px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 32px;
	margin-top: 16px;
	margin-bottom: 0px;
	border: 1px solid #A0410D;
	font-size: 14PX;
	font-weight:bolder;
	color: #A0410D;
	line-height: 110%;
	background-image:url(../images/test.gif);
	background-repeat: no-repeat;
}
/* defines the appearance of links within homepageANNOUNCEMENT */
#homepageANNOUNCEMENT a:link{
	color:#534741;
	
}
/* defines the appearance of links within homepageANNOUNCEMENT when visitor hovers mouse over link */
#homepageANNOUNCEMENT a:hover{
	color:#003399;
	
}
/* controls the display of previously visited links within homepageANNOUNCEMENT */

#homepageANNOUNCEMENT a:visited{
	color:#534741;
	
}
/* defines style of ordered - or bulleted - lists.  ul ul defines style of ordered list within order list and so forth */
ul{
	list-style-type: square;
	list-style-position: inside;
	text-indent: -13px !important; /*moz indent*/ 
text-indent: -15px; /*IE indent*/
	padding-left: 30px;
}
ul ul{
 list-style-type: disc;
}

ul ul ul{
 list-style-type: none;
}
		
/***********************************************/
/* Site-Wide Layout Divs                       */
/***********************************************/

/* defines area containing all site content */
#container {
	background-position: center;
	padding: 0px;
	background-color: #F1E4B3;
	margin-top: 0px;
	margin-left: auto;
	height: auto;
	border: 1px solid #3B3B3B;
	margin-right: auto;
	margin-bottom: auto;  
width:798px !important; /*moz width*/ 
width:800px; /*IE width*/
}

/* defines header area of the site containing top links, address and logo */
#masthead{
	background-image: url(../images/masthead-bg.gif);
	width:794px !important; /*moz width*/
	width:800px; /*IE width*/
	height:60px !important; /*moz width*/
	height:50px; /*IE width*/
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 2px;
}
/* defines text links in the masthead section */
#top-links {
	float: right;
	line-height: normal;
	width: 380px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 1px;
	padding-right: 5px;
	text-align: right;
}

/* defines the appearance of links within the top-links section */
#top-links a {
	font-size: 90%;
	padding: 0px 4px 0px 0px;
	letter-spacing: 1px;
	color: #ffffff;
	text-decoration: none;
}

/* defines the appearance of links within the top-links section when visitor hovers mouse over link */
#top-links a:hover {
background-color: #598527;
}

/* defines area containing store address in masthead section */
#address{
float: right;
	line-height: normal;
	width: 230px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 1px;
	padding-right: 5px;
	padding-top: 7px;
}

/* defines area immediately under masthead that contains main site navigation links */
#globalNav {
	height:34px !important; /*moz height*/
	height:30px; /*IE height*/
	background-image: url(../images/nav-bg-b.gif);
	background-color: #603913;
	background-repeat: repeat-x;
	width:794px !important; /*moz width*/
	width:800px; /*IE width*/
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 2px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #FFFFFF;
	border-top: 1px solid;
	border-top-color: #D4C173;
	border-bottom: 1px solid;
	border-bottom-color: #D4C173;
	
}

/* defines layout features of images used in globalNav DIV */
#globalNav img{
 display: inline;
}

/* defines main content section of each page, beginning immediately below globaNav DIV */
#content{
	float:left;
	width:794px !important; /*moz width*/ 
width:794px; /*IE width*/
	margin: 2px;
	padding-top: 0;
	padding-right: 2px;
	padding-bottom: 0;
	padding-left: 0px;
	height: auto;
}

/* defines outline around image in top right corner of page - after masthead and globalNav */
#main_image_section_wrapper{
	width:234px !important; /*moz width*/ 
width:232px; /*IE width*/
height:170px !important; /*moz width*/ 
height:172px; /*IE width*/
	padding: 4px;
	margin-top: 10px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 10px !important; /*moz margin-left*/ 
	margin-left: 8px; /*IE margin-left*/
	border: 1px solid #D4C173;
	float: left;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	
}

/* defines size of image in top right corner of page - after masthead and globalNav  */
.main_image_section{
width:234px !important; /*moz width*/ 
width:232px; /*IE width*/
height:170px !important; /*moz width*/ 
height:172px; /*IE width*/
}

/* defines area at bottom of page containing copyright statement */
#siteInfo{
	clear: both;
	font-size: 75%;
	color: #754C24;
	padding: 10px;
	margin-top: 0px;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D3D3D3;
	border-right-color: #D3D3D3;
	border-bottom-color: #D3D3D3;
	border-left-color: #D3D3D3;
	margin-left: 2px;
	background-color: #F7F0D4;
}
/***********************************************/
/* Homepage Specific Layout Divs               */
/***********************************************/
/* holds the top layer of text and main image on the homepage */
#introduction{
	float:left;
	width:794px !important; /*moz width*/ 
width:794px; /*IE width*/
	margin: 2px;
	padding-top: 0;
	padding-right: 2px;
	padding-bottom: 0;
	padding-left: 0px;
	height: auto;
}

/* outlines the text section of the homepage introduction DIV */
#introduction_section_wrapper{
	width:498px !important; /*moz width*/ 
	width:490px; /*IE width*/
	height:178px !important; /*moz width*/ 
	height:180px; /*IE width*/
	padding-top: 0;
	padding-right: 4px;
	padding-bottom: 0;
	padding-left: 4px;
	margin-top: 10px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 10px !important; /*moz margin-left*/ 
	margin-left: 8px; /*IE margin-left*/
	border: 1px solid #D4C173;
	float: left;
	font: Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	background-image:url(../images/top-gradient-bg.gif);
	background-repeat: repeat-x;
	
}
/* controls the headline within the homepage introduction DIV */
.introduction_section_header{
	padding-top: 8px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bolder;
	color: #754C24;
	border-bottom: 3px solid;
	border-bottom-color: #D4C173;
	
}
/* controls the text below the headline within the homepage introduction DIV */
.introduction_section_body{
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font:Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #534741;
	
}
/* controls the display of links within the introduction_section_body DIV */
.introduction_section_body a:link{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #440E62;
	text-decoration: none;
	text-decoration: underline;
}
/* controls the display of links, when the visitors cursor hovers over the link, within the introduction_section_body DIV */
.introduction_section_body a:hover{
	color: #003399;
	text-decoration: underline;
}
/* controls the display of previously visited links within the introduction_section_body DIV */
.introduction_section_body a:visited{
	font-size: 11px;
	color: #4A4A4A;
	text-decoration: none;
	text-decoration: underline;
}
/* defines the placeholder for homepage sections below the introduction and main image sections */
#content_section_wrapper{
	width:234px !important; /*moz width*/ 
width:232px; /*IE width*/
height:178px !important; /*moz width*/ 
height:180px; /*IE width*/
	padding-top: 0;
	padding-right: 4px;
	padding-bottom: 0;
	padding-left: 4px;
	margin-top: 10px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 10px !important; /*moz margin-left*/ 
	margin-left: 8px; /*IE margin-left*/
	border: 1px solid #D4C173;
	float: left;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	background-image:url(../images/top-gradient-bg.gif);
	background-repeat: repeat-x;
	
}
/* controls display of headline within content_section_wrapper DIV */
.content_section_header{
	padding-top: 8px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bolder;
	color: #754C24;
	border-bottom: 3px solid;
	border-bottom-color: #D4C173;
	
}
/* controls display of main text area within content_section_wrapper DIV */
.content_section_body{
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #534741;
	
}
/* controls the display of links within the content_section_body DIV */
.content_section_body a:link{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #440E62;
	text-decoration: none;
	text-decoration: underline;
}
/* controls the display of links, when the visitors cursor hovers over the link, within the content_section_body DIV */
.content_section_body a:hover{
	color: #003399;
	text-decoration: underline;
}
/* controls the display of previously visited links within the content_section_body DIV */
.content_section_body a:visited{
	font-size: 11px;
	color: #4A4A4A;
	text-decoration: none;
	text-decoration: underline;
}
/* controls the layout of the Quick Links section on the homepage */
.content_section_quicklinks{
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #534741;
	
}
/* controls the display of links within the ccontent_section_quicklinks DIV */
.content_section_quicklinks a:link{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #534741;
	padding-left:8px;
	line-height: 135%;
	text-decoration: none;
}
/* controls the display of links, when the visitors cursor hovers over the link, within the content_section_quicklinks DIV */
.content_section_quicklinks a:hover{
	color: #003399;
	font-size: 12px;
	font-weight: 700;
	padding-left:8px;
	line-height: 135%;
	text-decoration: underline;
}
/* controls the display of previously visited links within the content_section_quicklinks DIV */
.content_section_quicklinks a:visited{
	font-size: 12px;
	font-weight: 700;
	padding-left:8px;
	line-height: 135%;
	color: #4A4A4A;
	text-decoration: none;
}




/***********************************************/
/* Secondary Page Layout Divs               */
/***********************************************/

/* defines the placeholder for main content section of secondary pages */
#secondary_content_section_wrapper{
	width:498px !important; /*moz width*/ 
	width:492px; /*IE width*/
	height: auto;
	padding-top: 0;
	padding-right: 4px;
	padding-bottom: 0;
	padding-left: 4px;
	margin-top: 10px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 10px !important; /*moz margin-left*/ 
	margin-left: 8px; /*IE margin-left*/
	border: 1px solid #D4C173;
	float: left;
	font: Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	background-image:url(../images/top-gradient-bg.gif);
	background-repeat: repeat-x;
	
}
/* controls display of headline within secondary_content_section DIV */
.secondary_content_section_header{
	padding-top: 8px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bolder;
	color: #754C24;
	border-bottom: 3px solid;
	border-bottom-color: #D4C173;
	
}
/* controls display of main text area within secondary_content_section DIV */
.secondary_content_section_body{
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font:Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #534741;
	
}
/* controls the display of links within the secondary_content_section_body DIV */
.secondary_content_section_body a:link{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #440E62;
	text-decoration: none;
	text-decoration: underline;
}
/* controls the display of links, when the visitors cursor hovers over the link, within the secondary_content_section_body DIV */
.secondary_content_section_body a:hover{
	color: #003399;
	text-decoration: underline;
}
/* controls the display of previously visited links within the secondary_content_section_body DIV */
.secondary_content_section_body a:visited{
	font-size: 11px;
	color: #4A4A4A;
	text-decoration: none;
	text-decoration: underline;
}
/* defines the placeholder for Helpful Links section of secondary pages */
#side_navigation_section_wrapper{
	width:234px !important; /*moz width*/ 
width:234px; /*IE width*/
	padding: 4px;
	margin-top: 10px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 10px !important; /*moz margin-left*/ 
	margin-left: 8px; /*IE margin-left*/
	border: 1px solid #D4C173;
	float: left;
	font: Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	background-image:url(../images/top-gradient-bg.gif);
	background-repeat: repeat-x;
	
}
/* controls display of headline within side_navigation_section_wrapper DIV */
.side_navigation_section_header{
	padding-top: 8px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bolder;
	color: #D4C173;
	border-bottom: 3px solid;
	border-bottom-color: #754C24;
	
}
/* controls display of main text area within side_navigation_section_wrapper DIV */
.side_navigation_section_body{
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font:Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #534741;
	
}
/* controls the display of links within the side_navigation_section_body DIV */
.side_navigation_section_body a:link{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #004FAA;
	text-decoration: none;
	margin-left: 8px;
	font-weight:700;
	line-height: 150%;
}
/* controls the display of links, when the visitors cursor hovers over the link, within the side_navigation_section_body DIV */
.side_navigation_section_body a:hover{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #004FAA;
	text-decoration: underline;
	margin-left: 8px;
	font-weight:700;
	line-height: 150%;
	
}
/* controls the display of previously visited links within the side_navigation_section_body DIV */
.side_navigation_section_body a:visited{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #004FAA;
	text-decoration:inherit;
	margin-left: 8px;
	font-weight:700;
	line-height: 150%;
}
/* defines the placeholder for primary page image on secondary pages */
#content_image_section_wrapper{
	width:234px !important; /*moz width*/ 
width:232px; /*IE width*/
height:170px !important; /*moz width*/ 
height:172px; /*IE width*/
	padding: 4px;
	margin-top: 4px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 0px !important; /*moz margin-left*/ 
	margin-left: 0px; /*IE margin-left*/
	border: 1px solid #754C24;
	float: left;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	
}
/* defines the area size for primary page image on secondary pages */
.content_image_section{
width:234px !important; /*moz width*/ 
width:232px; /*IE width*/
height:170px !important; /*moz width*/ 
height:172px; /*IE width*/
	
}
/* defines the area for image collections within main content section of secondary pages */
#gallery_section{
	width:100px !important; /*moz width*/ 
width:96px; /*IE width*/
height:160px !important; /*moz height*/ 
height:160px; /*IE height*/
	margin-top: 4px;
	margin-right: 20px !important; /*moz margin-right*/
	margin-right: 0px; /*IE margin-right*/ 
	margin-bottom: 0px !important; /*moz margin-bottom*/
	margin-bottom: 0px; /*IE margin-bottom*/ 
	margin-left: 0px !important; /*moz margin-left*/ 
	margin-left: 0px; /*IE margin-left*/
	float: left;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	
}
/* defines the placeholder for image collections within gallery_section of secondary pages */
#gallery_image_section_wrapper{
	width:100px !important; /*moz width*/ 
width:96px; /*IE width*/
height:80px !important; /*moz height*/ 
height:76px; /*IE height*/
	padding: 4px;
	margin-top: 4px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 0px !important; /*moz margin-left*/ 
	margin-left: 0px; /*IE margin-left*/
	border: 1px solid #754C24;
	float: left;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	
}
/* defines the size of images in the image collections within gallery_image_section_wrapper on secondary pages */
.gallery_image_section{
width:100px !important; /*moz width*/ 
width:96px; /*IE width*/
height:80px !important; /*moz height*/ 
height:76px; /*IE height*/
	
}
/* defines the placeholder for the image names within gallery_section of secondary pages */
#gallery_name_section_wrapper{
	width:100px !important; /*moz width*/ 
width:96px; /*IE width*/
height:22px !important; /*moz height*/ 
height:18px; /*IE height*/
	padding: 4px;
	margin-top: 4px;
	margin-right: 10px !important; /*moz margin-right*/
	margin-right: 8px; /*IE margin-right*/ 
	margin-bottom: 10px;
	margin-left: 0px !important; /*moz margin-left*/ 
	margin-left: 0px; /*IE margin-left*/
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #435D36;
	background-color: #ffffff;
	
}
/* controls the display of image name text within gallery_section of secondary pages */
.gallery_name_section{
width:100px !important; /*moz width*/ 
width:96px; /*IE width*/
height:22px !important; /*moz height*/ 
height:18px; /*IE height*/
text-align:center;
	
}