/*
	AnythingSlider v1.8+ Default 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 & dimensions to match your slider */
.anythingslider {
	list-style-type:none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */

}
.anythingslider li { display:none; height:200px;}
.anythingslider.anythingBase li { display:block; }


/************************
  NAVIGATION POSITIONING
 ************************/
.cnt-slider .arrow { position: absolute; bottom:12px; right:0; width:13px; height:13px; z-index:100; }
.cnt-slider .arrow a { width:13px; height:13px; margin:0; display: block; background: #f4f7f7 url(/webfiles/slider-arrows2x.png) no-repeat 0 0; background-size:34px 13px; position: absolute; top: 0%; z-index: 10; cursor: pointer; text-indent: -9999px; -webkit-transition: all .3s ease; opacity: 0.5;}
.cnt-slider .forward a {background-position: 100% 0; right: 0; }
.cnt-slider .back a {right: 20px;}
.cnt-slider .anythingSlider:hover .forward a,
.cnt-slider .anythingSlider:hover .back a {opacity: 0.8; }
.cnt-slider .anythingSlider:hover .forward a:hover, 
.cnt-slider .anythingSlider:hover .back a:hover {opacity: 1;}

.sml-slider .arrow { position: absolute; bottom:12px; right:0; width:13px; height:13px; z-index:100; }
.sml-slider .arrow a { width:13px; height:13px; margin:0; display: block; background: #f4f7f7 url(/webfiles/slider-arrows2x.png) no-repeat 0 0; background-size:34px 13px; position: absolute; top: 0%; z-index: 10; cursor: pointer; text-indent: -9999px; -webkit-transition: all .3s ease; opacity: 0.5;}
.sml-slider .forward a {background-position: 100% 0; right: 0; }
.sml-slider .back a {right: 20px;}
.sml-slider .anythingSlider:hover .forward a,
.sml-slider .anythingSlider:hover .back a {opacity: 0.8; }
.sml-slider .anythingSlider:hover .forward a:hover, 
.sml-slider .anythingSlider:hover .back a:hover {opacity: 1;}


/* Navigation Links */
.anythingSlider-default .anythingControls { outline: 0; display: none; }
.anythingSlider-default .anythingControls ul { margin: 0; padding: 0; float: left; }
.anythingSlider-default .anythingControls ul li { display: inline; }
.anythingSlider-default .anythingControls ul a {

}

/* navigationSize window */
.anythingSlider-default .anythingControls .anythingNavWindow {
	overflow: hidden;
	float: left;
}

/* Autoplay Start/Stop button */
.anythingSlider-default .anythingControls .start-stop {
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	position: absolute;
	font-weight: bolder;
	right: 35px;
	bottom: 5px;
	z-index: 100;
	outline: 0;
}


/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper */
.anythingSlider {
	display: block;
	overflow: visible !important;
	position: relative;
}
/* anythingSlider viewport window */
.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* anythingSlider base (original element) */
.anythingSlider .anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}

/* Navigation arrow text; indent moved to span inside "a", for IE7;
  apparently, a negative text-indent on an "a" link moves the link as well as the text */
.anythingSlider .arrow span {
	display: block;
	visibility: hidden;
}
/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
.anythingSlider .arrow.disabled {
	display: none;
}
/* all panels inside the slider; horizontal mode */
.anythingSlider .panel 
{
    position:relative;
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
	list-style-type:none;
}
/* vertical mode */
.anythingSlider .vertical .panel {
	float: none;
}
/* fade mode */
.anythingSlider .fade .panel {
	float: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
/* fade mode active page - visible & on top */
.anythingSlider .fade .activePage {
	z-index: 1;
}
