@charset "utf-8";
/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:300px;
	width: 800px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	border: 1px solid #5B5037;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 140px;
	height:40px;
	z-index: 100; /*--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(../images/backgrounds/contacttexture.gif);
	background-repeat: repeat-x;
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #0E0F0A;
}
.paging a.active {
	font-weight: bold;
	border: 1px solid #463F24;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #590000;
	color: #CCC;
	background-image: url(../images/buttons/button.gif);
	background-position: center center;
}
.paging a:hover {
	font-weight: bold;
	color: #CCC;
}
