blob: f635c2447f6d3ea0871451afa56a24cc92fd9e63 (
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
|
#gSlideshowOverlay {
border: none;
margin: 0;
padding: 0;
background-color: #000;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
opacity: 0.7;
filter: alpha(opacity=70);
-moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial;
-moz-background-inline-policy: -moz-initial;
z-index: 2001;
}
#gSlideShowImages {
z-index: 2002;
}
#gSlideShowImages img {
display: none;
float: left;
z-index: 2002;
}
#gSlideshowButtonPanel {
bottom: .5em;
position: absolute;
width: 100%;
z-index: 2004;
}
#gSlideshowButtonPanel div {
background-color: #000;
color: #fff;
filter: alpha(opacity=70);
height: 55px;
margin: 0 auto;
opacity: 0.7;
width: 232px;
z-index: 2004;
}
#gSlideshowPrevious,
#gSlideshowPause,
#gSlideshowResume,
#gSlideshowResume,
#gSlideshowClose,
#gSlideshowNext {
background-image: url(buttons.png);
background-repeat: no-repeat;
display: block;
float: left;
height: 55px;
overflow: hidden;
text-indent: -99999px;
width: 58px;
}
#gSlideshowPrevious {
background-position: 0 0;
}
#gSlideshowPrevious:hover {
background-position: -58px 0;
}
#gSlideshowPause {
background-position: -174px 0;
}
#gSlideshowPause:hover {
background-position: -116px 0;
}
#gSlideshowResume {
background-position: -290px 0;
display: none;
}
#gSlideshowResume:hover {
background-position: -232px 0;
}
#gSlideshowNext {
background-position: -406px 0;
}
#gSlideshowNext:hover {
background-position: -348px 0;
}
#gSlideshowClose {
background-position: -464px 0;
}
#gSlideshowClose:hover {
background-position: -522px 0;
}
|