/* CSS Document */

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

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom:6px; left:10px; color:#fff;
	width:auto; height:30px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 30px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding:2px 5px 2px 5px; margin:5px 1px 5px 1px;
	text-decoration: none;
	font-weight: bold; color: #000100; 
	background: #fff; 
	border: 1px solid #000100;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;

}
.paging a.active {
	font-weight: bold; 	color: #000; 
	background: #59CD62; 
	border: 1px solid #2CAE36;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}
