/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
	body {
		background: #fff;
		font: 16px/21px "Source Sans Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #444;
		font-weight: 400;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
 }


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #181818;
		font-family: "Source Sans Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-weight: 300; 
		text-transform: uppercase;
		}
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 46px; line-height: 50px; margin-bottom: 14px;}
	h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
	h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
	h5 { font-size: 17px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }
	.subheader { color: #777; }

	p { margin: 0 0 20px 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: 600; color: #333; }
	small { font-size: 80%; }

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #000; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 3px solid #7DB1B6; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a, a:visited { color: #52959F; text-decoration: underline; outline: 0; }
	a:hover, a:focus { color: #000; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	/*--ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }--*/
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { line-height: 18px; margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }
	
	ul.small-list li{
		font-size:0.9em;
		color:#000;
		margin-bottom: 5px;
	
	}

/* #Images
================================================== */

	img {
		max-width: 100%;
		height: auto; }




/* #Forms
================================================== */

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		font: 13px "Source Sans Pro","HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width: 95%;
		max-width: 100%;
		display: block;
		margin-bottom: 12px;
		background: #fff; }
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); }
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }
		
		
	.form-container{
		padding: 20px 30px 30px 30px;
		
	}
	
	.form-container small{
		line-height: 15px;
		margin-bottom: 20px;
		display: block;
		color: #777;
	}
	
	.submit-button, .reorder-button{
		width: 98%;
		padding: 14px 10px;
		max-width: 100%;
		display: block;
		background: #EF8910;
	   text-align: center;
	   color: #fff;
	   border: 0;
	   border: none;
	   font-family: "Source Sans Pro","HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	   font-size: 16px;
	   text-transform: uppercase;
	   -webkit-appearance: none;
	   -webkit-border-radius: 0; 
       -moz-border-radius: 0; 
       border-radius: 0;
       -webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	   -o-transition: all 0.3s ease;
	   transition: all 0.3s ease;
	   cursor: pointer;
		
	}
	
	.submit-button:hover, .reorder-button:hover{background: #FFA222;}
	
	.phonefield{margin-right: 6px !important;}
	
	.phonefield,.zip{
		display: inline-block !important;
		float: left;
		width: 44% !important;
	}
	
	.quant{
		width: 30px !important;
		text-align: center;
	}


/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }


/**********************************
   APEX SLIDER - Basic settings
***********************************/
.apex-slider img {
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-select:none;
	-o-user-select:none;
	max-width:none!important;
}

.apex-slider a {	
	text-decoration:none;
}

.apex-slider ul {
	list-style:none;
	padding:0;
	margin:0;
}

.apex-slider >ul >li {
	list-stye:none;
	position:absolute;
	padding:0;
	margin:0;
	visibility:hidden;
}

.apex-slider.black {	
	background-color:#000;
}

/* Set the animation even more smoother on Android */
.apex-slider .slotholder *,
.apex-slider img {
	-webkit-transform:translateZ(0);
	-webkit-backface-visibility:hidden;
	-webkit-perspective:1000;
}

/* IE8 hacks */
.noFilterClass {
	filter:none !important;
}

/******************
    - Shadows -
******************/
.apex-slider-shadow {
	position:absolute;
	margin-left:auto;
	margin-right:auto;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-select:none;
	-o-user-select:none;
}

.apex-slider-shadow.apex-slider-shadow1 {	
	background:url(apex-slider/shadow1.png) no-repeat; 
	background-size:100%; 
	width:890px; 
	height:60px; 
	bottom:-60px;
}

.apex-slider-shadow.apex-slider-shadow2 {	
	background:url(apex-slider/shadow2.png) no-repeat; 
	background-size:100%; 
	width:890px; 
	height:60px;
	bottom:-60px;
}

.apex-slider-shadow.apex-slider-shadow3 {	
	background:url(apex-slider/shadow3.png) no-repeat; 
	background-size:100%; 
	width:890px; 
	height:60px;
	bottom:-60px;
}

/***************************
    - Fullscreen video -
***************************/
.apex-slider .caption.fullscreenvideo {	
	left:0px; 
	top:0px; 
	position:absolute;
	width:100%;
	height:100%;
}

.apex-slider .caption.fullscreenvideo iframe { 
	width:100% !important; 
	height:100% !important;
}

