blob: 9c7fa8eb196fb5ac18d96420b8c647688d989f64 (
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
|
html {
margin: 0px;
}
body {
margin: 0px;
font-family: Bitstream Vera Sans, Helvetica, Sans;
font-size: 10pt;
}
form {
margin: 0px;
padding: 0px;
}
p {
margin: 5px;
}
h1 {
margin: 5px;
margin-bottom: 0px;
font-size: 1.2em;
font-weight: bold;
}
h2 {
margin: 5px;
font-size: 1.1em;
font-weight: normal;
}
#topbar {
border-top: 1px solid #000000;
background-color: #494949;
}
#topbar table tr td a {
text-decoration: none;
}
#topbar table tr td a:hover {
color: #ffffff;
text-decoration: underline;
}
#leftbar {
background-color: #ffffff;
border-top: 1px solid #000000;
}
#header {
border-top: 1px solid #000000;
}
#content {
padding: 7px 5px 5px;
}
#menu,#submenu {
width: 150px;
margin: 0px;
margin-bottom: 10px;
padding: 0px;
border-right: 1px solid #ffffff;
list-style: none;
}
#menu li {
width: 150px;
border-bottom: 1px solid #ffffff;
}
#submenu li {
width: 140px;
margin-left: 10px;
border-bottom: 1px solid #ffffff;
}
a.menuitem {
display: block;
position: relative;
margin: 0px;
padding: 1px;
padding-left: 4px;
background-color: #a6afc2;
color: #000000;
text-decoration: none;
}
a.menuitem:hover {
color: #ffffff;
}
.box {
border: 1px solid #000000;
font-size: 0.8em;
}
.box td {
border: none;
}
td.boxtitle {
padding: 5px;
border-top: 1px solid #d1ddf5;
border-right: 1px solid #7a818f;
border-bottom: 1px solid #7a818f;
border-left: 1px solid #d1ddf5;
background-color: #a5acba;
font-size: 1.2em;
font-weight: bold;
}
.table {
border: none;
border-spacing: 5px;
}
.table th {
padding: 2px 5px 0px;
border: none;
text-align: left;
}
.table td {
padding: 5px 5px 0px;
border: none;
border-top: 1px dotted #7a818f;
}
.optiongroup td {
padding-top: 5px;
border: none;
}
.optiongroup td:first-child {
padding-left: 5px;
}
.optiongroup td:last-child {
padding-right: 5px;
}
.optiongroup tr:last-child td {
padding-bottom: 5px;
}
|