/* http://meyerweb.com/eric/tools/css/reset/ 
CSS RESET v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}	

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/* END Reset */


body {
	background:#fff;
	font:small "Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#666;
	font-weight:normal;
	line-height:180%;
}

.hide {
	display:none;
}

.disabled {
	color:#ccc;
}

.center {
	text-align:center;
}

header {
	background-color:#000;
	margin:0 auto;
	padding:5pt 10pt;
	overflow:hidden;
}
	header h1 {}

		header h1 a {
			color:#bbb;
			font-size:12pt;
			text-decoration:none;
		}
		header h1 a:houver {
			text-decoration:underline;
		}
		
h2 {
	font-family:Georgia, "Times New Roman", Times, serif;
	text-align:left;
	color:#000;
	font-size:15pt;
	margin:0;
	padding: 10px;
	text-align:left;
	display: inline-block;
}

h3 {
	color: #223885;
	font-size: 11pt;
	font-weight: bold;
	text-transform: uppercase;
}

#screen {
	margin:0 auto;
	width:600px; /* screenW */
}

input[type="text"],
input[type="password"],
textarea { /* Tb alterado na funcao cleanInput */
	width:580px; /* screenW */
	background-color:#fff;
	padding:10px;
	margin-bottom:10px;
	
	border:0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	-moz-box-shadow: 0px 1px 5px #888;
	-webkit-box-shadow: 0px 1px 5px #888;
	box-shadow: 0px 1px 5px #888;

	font-size:13pt;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-align:center;
	font-style:italic;
	color:#ccc;
}
	input[type="text"].active,
	input[type="password"].active,
	textarea.active {
		font-family:"Courier New", Courier, monospace;
		color:#000;
		font-style:normal;
	}
 
input[type="submit"], input[type="button"] {
	display:inline-block;
	padding:0.7em 1.0em;
	margin:0;
	
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12pt;
	text-transform:uppercase;
	text-decoration:none;
	color:#fff;
	background-color:#ab0000;
	line-height:150%;
	
	border:0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	cursor:pointer;
}
	input[type="submit"].tw, input[type="button"].tw {
		background-color:#1ab2e8;
	}
	input[type="submit"].fb, input[type="button"].fb {
		background-color:#3c5a9b;
	}
	input[type="submit"].fb, input[type="button"].in {
		background-color:#a5369e; /*#4b799e;*/
	}
	input[type="submit"].gp, input[type="button"].gp {
		background-color:#dd4e40;
	}
	input[type="submit"].it, input[type="button"].it {
		background-color:#cd1415;
	}
		input[type="submit"]:hover, input[type="button"]:hover {
			background-color:#c00;
			text-decoration:none;
		}
			input[type="submit"]:hover.tw, input[type="button"]:hover.tw {
				background-color:#2dc6fc;
			}
			input[type="submit"]:hover.fb, input[type="button"]:hover.fb {
				background-color:#678bd7;
			}
			input[type="submit"]:hover.in, input[type="button"]:hover.in {
				background-color:#c656bf; /*#559fca;*/
			}
			input[type="submit"]:hover.gp, input[type="button"]:hover.gp {
				background-color:#e7685b;
			}
			input[type="submit"]:hover.it, input[type="button"]:hover.it {
				background-color:#f51c1d;
			}

footer {
	position:absolute;
	width:100%;
	bottom:0;
	clear:both;
	padding: 0.5em 0;
	text-align:center;

	background-color:#fff;
	border-top:1px solid #ccc;

	font-weight:bold;
	color:#666;
}

footer a {
	font-weight:normal;
	color:#ab0000;
	text-decoration:none;
}
footer a:hover {
	color:#c00;
	text-decoration:none;
}

@media all and (max-width: 600px) { /* Largura do #screen */
	header {
		text-align:center;
	}

	#screen {
		position:relative;
		clear:both;
		width:90%;
	}
	
	input[type="text"],
	input[type="password"] {
		padding:10px 0;
		width:100%;
	}
	input[type="button"] {
		margin-bottom:5px;
	}
}