///////*//$c_green01$c_green01*//*
 * 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 {margin: 0; padding: 0; list-style: none;} 

/* 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 {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;}


/* Control Nav */
.flex-control-nav {
	width: 100%;
	height: 16px;
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	list-style: none;
	position: absolute;
	bottom: 30px;
	z-index: 100;
}
.flex-control-nav li {
	margin: 0 5px;
	zoom: 1;
	*display: inline;
}
.flex-control-paging li a {
	width: 16px;
	height: 16px;
	display: block;
	background-color: rgba(255,255,255,0.8);
	cursor: pointer;
	text-indent: -9999px;
	border: 1px solid #CCC;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transition: 0.5s linear;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.flex-control-paging li a:hover {
	background-color: #90c31f;
}
.flex-control-paging li a.flex-active {
	width: 22px;
	height: 22px;
	background-color: #FFF;
	border: 3px solid #90c31f;
	cursor: default;
}
.flex-control-paging li a.flex-active::after {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #b1d562;
	border: 1px solid #FFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


