@charset "utf-8";
/* CSS Document */
.white-popup {
	position: relative;
	background: #FFF;
	padding: 20px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
	border-radius: 8px;
	color: #000000;
}

/*-------------------------------------
FORM STYLES
------------------------------------------*/

form#contact-form fieldset {
	text-shadow: none; /* Prevent inheritence from `body` */
	padding: 10px 20px 20px 20px;
	margin: 0 auto;
	border: 0;
	background-color: #fff;
	width: 350px;
	text-align: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
	border-radius: 8px;
    -moz-box-shadow: 0px 0px 10px #d3d3d3; 
	-webkit-box-shadow: 0px 2px 10px #d3d3d3; 
	box-shadow: 0px 0px 10px #d3d3d3; 
}

form#contact-form input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="comments"], input[type="textarea"] {
	margin: 0px 0 0 0;
	padding: 6px; 
	width: 310px; 
	font-family: arial, sans-serif; 
	font-size: 12px;
	text-shadow: none; /* Prevent inheritence from `body` */
	border: 1px solid #ccc;
    background: -webkit-gradient(linear, left top, left 15, from(#FFFFFF), color-stop(4%, #f4f4f4), to(#FFFFFF));
    background: -moz-linear-gradient(top, #FFFFFF, #f4f4f4 1px, #FFFFFF 15px);
}

form#contact-form textarea {
	width: 310px; 
	height: 150px;
	font-family: arial, sans-serif; 
	font-size: 12px;
	text-shadow: none; /* Prevent inheritence from `body` */
}

form#contact-form label {
	display: block;
	font-size: 13px;
	font-weight: bold;
	text-shadow: none; /* Prevent inheritence from `body` */
	color: #666;
	margin-top: 10px;
}

form#contact-form label.error { 
	width: 270px;
	margin: 3px 0 0 0;
	display: block;
	color: #cf0101;                              
	font-size: 11px;
	text-shadow: none; /* Prevent inheritence from `body` */
	text-align: right;
}

form#contact-form .placeholder {
	color: #aaa;
}

form#contact-form .button {
	display: inline-block;
	margin: 15px 0 0 90px;
	padding: 5px 15px 5px 15px;
	background-color: #ff9e00;
	border: none;
	color: #fff;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}

form#contact-form .button:hover {
	background-color: #fc8500;
	cursor: pointer;
}

form#contact-form .button:active {
	margin-top: 16px;
	background-color: #f08004;
	cursor: pointer;
}



