body{
	font-family: Verdana, Geneva, sans-serif;
}
#titlediv{
	padding: 1rem;
	background-color: #efefef;
	text-align: center;
	padding: 10px;
}
.fl{
	font-weight: bold;
}
#caacContainer{
	width: 600px;
	padding: 10px;
	background-color: #0066FF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#caacSelect{
	width: 100%;
	margin: 5px;
}
#caacInputContainer{
	width: 100%;
	height: 200px;
}
#caacWHL{
	width: 120px;
	height: 400px;
	overflow: hidden;
	float: left;
}
#caacTotal{
	width: 474px;
	height: 100px;
	float: left;
	border: 1px solid black;
	margin: 2px;
	color: #ffffff;
	font-size: 56px;
	text-align: center;
	line-height: 100px;
	background-color: #004EC2;
}
#caacType{
	width: 100%;
	text-align: center;
	color: #d9d9d9;
	font-weight: bold;
	font-size: 18px;
}
#caacQuote{
	width: 96%;
	text-align: right;
	margin: 2%;
}
#caacModifier{
	width: 100%;
}
.caacWHLText{
	width: 90%;
	height: 25px;
	border: 1px solid black;
	outline: 0;
	text-align: center;
	margin: 2px;
	padding: 2px;
}
.aggregate{
	display: none;
}
.asphalt{
	display: none;
}
#prodSelect{
	width: 100%;
}
#units{
	position: relative;
	top: -325px;
	left: 540px;
	color: #d9d9d9;
	font-weight: bold;
}
#directions{
	position: relative;
	top: -310px;
	left: 125px;
	width: 474px;
	font-size: 12px;
	font-weight: bold;
	color: #d9d9d9;
}
#finePrint{
	font-size: 12px;
	font-weight: bold;
	color: #d9d9d9;
}
#footer{
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	background-color: #efefef;
	text-align: center;
	font-size: .7em;
}

/***FIRST STYLE THE BUTTON***/
.bbutt{
cursor: pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding: 5px 25px; /*add some padding to the inside of the button*/
background: #004EC2; /*the colour of the button*/
border: 1px solid #000000; /*required or the default border for the browser will appear*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
/*give the button a drop shadow*/
-webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
box-shadow: 0 0 4px rgba(0,0,0, .75);
/*style the text*/
color: #d9d9d9;
font-size: 1.1em;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
.bbutt:hover, .bbutt:focus{
background-color :#003788; /*make the background a little darker*/
/*reduce the drop shadow size to give a pushed button effect*/
-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
box-shadow: 0 0 1px rgba(0,0,0, .75);
}