.tao-carousel {display: none;width: 100%;-webkit-tap-highlight-color: transparent; 
/* position relative and z-index fix webkit rendering fonts issue */position: relative;z-index: 1;} 
.tao-carousel .tao-stage {position: relative; -ms-touch-action: pan-Y; touch-action: manipulation; -moz-backface-visibility: hidden; 
/* fix firefox animation glitch */ } 
.tao-carousel .tao-stage:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.tao-carousel .tao-stage-outer {position: relative; overflow: hidden; /* fix for flashing background */ -webkit-transform: translate3d(0px, 0px, 0px); }
.tao-carousel .tao-wrapper, .tao-carousel .tao-item {-webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); }
.tao-carousel .tao-item {position: relative; min-height: 1px; float: left; -webkit-backface-visibility: hidden; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; } 
.tao-carousel .tao-item img {display: block; width: 100%; }
.tao-carousel .tao-nav.disabled, .tao-carousel .tao-dots.disabled {display: none; } 
.tao-carousel .tao-nav .tao-prev, .tao-carousel .tao-nav .tao-next, .tao-carousel .tao-dot {cursor: pointer; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.tao-carousel .tao-nav button.tao-prev, .tao-carousel .tao-nav button.tao-next, .tao-carousel button.tao-dot {background: none; color: inherit; border: none; padding: 0 !important; font: inherit; }
.tao-carousel.tao-loaded {display: block; } 
.tao-carousel.tao-loading {opacity: 0; display: block; }
.tao-carousel.tao-hidden {opacity: 0; } 
.tao-carousel.tao-refresh .tao-item {visibility: hidden; } 
.tao-carousel.tao-drag .tao-item {-ms-touch-action: pan-y; touch-action: pan-y; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.tao-carousel.tao-grab {cursor: move; cursor: grab; }
.tao-carousel.tao-rtl {direction: rtl; }
.tao-carousel.tao-rtl .tao-item {float: right; }

/* No Js */
.no-js .tao-carousel {display: block; }

/*Animate Plugin*/
.tao-carousel .animated {animation-duration: 500ms; animation-fill-mode: both; }
.tao-carousel .tao-animatedIn {z-index: 0; }
.tao-carousel .tao-animatedIut {z-index: 1; }
.tao-carousel .fadeOut {animation-name: fadeOut; }



@keyframes fadeOut {
  0% { opacity: 1; }
  100% {opacity: 0; } 
}

/**Auto Height Plugin*/
.tao-height {transition: height 500ms ease-in-out; }

/* Lazy Load Plugin*/
.tao-carousel .tao-item {/*This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the.tao-item that breaks page layouts*/}
.tao-carousel .tao-item .tao-lazy {opacity: 0; transition: opacity 400ms ease; }
.tao-carousel .tao-item .tao-lazy[src^=""], .tao-carousel .tao-item .tao-lazy:not([src]) {max-height: 0; } 
.tao-carousel .tao-item img.tao-lazy {transform-style: preserve-3d; }
/*Video Plugin*/
.tao-carousel .tao-videoWrapper {position: relative; height: 100%; background: #000; }
.tao-carousel .tao-video-play-icon {position: absolute; height: 80px; width: 80px; left: 50%; top: 50%; margin-left: -40px; margin-top: -40px; background: url("tao.video.play.png") no-repeat; cursor: pointer; z-index: 1; -webkit-backface-visibility: hidden; transition: transform 100ms ease; }
.tao-carousel .tao-video-play-icon:hover {-ms-transform: scale(1.3, 1.3); transform: scale(1.3, 1.3); }
.tao-carousel .tao-video-playing .tao-video-tn, .tao-carousel .tao-video-playing .tao-video-play-icon {display: none; }
.tao-carousel .tao-video-tn {opacity: 0; height: 100%; background-position: center center; background-repeat: no-repeat; background-size: contain; transition: opacity 400ms ease; }
.tao-carousel .tao-video-frame {position: relative; z-index: 1; height: 100%; width: 100%; }

/* Default Theme */
.tao-theme .tao-nav {text-align: center;-webkit-tap-highlight-color: transparent;position: static;} 
.tao-theme .tao-nav [class*='tao-'] {color: #FFF; font-size: 14px; margin: 5px; padding: 4px 7px; background: #D6D6D6; display: inline-block; cursor: pointer; border-radius: 3px; } 
.tao-theme .tao-nav [class*='tao-']:hover {background: #869791; color: #FFF; text-decoration: none; }
.tao-theme .tao-nav .disabled {opacity: 0.5; cursor: default; }
.tao-theme .tao-nav.disabled + .tao-dots {margin-top: 10px; }
.tao-theme .tao-dots {text-align: center; -webkit-tap-highlight-color: transparent; }
.tao-theme .tao-dots .tao-dot {display: inline-block; zoom: 1; display: inline; } 
.tao-theme .tao-dots .tao-dot span {width: 10px; height: 10px; margin: 5px 7px; background: #D6D6D6; display: block; -webkit-backface-visibility: visible; transition: opacity 200ms ease; border-radius: 30px; }
.tao-theme .tao-dots .tao-dot.active span, .tao-theme .tao-dots .tao-dot:hover span {background: #869791; }
.tao-carousel .tao-nav .tao-prev, .tao-carousel .tao-nav .tao-next{position:absolute;transform: translateY(-50%);top: 50%;font-size: 3em !important;color:#FFF !important;display: block;}
.tao-carousel .tao-nav .tao-prev {transform: translate(0%, -50%);left: 1%;top: 50%;}
.tao-carousel .tao-nav .tao-next {right: 0%;transform: translate(0%, -50%);top: 50%;}


/*Caption*/
.tao-carousel .tao-item .item{ position:relative;}
.tao-carousel .tao-item .item .caption{position:absolute;height: 100%;top: 0;width: 100%;padding: 15px;}  