/*
AnythingSlider v1.7+ 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
****************************
change the ID to match your slider*/
#slider-baner
{
	width: 1000px;
	height: 255px;
	list-style: none;
/*Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled*/
	overflow-y: hidden;
	overflow-x: hidden;
}
/*Opera width restriction*/
.anythingBase
{
	max-width: 32766px;
}
/*****************
SET COLORS HERE
****************
*** Default state (no keyboard focus) ***
slider window - top & bottom borders, default state*/
DIV.anythingSlider .anythingWindow
{
	/*[disabled]border-top:3px solid #777;*/
	/*[disabled]border-bottom:3px solid #777;*/
}
/*Navigation buttons, default state*/
DIV.anythingSlider .anythingControls UL A.cur, DIV.anythingSlider .anythingControls UL A
{
	background: #777;
	color: #000;
}
/*start-stop button, stopped, default state*/
DIV.anythingSlider .start-stop
{
	background-color: #040;
	color: #FFF;
}
/*start-stop button, playing, default state*/
DIV.anythingSlider .start-stop.playing
{
	background-color: #800;
}
/*start-stop button, default hovered text color (when visible)*/
DIV.anythingSlider .start-stop:hover, DIV.anythingSlider .start-stop.hover
{
	color: #DDD;
}
/**** Active State (slider has keyboard focus) ***
slider window - top & bottom borders, active state*/
DIV.anythingSlider.activeSlider .anythingWindow
{
	/*[disabled]border-color:#7C9127;*/
}
/*Navigation buttons, active state*/
DIV.anythingSlider.activeSlider .anythingControls UL A.cur, DIV.anythingSlider.activeSlider .anythingControls UL A
{
	background-color: #7C9127;
}
/*start-stop button, stopped, active state*/
DIV.anythingSlider .start-stop
{
	background-color: #080;
	color: #FFF;
}
/*start-stop button, playing, active state*/
DIV.anythingSlider .start-stop.playing
{
	background-color: #D00;
}
/*start-stop button, active slider hovered text color (when visible)*/
DIV.anythingSlider .start-stop:hover, DIV.anythingSlider .start-stop.hover
{
	color: #FFF;
}
/***********************
COMMON SLIDER STYLING
**********************
Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation*/
DIV.anythingSlider
{
	display: block;
	margin: 0 auto;
	overflow: visible !important;
/*needed for Opera and Safari*/
	position: relative;
	/*[disabled]padding:0 45px 28px;*/
}
/*anythingSlider viewport window*/
DIV.anythingSlider .anythingWindow
{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/*anythingSlider base (original element)*/
.anythingBase
{
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
/*all panels inside the slider*/
.anythingBase .panel
{
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
.anythingBase .panel.vertical
{
	float: none;
}
/*Navigation Arrows*/
DIV.anythingSlider .arrow
{
	top: 50%;
	position: absolute;
	display: block;
}
DIV.anythingSlider .arrow A
{
	display: block;
	height: 140px;
	margin: -70px 0 0;
/*half height of image*/
	width: 45px;
	text-align: center;
	outline: 0;
	background: url(../images/default.png) no-repeat;
}
/*hide text, target the span so IE7 doesn't text-indent the link*/
DIV.anythingSlider .arrow A SPAN
{
	display: block;
	text-indent: -9999px;
}
/*back arrow*/
DIV.anythingSlider .back
{
	left: 0;
}
DIV.anythingSlider .back A
{
	background-position: left top;
}
DIV.anythingSlider .back A:hover, DIV.anythingSlider .back A.hover
{
	background-position: left -140px;
}
DIV.anythingSlider .back.disabled
{
	display: none;
}
/*disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50);
forward arrow*/
DIV.anythingSlider .forward
{
	right: 0;
}
DIV.anythingSlider .forward A
{
	background-position: right top;
}
DIV.anythingSlider .forward A:hover, DIV.anythingSlider .forward A.hover
{
	background-position: right -140px;
}
DIV.anythingSlider .forward.disabled
{
	display: none;
}
/*disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50);
Navigation Links*/
DIV.anythingSlider .anythingControls
{
	outline: 0;
	display: none;
}
DIV.anythingSlider .anythingControls UL
{
	margin: 0;
	padding: 0;
	float: left;
}
DIV.anythingSlider .anythingControls UL LI
{
	display: inline;
}
DIV.anythingSlider .anythingControls UL 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/default.png);
	background-position: center -288px;
	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 .anythingControls UL A:hover
{
	background-image: none;
}
/*Navigation size window*/
DIV.anythingSlider .anythingControls .anythingNavWindow
{
	overflow: hidden;
	float: left;
}
/*slider autoplay right-to-left, reverse order of nav links to look better*/
DIV.anythingSlider.rtl .anythingControls UL A
{
	float: right;
}
/*reverse order of nav links*/
DIV.anythingSlider.rtl .anythingControls UL
{
	float: left;
}
/*move nav link group to left*/
DIV.anythingSlider.rtl .anythingWindow
{
	direction: ltr;
	unicode-bidi: bidi-override;
}
/*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/default.png);
	background-position: center -288px;
	background-repeat: repeat-x;
	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;
}
/*hide cell shading on hover - makes the button appear to come forward*/
DIV.anythingSlider .start-stop:hover, DIV.anythingSlider .start-stop.hover
{
	background-image: none;
}
/*probably not necessary, but added just in case*/
DIV.anythingSlider, DIV.anythingSlider .anythingWindow, DIV.anythingSlider .anythingControls UL A, DIV.anythingSlider .arrow A, DIV.anythingSlider .start-stop
{
	transition-duration: 0;
	-o-transition-duration: 0;
	-moz-transition-duration: 0;
	-webkit-transition-duration: 0;
}
