highslide.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889
  1. /**
  2. * @file: highslide.css
  3. * @version: 4.1.13
  4. */
  5. .highslide-container div {
  6. font-family: Verdana, Helvetica;
  7. font-size: 10pt;
  8. }
  9. .highslide-container table {
  10. background: none;
  11. }
  12. .highslide {
  13. outline: none;
  14. text-decoration: none;
  15. }
  16. .highslide img {
  17. border: 2px solid silver;
  18. }
  19. .highslide:hover img {
  20. border-color: gray;
  21. }
  22. .highslide-active-anchor img {
  23. visibility: hidden;
  24. }
  25. .highslide-gallery .highslide-active-anchor img {
  26. border-color: black;
  27. visibility: visible;
  28. cursor: default;
  29. }
  30. .highslide-image {
  31. border-width: 2px;
  32. border-style: solid;
  33. border-color: white;
  34. }
  35. .highslide-wrapper, .highslide-outline {
  36. background: white;
  37. }
  38. .glossy-dark {
  39. background: #111;
  40. }
  41. .highslide-image-blur {
  42. }
  43. .highslide-number {
  44. font-weight: bold;
  45. color: gray;
  46. font-size: .9em;
  47. }
  48. .highslide-caption {
  49. display: none;
  50. font-size: 1em;
  51. padding: 5px;
  52. /*background: white;*/
  53. }
  54. .highslide-heading {
  55. display: none;
  56. font-weight: bold;
  57. margin: 0.4em;
  58. }
  59. .highslide-dimming {
  60. /*position: absolute;*/
  61. background: black;
  62. }
  63. a.highslide-full-expand {
  64. background: url(graphics/fullexpand.gif) no-repeat;
  65. display: block;
  66. margin: 0 10px 10px 0;
  67. width: 34px;
  68. height: 34px;
  69. }
  70. .highslide-loading {
  71. display: block;
  72. color: black;
  73. font-size: 9px;
  74. font-weight: bold;
  75. text-transform: uppercase;
  76. text-decoration: none;
  77. padding: 3px;
  78. border: 1px solid white;
  79. background-color: white;
  80. padding-left: 22px;
  81. background-image: url(graphics/loader.white.gif);
  82. background-repeat: no-repeat;
  83. background-position: 3px 1px;
  84. }
  85. a.highslide-credits,
  86. a.highslide-credits i {
  87. padding: 2px;
  88. color: silver;
  89. text-decoration: none;
  90. font-size: 10px;
  91. }
  92. a.highslide-credits:hover,
  93. a.highslide-credits:hover i {
  94. color: white;
  95. background-color: gray;
  96. }
  97. .highslide-move, .highslide-move * {
  98. cursor: move;
  99. }
  100. .highslide-viewport {
  101. display: none;
  102. position: fixed;
  103. width: 100%;
  104. height: 100%;
  105. z-index: 1;
  106. background: none;
  107. left: 0;
  108. top: 0;
  109. }
  110. .highslide-overlay {
  111. display: none;
  112. }
  113. .hidden-container {
  114. display: none;
  115. }
  116. /* Example of a semitransparent, offset closebutton */
  117. .closebutton {
  118. position: relative;
  119. top: -15px;
  120. left: 15px;
  121. width: 30px;
  122. height: 30px;
  123. cursor: pointer;
  124. background: url(graphics/close.png);
  125. /* NOTE! For IE6, you also need to update the highslide-ie6.css file. */
  126. }
  127. /*****************************************************************************/
  128. /* Thumbnail boxes for the galleries. */
  129. /* Remove these if you are not using a gallery. */
  130. /*****************************************************************************/
  131. .highslide-gallery ul {
  132. list-style-type: none;
  133. margin: 0;
  134. padding: 0;
  135. }
  136. .highslide-gallery ul li {
  137. display: block;
  138. position: relative;
  139. float: left;
  140. width: 106px;
  141. height: 106px;
  142. border: 1px solid silver;
  143. background: #ededed;
  144. margin: 2px;
  145. padding: 0;
  146. line-height: 0;
  147. overflow: hidden;
  148. }
  149. .highslide-gallery ul a {
  150. position: absolute;
  151. top: 50%;
  152. left: 50%;
  153. }
  154. .highslide-gallery ul img {
  155. position: relative;
  156. top: -50%;
  157. left: -50%;
  158. }
  159. html>/**/body .highslide-gallery ul li {
  160. display: table;
  161. text-align: center;
  162. }
  163. html>/**/body .highslide-gallery ul li {
  164. text-align: center;
  165. }
  166. html>/**/body .highslide-gallery ul a {
  167. position: static;
  168. display: table-cell;
  169. vertical-align: middle;
  170. }
  171. html>/**/body .highslide-gallery ul img {
  172. position: static;
  173. }
  174. /*****************************************************************************/
  175. /* Controls for the galleries. */
  176. /* Remove these if you are not using a gallery */
  177. /*****************************************************************************/
  178. .highslide-controls {
  179. width: 195px;
  180. height: 40px;
  181. background: url(graphics/controlbar-white.gif) 0 -90px no-repeat;
  182. margin: 20px 15px 10px 0;
  183. }
  184. .highslide-controls ul {
  185. position: relative;
  186. left: 15px;
  187. height: 40px;
  188. list-style: none;
  189. margin: 0;
  190. padding: 0;
  191. background: url(graphics/controlbar-white.gif) right -90px no-repeat;
  192. }
  193. .highslide-controls li {
  194. float: left;
  195. padding: 5px 0;
  196. margin:0;
  197. list-style: none;
  198. }
  199. .highslide-controls a {
  200. background-image: url(graphics/controlbar-white.gif);
  201. display: block;
  202. float: left;
  203. height: 30px;
  204. width: 30px;
  205. outline: none;
  206. }
  207. .highslide-controls a.disabled {
  208. cursor: default;
  209. }
  210. .highslide-controls a.disabled span {
  211. cursor: default;
  212. }
  213. .highslide-controls a span {
  214. /* hide the text for these graphic buttons */
  215. display: none;
  216. cursor: pointer;
  217. }
  218. /* The CSS sprites for the controlbar - see http://www.google.com/search?q=css+sprites */
  219. .highslide-controls .highslide-previous a {
  220. background-position: 0 0;
  221. }
  222. .highslide-controls .highslide-previous a:hover {
  223. background-position: 0 -30px;
  224. }
  225. .highslide-controls .highslide-previous a.disabled {
  226. background-position: 0 -60px !important;
  227. }
  228. .highslide-controls .highslide-play a {
  229. background-position: -30px 0;
  230. }
  231. .highslide-controls .highslide-play a:hover {
  232. background-position: -30px -30px;
  233. }
  234. .highslide-controls .highslide-play a.disabled {
  235. background-position: -30px -60px !important;
  236. }
  237. .highslide-controls .highslide-pause a {
  238. background-position: -60px 0;
  239. }
  240. .highslide-controls .highslide-pause a:hover {
  241. background-position: -60px -30px;
  242. }
  243. .highslide-controls .highslide-next a {
  244. background-position: -90px 0;
  245. }
  246. .highslide-controls .highslide-next a:hover {
  247. background-position: -90px -30px;
  248. }
  249. .highslide-controls .highslide-next a.disabled {
  250. background-position: -90px -60px !important;
  251. }
  252. .highslide-controls .highslide-move a {
  253. background-position: -120px 0;
  254. }
  255. .highslide-controls .highslide-move a:hover {
  256. background-position: -120px -30px;
  257. }
  258. .highslide-controls .highslide-full-expand a {
  259. background-position: -150px 0;
  260. }
  261. .highslide-controls .highslide-full-expand a:hover {
  262. background-position: -150px -30px;
  263. }
  264. .highslide-controls .highslide-full-expand a.disabled {
  265. background-position: -150px -60px !important;
  266. }
  267. .highslide-controls .highslide-close a {
  268. background-position: -180px 0;
  269. }
  270. .highslide-controls .highslide-close a:hover {
  271. background-position: -180px -30px;
  272. }
  273. /*****************************************************************************/
  274. /* Styles for the HTML popups */
  275. /* Remove these if you are not using Highslide HTML */
  276. /*****************************************************************************/
  277. .highslide-maincontent {
  278. display: none;
  279. }
  280. .highslide-html {
  281. background-color: white;
  282. }
  283. .mobile .highslide-html {
  284. border: 1px solid silver;
  285. }
  286. .highslide-html-content {
  287. display: none;
  288. width: 400px;
  289. padding: 0 5px 5px 5px;
  290. }
  291. .highslide-header {
  292. padding-bottom: 0px;
  293. }
  294. .highslide-header ul {
  295. margin: 0;
  296. padding: 0;
  297. text-align: right;
  298. }
  299. .highslide-header ul li {
  300. display: inline;
  301. padding-left: 1em;
  302. }
  303. .highslide-header ul li.highslide-previous, .highslide-header ul li.highslide-next {
  304. display: none;
  305. }
  306. .highslide-header a {
  307. font-weight: bold;
  308. color: gray;
  309. text-transform: uppercase;
  310. text-decoration: none;
  311. }
  312. .highslide-header a:hover {
  313. color: black;
  314. }
  315. .highslide-header .highslide-move a {
  316. cursor: move;
  317. }
  318. .highslide-footer {
  319. height: 16px;
  320. }
  321. .highslide-footer .highslide-resize {
  322. display: block;
  323. float: right;
  324. margin-top: 5px;
  325. height: 11px;
  326. width: 11px;
  327. background: url(graphics/resize.gif) no-repeat;
  328. }
  329. .highslide-footer .highslide-resize span {
  330. display: none;
  331. }
  332. .highslide-body {
  333. }
  334. .highslide-resize {
  335. cursor: nw-resize;
  336. }
  337. /*****************************************************************************/
  338. /* Styles for the Individual wrapper class names. */
  339. /* See www.highslide.com/ref/hs.wrapperClassName */
  340. /* You can safely remove the class name themes you don't use */
  341. /*****************************************************************************/
  342. /* hs.wrapperClassName = 'draggable-header' */
  343. .draggable-header .highslide-header {
  344. height: 18px;
  345. border-bottom: 1px solid #dddddd;
  346. }
  347. .draggable-header .highslide-heading {
  348. position: absolute;
  349. margin: 2px 0.4em;
  350. }
  351. .draggable-header .highslide-header .highslide-move {
  352. cursor: move;
  353. display: block;
  354. height: 16px;
  355. position: absolute;
  356. right: 24px;
  357. top: 0;
  358. width: 100%;
  359. z-index: 1;
  360. }
  361. .draggable-header .highslide-header .highslide-move * {
  362. display: none;
  363. }
  364. .draggable-header .highslide-header .highslide-close {
  365. position: absolute;
  366. right: 2px;
  367. top: 2px;
  368. z-index: 5;
  369. padding: 0;
  370. }
  371. .draggable-header .highslide-header .highslide-close a {
  372. display: block;
  373. height: 16px;
  374. width: 16px;
  375. background-image: url(graphics/closeX.png);
  376. }
  377. .draggable-header .highslide-header .highslide-close a:hover {
  378. background-position: 0 16px;
  379. }
  380. .draggable-header .highslide-header .highslide-close span {
  381. display: none;
  382. }
  383. .draggable-header .highslide-maincontent {
  384. padding-top: 1em;
  385. }
  386. /* hs.wrapperClassName = 'titlebar' */
  387. .titlebar .highslide-header {
  388. height: 18px;
  389. border-bottom: 1px solid #dddddd;
  390. }
  391. .titlebar .highslide-heading {
  392. position: absolute;
  393. width: 90%;
  394. margin: 1px 0 1px 5px;
  395. color: #666666;
  396. }
  397. .titlebar .highslide-header .highslide-move {
  398. cursor: move;
  399. display: block;
  400. height: 16px;
  401. position: absolute;
  402. right: 24px;
  403. top: 0;
  404. width: 100%;
  405. z-index: 1;
  406. }
  407. .titlebar .highslide-header .highslide-move * {
  408. display: none;
  409. }
  410. .titlebar .highslide-header li {
  411. position: relative;
  412. top: 3px;
  413. z-index: 2;
  414. padding: 0 0 0 1em;
  415. }
  416. .titlebar .highslide-maincontent {
  417. padding-top: 1em;
  418. }
  419. /* hs.wrapperClassName = 'no-footer' */
  420. .no-footer .highslide-footer {
  421. display: none;
  422. }
  423. /* hs.wrapperClassName = 'wide-border' */
  424. .wide-border {
  425. background: white;
  426. }
  427. .wide-border .highslide-image {
  428. border-width: 10px;
  429. }
  430. .wide-border .highslide-caption {
  431. padding: 0 10px 10px 10px;
  432. }
  433. /* hs.wrapperClassName = 'borderless' */
  434. .borderless .highslide-image {
  435. border: none;
  436. }
  437. .borderless .highslide-caption {
  438. border-bottom: 1px solid white;
  439. border-top: 1px solid white;
  440. background: silver;
  441. }
  442. /* hs.wrapperClassName = 'outer-glow' */
  443. .outer-glow {
  444. background: #444;
  445. }
  446. .outer-glow .highslide-image {
  447. border: 5px solid #444444;
  448. }
  449. .outer-glow .highslide-caption {
  450. border: 5px solid #444444;
  451. border-top: none;
  452. padding: 5px;
  453. background-color: gray;
  454. }
  455. /* hs.wrapperClassName = 'colored-border' */
  456. .colored-border {
  457. background: white;
  458. }
  459. .colored-border .highslide-image {
  460. border: 2px solid green;
  461. }
  462. .colored-border .highslide-caption {
  463. border: 2px solid green;
  464. border-top: none;
  465. }
  466. /* hs.wrapperClassName = 'dark' */
  467. .dark {
  468. background: #111;
  469. }
  470. .dark .highslide-image {
  471. border-color: black black #202020 black;
  472. background: gray;
  473. }
  474. .dark .highslide-caption {
  475. color: white;
  476. background: #111;
  477. }
  478. .dark .highslide-controls,
  479. .dark .highslide-controls ul,
  480. .dark .highslide-controls a {
  481. background-image: url(graphics/controlbar-black-border.gif);
  482. }
  483. /* hs.wrapperClassName = 'floating-caption' */
  484. .floating-caption .highslide-caption {
  485. position: absolute;
  486. padding: 1em 0 0 0;
  487. background: none;
  488. color: white;
  489. border: none;
  490. font-weight: bold;
  491. }
  492. /* hs.wrapperClassName = 'controls-in-heading' */
  493. .controls-in-heading .highslide-heading {
  494. color: gray;
  495. font-weight: bold;
  496. height: 20px;
  497. overflow: hidden;
  498. cursor: default;
  499. padding: 0 0 0 22px;
  500. margin: 0;
  501. background: url(graphics/icon.gif) no-repeat 0 1px;
  502. }
  503. .controls-in-heading .highslide-controls {
  504. width: 105px;
  505. height: 20px;
  506. position: relative;
  507. margin: 0;
  508. top: -23px;
  509. left: 7px;
  510. background: none;
  511. }
  512. .controls-in-heading .highslide-controls ul {
  513. position: static;
  514. height: 20px;
  515. background: none;
  516. }
  517. .controls-in-heading .highslide-controls li {
  518. padding: 0;
  519. }
  520. .controls-in-heading .highslide-controls a {
  521. background-image: url(graphics/controlbar-white-small.gif);
  522. height: 20px;
  523. width: 20px;
  524. }
  525. .controls-in-heading .highslide-controls .highslide-move {
  526. display: none;
  527. }
  528. .controls-in-heading .highslide-controls .highslide-previous a {
  529. background-position: 0 0;
  530. }
  531. .controls-in-heading .highslide-controls .highslide-previous a:hover {
  532. background-position: 0 -20px;
  533. }
  534. .controls-in-heading .highslide-controls .highslide-previous a.disabled {
  535. background-position: 0 -40px !important;
  536. }
  537. .controls-in-heading .highslide-controls .highslide-play a {
  538. background-position: -20px 0;
  539. }
  540. .controls-in-heading .highslide-controls .highslide-play a:hover {
  541. background-position: -20px -20px;
  542. }
  543. .controls-in-heading .highslide-controls .highslide-play a.disabled {
  544. background-position: -20px -40px !important;
  545. }
  546. .controls-in-heading .highslide-controls .highslide-pause a {
  547. background-position: -40px 0;
  548. }
  549. .controls-in-heading .highslide-controls .highslide-pause a:hover {
  550. background-position: -40px -20px;
  551. }
  552. .controls-in-heading .highslide-controls .highslide-next a {
  553. background-position: -60px 0;
  554. }
  555. .controls-in-heading .highslide-controls .highslide-next a:hover {
  556. background-position: -60px -20px;
  557. }
  558. .controls-in-heading .highslide-controls .highslide-next a.disabled {
  559. background-position: -60px -40px !important;
  560. }
  561. .controls-in-heading .highslide-controls .highslide-full-expand a {
  562. background-position: -100px 0;
  563. }
  564. .controls-in-heading .highslide-controls .highslide-full-expand a:hover {
  565. background-position: -100px -20px;
  566. }
  567. .controls-in-heading .highslide-controls .highslide-full-expand a.disabled {
  568. background-position: -100px -40px !important;
  569. }
  570. .controls-in-heading .highslide-controls .highslide-close a {
  571. background-position: -120px 0;
  572. }
  573. .controls-in-heading .highslide-controls .highslide-close a:hover {
  574. background-position: -120px -20px;
  575. }
  576. /*****************************************************************************/
  577. /* Styles for text based controls. */
  578. /* You can safely remove this if you don't use text based controls */
  579. /*****************************************************************************/
  580. .text-controls .highslide-controls {
  581. width: auto;
  582. height: auto;
  583. margin: 0;
  584. text-align: center;
  585. background: none;
  586. }
  587. .text-controls ul {
  588. position: static;
  589. background: none;
  590. height: auto;
  591. left: 0;
  592. }
  593. .text-controls .highslide-move {
  594. display: none;
  595. }
  596. .text-controls li {
  597. background-image: url(graphics/controlbar-text-buttons.png);
  598. background-position: right top !important;
  599. padding: 0;
  600. margin-left: 15px;
  601. display: block;
  602. width: auto;
  603. }
  604. .text-controls a {
  605. background: url(graphics/controlbar-text-buttons.png) no-repeat;
  606. background-position: left top !important;
  607. position: relative;
  608. left: -10px;
  609. display: block;
  610. width: auto;
  611. height: auto;
  612. text-decoration: none !important;
  613. }
  614. .text-controls a span {
  615. background: url(graphics/controlbar-text-buttons.png) no-repeat;
  616. margin: 1px 2px 1px 10px;
  617. display: block;
  618. min-width: 4em;
  619. height: 18px;
  620. line-height: 18px;
  621. padding: 1px 0 1px 18px;
  622. color: #333;
  623. font-family: "Trebuchet MS", Arial, sans-serif;
  624. font-size: 12px;
  625. font-weight: bold;
  626. white-space: nowrap;
  627. }
  628. .text-controls .highslide-next {
  629. margin-right: 1em;
  630. }
  631. .text-controls .highslide-full-expand a span {
  632. min-width: 0;
  633. margin: 1px 0;
  634. padding: 1px 0 1px 10px;
  635. }
  636. .text-controls .highslide-close a span {
  637. min-width: 0;
  638. }
  639. .text-controls a:hover span {
  640. color: black;
  641. }
  642. .text-controls a.disabled span {
  643. color: #999;
  644. }
  645. .text-controls .highslide-previous span {
  646. background-position: 0 -40px;
  647. }
  648. .text-controls .highslide-previous a.disabled {
  649. background-position: left top !important;
  650. }
  651. .text-controls .highslide-previous a.disabled span {
  652. background-position: 0 -140px;
  653. }
  654. .text-controls .highslide-play span {
  655. background-position: 0 -60px;
  656. }
  657. .text-controls .highslide-play a.disabled {
  658. background-position: left top !important;
  659. }
  660. .text-controls .highslide-play a.disabled span {
  661. background-position: 0 -160px;
  662. }
  663. .text-controls .highslide-pause span {
  664. background-position: 0 -80px;
  665. }
  666. .text-controls .highslide-next span {
  667. background-position: 0 -100px;
  668. }
  669. .text-controls .highslide-next a.disabled {
  670. background-position: left top !important;
  671. }
  672. .text-controls .highslide-next a.disabled span {
  673. background-position: 0 -200px;
  674. }
  675. .text-controls .highslide-full-expand span {
  676. background: none;
  677. }
  678. .text-controls .highslide-full-expand a.disabled {
  679. background-position: left top !important;
  680. }
  681. .text-controls .highslide-close span {
  682. background-position: 0 -120px;
  683. }
  684. /*****************************************************************************/
  685. /* Styles for the thumbstrip. */
  686. /* See www.highslide.com/ref/hs.addSlideshow */
  687. /* You can safely remove this if you don't use a thumbstrip */
  688. /*****************************************************************************/
  689. .highslide-thumbstrip {
  690. height: 100%;
  691. direction: ltr;
  692. }
  693. .highslide-thumbstrip div {
  694. overflow: hidden;
  695. }
  696. .highslide-thumbstrip table {
  697. position: relative;
  698. padding: 0;
  699. border-collapse: collapse;
  700. }
  701. .highslide-thumbstrip td {
  702. padding: 1px;
  703. /*text-align: center;*/
  704. }
  705. .highslide-thumbstrip a {
  706. outline: none;
  707. }
  708. .highslide-thumbstrip img {
  709. display: block;
  710. border: 1px solid gray;
  711. margin: 0 auto;
  712. }
  713. .highslide-thumbstrip .highslide-active-anchor img {
  714. visibility: visible;
  715. }
  716. .highslide-thumbstrip .highslide-marker {
  717. position: absolute;
  718. width: 0;
  719. height: 0;
  720. border-width: 0;
  721. border-style: solid;
  722. border-color: transparent; /* change this to actual background color in highslide-ie6.css */
  723. }
  724. .highslide-thumbstrip-horizontal div {
  725. width: auto;
  726. /* width: 100% breaks in small strips in IE */
  727. }
  728. .highslide-thumbstrip-horizontal .highslide-scroll-up {
  729. display: none;
  730. position: absolute;
  731. top: 3px;
  732. left: 3px;
  733. width: 25px;
  734. height: 42px;
  735. }
  736. .highslide-thumbstrip-horizontal .highslide-scroll-up div {
  737. margin-bottom: 10px;
  738. cursor: pointer;
  739. background: url(graphics/scrollarrows.png) left center no-repeat;
  740. height: 42px;
  741. }
  742. .highslide-thumbstrip-horizontal .highslide-scroll-down {
  743. display: none;
  744. position: absolute;
  745. top: 3px;
  746. right: 3px;
  747. width: 25px;
  748. height: 42px;
  749. }
  750. .highslide-thumbstrip-horizontal .highslide-scroll-down div {
  751. margin-bottom: 10px;
  752. cursor: pointer;
  753. background: url(graphics/scrollarrows.png) center right no-repeat;
  754. height: 42px;
  755. }
  756. .highslide-thumbstrip-horizontal table {
  757. margin: 2px 0 10px 0;
  758. }
  759. .highslide-viewport .highslide-thumbstrip-horizontal table {
  760. margin-left: 10px;
  761. }
  762. .highslide-thumbstrip-horizontal img {
  763. width: auto;
  764. height: 40px;
  765. }
  766. .highslide-thumbstrip-horizontal .highslide-marker {
  767. top: 47px;
  768. border-left-width: 6px;
  769. border-right-width: 6px;
  770. border-bottom: 6px solid gray;
  771. }
  772. .highslide-viewport .highslide-thumbstrip-horizontal .highslide-marker {
  773. margin-left: 10px;
  774. }
  775. .dark .highslide-thumbstrip-horizontal .highslide-marker, .highslide-viewport .highslide-thumbstrip-horizontal .highslide-marker {
  776. border-bottom-color: white !important;
  777. }
  778. .highslide-thumbstrip-vertical-overlay {
  779. overflow: hidden !important;
  780. }
  781. .highslide-thumbstrip-vertical div {
  782. height: 100%;
  783. }
  784. .highslide-thumbstrip-vertical a {
  785. display: block;
  786. }
  787. .highslide-thumbstrip-vertical .highslide-scroll-up {
  788. display: none;
  789. position: absolute;
  790. top: 0;
  791. left: 0;
  792. width: 100%;
  793. height: 25px;
  794. }
  795. .highslide-thumbstrip-vertical .highslide-scroll-up div {
  796. margin-left: 10px;
  797. cursor: pointer;
  798. background: url(graphics/scrollarrows.png) top center no-repeat;
  799. height: 25px;
  800. }
  801. .highslide-thumbstrip-vertical .highslide-scroll-down {
  802. display: none;
  803. position: absolute;
  804. bottom: 0;
  805. left: 0;
  806. width: 100%;
  807. height: 25px;
  808. }
  809. .highslide-thumbstrip-vertical .highslide-scroll-down div {
  810. margin-left: 10px;
  811. cursor: pointer;
  812. background: url(graphics/scrollarrows.png) bottom center no-repeat;
  813. height: 25px;
  814. }
  815. .highslide-thumbstrip-vertical table {
  816. margin: 10px 0 0 10px;
  817. }
  818. .highslide-thumbstrip-vertical img {
  819. width: 60px; /* t=5481 */
  820. }
  821. .highslide-thumbstrip-vertical .highslide-marker {
  822. left: 0;
  823. margin-top: 8px;
  824. border-top-width: 6px;
  825. border-bottom-width: 6px;
  826. border-left: 6px solid gray;
  827. }
  828. .dark .highslide-thumbstrip-vertical .highslide-marker, .highslide-viewport .highslide-thumbstrip-vertical .highslide-marker {
  829. border-left-color: white;
  830. }
  831. .highslide-viewport .highslide-thumbstrip-float {
  832. overflow: auto;
  833. }
  834. .highslide-thumbstrip-float ul {
  835. margin: 2px 0;
  836. padding: 0;
  837. }
  838. .highslide-thumbstrip-float li {
  839. display: block;
  840. height: 60px;
  841. margin: 0 2px;
  842. list-style: none;
  843. float: left;
  844. }
  845. .highslide-thumbstrip-float img {
  846. display: inline;
  847. border-color: silver;
  848. max-height: 56px;
  849. }
  850. .highslide-thumbstrip-float .highslide-active-anchor img {
  851. border-color: black;
  852. }
  853. .highslide-thumbstrip-float .highslide-scroll-up div, .highslide-thumbstrip-float .highslide-scroll-down div {
  854. display: none;
  855. }
  856. .highslide-thumbstrip-float .highslide-marker {
  857. display: none;
  858. }