/* Reseteo de todos los elementos margin, padding y border para igualar el aspecto en navegadores*/
*{
margin: 0px;
padding:0px;	
border: 0px;
}
img{
	border:0px;
}

/*Quitar la linea de puntos en los enlaces*/
a {outline:0px solid;}

/*Clase para testeo de boxes*/
.test{
border:1px dotted red;
}

/*Fix para contenedor de elementos flotados*/
html>body div.contenedor{
	overflow:hidden;
}
* html div.contenedor{
	height:1%;
}
/*Fix alternativo para contenedor de elementos flotafos*/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
/* Ocultar IE-mac \*/
* html .clearfix {height: 1%;}
/* fin de ocultar IE-mac */

.tlf{
	background-image: url(../imagenes/ico_movil.gif);
	background-repeat: no-repeat;
	padding-left: 30px;	padding-bottom: 5px;

}
.fax{
	background-image: url(../img/ico_fax.gif);
	background-repeat: no-repeat;
	padding-left: 30px;	
	padding-bottom: 5px;
}
.email{
	background-image: url(../img/ico_mail.gif);
	background-repeat: no-repeat;
	padding-left: 30px;	padding-bottom: 5px;
}
/*Flotar genericos*/
.flotaizquierda{
	float: left;
}
.flotaderecha{
	float: right;
}
.clearboth{
clear:both;}

.limpia {
clear: both;
height:1px;
overflow:hidden;
margin-top:-1px; 
}