1/**
2 * @file    libsbml-reset-stylesheet.css
3 * @brief   Reset CSS entities to consistent values for all browsers.
4 * @author  Michael Hucka
5 *
6 * This file is part of libSBML.  Please visit http://sbml.org for more
7 * information about SBML, and the latest version of libSBML.
8 *
9 * The contents of this file originally came from the following location:
10 *   http://meyerweb.com/eric/tools/css/reset/
11 * The original license statement was as follows:
12 *   v2.0 | 20110126
13 *   License: none (public domain)
14 *
15 * The contents have been modified from this original.
16 */
17
18a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote,
19body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl,
20dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4,
21h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li,
22mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section,
23small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th,
24thead, time, tr, tt, u, var, video
25{
26    margin: 0;
27    padding: 0;
28    border: 0;
29    font-size: 100%;
30    font: inherit;
31}
32
33/* HTML5 display-role reset for older browsers */
34article, aside, details, figcaption, figure,
35footer, header, hgroup, menu, nav, section
36{
37    display: block;
38}
39
40body
41{
42    line-height: 1;
43}
44
45ul
46{
47    list-style-type: disc;
48}
49
50ol
51{
52    list-style-type: decimal;
53}
54
55blockquote, q
56{
57    quotes: none;
58}
59
60blockquote:before, blockquote:after,
61q:before, q:after
62{
63    content: '';
64    content: none;
65}
66
67table
68{
69    border-collapse: collapse;
70    border-spacing: 0;
71}
72