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

body {
	background-color:#fff;
	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: #333;
	font: 100% Helvetica, Verdana, Arial, sans-serif;
	}
	
#container { 
	width: 780px;  
	margin: 0 auto; /* the auto margins center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	}
	
#side {
	float: left; 
	width: 261px; 
	padding: 0px 20px 20px 0px;
	}

#main {
	margin: 0 0 0 281px; 
	padding: 0 ; /* 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 */
	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;
	} 
	
h2 { 
	font-family: "Book Antiqua", Arial, Verdana, Helvetica, sans-serif; 
	color:#937e7b; 
	letter-spacing: 0.2em; 
	text-align: left;
	}
	
h3 {
	color:#666;
	font-size: 1.0em;
	letter-spacing: 0.2em
	}

p { font-size: 0.8em; line-height: 140%;}

a { text-decoration:none; color: #788492; } 
a:hover { color:  #40536b; }
a:active { color: #666; }

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