
/* En resoluciones mayor a 1024px */
@media screen 
	and (min-width : 1024px) 
	{
		
	.cuerpo_fondo{
		width: 410px;
		text-align: left;
	}
	
	.cuerpo_pie{
		width: 410px;
	}	
		
	.img_cuerpo_banner{
		max-width: 100%;
		float:left; 
		padding: 5px;
	}
	
	
	.tabla_enlaces{
		width: 400px;
	}

	.td_img{
		width:167px;
		height:60px;
		background: #000000;
	}
	

	.td_enlace{
		width:230px;
		height:60px;
	}
	
	a.enlace_boton{
		font-size: 16px;
	}	
	

}

/* En resoluciones entre 768px y 1024px */
@media screen 
	and (min-width : 768px) 
	and (max-width : 1023px){
		
	.cuerpo_fondo{
		width: 410px;
		text-align: left;
	}
	
	.cuerpo_pie{
		width: 410px;
	}	
		
	.img_cuerpo_banner{
		max-width: 100%;
		float:left; 
		padding: 5px;
	}		
		
	.tabla_enlaces{
		width: 400px;
	}

	.td_img{
		width:167px;
		height:60px;
		background: #000000;
	}
	
	.td_enlace{
		width:230px;
		height:60px;
	}

	a.enlace_boton{
		font-size: 16px;
	}	
	

	
	
	
}

/* En resoluciones entre 480px y 768px */
@media screen 
	and (min-width : 480px) 
	and (max-width : 767px){

	.cuerpo_fondo{
		width: 410px;
		text-align: center;
	}	
	
	.cuerpo_pie{
		width: 410px;
	}	

	.img_cuerpo_banner{
		display: block;
		max-width: 100%;
		margin: auto;
		padding: 5px;
	}

	.tabla_enlaces{
		width: 400px;
	}

	.td_img{
		width:167px;
		height:60px;
		background: #000000;
	}

	.td_enlace{
		width:230px;
		height:60px;
	}

	a.enlace_boton{
		font-size: 14px;
	}	


	
}

/* En resoluciones entre 320px y 480px */
@media screen 
	and (min-width : 320px) 
	and (max-width : 480px){
	.cuerpo_fondo{
		width: 300px;
		text-align: center;
	}
	.cuerpo_pie{
		width: 300px;
	}
	
	.img_cuerpo_banner{
		display: block;
		max-width: 95%;
		margin: auto;
		padding-top: 5px;
	}	

	.tabla_enlaces{
		width: 290px;
	}

	.td_img{
		width:120px;
		height:40px;
		background: #000000;
	}	
	
	.img_enlace{
		max-width: 100%;

	}

	.td_enlace{
		width:150px;
		height:40px;
	}

	a.enlace_boton{
		font-size: 12px;
	}	
	
		
}

/* En resoluciones menores a 320px */
@media screen and (max-width: 319px){
	.cuerpo_fondo{
		width: 95%;
		text-align: center;
	}
	
	.cuerpo_pie{
		width: 95%;
	}
	
	.img_cuerpo_banner{
		display: block;
		max-width: 95%;
		margin: auto;
		padding-top: 5px;
	}	
	
	.tabla_enlaces{
		width: 95%;
	}

	.td_img{
		width:30%;
		height:30px;
		background: #000000;
	}	
	
	.img_enlace{
		max-width: 100%;

	}

	.td_enlace{
		width:60%;
		height:30px;
	}

	a.enlace_boton{
		font-size: 10px;
	}	

		
	
   
}


