.yar-slider {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow:hidden;

	/* Fade in when Init finishes */
	-webkit-transition:	opacity 400ms;
   	   -moz-transition:	opacity 400ms;
	    -ms-transition:	opacity 400ms;
	     -o-transition:	opacity 400ms;
		    transition: opacity 400ms;
	}

.yar-slide {
	position:absolute;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	}

.yar-slide.active {
	z-index: 2;
	pointer-events: all;
	}

	.yar-slide .image {
		width: 100%;
		}

		/* Non-touch Image transition properties default
			-- Set transition speed and type
		*/
		.yar-slider.no-touch .yar-slide:not(:only-child) .image {
			-webkit-transform: scale(1.04);
			   -moz-transform: scale(1.04);
				-ms-transform: scale(1.04);
				 -o-transform: scale(1.04);
					transform: scale(1.04);
			opacity: 0;
			}

		/* Non-touch Image transition properties */
		.yar-slider.no-touch .yar-slide.active .image {
			-webkit-transform: scale(1);
			   -moz-transform: scale(1);
				-ms-transform: scale(1);
				 -o-transform: scale(1);
					transform: scale(1);

			opacity: 1;
			}

		.yar-slider.no-touch .yar-slide.transition-speed .image {
			-webkit-transition:	all 400ms;
		   	   -moz-transition:	all 400ms;
			    -ms-transition:	all 400ms;
			     -o-transition:	all 400ms;
				    transition: all 400ms;
		    }

.hero .caption {
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
	/*padding: 0 70px;*/
	z-index: 3;
	text-align: center;
	}

.hero .caption .text {
    display: inline-block;
    vertical-align: middle;	
    padding: 20px;
    background: rgba(0,0,0,0.75);
    }

.hero .caption h2{
    margin-bottom: 0;
    }
	
.hero .caption .text-wrapper{
    position: absolute;
    left: 0;
    right: 0;
    top: 155px;
    height: 345px;
    line-height: 345px;
    text-align: center;
    }	    
	

		/* Non-touch Caption transition properties default
			-- Set transition speed and type
		*/
		.yar-slider.no-touch .yar-slide .caption {
			-webkit-transform: translateY(5px);
			   -moz-transform: translateY(5px);
			    -ms-transform: translateY(5px);
			     -o-transform: translateY(5px);
					transform: translateY(5px);

			-webkit-transition-delay: 200ms;
			   -moz-transition-delay: 200ms;
				-ms-transition-delay: 200ms;
				 -o-transition-delay: 200ms;
					transition-delay: 200ms;

			opacity: 0;
			}

		/* Non-touch Caption transition properties */
		.yar-slider.no-touch .yar-slide.active .caption {
			-webkit-transform: translateY(0px);
			   -moz-transform: translateY(0px);
			    -ms-transform: translateY(0px);
			     -o-transform: translateY(0px);
					transform: translateY(0px);
			opacity: 1;
			}

		.yar-slider.no-touch .yar-slide.transition-speed .caption {
			-webkit-transition:	all 400ms;
		   	   -moz-transition:	all 400ms;
			    -ms-transition:	all 400ms;
			     -o-transition:	all 400ms;
				    transition: all 400ms;
		}

/* controls */

.yar-slider-controls {
	z-index: 3;
	}

.yar-slider-controls > div {
	cursor: pointer;
	position: absolute;
	font-size: 96px;
	top:42%;
	height: 100px;
	line-height:100px;
	text-align: center;
	overflow: hidden;
	opacity: 0.92;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	transition: 200ms;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 0 0 1px rgba(0,0,0,0.6);
	z-index: 3;
	}

.yar-slider-controls > div:before {
	top: 0;
	display: block;
	}

.yar-slider-controls > div:hover {
	opacity: 1;
	}

.yar-slider-controls .prev {
	left: 15px;
	}

.yar-slider-controls .next {
	right: 15px;
	}

.pager-list{
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    margin: 0;
    z-index: 4;
    list-style: none;
    text-align: center;
    }

.pager-list li {
    cursor: pointer;
    width: 14px;
    height: 14px;
    margin: 0 4px;
    display: inline-block;
    background: #f5e4a7;
    opacity: 0.4;
    overflow: hidden;
    text-indent: -9999em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
}

.pager-list li.active{
    opacity: 1;
    }