Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.3.0
*/
/* MenuBar style rules */
 
.yui-skin-sam .yuimenubar {
 
    border: solid 1px #808080;
    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
 
}
 
/* 
    The following two style rules cause a MenuBar's UL to clear its 
    floating LIs.
*/
 
.yui-skin-sam .yuimenubar .bd,
.yui-skin-sam .yuimenubar ul {
 
    *zoom: 1;   /* For IE */
 
}
 
.yui-skin-sam .yuimenubar>.bd>ul:after {
 
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    line-height: 0;
 
}
 
 
/* MenuBarItem style rules */
 
.yui-skin-sam .yuimenubaritem {
 
    float: left;
 
}
 
.yui-skin-sam .yuimenubarnav .yuimenubaritem {
 
    border-right: solid 1px #ccc;
 
}
 
.yui-skin-sam .yuimenubaritemlabel {
 
    display: block;
    *display: inline-block; /* For IE */
    font-size: 93%;  /* 12px */
    line-height: 2;  /* ~24px */
    *line-height: 1.9; /* For IE */
    padding: 0 10px;
    color: #000;
    text-decoration: none;
    outline: none;
    cursor: default;
    border-style: solid;
    border-color: #808080;
    border-width: 1px 0;
    position: relative;
    margin: -1px 0;
 
}
 
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel {
 
    padding-right: 20px;
 
}
 
.yui-skin-sam .yuimenubaritemlabel .submenuindicator {
    
    /*
        Set height and width to 1px so screen readers announce the content of 
        the element.
    */
 
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
 
}
 
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel .submenuindicator {
    
    top: 50%;
    right: 8px;
    left: auto; /* Override "left" property set by previous style rule */
    margin-top: -3px;
    height: 4px;
    width: 7px;
    text-indent: 8px;
    background-position: -16px -856px;
 
}
 
 
/* MenuBarItem states */
 
/* Selected MenuBarItem */
 
.yui-skin-sam .yuimenubaritem a.selected {
 
    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
    border-color: #7D98B8;
 
}
 
.yui-skin-sam .yuimenubarnav .yuimenubaritem a.selected {
 
    border-left-width: 1px;
    margin-left: -1px;
    *left: -1px;    /* For IE */
 
}
 
.yui-skin-sam .yuimenubar a.selected .submenuindicator {
 
    background: transparent;
 
}
 
.yui-skin-sam .yuimenubarnav a.selected .submenuindicator {
 
    /*
        Reset the value of the "background" property since it is set to 
        "transparent" by the previous rule.
    */
 
    background: url(../../../../assets/skins/sam/sprite.png) repeat-x -16px -856px;
 
}
 
 
/* Disabled  MenuBarItem */
 
.yui-skin-sam .yuimenubaritem a.disabled {
 
    cursor: default;
    color: #A6A6A6;
 
}
 
.yui-skin-sam .yuimenubarnav .yuimenubaritem a.disabled .submenuindicator {
 
    background-position: -16px -881px;
 
}
 
 
/* Menu style rules */
 
.yui-skin-sam .yuimenu .bd {
 
    position: relative;
    top: 0;
    left: 0;
    border: solid 1px #808080;
    background-color: #fff;
    z-index: 1;
    
}
 
.yui-skin-sam .yuimenu ul {
 
    padding: 3px 0;
    border-width: 1px 0 0 0;
    border-color: #ccc;
    border-style: solid;
 
}
 
.yui-skin-sam .yuimenu ul.first-of-type {
 
    border-width: 0;
 
}
 
 
/* Group titles */
 
.yui-skin-sam .yuimenu h6 { 
 
    font-size: 93%;  /* 12px */
    font-weight: bold;
    line-height: 1.5;  /* 18px */
    *line-height: 1.45; /* For IE */
    border-style: solid;
    border-color: #ccc;
    border-width: 1px 0 0 0;
    color: #a4a4a4;    
    padding: 3px 10px 0 10px;
 
}
 
.yui-skin-sam .yuimenu ul.hastitle,
.yui-skin-sam .yuimenu h6.first-of-type {
 
    border-width: 0;
 
}
 
 
/* Top and bottom scroll controls */
 
.yui-skin-sam .yuimenu .topscrollbar,
.yui-skin-sam .yuimenu .bottomscrollbar {
 
    position: relative;
    height: 16px;
    border: solid 1px #808080;
    background: #fff url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;
 
}
 
