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

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

/* FlexSlider Necessary Styles
/*-----------------------------------------------------------------------------------*/
.flex_slider {width: 100%; margin: 0; padding: 0;}
.flex_slider .slides li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.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;}

/* Default Theme Styles
/*-----------------------------------------------------------------------------------*/
.block-front-slider-flexslider .block-title{display: none;}
/* Caption styles */
.flex_slider .caption {
	background: url(../img/caption_bg.png);
	position:absolute;
	left:0px;
	bottom:0px;
	width:50%;
	height: 100%;
	z-index:8;
	text-align: left; /** LTR **/
}

.flex_slider li.slide{position: relative;}
.caption-inner{	padding: 20px;}

.header{margin-top: 15px}

/** slide controls **/
/* Control nav styles (e.g. 1,2,3...) */
.flex-control-nav {
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 0;
	padding: 10px 0;
	z-index:7
}
.flex-control-nav li {
    display: inline-block;
}

.flex-control-nav a {
	cursor: pointer;
	display: block;
	width:20px;
	height:20px;
	background:url(../img/sliders/nav_dots_sprite.png) no-repeat;
	text-indent:-9999px;
	border:0;
}

.flex-control-nav a.active {
	background-position: 0 -34px;
}

.flex-control-nav a:hover {
	opacity: .7
}
