2010-10-06 14:16:12 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
2011-02-02 02:59:12 +00:00
|
|
|
|
2010-10-06 14:16:12 +00:00
|
|
|
/* CSS Document
|
|
|
|
CSS reste by Eric Meyer:
|
|
|
|
The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on... http://meyerweb.com/eric/tools/css/reset/
|
|
|
|
*/
|
|
|
|
|
2010-11-03 20:07:23 +00:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
div,
|
|
|
|
span,
|
|
|
|
object,
|
|
|
|
iframe,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
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 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-weight: inherit;
|
|
|
|
font-style: inherit;
|
|
|
|
font-size: 100%;
|
|
|
|
font-family: inherit;
|
|
|
|
vertical-align: baseline;
|
|
|
|
color: #595b5b;
|
|
|
|
font-weight: normal;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
body {
|
|
|
|
line-height: 1.5em;
|
2010-10-25 18:43:26 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
font-weight: normal;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
blockquote,
|
|
|
|
q {
|
|
|
|
quotes: none;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
blockquote:before,
|
|
|
|
blockquote:after,
|
|
|
|
q:before,
|
|
|
|
q:after {
|
|
|
|
content: '';
|
|
|
|
content: none;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
|
|
|
/* remember to highlight inserts somehow! */
|
2010-11-03 20:07:23 +00:00
|
|
|
ins {
|
|
|
|
text-decoration: none;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
del {
|
|
|
|
text-decoration: line-through;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
|
|
|
/* tables still need 'cellspacing="0"' in the markup */
|
|
|
|
table {
|
2010-11-03 20:07:23 +00:00
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
2010-10-06 14:16:12 +00:00
|
|
|
}
|
|
|
|
/* New ones added to the default list */
|
2010-11-03 20:07:23 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2011-02-01 21:19:58 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
fieldset {
|
|
|
|
border-style: none;
|
2011-02-01 21:19:58 +00:00
|
|
|
}
|
2010-11-03 20:07:23 +00:00
|
|
|
legend {
|
|
|
|
display: none;
|
2011-02-01 21:19:58 +00:00
|
|
|
}
|