1/* http://meyerweb.com/eric/tools/css/reset/
2   v2.0 | 20110126
3   License: none (public domain)
4*/
5
6html,
7body,
8div,
9span,
10applet,
11object,
12iframe,
13h1,
14h2,
15h3,
16h4,
17h5,
18h6,
19p,
20blockquote,
21pre,
22a,
23abbr,
24acronym,
25address,
26big,
27cite,
28code,
29del,
30dfn,
31em,
32img,
33ins,
34kbd,
35q,
36s,
37samp,
38small,
39strike,
40strong,
41sub,
42sup,
43tt,
44var,
45b,
46u,
47i,
48center,
49dl,
50dt,
51dd,
52ol,
53ul,
54li,
55fieldset,
56form,
57label,
58legend,
59table,
60caption,
61tbody,
62tfoot,
63thead,
64tr,
65th,
66td,
67article,
68aside,
69canvas,
70details,
71embed,
72figure,
73figcaption,
74footer,
75header,
76hgroup,
77menu,
78nav,
79output,
80ruby,
81section,
82summary,
83time,
84mark,
85audio,
86video {
87  margin: 0;
88  padding: 0;
89  border: 0;
90  font-size: 100%;
91  font: inherit;
92  vertical-align: baseline;
93}
94
95/* html5 display-role reset for older browsers */
96article,
97aside,
98details,
99figcaption,
100figure,
101footer,
102header,
103hgroup,
104menu,
105nav,
106section {
107  display: block;
108}
109
110body {
111  line-height: 1;
112}
113
114ol,
115ul {
116  list-style: none;
117}
118
119blockquote,
120q {
121  quotes: none;
122}
123
124blockquote:before,
125blockquote:after,
126q:before,
127q:after {
128  content: "";
129  content: none;
130}
131
132table {
133  border-collapse: collapse;
134  border-spacing: 0;
135}
136