/*
    dashSlider 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/
*/
.dashSlider                         {
	width: 338px;
	height: 182px;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.dashSlider li {
	list-style-type: none;
}

.dashSlider p {
	margin-bottom: 10px;
}
.dashSlider .textSlide {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}

.dashSlider .textSlide ul li{
	list-style-type: circle;
}
.dashSlider .wrapper                {
	width: 338px;
	overflow: auto;
	height: 182px;
	position: absolute;
	top: 0;
	left: 0px;
	padding: 0px;
	text-align: center;
}

                                        /* Width below is max for Opera */
.dashSlider .wrapper ul             { width: 32700px; list-style: none; position: absolute; top: 0; left: 0px; margin: 0; }
.dashSlider .wrapper ul li          {
	display: block;
	float: left;
	padding: 0;
	height: 162px;
	width: 338px;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.dashSlider .wrapper li a {
	color: #333333;
	text-decoration: none;
}

.dashSlider .arrow                  { display: block; height: 10px; width: 10px; background: url(../images/arrows.png) no-repeat 0 0; text-indent: -9999px; position: absolute; top: -250px; cursor: pointer; }
.dashSlider .forward                { background-position: 0 0; right: -20px; }
.dashSlider .back                   { background-position: -67px 0; left: -20px; }
.dashSlider .forward:hover          { background-position: 0 -200px; }
.dashSlider .back:hover             { background-position: -67px -200px; }

.thumbNav                               {
	position: relative;
	top: 150px;
	text-align: center;
	width: 250px;
	display: none;
}
.thumbNav li                            { display: inline; }
.thumbNav a                             {
	color: #FFFFFF;
	display: inline-block;
	padding: 2px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	text-align: center;
-moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; 		font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	font-weight: bold;
	background-color: #ee760b;
}
.thumbNav a:hover                       {
	background-color: #e63700;
	background-image: none;
}
.thumbNav a.cur                         { background: #e63700; }

.start-stop                             {
	z-index: 10;
	background: green;
	background-image: url(../images/cellshade.png);
	background-repeat: repeat-x;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	top: 210px;

-moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; 			font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	left: 240px;
	display: none;
}
.start-stop.playing                     { background-color: red; }
.start-stop:hover                       { background-image: none; }

/*
  Prevents
*/
.dashSlider .wrapper ul ul          { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.dashSlider .wrapper ul ul li       { float: none; height: auto; width: auto; background: none; }

