/* 
Alice Uhl
CIS 242 Final Project, Winter 2015
Style Sheet
*/
body {
	margin: 0 auto;
	max-width: 1200px;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}

#wrapper {
	width: 100%;
	min-width: 1000px;
	max-width: 1200px;
	background-color: #888;
}
/* Header 
---------------------------*/
header {
	background-image: url(../images/veggie-pizza-header.jpg);
	width: 100%;
	height: 290px;
	margin: 0;
}
h1{
	margin: 0; 
}
.title {
	padding: 50px 0 0 25px;
	font-family: "Brush Script Mt";
	color: #A30000;
	font-size: 10em;
	text-shadow: -3px 0 #fff,
				  0 3px #fff,
				  3px 0 #fff,
				  0 -3px #fff;
}

/* ---------------------------
----------Navigation ---------
---------------------------*/
nav{
	width: 100%;
	height: auto;
	background-color: #688136;
	text-align: center;
}
nav ul {
	display: inline;
	width: 100%;
	padding-left: 0;
}

nav li{
	
	padding: 0 20px;
	display: inline-block;
	font-size: 1.5em;
	line-height: 60px;
}

nav li a{
	text-decoration: none;
}

a:link, a:visited  {
	color: #ffffff;
}
a:hover, a:active {
	color: #373737;
}

/* ---------------------------
-------- Selecting Pizza ----
---------------------------*/
.selectContainer, .size_crustContainer, .toppingContainer, .specialityContainer, .summaryContainer, .priceContainer, #button, .container, .sideContainer, .finalContainer{
	background-color: #888;
}

.selectContainer{
	width: 100%;
	display: inline-block;
}
.size_crustContainer, .toppingContainer, .specialityContainer{
	float: left;
	display: inline-block;
	width: 25%;
	height: 500px;	
}
.summaryContainer{
	height: 500px;
	float: right;
	width: 50%
}

.priceContainer{
	height: 100px;
	clear: both;
	width: 100%;
	
}
.summaryContainer, .priceContainer{
	text-align: right;
}


/* ---------------------------
-------- Order Button ----
---------------------------*/
#button {
	width: 100%;
	height: 40px;
	clear: both;
}


.button {
	clear: both;
	margin: 0 auto;
	display: block;
	width: 150px;
}

/* ---------------------------
-------- custinfo page ----
---------------------------*/
.container{
	float: left;
	display: inline-block;
	width: 60%;
	height: 600px;
}
.sideContainer{
	width: 40%;
	height: 600px;
	display: inline-block;
}
.orderStyle {
	padding-left: 20px;
	text-align: left;
}

.orderBtn{
	text-align: center;
	width: 150px;
	height: 30px;
	margin: 5% 28%;
}
/* ---------------------------
-------- Summary page ----
---------------------------*/
.finalContainer {
	text-align: center;
	width: 100%;
	display: inline-block;
	float: left;
	
}

.finalInner{
	width: 600px;
	margin: 0 auto;
	padding: 20px;
	text-align: left;
	background-color: rgba(255,255,255, 0.4);
}

