@charset "utf-8";
/* CSS Document */
/*
 * http://css-tricks.com/almanac/properties/a/appearance/
*/
*{
	-webkit-appearance:none; /* Zera personalização automáticas em navegadores ios */
}

/*
2015/12/03 – Font Boosting
Previne o navegador mobile de renderizar as fontes aumentando-as
Refs: http://blog.itcrowd.pl/2014/01/disable-font-autosizing-in-chrome-on.html

https://gist.github.com/sethlilly/5880453

*/
p{max-height:1000000px;}

@media only screen and (max-device-width: 1024px) {
  /* iPad */
	.slide-area{width:980px;height:360px;padding-top:95px;position:relative;margin-left:0;left:0;margin-bottom:0px;border-bottom:10px solid #FFF;}
	.slide-area img{width:980px;height:360px;}
	.map-area{width:880px;height:350px;background:#eee;margin:35px 0 80px;margin-left:0;}
	.map-area iframe{width:880px;height:350px;}

	/* Estilo usado apenas quando a imagem é fixa, sem slider. Não apagar */
	#slides-wrapper.fixedImage img{display:none !important;}
	#slides-wrapper.fixedImage img.mobile{display:block !important;}
	#slides-wrapper.fixedImage, #slides-wrapper.fixedImage img{
		width:980px !important;
		height:728px !important; }
	#slides-wrapper.fixedImage{margin-left:-490px !important;}
}
/*
http://css-tricks.com/snippets/css/ipad-specific-css/
@media only screen and (device-width: 768px) {
   For general iPad layouts
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  For portrait layouts only
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  For landscape layouts only
}
*/
