
/* Image Rotator CSS */
.imageRotate {
	position:relative;
	overflow:hidden; /* wrap floats */
	width:100%; /* trips haslayout, so IE is wrapping floats too */
}

.imageRotate img {
	display:block;
	border:solid #000;
	border-width:1px 0;
}

.imageRotate .under {
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}

.imageRotate .hide {
	display:none;
}

.imageRotate .show {
	position:relative;
	display:block;
	z-index:99;
}

.imageRotate .selectors {
	float:right;
	padding:8px 8px 8px 0;
	list-style:none;
	font-size:1px; /* fix IE minimum size bugs */
}

.imageRotate .selectors li,
.imageRotate .pause,
.imageRotate .play,
.imageRotate .next,
.imageRotate .prev {
	cursor:pointer;
	cursor:hand;
	/* fix IE minimum size bugs */
	font-size:1px; 
	line-height:1px;
	-webkit-transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
	-moz-transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
	-o-transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
	transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
}

.imageRotate .selectors li {
	float:left;
	display:inline; /* prevent IE margin bugs */
	padding:4px;
	margin-left:4px;
	background:#CCC;
	border-radius:12px;
}

.imageRotate .selectors span {
	display:block;
	width:8px;
	height:8px;
	border-radius:8px;
	background:#FFF;
}

.imageRotate .selectors li:hover {
	background:#AAA;
}

.imageRotate .selectors .selected span {
	background:#666;
}

.imageRotate .timeLeft,
.imageRotate .pause,
.imageRotate .play {
	float:left;
	margin:8px 0 0 8px;
}

.imageRotate .timeLeft {
	position:relative;
	width:256px;
	font-size:1px; /* fix IE minimum size bugs */
	background:#FFF;
	border:4px solid #CCC;
	border-radius:12px;
}

.imageRotate .timeLeft div {
	width:0;
	height:8px;
	background:#666;
	border-radius:8px;
}

.imageRotate .timeLeft div.countdown {
	background:#F00;
}

.imageRotate .pause {
	width:4px;
	height:16px;
	border:solid #CCC;
	border-width:0 4px;
}

.imageRotate .pause:hover {
	border-color:#AAA;
}

.imageRotate .play,
.imageRotate .next,
.imageRotate .prev {
	width:1px;
	height:1px;
	border:solid transparent;
	border-width:8px 0 8px 12px;
	border-left-color:#CCC;
}

.imageRotate .play:hover {
	border-left-color:#AAA;
}

.imageRotate .next,
.imageRotate .prev {
	position:absolute;
	top:50%;
	z-index:999;
	margin-top:-16px;
	opacity:0.2;
	filter:alpha(opacity=20); /* IE 8 and lower */
	-webkit-transition:opacity linear 0.25s;
	-moz-transition:opacity linear 0.25s;
	-o-transition:opacity linear 0.25s;
	transition:opacity linear 0.25s;
}

.imageRotate:hover .next,
.imageRotate:hover .prev {
	opacity:1;
	filter:alpha(opacity=100); /* IE 8 and lower */
}

.imageRotate .next {
	right:8px;
}

.imageRotate .prev {
	left:8px;
	border-color:transparent #CCC transparent transparent;
	border-width:8px 12px 8px 0;
}

* html .imageRotate .next,
* html .imageRotate .play {
	border-color:pink pink pink #CCC;
	filter:chroma(color=pink) alpha(opacity=50);
}

* html .imageRotate .prev {
	border-color:pink #CCC pink pink;
	filter:chroma(color=pink) alpha(opacity=50);
}

.imageRotate .next:hover {
	border-left-color:#FFF;
}

.imageRotate .prev:hover {
	border-right-color:#FFF;
}

@media (max-width:480px) {
	.imageRotate .timeLeft {
		width:100px;
	}
}
