/*
 * jQuery FlexSlider v1.8
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 

/* 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;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden; padding:0; margin:0;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block; position:relative; }
.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;}
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Caption style */
.flex-caption{position: absolute; bottom:0; width:100%; }
.flex-caption h1{font-size:14px; font-family:'Oswald', sans-serif, arial; text-transform:uppercase; padding:20px; margin-bottom:0}


/* Control Nav */
.flex-control-nav { bottom:0px; text-align:center; position: absolute; bottom: 70px; right:20px; height:12px}
.flex-control-nav li {margin: 0 0 0 7px; padding:0; display: inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav a {
	width: 12px;
	height: 12px;
	display: block;
	cursor: pointer;
	text-indent: -999em;
	cursor: pointer; 
	text-indent: -9999px; 
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px; 
	-o-border-radius: 6px; 
	border-radius: 6px; 
}
.flex-control-nav li a:hover {}
.flex-control-nav li a.active {
}

/* Direction Nav */
.flex-direction-nav{ list-style-type:none; margin:0 0 0 10px; position:absolute; width:100%; top:40%;}
.flex-direction-nav a {
	width: 40px;
	height:60px;
	margin: 0;
	display: block;
	background-color: #555;
	position: absolute;
	cursor: pointer;
	text-indent: -9999px;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.flex-direction-nav a:hover {background-color: #595959;}

.flex-direction-nav .next {
	right: 0px;
	background:#303030 url(images/flex-next.png) no-repeat;
	background-position: 53% 50%;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	position: absolute;
}

.flex-direction-nav .prev {
	left: 0px;
	background:#303030 url(images/flex-prev.png) no-repeat;
	background-position: 47% 50%;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius:  0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	position: absolute;
}

.flexslider:hover .next {opacity: 1; right: 0;}
.flexslider:hover .prev {opacity: 1; left: 0;}
.flex-direction-nav .disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}
