/*
    anythingSlider v1.2
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
*/


.anythingSlider {
	width: 760px;
	height: 222px;
	position: relative;
	margin: 0 auto 15px;
	background:url(/images/flash-bg.png) no-repeat;
	color:#000;
}
.anythingSlider .wrapper {
	width: 758px;
	overflow: auto;
	height: 222px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}
/* Width below is max for Opera */
.anythingSlider .wrapper ul {
	width: 32700px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding:0;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 222px;
	width: 760px;
	margin: 0;
}
.anythingSlider .arrow {
	height: 200px;
	width: 67px;
	background: url(/images/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top:15px;
	cursor: pointer;
}
.anythingSlider .forward {
	background-position: 0 0;
	right:-40px;
}
.anythingSlider .back {
	background-position: -67px 0;
	left:-41px;
}
.anythingSlider .forward:hover {
	background-position: 0 -200px;
}
.anythingSlider .back:hover {
	background-position: -67px -200px;
}
#thumbNav {
	position: relative;
	top: 199px;
	left:230px;
	text-align: center;
}
#thumbNav a {
	color: black;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	display: inline-block;
	padding: 4px 8px;
	height: 14px;
	margin: 0 5px 0 0;
	background: #1352C7 url(/images/cellshade.png) repeat-x;
	text-align: center;
	text-decoration:none;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
}
#thumbNav a:hover {
	background-image: none;
}
#thumbNav a.cur {
	background: #F0B01C;
}
#start-stop {
	background: black;
	background-image: url(/images/cellshade.png);
	background-repeat: repeat-x;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 45px;
	top: 202px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
}
#start-stop.playing {
	background-color:#1352C7;
}
#start-stop:hover {
	background-image: none;
}
/*
  Prevents
*/
.anythingSlider .wrapper ul ul {
	position: static;
	margin: 0;
	background: none;
	overflow: visible;
	width: auto;
	border: 0;
	padding:0;
}
.anythingSlider .wrapper ul ul li {
	float: none;
	height: auto;
	width: auto;
	background: none;
	margin:0;
	padding:0;
}
/*
    For Specific Slides
*/
#textSlide {
	padding: 1px 0 0 0;
	font-family:Arial, Helvetica, sans-serif;
	color:#333;
	font-size:12px;
}
#textSlide h3 {
	font-family:"Britannic Bold", Arial;
	font-size:28px;
	font-weight:bold;
}
#textSlide h4 {
	text-transform: uppercase;
	font: 15px Georgia, Serif;
	margin: 10px 0;
}
#textSlide ul {
	list-style: disc;
	margin: 0 0 0 25px;
}
#textSlide ul li {
	display: list-item;
}
#quoteSlide {
	padding: 30px;
}
#quoteSlide blockquote {
	font: italic 24px/1.5 Georgia, Serif;
	text-align: center;
	color: #444;
	margin: 0 0 10px 0;
}
#quoteSlide p {
	text-align: center;
}
.clear {
	clear:both;
}
