/*  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 a img { outline: none; border: none; }
 
.flexslider {
    margin: 0;
    padding: 0;
}

/*  HIDE AND STYLE THE IMAGES */
.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
}
 
.flexslider .slides img {
    width: 100%;
    display: block;
 
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* CLEAR THE FLOATS FOR THE SLIDES */
.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
 
/*
html[xmlns] .slides { display: block; }
* html .slides { height: 1%; }
*/

/* STYLE CONTAINER AND ADD A SHADOW */
.flex-container {
	margin:auto;
	}

.flexslider {
    position: relative;
    zoom: 1; /* AVOIDS RESIZING ON MOBILE BROWSERS */
    padding: 10px;
    /*background: #ffffff;*/
 
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
 
    -webkit-box-shadow: 0px 1px 1px rgba(0,0,0, .2);
    -moz-box-shadow: 0px 1px 1px rgba(0,0,0, .2);
    box-shadow: 0px 1px 1px rgba(0,0,0, .2);
}

/* SET MIN AND MAX WIDTHS */
.flex-container {
    min-width: 150px; /* LAST WEEK WAS 480 */
    max-width: 960px;
}
 
.flexslider .slides { zoom: 1; } /* AVOIDS RESIZING ON MOBILE BROWSERS */

/* ARROWS */
.flex-direction-nav a {
    display: block;
    position: absolute;
    margin: -17px 0 0 0; /* ALIGNS VERTICALLY 1/2 BUTTON WIDTH */
    width: 35px;
    height: 35px;
    top: 50%; /* ALIGNS VERTICALLY */
    cursor: pointer;
    text-indent: -9999px;
 	/*z-index: 9999;*/
    /*background-color: #82d344; /* GREEN */
    /*background-image: -webkit-gradient(linear, left top, left bottom, 
    	from(#82d344), to(#51af34));
    background-image: -webkit-linear-gradient(top, #82d344, #51af34);
    background-image: -moz-linear-gradient(top, #82d344, #51af34);
    background-image: -o-linear-gradient(top, #82d344, #51af34);
    background-image: linear-gradient(to bottom, #82d344, #51af34);*/
}

/*  BEFORE & AFTER – ALLOWS US TO ADD CONTENT WITHOUT ADDING TO HTML */
.flex-direction-nav a:before {
    display: block;
    position: absolute;
    content: '';
    width: 9px;
    height: 13px;
    top: 11px;
    left: 30px;
    background: url(images/slides/arrows.png) no-repeat; /* < > */
}
 
.flex-direction-nav a:after {
    display: block;
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 35px;
}

/* ROUND BUTTON CORNERS AND POSITION < > */
.flex-direction-nav .flex-next {
    right: -5px;
 
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}
 
.flex-direction-nav .flex-prev {
    left: -5px;
 
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}
 
.flex-direction-nav .flex-next:before { background-position: 
	-9px 0; left: -4px;}
.flex-direction-nav .flex-prev:before { background-position: 0 0; }
 
.flex-direction-nav .flex-next:after {
    right: 0;
    /*border-bottom: 5px solid transparent;
    border-left: 5px solid #31611e;*/
}
 
.flex-direction-nav .flex-prev:after {
    left: 30px;
    /*border-bottom: 5px solid transparent;
    border-right: 5px solid #31611e;*/
}

/* SLIDER CONTROLS – SMALL CIRCLES AT THE BOTTOM OF SLIDESHOW */
.flexslider .flex-control-nav {
    position: absolute;
    width: 100%;
    bottom: -40px;
    text-align: center;
    margin: 0 0 0 -10px;
}
 
.flex-control-nav li {
    display: inline-block;
    zoom: 1;
}

.flex-control-paging li a.flex-active {
    background-color: #ffffff;
}
    /*background-image: -webkit-gradient(linear, left top, left bottom, 
    	from(#82d344), to(#51af34));
    background-image: -webkit-linear-gradient(top, #82d344, #51af34);
    background-image: -moz-linear-gradient(top, #82d344, #51af34);
    background-image: -o-linear-gradient(top, #82d344, #51af34);
    background-image: linear-gradient(to bottom, #82d344, #51af34);
 
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;*/

.flex-control-paging li a {
    display: block;
    cursor: pointer;
    text-indent: -9999px;
    width: 12px;
    height: 12px;
    margin: 0 3px;
    /*background-color: #b6b6b6 \9; /* THIS IS AN IE HACK */
	background-color:#999;
 
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
 
    /*-webkit-box-shadow: inset 0 0 0 2px #b6b6b6;
    -moz-box-shadow: inset 0 0 0 2px #b6b6b6;
    box-shadow: inset 0 0 0 2px #b6b6b6;*/
}
 

/* CAPTIONS */
.flexslider .slides p {
    display: block;
    /*position: absolute;
    left: 0;
    bottom: 0;*/
    text-align:center;
    padding: 0 5px;
    margin: 0;
 
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 20px;
    color: GRAY; /* WAS WHITE */
 
    background-color: #FFF; /* WAS #222222 */
    /*background: rgba(0,0,0, .9);
 
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;*/
}



