
			/* GLOSARIO CLASS */

            	/* Container */
            	.glosario_container {
            		position: relative;
            		text-align:right;
					top:9%;
            	}
            	/* espacio entre terminos */
            	p.glosario{ 
            		line-height: .80em;
            	}
            	/* terminos */
            	a.glosario:link,
            	a.glosario:visited{
            		position: relative; 
            		text-transform: uppercase;
            		text-decoration: none;
            		color: #757575;
            		font-size:.80em;
					font-weight:100;
            		text-align: left;
            		right: 2%;
					top:-5%;
            		z-index:2;	
            	}          	
            	/* imagen */
            	img.glosario { 
            		position: absolute;
            		visibility: hidden;
            		top: 8%;
            		left: 50%;
            		max-width: 230px;
            		z-index:1;
            	}
            	
            	/* definicion */
            	span.glosario { 
            		position: absolute; 
            		visibility: hidden;
					color: #757575;
            		font-size:1em;
					font-stretch:wider;
					font-weight:200;
					line-height: 1.5em;
            		text-align:left;
            		line-height:150%;
            		width:40%;
            		top: 23%;
            		left: 4%;
            		z-index:3;	
            	}
            	
            	/* terminos over */
            	a.glosario:hover,
            	a.glosario:focus{ 
            		font-size:.80em;
            		color: #000000;
            		border-bottom: none;
            	}
            	
            	/* imagen y definicion over */ 
            	a.glosario:hover ~ img,
            	a.glosario:focus ~ img,
            	a.glosario:hover ~ span,
            	a.glosario:focus ~ span{	
            		visibility: visible;	
            	}
