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

html, body, #wrap 
{
height: 100%;
margin:0px;
background-repeat:repeat;
font-family: 'Open Sans', sans-serif;
font-size:14px;
color:#58626c;

}

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

}



#main 
{

	position:relative;
	padding-bottom:205px;
	margin-top:-55px;

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

#header
{
}

#footer {
position: relative;
margin-top: -205px; /* A mesma altura do rodapé, o valor deve ser negativo */
height: 205px;
clear:both;
text-align:LEFT;
color:#fff;
z-index:4;
width:100%;
font-size:11px;
background:#1d6e72;
padding-top:65px;
}

#banner
{
	position:fixed;
	height:55px;
	background:#16555c;
	z-index:99999;
	top:0;
	width:100%;
	opacity:0.9;
	
}

.info
{
	width:1280px;
	left:50%;
	margin-left:-640px;
	position:relative;
}

.title
{
	width:100%; font-size:22px; font-weight:bold; color:#0eb493; background:url(imagens/title.png) no-repeat center bottom;
	padding-bottom:30px; margin-bottom:30px;
}


.bt
{
	-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;
	opacity:1.0;	
}

.bt:hover
{
	opacity:0.5;	
}

.bt2
{
	-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;
	opacity:1.0;	
}

.bt2:hover
{
	opacity:0.8;	
}


.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.link_int:link {
	color: #fff;
	text-decoration:none;
	padding-right:20px;
	padding-top:5px;
	font-size:11px;
	font-weight:bold;
}
a.link_int:visited {
	color: #fff;
	text-decoration:none;
	padding-right:20px;
	padding-top:5px;
	font-size:11px;	font-weight:bold;

}
a.link_int:hover {
	color: #269497;
	text-decoration:none;
	padding-right:20px;
	padding-top:5px;
	font-size:11px;	font-weight:bold;

}
a.link_int:active {
	color: #fff;
	text-decoration:none;
	padding-right:20px;
	padding-top:5px;
	font-size:11px;	font-weight:bold;

}

/* 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;
}