1/* --------------------------------------------------------------
2
3   reset.css
4   * Resets default browser CSS.
5   * this code is from the BluePrint CSS framework
6-------------------------------------------------------------- */
7
8html, body, div, span, object, iframe,
9h1, h2, h3, h4, h5, h6, p, blockquote, pre,
10a, abbr, acronym, address, code,
11del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
12fieldset, form, label, legend,
13table, caption, tbody, tfoot, thead, tr, th, td, hr {
14  margin: 0;
15  padding: 0;
16  border: 0;
17  font-weight: inherit;
18  font-style: inherit;
19  font-size: 100%;
20  font-family: inherit;
21  vertical-align: baseline;
22}
23
24body {
25  line-height: 1.5;
26}
27
28/* Tables still need 'cellspacing="0"' in the markup. */
29table { border-collapse: separate; border-spacing: 0; }
30caption, th, td { text-align: left; font-weight: normal; }
31table, td, th { vertical-align: middle; }
32
33/* Remove possible quote marks (") from <q>, <blockquote>. */
34blockquote:before, blockquote:after, q:before, q:after { content: ""; }
35blockquote, q { quotes: "" ""; }
36
37/* Remove annoying border on linked images. */
38a img { border: none; }
39
40hr { border-top:1px solid black; }
41