@charset "utf-8";
/* CSS Document */
body  {
	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;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #5628b2;
}
.main #container {
	width: 960px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #B6B1FE;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.main #header {
	background-color: #2dcc4c;
	height: 150px;
	padding-top: 0;
	padding-bottom: 0;
} 

.main #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#header table tr #td1, #td2, #td3, #td4, #td5 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
}
#header table {
	height: 130px;
}
#menu {
	height: 40px;
}
.main #mainContent {
	margin-top: 30px;
	margin-bottom: 0;
	width: 920px;
	padding-right: 20px;
	padding-left: 20px;
} 
#mainContent table tr #td6 {
	font-size: 18px;
	background-color: #CCDB39;
	border: 1px solid #FF0;
	padding-right: 10px;
	padding-left: 10px;
	width:420px;
	height:180px;
}

#mainContent #p1, #p2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	background-color: #CCDB39;
	border: 1px solid #FF0;
	padding-right: 5px;
	padding-left: 5px;
	text-align: center;
}
.main #footer {
	background-color: #31b24a;
	width: 960px;
} 

#footer a {
	color: #000;
	text-decoration: none;
}
#hours  {
	width: 200px;
	float: left;
	margin-left: 110px;
	height: 120px;
}
#payment  {
	width: 200px;
	margin-left: 690px;
	height: 120px;
}
.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;
}
