/*
Javascript jscImageRotator control Stylesheet
version 2.0
AdvanceByDesign.com

Copyright (C) 2011,2012 Robert Rook
Released under the terms of the
ABD Free Source Code Licence
*/
.jscir {
	position:relative;
	overflow:hidden;
	font-family:sans-serif;
	font-size:small;
}

/* The images in the image rotator */
.jscir img {
	width:100%;
	height:100%;
	border:1;
	position:absolute;
	left:0;
	top:-50;
	z-index:9;
}
.jscir img.ir_secondimage { z-index:8; }

/* The styles for the text shown on the rotator */
.jscir .ir_text {
	z-index:99;
	position:absolute;
	left:10%;
	top:1%;
	width:80%;
	text-align:center;
	background:#fff;		/* discription  */
	opacity:0.8;
	filter:Alpha(opacity=80);
	border:1px solid #999;
	border-radius:4px;
}

/* The styles for the bar with navigation, play/pause buttons */
.jscir .ir_nav {
	z-index:99;
	position:absolute;
	left:3%;
	bottom:3%;
}

/* Navigation buttons (numbers) */
.jscir .ir_nav .ir_slide {
	display:inline-block;
	padding:2px 0;
	border:1px solid #999;
	margin:0 2px 0 0;
	background:#ffc;
	cursor:pointer;
	text-align:center;
	width:33px;
	border-radius:4px;
}
/* Current slide button */
.jscir .ir_nav .ir_slide.ir_current {
	background:#fff;			/*   current slide #  */
}

/* Play button */
.jscir .ir_nav .ir_play, .jscir .ir_nav .ir_pause {
	display:inline-block;
	padding:2px 5px;
	border:1px solid #999;
	margin:0 2px 0 0;
	background:#fff;
	cursor:pointer;
	text-align:center;
	border-radius:4px;
}

/* Pause button */
.jscir .ir_nav .ir_pause {
}
/* Speed Select button */
.btnSelect {
	  color: #900;
	  background: #FF0;
	  font-weight: bold;
	  border: 1px solid #900;
}
 
.btnSelect:hover {
	  color: #FFF;
	  background: #900;
}