.apex-slider .border-white iframe { 
	border:5px solid #fff;
}

.apex-slider .border-black iframe { 
	border:5px solid #000;
}

/****************************
    - Video play button -
****************************/
.apex-slider .video-play {
	position:absolute;
	left:50%;
	top:50%;
	width:43px;
	height:43px;
	margin-left:-21px;
	margin-top:-21px;	
	background:url(apex-slider/video_play.png) no-repeat top left;
	cursor:pointer;
	z-index:9;
}

.apex-slider .video-play:hover {
	-moz-opacity:1;
	filter:alpha(opacity=100);
	opacity:1;
}

.apex-slider .video-frame {
	position:absolute;
	z-index:10;
	left:0;
	top:0;
	display:block;
}

.apex-slider .video-close {
	position:absolute;
	width:21px;
	height:21px;
	background:#000 url(apex-slider/video_close.png) no-repeat center center;
	cursor:pointer;	
	right:6px;
	top:6px;
	border:1px solid #5E5C5C;
}

/*********************
    - Navigation -
*********************/

/* Bullets */
.bullets {	
	z-index:300; 
	position:absolute; 
	bottom:10px; 
}

.bullets.simplebullets { 	
	bottom:10px;
}

/* Round bullets */
.bullets.simplebullets.round .bullet {	
	cursor:pointer;
    position:relative;
    width:16px;
    height:16px;
    display:inline-block;
	text-indent:-9999px;
	padding:0;
    padding-right:4px;
	margin:0;
	background:url(apex-slider/round_bullet.png) no-repeat top left;
}

.bullets.simplebullets.round .bullet:last-child {	
	padding-right:0px;
}

.bullets.simplebullets.round .bullet:hover {
    background-position:0 -20px;
}

.bullets.simplebullets.round .bullet.selected {
    background-position:0 -40px;
}

/* Round blue bullets */
.bullets.simplebullets.round-blue .bullet {	
	cursor:pointer;
    position:relative;
    width:15px;
    height:16px;
    display:inline-block;    
	text-indent:-9999px;
	padding:0;
    padding-right:5px;
	margin:0;
	background:url(apex-slider/round_blue_bullet.png) no-repeat top left;
}

.bullets.simplebullets.round-blue .bullet:last-child {	
	padding-right:0px;
}

.bullets.simplebullets.round-blue .bullet:hover {
    background-position:0 -20px;
}

.bullets.simplebullets.round-blue .bullet.selected {
    background-position:0 -40px;
}

/* Round black bullets */
.bullets.simplebullets.round-black .bullet {	
	cursor:pointer;
    position:relative;
    width:15px;
    height:16px;
    display:inline-block;    
	text-indent:-9999px;
    padding-right:5px;	
	background:url(apex-slider/round_black_bullet.png) no-repeat top left;
}

.bullets.simplebullets.round-black .bullet:last-child {	
	padding-right:0px;
}

.bullets.simplebullets.round-black .bullet:hover {
    background-position:0 -20px;
}

.bullets.simplebullets.round-black .bullet.selected {
    background-position:0 -40px;
}

/* Numbers */
.bullets.simplebullets.number .bullet {	
	cursor:pointer;
    position:relative;
    display:inline-block;
    margin-right:1px;
  	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	color:#FFF;
	background-color:#000;
	background-color:rgba(0,0,0,0.6);
	font-family:Arial;
	font-size:10px;
	font-weight:bold;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	-webkit-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
}

.bullets.simplebullets.number .bullet:last-child {	
	margin-right:0px;
}

.bullets.simplebullets.number .bullet:hover {
    background-color:#000;
}

.bullets.simplebullets.number .bullet.selected {
    color:#000;
	background-color:#FFF;
}

/* Navbar */
.bullets.simplebullets.navbar { 	
	bottom:-20px; 
	background:url(apex-slider/navbar_bg.png); 
	height:35px; 
	padding:0;
	margin:0;
	-webkit-border-radius:5px; 
	-moz-border-radius:5px;
	border-radius:5px;
	margin-top:-17px;
	text-indent:-9999px;
}

