/*
	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 */
#slider1 { width: 220px; height: 400px; list-style: none; }
#slider2 { width: 880px; height: 400px; list-style: none; }
#slider3 { width: 940px; height: 400px; list-style: none; }
#slider4 { width: 940px; height: 400px; list-style: none; }
#slider5 { width: 940px; height: 400px; list-style: none; }


/***********************
  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;
	padding: 0px 30px;
}
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* anythingSlider base (original element) */
.anythingBase {
	max-width: 32766px; /* Opera width restriction */
	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;
}
div.anythingSlider .arrow a {
	display: block;
	height: 73px;
	margin: -80px 0 0 0; /* half height of image */
	width: 37px;
	text-align: center;
	outline: 0;
	background: url(/resources/images/shop_and_learn/promos/slider_nav.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 { position: absolute; left: -1px; top:200px; }
div.anythingSlider .back a { background-position: left top; position: absolute; left: -2px; top:0px; }
div.anythingSlider .back a:hover, div.anythingSlider .back a.hover { background-position: left 0px; }
div.anythingSlider .back.disabled { display: none; } /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
/* forward arrow */
div.anythingSlider .forward { position: absolute; right: 0px; top:200px; }
div.anythingSlider .forward a { background-position: -37px 0px; position: absolute; right: 0px; top:0px; }
div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-position: -37px 0px; }
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;  }
div.anythingSlider .anythingControls ul { margin: 0; padding: 0; float: right; }
div.anythingSlider .anythingControls ul li { display: inline; }
div.anythingSlider .anythingControls ul a {
	width:20px;
	height:20px;
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	text-indent:-99999em;
	padding: 2px 2px;
	margin: 0 2px 0 0;
	background:url(/resources/images/shop_and_learn/promos/nav_inactive.png) no-repeat 0 0; 
	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.cur {
	background:url(/resources/images/shop_and_learn/promos/nav_selected.png) no-repeat 0 0; 
}
div.anythingSlider .anythingControls ul a:hover {
	background:url(/resources/images/shop_and_learn/promos/nav_selected.png) no-repeat 0 0; 
}
/* 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;
}