/*
AnythingSlider v1.4.1+ Default (base) theme

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/

****** SET DEFAULT DIMENSIONS HERE ********/
DIV.anythingSlider
{
	width: 700px;
	height: 390px;
	margin: 0 auto;
}
/****** SET COLORS HERE ******
Default State*/
DIV.anythingSlider .thumbNav A.cur, DIV.anythingSlider .thumbNav A
{
	background: #777;
	color: #000;
}
DIV.anythingSlider .anythingWindow
{
	/*[disabled]border-top:3px solid #777;*/
	/*[disabled]border-bottom:3px solid #777;*/
}
DIV.anythingSlider .start-stop
{
	background-color: #040;
	color: #FFF;
}
DIV.anythingSlider .start-stop.playing
{
	background-color: #800;
}
DIV.anythingSlider .start-stop:hover, DIV.anythingSlider .start-stop.hover
{
	color: #DDD;
}
/*Active State*/
DIV.anythingSlider.activeSlider .anythingWindow
{
}
DIV.anythingSlider.activeSlider .thumbNav A.cur, DIV.anythingSlider.activeSlider .thumbNav A
{
	background-color: #7C9127;
}
DIV.anythingSlider .start-stop
{
	background-color: #080;
	color: #FFF;
}
DIV.anythingSlider .start-stop.playing
{
	background-color: #D00;
}
DIV.anythingSlider .start-stop:hover, DIV.anythingSlider .start-stop.hover
{
	color: #FFF;
}
/**** DO NOT CHANGE BELOW THIS LINE ***
anythingSlider viewport window*/
DIV.anythingSlider .anythingWindow
{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/*wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation*/
DIV.anythingSlider
{
	position: relative;
	padding: 0 45px 28px;
	margin-left: -46px;
}
/*anythingSlider base UL*/
UL.anythingBase
{
	background: transparent;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
UL.anythingBase LI.panel
{
	background: transparent;
	display: block;
	float: left;
	padding: 0;
	margin: 0;
}
/*Navigation Arrows*/
DIV.anythingSlider .arrow
{
	top: 50%;
	position: absolute;
	display: block;
}
DIV.anythingSlider .arrow A
{
	display: block;
	height: 120px;
	margin: -60px 0 0;
	width: 45px;
	text-align: center;
	outline: 0;
	background: url(../../images/anythingslider/arrows-default.png) no-repeat;
	text-indent: -9999px;
}
DIV.anythingSlider .forward
{
	right: 0;
}
DIV.anythingSlider .back
{
	left: 0;
}
DIV.anythingSlider .forward A
{
	background-position: 0 -40px;
}
DIV.anythingSlider .back A
{
	background-position: -88px -40px;
}
DIV.anythingSlider .forward A:hover, DIV.anythingSlider .forward A.hover
{
	background-position: 0 -240px;
}
DIV.anythingSlider .back A:hover, DIV.anythingSlider .back A.hover
{
	background-position: -88px -240px;
}
/*Navigation Links*/
DIV.anythingSlider .anythingControls
{
	outline: 0;
}
DIV.anythingSlider .thumbNav
{
	margin: 0;
}
DIV.anythingSlider .thumbNav LI
{
	display: inline;
}
DIV.anythingSlider .thumbNav A
{
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	background-image: url(../../images/anythingslider/cellshade.png);
	background-repeat: repeat-x;
	text-align: center;
	outline: 0;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}
DIV.anythingSlider .thumbNav A:hover
{
	background-image: none;
}
/*slider autoplay right-to-left, reverse order of nav links to look better*/
DIV.anythingSlider.rtl .thumbNav A
{
	float: right;
}
/*reverse order of nav links*/
DIV.anythingSlider.rtl .thumbNav
{
	float: left;
}
/*move nav link group to left
div.anythingSlider.rtl .start-stop { float: right; }
move start/stop button - in case you want to switch sides
Autoplay Start/Stop button*/
DIV.anythingSlider .start-stop
{
	background-image: url(../../images/anythingslider/cellshade.png);
	background-repeat: repeat-x;
	background-position: center top;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	float: right;
	z-index: 100;
	outline: 0;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}
DIV.anythingSlider .start-stop:hover, DIV.anythingSlider .start-stop.hover
{
	background-image: none;
}
DIV.anythingSlider, DIV.anythingSlider .anythingWindow, DIV.anythingSlider .thumbNav A, DIV.anythingSlider .arrow A, DIV.anythingSlider .start-stop
{
	transition-duration: 0;
	-o-transition-duration: 0;
	-moz-transition-duration: 0;
	-webkit-transition-duration: 0;
}