.bullets.simplebullets.navbar .bullet {	
	cursor:pointer; 
	position:relative;	
	background:url(apex-slider/navbar_bullet.png) no-repeat top left;	
	width:15px;	
	height:15px;  
	margin-left:5px; 
	margin-right:5px;
	float:left; 
	margin-top:10px;
}

.bullets.simplebullets.navbar .bullet:hover,
.bullets.simplebullets.navbar .bullet.selected {	
	background-position:bottom left;
}

/*****************
    - Arrows -
*****************/

/* Round arrows */
.leftarrow.large.round,
.rightarrow.large.round {
	z-index:300;
	cursor:pointer;
	position:relative;	
	margin-right:0px;
	float:left;
	width:43px;
    height:43px;	
	margin-top:-22px;
}

.leftarrow.large.round {
	margin-left:20px;
    background:url(apex-slider/round_left_arrow.png) no-repeat top left;
}

.rightarrow.large.round {
	background:url(apex-slider/round_right_arrow.png) no-repeat top left;
    margin-left:-20px;
}

.leftarrow.large.round:hover,
.rightarrow.large.round:hover {
    background-position:bottom left;
}

/* Round blue arrows */
.leftarrow.large.round-blue,
.rightarrow.large.round-blue {
	z-index:300;
	cursor:pointer; 
	position:relative;	
	margin-right:0px;
	float:left;
	width:21px;
    height:36px;	
	margin-top:-18px;
}

.leftarrow.large.round-blue {
	margin-left:18px;
    background:url(apex-slider/round_blue_left_arrow.png) no-repeat top left;
}

.rightarrow.large.round-blue {
	background:url(apex-slider/round_blue_right_arrow.png) no-repeat top left;
    margin-left:-18px;
}

.leftarrow.large.round-blue:hover,
.rightarrow.large.round-blue:hover {
    background-position:bottom left;
}

/* Round black arrows */
.leftarrow.large.round-black,
.rightarrow.large.round-black {
	z-index:300;
	cursor:pointer;
	position:relative;	
	margin-right:0px;
	float:left;
	width:50px;
    height:50px;	
	margin-top:-25px;
}

.leftarrow.large.round-black {
	margin-left:20px;
    background:url(apex-slider/round_black_left_arrow.png) no-repeat top left;
}

.rightarrow.large.round-black {
	background:url(apex-slider/round_black_right_arrow.png) no-repeat top left;
    margin-left:-20px;
}

.leftarrow.large.round-black:hover,
.rightarrow.large.round-black:hover {
    background-position:bottom left;
}

/* Number arrows */
.leftarrow.large.number,
.rightarrow.large.number {
	z-index:300;
	cursor:pointer; 
	position:relative;	
	margin-right:0px;
	float:left;
	width:21px;
    height:36px;	
	margin-top:-18px;
}

.leftarrow.large.number {
	margin-left:18px;
    background:url(apex-slider/number_left_arrow.png) no-repeat top left;
}

.rightarrow.large.number {
	background:url(apex-slider/number_right_arrow.png) no-repeat top left;
    margin-left:-18px;
}

.leftarrow.large.number:hover,
.rightarrow.large.number:hover {
    background-position:bottom left;
}

/* Navbar arrows */
.leftarrow.navbar {
	z-index:300;
	cursor:pointer; 
	position:relative;	
	background:url(apex-slider/navbar_left_arrow.png) no-repeat top left;		
	width:9px;	
	height:16px;   
	float:left;
	padding:0;
	margin-left:20px; 
	margin-right:10px; 
	margin-top:-7px;	
}

.rightarrow.navbar {	
	z-index:300;
	cursor:pointer; 
	position:relative;	
	background:url(apex-slider/navbar_right_arrow.png) no-repeat top left;	
	width:9px;	
	height:16px;   
	float:left;	
	margin-left:-20px; 
	margin-top:-7px;
}

.leftarrow.navbar:hover,
.rightarrow.navbar:hover {
	background-position:bottom left;
}

/*********************
    - Thumbnails -
*********************/
.bullets.thumbs {	
	z-index:300; 
	position:absolute; 
	padding:2px;
	background-color:#fff;
	width:500px; 
	height:50px;
	margin-top:-50px;
}

.fullwidthbanner-container .thumbs {  
	padding:3px;
}

.bullets.thumbs .mask {	
	width:500px; 
	height:50px;
	overflow:hidden; 
	position:relative;
}

