summaryrefslogtreecommitdiff
path: root/tests/typedetect/test5.css
blob: 9e9d8d7c1ec009bb89b7fc1f6104e77d3c7532ce (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
body {
	background: #8b8b8b;
	color: #303030;
	font: 76% Verdana, Tahoma, Arial, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
}

a {
	color: #505050;
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	color: #808080;
	text-decoration: underline;
}

p {
	line-height: 1.5em;
	margin: 0 0 15px;
}

img {
	border-style: none;
}

/*** Main container ***/
#container {
	background: #f0f0f0 url(../img/bodybg.jpg) repeat-x;
	color: #303030;
	margin: 0;
	min-width: 770px;
	padding: 0;
	text-align: left;
	width: 100%;
}

/*** Header section ***/
#sitename {
	color: #ffffff;
	height: 92px;
	margin: 0 20px 10px;
	text-align: left;
/*	background-image: url(../img/logo.png); */
	background-repeat: no-repeat;
	background-position: left;
}

#sitename h1,#sitename h2 {
	font-weight: 400;
	letter-spacing: -2px;
	margin: 0;
	padding: 0 0 0 100px;
}

#sitename h1 {
	font-size: 2.4em;
	padding-top: 20px;
}

#sitename h2 {
	font-size: 1.6em;
}

/*** Horizontal menu ***/
#mainmenu {
	float: left;
	margin-bottom: 25px;
}

#mainmenu ul {
	font-size: 16px;
	margin: 0;
	padding: 0;
}

#mainmenu li {
	float: left;
	height: 35px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#mainmenu a {
	border-right: 1px solid #b0b0b0;
	color: #606060;
	display: block;
	font-size: 0.7em;
	padding: 11px 10px 10px;
	text-transform: uppercase;
}

#mainmenu a:hover {
	background: #f0f0f0 url(../img/menuhover.jpg) top left repeat-x;
	color: #505050;
	text-decoration: none;
}

#mainmenu a.current {
	background: #f0f0f0 url(../img/menuhover.jpg) top left repeat-x;
	color: #505050;
	text-decoration: none;
}

/*** Content wrap ***/
#wrap {
	clear: both;
	font-size: 0.9em;
	padding: 0;
}

/*** Sidebars ***/
#leftside,#rightside {
	margin: 0;
	padding: 0 10px 10px;
}

#leftside {
	float: left;
	margin-right: 10px;
	width: 165px;
}

#rightside {
	float: right;
	margin-left: 10px;
	width: 10px;
}

#leftside h1,#rightside h1 {
	color: #505050;
	font-size: 1.6em;
	font-weight: bold;
	letter-spacing: -1px;
	margin: 0 0 12px;
}

#leftside h2,#rightside h2 {
	font-size: 1.1em;
	margin: 0 0 20px;
}

#leftside p,#rightside p {
	font-size: 0.9em;
	line-height: 1.4em;
	margin: 0 0 16px 10px;
}

.linklist {
	list-style: none;
	margin: 0 0 16px 10px;
	padding: 0;
}

.linklist li {
	margin-bottom: 0.7em;
}

/*** Sidebar menu ***/
.nav {
	background: #e8e9ea;
	border: 1px solid #b0b0b0;
	color: #606060;
	display: block;
	margin-top: 8px;
	padding: 5px 4px 4px 10px;
	position: relative;
	text-transform: uppercase;
	width: 140px;
}

.nav:hover,.active {
	background: #f8f9fa;
	border: 1px solid #909090;
	color: #303030;
	text-decoration: none;
}

.sub {
	font-size: 0.8em;
	letter-spacing: 1px;
	margin: 3px 0 2px 10px;
	padding: 4px 2px 2px 8px;
	width: 125px;
}

/*** Content ***/
#content,#contentalt {
	background-color: #fafcff;
	border: 1px solid #909090;
	color: #2a2a2a;
	padding: 15px 20px 5px;
}

#content {
	margin: 0 200px;
}

#contentalt {
	margin: 0 200px 0 20px;
}

#content h1,#content h2,#contentalt h1,#contentalt h2 {
	background-color: inherit;
	color: #606060;
	font-size: 1.8em;
	font-weight: bold;
	letter-spacing: -1px;
	margin: 0 0 15px;
	padding: 0;
}

#content h2,#contentalt h2 {
	font-size: 1.6em;
	margin-bottom: 10px;
}

#content img,#contentalt img {
	border: 1px solid #b0b0b0;
	/*margin: 5px 15px 6px;*/
	padding: 5px;
}

#content .datatbl {
	border-collapse: collapse;
}

#content #datatbl {
	border-collapse: collapse;
}

#content #datatbl th {
	border-bottom: 1px solid black;
	padding: 2px;	
}

#content #datatbl tr {
	border-bottom: 1px solid #D0D0D0;
}

#content #datatbl td {
	padding: 3px;
}

/*** Footer ***/
#footer {
	background: #8b8b8b url(../img/footerbg.jpg) top left repeat-x;
	clear: both;
	color: #d0d0d0;
	font-size: 0.9em;
	font-weight: bold;
	margin: 0;
	padding: 20px 0;
	text-align: center;
	width: 100%;
}

#footer a {
	color: #d0d0d0;
	font-weight: bold;
}

/*** Various classes ***/
.thumbnail {
	background: #fafbfc;
	border: 1px solid #b0b0b0;
	margin: 0 0 10px 10px;
	padding: 5px;
}

.searchform {
	margin: 0;
}

.searchbox {
	background: #f0f0f0;
	border: 1px solid #b0b0b0;
	margin: 0 4px 0 0;
	width: 100px;
}

.searchbutton {
	background: #f0f0f0;
	border: 1px solid #b0b0b0;
}

.clearingdiv {
	clear: both;
	height: 30px;
	width: 1px;
}

.hide {
	display: none;
}

/*** Text format ***/
.intro {
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: -1px;
}

.small {
	font-size: 0.8em;
}

.large {
	font-size: 1.4em;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

/*** End of file ***/