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

html, body, #wrap 
{
height: 100%;
margin:0px;
background-repeat:repeat;
font-family: 'Open Sans', sans-serif;
font-size:12px;
color:#292f36;
background:#f6f6f6;

}

body > #wrap 
{
height: auto; 
min-height: 100%;

}
#wrap 
{
	width:1282px;
	left:50%;
	margin-left:-701px;
	position:relative;
	background:url(imagens/bg.png) repeat-y top center;
	padding-right:59px;
	padding-left:61px;
}


#main 
{

	position:relative;
	padding-bottom:80px;
	margin-top:-17px;

}  /* deve ser a mesma altura do rodapé */

#header
{
}

#footer {
position: relative;
margin-top: -80px; /* A mesma altura do rodapé, o valor deve ser negativo */
height: 80px;
clear:both;
text-align:LEFT;
color:#fff;
z-index:4;
width:1280px;
font-size:10px;
background:#2e2d2c;
left:50%;
margin-left:-640px;
}

#banner
{
	position:relative;

}

.info
{
	position:relative;
	padding-right:217px;
	padding-left:217px;
}

.caixamenu
{
	margin-left:142px;
}


a:link {
	color: #666;
	text-decoration:none;
}
a:visited {
	color: #666;
	text-decoration:none;
}
a:hover {
	color: #333;
	text-decoration:none;
}
a:active {
	color: #666;
	text-decoration:none;
}



a.bt:link {
	color: #fff;
	text-decoration:none;
	padding-left:25px;
	padding-top:5px;
	padding-bottom:5px;
	background:#fc4237;
	font-size:9px;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding:10px 25px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;	
}
a.bt:visited {
	background:#fc4237;
	color: #fff;
}
a.bt:hover {
	background:#bb251c;
	color: #fff;
}
a.bt:active {
	background:#fc4237;
	color: #fff;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
 
.fade-in.one {
-webkit-animation-delay: 0.1s;
-moz-animation-delay: 0.1s;
animation-delay: 0.1s;
}
 
.fade-in.two {
-webkit-animation-delay: 0.7s;
-moz-animation-delay:0.7s;
animation-delay: 0.7s;
}
 
.fade-in.three {
-webkit-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
animation-delay: 1.2s;
}

.fade-in.four {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}

.five {
transform: translateX( -100% ) rotateY( -180deg );
}



#container
{
    height:2000px;    
}

#container DIV
{ 
    margin:50px; 
    padding:50px; 
    background-color:lightgreen; 
}

.hideme
{
    opacity:0;
}

.bt_submit {
	color: #fff;
	text-decoration:none;
	padding-left:25px;
	padding-top:5px;
	padding-bottom:5px;
	background:#fc4237;
	font-size:9px;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding:10px 25px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;	
	border:0;
	cursor:pointer;
}

.bt_submit:hover {

	background:#bb251c;

}