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

/****** SET COLORS HERE *******/
/* Default State */
div.anythingSlider .thumbNav a.cur, div.anythingSlider .thumbNav a {
	background: #777;
}
/*div.anythingSlider .anythingWindow {
display:none;border-bottom: 1px solid #f5f5f5;
}*/
/* Active State */
div.anythingSlider.activeSlider .thumbNav a.cur, div.anythingSlider.activeSlider .thumbNav a {
	background-color: #f5f5f5;
}
/*div.anythingSlider.activeSlider .anythingWindow {
	border-color: #f5f5f5;
}*/

/**** DO NOT CHANGE BELOW THIS LINE ****/
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* wrapper: 45px right & left padding for the arrows, 28px @ bottom for naviagation */
div.anythingSlider {
	position: relative;
	padding: 0;
	/*padding: 0 45px 28px 45px;*/
}
/* anythingSlider base UL */
ul.anythingBase {
	/*background: #fff url('../images/introBg.jpg') repeat-x 0 0;*/
	list-style: none;
	position: absolute;
	top: 0; left: 0;
	margin: 0;
	padding-left: 0;
}
ul.anythingBase li.panel {
	background: transparent;
	display: block;
	float: left;
	margin: 0;
}

ul.anythingBase li.panel div.innerCont{
	position: absolute;
	z-index: 1;
}

ul.anythingBase li.panel div.actionButton{
	background: url('../images/buttonBg.jpg') repeat-x 0 0 transparent;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-box-shadow: 0 2px 9px #616161;
	-webkit-box-shadow: 0 2px 9px #616161;
	box-shadow: 0 2px 9px #616161;
	position: absolute;
	text-align: center;
	top: 250px;
	height: 28px;
	width: 145px;
	z-index: 15;
}

ul.anythingBase li.panel div.actionButton a{
	font-size: 1.2em;
	font-weight: bold;
	color: #010101;
	text-decoration: none;
	position: relative;
	top: 4px;
	-moz-text-shadow: 0 2px 12px #ffffff;
	-webkit-text-shadow: 0 2px 12px #ffffff;
	text-shadow: 0 2px 12px #ffffff;
}



ul.anythingBase li.panel div.overlayText h2{
	
	text-align: left;
 font-weight:normal;
	color: #ffffff;
	-moz-text-shadow: 0 2px 12px #010101;
	-webkit-text-shadow: 0 2px 12px #010101;
	text-shadow: 0 2px 12px #010101;
}ul.anythingBase li.panel div.overlayText h3 span{
	color: yellow;
}

/* Navigation Arrows */
div.anythingSlider .arrow {
	background: url('../images/ibc/arrows.png') no-repeat 0 0;
	top: 328px;
	position: absolute;
	display: block;
}

#dnn_UpperPaneHome div.anythingSlider .arrow{
	top: 365px;
}

div.anythingSlider .arrow a {
	display: block;
	height:30px;
	width: 28px;
	text-align: center;
	outline: 0;
	background: #F1F1F1 url('../images/ibc/arrows.png') no-repeat;
	text-indent: -9999px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid #3A4861;
}

div.anythingSlider .forward { right:10px;/*-18px;*/ z-index:100; }
div.anythingSlider .back { right:45px;/*-15px;*/ z-index:100; }
div.anythingSlider .forward a { background-position: 1px -14px; }
div.anythingSlider .back a { background-position: -108px -14px; }
div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-color: #e2e2e2; background-position: 1px -64px; }
div.anythingSlider .back a:hover, div.anythingSlider .back a.hover { background-color: #e2e2e2; background-position: -108px -64px; }

/* Navigation Links */
div.anythingSlider .thumbNav { margin: 0; }
div.anythingSlider .thumbNav li { display: inline; }
div.anythingSlider .thumbNav a {
	color: black;
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	background-image: url('../images/cellshade.png');
	background-repeat: repeat-x;
	text-align: center;
	outline: 0;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
div.anythingSlider .thumbNav a:hover { background-image: none; }

/* 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;
	z-index: 10;
	background: green url('../images/ibc/cellshade.png') repeat-x center top;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	float: right;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
div.anythingSlider .start-stop.playing {background-color: red; }
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {background-image: none; color: #ff0 }
f
