@charset "UTF-8";
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #e3d1b6;
	background-attachment: fixed;
	background-image: url(art/pizzaBG.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
.oneColFixCtrHdr #container {
	width: 980px;  /* 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 */

	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {

	padding: 0;  /* 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. */
}
.oneColFixCtrHdr #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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-image: none;
	background-repeat: no-repeat;
	color: #600;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px;
	border: 1px solid #000000;
	background-color: #fdf7e5;
}
.oneColFixCtrHdr #footer {
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fcf6e4;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	text-align: center;
}
.oneColFixCtrHdr #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 */
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #600;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #600;
}
ul#red { margin:0; padding:0; list-style-type:none; }
ul#red li { position:relative; float:left; border-top:4px solid #edcbcb; margin-right: 15px; padding-right: 20px; padding-top: 5px;}
ul#red .current { border-top:4px solid #953434;}
ul#red li:hover { border-top:4px solid #953434;}
ul#red li a { padding:2px 2px; text-decoration:none; font:bold 12px Verdana, Georgia, "Times New Roman", Times, serif; color:#953434;}
ul#red li a:hover { color:#b17878; border:none; }
ul#red li span{ display:none; position:absolute; top:20px; left:2px; width:160px; font:normal 9px Verdana, Georgia, "Times New Roman", Times, serif;  line-height: 15px;}
ul#red li a:hover span {margin-top: 7px; display:block; color: #b17878;}

.menHead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.2em;
	color: #600;
	font-weight: bold;
	font-variant: small-caps;
	text-align: center;
}
.menItem {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	font-variant: small-caps;
}
.menDescrip {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #2A5580;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #2A5580;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #2A5580;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #2A5580;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #164619;
}
