blob: 3d926e8e74102092f96acaf14123a09af92a8271 (
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
|
BODY {
font-family: helvetica, arial, lucida sans, sans-serif;
background-color: white;
}
H1, H2, H3 {
color: blue;
font-size: 120%;
padding: 2px;
margin-top: 0px;
}
H1 {
background-color: #EEEEFF;
color: blue;
}
H2 {
background-color: #DDDDFF;
color: blue;
}
H3 {
background-color: #CCCCFF;
color: blue;
}
H4 {
color: blue;
}
TR.qandadiv TD {
padding-top: 1em;
}
DIV.navhead {
font-size: 80%;
}
A:link {
color: #36F;
}
A:visited {
color: #96C;
}
A:active {
color: #F63;
}
TR.question {
color: #33C;
font-weight: bold;
}
TR.question TD {
padding-top: 1em;
}
DIV.variablelist {
padding-left: 2em;
color: #33C;
}
P {
color: black;
}
DIV.note, DIV.warning, DIV.caution, DIV.tip, DIV.important {
border: dashed 1px;
background-color: #EEEEFF;
width: 40em;
}
PRE.programlisting, PRE.screen {
border: #630 1px dashed;
color: #630;
}
|