/**{
	 Universal CSS reset 
	margin:0;
	padding:0;
}
*/
/*body{
	 Setting default text color, background and a font stack 
	color:#fff;
	background: url('img/bg.jpg') no-repeat center top #081219;
	font-family:Arial, Helvetica, sans-serif;
}*/
.Tip{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-contaminantes-del-aire.gif') no-repeat left top #fff;
}
.Tip2{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-so2.gif') no-repeat left top #fff;
}
.Tip3{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-monoxido-carbono.gif') no-repeat left top #fff;
}
.Tip4{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-oxidos-nitrogeno.gif') no-repeat left top #fff;
}
.Tip5{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-ozono.gif') no-repeat left top #fff;
}
.Tip6{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-particulas.gif') no-repeat left top #fff;
}
.Tip7{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-pb.gif') no-repeat left top #fff;
}
.Tip8{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-lluvia-acida.gif') no-repeat left top #fff;
}
.Tip9{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-btex-cov.gif') no-repeat left top #fff;
}
.Tip10{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-particulas.gif') no-repeat left top #fff;
}
.Tip11{
	/* The main wrapping div of the slideout tips */
	background: url('../images/monitoreo-atmosferico/contaminantes/infografias-contaminantes-del-aire/infografia-efectos-salud.gif') no-repeat left top #fff;
}
/* INFOGRAFÍAS - ORÍGENES DE LA CONTAMINACIÓN */
.Tip20{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-quien-contamina-aire.gif') no-repeat left top #fff;
}
.Tip21{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-consumo-energetico-zmvm.gif') no-repeat left top #fff;
}
.Tip22{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-que-es-inventario-emisiones.gif') no-repeat left top #fff;
}
.Tip23{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-principales-generadores-precursores-ozono.gif') no-repeat left top #fff;
}
.Tip24{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-principales-generadores-particulas.gif') no-repeat left top #fff;
}
.Tip25{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-principales-generadores-compuestos-toxicos.gif') no-repeat left top #fff;
}
.Tip26{
	/* The main wrapping div of the slideout tips */
	background: url('../images/origen-contaminacion/infografia-principales-generadores-compuestos-efecto-invernadero.gif') no-repeat left top #fff;
}

/* TERMINA INFOGRAFÍAS - ORÍGENES DE LA CONTAMINACIÓN */

.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position:absolute;
	padding:3px;
	top:0;
	left:0;
	background-color:#f1f1f1;
	font-size:13px;
	color:white;
	overflow:hidden;
	height:16px;
	color:#333333;
	-moz-box-shadow:0 0 1px #999;
	-webkit-box-shadow:0 0 1px #999;
	box-shadow:0 0 1px #999;
}

.slideOutTip:hover{
	/* Applying a CSS3 outer glow on hover */
	-moz-box-shadow:0 0 1px #999;
	-webkit-box-shadow:0 0 1px #999;
	box-shadow:0 0 1px #999;
}

/* The holder for the title and the icon: */
.tipVisible{ cursor:pointer; height:22px; }

.tipTitle{
	float:left;
	font-family:"Raleway", Verdana, Geneva, sans-serif;
	font-size:10px;
	font-weight:bold;
	white-space:nowrap;
	line-height:22px;
	padding-right:5px;
}

.tipIcon{
	width:13px;
	height:13px;
	float:left;
	background-color:#000;
	border:1px solid;
	margin-right:8px;
	
	/* CSS3 Rounded corners */
	
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
	border-radius:1px;
}

/* Three color themes 
.green .tipIcon{ background-color:#999; border:1px solid #999; }
.blue .tipIcon{ background-color:#999; border:1px solid #999; }
.red .tipIcon{ background-color:#999; border:1px solid #999; }*/

.plusIcon{
	/* The plus icon */
	width:10px;
	height:10px;
	background:url('../images/plus.gif') no-repeat center center;
	margin:2px;
	
	/* Defining a CSS3 animation. Currently only works in Chrome and Safari */
	-webkit-transition: -webkit-transform 0.2s linear;
	-moz-transition: -moz-transform 0.2s linear;
	transition: transform 0.2s linear;
}

.slideOutTip.isOpened{ z-index:10000; }

.slideOutTip.isOpened .plusIcon{
	/* Applying a CSS3 rotation  to the opened slideouts*/
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}

/* Special rules for the left and top - opening versions */

.openLeft .tipIcon{
	/* Floating the title and the icon to the right */
	margin:0 0 0 8px;
	float:right;
}
.openLeft .tipTitle{ float:right; padding:0 0 0 5px; }
.openLeft .slideOutContent{ margin-top:22px; }
.openLeft.openTop .slideOutContent{	margin-top:0; }


.slideOutContent{
	/* Hiding the div with the slide out content: */
	display:none;
	padding:10px;
	font-size:12px;
	color:#333;
}

/* Hiding the original paragraphs if they have not been replaced (JS disabled): */

.main_tip > p{ display:none; }



/* The styles below are only necessary for the styling of the demo page: */

.main_tip{
	height:600px;
	margin:20px auto;
	position:relative;
	width:960px;
}
.main_tip20{
	height:1254px;
	margin:20px auto;
	position:relative;
	width:960px;
}
.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:10px 0 0;
}

h1.tooltip{
	background-color:#292929;
	border-bottom:1px solid #222222;
	font-size:30px;
	font-weight:normal;
	margin-bottom:15px;
	padding:15px;
	text-align:center;
}

h2.tooltip {
	font-size:12px;
	font-weight:normal;
	padding-right:40px;
	position:relative;
	right:0;
	text-align:right;
	text-transform:uppercase;
	top:-55px;
}

/*a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

a img{
	border:none;
}
*/
.clear{
	clear:both;
}

h1.tooltip,h2.tooltip,p.tutInfo{
	font-family:"Raleway", Verdana, Geneva, sans-serif;
}
/*
a.tooltipinfografia:link {
		font-family:"Quattrocento Sans", Verdana, Geneva, sans-serif;
		font-size:11px;
		text-decoration:none;
		color:#0099ff;
		font-weight:bold;
	}
a.tooltipinfografia:active {
		font-family:"Quattrocento Sans", Verdana, Geneva, sans-serif;
		font-size:11px;
		text-decoration:none;
		color:#0099ff;
		font-weight:bold;
		}
a.tooltipinfografia:visited {
	font-family:"Quattrocento Sans", Verdana, Geneva, sans-serif;
		font-size:11px;
		text-decoration:none;
		color:#0099ff;
		font-weight:bold;
		}
a.tooltipinfografia:hover {	
		font-family:"Quattrocento Sans", Verdana, Geneva, sans-serif;
		font-size:11px;
		text-decoration:underline;
		color:#0099ff;
		font-weight:bold;
		} */