﻿/*
	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 {
	display:inline-block;
	width: 500px;
	height: 300px;
	list-style: none;
	zoom: 1;
	*display:inline;
}
/* 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 {
	border: 1px solid black;
	-webkit-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
	-moz-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
	box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);

}
/* Navigation buttons, default state */
div.anythingSlider .anythingControls ul a.cur, div.anythingSlider .anythingControls ul a {
	background: black;
	color: white;
}
/* start-stop button, stopped, default state */
div.anythingSlider .start-stop {
	color:black;
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
}
/* start-stop button, playing, default state */
div.anythingSlider .start-stop.playing {
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
}
/* start-stop button, default hovered text color (when visible) */
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {
	color: black;
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
}

/**** Active State (slider has keyboard focus) ****/
/* slider window - top & bottom borders, active state */
div.anythingSlider.activeSlider .anythingWindow {
	border-color: black;
}
/* Navigation buttons, active state */
div.anythingSlider.activeSlider .anythingControls ul a.cur, div.anythingSlider.activeSlider .anythingControls ul a {
	background-color: #828151;
    color: #31311D;text-shadow: 0px 1px 1px #A0A18C;
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
}
/* Navigation buttons, active state */
div.anythingSlider.activeSlider .anythingControls ul a.cur{
	position:relative;
	z-index:100;
	background:#BEBD96;
	text-shadow: 0px 1px 1px #D4D4D4;
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
	-webkit-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
	-moz-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
	box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);

}



/* start-stop button, stopped, active state */
div.anythingSlider .start-stop {
	color: black;
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
}
/* start-stop button, playing, active state */
div.anythingSlider .start-stop.playing {
	border-left:1px black solid;border-right:1px black solid;border-bottom:1px black solid;
	-webkit-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
	-moz-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
	box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);


}

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */
div.anythingSlider {
	display: block;
	overflow: visible !important; /* needed for Opera and Safari */
	position: relative;
	padding: 0 45px 28px 45px;
}
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	margin-left:-11px;
}
/* anythingSlider base (original element) */
.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	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;
	margin-left:-10px;
	margin-right:10px;

}
div.anythingSlider .arrow a {
	display: block;
	height: 140px;
	margin: -70px 0 0 0; /* half height of image */
	width: 45px;
	text-align: center;
	outline: 0;
}
/* 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; 	margin-left:-11px;}
div.anythingSlider .anythingControls ul { margin: 0; padding: 0; float: left; }
div.anythingSlider .anythingControls ul li { display: inline; }
div.anythingSlider .anythingControls ul a {
	font-size: 14px;
	display: inline-block;
	text-decoration: none;
	font-weight:bold;
	padding: 4px 8px 2px;
	height: 18px;
	margin: 0 5px 0 0;
	background-color:#3A3A3A;
	text-align: center;
	outline: 0;
}
div.anythingSlider .anythingControls ul a:hover {
		background:#BEBD96; text-shadow: 0px 1px 1px #D4D4D4; z-index:100; position:relative;-webkit-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);-moz-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);
}
/* 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-color:#828151;
    color: #31311D;text-shadow: 0px 1px 1px #A0A18C;
    font-weight:bold;
	padding: 4px 7px;
	width: 90px;
	text-align: center;
	text-decoration: none;
	margin-right:9px;
	float: right;
	z-index: 99;
	outline: 0;
}
/* hide cell shading on hover - makes the button appear to come forward */
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover { 	background:#BEBD96; text-shadow: 0px 1px 1px #D4D4D4; z-index:100; position:relative;-webkit-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);-moz-box-shadow:0 4px 12px rgba(0, 0, 0, 0.8);box-shadow:0 4px 12px rgba(0, 0, 0, 0.8); }

/* 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;
}
