/* RESET css */
											         
h1, h2, h3, h4,	h5, h6 {font-weight:normal;}													
/*Generic*/			
*{margin:0; padding:0;}

/*Ateneu Popular*/
a, a:link, a:visited, a:hover, a:active{text-decoration:none}
img {text-decoration:none; border:none;}
ol, ul {list-style: none;}

/*Chris Poteet’s*/
table {border-collapse:collapse /*separate*/;border-spacing: 0;}/* En HTML añadir cellspacing=”0″ */					

/*Eric Meyer’s*/
caption, th, td {text-align: left; font-weight: normal;}

/*rudeworks*/
label, button {cursor: pointer;}
.clear {clear: both;} /*es semantico dar overflow:hidden al elemento contenedor*/
		
		
/*centrado horizontal: text-align:center -(descendiente)-> text-align:left; margin:0 auto;*/			
/*limpieza de float: overflow:hidden; al elemento contenedor*/

/*COMENTARIOS CONDICIONALES
<!--[if IE]><!--contenido para todos los IE--><![endif]-->
<!--[if IE 6]><!--contenido para IE6. También podemos usar: *html selector {p:v;}--><![endif]-->
<!--[if IE 7]><!--contenido para IE7. También podemos usar: *:first-child+html selector {p:v;}--><![endif]-->
<!--[if IE 8]><!--contenido para IE8--><![endif]-->

Para IE6: *html selector {propiedad:valor;}
Para IE7: *:first-child+html selector {propiedad:valor;}
*/

/*PROPIEDADES CSS3:

- border-radius:
		border-radius: 10px;
		-ms-border-radius: 10px; para IE 8
		-moz-border-radius:10px; Firefox
		-webkit-border-radius: 10px; WebKit y Safari
		-khtml-border-radius: 10px;
		behavior: url(css/border-radius.htc);IE (incluir el fichero en la ruta indicada)

- text shadow:
		text-shadow: #color 20px -12px 2px;

- box shadow:
        (box-shadow: x y blur color;)
        box-shadow: 0 0 10px rgb(0,0,0); 
        -webkit-box-shadow: 0 0 10px rgb(0,0,0);  
        -moz-box-shadow: 0 0 10px rgb(0,0,0);  
*/




















