/*--Window/Masking Styles--*/
.window {
	height:200px;	width: 350px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	top: 160px;
	right: 60px;
	width: 178px;
	height: 47px;
	z-index: 3; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	background-image: url(paging_bg2.png);
	background-repeat: no-repeat;
	padding-bottom: 15px;
	padding-right: 12px;
}

.paging a {
	text-decoration: none;
	color: #fff;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	font-weight: bold;
	font-size: 11px;
}
.paging a.active {
	/*background: #eec55b;
	border: 1px solid #d56f03;*/
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}

