/* - - - - - - - - - - - - - - - - - - - - REEL - - - - - - - - - - - - - - - - - - - - */
/*--Main Container--*/
#reel1 {
	width:550px; height:240px;	
	float:left; display:inline;
}
.main_view1 {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window1 {
	width: 550px; height:240px;	
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel1 { position: absolute; top: 0; left: 0; }
.image_reel1 img {float: left;}

/*--Paging Styles--*/
.paging1 {
	position: absolute;
	bottom: 30px; left:20px;
	width: 130px; height:10px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: left;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging1 a {
	padding:2px 7px;
	text-decoration: none;
	color: #FFF;
	font-weight:normal;
	font-size:10px;
	background: #009245; 

}
.paging1 a.active {
	font-weight:normal;
	background: #e5e5e5;
	color:#000;
}
.paging1 a:hover { background: #FFF; color:#009245; }
.paging1 a.active:hover {font-weight:normal; background: #e5e5e5; color:#000; }
/* - - - - - - - - - - - - - - - - - - - - REEL1 FIN - - - - - - - - - - - - - - - - - - - - */