.bullets.thumbs .mask .thumb-container {	
	width:5000px; 
	position:absolute;
	background-color:#000;
}

.bullets.thumbs .bullet {   
	width:100px; 
	height:47px; 
	cursor:pointer; 
	overflow:hidden;
	background-color:none;
	margin:0;
	float:left;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	-moz-opacity:0.5;
	-khtml-opacity:0.5;
	opacity:0.3;
	-webkit-transition:all 0.3s linear; 
	-moz-transition:all 0.3s linear; 
	-o-transition:all 0.3s linear; 
	-ms-transition:all 0.3s linear;
}

.bullets.thumbs .bullet:hover,
.bullets.thumbs .bullet.selected { 	
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-moz-opacity:1;
	-khtml-opacity:1;
	opacity:1;
}

.thumbs img	{
	width:100%; 
}

/********************
    - Preloader -
********************/
.apex-slider .preloader {	
	background:#fff url(apex-slider/preloader.gif) no-repeat 10px 10px; 
	margin:-26px -26px; 
	top:50%; 
	left:50%; 
	z-index:10000; 
	position:absolute;
	width:52px;
	height:52px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

.apex-slider.black .preloader {	
	background:#000 url(apex-slider/preloader_black.gif) no-repeat 10px 10px; 
}

/****************
    - Timer -
****************/
.apex-slider .timer {
	position:absolute;
	z-index:200;
	top:0px;
	width:100%;
	height:4px;
	background-color:#fff;
	-moz-opacity:.5;
	filter:alpha(opacity=50);
	opacity:0.5;
}

.apex-slider .timer-bottom {	
	top:auto;
	bottom:0px !important;
}

/************************
    - Custom slider -
************************/
.custom-apex-slider {
	position:relative;
	z-index:999;
	margin:0 auto;
}

.custom-apex-slider .slides {
	list-style:none;
	float:left;
}

.custom-apex-slider .columns {
	position:relative;
	list-style:none;
	float:left;
	-webkit-transition:0.2s all ease;
	-moz-transition:0.2s all ease;
	-o-transition:0.2s all ease;
	-ms-transition:0.2s all ease;
	transition:0.2s all ease;
	top:0;
	background-color:#fff;
}

.custom-apex-slider .columns:first-child {
	margin-left:0px !important;	
}

.custom-apex-slider .columns:hover {
	cursor:pointer;
}

.custom-apex-slider .columns:hover .description {
	border-bottom:2px solid #f38a02;
}

.custom-apex-slider img.head {
	display:block;
	clear:both;
}

.custom-apex-slider .description {
	border:1px solid #ddd;
	border-bottom:2px solid #ddd;
	border-top:none;
}

.custom-apex-slider .description h4 {
	margin:0;
	font-family:'Source Sans Pro', sans;
}

.custom-apex-slider .description p {
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
}

.custom-apex-slider .columns:after, .custom-apex-slider .description:after {
	content:"."; 
	visibility:hidden;
	display:block; 
	clear:both; 
	height:0; 
	font-size:0;
}

/***********************************
    - Hide caption at start-up -
***********************************/
.apex-slider .caption {
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";	
	-moz-opacity:0;	
	-khtml-opacity:0;	
	opacity:0; 
	position:absolute; 
	visibility:hidden;
}

.apex-slider .caption.hidden-caption {
	visibility:hidden !important; 
	display:none !important;
}

/*****************************
    - Caption slide link -
*****************************/
.apex-slider .caption.slidelink a div {
	width:3000px; 
	height:1500px;
	background:url(apex-slider/empty.png) repeat;
}

/******************
    - Corners -
******************/
.apex-slider .caption .frontcorner {
	width:0;
	height:0;
	border-left:40px solid transparent;
	border-right:0px solid transparent;
	border-top:40px solid #00A8FF;
	position:absolute;left:-40px;top:0px;
}

.apex-slider .caption .backcorner {
	width:0;
	height:0;
	border-left:0px solid transparent;
	border-right:40px solid transparent;
	border-bottom:40px solid #00A8FF;
	position:absolute;right:0px;top:0px;
}

.apex-slider .caption .frontcornertop {
	width:0;
	height:0;
	border-left:40px solid transparent;
	border-right:0px solid transparent;
	border-bottom:40px solid #00A8FF;
	position:absolute;left:-40px;top:0px;
}

.apex-slider .caption .backcornertop {
	width:0;
	height:0;
	border-left:0px solid transparent;
	border-right:40px solid transparent;
	border-top:40px solid #00A8FF;
	position:absolute;right:0px;top:0px;
}

/******************************
    - Responsive settings -
******************************/
@media only screen and (min-width:480px) and (max-width:767px) {
	.responsive .bullets.thumbs {	
		width:300px !important; 
		height:28px !important;
	}
	
	.responsive .bullets.thumbs .mask {	
		width:300px !important; 
		height:28px !important;
	}
	
	.responsive .bullets.thumbs .bullet {	
		width:60px !important;
		height:28px !important;
	}
}

@media only screen and (min-width:0px) and (max-width:479px) {
	.responsive .bullets {	
		display:none;
	}
	
	.responsive .arrows {	
		display:none;
	}
	
	.custom-apex-slider {
		display:none;
	}
}

/*******************
    - Captions -
*******************/

/* Big */
.apex-slider .caption.big_orange {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:8px 15px 11px 15px;
	letter-spacing:-1.5px;
	background-color:#EF8910;
	/*--background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#ffc53e),color-stop(100%,#f38a02)); 
	background-image:-webkit-linear-gradient(#ffc53e,#f38a02); 
	background-image:-moz-linear-gradient(#ffc53e,#f38a02);
	background-image:-o-linear-gradient(#ffc53e,#f38a02); 
	background-image:linear-gradient(#ffc53e,#f38a02); --*/
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.4) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.4) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.4) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	box-shadow:0 1px 0 0 rgba(255,255,255,0.4) inset, 3px 3px 5px rgba(0,0,0,0.3);
	-moz-text-shadow:0px -1px rgba(223,127,3,0.8); 
	text-shadow:0px -1px rgba(223,127,3,0.8);													
}


