1/**
2 * SciAnimator - Scientific Image Animator Plugin for jQuery
3 *
4 * Copyright (c) 2010 Brent Ertz
5 * Released under the MIT license.
6 * http://github.com/brentertz/scianimator
7*/
8
9/* Dark theme */
10.scianimator.dark,
11.scianimator.dark a,
12.scianimator.dark a:visited {
13	color: #ccc;
14}
15.scianimator.dark {
16	background: #333;
17}
18.scianimator.dark .controls,
19.scianimator.dark .control {
20	background-color: #333;
21	border-color: #666;
22	color: #ccc;
23	text-shadow: 0 1px #000;
24}
25.scianimator.dark .controls {
26	box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
27	-o-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
28	-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
29	-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
30}
31.scianimator.dark .control {
32	box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
33	-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
34	-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
35	-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
36}
37.scianimator.dark a:hover {
38	box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #555;
39	-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #555;
40	-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #555;
41	-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #333, 0 0 3px #555;
42	color: #fff;
43	text-shadow: 0px 1px #000;
44}