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

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

/* Style the text boxes */
textarea {
	height:213px;
	background-color: #FFF;
}	
label {
	display:block;
	margin-top:20px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
input, textarea {
	width:439px;
	height:27px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:12px;
	color:#666;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	background-color: #FFF;
}
input:focus, textarea:focus {
    border:1px solid #039;
}
#submit {
	width:100px;
	height:30px;
	margin-top:20px;
	cursor:pointer;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 20px;
	color: #333;
	line-height: 12px;
}
	#submit:hover {
	    opacity:0.9;
	}

