@charset "utf-8";
/* CSS Document */

/*--Main Container--*/
.main_view_slide {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window_slide {
	height:300px;	width: 971px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel_slide {
	position: absolute;
	top: 0; left: 0;
}
.image_reel_slide img {float: left;}

/*--Paging Styles--*/
.paging_slide {
	position: absolute;
	bottom: 20px; left: 0px;
	width: 160px; height:40px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: rgba(0, 0, 0, 0.7);
-moz-border-radius: 0px 15px 15px 0px;
border-radius: 0px 15px 15px 0px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
 
}
.paging_slide a {
	
	padding: 3px 5px 3px 5px;
	text-decoration: none;
	color: #fff;
	  
}
.paging_slide a.active {
	font-weight: bold;
	color:#00ADA9;
	background: rgba(255, 255, 255, 0.1); 
	border: 0px solid #666;
	-moz-border-radius: 4px;
	-khtml-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.paging_slide a:hover {font-weight: bold;}