/*
    anythingSlider v1.2
    
    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: 650px;
	height: 300px;
	position: relative;
	margin: 0;
	font-family: "Courier New", Courier, monospace;
}
.anythingSlider .wrapper                {
	width: 650px;
	overflow: auto;
	height: 300px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	color: #333;
}

                                        /* Width below is max for Opera */
.anythingSlider .wrapper ul             {
	width: 32700px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0px;
	background: #eee;
	margin: 0;
}
.anythingSlider .wrapper ul li          {
	display: block;
	float: left;
	padding: 0;
	height: 300px;
	width: 650px;
	margin: 0;
}
.anythingSlider .arrow                  { display: block; height: 200px; width: 67px; background: url(../images/arrows.png) no-repeat 0 0; text-indent: -9999px; position: absolute; top: -134px; cursor: pointer; }
.anythingSlider .forward                { background-position: 0 0; right: -67px; }
.anythingSlider .back                   { background-position: -67px 0; left: -67px; }
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

.thumbNav                               { position: relative; top: 306px; text-align: center; z-index: 200; }
.thumbNav li                            { display: inline; }
.thumbNav a                             {
	color: #D2D0CB;
	font: 11px/18px;
	display: inline-block;
	padding: 2px 8px;
	height: 16px;
	margin: 0px 5px 0px 0px;
	text-align: center;
	
}
.thumbNav a:hover                       {
	background:  #CCCCCC /*url(../images/cellshade.png) repeat-x;*/;
	color: #FFF;
}
.thumbNav a.cur                         {
	color: #FFF;
	background-color: #E0E0E0;
}

.start-stop                             {
	z-index: 210;
	background-repeat: repeat-x;
	color: #D2D0CB;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: relative;
	float: right;
	top: 304px;
	right: 30px;
}
.start-stop.playing                     {
	background-color: none;
	color: #CCCCCC;
}
.start-stop:hover                       {
	background-image: none;
	color: #ADADAD;
}

/*
  Prevents
*/
.anythingSlider .wrapper ul ul          { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.anythingSlider .wrapper ul ul li       { float: none; height: auto; width: auto; background: none; }

