﻿/*
	AnythingSlider v1.7+ themes
	Polished Aluminum 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)
 *************/
/* slider window - top & bottom borders, active state */
.anythingSlider-polished.activeSlider .anythingWindow {
	border-color: #999;
}

/*****************
 DEFAULT STATE (no keyboard focus)
 *****************/
/* Overall Wrapper */
.anythingSlider-polished {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 0 4px; /* adjust left/right padding here to move arrows towards or away from the center */
}

/* 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-polished .anythingWindow {
	border-top: 3px solid #777;
	border-bottom: 3px solid #777;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* Arrow buttons position */
.anythingSlider-polished .arrow {
	top: 50%;
	position: absolute;
	display: block;
}
.anythingSlider-polished span.back {
	left: 0;
}
.anythingSlider-polished span.forward {
	right: 0;
}
/* Arrow buttons images */
.anythingSlider-polished .arrow a {
	display: block;
	background: transparent url(../images/polished.png) no-repeat;
	width: 32px;
	height: 40px;
	text-align: center;
	text-decoration: none;
	outline: 0;
	margin: -20px 0 0; /* set to 1/2 height */
}
.anythingSlider-polished .back a {
	background-position: left top;
}
.anythingSlider-polished .forward a {
	background-position: right top;
}
.anythingSlider-polished .back a:hover,
.anythingSlider-polished .back a.hover {
	background-position: left -39px;
}
.anythingSlider-polished .forward a:hover,
.anythingSlider-polished .forward a.hover {
	background-position: right -39px;
}

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

/* Navigation tabs - Slider control block */
.anythingSlider-polished .anythingControls {
	outline: 0;
	float: right;
	position: absolute;
	bottom: 0;
	right: 55px;
	z-index: 100;
}
/* control list */
.anythingSlider-polished .anythingControls ul {
	float: left;
	margin: 0;
	padding: 0;
	z-index: 100;
}
/* control tabs */
.anythingSlider-polished .anythingControls ul li {
	display: block;
	float: left;
}
/* control links */
.anythingSlider-polished .anythingControls ul a {
	display: block;
	background: transparent url(../images/polished.png) no-repeat left -80px; /* default tab, active/inactive slider */
	text-decoration: none;
	width: 15px;
	height: 17px;
	margin: 0 1px;
	padding: 0;
	outline: 0;
}
/* control nav window (navigationSize = true) */
.anythingSlider-polished .anythingControls .anythingNavWindow {
	overflow: hidden;
	float: left;
}
.anythingSlider-polished .anythingControls ul a.hover,
.anythingSlider-polished .anythingControls ul a:hover {
	background-position: left -97px;
}
.anythingSlider-polished .anythingControls ul a.cur {
	background-position: -17px -80px;
}
.anythingSlider-polished .anythingControls ul a.cur:hover {
	background-position: -17px -97px;
}

/* Start/stop button - stopped */
.anythingSlider-polished .start-stop {
	background: transparent url(../images/polished.png) no-repeat -48px -80px;
	color: #ddd;
	width: 15px;
	height: 17px;
	padding: 0;
	float: right;
	z-index: 100;
	outline: 0;
	margin: 0 0 0 3px;
}
/* Start/stop button - stopped */
.anythingSlider-polished .start-stop:hover,
.anythingSlider-polished .start-stop.hover {
	background-position: -48px -97px;
}
/* start/stop button - playing */
.anythingSlider-polished .start-stop.playing {
	background-position: -32px -80px;
}
.anythingSlider-polished .start-stop.playing:hover,
.anythingSlider-polished .start-stop.playing.hover {
	background-position: -32px -97px;
}

/* Navigation size window arrows */
.anythingSlider-polished .anythingControls li.next a span, .anythingSlider-polished .anythingControls li.prev a span {
	text-indent: 1px;
	padding: 6px 0 0 4px;
}
.anythingSlider-polished .anythingControls li.prev a, .anythingSlider-polished .anythingControls li.next a {
	color: #ddd;
}
.anythingSlider-polished .anythingControls li.next a:hover, .anythingSlider-polished .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-polished .arrow a span, .anythingSlider-polished .anythingControls ul a span, .anythingSlider-polished .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;
}
.as-oldie .anythingSlider-polished .anythingControls {
	width: 90%;
	margin-left: 0;
}
