/*
	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 {
	width: 900px;
	height: 250px;
	list-style: none;
}
/* Opera width restriction */
.anythingBase { max-width: 32766px; }

/*****************
  SET COLORS HERE
 *****************/
/**** Default state (no keyboard focus) ****/
/* slider window - top & bottom borders, default state */

/***********************
  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: 6px 0 0 21px;
}


/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 900px;
	height: 250px;
}
/* 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;
	z-index: 100;
}
div.anythingSlider .arrow a {
	display: block;
	height: 95px;
	margin-top: -47px; /* half height of image */
	width: 45px;
	outline: 0;

}


/* Navigation Links */

div.anythingSlider .anythingControls ul { margin: 0; padding: 0; float: left; }


/* div.anythingSlider.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */

/*
	AnythingSlider v1.5.10 Metallic Theme
	By Rob Garrison
*/

/****** SET COLORS HERE *******/
/* Default State */


div.anythingSlider ul li object { z-index:10}

/* Navigation Arrows */
div.anythingSlider .arrow {
	top: 150px;
	position: absolute;
	display: block;
	z-index: 100;
}
div.anythingSlider .arrow a {
	display:block;
	width:39px;
	height:47px;
	text-indent:-9999px;
	border:0;
}

div.anythingSlider .forward { right: -27px; }
div.anythingSlider .back { left: -7px; }
div.anythingSlider .forward a { background-position:-78px 0; right: -27px;}
div.anythingSlider .back a { background-position:left 0; }
div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-position: right top; right: -27px;}
div.anythingSlider .back a:hover, div.anythingSlider .back a.hover {background-position:-39px 0; }

/* Navigation Links */
div.anythingSlider .anythingControls {
	position: absolute;
	right:-1px;
	bottom:-22px;
	z-index: 9999;
	height:23px;
	padding:6px 10px 0 40px;
}

div.anythingSlider .anythingControls ul {
	margin: 0;
	z-index: 100;
}

div.anythingSlider .anythingControls ul li {
	padding:0;
	margin-right:5px;
	float:left;
	display:block;
	width:12px;
	height:12px;
	text-indent:-9999px;
}

div.anythingSlider ul li div.caption-bottom {
	position:absolute;
	font-weight:bold;
	bottom:0px;
	float:left;
	display:block;
	width:900px;
	padding:10px 0px 7px 0px;
	opacity: 0.7;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}

div.anythingSlider ul li div.caption-bottom p {
	margin-left:20px;
}

div.anythingSlider .anythingControls ul a {
	padding:0;
	margin-right:5px;
	display:block;
	width:12px;
	height:12px;
	text-indent:-9999px;
	border:0;
}


div.anythingSlider .anythingControls ul a:hover {
	padding:0;
	margin-right:5px;
	display:block;
	width:12px;
	height:12px;
}

 div.anythingSlider .anythingControls ul a.cur {
	padding:0;
	margin-right:5px;
	display:block;
	width:12px;
	height:12px;
}



/* Autoplay Start/Stop button */
div.anythingSlider .start-stop {
	padding: 0;
	margin-left:5px;
	display: inline-block;
	width: 21px;
	height: 13px;
	position: relative;
	z-index: 100;
	float: right;
}



/* Extra - replace defaults */

/* 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 */
div.anythingSlider .arrow a span, div.anythingSlider .anythingControls ul a span, div.anythingSlider .start-stop span {
	display: block;
	line-height: 1px; /* needed for IE7 */
	text-indent: -9999px;
}