/* Main style sheet for dining site */
body  {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 0; 
	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: #000000;
	background-color: #DDD9C7;
}

td,th {
	font-size: 14px;
	color: #000000;
	}
a:link {
	color: #000000;
	}
a:visited {
	color: #993300;
	}
a:hover {
	color: #D86C2C;
	}

h1 {
	font-size: 125%;
	background: url(../images/hdr_background.jpg);
	color: white;
	margin-bottom: 15px;
	margin-top: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	letter-spacing: 1.75px;
	border: 1px groove black;
	padding: 3px 8px;
	width: 50%;
	}
	
h2 {
	color: #92422b;
	}
h3 {
	color: #848247;
	margin: 0;
	}
p {
	line-height: 1.5;
	text-align: center;
	}	
#navcontainer table {
	margin-left: 0;
	padding:0;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: right;
	border-top: 1px solid white;
	}
#navcontainer a {
	display: block;
	padding: 4px;
	background-color: #675d39;
	border-bottom: 1px solid #EEE;
	}

#navcontainer a:link {
	color: #EEE;
	text-decoration: none;
	}
#navcontainer a:visited {
	color:#B4B4B4;
	text-decoration: none;
	}

#navcontainer a:hover {
 	background-color: #92422b;
	color: #FFF;
	}

/* CSS for navigation at bottom of page */	
#bottomnav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-align:center;
	padding-bottom: 10px;
	}

.twoColLiqLtHdr #container {
	width: 100%;
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #DDD9C7;
	background:url(../images/sidebar_bkgd.jpg) repeat-y; 
	padding-bottom: 10px;
} 
.twoColLiqLtHdr #header { 
	background: #DDDDDD; 
	padding: 0 0px; 
	background:url(../images/new-home-background.jpg) repeat-x;
	margin-bottom: 8px;
} 
.twoColLiqLtHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqLtHdr #sidebar1 {
	float: left;
	width: 132px;
	padding: 0px 0; /* top and bottom padding create visual space within this div  */
	background-color: #848247;
}
.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
	margin-left: 10px; 
	margin-right: 10px;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqLtHdr #mainContent { 
	margin: 0 15px 0px 148px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	background:#DDD9C7;
	min-width: 600px;
} 
.twoColLiqLtHdr #footer {
	width: 100%;
	padding: 8px 0px 5px 0px; 
	margin: 0;
	background:#DDD9C7;
	border-top-style: solid;
	border-top-color: #848247;
	border-top-width: 15px;
} 

.twoColLiqLtHdr #footer p {
	margin: 0; 
	padding: 5px 0; 
}

#product_header {
	text-align: left;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 130%;
	margin: 0 2% 5px 0;
	}

#product_image_container {
	float: left;
	margin-left: 2%;
	margin-right: 15px;
}
#product_image img {
	border: 1px inset black;
	float: left;
	margin: 0 15px 5px 0;
	max-width: 360px;
	}	
#icons {
	margin: auto;
}
#icons img{
	border: none;
	margin: 0px 12px 8px 0;
}

#product_details {
	width: 27%;
	float: left; 
	border: 3px ridge #713800;
	font-size: 90%;
	background-color: #FAF0E6;
	text-align: center;
	padding-bottom: 10px;
	}	
#product_details p {
	padding: 0px 8px 0px 8px;
	margin-top: 0;
	line-height: 1;
	}
#product_details h3 {
	background-image:url(../images/wood.jpg);
	color: white;
	text-align: center;
	padding: 4px 0 4px 0;
	margin-top: 0px;
	font-size: 130%;
	letter-spacing: 2px;
	margin-bottom: 10px;
	}

/* Create a border for images on gallery pages and 
	remove the underline for the links */
#imgborder img{
	border-style:groove;
	border-color: #993300;
	border-width: thin;
      }
#imagelinks a{
	text-decoration: none;
	}	
	
/* Float images right or left */	
.floatRight {
	float: right;
	margin: 0px 0px 10px 8px;}
