/*CSSReset
========*/
/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
dl,ul,ol,li,html,body,div,td,pre,code,blockquote,
form,fieldset,input,label,legend
{ margin:0; padding:0 }

h1, h2, h3, h4, h5, h6, p { margin-top: 0; }

/* who thought blue linked image borders were a good idea? no abbr borders */
abbr, img, object,
a img,:link img,:visited img,
a object,:link object,:visited object
{ border:0 }

html {
	/* New - Placed in CSSReset 2018 */
	font-size: 100%; 
}
body {
	/* New - Placed in CSSReset 2018 */
	/* font: 62.5% arial, verdana, helvetica, sans-serif; */
	font-size: 62.5%;
}

fieldset,img { border: 0; }

legend { color: #000; }

/* no list-markers for nav lists, default markers work well for item lists */
nav ul,nav ol { list-style:none } 

sup { vertical-align: text-top; }

sub { vertical-align: text-bottom; }

table
{
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td
{
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}

input, textarea, select
{
	font-size: 110%;
	line-height: 1.1;
}

abbr, acronym
{
	border-bottom: .1em dotted;
	cursor: help;
}

/* link underlines tend to make hypertext less readable,
   because underlines obscure the shapes of the lower halves of words */
:link,:visited,:focus,ins { text-decoration:none; }   /* ins = inserted text */






