/*
 * jQuery FlexSlider v1.8
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

#container {width: 80%; max-width: 800px; margin: 0 auto;}
/* Browser Resets */
.flex-container a:active, .flexslider a:active {outline: none;}
.slides, .flex-control-nav, .flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {width: 100%; margin: 0; padding: 0;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; width:100%; display:block; }
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider { position: relative; zoom: 1; z-index:0; overflow:hidden;}
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative; }
.flexslider .slides > li::after { content:""; /*background:rgba(0,0,0,0.5);*/ width:100%; height:100%; top:0px; left:0px; position: absolute; z-index:0px;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Caption style */
/* IE rgba() hack */
.flex-caption {background:none; zoom: 1; }
.flex-caption {position:absolute; top:75px;  text-align:left; width:100%; z-index:99;}
.flex-caption img{width:auto !important;}
.flex-caption .slide-cont { float:left; width:60%; padding-right:50px;}
.flex-caption .slide-img{ float:left; width:40%;}

/* Direction Nav */
.flex-direction-nav { display:block; }
.banner-home .flex-direction-nav li a {width:26px; height:45px; margin: 0px 0 0; display: block;  position: absolute; top: 47%; cursor: pointer; text-indent: -9999px; z-index:9999;}
.banner-home .flex-direction-nav li a:hover{ opacity:0.7}
.banner-home .flex-direction-nav li .flex-next {background-position: -25px 0; right:5%;background: url(../images/arrow-right.png) no-repeat 0 0; background-position: 0px 0; }
.banner-home .flex-direction-nav li .flex-prev {left:5%; background: url(../images/arrow-left.png) no-repeat 0 0; background-position: 0px 0; }
.flex-direction-nav li .disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}
.inner-banner-pad .flex-direction-nav li a {width:27px; height:45px; margin: 0px 0 0; display: block;  position: absolute; top: 50%; cursor: pointer; }

/* Control Nav */
.flex-control-nav { width:100%; position:absolute; bottom:25px; z-index:9999; text-align:center; right:0; left:0;}
.flex-control-nav li { margin:0 9px; display: inline-block; zoom: 1; }
.flex-control-nav li a { width:11px; height:11px; display: block; background:#ffffff; cursor:pointer; text-indent:-9999999px; border-radius:50%; -webkit-border-radius:50%; -o-border-radius:50%; -moz-border-radius:50%; }
.flex-control-nav li a:hover, .flex-control-nav li a.flex-active { opacity:0.5; }


#slide-banner .slide-cont h1 { float:left; width:100%; font-size:48px; color:#000000; line-height:58px; font-family: 'CircularStd-Bold'; padding-bottom:30px;}
#slide-banner .slide-cont ul { float:left; width:100%; margin-bottom:30px;}
#slide-banner .slide-cont ul li { float:left; background:url(../images/slide-arw.png) no-repeat scroll center left; padding:0 0 0 40px; font-size:20px; color:#000000; line-height:38px; font-family: 'CircularStd-Medium'; width:100%;}
#slide-banner .slide-cont h4 { float:left; width:100%; font-size:20px; color:#000000; line-height:29px; font-family: 'CircularStd-Medium'; padding-bottom:40px;}


.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both;}
.fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp;}
.fadeInLeft { -webkit-animation-name: fadeInLeft; animation-name: fadeInLeft;}
.fadeInRight { -webkit-animation-name: fadeInRight; animation-name: fadeInRight;}
.zoomIn { -webkit-animation-name: zoomIn; animation-name: zoomIn;}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}














