/* Reset de elementos */
* {margin:0; padding:0; border:0; list-style:none;}

/* Corpo da pagina */

body, html {
	height:100%;
}
body {
	font-family:arial;
}
/* Logotipo */
h1 {
	position:absolute;
	top:34px;
}
h1 a {}
h1 a img {width:300px;height:120px;}

/* Sub-titulo */
h3 {
	font-size:18px;
	font-weight:600;
	color:#9ACD32;
	padding-bottom:20px;
}

/* Span */
span {
	font-size:13px;
	color:#9ACD32;
}

/* Paragrafo */
p {
	font-size:13px;
	line-height:18px;
	color:#888;
	padding-bottom:20px;
}

/* Formulário */
form {
	width:600px;
}
label {
	display:block;
	padding:0 0 10px 0;
}
input[type=text] {
	padding:8px;
	background:#000;
	border:1px solid #666;
	font-size:15px;
	color:#ccc;
}
textarea {
	width:400px;
	height:200px;
	padding:8px;
	background:#000;
	border:1px solid #666;
	font-size:15px;
	color:#ccc;
}
input[type=button], input[type=reset]  {
	padding:8px;
	background:#000;
	border:1px solid #666;
	font-size:15px;
	color:#ccc;
}
input[type=button]:hover, input[type=reset]:hover {
	background:#222;
	border:1px solid #666;
	cursor:pointer;
}