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
|
/* Standard Fonts */
span /* Applicable by default in all fonts */
{
color: #666;
font-family: Bitstream Vera Sans, Lucida Grande, Arial, sans-serif;
}
span.f1 /* Important */
{
font-size: 20px;
letter-spacing: 1px;
}
span.f2 /* Title */
{
font-size: 14px;
color: rgb(108, 131, 176);
font-weight: bold;
}
span.f3 /* Sub Title */
{
color: #888;
font-size: 14px;
font-weight: bold;
}
span.f4 /* Content Text */
{
color: #444;
font-size: 12px;
}
span.f5 /* Content Small */
{
color: #333;
font-size: 11px;
}
span.f6 /* Red Message */
{
color: #b06d6e;
font-size: 14px;
font-weight: bold;
}
span.f7 /* Green Message */
{
color: #6db06d;
font-size: 14px;
font-weight: bold;
}
span.fix /* Monospace fixed-font */
{
color: #000;
font-family: monospace, fixed, terminal;
font-size: 12px;
}
span.error /* Content Text */
{
color: #900;
font-size: 12px;
}
span.warning /* Content Text */
{
color: #C0C000;
font-size: 12px;
}
/* Font Attribute Change (#6c83b0)*/
span.blue
{
color: rgb( 108, 131, 176 );
}
span.white
{
color: white;
}
span.black
{
color: black;
}
span.green
{
color: #6db06d;
}
span.link
{
color: rgb( 108, 131, 176 );
font-weight: bold;
}
/* Misc (c9d1e2) */
span.preHeader
{
color: rgb( 201, 209, 226 );
font-weight: bold;
font-size: 11px;
padding-right: 8px;
word-spacing: 8px;
}
span.sideBarSmallHeader
{
color: #fff;
font-weight: bold;
font-size: 11px;
padding-right: 8px;
}
a:visited {
color: rgb(108,131,176);
text-decoration: none;
font-weight: bold;
}
a:link {
color: rgb(108,131,176);
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #990000;
text-decoration: none;
font-weight: bold;
}
h1,h2,h3,h4 {
font-size: 16pt;
}
|