@charset "UTF-8";
/* 	Whitish: #F2F2F2
	beige: #B5A696
	light gray: #9FA09A
	med gray: #796F6D
	dark gray: #474348 
	 
*/

* {
	padding: 0px;
	margin: 0px;
	outline: 0px;
}

body {
	background-color:#9FA09A;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
   font-weight: 300;	
}

#error, #results {
	width: 500px;
	margin-top: 50px;
	margin-left: 370px;
	background-color:#F2F2F2;
	padding:20px;
	-moz-box-shadow: 3px 3px 3px #474348;
	-webkit-box-shadow: 3px 3px 3px #474348;
	box-shadow: 3px 3px 3px #474348;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;	
}

#error h2 {
	color:red;
	text-transform:capitalize;	
}

#form_wrapper {
	width:250px;
	position:fixed;
	left:50px;
	top:50px;
	background-color: #F2F2F2;
	padding:20px;
	-moz-box-shadow: 3px 3px 3px #474348;
	-webkit-box-shadow: 3px 3px 3px #474348;
	box-shadow: 3px 3px 3px #474348;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;


}

#form_wrapper p {
	color:#796F6D;
	margin-top: 20px;
	line-height: 200%;
	font-weight: bold;
	text-shadow: 0 1px 1 #fff;
}

#form_wrapper p:first-child {
	margin-top:0px;
}

table {
	width:100%;	
	border-collapse:collapse;
	font-size:13px;
	border:1px solid #796F6D;
}

td {
	padding:4px 8px;
	vertical-align:text-top;
}

td.desc {
	width:260px;
	padding:4px 10px;	
}

tr.results_header {
	font-weight:bold;
	background-color:#796F6D;
	color:#F2F2F2;
	text-transform:uppercase;
	letter-spacing:.05em;
}

tr.data {
	font-family:arial, sons-serif;	
}

tr.data:nth-child(even) {
   background-color: #fff;  
}

tr.data:last-child td {
	font-size:16px;
	font-weight:bold;
	color:#F2F2F2;
	border-top:1px solid #474348;
	background-color:#796F6D;
	padding-top:10px;
	text-transform:uppercase;
	letter-spacing:.05em;	
}

/* form styling */

textarea, input {
	border: 2px solid #9FA09A;
	padding:6px;
	font-size:14px;
}

textarea:focus, input:focus {
    border: 2px solid #474348;
}

input[type="submit"] {
	font-weight:bold;
	color:#fff;
	background-color:#474348;
	border:none;
	padding-top:5px;
	padding-bottom:5px;
	padding-left:10px;
	padding-right:10px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border:2px solid #F2F2F2;
}

input[type="submit"]:hover {
	background-color:#796F6D;
}

input[type="submit"]:focus {
	background-color:#796F6D;
	border:2px solid #474348;
}