@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	background-image: url("bgTexture.jpg");
	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: #000000;
}

h1 {
	text-align: center;
}

p {
	font-family: "Trebuchet MS", Halvetica, freesans, sans-serif;
	text-indent: 2em;
}

iframe {
	border: 2px black outset;
	-moz-border-radius: 6px 6px 6px 6px;
}

form {
	margin-left: 12em;
}

.twoColElsLtHdr #container { 
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: url("contentBG.jpg");
	margin: 0.5em auto; /* 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. */
	/*-moz-opacity: .8;  Might Add that back later. Need BG image first */
	-moz-border-radius: 12px 12px 12px 12px;
	z-index:0;
} 
.twoColElsLtHdr #header { 
	background:url("headerBG.jpg");
	padding: 0 10px;  /* 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. */
	text-align: center;	
	border-bottom: 1px black solid;
	border-top: 1px black solid;
	z-index: 1;
	-moz-border-radius: 12px 12px 0px 0px;
} 

.twoColElsLtHdr #header h1 {
	font-family: Haettenschweiler, Arial, sans-serif;
	font-size: 370%;
	color: #1144BB;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 10px;
	margin-bottom: 0px;
}

.twoColElsLtHdr #header h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 150%;
	text-align: center;
	color: black;
	margin: 0px;
	padding: 0px 0px;
}

.twoColElsLtHdr #header h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 120%;
	color: black;
	margin: 0px;
	margin-bottom: 1em;
}

.twoColElsLtHdr #header p {
	margin:0px;
	padding:0px;
	text-indent: 0em;
	font-weight: bold;
}

.twoColElsLtHdr #header div {
	color: red;
	width: 10em;
	height: 4em;
	font-size: 135%;
	margin: 0px;
	padding: 0px;
	margin-top: 1em;
	text-align: center;
}

.smallHeader {
	font-size: 50%;
	color: black;
	margin:0px;
	padding:0px;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 12em; /* since this element is floated, a width must be given */
	background: url("headerBG.jpg"); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px; /* top and bottom padding create visual space within this div */
	margin-top: -1px;
	margin-left: -1px;
	margin-right: 1.5em;
	margin-bottom: .5em;
	border: 1px black solid;
	border-top: 0px black solid;
	z-index: 10;
	font-family: Georgia, "Times New Roman", Times, serif;
	-moz-border-radius: 0px 0px 6px 6px;
}

.twoColElsLtHdr #sidebar1 div {
	margin-bottom: -2.5em;
}

.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	margin: 0 3em 0 3em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
}

.twoColElsLtHdr h1 {
	font-size: 180%;
	font-weight: 600;
}

.twoColElsLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url("contentBG.jpg");
	text-align: center;
	font: 60% monospace, serif
} 
.twoColElsLtHdr #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 */
}

/* Miscellaneous classes for reuse */
.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;
}    

/* This is the button menu stylings */
#buttonMenu li {
	list-style-type: none;
	width: 10em;
	text-align: center;
	margin-left: -1.5em;
	padding-bottom: .5em;
}

#buttonMenu a {
	text-decoration: none;
	color: black;
	display: block;
	border: 2px blue outset;
	-moz-border-radius: 3px 3px 3px 3px;
	background-color: #CCCCFF;
}
	
#buttonMenu a:hover {
	border: 2px blue inset;
}
/* End of button menu style */

/* Beginning of the style for menu items */
.menuItem {
	margin: 0 auto;
	margin-bottom: 5em;
	width: 32em;
}
.menuItem ul {
	margin: 1em 1.4em 6em;
	padding: 0px;
}
.menuItem h2 { /* Name Of Comments */
	font-size: 140%;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0px;
}

.menuItem p { /* Description of Pizza */
	margin: 0px;
	font-size: 100%;
	font-weight: 400;
	text-indent: 0px;
}
.menuItem li { /* Size of the Pizza Price */
	list-style-type: none;
	display: block;/*
	padding: 0 .1em 0 .25em;*/
	float: left;
	width: 18em;
	text-align: center;
	font-size: 80%;
}

.menuItem h2 .popup {
	display: none;
}
.menuItem h2:hover .popup {
	display: block;
	position: absolute;
	top: 0em; left: 5em;
}
/* End of the menu (food menu) style */
/* Beginning of Custom Pizza Style */
#sidebarIndent div {
	margin-left: 10em;
	border: 1px red solid;
	display: block;
}
#customPizza {
	margin-left: 10em;
	text-align: center;
	font-family: "Trebuchet MS", Halvetica, freesans, sans-serif;
}
#customPizza th {
	font-size: 100%;
	width:7em;
}
.tableDivider td { /* To be placed on element below where you want it to go. */
	border-top: 1px black dotted;
}
.tableDivider th {
	border-top: 1px black dotted;
}
/* End of Custom Pizza Stlye */

/* Beginning of Topping List Style */
#toppingList ul {
	margin: 0px 2.1em;
	padding-bottom: 10em;
}
#toppingList li {
	width: 10em;
	font-family: "Trebuchet MS", Halvetica, freesans, sans-serif;
	font-size: 100%;
	list-style-type: none;
	text-align: center;
	float: left;
	margin: 0px;
	padding: 0px .2em 0px;
}

/* Beginning of Side Items Style */
.sideMenu {
	margin: 0em 3.8em;
}
.sideMenu h2 {
	font-size: 150%;
	font-family: "Trebuchet MS", Halvetica, freesans, sans-serif;
	text-decoration: underline;
	margin: 0px;
}
.sideMenu h3 {
	font-size: 100%;
	margin: 1em 0em 0em;	
}
.sideMenu p {
	font-family: Georgia, "Times New Roman", Times, serif;
	float: left;
	width: 20em;
	margin: 0em;
	padding-bottom: 0em;
	text-indent: 0em;
}
.sideMenu ul {
	margin: 0px;
	margin-bottom: 4.5em;
}
.sideMenu li {
	list-style-type: none;
	text-align: right;
	float: right;
	width: 15em;
	margin: 0px;
	margin-bottom: 1em;
	font-size: 80%;
}
/* End of Side Item Style */

/* Beginning of Drink Style */
.drinkMenu {
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0em 3.8em;
}
.drinkMenu ul {
	margin: 0px;
	padding: 0px;
}
.drinkMenu h2 {
	font-size: 150%;
	text-decoration: underline;
}

.drinkMenu li {
	list-style-type: none;
	font-size: 100%;
}
.drinkDesc {
	width: 20em;
	float: left;
}
.drinkPrice {
	width: 5em;
	float: right;
	font-family: Verdana, Arial, Helvetica, san-serif;
	text-align: right;
	font-size: 80%;
	font-weight: normal;
}
/* End of Drink Style */
/* Beginning of Contact Information Style */
.contactInfo p {
	text-align: center;
}
/* End of Contact Information Style*/

.headingImage {
	margin: 1.5em 3.02em 1em;
	border: 1px black solid;
}

form {
	margin-left: 12em;
}
