@charset "UTF-8";
/* CSS Document */
body  {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #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: #00502F;
}
.twoColFixLt #container { 
	width: 820px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px 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. */
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 226px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px 0px 15px 0px;
	margin: 0;
	text-align: center;
}
.logo a {
  display: block;
  background:url(../images/logo.png) no-repeat;
  width: 224px;
  height: 237px;
  text-indent: -9999px;
  margin-top: -10px;
}
#address {
	background:url(../images/address-bg.png) no-repeat;
	width: 197px;
	height: 112px;
	margin-left: 15px;
	margin-bottom: 30px;
	font-size: 13px;
	text-align:center;
	color: #fff;
}
#address address {
	padding-top: 30px;
	font-style:normal;
}

.red-border {
	background:url(../images/red-border.png) no-repeat;
	width: 130px;
	height:4px;
	margin: 20px auto 20px auto;
}
.twoColFixLt #mainContent { 
	float: right;
	padding: 0 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: center;
	width: 549px;
}
#intro {
	background: url(../images/top-bg.png) no-repeat;
	width: 549px;
	height:220px;
}
#intro p {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	font-style:italic;
	padding: 75px 65px 0 65px;
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
#store-hours {
	width: 549px;
	height: 190px;
	margin-top: 30px;
	font-size: 12px;
}
#pizzas {
	width: 549px;
	height: 236px;
	margin-top: 30px;
	font-size: 12px;
}
table .heading {
	background:url(../images/td-heading.png) no-repeat;
	height: 34px;
}
table th {
	color: #fff;
	font-size: 12px;
	text-align: center;
	width: 183px;
}
table td {
	padding: 3px 0 3px 0;
	text-align: center;
}
table .on {
	background: #e0ebe5;
}
table .hours {
	color: #98002E;
	font-weight: bold;
}
/* Type */
h3 {
	font-size: 14px;
	color: #98002E;
	font-style:oblique;
	padding: 0;
	margin: 0;
}
p {
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 20px;
}
.title {
    font-size: 14px;
	color: #98002E;
	font-style:oblique;
	font-weight: bold;
	padding: 0;
	margin: 0;
}
.pad {
	margin-top: 20px;
}