/*
 * CSS Reset.
 * Based on Eric Meyer work and his contributors.
 * http://meyerweb.com/eric/thoughts/2007/04/14/reworked-reset/
 */

* {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: 1.0em;
  text-align: left;
  vertical-align: baseline;
  color: inherit;
}

:focus { outline: 0; }
:link, :visited, :hover { text-decoration: none; color: inherit; }
ol, ul, dl { list-style: none; }
q:before, q:after, blockquote:before, blockquote:after { content: ""; }

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

/* eof */

