blob: e478203c69bb5e61b3607308654858803b36563c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
body {
font-family: sans-serif;
margin: 0px;
}
#header {
background: #4d79b5;
padding-left: 10px;
}
#header a{
display: block;
padding: 8px;
color: #fff;
text-decoration: none;
}
#content, #footer{
padding: 0px 20px 16px;
}
h1 {
margin-top: 0;
font-size: 1em;
}
h2 {
font-size: 1.5em;
margin: 0.5em 0;
}
h3 {
font-size: 1em;
}
a:link, a:visited, a:active {
text-decoration: none;
color: #222;
}
a:hover {
text-decoration: underline;
}
table.summary th {
width: 150px;
font-weight: normal;
text-align: left;
}
table.summary tr.even {
/* background: #eeeeee; */
}
table.summary tr.odd {
/* background: #cccccc; */
}
table.summary td {
width: 50px;
text-align: right;
}
img {
border: 0;
}
ul {
margin: 0;
padding: 0;
}
li {
display: inline;
margin-left: 10px;
}
hr {
height: 0;
border: 0;
margin-bottom: 0;
border-top: 1px solid #000;
}
.point {
cursor: pointer;
}
.small {
font-size: 0.7em;
}
.warn {
font-weight: bold;
color: #D50100;
}
|