/* 
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Documento CSS de 'comunes'
	Ultima edicion: 29 de junio de 2008	
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/


   
/* 
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	1. LIMPIAR BLOQUES FLOTANTES
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/    
   body .limpiar:after {
		clear: both; 
		content: "."; 
		display: block; 
		height: 0; 
		visibility: hidden;
	}
	
	body .limpiar {
		display: inline-block;
	}
	
	/* ocultamos a IE-mac \*/
	* html .limpiar {height: 1%;}
	body .limpiar {display: block;}
	/* fin a IE-mac */
   

/* 
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	2. ORIENTACIÓN DE BLOQUES Y TEXTO
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/ 	
	body .izda {
		float: left;
	}
	
	body .dcha {
		float:left;
	}
	
	body .txtizda {
		text-align: left;
	}
	
	body .txtdcha {
		text-align: right;
	}
	
	body .txtcentro {
		text-align: center;
	}
	
	body .txtimgizda {
		float: left;
		margin-right: 20px;
	}
