/* CSS Document */


/*--Main Container--*/



.main_view {
	float: right;
	position: relative;
	margin:5px;
}
/*--Window/Masking Styles--*/
.window {
	height:363px;	width: 547px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	background-color:#FFFFFF;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}

.image_reel_text {
text-decoration:none;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 0px; right: 0px;
	width: 547px; height:30px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	padding-top:10px;
}
.paging a {
	text-decoration: none;
	color: #fff;
	padding-left:7px;
	padding-right:7px;
	padding-top:5px;
	padding-bottom:5px;
	font-size:11px;
	font-weight:bold;
	margin:0px;	
	display:none;


	
}
.paging a.active {
}
.paging a:hover {font-weight: bold;}