/*
    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: 700px;
	height: 390px;
	margin: 0 auto;
}

/* This CSS is needed for the fading transition */
#slider { background: #000; } /* black background makes fading less flashy */
#slider .panel { opacity: 0; }

/****** SET COLORS HERE *******/
/* Default State */
div.anythingSlider .thumbNav a.cur, div.anythingSlider .thumbNav a {
}
div.anythingSlider .anythingWindow {
}
/* Active State */
div.anythingSlider.activeSlider .thumbNav a.cur, div.anythingSlider.activeSlider .thumbNav a {
	
}

div.anythingSlider.activeSlider .anythingWindow {
}

/**** DO NOT CHANGE BELOW THIS LINE ****/
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	height: 272px;
    left: 18px;
    overflow: hidden;
    position: relative;
    top: -2px;
    width: 777px;
}
/* wrapper: 45px right & left padding for the arrows, 28px @ bottom for naviagation */
div.anythingSlider {
left: 0px;
    position: relative;
    top: 13px;
}
/* anythingSlider base UL */
ul.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	top: 0; left: 0;
	margin: 0;
}

ul.anythingBase li {
	list-style: none;
}

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

/* Navigation Arrows */
div.anythingSlider .arrow {
	top: 50%;
	position: absolute;
	display: block;
}
div.anythingSlider .arrow a {
	display: block;
	height: 120px;
	margin-top: -60px;
	width: 45px;
	text-align: center;
	outline: 0;
	background: url(../images/arrows.png) no-repeat;
	text-indent: -9999px;
}
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 */
div.anythingSlider .thumbNav { 
left: 720px;
list-style: none outside none;
margin: 0;
min-width: 50px;
padding: 0;
position: absolute;
right: 0;
top: 270px;
}

div.anythingSlider .thumbNav li { 
	color: #666666; 
}

div.anythingSlider .thumbNav li span { visibility: hidden; }

div.anythingSlider .thumbNav a {
/* background: url("../img/bg-featured-tab.png") no-repeat scroll right top transparent; */
    background: #fff;
    color: #4A6783;
    float: left;
    height: 10px;
    line-height: 20px;
    outline: medium none;
    text-decoration: none;
    width: 10px;
    margin-right: 4px;
}

div.anythingSlider .thumbNav a:hover {
	/* background: url(../img/bg-featured-tab.png) no-repeat top right; color: #fff; */
	background: #ccc;
 }
 
 div.anythingSlider .thumbNav a.cur {
 background:#172142;
 	 /* background: url(../img/bg-featured-selected-arrow.png) no-repeat top left; color: #fff; */
 }

/* slider autoplay right-to-left, reverse order of nav links to look better */
div.anythingSlider.rtl .thumbNav a { float: right; } /* reverse order of nav links */
div.anythingSlider.rtl .thumbNav { float: left; }    /* move nav link group to left */
/* div.anythingSlider.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */

/* Autoplay Start/Stop button */
div.anythingSlider .start-stop {
	display: none;
	visibility: hidden;
}
div.anythingSlider .start-stop.playing { 
	display: none;
	visibility: hidden;
	
	 }
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover { display: none;
	visibility: hidden; }
