	#binder {
		display: block;
		width: 700px;
		vertical-align: top;
		overflow: hidden;
		margin-right: auto;
		margin-left: auto;
		margin-top: 25px;
	}
	
	#binder .list {
		display: inline-block;
		list-style-type: none;
		margin: 0;
		width: 100000px;
		text-align: left;
		background: url('images/wood.png') bottom left no-repeat;
	}
		
		#binder .list li {
			display: inline-block;
			width: 78px;
			margin: 2.2em 1.4em;
			position: relative;
			vertical-align: bottom;
		}
			
	#binder .next, #binder .prev {
		display: block;
		position: absolute;
		width: 35px;
		height: 35px;
		cursor: pointer;
		border-radius: 5px;
	}
	
	#binder .next {
		margin-top: -5em;
		right: 5%;
		background: url('images/next.png') center center no-repeat;
	}
	
		#binder .next:hover {
			background: rgba(255,255,255,0.3) url('images/next.png') center center no-repeat;
		}
	
	#binder .prev {
		margin-top: 2em;
		left: 5%;
		background: url('images/prev.png') center center no-repeat;
	}
	
		#binder .prev:hover {
			background: rgba(255,255,255,0.3) url('images/prev.png') center center no-repeat;
		}
	