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

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 80px; right: -105px;
	width: 232px; height:54px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	line-height: 40px;
	background: url(paging_bg_3.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging_holder {
	width: 100px;
	margin-left: 30px;
	margin-top: 5px;
	
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
}
.paging a.active {
	font-weight: bold;
	border-bottom: 2px solid #ffffff;
	
}
.paging a:hover {font-weight: bold;}
