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

<style>
    label {
    display:block;
    margin-top:10px;
    letter-spacing:2px;
}

/* Centre the page */
.body {
    display:block;
    margin:0 auto;
    width:350px;
}

/* Centre the form within the page */
form {
    margin:0 auto;
    width:265px;
}

/* Style the text boxes */
input {
	width:245px;
	height:15px;
	background:#efefef;
	border:1px solid #dedede;
	padding:10px;
	margin-top:1px;
	font-size:0.9em;
	color:#3a3a3a;
	  border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

textarea {
	resize: none;
	width:265px;
	height:100px;
	background:#efefef;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
	  border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}
input:focus, textarea:focus {
    border:1px solid #97d6eb;
}
#submit {
    width:140px;
    height:40px;
    background:url(images/submit.png);
    text-indent:-9999px;
    border:none;
    margin-top:10px;
	margin-left:60px;
    cursor:pointer;
}

	#submit:hover {
	    opacity:0.9;
	}
	
			
        </style>