/*--Main Container--*/

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

.image_reel img {
	float: left;
	margin:0;
	padding:0;
}

/*--Paging Styles--*/
.paging {
	position: absolute;
	top: 0px;
	right: 0px;		
	height:51px;	
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 51px;
	background: url(../images/no_bg.jpg) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	padding:5px 0 0 10px;
}
.paging a {	
	text-decoration: none;
	color: #fff;
	background-image:url(../images/white_circle.gif);
	background-repeat:no-repeat;
	width:21px;
	height:21px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: bold;
	color:#000;
	float:left;
	margin:8px 0 0 5px;	
}
.paging a.active {
	background-image:url(../images/yellow_circle.gif);
	background-repeat:no-repeat;
	width:21px;
	height:21px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: bold;
	color:#000;
	float:left;
}
.paging a:hover {font-weight: bold;}