/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
	padding-left: 2px;
	padding-bottom:	8px;
}
/*--Window/Masking Styles--*/
.window {
	height:305px;	width: 880px;
	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: 5px; right: 730px;
	width: 150px; height:25px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 20px;
	
	
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	border:2px solid white;
	cursor:pointer;
	height:10px;
	margin:0 4px 0 0;
	width:10px;
	background: #DAF3F8;
	padding:0 6px;
}
.paging a.active {
	background: #31A9DF; 
	border: 2px solid #ffffff;
	
}
