/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:297px;	
	width: 961px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 0px; 
	right: 0px;
	width: 150px; 
	height:47px;
	z-index: 90; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(paging_bg2.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 5px 8px;
	text-decoration: none;
	color: #000;
	font-weight:bold;
	background:url(../images/banner-in-img.png) center no-repeat;
}
.paging a.active { font-weight: bold; color:#fff; background:url(../images/banner-active-img.png) center no-repeat;  /*background: #ff8517;  border: 1px solid #f07200; color:000!important; -moz-border-radius: 4px; -khtml-border-radius: 4px; -webkit-border-radius: 4px;*/}
.paging a:hover { font-weight:bold; color:#FFFFFF;  background:url(../images/banner-active-img.png) center no-repeat;}