#slider *{
	margin:0;
	padding:0;
}
#slider{
    	clear: both;
    	margin:0 auto;
    	height: 268px;
    	width: 700px;
}
/*--Main Container--*/
#slider .main_view {
	float: left;
	position: relative;
	height:268px;
}
/*--Window/Masking Styles--*/
#slider .window {
	height:268px; 
	width: 700px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
#slider .image_reel {
	position: absolute;
	top: 0; 
	left: 0;
}
#slider .slide{
    	display: block;
    	float: left;
    	position: relative;
    	width: 700px;
    	height: 268px;
    	overflow:hidden;
}
#slider img{
	float: left;
	height:268px; 
	width: 700px;
}
/*--Paging Styles--*/
#slider .paging {
	bottom: 5px;
	height: 25px;
	line-height: 50px;
	padding: 0;
	position: absolute;
	right: 5px;
	text-align: center;
	width: 78px;
	z-index: 80;
}
#slider .pagingBg {
	position: relative;
	width: 72px; 
	height:22px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 32px;
	/*display: none; /*--Hidden by default, will be later shown with jQuery--*/
	margin:0;
	padding:0;
	opacity:0.5;
}
#slider .paging a {
	padding: 0px;
	width:21px;
	height:21px;
	text-decoration: none;
	background: #E7E7E7;
	position:relative;
	z-index:101;
	line-height:30px;
	display:block;
	margin:2px;
	float:left;
	border-radius:3px;
}
#slider .paging a.active {
	 background: #b3b3b3;
	 border:none;
	 text-decoration:none;
	 cursor:default;
}
#slider .paging a:hover {
}


