﻿/*
	AnythingSlider v1.7+ themes
	Simple theme
	by Joseph Larmarange
	adapted from Mini Light theme by Rob Garrison (aka Mottie)
*/

/****************************
 SET DEFAULT DIMENSIONS HERE
 ****************************/
/* Change the ID to match your slider */
#slider {
	width: 700px;
	height: 390px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

/* Opera width restriction */
.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	/* override the #slider overflow above, once the class is added */
	overflow: visible !important;
}

/*************
 ACTIVE STATE (slider has keyboard focus)
 *************/
.anythingSlider-simple.activeSlider .arrow a {
	opacity: 0.80;
	filter: alpha(opacity=80);
}
.anythingSlider-simple.activeSlider .anythingControls {
	opacity: 0.80;
	filter: alpha(opacity=80);
}

/*****************
 DEFAULT STATE (no keyboard focus)
 *****************/
/* Overall Wrapper */
.anythingSlider-simple {
	display: block;
	position: relative;
	margin: 0 auto;
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px; 
	box-shadow: 0 0 6px #888;
	-moz-box-shadow: 0 0 6px #888;  
	-webkit-box-shadow: 0 0 6px #888;
	border: solid 1px #ccc;
}

/* all panels inside the slider; horizontal mode */
.anythingSlider .panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
/* vertical mode */
.anythingSlider .vertical .panel {
	float: none;
}

/* fade mode */
.anythingSlider .fade .panel {
	float: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
/* fade mode active page - visible & on top */
.anythingSlider .fade .activePage {
	z-index: 0;
}

/* Slider window - top & bottom borders, default state */
.anythingSlider-simple .anythingWindow {
	border: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* Arrow buttons position */
.anythingSlider-simple .arrow {
	top: 50%;
	position: absolute;
	display: block;
}
.anythingSlider-simple span.back {
	left: 3px;
}
.anythingSlider-simple span.forward {
	right: 3px;
}
/* Arrow buttons images */
.anythingSlider-simple .arrow a {
	display: block;
	background: transparent url(../images/simple.png) no-repeat;
	height: 22px;
	width: 22px;
	text-align: center;
	text-decoration: none;
	outline: 0;
	margin: -11px 0 0; /* set to 1/2 height */
	opacity: 0.50;
	filter: alpha(opacity=50);
}
.anythingSlider-simple .arrow a:hover {
	opacity: 0.80;
	filter: alpha(opacity=80);
}
.anythingSlider-simple .back a {
	background-position: left top;
}
.anythingSlider-simple .forward a {
	background-position: right top;
}
.anythingSlider-simple .back a:hover,
.anythingSlider-simple .back a.hover {
	background-position: left -22px;
}
.anythingSlider-simple .forward a:hover,
.anythingSlider-simple .forward a.hover {
	background-position: right -22px;
}

/* Disabled arrows - infiniteSlide = false & stopAtEnd = true */
.anythingSlider-simple .back.disabled,
.anythingSlider-simple .forward.disabled {
	display: none;
}

/* Navigation tabs - Slider control block */
.anythingSlider-simple .anythingControls {
	outline: 0;
	position: relative;
	margin: 10px 0;
	z-index: 100;
	opacity: 0.50;
	filter: alpha(opacity=50);
}
.anythingSlider-simple .anythingControls:hover {
	opacity: 0.80;
	filter: alpha(opacity=80);
}
/* control list */
.anythingSlider-simple .anythingControls ul {
	float: left;
	margin: 0;
	padding: 0;
	z-index: 100;
}
/* control tabs */
.anythingSlider-simple .anythingControls ul li {
	display: block;
	float: left;
}
/* control links */
.anythingSlider-simple .anythingControls ul a {
	display: block;
	background: transparent url(../images/simple.png) no-repeat left -44px; /* default tab, active/inactive slider */
	text-decoration: none;
	width: 11px;
	height: 11px;
	margin: 0;
	padding: 0;
	outline: 0;
}
/* control nav window (navigationSize = true) */
.anythingSlider-simple .anythingControls .anythingNavWindow {
	overflow: hidden;
	float: left;
}
.anythingSlider-simple .anythingControls ul a.hover,
.anythingSlider-simple .anythingControls ul a:hover {
	background-position: left bottom;
}
.anythingSlider-simple .anythingControls ul a.cur {
	background-position: -11px -44px;
}
.anythingSlider-simple .anythingControls ul a.cur:hover {
	background-position: -11px bottom;
}

/* Start/stop button - stopped */
.anythingSlider-simple .start-stop {
	background: transparent url(../images/simple.png) no-repeat -22px -44px;
	color: #ddd;
	width: 11px;
	height: 11px;
	padding: 0;
	float: right;
	z-index: 100;
	outline: 0;
}
/* Start/stop button - stopped */
.anythingSlider-simple .start-stop:hover,
.anythingSlider-simple .start-stop.hover {
	background-position: -22px bottom;
}
/* start/stop button - playing */
.anythingSlider-simple .start-stop.playing {
	background-position: right -44px;
}
.anythingSlider-simple .start-stop.playing:hover,
.anythingSlider-simple .start-stop.playing.hover {
	background-position: right bottom;
}

/* Navigation size window arrows */
.anythingSlider-simple .anythingControls li.next a span, .anythingSlider-simple .anythingControls li.prev a span {
	text-indent: 1px;
	padding: 4px 0 0 3px;
	font-size: 8px;
}
.anythingSlider-simple .anythingControls li.prev a, .anythingSlider-simple .anythingControls li.next a {
	color: #ddd;
}
.anythingSlider-simple .anythingControls li.next a:hover, .anythingSlider-simple .anythingControls li.prev a:hover {
	color: #000;
}

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* 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-simple .arrow a span, .anythingSlider-simple .anythingControls ul a span, .anythingSlider-simple .start-stop span {
	display: block;
	line-height: 1px; /* needed for IE7 */
	width: 0;
	visibility: hidden; /* needed for IE8, instead of text-indent: -9999px */
}

/* AnythingSlider IE7 and older styling */
.as-oldie div.anythingSlider .arrow {
	margin: 0;
}
/* When using the navigationSize option, the side margins need to be zero
   None of the navigation panels look good in IE7 now =( */
.as-oldie div.anythingSlider .anythingControls {
	margin: 0 0 0 30px;
}
}.as-oldie div.anythingSlider .anythingControls ul.thumbNav a {
	margin: 0 0 0 2px;
}
.as-oldie div.anythingSlider .anythingControls .anythingNavWindow li {
	padding: 3px 0 0 0;
}
.as-oldie div.anythingSlider .anythingControls {
	display: block;
	width: 95%; /* arbitrary percentage, adjust to fit your slider in IE7 */
	margin: 0;
}
