Newer
Older
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
/* --------------------------------------------------
Page corners
-------------------------------------------------- */
.cornerTopLeft {
background: url('/images/left-top-corner.gif') top left no-repeat;
}
.cornerTopRight {
background: url('/images/right-top-corner.gif') top right no-repeat;
}
.cornerBottomLeft {
background: url('/images/left-bottom-corner.gif') bottom left no-repeat;
}
.cornerBottomRight {
background: url('/images/right-bottom-corner.gif') bottom right no-repeat;
}
/* --------------------------------------------------
Branding
-------------------------------------------------- */
#branding {
/* background: #ffc62b;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='/images/orangefade.png'); */
}
#loginForm {
margin-right: 0.5em;
margin-bottom: 0.2em;
}
#brandingC {
background: transparent;
/* filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='/images/bgfade.png'); */
}
/* --------------------------------------------------
Menu
-------------------------------------------------- */
#navigationC ul li {
line-height: 0;
}
#navigationC ul li a {
background-image: url('/images/menu-top-right.gif');
}
#navigationC ul ul li a {
background: #ffc62b url('/images/menu-top-right.gif') norepeat top right;
}
#navigationC ul li a span {
background-image: url('/images/menu-bottom-right.gif');
}
#navigationC ul ul li a span {
background-image: url('/images/menu-bottom-right.gif');
}
/* --------------------------------------------------
Search box
-------------------------------------------------- */
#search input.text {
width: 95%;
}
/* --------------------------------------------------
Footer
-------------------------------------------------- */
#footer {
/* background: #ffc62b;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='/images/orangefade-bottom.png'); */
}
/* --------------------------------------------------
Content box (e.g. for news items)
-------------------------------------------------- */
.box {
line-height: 1.1;
}
.box .boxhead {
background: #e76808 url('/images/menu-top-left.gif') no-repeat top left;
}
.box .hollowhead, .box .hollowfoot {
font-size: 0;
}
.box .hollowhead div {
background: url('/images/border-top-left.gif') no-repeat top left;
}
.box .hollowhead div div {
background: url('/images/border-top-right.gif') no-repeat top right;
}
.box .boxhead h2, .box .boxhead h3, .error .errorhead h3 {
background: url('/images/menu-top-right.gif') no-repeat top right;
}
.box .boxfoot {
background: #e76808 url('/images/menu-bottom-left.gif') no-repeat bottom left;
}
.box .boxfoot p {
background: url('/images/menu-bottom-right.gif') no-repeat bottom right;
}
.box .hollowfoot div {
background: url('/images/border-bottom-left.gif') no-repeat bottom left;
}
.box .hollowfoot div div {
background: url('/images/border-bottom-right.gif') no-repeat bottom right;
}
/* --------------------------------------------------
Error box
-------------------------------------------------- */
.error .errorhead {
background: #ff0000 url('/images/menu-top-left.gif') no-repeat top left;
}
.errorbar {
background: #ff0000 url('/images/menu-top-left.gif') no-repeat top left;
}
.errorbar div {
background: url('/images/menu-top-right.gif') no-repeat top right;
}
.errorbar div div {
background: url('/images/menu-bottom-left.gif') no-repeat bottom left;
}
.errorbar div div div {
background: url('/images/menu-bottom-right.gif') no-repeat bottom right;
}