@charset "UTF-8";/* CSS Document */body {	font: 100% Verdana, Arial, Helvetica, sans-serif;	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 */	background-image: url(../images/BG_PIXEL.jpg);	background-repeat: repeat-x;	background-position: center top;	}#container {	width: 1200px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	border: 0px solid #000000;	text-align: left; /* this overrides the text-align: center on the body element. */}#header {	background: #DDDDDD url(../images/home_base_01.jpg);	padding: 0 20px 0 0px;  /* 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. */	height: 55px;}#mainContent {	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	background: #FFFFFF;}#navmenu {	background: #FFFFFF url(../images/home_base_02.jpg);	width: 341px;	height: 416px;	float: left;}#toprightimage {	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	width: 859px;	height: 416px;	float: left;}#middle {	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	background: #FFFFFF url(../images/home_base_04.jpg);	width: 1200px;	min-height: 300px;	float: left;}#leftcontent {	padding: 0 0px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	width: 291px;	float: left;	margin-right: 0px;	background-repeat: no-repeat;	min-height: 286px;	margin-left: 80px;}#rightcontent {	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	width: 650px;	float: left;	margin-left: 60px;}#footer {	background:#000000 url(../images/home_base_05.jpg);	height: 80px;	width: 1200px;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	float: left;}#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 */}#base {	height: 150px;	width: 100%;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	float: left;	background-color: #D8D5CC;	border-top-width: 1px;	border-top-style: solid;	border-top-color: #beb2a6;}#addresstext {	height: 100px;	width: 150px;	position: relative;	left: 510px;	font-family: Geneva, Arial, Helvetica, sans-serif;	font-size: 12px;	color: #333333;	padding: 0px 20px 20px;}#sundayspecial {	height: 160px;	width: 130px;	position: relative;	left: 660px;	font-family: Geneva, Arial, Helvetica, sans-serif;	font-size: 12px;	color: #FFFFFF;	padding: 0px 20px 20px;	top: 150px;}#nav {	height: 200px;	width: 200px;	position: relative;	left: 100px;	font-family: Geneva, Arial, Helvetica, sans-serif;	font-size: 13px;	color: #333333;	padding: 0px;	margin: 0px;	top: 200px;	}.button {	font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 11px;	color: #FFFFFF;	text-decoration: none;	display: block;	border-top: 1px solid #FFFFFF;	border-right: 0px solid;	font-weight: bold;	cursor: hand;	padding-top: 5px;	padding-left: 10px;	height: 20px;	/* for IE */  filter:alpha(opacity=80);  /* CSS3 standard */  opacity:0.8;}a.button:hover {	color: #333333;	display: block;	border-left-width: 3px;	border-left-style: solid;	border-left-color: #FFFFFF;	padding-top: 5px;	padding-right: 0px;	padding-bottom: 0px;	padding-left: 10px;	background-color: #FFFFFF;}
