blob: 2f120f0309c55e3462ad616c82846a61dcd8f0a4 (
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
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
|
#menu {
list-style-type: none;
float: left;
border-right: 1px dotted #aaa;
background-color: #fff;
padding: 1.2em 0.5em;
width: 10em;
margin-left: 0.2em;
text-align:center;
height: 30em;
}
#menu li {
margin: 0.3em 0.2em;
padding: 0.2em;
/*border-top: 1px dotted;
border-bottom: 1px dotted;*/
background-color: #d9dfe8;
cursor: pointer;
}
#menu li:hover {
background-color: #b9c4d5;
}
#menu a {
font-family: arial, helvetica, sans-serif;
text-decoration: none;
color: #000;
width: 9em;
}
#menu li.active {
background-color: #7b90af;
}
#menu li.submenu {
margin: 0.2em 0.2em 0.2em 1.5em;
padding: 0.1em 0.4em;
text-align:right;
font-size: 0.9em;
}
#content {
font-family: arial, helvetica, sans-serif;
font-size: 1em;
margin-left: 0em;
}
#content li {
text-align:left;
}
#logo {
margin-left: 0.7em;
}
p {
text-align:justify;
}
h1 {
font-size:1.2em;
}
h2 {
font-size:1.0em;
}
h3 {
font-size:0.8em;
font-weight:normal;
}
h4 {
font-size:0.95em;
}
a {color:#214478; text-decoration:none;}
a:hover {text-decoration:underline;}
#lightbox{
background-color:#eee;
padding: 10px;
border-bottom: 2px solid #666;
border-right: 2px solid #666;
}
#lightboxDetails{
font-size: 0.8em;
padding-top: 0.4em;
}
#lightboxCaption{ float: left; }
#keyboardMsg{ float: right; }
#lightbox img{ border: none; }
#overlay img{ border: none; }
#overlay{ background-image: url(overlay.png); }
.downloadTable { font-size: 0.95em; }
.downloadTable th {
border-bottom: 1px solid #000;
border-left: 2em solid #fff;
border-right: 2em solid #fff;}
.downloadTable td { padding: 0.1em 0.5em; text-align: left;}
.downloadTable tr:hover td { background-color: #eef; }
.code {
font-family: monospace;
}
p.code {
border: 1px dashed;
margin: 0.5em;
padding: 0.5em;
background-color: #d9dfe8;
}
.newsentry {
/* background: #f2f4f7; */
/*padding: 0.2em;*/
margin: 0.5em 0em;
padding: 0 0.5em;
border: 1px dotted #aaa;
background-color: #d9dfe8;
}
|