/*Borramos para casi todos los tags conocidos por el hombre cualquier margen, espacio, interlineado extraño, bordeados, etc… empezaremos desde cero*/
	
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

/*Quitamos cualquier efecto predefinido sobre enlaces cuando tienen el foco y nos olvidamos de los enlaces subrayados*/

:focus {
	outline: 0;
}

a, a:link, a:visited, a:hover, a:active{
	text-decoration:none
}

/*Para tablas y sus casillas de salida las dejamos con celdas separadas, que los textos se alinean a la izquierda y eliminamos la negrita para campos tipo <td>*/

table {
	border-collapse: separate;
	border-spacing: 0;
}

th, td {
	text-align: left;
	font-weight: normal;
}

/*Eliminamos el border en imágenes o iframe aunque formen parte de un enlace*/
	
img, iframe {
	border: none;
	text-decoration:none;
}

/*De salida nada de símbolos raros para nuestros listados*/
	
ol, ul {
	list-style: none;
}

/*Para variables típicas de formulario usaremos la tipografía que definamos expresamente y al tamaño que definamos*/
	
input, textarea, select, button {
	font-size: 100%;
	font-family: inherit;
}
    
select {
	margin: inherit;
}

/*Convertimos el <hr> en una linea simple*/
	
hr {
	margin: 0;
	padding: 0;
	border: 0;
	background-color: #000;
	height: 1px
}