@charset "utf-8";
/* CSS Document */
/* TWO COLUMN LAYOUT */

body {font: 100.01%  Verdana, Geneva, sans-serif;
	font-size: 1em;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-repeat: repeat;
	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 */
	background-color: #FF9; 
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	}
#main_wrapper {
	min-width: 700px;
	max-width: 960px;
	background-image:url(../images/wcf-bg.gif);
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
}
#header {/* 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. */
	background-color: #6bb3af;	
	padding: 1em 1em;
	background-image:url(../images/bodega960.jpg);
	background-repeat:no-repeat;
	background-position:center;
	overflow:hidden;
}

#right_info {
	margin:2em 10px 0px 10px; 
	width:210px;
	float: right;
	background-position:center;
	}
	
#right_info p {text-align:center;	
}
.center_img { text-align:center;	
}
#left_content_outer{
	padding: 1em 1em; /* creates space between the box and the content */
	float: right;
	width: 60%;}
	
	
#left_content_inner { 
	padding:.5em .5em .5em .5em; /* creates space between the box and the content */
	}
#left_content_inner img{ float:left;
	padding-right:10px;}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #fff;
} 
#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 */
	
	}

#footer_inner {
	padding:.5em 1em; /* creates space between the box and the content */
	text-align:center;
	}
	