.yui-skin-sam .yuimenu .topscrollbar {
 
    z-index: 2;
    border-bottom-color: #ccc;
    margin-bottom: -1px;
    background-position: center -950px;
 
}
 
.yui-skin-sam .yuimenu .topscrollbar_disabled {
 
    background-position: center -975px;
 
}
 
.yui-skin-sam .yuimenu .bottomscrollbar {
 
    z-index: 3;
    border-top-color: #ccc;
    margin-top: -1px;
    background-position: center -850px;
 
}
 
.yui-skin-sam .yuimenu .bottomscrollbar_disabled {
 
    background-position: center -875px;
 
}
 
 
/* MenuItem style rules */
 
.yui-skin-sam .yuimenuitemlabel {
 
    font-size: 93%;  /* 12px */
    line-height: 1.5;  /* 18px */
    *line-height: 1.45; /* For IE */
    padding: 0 20px;
    display: block;
    color: #000;
    text-decoration: none;
    outline: none;
    position: relative;
    cursor: default;
 
}
 
.yui-skin-sam .yuimenuitemlabel .helptext {
 
    font-style: normal;
    margin: 0 0 0 40px;
    
}
 
.yui-skin-sam .yuimenuitemlabel .submenuindicator,
.yui-skin-sam .yuimenuitemlabel .checkedindicator,
.yui-skin-sam .yuimenubaritemlabel .submenuindicator {
    
    position: absolute;
    overflow: hidden;
    background: url(../../../../assets/skins/sam/sprite.png) no-repeat;
 
}
 
.yui-skin-sam .yuimenuitemlabel .submenuindicator {
 
    top: 50%;
    right: 8px;
    margin-top: -3px;
    height: 7px;
    width: 4px;
    text-indent: 5px;
    background-position: 0 -906px;
 
}
 
.yui-skin-sam .yuimenuitemlabel .checkedindicator {
 
    top: 50%;
    left: 8px;
    margin-top: -3px;
    height: 7px;
    width: 7px;
    text-indent: 8px;
    background-position: 0 -1006px;
 
}
 
 
/* Menu states */
 
/* Visible Menu */
 
.yui-skin-sam .yui-menu-shadow-visible {
 
    top: 2px;
    right: -3px;
    left: -3px;
    bottom: -3px;
    background-color: #000;
    opacity: .12;
    *filter: alpha(opacity=12);  /* For IE */
    visibility: visible;
 
}
 
.yui-skin-sam .visible .bd,
.yui-skin-sam .visible .yuimenuitem {
 
    _zoom: 1;   /* For IE 7 Quirks Mode and IE 6 Standards and Quirks Mode */
 
}
 
.yui-skin-sam .visible .yuimenuitemlabel {
 
    *zoom: 1;   /* For IE */
 
}
 
.yui-skin-sam .visible .yuimenuitemlabel .helptext {
 
    float: right;
    width: 100%;
    text-align: right;
    margin: -1.5em 0 0 0;
    *margin: -1.45em 0 0 0;  /* For IE*/
 
}
 
 
/* MenuItem states */
 
/* Selected MenuItem */
 
.yui-skin-sam .yuimenuitem a.selected {
 
    /*
        Use "background" over "background-color" to clear background image 
        set by the ".yuimenubaritem a.selected" rule.
    */
 
    background: #B3D4FF;
 
}
 
/*
    Redefine the background for MenuItem instances that are children of
    a Menubar since the 
    ".yui-skin-sam .yuimenubar a.selected .submenuindicator" rule sets the 
    "background" property to "transparent"
*/
 
.yui-skin-sam .yuimenubar .yuimenuitem a.selected .submenuindicator {
 
    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -906px;
 
}
 
/*
    Remove borders and margin added by the style rule 
    ".yui-skin-sam .yuimenubarnav .yuimenubaritem a.selected"
*/
 
.yui-skin-sam .yuimenubarnav .yuimenuitem a.selected {
 
    border-width: 0;
    margin: 0;
    *left: 0;   /* For IE */
 
}
 
 
/* Disabled MenuItem */
 
.yui-skin-sam .yuimenuitem a.disabled {
 
    cursor: default;
    color: #A6A6A6;
 
}
 
.yui-skin-sam .yuimenuitem a.disabled .submenuindicator {
 
    background-position: 0 -931px;
 
}
 
.yui-skin-sam .yuimenuitem a.disabled .checkedindicator {
 
    background-position: 0 -1031px;
 
}