.floatLeft {
	float: left;
	margin: 0px 8px 10px 0px;}
	
.floatHeadingLeft {
	width: 95%;
	float: left;
	margin-bottom: 10px;
	}
	
.clearthefloats {clear:both;}

/* Center details on page */
p.centertext {padding-top:6em;}

form.background {
	margin:0px;
	padding:0;
	text-align:center;}
	
/* CSS for design collections section of main page */	
#related_items {
	width: 90%;
	background-color: #FAF0E6; 
	border: 2px solid #993300;
	margin: 15px 0 10px 15px;
	padding: 5px 20px;
	float: left;
	}
#related_items_header {
	width: 100%;
	background-color: #92422b;	
	margin: 5px 0;
	border: 1px ridge black;
	}
#related_items h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	letter-spacing: 1.7px;
	font-size: 150%;
	padding: 5px 0;
	margin: 0;
	color: white;
	text-align: center;
	}	
#related_images p {
	text-align: center;
}
#related_items_float {
	float: left;
	margin: 0 2.5% 10px 2.5%;
	}
#related_items_float img {
		border: 2px ridge #92422b;
}		
#related_items a {
	text-decoration:none;
	font-size:90%;
}
#related_items a:link {
	color: #B35900;
}
#related_items a:hover {
	text-decoration:underline;
}	
/* Disclaimer on form */ 
#disclaimer {font-size:10px;}

/* Styles for table on about page */
#storeinfo {
	font-weight: bold;
	text-align: center;
	}
div#choices form { 
	text-align: center; 
	}
div#choices form select {
	width: 94%;
	margin: 0 10px 0 8px;
}

.small_image {
	float: left;
	margin: 5px 5px 5px 0;
}
.small_image a:link{
	border: none;
	}
.gallery_container {
	width: 100%;
	margin-left: 4%;
}
.gallery_container h1{
	text-align: left;
	}

.gallery_page_navigation {
	margin-top: 10px;
	text-align: center;
	}
.gallery {
	float: left;
	margin: 0 25px 15px 0;
	text-align: center;
	font-size: small;
	height: 240px;
	width: 200px;
	border: 1px solid #92422b;;
	padding: 10px 10px 15px 10px;
	background-color: white;
}
.gallery a:hover{
	text-decoration: underline;
	}	
.gallery a{
	text-decoration: none;
	}
.gallery img {
	border: none;
	}
#index_gallery {
	float: left;
	margin: 0 15px 10px 0;
	text-align: center;
	font-size: small;
}
#index_gallery a:hover{
	text-decoration: underline;
	}	
#index_gallery a{
	text-decoration: none;
	line-height: 1.75em;
	}
#index_gallery img {
	border: none;
	height: 185px;
	width: 185px;
	border: 1.8px ridge #92422b;
	}
img.photo_gallery {
	float: left;
	margin: 0 15px 10px 0;
	height: 150px;
	width: 225px;
	border: 1.8px ridge #92422b;
}

.alignLeft p {
	text-align:left;
	}
.faqsLinks {
	font-size: medium;
	}
#testimonials hr {
	margin: 10px 0;
	}
p.custName {	
	font-weight: bold;
	margin-top: 8px;
	}
#printedHeader {
	display: none;
	}	
#top_index {
	float: left;
	margin-bottom: 10px;
	width: 95%;
}
#main_index_pic {
	float: left;
	margin: 0 30px 15px 0;
}

#main_index_text p {
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: left;
}
	
#main_index_text h2 {
	margin: 0;
	text-align: left;
	font-size: 130%;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#custom {
	margin-left: 4%;
	}
#contact {
	width:  80%;
	margin: 0 15px 0px 148px;
	text-align: left;
	}
#group_buttons {
	width: 130px;
	float: left;
	}
#container {
	width: 100%;
	}	
#left_side {
	width: 65%;
	float: left;
	margin-right: 20px;
	}
#right_side {
	width: 30%;
	float: left;
	}		
.spam_check {
	display: none; 
	}	
#links li{
	line-height: 1.5em;
}	