/*
    AnythingSlider v1.4

    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 ********/

div.anythingSlider {
	width: 920px !important;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 10px;

}

/**** DO NOT CHANGE BELOW THIS LINE ****/

/* anythingSlider viewport window */

div.anythingSlider .anythingWindow {
	background: #111 url(../images/progress.gif) no-repeat center center;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

/* wrapper: 45px right & left padding for the arrows, 28px @ bottom for naviagation */

div.anythingSlider {
	position: relative;

}

/* anythingSlider base UL */

ul.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}

ul.anythingBase li.panel {
	background: transparent;
	display: block;
	float: left;
	padding: 0;
	margin: 0;
}

span.arrow.forward {
	margin-right: 8px;
	margin-top: 137px;
	z-index: 1;
}

span.arrow.back {
	margin-left: 8px;
	margin-top: 137px;
	z-index: 1;
}

/* Navigation Arrows */

div.anythingSlider .forward {
	right: 0;
}

div.anythingSlider .back {
	left: 0;
}

div.anythingSlider .forward a {
	background-position: 0 -40px;
}

div.anythingSlider .back a {
	background-position: -88px -40px;
}

div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover {
	background-position: 0 -240px;
}

div.anythingSlider .back a:hover, div.anythingSlider .back a.hover {
	background-position: -88px -240px;
}

/* Navigation Links */

/* images with caption */

#slider3 img {
	width: 100%;
	height: 100%;
}

/* position the panels so the captions appear correctly */

#slider3 .panel {
	position: relative;
}

/* captions */

#slider3 .caption-top, #slider3 .caption-right,
 #slider3 .caption-bottom, #slider3 .caption-left {
	background: #000;
	color: #fff;
	padding: 10px;
	margin: 0;
	position: relative;
	z-index: 10;
	opacity: .8;
	filter: alpha(opacity=80);
}

/* Top caption - padding is included in the width (480px here, 500px in the script), same for height */

#slider3 .caption-top {
	left: 0;
	top: 0;
	width: 480px;
	height: 30px;
}

/* Right caption - padding is included in the width (130px here, 150px in the script), same for height */

#slider3 .caption-right {
	right: 0;
	bottom: 0;
	width: 160px;
	height: 90px;
	font-size: 12px;
}

/* Bottom caption - padding is included in the width (480px here, 500px in the script), same for height */

#slider3 .caption-bottom {
	left: 0;
	bottom: 0;
	width: 480px;
	height: 30px;
}

/* Left caption - padding is included in the width (130px here, 150px in the script), same for height */

#slider3 .caption-left {
	left: 0;
	bottom: 0;
	width: 130px;
	height: 180px;
}

/* Caption close button */

.caption-top .close, .caption-right .close,
 .caption-bottom .close, .caption-left .close {
	font-size: 80%;
	cursor: pointer;
	float: right;
	display: inline-block;
}
