@charset "UTF-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */

/*contact form*/
#message {
	position:relative;
	background-color:#FFF;
	width: 650px;
	height: 550px;
	
	margin-left: 180px;
	margin-top: 120px;
	
	-webkit-border-top-right-radius: 35px;
	-webkit-border-bottom-left-radius: 35px;
	-moz-border-radius-topright: 35px;
	-moz-border-radius-bottomleft: 35px;
	border-top-right-radius: 35px;
	border-bottom-left-radius: 35px;
	
	-webkit-box-shadow:  0px 3px 5px 5px rgba(50, 50, 50, 0.3);    
    box-shadow:  0px 3px 5px 5px rgba(50, 50, 50, 0.3);
}
#message_header {
	position: relative;
	font-family: 'Anton', sans-serif;
	color: #231f20;
	text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.7);
	font-weight: normal;
	
	margin-left: 20px;
	top: 20px;
}
/* form components */
input {
	float:left;
	border:1px solid silver;
	background-color:#fff;
	color:#404040;
	font-size:10px;
	font-family:Verdana, Arial, sans-serif;
	text-transform:uppercase;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	margin:15px;
	padding:10px;
}
textarea {
	border:1px solid silver;
	background-color:#fff;
	color:#404040;
	font-size:10px;
	font-family:Verdana, Arial, sans-serif;
	text-transform:uppercase;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	margin:15px;
	padding:10px;
}

input:hover[type=text],input:focus[type=text],textarea:hover,textarea:focus {
	background-color:#E0E0E0;
	border:1px solid #000;
}

input[type=text] {
	width:270px;
}
textarea {
	width:595px;
	height: 250px;
}

#submit {
	background:#f1651e; color:#fff; 
	cursor:pointer;
	padding:5px 10px; 
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: -10px;
}

#submit:hover {
	cursor:pointer;
}

/* alert messages */
.success, .error {
	margin-left: 112px;
	color:#000;
	display:none;
	font-size:15px;
	font-weight: normal;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:5px 10px 5px 10px;
}

.success {
	top:35px;
	width:400px;
	background-color:#9F6;
	border:1px solid #0F0;
}

.error {
	width:400px;
	background-color:#F66;
	border:1px solid red;
}
