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
|
/* XLSF 2007 */
body {
background:#333 url(image/bg-strip-dark.png) 0px 0px;
font-family:lighter "Helvetica Neue Light","Helvetica Neue",georgia,"times new roman","Arial Rounded MT Bold",helvetica,verdana,tahoma,arial,"sans serif";
font-size:75%;
color:#666;
}
h1, h1 a {
color:#999;
text-decoration:none;
}
h1 {
color:#999;
margin-bottom:0;
margin-left:-5px;
margin-top:0;
padding-left:5px;
padding-right:5px;
}
h1, h2, h3 {
clear:both;
float:left;
font-family:lighter "Helvetica Neue Light","Helvetica Neue",georgia,"times new roman","Arial Rounded MT Bold",helvetica,verdana,tahoma,arial,"sans serif";
font-size:3em;
font-size-adjust:none;
margin-bottom:0.25em;
padding-bottom:1px;
}
h1, h2 {
letter-spacing:-1px;
margin-bottom:0;
margin-left:-5px;
margin-top:0;
padding-left:5px;
padding-right:5px;
}
a {
color:#6699cc;
padding:0px 2px;
text-decoration:none;
}
a:hover {
background:#6699cc;
color:#fff;
}
#lights {
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
overflow:hidden;
}
.xlsf-light {
position:absolute;
}
body.fast .xlsf-light {
opacity:0.9;
}
.xlsf-fragment {
position:absolute;
background:transparent url(image/bulbs-50x50-fragments.png) no-repeat 0px 0px;
width:50px;
height:50px;
}
.xlsf-fragment-box {
position:absolute;
left:0px;
top:0px;
width:50px;
height:50px;
*width:100%;
*height:100%;
display:none;
}
.xlsf-cover {
position:fixed;
left:0px;
top:0px;
width:100%;
height:100%;
background:#fff;
opacity:1;
z-index:999;
display:none;
}
/*
.xlsf-light.bottom {
height:49px;
border-bottom:1px solid #006600;
}
.xlsf-light.top {
height:49px;
border-top:1px solid #009900;
}
*/
|