| 1 | html, body {
|
|---|
| 2 | height: 100%;
|
|---|
| 3 | }
|
|---|
| 4 |
|
|---|
| 5 | div#fancy_overlay {
|
|---|
| 6 | position: fixed;
|
|---|
| 7 | top: 0;
|
|---|
| 8 | left: 0;
|
|---|
| 9 | width: 100%;
|
|---|
| 10 | height: 100%;
|
|---|
| 11 | background-color: #666;
|
|---|
| 12 | display: none;
|
|---|
| 13 | z-index: 30;
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | * html div#fancy_overlay {
|
|---|
| 17 | position: absolute;
|
|---|
| 18 | height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | div#fancy_wrap {
|
|---|
| 22 | text-align: left;
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | div#fancy_loading {
|
|---|
| 26 | position: absolute;
|
|---|
| 27 | height: 40px;
|
|---|
| 28 | width: 40px;
|
|---|
| 29 | cursor: pointer;
|
|---|
| 30 | display: none;
|
|---|
| 31 | overflow: hidden;
|
|---|
| 32 | background: transparent;
|
|---|
| 33 | z-index: 100;
|
|---|
| 34 | }
|
|---|
| 35 |
|
|---|
| 36 | div#fancy_loading div {
|
|---|
| 37 | position: absolute;
|
|---|
| 38 | top: 0;
|
|---|
| 39 | left: 0;
|
|---|
| 40 | width: 40px;
|
|---|
| 41 | height: 480px;
|
|---|
| 42 | background: transparent url('fancy_progress.png') no-repeat;
|
|---|
| 43 | }
|
|---|
| 44 |
|
|---|
| 45 | div#fancy_loading_overlay {
|
|---|
| 46 | position: absolute;
|
|---|
| 47 | background-color: #FFF;
|
|---|
| 48 | z-index: 30;
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | div#fancy_loading_icon {
|
|---|
| 52 | position: absolute;
|
|---|
| 53 | background: url('fancy_loading.gif') no-repeat;
|
|---|
| 54 | z-index: 35;
|
|---|
| 55 | width: 16px;
|
|---|
| 56 | height: 16px;
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | div#fancy_outer {
|
|---|
| 60 | position: absolute;
|
|---|
| 61 | top: 0;
|
|---|
| 62 | left: 0;
|
|---|
| 63 | z-index: 90;
|
|---|
| 64 | padding: 18px 18px 33px 18px;
|
|---|
| 65 | margin: 0;
|
|---|
| 66 | overflow: hidden;
|
|---|
| 67 | background: transparent;
|
|---|
| 68 | display: none;
|
|---|
| 69 | }
|
|---|
| 70 |
|
|---|
| 71 | div#fancy_inner {
|
|---|
| 72 | position: relative;
|
|---|
| 73 | width:100%;
|
|---|
| 74 | height:100%;
|
|---|
| 75 | border: 1px solid #BBB;
|
|---|
| 76 | background: #FFF;
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 | div#fancy_content {
|
|---|
| 80 | margin: 0;
|
|---|
| 81 | z-index: 100;
|
|---|
| 82 | position: absolute;
|
|---|
| 83 | }
|
|---|
| 84 |
|
|---|
| 85 | div#fancy_div {
|
|---|
| 86 | background: #000;
|
|---|
| 87 | color: #FFF;
|
|---|
| 88 | height: 100%;
|
|---|
| 89 | width: 100%;
|
|---|
| 90 | z-index: 100;
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 | img#fancy_img {
|
|---|
| 94 | position: absolute;
|
|---|
| 95 | top: 0;
|
|---|
| 96 | left: 0;
|
|---|
| 97 | border:0;
|
|---|
| 98 | padding: 0;
|
|---|
| 99 | margin: 0;
|
|---|
| 100 | z-index: 100;
|
|---|
| 101 | width: 100%;
|
|---|
| 102 | height: 100%;
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | div#fancy_close {
|
|---|
| 106 | position: absolute;
|
|---|
| 107 | top: -12px;
|
|---|
| 108 | right: -15px;
|
|---|
| 109 | height: 30px;
|
|---|
| 110 | width: 30px;
|
|---|
| 111 | background: url('fancy_closebox.png') top left no-repeat;
|
|---|
| 112 | cursor: pointer;
|
|---|
| 113 | z-index: 181;
|
|---|
| 114 | display: none;
|
|---|
| 115 | }
|
|---|
| 116 |
|
|---|
| 117 | #fancy_frame {
|
|---|
| 118 | position: relative;
|
|---|
| 119 | width: 100%;
|
|---|
| 120 | height: 100%;
|
|---|
| 121 | display: none;
|
|---|
| 122 | }
|
|---|
| 123 |
|
|---|
| 124 | #fancy_ajax {
|
|---|
| 125 | width: 100%;
|
|---|
| 126 | height: 100%;
|
|---|
| 127 | overflow: auto;
|
|---|
| 128 | }
|
|---|
| 129 |
|
|---|
| 130 | a#fancy_left, a#fancy_right {
|
|---|
| 131 | position: absolute;
|
|---|
| 132 | bottom: 0px;
|
|---|
| 133 | height: 100%;
|
|---|
| 134 | width: 35%;
|
|---|
| 135 | cursor: pointer;
|
|---|
| 136 | z-index: 111;
|
|---|
| 137 | display: none;
|
|---|
| 138 | background-image: url(data:image/gif;base64,AAAA);
|
|---|
| 139 | outline: none;
|
|---|
| 140 | }
|
|---|
| 141 |
|
|---|
| 142 | a#fancy_left {
|
|---|
| 143 | left: 0px;
|
|---|
| 144 | }
|
|---|
| 145 |
|
|---|
| 146 | a#fancy_right {
|
|---|
| 147 | right: 0px;
|
|---|
| 148 | }
|
|---|
| 149 |
|
|---|
| 150 | span.fancy_ico {
|
|---|
| 151 | position: absolute;
|
|---|
| 152 | top: 50%;
|
|---|
| 153 | margin-top: -15px;
|
|---|
| 154 | width: 30px;
|
|---|
| 155 | height: 30px;
|
|---|
| 156 | z-index: 112;
|
|---|
| 157 | cursor: pointer;
|
|---|
| 158 | display: block;
|
|---|
| 159 | }
|
|---|
| 160 |
|
|---|
| 161 | span#fancy_left_ico {
|
|---|
| 162 | left: -9999px;
|
|---|
| 163 | background: transparent url('fancy_left.png') no-repeat;
|
|---|
| 164 | }
|
|---|
| 165 |
|
|---|
| 166 | span#fancy_right_ico {
|
|---|
| 167 | right: -9999px;
|
|---|
| 168 | background: transparent url('fancy_right.png') no-repeat;
|
|---|
| 169 | }
|
|---|
| 170 |
|
|---|
| 171 | a#fancy_left:hover {
|
|---|
| 172 | visibility: visible;
|
|---|
| 173 | }
|
|---|
| 174 |
|
|---|
| 175 | a#fancy_right:hover {
|
|---|
| 176 | visibility: visible;
|
|---|
| 177 | }
|
|---|
| 178 |
|
|---|
| 179 | a#fancy_left:hover span {
|
|---|
| 180 | left: 20px;
|
|---|
| 181 | }
|
|---|
| 182 |
|
|---|
| 183 | a#fancy_right:hover span {
|
|---|
| 184 | right: 20px;
|
|---|
| 185 | }
|
|---|
| 186 |
|
|---|
| 187 | .fancy_bigIframe {
|
|---|
| 188 | position: absolute;
|
|---|
| 189 | top: 0;
|
|---|
| 190 | left: 0;
|
|---|
| 191 | width: 100%;
|
|---|
| 192 | height: 100%;
|
|---|
| 193 | background: transparent;
|
|---|
| 194 | }
|
|---|
| 195 |
|
|---|
| 196 | div#fancy_bg {
|
|---|
| 197 | position: absolute;
|
|---|
| 198 | top: 0; left: 0;
|
|---|
| 199 | width: 100%;
|
|---|
| 200 | height: 100%;
|
|---|
| 201 | z-index: 70;
|
|---|
| 202 | border: 0;
|
|---|
| 203 | padding: 0;
|
|---|
| 204 | margin: 0;
|
|---|
| 205 | }
|
|---|
| 206 |
|
|---|
| 207 | div.fancy_bg {
|
|---|
| 208 | position: absolute;
|
|---|
| 209 | display: block;
|
|---|
| 210 | z-index: 70;
|
|---|
| 211 | border: 0;
|
|---|
| 212 | padding: 0;
|
|---|
| 213 | margin: 0;
|
|---|
| 214 | }
|
|---|
| 215 |
|
|---|
| 216 | div.fancy_bg_n {
|
|---|
| 217 | top: -18px;
|
|---|
| 218 | width: 100%;
|
|---|
| 219 | height: 18px;
|
|---|
| 220 | background: transparent url('fancy_shadow_n.png') repeat-x;
|
|---|
| 221 | }
|
|---|
| 222 |
|
|---|
| 223 | div.fancy_bg_ne {
|
|---|
| 224 | top: -18px;
|
|---|
| 225 | right: -13px;
|
|---|
| 226 | width: 13px;
|
|---|
| 227 | height: 18px;
|
|---|
| 228 | background: transparent url('fancy_shadow_ne.png') no-repeat;
|
|---|
| 229 | }
|
|---|
| 230 |
|
|---|
| 231 | div.fancy_bg_e {
|
|---|
| 232 | right: -13px;
|
|---|
| 233 | height: 100%;
|
|---|
| 234 | width: 13px;
|
|---|
| 235 | background: transparent url('fancy_shadow_e.png') repeat-y;
|
|---|
| 236 | }
|
|---|
| 237 |
|
|---|
| 238 | div.fancy_bg_se {
|
|---|
| 239 | bottom: -18px;
|
|---|
| 240 | right: -13px;
|
|---|
| 241 | width: 13px;
|
|---|
| 242 | height: 18px;
|
|---|
| 243 | background: transparent url('fancy_shadow_se.png') no-repeat;
|
|---|
| 244 | }
|
|---|
| 245 |
|
|---|
| 246 | div.fancy_bg_s {
|
|---|
| 247 | bottom: -18px;
|
|---|
| 248 | width: 100%;
|
|---|
| 249 | height: 18px;
|
|---|
| 250 | background: transparent url('fancy_shadow_s.png') repeat-x;
|
|---|
| 251 | }
|
|---|
| 252 |
|
|---|
| 253 | div.fancy_bg_sw {
|
|---|
| 254 | bottom: -18px;
|
|---|
| 255 | left: -13px;
|
|---|
| 256 | width: 13px;
|
|---|
| 257 | height: 18px;
|
|---|
| 258 | background: transparent url('fancy_shadow_sw.png') no-repeat;
|
|---|
| 259 | }
|
|---|
| 260 |
|
|---|
| 261 | div.fancy_bg_w {
|
|---|
| 262 | left: -13px;
|
|---|
| 263 | height: 100%;
|
|---|
| 264 | width: 13px;
|
|---|
| 265 | background: transparent url('fancy_shadow_w.png') repeat-y;
|
|---|
| 266 | }
|
|---|
| 267 |
|
|---|
| 268 | div.fancy_bg_nw {
|
|---|
| 269 | top: -18px;
|
|---|
| 270 | left: -13px;
|
|---|
| 271 | width: 13px;
|
|---|
| 272 | height: 18px;
|
|---|
| 273 | background: transparent url('fancy_shadow_nw.png') no-repeat;
|
|---|
| 274 | }
|
|---|
| 275 |
|
|---|
| 276 | div#fancy_title {
|
|---|
| 277 | position: absolute;
|
|---|
| 278 | bottom: -33px;
|
|---|
| 279 | left: 0;
|
|---|
| 280 | width: 100%;
|
|---|
| 281 | z-index: 100;
|
|---|
| 282 | display: none;
|
|---|
| 283 | }
|
|---|
| 284 |
|
|---|
| 285 | div#fancy_title div {
|
|---|
| 286 | color: #FFF;
|
|---|
| 287 | font: bold 12px Arial;
|
|---|
| 288 | padding-bottom: 3px;
|
|---|
| 289 | }
|
|---|
| 290 |
|
|---|
| 291 | div#fancy_title table {
|
|---|
| 292 | margin: 0 auto;
|
|---|
| 293 | }
|
|---|
| 294 |
|
|---|
| 295 | div#fancy_title table td {
|
|---|
| 296 | padding: 0;
|
|---|
| 297 | vertical-align: middle;
|
|---|
| 298 | }
|
|---|
| 299 |
|
|---|
| 300 | td#fancy_title_left {
|
|---|
| 301 | height: 32px;
|
|---|
| 302 | width: 15px;
|
|---|
| 303 | background: transparent url(fancy_title_left.png) repeat-x;
|
|---|
| 304 | }
|
|---|
| 305 |
|
|---|
| 306 | td#fancy_title_main {
|
|---|
| 307 | height: 32px;
|
|---|
| 308 | background: transparent url(fancy_title_main.png) repeat-x;
|
|---|
| 309 | }
|
|---|
| 310 |
|
|---|
| 311 | td#fancy_title_right {
|
|---|
| 312 | height: 32px;
|
|---|
| 313 | width: 15px;
|
|---|
| 314 | background: transparent url(fancy_title_right.png) repeat-x;
|
|---|
| 315 | } |
|---|