/* CSS Document */
/*--Main Container--*/
.main_view {
	position: relative;
	margin:0;
	padding:0;
}
/*--Window/Masking Styles--*/
.window {
	height:200px;	width: 900px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	background:red;
	left:0px;
	margin:0px;
	padding:0px;
	list-style:none;
}
.window ul {
	margin:0;
	padding:0;
	list-style:none;
	}
.image_reel {
	position: absolute;
	top: 0; left: 0;
	
}
.image_reel span {
	margin:20px 5px 0px 250px; 
	border:0; 
	position:absolute; 
	height:180px; 
	width:200px;
	background:#333333;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	padding:10px;
	color:#FFFFFF;
	font-size:10px;
} 
.image_reel strong {
	font-size:2em;
	font-weight:normal;
	letter-spacing:-1px;
	}
.image_reel img {
	float: left; border:0;
	} 

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 20px; right: 20px;
	 height:47px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	line-height: 30px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	-moz-opacity:0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
	width:30px;
	height:40px;
	display:block;
	text-align: center;
	float:left;
	margin:5px;
	background:  url(reeler_inactive.png) no-repeat;
}
.paging a.active {
	font-weight: bold;
	background:  url(reeler_active.png) no-repeat;
	
	/*border: 1px solid #610000;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	-webkit-border-radius: 10px;*/
}
.paging a:hover {font-weight: bold;}