/*

	Supersized - Fullscreen Slideshow jQuery Plugin
	Version : 3.2.7
	Site	: www.buildinternet.com/project/supersized
	
	Author	: Sam Dunn
	Company : One Mighty Roar (www.onemightyroar.com)
	License : MIT License / GPL License
	
*/

img { border:none;}

#supersized-loader 		{ position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; background:url(../imagens/progress.gif) no-repeat center center;}

#supersized 			{  display:block; position:absolute; left:0; top:-16px; overflow:hidden; z-index:-999; height:120%; width:100%;}

#supersized img 		{ width:auto; height:auto; position:relative; display:none; outline:none; border:none;}
#supersized.speed img 	{ -ms-interpolation-mode:nearest-neighbor; image-rendering: -moz-crisp-edges; }	/*Speed*/
#supersized.quality img { -ms-interpolation-mode:bicubic; image-rendering: optimizeQuality; }			/*Quality*/

#supersized li 			{ display:block; list-style:none; z-index:-30; position:fixed; overflow:hidden; top:0; left:0; width:100%; height:120%; }
#supersized a			{ width:100%; height:100%; display:block; }

#supersized li.prevslide 			{ z-index:-20;-webkit-animation: zoom 3s; animation: zoom 3s;}
#supersized li.activeslide 			{ z-index:-10;transform: scale(1.2);-webkit-animation: zoom 3s; animation: zoom 3s; transform:zoom 3s;}
#supersized li.image-loading 		{ background:#111 url(../imagens/progress.gif) no-repeat center center; width:100%; height:100%; }
#supersized li.image-loading img	{ visibility:hidden; }
#supersized li.prevslide img,
#supersized li.activeslide img		{ display:inline;}
#prevslide							{ margin-top:-20px;}


.imagem 			  { margin:0 auto; margin-top:50px; width:600px; -webkit-animation: zoom2 2s; animation: zoom2 2s;}
.imagem img 		{ width:100%;}
.texto 				  { width:100%; margin:0 auto; text-align:center; float:none; display:table; margin-top:100px; height:350px; line-height:45px; text-align:center; letter-spacing:15px;}
.texto img 			{ width:100%;}
.primeiro 			{ font-size:35px; text-align:center; display: table; line-height:50px; background:#8a0e11; float:left; padding:5px}
.segundo  			{ font-size:35px; text-align:center; display: table; line-height:50px; background:#fff; color:#6d6e70; float:left; padding:5px;}


@media screen and (max-width:800px){.imagem { margin-top:20px;}.texto1, .texto2{ width:400px}.primeiro, .segundo{ font-size:25px;}}
@media screen and (max-width:720px){.imagem { width:70%;}.primeiro, .segundo{ font-size:20px;}}
@media screen and (max-width:650px){.imagem {  width:70%;}}
@media screen and (max-height:840px){.imagem { width:40%;}}
@media screen and (max-height:600px){.texto { height:150px;}.imagem{height:150px; margin-top:80px;}}

@-webkit-keyframes zoom2 {
    from {
    	-webkit-transform: scale(0,0);
    }
    to {
    	-webkit-transform: scale(1,1);
    }
}

/* Standard syntax */
@keyframes zoom2 {
   from {
        transform: scale(0,0);
   }
   to {
        transform: scale(1,1);
   }
}

@-webkit-keyframes zoom {
  0% {-webkit-transform: scale(1);}
  50% {-webkit-transform: scale(1.2);}
  100% {-webkit-transform: scale(1.2);}
}

/* Standard syntax */
@keyframes zoom {
 0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1.2);}}
