/*
    anythingSlider v1.0
    download by http://www.codefans.net
    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/
*/


.anythingSlider                         {
	width: 225px;
	height: 149px;
	position: relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
}
.anythingSlider .wrapper                {
	width: 225px;
	overflow: auto;
	height: 149px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
}
.anythingSlider .wrapper ul             {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}
.anythingSlider ul li                   {
	display: block;
	float: left;
	padding: 0;
	height: 149px;
	width: 225px;
	margin: 0;
}
.anythingSlider .arrow                  {
	display: block;
	height: 200px;
	width: 67px;
	text-indent: -9999px;
	position: absolute;
	cursor: pointer;
	background-image: url(../images/pro/arrows.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	bottom: -30px;
}
.anythingSlider .forward                {
	background-position: 0 0;
	right: -80px;
}
.anythingSlider .back                   {
	background-position: -67px 0;
	left: -80px;
}
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

