/*
 * jQuery FlexSlider v2.2.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 0 -10px;
	padding: 0 10%;
	max-width: 640px;
	position: relative;
	zoom: 1;
	border: none;
	box-shadow: none;
	overflow: hidden;
}

/* 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
*********************************/

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	overflow: visible !important;
}

.flexslider .slides {
	zoom: 1;
}

.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}

/* Direction Nav */
.flex-direction-nav {
	*height: 0;
}

.flex-direction-nav a {
	text-decoration: none;
	display: block;
	margin: -22px 0 0;
	position: absolute;
	top: 50%;
	z-index: 10;
	color: rgba(0, 0, 0, 0.8);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
	opacity: 1;
}

.flexslider .slides img {
	max-width: 100%;
	display: block;
}

.flex-direction-nav a:hover {
	color: #0078a0;
}

.flex-direction-nav a.touch_hover {
	background-color: rgba(0, 160, 143, 0.80);
}

.slides li a {
	display: block;
}

/* easing */
.slides {
	-webkit-transition: -webkit-transform 1300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: transform 1300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flex-direction-nav .flex-next{
	right: 0;
}
.flex-direction-nav .flex-prev{
	left: 0;
}
.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev{
	width: 36px;
	height: 36px;
	border-radius: 20px;
	background: rgba(255, 142, 167, 0.81);
}

.flex-direction-nav .flex-next:before {
	content: "\f105" !important;
	right: 10px;
}

.flex-direction-nav .flex-prev:before {
	content: "\f104" !important;
	right: 14px;
}

.flex-direction-nav .flex-prev:before,
.flex-direction-nav .flex-next:before {
	font-family: FontAwesome;
	position: absolute;
	top: 2px;
	color: #fff;
	font-size: 30px;
	line-height: 1;
	display: inline-block;
}

.flexslider {
	margin-top: -5%;
	margin-bottom: -8%;
}

.flexslider .flex-viewport{
	-webkit-transform: scale( .8 );
	transform: scale( .8 );
}