/**
 *
 * 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, .slides li, .flex-control-nav, .flex-direction-nav {
	background: none;
	list-style: none;
	margin: 0;
	padding: 0;
} 

/* Requred styles. */
.flexslider {
	position: relative;
	zoom: 1;
}

.flex-viewport {
	max-height: 2000px;
	transition: all 1s ease;
		-moz-transition: all 1s ease;
		-webkit-transition: all 1s ease;
}

.loading .flex-viewport {
	max-height: 300px;
}

.flexslider .slides {
	zoom: 1;
}

/* Hide the slides before the JS is loaded, avoids image jumping. */
.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}

.flexslider .slides img {
	display: block;
	height: auto;
	width: 100%;
}

.flex-pauseplay span {
	text-transform: capitalize;
}

/* Clearfix for the .slides element. */
.slides:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

html[xmlns] .slides {
	display: block;
} 

* html .slides {
	height: 1%;
}

/* No JavaScript fallback. */
.no-js .slides > li:first-child {
	display: block;
}

/* Control navigation. */
.flex-control-nav {
	bottom: -10px;
	margin: 20px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

.flex-control-nav li {
	display: inline-block;
	margin: 0 4px;
}

.flex-control-paging li a {
	border-radius: 20px;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
		-moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
		-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
	cursor: pointer;
	display: block;
	height: 11px;
	text-indent: -9999px;
	width: 11px;
}

/* Direction navigation. */
.flex-direction-nav li {
	background: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.flex-direction-nav a {
	cursor: pointer;
	display: block;
	margin: -62px 0 0;
	position: absolute;
	top: 100%;
	transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
	z-index: 10;
}

.flex-direction-nav .flex-next {
	right: 20px;
}

.flex-direction-nav .flex-prev {
	left: 20px;
}

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

/* Mobile Portrait to Mobile Landscape (devices and browsers). */
@media only screen and (max-width: 479px) {
	.flex-direction-nav { display: none; }
}