/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
	background: white;
}
/*--Window/Masking Styles--*/
.window {
	height: 295px;	width: 768px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	padding: 0px;
	margin: 0px; 
	
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
	
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: -98px; right: 0px;
	width:770px; height:96px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	/* background: url(/oren/gallery/images/hori_nav.png) no-repeat; */
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding-left: 2px;
	text-decoration: none;
	color: #fff;
		float: left; 
     
    margin: 0px; 
	
		/*opacity : 0.4; 
		filter: gray;
    filter: alpha(opacity=40); // msie */
}
.paging a.active {
	font-weight: bold;
	/* background: #920000; 
	border: 0px solid #610000;  */
		opacity : 1; 
    filter: alpha(opacity=40); // msie
 filter: gray; */
}
.paging a:hover {font-weight: bold;}