.apex-slider .caption.big_black {
	position:absolute; 
	color:#fff; 
	font-weight:400; 
	font-size:30px; 
	line-height:30px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:8px 15px 11px 15px;
	background-color:#000000; 
	background-color:rgba(0,0,0,0.7);	
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.2) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.2) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.2) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	box-shadow:0 1px 0 0 rgba(255,255,255,0.2) inset, 3px 3px 5px rgba(0,0,0,0.3);
	-moz-text-shadow:0px -1px rgba(223,127,3,0.8); 												
}


.apex-slider .caption.big_green {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:8px 15px 11px 15px;
	letter-spacing:-1.5px;
	background-color:#8fd400; 
	background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#abf70e),color-stop(100%,#8fd400)); 
	background-image:-webkit-linear-gradient(#abf70e,#8fd400); 
	background-image:-moz-linear-gradient(#abf70e,#8fd400);
	background-image:-o-linear-gradient(#abf70e,#8fd400); 
	background-image:linear-gradient(#abf70e,#8fd400); 
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3); 
	box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3);
	-moz-text-shadow:0px -1px rgba(132,196,0,0.8); 
	text-shadow:0px -1px rgba(132,196,0,0.8);															
}

.apex-slider .caption.big_blue {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:8px 15px 11px 15px;
	letter-spacing:-1.5px;
	background-color:#009bcd;
	background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#00c6e4),color-stop(100%,#0063a8)); 
	background-image:-webkit-linear-gradient(#00c6e4,#0063a8);
	background-image:-moz-linear-gradient(#00c6e4,#0063a8);
	background-image:-o-linear-gradient(#00c6e4,#0063a8);
	background-image:linear-gradient(#00c6e4,#0063a8);
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3);
	box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset, 3px 3px 5px rgba(0,0,0,0.3);
	-moz-text-shadow:0px -1px rgba(10,60,109,0.8);
	text-shadow:0px -1px rgba(10,60,109,0.8);													
}

.apex-slider .caption.big_grey {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:8px 15px 11px 15px;
	letter-spacing:-1.5px;
	background-color:#7e8e96;
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
}

.apex-slider .caption.big_grey_smaller {
	position:absolute; 
	color:#fff;
	font-weight:800; 
	font-family:'Source Sans Pro', sans-serif; 
	letter-spacing:-1.5px;
	font-size:36px; 
	line-height:36px; 
	padding:5px 10px 7px 10px;
	color:#fff;
	background-color:#7e8e96;
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
}

.apex-slider .caption.big_navy {
	position:absolute; 
	color:#fff; 
	text-shadow:none; 
	font-weight:800; 
	font-size:30px; 
	line-height:36px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:3px 10px; 
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	background-color:#4e5b6c;	
	letter-spacing:0;										
}

.apex-slider .caption.big_red {
	position:absolute; 
	color:#fff; 
	text-shadow:none; 
	font-weight:300; 
	font-size:30px; 
	line-height:36px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:3px 10px; 
	padding-top:1px;
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	background-color:#de543e;	
	letter-spacing:0;										
}

.apex-slider .caption.big_fern_green {
	position:absolute; 
	color:#fff; 
	text-shadow:none; 
	font-weight:300; 
	font-size:30px; 
	line-height:36px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:3px 10px; 
	padding-top:1px;
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	background-color:#8fd400;	
	letter-spacing:0;										
}

.apex-slider .caption.big_fat {
	position:absolute; 
	color:#000; 
	text-shadow:none; 
	font-weight:800; 
	font-size:48px; 
	line-height:48px; 
	font-family:'Source Sans Pro', sans-serif; 
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	white-space:nowrap;		
}

.apex-slider .caption.big_fat_white {
	position:absolute; 
	color:#fff; 
	text-shadow:none; 
	font-weight:800; 
	font-size:48px; 
	line-height:48px; 
	font-family:'Source Sans Pro', sans-serif; 
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	white-space:nowrap;		
}

.apex-slider .caption.large_text {
	position:absolute; 
	color:#fff; 
	font-weight:800;
	font-size:36px; 
	line-height:36px;
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
}

.apex-slider .caption.large_black_text {
	position:absolute; 
	color:#000; 
	font-weight:800; 
	font-size:36px; 
	line-height:36px;
	font-family:'Source Sans Pro', sans-serif; 
	padding:0px; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
}

.apex-slider .caption.big_text {
	position:absolute; 
	color:#fff; 
	font-weight:300; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);		
}

.apex-slider .caption.big_black_text {
	position:absolute; 
	color:#000; 
	font-weight:300; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
}

.apex-slider .caption.big_white_text {
	position:absolute; 
	color:#fff; 
	font-weight:500; 
	font-size:44px; 
	line-height:44px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
}

.apex-slider .caption.big_white_bold_text {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	-moz-text-shadow:0px -1px rgba(0,0,0,0.3); 
	text-shadow:0px -1px rgba(0,0,0,0.3);
}

.apex-slider .caption.very_big_grey {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:42px; 
	line-height:42px; 
	font-family:'Source Sans Pro', sans-serif; 
	padding:3px 4px;
	letter-spacing:-1.5px;
	background-color:#7e8e96;
	-moz-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	-o-box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;
	box-shadow:0 1px 0 0 rgba(255,255,255,0.7) inset;	
}

.apex-slider .caption.very_big_text {
	position:absolute; 
	color:#fff; 
	font-weight:800; 
	font-size:60px; 
	line-height:60px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);		
}

.apex-slider .caption.very_big_black_text {
	position:absolute; 
	color:#000; 
	font-weight:800; 
	font-size:60px; 
	line-height:60px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);	
}

.apex-slider .caption.very_big_white_text {
	position:absolute; 
	color:#6b2c47; 
	font-weight:300; 
	font-size:60px; 
	line-height:60px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);	
}
	
/* Medium */
.apex-slider .caption.medium_white {
	position:absolute;
	font-weight:700;
	font-size:18px;
	line-height:18px;
	color:#000;
	background-color:#FFF;	
	font-family:'Source Sans Pro', sans-serif; 
	-moz-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	padding:8px 12px 11px 12px;												
}

.apex-slider .caption.medium_white_smaller {
	position:absolute;
	font-weight:700;
	font-size:20px; 
	line-height:20px; 
	font-family:Arial; 
	font-weight:bold;
	color:#000;
	background-color:#FFF;	
	padding:8px 12px;											
}

.apex-slider .caption.medium_white_bg {
	position:absolute;
	font-family:'Source Sans Pro', sans-serif; 
	font-size:15px; 
	line-height:15px; 
	letter-spacing:0px;
	font-weight:600;
	color:#787878;
	background-color:#FFF;	
	padding:5px 12px;										
}

.apex-slider .caption.medium_grey {
	position:absolute;
	font-weight:700;
	font-size:24px;
	line-height:24px;
	color:#FFF;
	background-color:#888;	
	font-family:'Source Sans Pro', sans-serif; 
	letter-spacing:-1px;
	-moz-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	padding:8px 12px 11px 12px;
}

.apex-slider .caption.medium_black {
	position:absolute;
	font-weight:700;
	font-size:24px;
	line-height:24px;
	color:#FFF;
	background-color:#000;
	font-family:'Source Sans Pro', sans-serif; 
	letter-spacing:-1px;
	-moz-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	padding:8px 12px 11px 12px;													
}

.apex-slider .caption.medium_black_smaller {
	position:absolute;
	font-weight:800;
	font-size:20px; 
	line-height:20px; 
	color:#FFF;
	background-color:#000;	
	font-family:'Source Sans Pro', sans-serif; 
	padding:3px 4px; 
	-moz-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	box-shadow:3px 3px 5px rgba(0,0,0,0.3);												
}

.apex-slider .caption.medium_orange {
	position:absolute;
	font-weight:normal;
	font-size:24px;
	line-height:24px;
	color:#ec5923;
	background-color:#FFF;
	font-family:'Source Sans Pro', sans-serif; 
	letter-spacing:-1px;
	-moz-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	padding:8px 12px 11px 12px;						
}

.apex-slider .caption.medium_black_text {
	position:absolute; 
	color:#3d3d3d; 
	font-weight:600;
	font-size:22px; 
	line-height:22px; 
	font-family:'Source Sans Pro', sans-serif;
}

.apex-slider .caption.medium_green_text {
	position:absolute; 
	color:#A0CE4E; 
	font-size:24px; 
	line-height:24px; 
	font-family:Helvetica, Arial, sans-serif;
}

.apex-slider .caption.medium_text {
	position:absolute;
	color:#fff;
	font-weight:300;
	font-size:20px;
	line-height:20px;
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;
	text-shadow:0px 2px 5px rgba(0,0,0,0.5);								
}

.apex-slider .caption.medium_fat {
	position:absolute; 
	color:#000; 
	text-shadow:none; 
	font-weight:800; 
	font-size:24px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	white-space:nowrap;		
}

.apex-slider .caption.medium_fat_white {
	position:absolute; 
	color:#fff; 
	text-shadow:none; 
	font-weight:800; 
	font-size:24px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	white-space:nowrap;		
}

.apex-slider .caption.medium_light {
	position:absolute; 
	color:#000; 
	text-shadow:none; 
	font-weight:300; 
	font-size:24px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	white-space:nowrap;		
}

/* Small */
.apex-slider .caption.small_white {
	position:absolute; 
	font-weight:bold; 
	font-size:14px; 
	line-height:20px; 
	font-family:Arial; 
	white-space:nowrap;	
	color:#000;
	background-color:#fff;
	padding:4px 8px;
}

.apex-slider .caption.small_white2 {
	position:absolute; 
	font-weight:bold; 
	font-size:14px; 
	line-height:20px; 
	font-family:Arial; 
	white-space:nowrap;
	color:#000;
	background-color:#fff;
	padding:0px 1px;
}

.apex-slider .caption.small_white3 {
	position:absolute; 
	font-weight:normal; 
	font-size:12px;
	line-height:16px; 
	font-family:Arial; 
	white-space:nowrap;
	color:#000;
	background-color:#fff;
	background-color:rgba(255,255,255,0.6);	
	padding:5px 8px;
}

.apex-slider .caption.small_black {
	position:absolute; 
	font-weight:bold; 
	font-size:14px; 
	line-height:20px; 
	font-family:Arial; 
	white-space:nowrap;
	color:#fff;
	background-color:#000;
	padding:4px 8px;
}

.apex-slider .caption.small_text {
	position:absolute; 
	font-weight:bold; 
	font-size:14px; 
	line-height:20px; 
	font-family:Arial; 
	white-space:nowrap;	
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);		
}

