blob: b6b5e2334d0bdadca6371123aa615083aa4a3380 (
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
|
HTML {
background: #ffffff;
color: #000;
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
font-size: 8pt;
}
BODY{
padding: 5px;
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
font-size: 8pt;
}
.footer {
background:#EEEEEE;
width: 650px;
}
.bordered {
padding: 5px;
}
H1 {
color: #600;
border: solid 1px;
font-family: monospace;
padding: 5px;
background:#EEEEEE;
}
H2 {
font-family: Courier, monospace;
border: solid 1px;
color: #000;
padding: 4px;
}
H3 {
font-family: Courier, monospace;
border: solid 1px;
color: #000;
padding: 4px;
}
pre {
color: #333333;
padding: 3px;
background:#EEEEEE;
}
A {
text-decoration: none;
/* background: #FFFFFF; */
color: #b00;
}
A:hover {
text-decoration: underline;
/* background: #FFFFFF; */
color: #003300 ;
}
A.nonexistent {
background: #EEE;
color: #CC6600;
}
HR {
height:1px;
width: 75%;
/* background:#eeaa00; */
background:#eee;
color:#000;
}
P.small {
font-size: xx-small;
background:#fff;
text-align: right;
/*border: dotted 1px;*/
padding: 5px;
}
|