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/* Light theme */
10.scianimator.light,
11.scianimator.light a,
12.scianimator.light a:visited {
13	color: #555;
14}
15.scianimator.light {
16	background: #ddd;
17}
18.scianimator.light .controls,
19.scianimator.light .control {
20	background-color: #ddd;
21	border-color: #999;
22	color: #555;
23	text-shadow: 0 1px #fff;
24}
25.scianimator.light .controls {
26	box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
27	-o-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
28	-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
29	-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
30}
31.scianimator.light .control {
32	box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
33	-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
34	-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
35	-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
36}
37.scianimator.light a:hover {
38	box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
39	-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
40	-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
41	-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
42	color: #fff;
43	text-shadow: 0px 1px #555;
44}