.apex-slider .caption.small_fade_text {
	position:absolute; 
	font-weight:bold; 
	font-size:14px; 
	line-height:20px; 
	font-family:Arial; 
	white-space:nowrap;
	color:#fff;
}

.apex-slider .caption.small_dark_text {
	position:absolute; 
	color:#555; 
	text-shadow:none; 
	font-size:14px; 
	line-height:22px; 
	font-family:Arial;
	margin:0px; 
	border-width:0px; 
	border-style:none; 
	white-space:nowrap;		
}

/* Bold */
.apex-slider .caption.bold_red_text {
	position:absolute;
	color:#d31e00;	 
	font-weight:800; 
	font-size:20px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	margin:0px; 
	white-space:nowrap;	
}

.apex-slider .caption.bold_brown_text {
	position:absolute;
	color:#a04606; 
	font-weight:800; 
	font-size:20px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;	
}

.apex-slider .caption.bold_green_text {
	position:absolute;
	color:#5b9830; 
	font-weight:800; 
	font-size:20px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;	
}

.apex-slider .caption.bold_blue_text {
	position:absolute;
	color:#0063a6;
	font-weight:800; 
	font-size:20px; 
	line-height:20px; 
	font-family:'Source Sans Pro', sans-serif; 
	white-space:nowrap;	
}

