/*
 * jQuery slider v2.0
 * http://www.woothemes.com/slider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

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

/* slider Necessary Styles
*********************************/ 
.slider {margin: 0; padding: 0; width: 97%; height: 370px; padding: 10px; background: white; position: relative; float: right; margin-bottom: 20px;}
.slider .slides > li {display: none;  } /* Hide the slides before the JS is loaded. Avoids image jumping */
.slider .slides img {width: 100%; display: block; height: 370px;}
.flex-pauseplay span {text-transform: capitalize;}
.flex-direction-nav{position: absolute; top:0px;width: 650px; top:150px; opacity: 0.5; filter: alpha(opacity=50);}
.flex-direction-nav .flex-prev{float: left; height: 40px; width: 30px; background: white; background-image:url(../images/prev.png); background-position: center center; background-repeat: no-repeat;  }
.flex-direction-nav .flex-next{float: right; height: 40px; width: 30px; background: white; background-image:url(../images/next.png); background-position: center center; background-repeat: no-repeat; }
.slider-caption{position: absolute; background: url(../images/banner-txt.png); padding:16px 10px 10px 10px; bottom: 0px; max-width: 90%; color: #59595A; text-shadow: none;}
.slider-caption h1{margin-bottom: 10px; text-transform: uppercase; text-shadow: none; font-size: 20px;}
.slider-caption p{color: #7F7F7F;}
.slider-caption .button{float: right; padding: 6px 10px 6px 10px; font-size: 16px;}


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

