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


label {
    display:block;
    margin-top:50px;
    letter-spacing:1px;
}

/* This section centers our complete page */
.main {
    display:block;
    margin:0 auto;
    width:500px;
}

/* This section centers the form inside our web page*/
form {
    margin:0 auto;
    width:420px;
}

/* Applying styles to our text boxes */
input, textarea {
	width:400px;
	height:27px;
	border:2px solid #f6f6f6;
	padding:10px;
	margin-top:10px;
	font-size:0.9em;
	color:#ffffff;
	background:url(input-bg_400x27.png);
}

textarea {
	height:200px;
	font-family:Arial;
}

#submit {
    width:170px;
    height:35px;
    background:url(submit.png);
    text-indent:-9999px;
    border:none;
    margin-top:20px;
    cursor:pointer;
}

