/* RESET de ESTILOS de NAVEGADORES */

/*This odd 100.01% value for the font size compensates for several browser bugs.
First, setting a default body font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements.
Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers.
Safari, on the other hand, has a problem with a font-size of 101%.
The current best suggestion is to use the 100.01% value for this property.*/
html {
	font-size: 100.01%;
}

:link,
:visited {
	text-decoration: none;
}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input, button, hr {
	margin: 0 0 1em 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	margin: 0 0 .5em 0;
}
dl, ul, ol {
	list-style: none;
	list-style-type: none;
}



/* NOTA: tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a,
a:hover,
a:active,
a img,
:link img,
:visited img {
	border:none;
	outline:none;
	outline-style:none;
}
:focus { outline: 0; }
address,caption,cite,code,dfn,th,var { 
	font-style:normal; 
	font-weight:normal; 
}
pre, code, tt, samp {
	font-size: 1.35em;
}
kbd {
	text-transform: uppercase;
}
sup { vertical-align: super; }
sub { vertical-align: sub; }
pre { white-space: pre; }



/* quotes */
blockquote:before,
blockquote:after,
q:before,
q:after {
	content:"";
}
blockquote,
q {
	quotes: "" "";
}