/*
	Efectos sobre el link
*/
	a { text-decoration: none; padding: 1px 3px; 
		display: inline-block; 
		-webkit-transition: all 1s linear; 
		-moz-transition: all 1s linear; 
		-ms-transition: all 1s linear; 
		-o-transition: all 1.4s linear; 
		transition: all 1s linear; }
	a:hover { background: #ccc; color: red; box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4); 
		-webkit-transform: scale(1.5,1.5); 
		-moz-transform: scale(1.5,1.5); 
		-ms-transform: scale(1.5,1.5); 
		-o-transform: scale(1.5,1.5); 
		transform: scale(1.5,1.5); 
		-webkit-transition: all .8s linear; 
		-moz-transition: all .8s linear; 
		-ms-transition: all .8s linear; 
		-o-transition: all .8s linear; 
		transition: all .8s linear; }		
	#aref { 
		text-decoration: none; 
		/*
		padding: 1px 1px;
		display: inline-block; 
		*/
		-webkit-transition: all 0.1s linear; 
		-moz-transition: all 0.1s linear; 
		-ms-transition: all 0.1s linear; 
		-o-transition: all 0.1s linear; 
		transition: all 0.1s linear; }
	#aref:hover { 
		background: #ccc; color: red; 
		box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4); 
		-webkit-transform: scale(1,1); 
		-moz-transform: scale(1,1); 
		-ms-transform: scale(1,1); 
		-o-transform: scale(1,1); 
		transform: scale(1,1); 
		-webkit-transition: all .2s linear; 
		-moz-transition: all .2s linear; 
		-ms-transition: all .2s linear; 
		-o-transition: all .2s linear; 
		transition: all .2s linear; }