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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
body {
background-color:#EEEEEF;
}
h1 {
font-family:Helvetica, sans-serif;
font-size:16pt;
font-style:normal;
line-height:14pt;
margin-top:0pt;
margin-bottom:0pt;
}
h2 {
font-family:Helvetica, sans-serif;
font-size:14pt;
font-style:normal;
line-height:14pt;
margin-top:0pt;
margin-bottom:0pt;
}
h3 {
font-family:Helvetica, sans-serif;
font-size:12pt;
font-style:normal;
line-height:14pt;
margin-top:0pt;
margin-bottom:0pt;
}
h4 {
font-family:Helvetica, sans-serif;
font-size:10pt;
font-style:normal;
line-height:14pt;
margin-top:0pt;
margin-bottom:0pt;
}
a, body, div, li, ol, span, table, td, tr, ul {
color:#000000;
font-family:Helvetica, sans-serif;
font-size:10pt;
font-style:normal;
line-height:14px;
margin-top:0px;
margin-bottom:0px;
}
*.small {
font-family:Helvetica, sans-serif;
font-size:8pt;
font-style:normal;
line-height:9px;
margin-top:0px;
margin-bottom:0px;
}
body, div, li, ol, span, table, td, tr, ul {
text-decoration:none;
}
a:hover {
color:#0000FF;
}
a.unknown {
color:#990000;
}
a.known {
color:#009900;
}
a.extern {
color:#000099;
}
*.tt {
font-family:Courier,Terminal,sans-serif;
font-size:8pt;
line-height:9px;
}
.Menu {
width: 100;
}
.MenuHeader {
background-color: #aabbaa;
font-size: 1;
font-weight:bold;
}
.MenuItem {
background-color: #889988;
color:white;
font-weight:bold;
text-decoration:none;
font-size:11px;
padding-top: 2;
padding-bottom: 2;
}
.MenuItemLink {
color: white;
font-weight:bold;
text-decoration:none;
font-size:11px;
}
a.MenuItemLink:hover {
color:#EEFF00;
font-weight:bold;
text-decoration:none;
}
.MenuSpacer {
height: 6;
}
.Headline {
font-weight: bold;
font-size: 160%;
font-family: Helvetica, Arial;
text-align: center;
}
.Heading {
background-color: #ccddcc;
height: 36px;
}
.TableHeader {
background-color: #aabbaa;
}
.TableCellDark {
background-color: #ccddcc;
}
.TableCellLight {
background-color: #ddeedd;
}
.TableCellSummary {
background-color: #ffbbaa;
}
.WikiBackground {
background-color: #fefefe;
}
.MessageBackground {
background-color: #ffffff;
}
|