/*--Main Container--*/
img{ border:none; }
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:266px;	
	width: 771px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	margin:0;
	padding:0;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel a{ width:771px; display:inline-block;}

.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 10px; left:40px;	
	 /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 15px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	
}
.paging a {
	padding-right: 5px;
	padding-left: 2px;
	text-decoration: none;
	color: #999999;
	border-right:1px solid #999999;
	height:10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}
.paging a#last{ border-right:none; }
.paging a.active {
	font-weight: bold;
	color: #000000;	
}
.paging a:hover {font-weight: bold;}