/* Other */
.apex-slider .caption.no_box_shadow {
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	-o-box-shadow:none;
	box-shadow:none;
}	

.apex-slider .caption.no-text-shadow {
	text-shadow:none;	
}	
					
.apex-slider .caption a { 
	color:#ffa306; 
	text-shadow:none;	
	-webkit-transition:all 0.2s ease-out; 
	-moz-transition:all 0.2s ease-out; 
	-o-transition:all 0.2s ease-out; 
	-ms-transition:all 0.2s ease-out;	 
}			
	
.apex-slider .caption a:hover { 
	color:#ff9204; 
}

/******************
    - Buttons -
******************/
.apex-slider .button {
	padding:6px 13px 5px;
	/*--border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;--*/
	height:30px;
	cursor:pointer;
	color:#fff !important; 
	text-shadow:0px 1px 1px rgba(0, 0, 0, 0.3) !important; 
	line-height:45px !important;
	/*--background:url(apex-slider/g30.png) repeat-x top; --*/
	font-size:15px; 
	font-family:'Source Sans Pro', sans-serif; 
	font-weight:600; 
	text-decoration:none;
}

.apex-slider .button.big {	
     font-family:'Source Sans Pro', sans-serif; 
	color:#fff; 
	text-shadow:0px 1px 1px rgba(0, 0, 0, 0.4); 
	padding:9px 20px; 
	font-size:16px;  
	font-weight:600; 
	line-height:57px !important; 
	/*--background:url(apex-slider/g40.png) repeat-x top;--*/
}

