/* $Id: flexslider.css,v 1.12 2015/11/10 19:44:17 polsen Exp $ */

/* 
	TQM: submitted to Web Support on 9/30/2014
	October 2014 update addresses a display issue when website is viewed on a mobile device:
	* Uses a media query to hide slide navigation squares 
	  and adjust caption padding on devices
	  with max-device-width of 1024px.
*/




/*
 * 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,
.flex-control-nav,
.flex-direction-nav {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 {
	
	height: 360px; 
	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;}


/* FlexSlider Default Theme
*********************************/
.flexslider {
	margin: 0 0 60px; 
	background: #fff; 
	position: relative; 
	zoom: 1;
}
	
.flex-viewport {
	max-height: 360px; 
	-webkit-transition: all 1s ease; 
	-moz-transition: all 1s ease; 
	transition: all 1s ease;
}

.loading .flex-viewport {
	max-height: 360px;
}

.flex-caption-wrapper {
	/*border: 10px solid green;*/
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

.flex-caption {
	background: #fff;
	width: 275px;
	padding: 0 21px 27px;
	position: absolute;
	right: 0;
	bottom: 21px;
	margin-right: 5%;
}

.flex-caption h3 {
	margin-top:21px;
}

.flex-control-nav-wrapper {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

.flex-control-nav {
	position: absolute; 
	left: 921px;
	bottom: 36px;
	text-align: left;
	/*outline: 1px solid red;*/
	margin-right: 5%;
}

.flex-control-nav li {
	margin: 0 6px 0 0;  
	display: inline-block; 
	zoom: 1; 
	*display: inline;
}

.flex-control-paging li a {
	width: 12px; 
	height: 12px; 
	display: block; 
	background: #c4c9cd; 
	cursor: pointer; 
	text-indent: 100%;
	overflow: hidden;
}

.flex-control-paging li a:hover { 
	background: #1a97d9; 
}

.flex-control-paging li a.flex-active { 
	background: #8f989d; 
	cursor: default; 
}


/* Direction Nav */
.flex-direction-nav { display:none; }

.flexslider .slides {zoom: 1;}





/* TQM Additions 08/06/2013 */

.flex-caption {
    -webkit-box-shadow:  1px 1px 7px 0px rgba(0, 0, 0, 0.1);
    box-shadow:  1px 1px 7px 0px rgba(0, 0, 0, 0.1);
}

.flex-caption p {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 14px;
}

.flex-caption h3 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 7px;
}

.flex-caption h3 a:hover {
	text-decoration: none;
}






@media screen and (max-width: 1280px) {
	.flex-control-nav {
		left: 95%;
		margin-left: -295px;
		margin-right: 0;
	}

}


/* TQM: Updated October 2014, to remove the navigation squares on small mobile devices. */

@media screen and (max-device-width: 1024px) {
    
	.flex-control-nav li {
		display: none !important;  
	}
	
	.flex-caption {
    	padding-bottom: 11px;
	}

}
