/*
 * 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-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
	margin: 0;
	padding: 0;
	min-height:512px;
	height:512px;
	overflow:hidden;
}

	.flexslider .slides > li {
        -webkit-transition: opacity 1s ease; 
        -moz-transition: opacity 1s ease;
         transition: opacity 1s ease;

         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: "\0020";
	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 {
	position: absolute;
    left: 30px; /*same spacing as news body has*/
    top: auto;
    bottom: 20px;
    z-index: 10;
    text-align: right;
}

	.flex-control-nav li {
		display: inline-block;
        margin: 0 3px;
	}

    .flex-control-nav a {
        display: inline-block;
        vertical-align: middle;
        background: #fff;
        border-radius: 100px;
        height: 8px;
        width: 8px;
        overflow: hidden;
        text-align: left;
        text-indent: 100%;
        cursor: pointer;
    }

        .flex-control-nav a.flex-nav-page:hover, .flex-control-nav a.flex-nav-page:focus, .flex-control-nav a.flex-active {
            background: #ff7f02;
        }

    .flex-control-nav a.next, .flex-control-nav a.prev {
        height: 16px;
        width: 10px;
        background-color: transparent;
        background-image: url("../gfx/bg_controls.png");
        background-repeat: no-repeat;
    }

    .flex-control-nav a.prev {
        background-position: 0 0;
        margin: 0 15px 0 0;
    }

    .flex-control-nav a.next {
        background-position: -11px 0;
        margin: 0 0 0 15px;
    }

    .flex-control-nav a.prev:hover, .flex-control-nav a.prev:focus {
        background-position: 0 -18px;
    }

    .flex-control-nav a.next:hover, .flex-control-nav a.next:focus {
        background-position: -11px -18px;
    }
