1
|
@charset "UTF-8";
|
2
|
/* <![CDATA[ */
|
3
|
/*
|
4
|
*/
|
5
|
* { margin :0px auto; padding :0px; }
|
6
|
* html body * { overflow :visible; }
|
7
|
|
8
|
html {
|
9
|
padding:0; margin:0; border:0;
|
10
|
font-size:85%; font-family: Arial, Verdana, Helvetica, sans-serif;
|
11
|
color: #202020;
|
12
|
overflow :-moz-scrollbars-vertical; overflow-x :auto;
|
13
|
}
|
14
|
table {font-size: 1em;}
|
15
|
body {
|
16
|
padding: 0; border:0; margin: 0;
|
17
|
background: url('background.png') repeat-x 0px 0px;
|
18
|
background-color: #a8bccb;
|
19
|
height: 101%;
|
20
|
}
|
21
|
|
22
|
div.body {
|
23
|
width: 790px;
|
24
|
margin: 1em auto;
|
25
|
padding: 20px 20px 5px 20px;
|
26
|
background-color: #ffffff;
|
27
|
border: solid 1px #305c8d
|
28
|
}
|
29
|
div.content {
|
30
|
margin-top:20px;
|
31
|
}
|
32
|
|
33
|
/*
|
34
|
TABLE Elements
|
35
|
*/
|
36
|
table {
|
37
|
background-color: #f8f8ff;
|
38
|
margin-top: 15px;
|
39
|
margin-bottom: 5px;
|
40
|
width: 100%;
|
41
|
border-style: solid;
|
42
|
border-width: 1px 2px 2px 1px;
|
43
|
border-color: #a3baca;
|
44
|
}
|
45
|
table > thead {
|
46
|
background-color: #f2f1ff;
|
47
|
}
|
48
|
table > thead > tr {
|
49
|
}
|
50
|
table > thead > tr > th {
|
51
|
color: #555758;
|
52
|
font-size: 1.15em;
|
53
|
padding: 1.2em 1em;
|
54
|
}
|
55
|
table > thead > tr > td {
|
56
|
color: #555758;
|
57
|
font-size: 1.08em;
|
58
|
padding: 1.2em 1em;
|
59
|
}
|
60
|
table > tbody {
|
61
|
display: block;
|
62
|
}
|
63
|
table > tbody > tr {
|
64
|
border-bottom :1px solid #222222; /* #d2d1cc; */
|
65
|
padding :0.8em 0 0.2em 0;
|
66
|
width :100%;
|
67
|
}
|
68
|
table > tbody > tr > th {
|
69
|
font-size: 1em;
|
70
|
width: 1%;
|
71
|
padding-left: 0.8em; padding-right: 0.8em;
|
72
|
vertical-align: top;
|
73
|
text-align: right;
|
74
|
white-space: nowrap;
|
75
|
}
|
76
|
table > tbody > tr > td {
|
77
|
font-size: 1em;
|
78
|
width: 19%;
|
79
|
padding-left: 0.8em; padding-right: 0.8em;
|
80
|
vertical-align: top;
|
81
|
text-align: left;
|
82
|
line-height :2em;
|
83
|
}
|
84
|
|
85
|
td.step-row {
|
86
|
line-height : 3em;
|
87
|
color : #666666;
|
88
|
font-weight : bold;
|
89
|
font-size : 100%;
|
90
|
}
|
91
|
td.name {
|
92
|
width : 180px;
|
93
|
color: #666666;
|
94
|
vertical-align :middle;
|
95
|
font-weight : bold;
|
96
|
font-size : 90%;
|
97
|
float :left;
|
98
|
}
|
99
|
td.value {
|
100
|
width : 100%;
|
101
|
vertical-align :middle;
|
102
|
}
|
103
|
td.value input {
|
104
|
width : 100%;
|
105
|
vertical-align :middle;
|
106
|
}
|
107
|
|
108
|
|
109
|
h1.step-row {
|
110
|
margin : 0;
|
111
|
display :inline;
|
112
|
color : #6699ff;
|
113
|
}
|
114
|
/*
|
115
|
FORM Elements
|
116
|
*/
|
117
|
form { margin: 0; }
|
118
|
input, select { padding: 2px; border: solid 1px #a3baca; }
|
119
|
input:focus, select:focus { background: #fdf8e8; }
|
120
|
input.submit {
|
121
|
color: #305c8d;
|
122
|
font-size: 12px;
|
123
|
font-weight: bold;
|
124
|
text-transform: uppercase;
|
125
|
letter-spacing: 1px;
|
126
|
padding: 6px;
|
127
|
margin: 1em 0;
|
128
|
cursor: pointer;
|
129
|
border: outset 2px green;
|
130
|
}
|
131
|
input.submit:hover {
|
132
|
border-style: inset;
|
133
|
}
|
134
|
input.submit.bad {
|
135
|
background-color: #fde8e8;
|
136
|
border-color: red;
|
137
|
}
|
138
|
input.submit.good {
|
139
|
background-color: #deffde;
|
140
|
border-color: green;
|
141
|
}
|
142
|
/*
|
143
|
COMMON Elements
|
144
|
*/
|
145
|
img {border: none; }
|
146
|
p { margin: 11px 0 4px 0 }
|
147
|
h1 { color: #3a628f; font-size: 1.3em; margin: 10px 0 5px; border-top: medium none }
|
148
|
a, a:link, a:visited, a:active { color: #003366; text-decoration: underline }
|
149
|
a:focus {outline: none; }
|
150
|
a:hover { color: #336699 }
|
151
|
/*
|
152
|
HINTS
|
153
|
*/
|
154
|
|
155
|
.warning, .error {
|
156
|
color: #b70000;
|
157
|
line-height: 1.2em;
|
158
|
background-color: #fde8e8;
|
159
|
margin-top: 0.5em;
|
160
|
padding: 0.3em 0.5em;
|
161
|
border: solid 1px
|
162
|
}
|
163
|
.warning {
|
164
|
color: #ca6800;
|
165
|
}
|
166
|
.bad { color: #b70000; }
|
167
|
.good { color: #118301; }
|
168
|
.warn { color: #ca6800; }
|
169
|
.hint { color: #464646; font-size: 0.85em; }
|
170
|
.small { font-size: 0.85em; }
|
171
|
.italic { font-style: italic; }
|
172
|
.center { text-align: center; }
|
173
|
.hide { display: none; }
|
174
|
/*
|
175
|
List Elements
|
176
|
*/
|
177
|
ul { margin: 0; padding: 2px 0 2px 15px; }
|
178
|
li { list-style-type: square; margin: 0; }
|
179
|
/* ************************************************************************** */
|