
/** BLOQUEADOR **/
			
#_ampliador_bloqueador 
{ 
	position:fixed; 
	top:0; 
	left:0; 
	width:100%; 
	height:100%; 
	background:rgba(0,0,0,.7); 
	z-index:99999; 
}

#_ampliador_contenido_bloqueador
{ 
	position:absolute; 
	top:50%; 
	left:50%;
	//transition:all 1s;
}

#_ampliador_imagen 
{
	position:relative;
	background:#fff;
	padding:10px;
	box-shadow:0 0 10px rgba(0,0,0,.75);
	border-radius:6px; 
}

#_ampliador_imagen img
{
	border-radius:6px; 
}

#_ampliador_titulo_imagen 
{ 
	margin-top:10px; 
	color:#000; 
	font-size:12px; 
	line-height:1.4em;
}

#_ampliador_salir_bloqueador
{ 
	position:absolute; 
	top:-15px; 
	right:-15px;
	width:30px; 
	height:30px; 
	cursor:pointer;
	transition:all .2s;
}

._ampliador_salir
{
	text-align:center; 
	line-height:30px; 
	background:#000; 
	color:#fff; 
	font-weight:bold; 
	font-size:13px; 
	border-radius:15px; 
	box-shadow:1px 1px 2px rgba(0,0,0,.75);
}

#_ampliador_prev, #_ampliador_next
{
	position:absolute;
	top:50%;
	margin-top:-20px;
	color:#fff;
	width:40px;
	height:40px;
	cursor:pointer;
	border-radius:30px;
	transition:all .3s;
	z-index:100;
	background:rgba(0,0,0,0);
	text-align:center;
	line-height:40px;
	font-size:26px;
	font-family:'Times New Roman', 'Helvetica', serif;
	transition:all .3s;
}

#_ampliador_prev:hover, #_ampliador_next:hover
{
	background:rgba(0,0,0,.8);
}

#_ampliador_prev  {
	left:-55px;
}

#_ampliador_next {
	right:-55px;
}


