/*CONTAINER*/
DIV.orbit
{
	width: 1px;
	height: 1px;
	position: relative;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.25);
	overflow: hidden;
}
DIV.orbit IMG
{
	position: absolute;
	top: 0;
	left: 0;
}
DIV.orbit A IMG
{
	border: none;
}
/*TIMER*/
DIV.timer
{
	width: 40px;
	height: 40px;
	overflow: hidden;
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: .6;
	cursor: pointer;
	z-index: 1001;
}
SPAN.rotator
{
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: -20px;
	background: url('orbit/rotator-black.png') no-repeat;
	z-index: 3;
}
SPAN.mask
{
	display: block;
	width: 20px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	overflow: hidden;
}
SPAN.rotator.move
{
	left: 0;
}
SPAN.mask.move
{
	width: 40px;
	left: 0;
	background: url('orbit/timer-black.png') repeat 0px 0px;
}
SPAN.pause
{
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0px;
	background: url('orbit/pause-black.png') no-repeat;
	z-index: 4;
	opacity: 0;
}
DIV.timer:hover SPAN.pause, SPAN.pause.active, DIV.timer:hover SPAN.pause.active
{
	opacity: 1;
}
/*CAPTIONS*/
DIV.caption
{
	background: #000;
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	z-index: 1000;
	position: absolute;
	bottom: -100px;
	color: #FFF;
	padding: 8px 0;
}
DIV.caption SPAN
{
	padding: 0 10px;
	font-size: 14px;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.8);
	margin: 0;
}
.orbit-caption
{
	display: none;
}
/*DIRECTIONAL NAV*/
DIV.orbit:hover DIV.slider-nav
{
	display: block;
}
DIV.slider-nav
{
	display: none;
}
DIV.slider-nav SPAN
{
	width: 33px;
	height: 33px;
	text-indent: -9999px;
	position: absolute;
	z-index: 1000;
	top: 43%;
	cursor: pointer;
}
DIV.slider-nav SPAN.right
{
	background: #F7F7F7 url('orbit/right-arrow.png');
	right: 10px;
	top: 202px;
	/*+border-radius:4px;*/
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px 4px 4px 4px;
}
DIV.slider-nav SPAN.left
{
	background: #F7F7F7 url('orbit/left-arrow.png');
	left: 10px;
	top: 202px;
	/*+border-radius:4px;*/
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px 4px 4px 4px;
}
/*BULLET NAV*/
.orbit-bullets
{
	position: absolute;
	z-index: 1000;
	list-style: none;
	top: 10px;
	left: 7px;
	margin: 0;
	padding: 0;
}
.orbit-bullets LI
{
	float: left;
	margin-left: 5px;
	cursor: pointer;
	color: #999;
	text-indent: -9999px;
	background: url(orbit/bullets.png) no-repeat;
	width: 7px;
	height: 7px;
	overflow: hidden;
}
.orbit-bullets LI.active
{
	color: #222;
	background-position: -7px 0;
}
