/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * 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,
.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; position: relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides li a img {}
.flex-pauseplay span {text-transform: capitalize;}

.flexslider .slides { height:150px; }

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

/* FlexSlider Default Theme
*********************************/
.flexslider {background: transparent; position: relative; margin-left:30px; width:765px;}
.flexslider .slides {}

.slides li .plus {
	position:absolute;
	width:21px;
	height:21px;
	background:url(../images/plus.png);
	background-repeat:no-repeat;
	background-color:transparent;
	right:10px;
	bottom:5px;
	z-index:99;
	display:none;
}

.slides li:hover .plus {
	display:block;
}

/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a {width: 30px; height: 30px; margin: -15px 0 0; display: block; background: url(../images/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px;}
.flex-direction-nav .flex-next {background-position: 100% 0; right: -23px; }
.flex-direction-nav .flex-prev {left: -30px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1; cursor: pointer;}
.flex-direction-nav .flex-disabled {opacity:0.2; filter:alpha(opacity=20) cursor: default;}
.flex-direction-nav:hover .flex-disabled:hover {opacity:0.2; filter:alpha(opacity=20) cursor: default;}