.purchase:hover, .apex-slider .button:hover, .apex-slider .button.big:hover {	
	background-position:bottom, 15px 11px;
	
}


/* Orange */
.apex-slider .button.orange,
.purchase.orange, .purchase:hover.orange { 
	background-color:#EF8910; 
	-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
	-o-box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

.apex-slider .button:hover.orange{
	background:#FF9E00;	
	
}

/*********************
    - Responsive -
*********************/
@media only screen and (min-width:480px) and (max-width:767px) {
	.apex-slider .button {	
		padding:4px 8px 3px; 
		line-height:25px !important;
		font-size:11px !important;
		font-weight:normal;	
	}
	
	.apex-slider a.button { 
		-webkit-transition:none; 
		-moz-transition:none; 
		-o-transition:none; 
		-ms-transition:none;	 
	}
	
	.apex-slider .button.big {	
		padding:6px 15px; 
		font-size:12px;  
	}
}

@media only screen and (min-width:0px) and (max-width:479px) {
	.apex-slider .button {	
		padding:2px 5px 2px; 
		line-height:20px !important; 
		font-size:10px !important;
	}
	
	.apex-slider .button.big {
		line-height:30px !important; 
		
	}
	
	.apex-slider a.button { 
		-webkit-transition:none; 
		-moz-transition:none; 
		-o-transition:none; 
		-ms-transition:none;	 
	}
	
	.apex-slider .button.big {	
		padding:3px 10px; 
		font-size:11px;  
	}
}