.swipe {
	overflow: hidden;
	visibility: hidden;
	position: relative;
}
	.swipe-wrap {
    	overflow: hidden;
    	position: relative;
	}
	.swipe-wrap > div {
    	float:left;
    	width:100%;
    	position: relative;
	}
	
	.swipe .nav-container {
    	display: none;
    }


    .swipe:hover .nav-container {
      display: block;
    }

	.swipe .nav-container .nav {
		position: absolute;
		top: 50%;
		width: 34px;
		height: 34px;
	}

	.swipe .nav-container .nav.prev {
		left: 20px;
		background: url("../images/prev-horizontal.png") no-repeat;
	}

	.swipe .nav-container .nav.next {
		right: 20px;
		background: url("../images/next-horizontal.png") no-repeat;
	}