/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */
/* NOTES-------------------------------------------------------------- 
-Don't set <body> font-size as a base size; breaks IE7's text only resizing option
-<sup> position:relative is making IE7 render it with overflow:hidden; IE7 position overflow bug
   
-------------------------------------------------------------- */

html, body, div, span, iframe,
p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

a{
	outline:none;
}

sup,sub {
	height: 0;
	line-height: 1em;
	vertical-align: baseline;
	_vertical-align: bottom;/*IE6 specific hack; should move to IE6.css*/
	/*position:relative may cause IE7 overflow:hidden and position:relative bug
		currently fixed by setting parents to position:relative*/
	position: relative;
}
sup {	
	bottom: 1ex;
}
sub {
	top: .5ex;
}

/*Safari and Opera have default additional padding*/
input{
	padding:0;
}

body { 
  /*line-height: 1.2em; */
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: top; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images.*/
a img { border: none; }
