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

* { margin:0; padding:0; border:0; list-style:none; text-decoration: none; }

/* Normalizando */
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,table { 
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
li {
	display: inline;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;}

/* Base   */



html {
    width: 100%;
	height: 100%;
	min-width: 600px;
	min-height: 600px;
	position: absolute;
}

body {
    width:100%;
    font-family: 'Gotham-Light', Arial, Tahoma, sans-serif;
}

a, a:hover, a:visited, a:link {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{ font-weight: normal; }

.clear {
	clear: both;
}

input:focus {
    outline: none;
}

/* remove border around all textarea elements */
textarea:focus {
    outline: none;
}

/* remove border around all select elements */
select:focus {
    outline: none;
}

/* remove border around all input,textarea and select elements */
input:focus, textarea:focus, select:focus {
    outline: none;
}

input {
	border:1px solid #DDDDDD;
	padding: 0 15px;
	height: 38px;
	color: #333;
	font: 14px 'Gotham-Book', Arial, Tahoma, sans-serif;
	cursor: pointer;
	border-radius::0px;
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
}
textarea {
	
}
select {
	
}
select::-ms-expand {
    display: none;
}

input.submit {
	width: auto;
	height: auto;
	padding: 11px 35px;
	cursor: pointer;
	color: #FFF;
	font-size: 13px;
	text-transform: uppercase;
	background-color: #288CB7;
	border:1px solid #288CB7;
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
}
	input.submit:hover {
		color: #288CB7;
		background-color: #FFF;	
		border:1px solid #288CB7;	
	}

input.cinzaClaro {
	color: #999;
}

/* remove border around all elements */
:focus {
    outline: none;
}


/****  ESTILOS DEFAULT  ******************************************************************************/

.trans_04 {
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}

.erro {
	color: #D90000;
	padding: 10px 10px;
	font: 11px 'Gotham-Book', Arial, Tahoma, sans-serif;
}
.erroForm {
	color: #FF0000;
	font: 11px 'Gotham-Book', Arial, Tahoma, sans-serif;
	text-transform:uppercase;
}


/****  LOGIN  ******************************************************************************/

#back {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat:no-repeat;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	background-position:center;
}
	

#box-login {
    position: absolute;
    width: 308px;
	height: 306px;
	top: 50%;
	left:50%;
	margin: -200px 0 0 -179px;
	border-radius:5px;
	background: #FFF;
	padding: 30px 25px;
	box-shadow:5px 5px 80px #000;
}
	#box-login {
	}
		#box-login #logo {
			float:left;
			width: 205px;
			height: 44px;
			padding:0 0 20px 45px;
		}
		#box-login #error {			
			position: absolute;
			width: 245px;
			top: 90px;
			left: 45px;
			text-align: center;
		}
		#box-login form {
			float:left;
			padding: 30px 0 0 0;
			text-align: center;
			position: relative;
		}
		#box-login form  input {
			width: 240px;
			margin:8px 2px;
		}
			#box-login form  input.submit {
				width: auto;
				margin: 20px 0 0 0;
			}
		
		
		#box-login form #erro-01 {
			display: none;
		}
	#box-login footer {
		float:left;
		width: 100%;
		text-align: center;
		font-size: 10px;
		color: #666;
		padding: 25px 0;
	}


