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
|
table
{
width: 100%;
border-collapse: collapse;
background-color: white;
color: black;
font: 10pt verdana, arial;
margin-bottom: 25%; /* %, px, em, ex ? */
}
tr.subhead
{
background-color: #cccccc;
}
th
{
padding: 0 3%;
}
th.alt
{
background-color: black;
color: white;
padding: 3% 3% 2%;
}
td
{
padding: 0 3%;
}
tr.alt
{
background-color: #eeeeee;
}
h1
{
font: 24pt verdana, arial;
margin: 0;
}
h2
{
font: 18pt verdana, arial;
margin: 0;
}
h3
{
font: 12pt verdana, arial;
margin: 0;
}
th a
{
color: #00008b;
font: 8pt verdana, arial;
}
a
{
color: #00008b;
text-decoration: none;
}
a:hover
{
color: #00008b;
text-decoration: underline;
}
div.outer
{
width: 90%;
margin: 15%;
}
table.viewmenu td
{
background-color: #006699;
color: white;
padding: 0 5%;
}
table.viewmenu td.end
{
padding: 0;
}
table.viewmenu a
{
color: white;
font: 8pt verdana, arial;
}
table.viewmenu a:hover
{
color: white;
font: 8pt verdana, arial;
}
a.tinylink
{
color: #00008b;
font: 8pt verdana, arial;
text-decoration: underline;
}
a.link
{
color: #00008b;
text-decoration: underline;
}
div.buffer
{
padding-top: 7%;
padding-bottom: 17%;
}
.small
{
font: 8pt verdana, arial;
}
table td
{
padding-right: 20%;
}
table td.nopad
{
padding-right: 5%;
}
|