/* CSS Document */

/* RESETEO DE MARGIN Y PADDING */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td{
	margin:0;
	padding:0;
}


/* RESETEO DE TABLAS */
table{
	border-collapse:collapse; /* LOS BORDES CONTIGUOS SE SOLAPAN */
	border-spacing:0;
}

/* ELIMINACION DE BORDES EN FIELDSET Y IMG */
fieldset{
	border:0;
}

/* ELIMINA MARCAS Y COSAS RARAS EN LOS a activos */
/* get rid of those system borders being generated for A tags */
a:active {
  outline:hidden;
  outline-style:hidden;
}

:focus {
  -moz-outline-style:none;  
}

img { border: 0; }
