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

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
	font-family: 'flexslider-icon';
	src:url('fonts/flexslider-icon.eot');
	src:url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'),
		url('fonts/flexslider-icon.woff') format('woff'),
		url('fonts/flexslider-icon.ttf') format('truetype'),
		url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

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


/* custom flexslider styles */
.flexslider {
	margin-bottom: 20px;
	position: relative;
	zoom: 1;
}
.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.loading .flex-viewport {
	max-height: 300px;
}
.flexslider .slides {
	zoom: 1;
}
.flex-direction-nav a {
	color: #555;
}
.flex-direction-nav a:before {
	font-family: "icomoon";
	line-height: 1;
	display: inline-block;
}
/* slider */
#slider {
	max-height: 700px;
	overflow: hidden;
}
#slider .flex-direction-nav a {
	display: block;
	width: 80px;
	height: 80px;
	margin: -40px 0 0;
	position: absolute;
	top: 50%;
	z-index: 10;
	overflow: hidden;
	cursor: pointer;
	background-color: #fff;
	background-color: hsla(0, 100%, 100%, .8);
	padding-top: 10px;
}
#slider .flex-direction-nav a:before {
	font-size: 60px;
}
#slider .flex-direction-nav .flex-prev {
	left: 0;
	padding-left: 28px;
}
#slider .flex-direction-nav .flex-next {
	right: 0;
	text-align: right;
	padding-right: 28px;
}
/* please ignore my missing custom icon fonts */
/*#slider .flex-direction-nav a.flex-prev:before  { content: '\e603'; }*/
#slider .flex-direction-nav a.flex-prev:before  { content: '<'; }


/*#slider .flex-direction-nav a.flex-next:before  { content: '\e604'; }*/
#slider .flex-direction-nav a.flex-next:before  { content: ">"; }


/*@media screen and (min-width: 1400px) {
    #slider {
	    height: 700px;
    }
}
@media screen and (min-width: 700px) {
    #slider {
	    max-height: 560px;
    }
}*/
/* carousel */
@media screen and (max-width: 760px) {
    #carousel {
	    display: none !important;
    }
   /* #carousel img {
	display: inline-block !important;
	opacity: .5;
	cursor: pointer;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	width: 30% !important;
	max-height: 70px;
	}
	#carousel .slides ul li{
		display: inline-block !important;
	}*/
}
#carousel ul li {
	float: none !important;
	opacity: 1 !important;
}
#carousel .flex-direction-nav a {
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	position: absolute;
	z-index: 10;
	overflow: hidden;
	cursor: pointer;
	background-color: #fff;
	background-color: hsla(0, 100%, 100%, .8);
	text-align: center;
}
#carousel .flex-direction-nav a:before {
	font-size: 40px;
	line-height: 30px;
}
#carousel .flex-direction-nav .flex-prev {
	top: 0;
}
#carousel .flex-direction-nav .flex-next {
	bottom: 0;
}
/* please ignore my missing custom icon fonts */
/*#carousel .flex-direction-nav a.flex-prev:before  { content: '\e606'; }*/
#carousel .flex-direction-nav a.flex-prev:before  { content: '>'; }


/*#carousel .flex-direction-nav a.flex-next:before  { content: '\e602'; }*/
#carousel .flex-direction-nav a.flex-next:before  { content: "<"; }


#carousel img {
	display: block;
	opacity: .5;
	cursor: pointer;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}
#carousel .flex-active-slide img {
	opacity: 1;
	cursor: default;
}
#carousel img:hover {
	opacity: 1;
}