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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
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;
}
UL {
list-style-type: circle;
}
#Content>p {margin:0px;}
#Content>p+p {text-indent:30px;}
#Content {
margin:0px 50px 50px 160px;
padding:10px;
}
#Menu {
position:absolute;
top:120px;
left:10px;
width:150px;
padding:10px;
line-height:17px;
/* Again, the ugly brilliant hack. */
voice-family: "\"}\"";
voice-family:inherit;
width:140px;
}
/* Again, "be nice to Opera 5". */
body>#Menu {width:140px;}
|