.picWrapper{
	width: 100%;
	height: 600px;
	position: relative;
	overflow: hidden;
	
	//border: 1px solid black;
}

.picWrapper img{
 	width: 100%;
	position: relative;
}

.picWrapper .leftBar{
	position: absolute;
	z-index:100;
	height: 80%;
	width: 10%;
	top: 10%;
	left: 0;
	
	//border: 2px solid black;	
}

.picWrapper .rightBar{
	position: absolute;
	z-index:101;
	height: 80%;
	width: 10%;
	top: 10%;
	right: 0;
	
	//border: 2px solid black;
}

.picWrapper .leftArrow {
    height: 80%;
    width: 10%;
    position: absolute;
    left: 5%;
    top: 10%;
    transition: 0.6s;
	text-align:	center;
	z-index: 4;
	
	opacity: 0;
	//border: 2px solid yellow;
}

.picWrapper .leftArrow-hover{
	opacity: 1;
	left: 0;
	text-shadow: 0 0 20px white;
}

.picWrapper .rightArrow{
	height: 80%;
	width:	10%;
	position: absolute;
    right: 5%;
	top: 10%;
	transition: 0.6s;
	text-align:	center;
	z-index: 4;
	
	opacity: 0;
	//border: 2px solid yellow;
}

.picWrapper .rightArrow-hover{
	opacity: 1;
	right: 0;
	text-shadow: 0 0 20px white;
}


.picWrapper .leftArrow .fa-angle-left,.picWrapper .rightArrow .fa-angle-right{
	position: relative;
	color: white;
}

.picWrapper .bottomBar{
	position: absolute;
	z-index:3;
	width: 100%;
	height: 3%;
	bottom: 6%;
	text-align: center;
	
	//border: 2px solid black;
}

.picWrapper .bottomBar ul{
	height: 100%;
	margin: 0;
	padding-left: 0;
}

.picWrapper .bottomBar li{
	display: inline-block;
}

.picWrapper .dot{
	width: 10px;
	height: 10px;
	background-color: #e6e6e6;
	border-radius: 50%;
	margin-right: 20px;
}

.picWrapper .dot-light{
	background-color: white;
	box-shadow: 0 0 20px white;
}

.picWrapper .frame{
	position: absolute;
	height: 100%;
	width: 100%;
}

.picWrapper .frame .Pics{
	width: 300%;
	height: 100%;
	position:absolute;
	transition: 0.7s;
	left: 0;	

	//border: 5px solid black;
}
.picWrapper .frame .Pics .pic{
	float:left;
	height: 100%;
	width: 33.33%;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	position:relative;
}
