@charset "UTF-8";
/* CSS Document */

body {
background-color:#2d2a24;
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: #e5e5e5;*/
	color: #ccc;
	font-family: Helvetica, Verdana, Arial, Geneva, sans-serif;
	font: 100% Helvetica, Verdana, Arial, sans-serif;
	height: 101%;
	}
	
#container { 
	width: 780px;  
	margin: 0 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. */
	} 

#header {
	margin-top: 15px;
	
	/*margin-left: 163px;*/
	}
	
#side {
	float: left; /* since this element is floated, a width must be given */
	width: 261px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 20px 0px;
}
#main {
	margin: 0 0 0 281px; /* 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 ; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
}
.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; 
	}
#footer { padding: 0; } 
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #937e7b;
	text-align: right;
	} 
	
h1 { font-family: "Book Antiqua", Arial, Verdana, Helvetica, sans-serif; color:#937e7b; letter-spacing: 0.15em; text-align: left;}
.article_title {
	font-size: 22px; 
	font_weight: bold;
	color: #bec9d7;
	letter-spacing: 0.15em;
	}
	
h2 {color:#666;font-size:110%;letter-spacing: 0.15em; }
	
/*h3 {color:#c2ccd6;/*font-size: 0.9em;letter-spacing: 0.1em; }*/
p { font-size: .86em;

	line-height: 130%;}

a { text-decoration:none; color: #85a29c; } 
a:hover { color: #87c1b9;}
a:active { color: #52847d; }

.stores_headline {
	color: #000;	
	background-color: #c3b9af;
	font_weight: bold;
	text-align: center; 
	letter-spacing: 0.1em;
	}
.store_info { font-size: .82em;}

#three_col {
	
	float:left;width:260px;
	
}
/*
.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:left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}*/
.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;
}	