/*--Main Container--*/
.mainview {
	float: left;
	position: relative;
	z-index: 99;
}
/*--Window/Masking Styles--*/
.window {
	height:300px;	width: 920px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.imagereel {
	position: absolute;
	top: 0; left: 0;
	}
	.imagereel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	top: -10px; right: 23px; /* original was bottom: 40px */
	width: 75px; height:290px; /* 320 - paddingtop determines height */
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 70px;
	background: #272b2e;
	background: rgba(0, 0, 0, 0.42);
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	padding-top: 30px; /* determines how far down images are pushed */	
}
	.thumbs {
		position: relative;
		}
	.thumbs a {
		text-decoration: none;
		color: #fff;
		outline: none;
		-moz-opacity: 0.50;
		opacity:.50;
		filter: alpha(opacity=50);
		}
		
		.thumbs a.active {
			font-weight: bold;
			-moz-border-radius: 3px;
			-khtml-border-radius: 3px;
			-webkit-border-radius: 3px;
			-moz-opacity: 1.0;
			opacity: 1.0;
			filter: alpha(opacity=100);
			}
		.thumbs a:hover {
			-moz-opacity: 1.0;
			opacity: 1.0;
			filter: alpha(opacity=100);
			}
		.thumbs a.tb1 {
			position: absolute;
			top: 0px;
			right: 5px;
			}
		.thumbs a.tb2 {
			position: absolute;
			top: 95px;
			right: 5px;
			}
		.thumbs a.tb3 {
			position: absolute;
			top: 190px;
			right: 5px;
			}


/*--OverText Styles--*/
.overtext {
	position: absolute;
	top: 12px; left: -9px; /* original was bottom: 40px */
	width: 373px; height:93px;
	z-index: 101; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(../images/rotator/overtext.png) no-repeat;
}
/*
.overtext a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
	outline: none;
}
.overtext a.active {
	font-weight: bold;
	background: #903a00;
	border: 1px solid #613000;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.overtext a:hover {font-weight: bold;}
*/
