*{
	outline-color: -moz-use-text-color;
	outline-style: none;
	outline-width: medium;
	}

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:465px;
	width: 300px;
	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;
	cursor:default;
	}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 0px; 
	width: 290px;
	left:8px; 
	height:25px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: left;
	line-height: 20px;
	background: url(paging_bg2.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 7px;
	text-decoration: none;
	color: #fff;
	background-image: url(images/indicator_n.png);
	background-position:left top;
	background-repeat:no-repeat;
	text-indent: -1000px;
	
}
.paging a.active {
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-indent: -1000px;
	background-image: url(images/indicator_a.png);
	background-position:left top;
	background-repeat:no-repeat;
}
.paging a:hover {
	font-weight: normal;
}

img{
	border:0px;
	}