/*----------------------------------------------------
 *
 * Vision - Wordpress Shortcode Plugin
 * by TrueThemes
 *
 * http://codecanyon.net/item/vision-wordpress-shortcodes-plugin/3372371
 *
 - Optional Styles
 - Accordions
 - Animations Global
 - Animated - Circle Loader
 - Animated - Circle Loader (with icon)
 - Animated - "Features" List
 - Animated - Number Counters
 - Animated - Progress Bars (horizontal)
 - Animated - Progress Bars (vertical)
 - Animated - "Services" List
 - Color Options
 - Buttons
 - Columns
 - Content Boxes
 - Dividers
 - Drop Caps
 - Highlight Text
 - Icons
 - Icons - Minimal
 - Notification Boxes
 - Pricing Boxes
 - Pull Quotes
 - Tabs - Vertical
 - Tabs - Horizontal
 - Testimonials
 - PrettyPhoto Styles
 - Social Icons
 - WP Theme-Specific Styles
 - Vector Icon Boxes
 - Vector Icon Lists <ul>
 - (Responsive Media Queries)
*
----------------------------------------------------*/

/*-------------------------------------------------------------- 
Optional Styles
--------------------------------------------------------------*/
a.vision-button {
	margin: 0 10px 10px 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.vision-contentbox,
.vision-tabs-vertical,
.vision-tabs-horizontal {
	margin-bottom: 15px;
}
.vision-tabs-vertical dt.current,
.vision-tabs-horizontal dt.current,
.vision-accordion dt.current {
	color: #88BBC8;
}
/* leave these if not bootstrap-based website */
.pull-left {float: left !important;}
.pull-right {float: right !important;}
/* end bootstrap*/
/*-------------------------------------------------------------- 
Accordions
--------------------------------------------------------------*/
.vision-accordion {
	font-size: 13px;
	margin-bottom: 40px;
}
.vision-accordion dt {
	background-color: #FFF;
	background-image: linear-gradient(to bottom, #FFF, #EFEFEF);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EFEFEF));
	background-image: -webkit-linear-gradient(top, #FFF, #EFEFEF);
	background-image: -moz-linear-gradient(top, #FFF, #EFEFEF);
	background-image: -webkit-linear-gradient(top, #FFF, #EFEFEF);
	background-image: -o-linear-gradient(top, #FFF, #EFEFEF);
	background-image: ms-linear-gradient(to bottom, #FFF, #EFEFEF);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#efefef');
	border: 1px solid #e9e9e9;
	border-radius: 5px;
	margin-bottom: 4px;
	text-indent: 50px;
	font-weight: 500;
	position: relative;
	cursor: pointer;
	padding: 20px 0;
	width: 100%;
}
.vision-accordion dd {
	display: none;
	line-height: 20px;
	padding: 10px;
	margin: 0 !important;
}
.vision-accordion dd.current {
	display: block;
}
.vision-accordion dd p:first-child {
	margin-top: 8px;
}
.vision-accordion dt:before {
	content:"\f067";
	font-family: FontAwesome;
	position: absolute;
	left: -30px;
	top: 37%;
	font-size: 14px;
}
.vision-accordion dt.current:before {
	content:"\f068";
}
/* 
- easily change the color of "plus and minus sign"
- uncomment code below and adjust color accordingly

.vision-accordion dt:before {
	color: #FFF;
}
.vision-accordion dt.current:before {
	color: #FFF;
}
*/

/* ----- Accordion inside Tabs ----- */
.vision-tabs-vertical dd .vision-accordion dd {
	margin-left: 0;
	background-color: transparent;
	height: auto;
	box-shadow: none;
	overflow: auto;
	position: relative;
	top: 0;
	right: 0;
	z-index: 1000;
	padding: 10px;
}
.vision-tabs-vertical dd .vision-accordion dt {
	width: 100%;
	border-bottom: 1px solid #e9e9e9;
	font-size: 13px;
	font-weight: normal;
	cursor: pointer;
	padding: 20px 0;
}
.vision-tabs-horizontal dd .vision-accordion dd {
	display: none;
	position: relative;
	background: none;
	top: 0;
	padding: 10px;
}
.vision-tabs-horizontal dd .vision-accordion dt {
	float: none;
	margin-left: 0;
	margin-right: 0;
	cursor: pointer;
	font-weight: 500;
}
/* ----- Tabs inside Accordion ----- */
.vision-accordion dd .vision-tabs-vertical dd {
	line-height: auto;
	padding: 4%;
}
.vision-accordion dd .vision-tabs-vertical dt {
	width: 22%;
	border: 0;
	border-bottom: 1px solid #ededed;
	border-radius: 0;
	margin-bottom: 0;
	text-indent: 0;
	font-weight: 700;
	position: relative;
	cursor: pointer;
	padding: 16px 0 16px 3%;
	background-color: transparent;
	background-image: none;
}
.vision-accordion dd .vision-tabs-vertical dt.current:before,
.vision-accordion dd .vision-tabs-vertical dt:before {
	background: none;
}
.vision-accordion dd .vision-tabs-horizontal dd {
	line-height: auto;
	padding: 30px;
}
.vision-accordion dd .vision-tabs-horizontal dt {
	width: auto;
	border: 0;
	border-radius: 0;
	margin-bottom: 0;
	margin-left: 1.25%;
	margin-right: 3.5%;
	text-indent: 0;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	padding: 0;
	background: none;
}
.vision-accordion dd .vision-tabs-horizontal dt.current:before,
.vision-accordion dd .vision-tabs-horizontal dt:before {
	background: none;
}
/*----------------------------------------------------
* Animations
*
* animation classes:
 .tt_in_from_top     = fly-in from top
 .tt_in_from_right   = fly-in from right
 .tt_in_from_bottom  = fly-in from bottom
 .tt_in_from_left    = fly-in from left
 .tt_in_from_center  = fly-in from center
----------------------------------------------------*/
/* global */
.tt_in_from_top, .tt_in_from_right, .tt_in_from_bottom, .tt_in_from_left, .tt_in_from_center {
	opacity: 0
}
/* animate from top */
@keyframes animate_top {
	from {
		opacity: 0;
		transform: translateY(-100px)
	}
	to {
		opacity: 1;
		transform: translateY(0)
	}
}
@-webkit-keyframes animate_top {
	from {
		opacity: 0;
		-webkit-transform: translateY(-100px)
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0)
	}
}
.tt_in_from_top.tt_animate_start {
	-webkit-animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_top;
	animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_top;
	opacity: 1
}
/* animate from right */
@keyframes animate_right {
	from {
		opacity: 0;
		transform: translateX(100px)
	}
	to {
		opacity: 1;
		transform: translateX(0)
	}
}
@-webkit-keyframes animate_right {
	from {
		opacity: 0;
		-webkit-transform: translateX(100px)
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0)
	}
}
.tt_in_from_right.tt_animate_start {
	-webkit-animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_right;
	animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_right;
	opacity: 1
}
/* animate from bottom */
@keyframes animate_bottom {
	from {
		opacity: 0;
		transform: translateY(100px)
	}
	to {
		opacity: 1;
		transform: translateY(0)
	}
}
@-webkit-keyframes animate_bottom {
	from {
		opacity: 0;
		-webkit-transform: translateY(100px)
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0)
	}
}
.tt_in_from_bottom.tt_animate_start {
	-webkit-animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_bottom;
	animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_bottom;
	opacity: 1
}
/* animate from left */
@keyframes animate_left {
	from {
		opacity: 0;
		transform: translateX(-100px)
	}
	to {
		opacity: 1;
		transform: translateX(0)
	}
}
@-webkit-keyframes animate_left {
	from {
		opacity: 0;
		-webkit-transform: translateX(-100px)
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0)
	}
}
.tt_in_from_left.tt_animate_start {
	-webkit-animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_left;
	animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_left;
	opacity: 1
}
/* animate from center */
@keyframes animate_center {
	from {
		opacity: 0;
		transform: scale(0.2)
	}
	to {
		opacity: 1;
		transform: scale(1)
	}
}
@-webkit-keyframes animate_center {
	from {
		opacity: 0;
		-webkit-transform: scale(0.2)
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1)
	}
}
.tt_in_from_center.tt_animate_start {
	-webkit-animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_center;
	animation: 1.0s cubic-bezier(1,0,0,1) 0s normal backwards 1 animate_center;
	opacity: 1
}
/* headlines */
.vision-circle-loader,
.vision-circle-loader-icon,
.vision-counter-wrap {
	font-family: "Open Sans", sans-serif;
	text-align: center;
}
.tt-anim-headline h1,
.tt-anim-headline h2,
.tt-anim-headline h3,
.tt-anim-headline h4,
.tt-anim-headline h5,
.tt-anim-headline h6 {
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.vision-features .tt-anim-headline h1,
.vision-features .tt-anim-headline h2,
.vision-features .tt-anim-headline h3,
.vision-features .tt-anim-headline h4,
.vision-features .tt-anim-headline h5,
.vision-features .tt-anim-headline h6 {
	font-size: 15px;
	margin-bottom: 15px;
	padding-top: 5px;
}
/* body text */
.vision-description p,
.vision-circle-loader p,
.vision-circle-loader-icon p {
  color: #808080;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
/*--------------------------------------------------------------
Animated - Circle Loader
--------------------------------------------------------------*/
.vision-circle-loader .easyPieChart {
	position: relative;
	width: 174px;
	height: 174px;
	line-height: 174px;
	margin: 0 auto 35px;
}
.vision-circle-loader .vision-circle-number-wrap {
	font-size: 35px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	color: #000;
}
.vision-circle-loader canvas {
	position: absolute;
	left: 0;
	top: 0;
}
.vision-circle-loader .loader-details {
	text-align: center;
}
/*--------------------------------------------------------------
Animated - Circle Loader (with icon)
--------------------------------------------------------------*/
.vision-circle-loader-icon .easyPieChart {
	position: relative;
	width: 174px;
	height: 174px;
	line-height: 174px;
	margin: 0 auto 35px;
}
.vision-circle-loader-icon canvas {
	position: absolute;
	left: 0;
	top: 0;
}
.vision-circle-loader-icon .fa {
	vertical-align: middle;
	color: #d3565a;
	font-size: 50px;
}
/*--------------------------------------------------------------
Animated - "Features" List
--------------------------------------------------------------*/
.vision-features {margin-bottom: 15px;}
.vision-features a:focus {
	outline: none;
}
.vision-features .fa {
	border: 2px solid #a2dce2;
	color: #d3565a;
	float: left;
	font-size: 20px;
	height: 72px;
	width: 72px;
	line-height: 70px;
	text-align: center;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	border-radius: 100px;
	-webkit-transition: all 0.5s ease-in-out, 0.5s;
	-webkit-transition-delay: 0s, 0s;
	-moz-transition: all 0.5s ease-in-out 0s, 0.5s;
	-o-transition: all 0.5s ease-in-out 0s, 0.5s;
	transition: all 0.5s ease-in-out 0s, 0.5s;
}
.vision-features .fa:hover {
	color: #fff;
	background: #a2dce2;
}
.vision-features .vision-description {
	text-align: left;
}
.vision-features a + .vision-description,
.vision-features .fa + .vision-description {
	margin-left: 100px;
}
.vision-features p {color: gray;line-height: 1.8;}
.vision-features h1, .vision-features h2, .vision-features h3, .vision-features h4, .vision-features h5, .vision-features h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: #000;
	margin-bottom: 18px;
}
/*--------------------------------------------------------------
Animated - Number Counters
--------------------------------------------------------------*/
/*.vision-counter-wrap {text-align: center;}*/
.vision-counter-wrap h3 {
	font-size: 70px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	color: #000;
}
.vision-counter-wrap h3:after {
	content: '';
	display: block;
	width: 66px;
	height: 4px;
	margin: 15px auto 22px;
	background: #e1e1e1;
}
.vision-counter-wrap h4 {
	color: #000;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
}
/*--------------------------------------------------------------
Animated - Progress Bars (horizontal)
--------------------------------------------------------------*/
.vision-progress-section h4 {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	margin-bottom: 8px;
}
.vision-progress-section .pull-right {
	font-weight: 700;
}
.vision-progress-section .progress,
.entry-content .vision-progress-section .progress {
	width: 100%;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	background: #e1e1e1;
}
.vision-progress-section .progress-bar {
	background: #a2dce2;
	width: 0%;
}
.vision-progress-section .progress, .vision-progress-section .progress-bar { height:20px;}
.vision-progress-section {margin-bottom:20px;}
/*--------------------------------------------------------------
Animated - Progress Bars (vertical)
--------------------------------------------------------------*/
.vision-progress-section-vertical h4 {
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 12px 0;
	padding: 0 0 0 7px;
}
.vision-progress-section-vertical h4.vision-progress-text {
	font-weight: 500;
	font-size: 18px;
}
.vision-progress-section-vertical .progress-wrapper {
	position: relative;
	background: #e1e1e1;
	height: 200px;
	margin-bottom: 20px;
}
.vision-progress-section-vertical .progress-bar-vertical {
	background: #a2dce2;
	position: absolute;
	left: 0;
	right: 0;
	height: 0%;
	bottom: 0;
}
/*--------------------------------------------------------------
Animated - "Services" List
--------------------------------------------------------------*/
.vision-services {
	text-align: center;
}
.vision-services a:focus {
	outline: none;
}
.vision-services .fa {
	font-size: 35px;
	color: #d3565a;
	border: 2px solid #a2dce2;
	line-height: 150px;
	height: 150px;
	width: 150px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	border-radius: 100px;
	-webkit-transition: all 0.5s ease-in-out, 0.5s;
	-webkit-transition-delay: 0s, 0s;
	-moz-transition: all 0.5s ease-in-out 0s, 0.5s;
	-o-transition: all 0.5s ease-in-out 0s, 0.5s;
	transition: all 0.5s ease-in-out 0s, 0.5s;
}

.vision-services .fa:hover {
	color: #fff;
	background: #a2dce2;
}
.vision-services .vision-description {
	margin-top: 30px;
}
.vision-services h1, .vision-services h2, .vision-services h3, .vision-services h4, .vision-services h5, .vision-services h6 {
	font-family: "Montserrat", sans-serif;
	margin-bottom: 22px;
	font-weight: 700;
	font-size: 16px;
}
/*--------------------------------------------------------------
Color Options
--------------------------------------------------------------*/
/* These color options are available for buttons, drop-caps, content boxes */
a.vision-button.autumn,
.tt-cb-title-autumn,
.tt-dropcap-autumn .tt-dropcap-square,
.tt-dropcap-autumn .tt-dropcap-round {
	background-color: #D0600E;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#D0600E), to(#772002));
	background-image: -webkit-linear-gradient(top, #D0600E, #772002);
	background-image: -moz-linear-gradient(top, #D0600E, #772002);
	background-image: -o-linear-gradient(top, #D0600E, #772002);
	background-image: linear-gradient(to bottom, #D0600E, #772002);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#D0600E', endColorstr='#772002');
}
a.vision-button.black,
.tt-cb-title-black,
.tt-dropcap-black .tt-dropcap-square,
.tt-dropcap-black .tt-dropcap-round {
	background-color: #545454;
	background-image: -moz-linear-gradient(top, #5e5e5e, #434343);
	background-image: -ms-linear-gradient(top, #5e5e5e, #434343);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5e5e5e), to(#434343));
	background-image: -webkit-linear-gradient(top, #5e5e5e, #434343);
	background-image: -o-linear-gradient(top, #5e5e5e, #434343);
	background-image: linear-gradient(top, #5e5e5e, #434343);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e5e5e', endColorstr='#434343', GradientType=0);
}
a.vision-button.black-2,
.tt-cb-title-black-2,
.tt-dropcap-black-2 .tt-dropcap-square,
.tt-dropcap-black-2 .tt-dropcap-round {
	background-color: #333;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#262626));
	background-image: -webkit-linear-gradient(top, #333333, #262626);
	background-image: -moz-linear-gradient(top, #333333, #262626);
	background-image: -o-linear-gradient(top, #333333, #262626);
	background-image: linear-gradient(to bottom, #333333, #262626);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#333333', endColorstr='#262626');
}
a.vision-button.blue,
.tt-cb-title-blue,
.tt-dropcap-blue .tt-dropcap-square,
.tt-dropcap-blue .tt-dropcap-round {
	background-color: #8dd9f6;
	background-image: -moz-linear-gradient(top, #abe4f8, #6fcef3);
	background-image: -ms-linear-gradient(top, #abe4f8, #6fcef3);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#abe4f8), to(#6fcef3));
	background-image: -webkit-linear-gradient(top, #abe4f8, #6fcef3);
	background-image: -o-linear-gradient(top, #abe4f8, #6fcef3);
	background-image: linear-gradient(top, #abe4f8, #6fcef3);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#abe4f8', endColorstr='#6fcef3', GradientType=0);
}
a.vision-button.blue-grey,
.tt-cb-title-blue-grey,
.tt-dropcap-blue-grey .tt-dropcap-square,
.tt-dropcap-blue-grey .tt-dropcap-round {
	background-color: #5E6475;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5E6475), to(#2C2F38));
	background-image: -webkit-linear-gradient(top, #5E6475, #2C2F38);
	background-image: -moz-linear-gradient(top, #5E6475, #2C2F38);
	background-image: -o-linear-gradient(top, #5E6475, #2C2F38);
	background-image: linear-gradient(to bottom, #5E6475, #2C2F38);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#5E6475', endColorstr='#2C2F38');
}
a.vision-button.coffee,
.tt-cb-title-coffee,
.tt-dropcap-coffee .tt-dropcap-square,
.tt-dropcap-coffee .tt-dropcap-round {
	background-color: #9A6742;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#9A6742), to(#2E1C10));
	background-image: -webkit-linear-gradient(top, #9A6742, #2E1C10);
	background-image: -moz-linear-gradient(top, #9A6742, #2E1C10);
	background-image: -o-linear-gradient(top, #9A6742, #2E1C10);
	background-image: linear-gradient(to bottom, #9A6742, #2E1C10);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#9A6742', endColorstr='#2E1C10');
}
a.vision-button.cool-blue,
.tt-cb-title-cool-blue,
.tt-dropcap-cool-blue .tt-dropcap-square,
.tt-dropcap-cool-blue .tt-dropcap-round {
	background-color: #0D9DDC;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0D9DDC), to(#0D5292));
	background-image: -webkit-linear-gradient(top, #0D9DDC, #0D5292);
	background-image: -moz-linear-gradient(top, #0D9DDC, #0D5292);
	background-image: -o-linear-gradient(top, #0D9DDC, #0D5292);
	background-image: linear-gradient(to bottom, #0D9DDC, #0D5292);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#0D9DDC', endColorstr='#0D5292');
}
a.vision-button.fire,
.tt-cb-title-fire,
.tt-dropcap-fire .tt-dropcap-square,
.tt-dropcap-fire .tt-dropcap-round {
	background-color: #FE8A0B;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FE8A0B), to(#B33410));
	background-image: -webkit-linear-gradient(top, #FE8A0B, #B33410);
	background-image: -moz-linear-gradient(top, #FE8A0B, #B33410);
	background-image: -o-linear-gradient(top, #FE8A0B, #B33410);
	background-image: linear-gradient(to bottom, #FE8A0B, #B33410);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FE8A0B', endColorstr='#B33410');
}
a.vision-button.golden,
.tt-cb-title-golden,
.tt-dropcap-golden .tt-dropcap-square,
.tt-dropcap-golden .tt-dropcap-round {
	background-color: #FDBB0D;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FDBB0D), to(#BF7D02));
	background-image: -webkit-linear-gradient(top, #FDBB0D, #BF7D02);
	background-image: -moz-linear-gradient(top, #FDBB0D, #BF7D02);
	background-image: -o-linear-gradient(top, #FDBB0D, #BF7D02);
	background-image: linear-gradient(to bottom, #FDBB0D, #BF7D02);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FDBB0D', endColorstr='#BF7D02');
}
a.vision-button.green,
.tt-cb-title-green,
.tt-dropcap-green .tt-dropcap-square,
.tt-dropcap-green .tt-dropcap-round {
	background-color: #cae285;
	background-image: -moz-linear-gradient(top, #cae285, #9fcb57);
	background-image: -ms-linear-gradient(top, #cae285, #9fcb57);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cae285), to(#9fcb57));
	background-image: -webkit-linear-gradient(top, #cae285, #9fcb57);
	background-image: -o-linear-gradient(top, #cae285, #9fcb57);
	background-image: linear-gradient(top, #cae285, #9fcb57);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cae285', endColorstr='#9fcb57', GradientType=0);
}
a.vision-button.green-2,
.tt-cb-title-green-2,
.tt-dropcap-green-2 .tt-dropcap-square,
.tt-dropcap-green-2 .tt-dropcap-round {
	background-color: #49A501;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#49A501), to(#416119));
	background-image: -webkit-linear-gradient(top, #49A501, #416119);
	background-image: -moz-linear-gradient(top, #49A501, #416119);
	background-image: -o-linear-gradient(top, #49A501, #416119);
	background-image: linear-gradient(to bottom, #49A501, #416119);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#49A501', endColorstr='#416119');
}
a.vision-button.grey,
.tt-cb-title-grey,
.tt-dropcap-grey .tt-dropcap-square,
.tt-dropcap-grey .tt-dropcap-round {
	background-color: #cacaca;
	background-image: -moz-linear-gradient(top, #cacaca, #aeaeae);
	background-image: -ms-linear-gradient(top, #cacaca, #aeaeae);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cacaca), to(#aeaeae));
	background-image: -webkit-linear-gradient(top, #cacaca, #aeaeae);
	background-image: -o-linear-gradient(top, #cacaca, #aeaeae);
	background-image: linear-gradient(top, #cacaca, #aeaeae);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cacaca', endColorstr='#aeaeae', GradientType=0);
}
a.vision-button.lime-green,
.tt-cb-title-lime-green,
.tt-dropcap-lime-green .tt-dropcap-square,
.tt-dropcap-lime-green .tt-dropcap-round {
	background-color: #AED613;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#AED613), to(#467612));
	background-image: -webkit-linear-gradient(top, #AED613, #467612);
	background-image: -moz-linear-gradient(top, #AED613, #467612);
	background-image: -o-linear-gradient(top, #AED613, #467612);
	background-image: linear-gradient(to bottom, #AED613, #467612);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#AED613', endColorstr='#467612');
}
a.vision-button.navy,
.tt-cb-title-navy,
.tt-dropcap-navy .tt-dropcap-square,
.tt-dropcap-navy .tt-dropcap-round {
	background-color: #becbd6;
	background-image: -moz-linear-gradient(top, #becbd6, #88a1b4);
	background-image: -ms-linear-gradient(top, #becbd6, #88a1b4);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#becbd6), to(#88a1b4));
	background-image: -webkit-linear-gradient(top, #becbd6, #88a1b4);
	background-image: -o-linear-gradient(top, #becbd6, #88a1b4);
	background-image: linear-gradient(top, #becbd6, #88a1b4);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#becbd6', endColorstr='#88a1b4', GradientType=0);
}
a.vision-button.orange,
.tt-cb-title-orange,
.tt-dropcap-orange .tt-dropcap-square,
.tt-dropcap-orange .tt-dropcap-round {
	background-color: #feda71;
	background-image: -moz-linear-gradient(top, #feda71, #febb4a);
	background-image: -ms-linear-gradient(top, #feda71, #febb4a);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#feda71), to(#febb4a));
	background-image: -webkit-linear-gradient(top, #feda71, #febb4a);
	background-image: -o-linear-gradient(top, #feda71, #febb4a);
	background-image: linear-gradient(top, #feda71, #febb4a);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feda71', endColorstr='#febb4a', GradientType=0);
}
a.vision-button.periwinkle,
.tt-cb-title-periwinkle,
.tt-dropcap-periwinkle .tt-dropcap-square,
.tt-dropcap-periwinkle .tt-dropcap-round {
	background-color: #5064C9;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5064C9), to(#522173));
	background-image: -webkit-linear-gradient(top, #5064C9, #522173);
	background-image: -moz-linear-gradient(top, #5064C9, #522173);
	background-image: -o-linear-gradient(top, #5064C9, #522173);
	background-image: linear-gradient(to bottom, #5064C9, #522173);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#5064C9', endColorstr='#522173');
}
a.vision-button.pink,
.tt-cb-title-pink,
.tt-dropcap-pink .tt-dropcap-square,
.tt-dropcap-pink .tt-dropcap-round {
	background-color: #C4378F;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#C4378F), to(#72234F));
	background-image: -webkit-linear-gradient(top, #C4378F, #72234F);
	background-image: -moz-linear-gradient(top, #C4378F, #72234F);
	background-image: -o-linear-gradient(top, #C4378F, #72234F);
	background-image: linear-gradient(to bottom, #C4378F, #72234F);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#C4378F', endColorstr='#72234F');
}
a.vision-button.purple,
.tt-cb-title-purple,
.tt-dropcap-purple .tt-dropcap-square,
.tt-dropcap-purple .tt-dropcap-round {
	background-color: #e8c4e4;
	background-image: -moz-linear-gradient(top, #e8c4e4, #d494ce);
	background-image: -ms-linear-gradient(top, #e8c4e4, #d494ce);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e8c4e4), to(#d494ce));
	background-image: -webkit-linear-gradient(top, #e8c4e4, #d494ce);
	background-image: -o-linear-gradient(top, #e8c4e4, #d494ce);
	background-image: linear-gradient(top, #e8c4e4, #d494ce);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8c4e4', endColorstr='#d494ce', GradientType=0);
}
a.vision-button.purple-2,
.tt-cb-title-purple-2,
.tt-dropcap-purple-2 .tt-dropcap-square,
.tt-dropcap-purple-2 .tt-dropcap-round {
	background-color: #8F4EC2;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#8F4EC2), to(#513567));
	background-image: -webkit-linear-gradient(top, #8F4EC2, #513567);
	background-image: -moz-linear-gradient(top, #8F4EC2, #513567);
	background-image: -o-linear-gradient(top, #8F4EC2, #513567);
	background-image: linear-gradient(to bottom, #8F4EC2, #513567);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#8F4EC2', endColorstr='#513567');
}
a.vision-button.red,
.tt-cb-title-red,
.tt-dropcap-red .tt-dropcap-square,
.tt-dropcap-red .tt-dropcap-round {
	background-color: #f78297;
	background-image: -moz-linear-gradient(top, #f78297, #f56778);
	background-image: -ms-linear-gradient(top, #f78297, #f56778);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f78297), to(#f56778));
	background-image: -webkit-linear-gradient(top, #f78297, #f56778);
	background-image: -o-linear-gradient(top, #f78297, #f56778);
	background-image: linear-gradient(top, #f78297, #f56778);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f78297', endColorstr='#f56778', GradientType=0);
}
a.vision-button.red-2,
.tt-cb-title-red-2,
.tt-dropcap-red-2 .tt-dropcap-square,
.tt-dropcap-red-2 .tt-dropcap-round {
	background-color: #C71901;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#C71901), to(#961300));
	background-image: -webkit-linear-gradient(top, #C71901, #961300);
	background-image: -moz-linear-gradient(top, #C71901, #961300);
	background-image: -o-linear-gradient(top, #C71901, #961300);
	background-image: linear-gradient(to bottom, #C71901, #961300);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#C71901', endColorstr='#961300');
}
a.vision-button.royal-blue,
.tt-cb-title-royal-blue,
.tt-dropcap-royal-blue .tt-dropcap-square,
.tt-dropcap-royal-blue .tt-dropcap-round {
	background-color: #2D59A2;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2D59A2), to(#122A53));
	background-image: -webkit-linear-gradient(top, #2D59A2, #122A53);
	background-image: -moz-linear-gradient(top, #2D59A2, #122A53);
	background-image: -o-linear-gradient(top, #2D59A2, #122A53);
	background-image: linear-gradient(to bottom, #2D59A2, #122A53);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#2D59A2', endColorstr='#122A53');
}
a.vision-button.silver,
.tt-cb-title-silver,
.tt-dropcap-silver .tt-dropcap-square,
.tt-dropcap-silver .tt-dropcap-round {
	background-color: #ACACAC;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ACACAC), to(#5C5C5C));
	background-image: -webkit-linear-gradient(top, #ACACAC, #5C5C5C);
	background-image: -moz-linear-gradient(top, #ACACAC, #5C5C5C);
	background-image: -o-linear-gradient(top, #ACACAC, #5C5C5C);
	background-image: linear-gradient(to bottom, #ACACAC, #5C5C5C);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ACACAC', endColorstr='#5C5C5C');
}
a.vision-button.sky-blue,
.tt-cb-title-sky-blue,
.tt-dropcap-sky-blue .tt-dropcap-square,
.tt-dropcap-sky-blue .tt-dropcap-round {
	background-color: #53C5FE;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#53C5FE), to(#16A7E1));
	background-image: -webkit-linear-gradient(top, #53C5FE, #16A7E1);
	background-image: -moz-linear-gradient(top, #53C5FE, #16A7E1);
	background-image: -o-linear-gradient(top, #53C5FE, #16A7E1);
	background-image: linear-gradient(to bottom, #53C5FE, #16A7E1);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#53C5FE', endColorstr='#16A7E1');
}
a.vision-button.teal-grey,
.tt-cb-title-teal-grey,
.tt-dropcap-teal-grey .tt-dropcap-square,
.tt-dropcap-teal-grey .tt-dropcap-round {
	background-color: #33657E;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#33657E), to(#162E36));
	background-image: -webkit-linear-gradient(top, #33657E, #162E36);
	background-image: -moz-linear-gradient(top, #33657E, #162E36);
	background-image: -o-linear-gradient(top, #33657E, #162E36);
	background-image: linear-gradient(to bottom, #33657E, #162E36);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#33657E', endColorstr='#162E36');
}
a.vision-button.teal,
.tt-cb-title-teal,
.tt-dropcap-teal .tt-dropcap-square,
.tt-dropcap-teal .tt-dropcap-round {
	background-color: #b7f2f4;
	background-image: -moz-linear-gradient(top, #b7f2f4, #7ce7ea);
	background-image: -ms-linear-gradient(top, #b7f2f4, #7ce7ea);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b7f2f4), to(#7ce7ea));
	background-image: -webkit-linear-gradient(top, #b7f2f4, #7ce7ea);
	background-image: -o-linear-gradient(top, #b7f2f4, #7ce7ea);
	background-image: linear-gradient(top, #b7f2f4, #7ce7ea);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b7f2f4', endColorstr='#7ce7ea', GradientType=0);
}
a.vision-button.teal-2,
.tt-cb-title-teal-2,
.tt-dropcap-teal-2 .tt-dropcap-square,
.tt-dropcap-teal-2 .tt-dropcap-round {
	background-color: #3CBA9F;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#3CBA9F), to(#185C60));
	background-image: -webkit-linear-gradient(top, #3CBA9F, #185C60);
	background-image: -moz-linear-gradient(top, #3CBA9F, #185C60);
	background-image: -o-linear-gradient(top, #3CBA9F, #185C60);
	background-image: linear-gradient(to bottom, #3CBA9F, #185C60);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#3CBA9F', endColorstr='#185C60');
}
/*--------------------------------------------------------------
Buttons
--------------------------------------------------------------*/
a.vision-button {
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	height: 20px;
	line-height: 12px;
	border-radius: 3px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	display: inline-block;
	padding: 8px 10px 0;
}
a.vision-button.large {
	line-height: 14px;
	height: 24px;
	padding: 11px 10px 0;
}
a.vision-button.jumbo {
	line-height: 14px;
	height: 30px;
	padding: 17px 18px 0;
	font-size: 14px;
}
a.vision-button.black, .entry-content a.vision-button.black {border: 1px solid #4C4C4C;color: #FFF;text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);}
a.vision-button.black:hover{border:1px solid #2c2c2c;background:#5a5a5a}
a.vision-button.blue, .entry-content a.vision-button.blue{border:1px solid #8dc5da;color:#42788e}
a.vision-button.blue:hover{border:1px solid #7caec0;background:#92dbf6}
a.vision-button.green, .entry-content a.vision-button.green{border:1px solid #adc671;color:#5d7731}
a.vision-button.green:hover{border:1px solid #8bb14d;background:#b9d972}
a.vision-button.grey, .entry-content a.vision-button.grey{border:1px solid #b5b5b5;color:#555}
a.vision-button.grey:hover {
	border: 1px solid #989898;
	background-color: #bcbcbc;
	background-image: -moz-linear-gradient(top, #bcbcbc, #c2c2c2);
	background-image: -ms-linear-gradient(top, #bcbcbc, #c2c2c2);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bcbcbc), to(#c2c2c2));
	background-image: -webkit-linear-gradient(top, #bcbcbc, #c2c2c2);
	background-image: -o-linear-gradient(top, #bcbcbc, #c2c2c2);
	background-image: linear-gradient(top, #bcbcbc, #c2c2c2);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bcbcbc', endColorstr='#c2c2c2', GradientType=0);
}
a.vision-button.navy, .entry-content a.vision-button.navy{border:1px solid #a2afb8;color:#515f6a;}
a.vision-button.navy:hover{border:1px solid #8996a0;background:#adbfcb;}
a.vision-button.orange, .entry-content a.vision-button.orange{border:1px solid #dab347;color:#835503;text-shadow:0 1px 0 rgba(255,255,255,.6);}
a.vision-button.orange:hover {
	border: 1px solid #DAB347;
	background-color: #fec354;
	background-image: -moz-linear-gradient(top, #fec354, #fecd61);
	background-image: -ms-linear-gradient(top, #fec354, #fecd61);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fec354), to(#fecd61));
	background-image: -webkit-linear-gradient(top, #fec354, #fecd61);
	background-image: -o-linear-gradient(top, #fec354, #fecd61);
	background-image: linear-gradient(top, #fec354, #fecd61);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fec354', endColorstr='#fecd61', GradientType=0);
}
a.vision-button.purple, .entry-content a.vision-button.purple {border: 1px solid #BC9DB9;color: #7B5777;}
a.vision-button.purple:hover {
	border: 1px solid #A482A0;
	background-color: #deabd9;
	background-image: -moz-linear-gradient(top, #deabd9, #e0b1db);
	background-image: -ms-linear-gradient(top, #deabd9, #e0b1db);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#deabd9), to(#e0b1db));
	background-image: -webkit-linear-gradient(top, #deabd9, #e0b1db);
	background-image: -o-linear-gradient(top, #deabd9, #e0b1db);
	background-image: linear-gradient(top, #deabd9, #e0b1db);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#deabd9', endColorstr='#e0b1db', GradientType=0);
}
a.vision-button.red, .entry-content a.vision-button.red {border: 1px solid #DF6F8B;color: #913944;text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);}
a.vision-button.red:hover {
	border: 1px solid #C36079;
	background-color: #f56c7e;
	background-image: -moz-linear-gradient(top, #f56c7e, #f78297);
	background-image: -ms-linear-gradient(top, #f56c7e, #f78297);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f56c7e), to(#f78297));
	background-image: -webkit-linear-gradient(top, #f56c7e, #f78297);
	background-image: -o-linear-gradient(top, #f56c7e, #f78297);
	background-image: linear-gradient(top, #f56c7e, #f78297);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f56c7e', endColorstr='#f78297', GradientType=0);
}
a.vision-button.teal, .entry-content a.vision-button.teal {border: 1px solid #90C6C8;color: #437B7D;}
a.vision-button.teal:hover {border: 1px solid #7DB9BB;background: #9fedf0;}
a.vision-button.white, .entry-content a.vision-button.white {
	border: 1px solid #D3D3D3;
	color: #555;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
	background-color: #fbfbfb;
	background-image: -moz-linear-gradient(top, #fbfbfb, #f0f0f0);
	background-image: -ms-linear-gradient(top, #fbfbfb, #f0f0f0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbfbfb), to(#f0f0f0));
	background-image: -webkit-linear-gradient(top, #fbfbfb, #f0f0f0);
	background-image: -o-linear-gradient(top, #fbfbfb, #f0f0f0);
	background-image: linear-gradient(top, #fbfbfb, #f0f0f0);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#f0f0f0', GradientType=0);
}
a.vision-button.white:hover {
	border: 1px solid #C4C4C4;
	background-color: #efefef;
	background-image: -moz-linear-gradient(top, #efefef, #f8f8f8);
	background-image: -ms-linear-gradient(top, #efefef, #f8f8f8);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#efefef), to(#f8f8f8));
	background-image: -webkit-linear-gradient(top, #efefef, #f8f8f8);
	background-image: -o-linear-gradient(top, #efefef, #f8f8f8);
	background-image: linear-gradient(top, #efefef, #f8f8f8);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f8f8f8', GradientType=0);
}
a.vision-button.autumn, .entry-content a.vision-button.autumn {border: 1px solid #772002;color: #FFF;text-shadow: none;}
a.vision-button.autumn:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #772002;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#772002), to(#D0600E));
	background-image: -webkit-linear-gradient(top, #772002, #D0600E);
	background-image: -moz-linear-gradient(top, #772002, #D0600E);
	background-image: -o-linear-gradient(top, #772002, #D0600E);
	background-image: linear-gradient(to bottom, #772002, #D0600E);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#772002', endColorstr='#D0600E');
}
a.vision-button.black-2, .entry-content a.vision-button.black-2 {border: 1px solid #262626;color: #FFF;text-shadow: none;}
a.vision-button.black-2:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #262626;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#444444));
	background-image: -webkit-linear-gradient(top, #262626, #444444);
	background-image: -moz-linear-gradient(top, #262626, #444444);
	background-image: -o-linear-gradient(top, #262626, #444444);
	background-image: linear-gradient(to bottom, #262626, #444444);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#262626', endColorstr='#444444');
}
a.vision-button.blue-grey {border: 1px solid #2C2F38;color: #FFF;text-shadow: none;}
a.vision-button.blue-grey:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #2C2F38;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2C2F38), to(#5E6475));
	background-image: -webkit-linear-gradient(top, #2C2F38, #5E6475);
	background-image: -moz-linear-gradient(top, #2C2F38, #5E6475);
	background-image: -o-linear-gradient(top, #2C2F38, #5E6475);
	background-image: linear-gradient(to bottom, #2C2F38, #5E6475);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#2C2F38', endColorstr='#5E6475');
}
a.vision-button.cool-blue {border: 1px solid #0D5292;color: #FFF;text-shadow: none;}
a.vision-button.cool-blue:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #0D5292;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0D5292), to(#0D9DDC));
	background-image: -webkit-linear-gradient(top, #0D5292, #0D9DDC);
	background-image: -moz-linear-gradient(top, #0D5292, #0D9DDC);
	background-image: -o-linear-gradient(top, #0D5292, #0D9DDC);
	background-image: linear-gradient(to bottom, #0D5292, #0D9DDC);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#0D5292', endColorstr='#0D9DDC');
}
a.vision-button.coffee {border: 1px solid #2E1C10;color: #FFF;text-shadow: none;}
a.vision-button.coffee:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #2E1C10;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2E1C10), to(#9A6742));
	background-image: -webkit-linear-gradient(top, #2E1C10, #9A6742);
	background-image: -moz-linear-gradient(top, #2E1C10, #9A6742);
	background-image: -o-linear-gradient(top, #2E1C10, #9A6742);
	background-image: linear-gradient(to bottom, #2E1C10, #9A6742);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#2E1C10', endColorstr='#9A6742');
}
a.vision-button.fire {border: 1px solid #B33410;color: #FFF;text-shadow: none;}
a.vision-button.fire:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #B33410;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#B33410), to(#FE8A0B));
	background-image: -webkit-linear-gradient(top, #B33410, #FE8A0B);
	background-image: -moz-linear-gradient(top, #B33410, #FE8A0B);
	background-image: -o-linear-gradient(top, #B33410, #FE8A0B);
	background-image: linear-gradient(to bottom, #B33410, #FE8A0B);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#B33410', endColorstr='#FE8A0B');
}
a.vision-button.golden {border: 1px solid #BF7D02;color: #FFF;text-shadow: none;}
a.vision-button.golden:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #BF7D02;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#BF7D02), to(#FDBB0D));
	background-image: -webkit-linear-gradient(top, #BF7D02, #FDBB0D);
	background-image: -moz-linear-gradient(top, #BF7D02, #FDBB0D);
	background-image: -o-linear-gradient(top, #BF7D02, #FDBB0D);
	background-image: linear-gradient(to bottom, #BF7D02, #FDBB0D);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#BF7D02', endColorstr='#FDBB0D');
}
a.vision-button.green-2 {border: 1px solid #416119;color: #FFF;text-shadow: none;}
a.vision-button.green-2:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #416119;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#416119), to(#49A501));
	background-image: -webkit-linear-gradient(top, #416119, #49A501);
	background-image: -moz-linear-gradient(top, #416119, #49A501);
	background-image: -o-linear-gradient(top, #416119, #49A501);
	background-image: linear-gradient(to bottom, #416119, #49A501);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#416119', endColorstr='#49A501');
}
a.vision-button.lime-green {border: 1px solid #467612;color: #FFF;text-shadow: none;}
a.vision-button.lime-green:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #467612;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#467612), to(#AED613));
	background-image: -webkit-linear-gradient(top, #467612, #AED613);
	background-image: -moz-linear-gradient(top, #467612, #AED613);
	background-image: -o-linear-gradient(top, #467612, #AED613);
	background-image: linear-gradient(to bottom, #467612, #AED613);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#467612', endColorstr='#AED613');
}
a.vision-button.periwinkle {border: 1px solid #522173;color: #FFF;text-shadow: none;}
a.vision-button.periwinkle:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #522173;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#522173), to(#5064C9));
	background-image: -webkit-linear-gradient(top, #522173, #5064C9);
	background-image: -moz-linear-gradient(top, #522173, #5064C9);
	background-image: -o-linear-gradient(top, #522173, #5064C9);
	background-image: linear-gradient(to bottom, #522173, #5064C9);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#522173', endColorstr='#5064C9');
}
a.vision-button.pink {border: 1px solid #72234F;color: #FFF;text-shadow: none;}
a.vision-button.pink:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #72234F;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#72234F), to(#C4378F));
	background-image: -webkit-linear-gradient(top, #72234F, #C4378F);
	background-image: -moz-linear-gradient(top, #72234F, #C4378F);
	background-image: -o-linear-gradient(top, #72234F, #C4378F);
	background-image: linear-gradient(to bottom, #72234F, #C4378F);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#72234F', endColorstr='#C4378F');
}
a.vision-button.purple-2 {border: 1px solid #513567;color: #FFF;text-shadow: none;}
a.vision-button.purple-2:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #513567;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#513567), to(#8F4EC2));
	background-image: -webkit-linear-gradient(top, #513567, #8F4EC2);
	background-image: -moz-linear-gradient(top, #513567, #8F4EC2);
	background-image: -o-linear-gradient(top, #513567, #8F4EC2);
	background-image: linear-gradient(to bottom, #513567, #8F4EC2);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#513567', endColorstr='#8F4EC2');
}
a.vision-button.red-2 {border: 1px solid #961300;color: #FFF;text-shadow: none;}
a.vision-button.red-2:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #961300;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#961300), to(#C71901));
	background-image: -webkit-linear-gradient(top, #961300, #C71901);
	background-image: -moz-linear-gradient(top, #961300, #C71901);
	background-image: -o-linear-gradient(top, #961300, #C71901);
	background-image: linear-gradient(to bottom, #961300, #C71901);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#961300', endColorstr='#C71901');
}
a.vision-button.royal-blue {border: 1px solid #122A53;color: #FFF;text-shadow: none;}
a.vision-button.royal-blue:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #122A53;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#122A53), to(#2D59A2));
	background-image: -webkit-linear-gradient(top, #122A53, #2D59A2);
	background-image: -moz-linear-gradient(top, #122A53, #2D59A2);
	background-image: -o-linear-gradient(top, #122A53, #2D59A2);
	background-image: linear-gradient(to bottom, #122A53, #2D59A2);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#122A53', endColorstr='#2D59A2');
}
a.vision-button.silver {border: 1px solid #5C5C5C;color: #FFF;text-shadow: none;}
a.vision-button.silver:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #5C5C5C;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5C5C5C), to(#ACACAC));
	background-image: -webkit-linear-gradient(top, #5C5C5C, #ACACAC);
	background-image: -moz-linear-gradient(top, #5C5C5C, #ACACAC);
	background-image: -o-linear-gradient(top, #5C5C5C, #ACACAC);
	background-image: linear-gradient(to bottom, #5C5C5C, #ACACAC);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#5C5C5C', endColorstr='#ACACAC');
}
a.vision-button.sky-blue {border: 1px solid #16A7E1;color: #FFF;text-shadow: none;}
a.vision-button.sky-blue:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #16A7E1;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#16A7E1), to(#53C5FE));
	background-image: -webkit-linear-gradient(top, #16A7E1, #53C5FE);
	background-image: -moz-linear-gradient(top, #16A7E1, #53C5FE);
	background-image: -o-linear-gradient(top, #16A7E1, #53C5FE);
	background-image: linear-gradient(to bottom, #16A7E1, #53C5FE);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#16A7E1', endColorstr='#53C5FE');
}
a.vision-button.teal-grey {border: 1px solid #162E36;color: #FFF;text-shadow: none;}
a.vision-button.teal-grey:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #162E36;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#162E36), to(#33657E));
	background-image: -webkit-linear-gradient(top, #162E36, #33657E);
	background-image: -moz-linear-gradient(top, #162E36, #33657E);
	background-image: -o-linear-gradient(top, #162E36, #33657E);
	background-image: linear-gradient(to bottom, #162E36, #33657E);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#162E36', endColorstr='#33657E');
}
a.vision-button.teal-2 {border: 1px solid #185C60;color: #FFF;text-shadow: none;}
a.vision-button.teal-2:hover {
	color: #FFF;
	text-shadow: none;
	background-color: #185C60;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#185C60), to(#3CBA9F));
	background-image: -webkit-linear-gradient(top, #185C60, #3CBA9F);
	background-image: -moz-linear-gradient(top, #185C60, #3CBA9F);
	background-image: -o-linear-gradient(top, #185C60, #3CBA9F);
	background-image: linear-gradient(to bottom, #185C60, #3CBA9F);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#185C60', endColorstr='#3CBA9F');
}
/*--------------------------------------------------------------
Columns
--------------------------------------------------------------*/
.vision_one_half, .vision_one_third, .vision_one_fourth, .vision_one_fifth, .vision_two_thirds, .vision_one_sixth {
	float: left;
}
.vision_one_half {width: 48%;}
.vision_one_third {width: 30.6%;}
.vision_one_fourth {width: 22%;}
.vision_one_fifth {width: 16.8%;}
.vision_one_sixth {
	width: 13.33%;
	overflow: hidden;
}
.vision_one_half + .vision_one_half,.vision_one_third + .vision_one_third,.vision_two_thirds + .vision_one_third,.vision_one_fourth + .vision_one_fourth,.vision_one_fifth + .vision_one_fifth,.vision_one_third + .vision_two_thirds, .vision_one_sixth + .vision_one_sixth {
	margin-left: 4%;
}
.vision_column_clear {clear: both;height: 25px;}
.vision_two_thirds {width: 65.2%;}
/*--------------------------------------------------------------
Content Boxes
--------------------------------------------------------------*/
.vision-contentbox {
	width: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
.vision-contentbox-title {
	padding: 12px 20px;
	color: #FFF;
	-webkit-border-radius: 3px 3px 0px 0px;
	-moz-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
.vision-contentbox-title span {
	overflow: hidden;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 11px;
}
.vision-contentbox-content {
	color: #888;
	font-size: 13px;
	line-height: 1.6em;
	padding: 15px 15px 25px 15px;
	border: 1px solid #FFF;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F2F2F2));
	background-image: -webkit-linear-gradient(top, #FFFFFF, #F2F2F2);
	background-image: -moz-linear-gradient(top, #FFFFFF, #F2F2F2);
	background-image: -o-linear-gradient(top, #FFFFFF, #F2F2F2);
	background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FFFFFF', endColorstr='#F2F2F2');
}
.vision-contentbox-content a {text-decoration: none;}
.vision-contentbox-content a:hover {color: rgba(0, 0, 0, 0.4);text-decoration: underline;}
.vision-contentbox-content p {color: #888;}
.vision-contentbox-content p:last-child {margin-bottom: 0;}
.vision-contentbox-content h1,
.vision-contentbox-content h2,
.vision-contentbox-content h3,
.vision-contentbox-content h4,
.vision-contentbox-content h5,
.vision-contentbox-content h6 {
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.entry-content .tt-content-style-autumn a,.entry-content .tt-content-style-autumn a:hover,.tt-content-style-autumn a,.tt-content-style-autumn a:hover,.tt-content-style-autumn h1,.tt-content-style-autumn h2,.tt-content-style-autumn h3,.tt-content-style-autumn h4,.tt-content-style-autumn h5,.tt-content-style-autumn h6{color:#AE500C}
.entry-content .tt-content-style-black-2 a,.entry-content .tt-content-style-black-2 a:hover,.tt-content-style-black-2 a,.tt-content-style-black-2 a:hover,.tt-content-style-black-2 h1,.tt-content-style-black-2 h2,.tt-content-style-black-2 h3,.tt-content-style-black-2 h4,.tt-content-style-black-2 h5,.tt-content-style-black-2 h6{color:#000}
.entry-content .tt-content-style-blue-grey a,.entry-content .tt-content-style-blue-grey a:hover,.tt-content-style-blue-grey a,.tt-content-style-blue-grey a:hover,.tt-content-style-blue-grey h1,.tt-content-style-blue-grey h2,.tt-content-style-blue-grey h3,.tt-content-style-blue-grey h4,.tt-content-style-blue-grey h5,.tt-content-style-blue-grey h6{color:#616276}
.entry-content .tt-content-style-cool-blue a,.entry-content .tt-content-style-cool-blue a:hover,.tt-content-style-cool-blue a,.tt-content-style-cool-blue a:hover,.tt-content-style-cool-blue h1,.tt-content-style-cool-blue h2,.tt-content-style-cool-blue h3,.tt-content-style-cool-blue h4,.tt-content-style-cool-blue h5,.tt-content-style-cool-blue h6{color:#0070B3}
.entry-content .tt-content-style-coffee a,.entry-content .tt-content-style-coffee a:hover,.tt-content-style-coffee a,.tt-content-style-coffee a:hover,.tt-content-style-coffee h1,.tt-content-style-coffee h2,.tt-content-style-coffee h3,.tt-content-style-coffee h4,.tt-content-style-coffee h5,.tt-content-style-coffee h6{color:#52453A}
.entry-content .tt-content-style-fire a,.entry-content .tt-content-style-fire a:hover,.tt-content-style-fire a,.tt-content-style-fire a:hover,.tt-content-style-fire h1,.tt-content-style-fire h2,.tt-content-style-fire h3,.tt-content-style-fire h4,.tt-content-style-fire h5,.tt-content-style-fire h6{color:#D1631A}
.entry-content .tt-content-style-golden a,.entry-content .tt-content-style-golden a:hover,.tt-content-style-golden a,.tt-content-style-golden a:hover,.tt-content-style-golden h1,.tt-content-style-golden h2,.tt-content-style-golden h3,.tt-content-style-golden h4,.tt-content-style-golden h5,.tt-content-style-golden h6{color:#D89606}
.entry-content .tt-content-style-green-2 a,.entry-content .tt-content-style-green-2 a:hover,.tt-content-style-green-2 a,.tt-content-style-green-2 a:hover,.tt-content-style-green-2 h1,.tt-content-style-green-2 h2,.tt-content-style-green-2 h3,.tt-content-style-green-2 h4,.tt-content-style-green-2 h5,.tt-content-style-green-2 h6{color:#479307}
.entry-content .tt-content-style-lime-green a,.entry-content .tt-content-style-lime-green a:hover,.tt-content-style-lime-green a,.tt-content-style-lime-green a:hover,.tt-content-style-lime-green h1,.tt-content-style-lime-green h2,.tt-content-style-lime-green h3,.tt-content-style-lime-green h4,.tt-content-style-lime-green h5,.tt-content-style-lime-green h6{color:#84B011}
.entry-content .tt-content-style-periwinkle a,.entry-content .tt-content-style-periwinkle a:hover,.tt-content-style-periwinkle a,.tt-content-style-periwinkle a:hover,.tt-content-style-periwinkle h1,.tt-content-style-periwinkle h2,.tt-content-style-periwinkle h3,.tt-content-style-periwinkle h4,.tt-content-style-periwinkle h5,.tt-content-style-periwinkle h6{color:#554191}
.entry-content .tt-content-style-pink a,.entry-content .tt-content-style-pink a:hover,.tt-content-style-pink a,.tt-content-style-pink a:hover,.tt-content-style-pink h1,.tt-content-style-pink h2,.tt-content-style-pink h3,.tt-content-style-pink h4,.tt-content-style-pink h5,.tt-content-style-pink h6{color:#8C3267}
.entry-content .tt-content-style-purple-2 a,.entry-content .tt-content-style-purple-2 a:hover,.tt-content-style-purple-2 a,.tt-content-style-purple-2 a:hover,.tt-content-style-purple-2 h1,.tt-content-style-purple-2 h2,.tt-content-style-purple-2 h3,.tt-content-style-purple-2 h4,.tt-content-style-purple-2 h5,.tt-content-style-purple-2 h6{color:#70498D}
.entry-content .tt-content-style-red-2 a,.entry-content .tt-content-style-red-2 a:hover,.tt-content-style-red-2 a,.tt-content-style-red-2 a:hover,.tt-content-style-red-2 h1,.tt-content-style-red-2 h2,.tt-content-style-red-2 h3,.tt-content-style-red-2 h4,.tt-content-style-red-2 h5,.tt-content-style-red-2 h6{color:#BD1900}
.entry-content .tt-content-style-royal-blue a,.entry-content .tt-content-style-royal-blue a:hover,.tt-content-style-royal-blue a,.tt-content-style-royal-blue a:hover,.tt-content-style-royal-blue h1,.tt-content-style-royal-blue h2,.tt-content-style-royal-blue h3,.tt-content-style-royal-blue h4,.tt-content-style-royal-blue h5,.tt-content-style-royal-blue h6{color:#2D59A2}
.entry-content .tt-content-style-silver a,.entry-content .tt-content-style-silver a:hover,.tt-content-style-silver a,.tt-content-style-silver a:hover,.tt-content-style-silver h1,.tt-content-style-silver h2,.tt-content-style-silver h3,.tt-content-style-silver h4,.tt-content-style-silver h5,.tt-content-style-silver h6{color:#9E9E9E}
.entry-content .tt-content-style-sky-blue a,.entry-content .tt-content-style-sky-blue a:hover,.tt-content-style-sky-blue a,.tt-content-style-sky-blue a:hover,.tt-content-style-sky-blue h1,.tt-content-style-sky-blue h2,.tt-content-style-sky-blue h3,.tt-content-style-sky-blue h4,.tt-content-style-sky-blue h5,.tt-content-style-sky-blue h6{color:#0094BF}
.entry-content .tt-content-style-teal-grey a,.entry-content .tt-content-style-teal-grey a:hover,.tt-content-style-teal-grey a,.tt-content-style-teal-grey a:hover,.tt-content-style-teal-grey h1,.tt-content-style-teal-grey h2,.tt-content-style-teal-grey h3,.tt-content-style-teal-grey h4,.tt-content-style-teal-grey h5,.tt-content-style-teal-grey h6{color:#406273}
.entry-content .tt-content-style-teal-2 a,.entry-content .tt-content-style-teal-2 a:hover,.tt-content-style-teal-2 a,.tt-content-style-teal-2 a:hover,.tt-content-style-teal-2 h1,.tt-content-style-teal-2 h2,.tt-content-style-teal-2 h3,.tt-content-style-teal-2 h4,.tt-content-style-teal-2 h5,.tt-content-style-teal-2 h6{color:#297372}
.entry-content .tt-content-style-black a,.entry-content .tt-content-style-black a:hover,.tt-content-style-black a,.tt-content-style-black a:hover,.tt-content-style-black h1,.tt-content-style-black h2,.tt-content-style-black h3,.tt-content-style-black h4,.tt-content-style-black h5,.tt-content-style-black h6{color:#545454}
.entry-content .tt-content-style-blue a,.entry-content .tt-content-style-blue a:hover,.tt-content-style-blue a,.tt-content-style-blue a:hover,.tt-content-style-blue h1,.tt-content-style-blue h2,.tt-content-style-blue h3,.tt-content-style-blue h4,.tt-content-style-blue h5,.tt-content-style-blue h6{color:#8dd9f6}
.entry-content .tt-content-style-green a,.entry-content .tt-content-style-green a:hover,.tt-content-style-green a,.tt-content-style-green a:hover,.tt-content-style-green h1,.tt-content-style-green h2,.tt-content-style-green h3,.tt-content-style-green h4,.tt-content-style-green h5,.tt-content-style-green h6{color:#9fcb57}
.entry-content .tt-content-style-grey a,.entry-content .tt-content-style-grey a:hover,.tt-content-style-grey a,.tt-content-style-grey a:hover,.tt-content-style-grey h1,.tt-content-style-grey h2,.tt-content-style-grey h3,.tt-content-style-grey h4,.tt-content-style-grey h5,.tt-content-style-grey h6{color:#cacaca}
.entry-content .tt-content-style-navy a,.entry-content .tt-content-style-navy a:hover,.tt-content-style-navy a,.tt-content-style-navy a:hover,.tt-content-style-navy h1,.tt-content-style-navy h2,.tt-content-style-navy h3,.tt-content-style-navy h4,.tt-content-style-navy h5,.tt-content-style-navy h6{color:#A5B0B9}
.entry-content .tt-content-style-orange a,.entry-content .tt-content-style-orange a:hover,.tt-content-style-orange a,.tt-content-style-orange a:hover,.tt-content-style-orange h1,.tt-content-style-orange h2,.tt-content-style-orange h3,.tt-content-style-orange h4,.tt-content-style-orange h5,.tt-content-style-orange h6{color:#F6D36C}
.entry-content .tt-content-style-purple a,.entry-content .tt-content-style-purple a:hover,.tt-content-style-purple a,.tt-content-style-purple a:hover,.tt-content-style-purple h1,.tt-content-style-purple h2,.tt-content-style-purple h3,.tt-content-style-purple h4,.tt-content-style-purple h5,.tt-content-style-purple h6{color:#DEBBD9}
.entry-content .tt-content-style-red a,.entry-content .tt-content-style-red a:hover,.tt-content-style-red a,.tt-content-style-red a:hover,.tt-content-style-red h1,.tt-content-style-red h2,.tt-content-style-red h3,.tt-content-style-red h4,.tt-content-style-red h5,.tt-content-style-red h6{color:#f78297}
.entry-content .tt-content-style-teal a,.entry-content .tt-content-style-teal a:hover,.tt-content-style-teal a,.tt-content-style-teal a:hover,.tt-content-style-teal h1,.tt-content-style-teal h2,.tt-content-style-teal h3,.tt-content-style-teal h4,.tt-content-style-teal h5,.tt-content-style-teal h6{color:#A9DEE1}
/*--------------------------------------------------------------
Dividers
--------------------------------------------------------------*/
hr {clear: both;margin: 0;}
.hr {
	clear: both;
	border: 0;
	height: 50px;
	width: 100%;
	background: url(images/shortcodes/bg-hr-dotted.png) 0 50% repeat-x;
}
.hr-dotted {background: url(images/shortcodes/bg-hr-dotted.png) 0 50% repeat-x;}
.hr-dotted-double {background: url(images/shortcodes/bg-hr-dotted-double.png) 0 50% repeat-x;}
.hr-solid {
	background: none;
	border-bottom: 1px solid #DADADA;
	height: 25px;
	margin-bottom: 25px;
}
.hr-solid-double {background: url(images/shortcodes/bg-hr-solid-double.png) 0 50% repeat-x;}
/*--------------------------------------------------------------
Drop Caps
--------------------------------------------------------------*/
.tt-dropcap-round,
.tt-dropcap-square,
.tt-dropcap-text {
	color: #FFFFFF;
	float: left;
	text-align: center;
	font-size: 24px;
	letter-spacing: -1px;
	height: 41px;
	line-height: 42px;
	margin: 1px 10px -5px 0;
	width: 41px;
}
.tt-dropcap-round {
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
}
.tt-dropcap-text {
	display: block;
	font-size: 40px;
	line-height: 40px;
	margin: 0 8px -5px 0;
}
.tt-dropcap-autumn .tt-dropcap-text {color: #A64108;}
.tt-dropcap-black-2 .tt-dropcap-text {color: #222;}
.tt-dropcap-blue-grey .tt-dropcap-text {color: #454956;}
.tt-dropcap-cool-blue .tt-dropcap-text {color: #0D76B5;}
.tt-dropcap-coffee .tt-dropcap-text {color: #67432A;}
.tt-dropcap-fire .tt-dropcap-text {color: #DD640E;}
.tt-dropcap-golden .tt-dropcap-text {color: #E3A108;}
.tt-dropcap-green-2 .tt-dropcap-text {color: #45850C;}
.tt-dropcap-lime-green .tt-dropcap-text {color: #7DA813;}
.tt-dropcap-periwinkle .tt-dropcap-text {color: #51439E;}
.tt-dropcap-pink .tt-dropcap-text {color: #9C2E70;}
.tt-dropcap-purple-2 .tt-dropcap-text {color: #704295;}
.tt-dropcap-red-2 .tt-dropcap-text {color: #B01601;}
.tt-dropcap-royal-blue .tt-dropcap-text {color: #20437C;}
.tt-dropcap-silver .tt-dropcap-text {color: #868686;}
.tt-dropcap-sky-blue .tt-dropcap-text {color: #34B6EF;}
.tt-dropcap-teal-grey .tt-dropcap-text {color: #264D5E;}
.tt-dropcap-teal-2 .tt-dropcap-text {color: #29897E;}
.tt-dropcap-black .tt-dropcap-text {color: #434343;}
.tt-dropcap-blue .tt-dropcap-text {color: #6fcef3;}
.tt-dropcap-green .tt-dropcap-text {color: #9fcb57;}
.tt-dropcap-grey .tt-dropcap-text {color: #aeaeae;}
.tt-dropcap-navy .tt-dropcap-text {color: #88a1b4;}
.tt-dropcap-orange .tt-dropcap-text {color: #febb4a;}
.tt-dropcap-purple .tt-dropcap-text {color: #d494ce;}
.tt-dropcap-red .tt-dropcap-text {color: #f56778;}
.tt-dropcap-teal .tt-dropcap-text {color: #7ce7ea;}
/*--------------------------------------------------------------
Highlight Text
--------------------------------------------------------------*/
.highlight-style-1 {
	color: #FFFFFF;
	padding: 2px 6px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.highlight-autumn .highlight-style-1 {background-color: #873108;}
.highlight-autumn .highlight-style-2 {color: #873108;border-bottom: 1px dashed #873108;}
.highlight-black .highlight-style-1 {background-color: #000;}
.highlight-black .highlight-style-2 {color: #000;border-bottom: 1px dashed #000;}
.highlight-blue-grey .highlight-style-1 {background-color: #474759;}
.highlight-blue-grey .highlight-style-2 {color: #474759;border-bottom: 1px dashed #474759;}
.highlight-cool-blue .highlight-style-1 {background-color: #0076B8;}
.highlight-cool-blue .highlight-style-2 {color: #0076B8;border-bottom: 1px dashed #0076B8;}
.highlight-coffee .highlight-style-1 {background-color: #372E25;}
.highlight-coffee .highlight-style-2 {color: #372E25;border-bottom: 1px dashed #372E25;}
.highlight-fire .highlight-style-1 {background-color: #D0631C;}
.highlight-fire .highlight-style-2 {color: #D0631C;border-bottom: 1px dashed #D0631C;}
.highlight-golden .highlight-style-1 {background-color: #BF7D02;}
.highlight-golden .highlight-style-2 {color: #BF7D02;border-bottom: 1px dashed #BF7D02;}
.highlight-green .highlight-style-1 {background-color: #478418;}
.highlight-green .highlight-style-2 {color: #478418;border-bottom: 1px dashed #478418;}
.highlight-lime-green .highlight-style-1 {background-color: #A1BE00;}
.highlight-lime-green .highlight-style-2 {color: #A1BE00;border-bottom: 1px dashed #A1BE00;}
.highlight-periwinkle .highlight-style-1 {background-color: #5556A3;}
.highlight-periwinkle .highlight-style-2 {color: #5556A3;border-bottom: 1px dashed #5556A3;}
.highlight-pink .highlight-style-1 {background-color: #92366D;}
.highlight-pink .highlight-style-2 {color: #92366D;border-bottom: 1px dashed #92366D;}
.highlight-purple .highlight-style-1 {background-color: #6B4687;}
.highlight-purple .highlight-style-2 {color: #6B4687;border-bottom: 1px dashed #6B4687;}
.highlight-red .highlight-style-1 {background-color: #A1070B;}
.highlight-red .highlight-style-2 {color: #A1070B;border-bottom: 1px dashed #A1070B;}
.highlight-royal-blue .highlight-style-1 {background-color: #2F496F;}
.highlight-royal-blue .highlight-style-2 {color: #2F496F;border-bottom: 1px dashed #2F496F;}
.highlight-silver .highlight-style-1 {background-color: #DDD;color: #444 !important;}
.highlight-silver .highlight-style-2 {color: #999;border-bottom: 1px dashed #999;}
.highlight-sky-blue .highlight-style-1 {background-color: #16A7E1;}
.highlight-sky-blue .highlight-style-2 {color: #16A7E1;border-bottom: 1px dashed #16A7E1;}
.highlight-teal-grey .highlight-style-1 {background-color: #5A7D77;}
.highlight-teal-grey .highlight-style-2 {color: #5A7D77;border-bottom: 1px dashed #5A7D77;}
.highlight-teal .highlight-style-1 {background-color: #4BA096;}
.highlight-teal .highlight-style-2 {color: #4BA096;border-bottom: 1px dashed #4BA096;}
/*--------------------------------------------------------------
Icons
--------------------------------------------------------------*/
.tt-icon {
	padding: 4px 0 20px 55px;
	display: inline-block;
	font-size: 13px;
	line-height: 1.5em;
}
.tt-icon span{font-weight:700}
.icon-alarm{background:url(images/shortcodes/icons/alarm.png) 0 0 no-repeat}
.icon-arrow-down-a{background:url(images/shortcodes/icons/arrow_down.png) 0 0 no-repeat}
.icon-arrow-down-b{background:url(images/shortcodes/icons/arrow_down_2.png) 0 0 no-repeat}
.icon-arrow-up-a{background:url(images/shortcodes/icons/arrow_up.png) 0 0 no-repeat}
.icon-arrow-up-b{background:url(images/shortcodes/icons/arrow_up_2.png) 0 0 no-repeat}
.icon-bookmark{background:url(images/shortcodes/icons/bookmark.png) 0 0 no-repeat}
.icon-calculator{background:url(images/shortcodes/icons/calculator.png) 0 0 no-repeat}
.icon-calendar-day{background:url(images/shortcodes/icons/calendar_day.png) 0 0 no-repeat}
.icon-calendar-month{background:url(images/shortcodes/icons/calendar_month.png) 0 0 no-repeat}
.icon-camera{background:url(images/shortcodes/icons/camera.png) 0 0 no-repeat}
.icon-cart-add{background:url(images/shortcodes/icons/cart_add.png) 0 0 no-repeat}
.icon-caution{background:url(images/shortcodes/icons/caution.png) 0 0 no-repeat}
.icon-cellphone{background:url(images/shortcodes/icons/cellphone.png) 0 0 no-repeat}
.icon-chart{background:url(images/shortcodes/icons/chart.png) 0 0 no-repeat}
.icon-chat{background:url(images/shortcodes/icons/chat.png) 0 0 no-repeat}
.icon-chat-2{background:url(images/shortcodes/icons/chat_2.png) 0 0 no-repeat}
.icon-checklist{background:url(images/shortcodes/icons/checklist.png) 0 0 no-repeat}
.icon-checkmark{background:url(images/shortcodes/icons/checkmark.png) 0 0 no-repeat}
.icon-clipboard{background:url(images/shortcodes/icons/clipboard.png) 0 0 no-repeat}
.icon-clock{background:url(images/shortcodes/icons/clock.png) 0 0 no-repeat}
.icon-contacts{background:url(images/shortcodes/icons/contacts.png) 0 0 no-repeat}
.icon-crate{background:url(images/shortcodes/icons/crate.png) 0 0 no-repeat}
.icon-database{background:url(images/shortcodes/icons/database.png) 0 0 no-repeat}
.icon-document-edit{background:url(images/shortcodes/icons/document_edit.png) 0 0 no-repeat}
.icon-drive{background:url(images/shortcodes/icons/drive.png) 0 0 no-repeat}
.icon-dvd{background:url(images/shortcodes/icons/dvd.png) 0 0 no-repeat}
.icon-email-send{background:url(images/shortcodes/icons/email_send.png) 0 0 no-repeat}
.icon-flag{background:url(images/shortcodes/icons/flag.png) 0 0 no-repeat}
.icon-games{background:url(images/shortcodes/icons/games.png) 0 0 no-repeat}
.icon-gear{background:url(images/shortcodes/icons/gear.png) 0 0 no-repeat}
.icon-globe-download{background:url(images/shortcodes/icons/globe_download.png) 0 0 no-repeat}
.icon-globe-upload{background:url(images/shortcodes/icons/globe_upload.png) 0 0 no-repeat}
.icon-globe{background:url(images/shortcodes/icons/globe.png) 0 0 no-repeat}
.icon-hdtv{background:url(images/shortcodes/icons/hd_tv.png) 0 0 no-repeat}
.icon-heart{background:url(images/shortcodes/icons/heart.png) 0 0 no-repeat}
.icon-support{background:url(images/shortcodes/icons/support.png) 0 0 no-repeat}
.icon-history{background:url(images/shortcodes/icons/history.png) 0 0 no-repeat}
.icon-home{background:url(images/shortcodes/icons/home.png) 0 0 no-repeat}
.icon-info{background:url(images/shortcodes/icons/info.png) 0 0 no-repeat}
.icon-laptop{background:url(images/shortcodes/icons/laptop.png) 0 0 no-repeat}
.icon-light-on{background:url(images/shortcodes/icons/light_on.png) 0 0 no-repeat}
.icon-lock-closed{background:url(images/shortcodes/icons/lock_closed.png) 0 0 no-repeat}
.icon-magnify{background:url(images/shortcodes/icons/magnify.png) 0 0 no-repeat}
.icon-megaphone{background:url(images/shortcodes/icons/megaphone.png) 0 0 no-repeat}
.icon-money{background:url(images/shortcodes/icons/money.png) 0 0 no-repeat}
.icon-movie{background:url(images/shortcodes/icons/movie.png) 0 0 no-repeat}
.icon-mp3{background:url(images/shortcodes/icons/mp3_player.png) 0 0 no-repeat}
.icon-ms-word{background:url(images/shortcodes/icons/ms-word-doc.png) 0 0 no-repeat}
.icon-music{background:url(images/shortcodes/icons/music.png) 0 0 no-repeat}
.icon-network{background:url(images/shortcodes/icons/network.png) 0 0 no-repeat}
.icon-news{background:url(images/shortcodes/icons/news.png) 0 0 no-repeat}
.icon-notebook{background:url(images/shortcodes/icons/notebook_pencil.png) 0 0 no-repeat}
.icon-pdf{background:url(images/shortcodes/icons/pdf.png) 0 0 no-repeat;padding:4px 0 25px 55px}
.icon-photos{background:url(images/shortcodes/icons/photos.png) 0 0 no-repeat}
.icon-refresh{background:url(images/shortcodes/icons/refresh.png) 0 0 no-repeat}
.icon-rss{background:url(images/shortcodes/icons/rss-icon.png) 0 0 no-repeat}
.icon-shield-blue{background:url(images/shortcodes/icons/shield-blue.png) 0 0 no-repeat}
.icon-shield-green{background:url(images/shortcodes/icons/shield-green.png) 0 0 no-repeat}
.icon-star{background:url(images/shortcodes/icons/star.png) 0 0 no-repeat}
.icon-smart-phone{background:url(images/shortcodes/icons/smart-phone.png) 0 0 no-repeat}
.icon-tools {background: url(images/shortcodes/icons/tools.png) 0 0 no-repeat;}
.icon-user-group {background: url(images/shortcodes/icons/user_group.png) 0 0 no-repeat;}
.icon-vcard {background: url(images/shortcodes/icons/vcard.png) 0 0 no-repeat;}
.icon-video-camera {background: url(images/shortcodes/icons/video_camera.png) 0 0 no-repeat;}
.icon-x {background: url(images/shortcodes/icons/x.png) 0 0 no-repeat;}

/*--------------------------------------------------------------
Icons - Minimal
--------------------------------------------------------------*/
.tt-mono-icon {padding: 0 0 10px 45px;display: inline-block;}
.mono-address_book {background: url(images/shortcodes/mono-icons/address_book.png) -2px -2px no-repeat;}
.mono-alert {background: url(images/shortcodes/mono-icons/alert.png) -2px -2px no-repeat;}
.mono-announcement {background: url(images/shortcodes/mono-icons/announcement.png) -2px -2px no-repeat;}
.mono-calendar {background: url(images/shortcodes/mono-icons/calendar.png) -2px -2px no-repeat;}
.mono-cog {background: url(images/shortcodes/mono-icons/cog.png) -2px -2px no-repeat;}
.mono-comments {background: url(images/shortcodes/mono-icons/comments.png) -2px -2px no-repeat;}
.mono-download {background: url(images/shortcodes/mono-icons/download.png) -2px -2px no-repeat;}
.mono-edit {background: url(images/shortcodes/mono-icons/edit.png) -2px -2px no-repeat;}
.mono-email {background: url(images/shortcodes/mono-icons/email.png) -2px -2px no-repeat;}
.mono-file {background: url(images/shortcodes/mono-icons/file.png) -2px -2px no-repeat;}
.mono-home {background: url(images/shortcodes/mono-icons/home.png) -2px -2px no-repeat;}
.mono-info {background: url(images/shortcodes/mono-icons/info.png) -2px -2px no-repeat;}
.mono-movie {background: url(images/shortcodes/mono-icons/movie.png) -2px -2px no-repeat;}
.mono-page-layout {background: url(images/shortcodes/mono-icons/page-layout.png) -2px -2px no-repeat;}
.mono-pencil {background: url(images/shortcodes/mono-icons/pencil.png) -2px -2px no-repeat;}
.mono-pictures {background: url(images/shortcodes/mono-icons/pictures.png) -2px -2px no-repeat;}
.mono-restart {background: url(images/shortcodes/mono-icons/restart.png) -2px -2px no-repeat;}
.mono-settings {background: url(images/shortcodes/mono-icons/settings.png) -2px -2px no-repeat;}
.mono-support {background: url(images/shortcodes/mono-icons/support.png) -2px -2px no-repeat;}
.mono-tags {background: url(images/shortcodes/mono-icons/tags.png) -2px -2px no-repeat;}
.mono-upload {background: url(images/shortcodes/mono-icons/upload.png) -2px -2px no-repeat;}
.mono-users {background: url(images/shortcodes/mono-icons/users.png) -2px -2px no-repeat;}
.mono-vcard {background: url(images/shortcodes/mono-icons/v_card.png) -2px -2px no-repeat;}
.mono-zoom {background: url(images/shortcodes/mono-icons/zoom.png) -2px -2px no-repeat;}
/*--------------------------------------------------------------
Notification Boxes
--------------------------------------------------------------*/
.vision-notification {
	border: 1px solid;
	width: 100%;
	border-bottom-width: 2px;
	color: #4f4f4f;
	display: block;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
	font-size: 11px;
	line-height: 19px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.15), 0 0 2px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.15), 0 0 2px rgba(0,0,0,0.05);
	box-shadow: 0 1px 2px rgba(0,0,0,0.15), 0 0 2px rgba(0,0,0,0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.closeable-x {width: 100%;height: 100%;background: url(images/shortcodes/notification-closeable-x.png) 99% 8px no-repeat;}
.vision_one_third .closeable-x,
.vision_one_fourth .closeable-x,
.vision_one_fifth .closeable-x {
	background: url(images/shortcodes/notification-closeable-x.png) 96% 8px no-repeat;
}
.vision-notification p {
	padding: 16px 16px 16px 42px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.65);
	margin-bottom: 0;
}
.vision-notification p strong {color: #303030;font-weight: 700;}
.vision-notification.success {
	background-color: #dde6ba;
	border-color: #d0e289 #c6d881 #b8cb71;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e6efc2), to(#d9e2b7));
	background-image: -webkit-linear-gradient(top, #e6efc2, #d9e2b7);
	background-image: -moz-linear-gradient(top, #e6efc2, #d9e2b7);
	background-image: -o-linear-gradient(top, #e6efc2, #d9e2b7);
	background-image: linear-gradient(to bottom, #e6efc2, #d9e2b7);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#e6efc2', endColorstr='#d9e2b7');
}
.vision-notification.success p {background: transparent url(images/shortcodes/tick.png) no-repeat scroll 14px 17px;}
.vision-notification.success p strong {color: #417800;}
.vision-notification.error {
	background-color: #f6dbd6;
	border-color: #f7d5d6 #f1c8ca #f2b5b8;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbe2e3), to(#eeccce));
	background-image: -webkit-linear-gradient(top, #fbe2e3, #eeccce);
	background-image: -moz-linear-gradient(top, #fbe2e3, #eeccce);
	background-image: -o-linear-gradient(top, #fbe2e3, #eeccce);
	background-image: linear-gradient(to bottom, #fbe2e3, #eeccce);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fbe2e3', endColorstr='#eeccce');
}
.vision-notification.error p {background: transparent url(images/shortcodes/cross.png) no-repeat scroll 14px 17px;}
.vision-notification.error p strong {color: #d43c41;}
.vision-notification.warning {
	background-color: #f9f9b4;
	border-color: #f7dc72 #f4d96c #eace61;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffb9), to(#f0efae));
	background-image: -webkit-linear-gradient(top, #ffffb9, #f0efae);
	background-image: -moz-linear-gradient(top, #ffffb9, #f0efae);
	background-image: -o-linear-gradient(top, #ffffb9, #f0efae);
	background-image: linear-gradient(to bottom, #ffffb9, #f0efae);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffb9', endColorstr='#f0efae');
}
.vision-notification.warning p {background: transparent url(images/shortcodes/exclamation.png) no-repeat scroll 14px 17px;}
.vision-notification.warning p strong {color: #777909;}
.vision-notification.tip {
	background-color: #dceffa;
	border-color: #b8e1fd #a6d4f4 #9ed1f5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e0f4ff), to(#d4e6f0));
	background-image: -webkit-linear-gradient(top, #e0f4ff, #d4e6f0);
	background-image: -moz-linear-gradient(top, #e0f4ff, #d4e6f0);
	background-image: -o-linear-gradient(top, #e0f4ff, #d4e6f0);
	background-image: linear-gradient(to bottom, #e0f4ff, #d4e6f0);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#e0f4ff', endColorstr='#d4e6f0');
}
.vision-notification.tip p strong {color: #0068a4;}
.vision-notification.tip p {background: transparent url(images/shortcodes/tip.png) no-repeat scroll 14px 17px;}
.vision-notification.neutral {
	background-color: #f0f0f0;
	border-color: #e4e4e4 #d9d9d9 #cbcbcb;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#e4e4e4));
	background-image: -webkit-linear-gradient(top, #f0f0f0, #e4e4e4);
	background-image: -moz-linear-gradient(top, #f0f0f0, #e4e4e4);
	background-image: -o-linear-gradient(top, #f0f0f0, #e4e4e4);
	background-image: linear-gradient(to bottom, #f0f0f0, #e4e4e4);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#f0f0f0', endColorstr='#e4e4e4');
}
.vision-notification.neutral p strong {color: #303030;}
.vision-notification.neutral p {background: transparent url(images/shortcodes/neutral.png) no-repeat scroll 14px 17px;}
/*--------------------------------------------------------------
Pricing Boxes
--------------------------------------------------------------*/
.true-vision-pricing-column {
	width: 100%;
	background: #F7F7F7;
	margin: 5px;
	float: left;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.one_fourth .true-vision-pricing-column,
.vision_one_fourth .true-vision-pricing-column {
	width: 110%;
}
.one_fifth .true-vision-pricing-column,
.vision_one_fifth .true-vision-pricing-column {
	width: 115%;
}
.true-vision-pricing-top {
	width: 100.5%;
	margin-left: -0.25%;
	border: 0;
	padding: 30px 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.true-vision-pricing-top h2,
.entry-content .true-vision-pricing-top h2 {
	color: #fff;
	text-align: center;
	font: 300 25px/25px Helvetica, Verdana, sans-serif;
	margin-bottom: 20px;
}
.true-vision-pricing-column h1 sup {
	font-size: 35px;
	padding-right: 4px;
}
.true-vision-pricing-column h1 {
	text-align: center;
	font: bold 88px/1 Helvetica, Arial, Verdana, sans-serif;
	margin: 0 0 0 -24px;
	color: #FFF;
}
.true-vision-pricing-column p {
	text-align: center;
	font: 500 14px/1 Helvetica, Arial, Verdana, sans-serif;
	color: #BCBEC0;
}
.true-vision-pricing-top p {
	color: rgba(255, 255, 255, 0.50);
}
.true-vision-pricing-column h1 + p {
	margin: 10px 0 0 0;
}
.true-vision-pricing-column ul {
	list-style-type: none;
	font: 300 18px/2 Helvetica, Verdana, sans-serif;
	margin: 20px 0 0 45px;
}
.one_fourth .true-vision-pricing-column ul,
.vision_one_fourth .true-vision-pricing-column ul,
.one_fifth .true-vision-pricing-column ul,
.vision_one_fifth .true-vision-pricing-column ul {
	font-size: 15px;
	margin: 20px 0 0 25px;
}
.one_fourth .true-vision-pricing-column h1,
.vision_one_fourth .true-vision-pricing-column h1,
.one_fifth .true-vision-pricing-column h1,
.vision_one_fifth .true-vision-pricing-column h1 {
	font-size: 78px;
}
.true-vision-pricing-column ul strong {
	font-weight: bold;
}
.true-vision-pricing-column hr {
	border: 0;
	background-color: #BCBEC0;
	color: #BCBEC0;
	height: 1px;
	width: 80%;
	margin: 20px auto 0 auto;
}
.true-vision-pricing-column .vision-button {
	display: block;
	width: 40%;
	margin: 30px auto;
	text-align: center;
}
.true-vision-pricing-column.featured {
	background: #EEE;
}
/* Style 2 */
.true-vision-pricing-column.true-vision-pricing-style-2 h1 {
	margin: 20px 0 0 0;
	color: inherit;
	padding-top: 20px;
}
.true-vision-pricing-column.true-vision-pricing-style-2 h2 {
	font: 300 25px/70px Helvetica, Verdana, sans-serif;
	margin-bottom: 0;
}
.true-vision-pricing-column.true-vision-pricing-style-2 .true-vision-pricing-top {padding: 0;}
.true-vision-pricing-column.true-vision-pricing-style-2 h1 + p {margin: 5px 0 25px 0;}
/* Twenty Twelve Theme */
.entry-content .true-vision-pricing-column.true-vision-pricing-style-2 h1,
.comment-content .true-vision-pricing-column.true-vision-pricing-style-2 h1 {color: #444;}
/*--------------------------------------------------------------
Pull Quotes
--------------------------------------------------------------*/
.vision-pullquote-1,
.vision-pullquote-2,
.vision-pullquote-3,
.vision-pullquote-4 {
	display: inline-block;
	float: left;
	margin-right: 4% !important;
	margin-top: 10px !important;
	margin-bottom: 20px !important;
	width: 40%;
}
.vision-pullquote-1,
.vision-pullquote-2,
.vision-pullquote-3 {
	font-family: "Times New Roman",Georgia,Times,serif;
	letter-spacing: -.4px;
	font-size: 22px;
	line-height: 30px;
}
.vision-pullquote-1 {
	border: 1px solid #fff !important;
	padding: 19px;
}
.vision-pullquote-2,
.entry-content .vision-pullquote-2 {
	border-left: 3px solid #666;
	font-size: 16px;
	line-height: 25px;
	letter-spacing: 0;
	padding: 0 0 0 17px;
	width: 36%;
}
.vision-pullquote-3,
.entry-content .vision-pullquote-3 {
	border-top: 4px double #e0e0e0 !important;
	border-bottom: 4px double #e0e0e0 !important;
	padding: 22px 0;
}
.vision-pullquote-4,
.entry-content .vision-pullquote-4 {
	background: #111;
	border: 1px solid #101010 !important;
	color: #f8f8f8;
	padding: 19px;
	font-size: 14px;
}
.vision-pullquote-1.aligncenter,
.vision-pullquote-2.aligncenter,
.vision-pullquote-3.aligncenter,
.vision-pullquote-4.aligncenter {
	float: none;
	text-align: left;
	width: auto;
	display: block;
	margin-left: 2%;
	margin-right: 2%;
}
/* align-right */
.vision-pullquote-1.alignright,
.vision-pullquote-2.alignright,
.vision-pullquote-3.alignright,
.vision-pullquote-4.alignright {
	float: right;
	margin-left: 4%;
}
.vision-pullquote-1.alignright {width: 40%;}
.vision-pullquote-2.alignright {
	border-left: 0;
	border-right: 3px solid;
	padding: 0 17px 0 0;
}
/* align-center */
.vision-pullquote-2.aligncenter {margin-bottom: 30px!important;}
/*--------------------------------------------------------------
Tabs - Vertical
--------------------------------------------------------------*/
.vision-tabs-vertical {
	width: 100%;
	height: 468px;
	box-shadow: 0 0 6px #c3c3c3;
	border-radius: 10px;
	background-color: #f8f8f8;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
	margin: 0;
}
.vision-tabs-vertical dt {
	width: 22%;
	border-bottom: 1px solid #ededed;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	padding: 16px 0 16px 3%;
}
.vision-tabs-vertical dt img {
	display: inline-block;
	margin-right: 15px;
	position: relative;
	top: 5px;
}
.vision-tabs-vertical dd {
	margin-left: 25%;
	background-color: #FFF;
	height: 84%;
	box-shadow: inherit;
	overflow: auto;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	z-index: 1000;
	padding: 4%;
	margin-bottom: 0px !important;
}
.vision-tabs-vertical dt:first-child {margin-top: 2.4%;}
.vision-tabs-vertical dd.current {display: block;}
.vision-tabs-vertical dd .column_group p:first-child {margin-top: 0;}
.vision-tabs-vertical_arrow {
	position: absolute;
	top: 0;
	left: 23%;
	z-index: 1001;
	width: 18px;
	height: 36px;
	background-image: url(images/shortcodes/arrow.png);
	background-repeat: no-repat;
}
/*--------------------------------------------------------------
Tabs - Horizontal
--------------------------------------------------------------*/
.vision-tabs-horizontal {
	position: relative;
	margin-top: 40px;
	font-size: 13px;
	padding-top: 10px;
	height: 380px;
	margin: 0;
}
.vision-tabs-horizontal dt {
	float: left;
	margin-left: 1.25%;
	margin-right: 3.5%;
	cursor: pointer;
	font-weight: bold;
	clear: none; /* woocommerce fix */
}
.vision-tabs-horizontal dd {
	display: none;
	position: absolute;
	background-image: url(images/shortcodes/tabs-type2-BG.png);
	background-repeat: repeat-x;
	top: 50px;
	padding: 30px;
	margin: 0 !important;
}
.vision-tabs-horizontal dd.current {
	display: block;
}
.vision-tabs-horizontal_arrow {
	position: absolute;
	top: 38px;
	z-index: 1001;
	width: 28px;
	height: 15px;
	background-image: url(images/shortcodes/arrow-up-2.png);
	background-repeat: no-repat;
}
/*--------------------------------------------------------------
Testimonials
--------------------------------------------------------------*/
.vision-testimonials {margin-bottom: 15px;}
.vision-testimonial strong {font-size: 13px;}
.vision-client_identity {margin-left: 36px;}
.vision-dots {z-index: 200;}
.vision-testimonial blockquote {
	margin-top: 20px;
	font-size: 13px;
	line-height: 1.6em;
	padding-left: 36px;
	position: relative;
	font-style: normal;
	border:0;
}
.vision-testimonial blockquote:before {
	content: url(images/shortcodes/testimonials.png);
	position: absolute;
	top: 0;
	left: 0;
}
.vision-testimonial blockquote,q {
	quotes: none;
}
.vision-circle {
	float: left;
	border: 6px solid #ebebeb;
	border-radius: 6px;
	width: 0;
	margin-left: 8px;
	cursor: pointer;
}
.vision-circle.current,circles:hover {border-color: #B7B7B7;}
/*--------------------------------------------------------------
PrettyPhoto Styles
--------------------------------------------------------------*/
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right {
	height: 13px
}
div.pp_default .pp_top .pp_left {
	background: url(images/prettyPhoto/default/sprite.png) -78px -93px no-repeat
}
div.pp_default .pp_top .pp_middle {
	background: url(images/prettyPhoto/default/sprite_x.png) top left repeat-x
}
div.pp_default .pp_top .pp_right {
	background: url(images/prettyPhoto/default/sprite.png) -112px -93px no-repeat
}
div.pp_default .pp_content .ppt {
	color: #f8f8f8
}
div.pp_default .pp_content_container .pp_left {
	background: url(images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;
	padding-left: 13px
}
div.pp_default .pp_content_container .pp_right {
	background: url(images/prettyPhoto/default/sprite_y.png) top right repeat-y;
	padding-right: 13px
}
div.pp_default .pp_next:hover {
	background: url(images/prettyPhoto/default/sprite_next.png) center right no-repeat;
	cursor: pointer
}
div.pp_default .pp_previous:hover {
	background: url(images/prettyPhoto/default/sprite_prev.png) center left no-repeat;
	cursor: pointer
}
div.pp_default .pp_expand {
	background: url(images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;
	cursor: pointer;
	height: 28px;
	width: 28px
}
div.pp_default .pp_expand:hover {
	background: url(images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;
	cursor: pointer
}
div.pp_default .pp_contract {
	background: url(images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;
	cursor: pointer;
	height: 28px;
	width: 28px
}
div.pp_default .pp_contract:hover {
	background: url(images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;
	cursor: pointer
}
div.pp_default .pp_close {
	background: url(images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;
	cursor: pointer;
	height: 30px;
	width: 30px
}
div.pp_default .pp_gallery ul li a {
	background: url(images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;
	border: 1px solid #aaa
}
div.pp_default .pp_social {
	margin-top: 7px
}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next {
	left: auto;
	position: static
}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause {
	background: url(images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;
	height: 30px;
	width: 30px
}
div.pp_default .pp_nav .pp_pause {
	background-position: -51px -29px
}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next {
	background: url(images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;
	height: 20px;
	margin: 4px 0 0;
	width: 20px
}
div.pp_default a.pp_arrow_next {
	background-position: -82px -3px;
	left: 52px
}
div.pp_default .pp_content_container .pp_details {
	margin-top: 5px
}
div.pp_default .pp_nav {
	clear: none;
	height: 30px;
	position: relative;
	width: 110px
}
div.pp_default .pp_nav .currentTextHolder {
	color: #999;
	font-family: Georgia;
	font-size: 11px;
	font-style: italic;
	left: 75px;
	line-height: 25px;
	margin: 0;
	padding: 0 0 0 10px;
	position: absolute;
	top: 2px
}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover {
	opacity: 0.7
}
div.pp_default .pp_description {
	font-size: 11px;
	font-weight: 700;
	line-height: 14px;
	margin: 5px 50px 5px 0
}
div.pp_default .pp_bottom .pp_left {
	background: url(images/prettyPhoto/default/sprite.png) -78px -127px no-repeat
}
div.pp_default .pp_bottom .pp_middle {
	background: url(images/prettyPhoto/default/sprite_x.png) bottom left repeat-x
}
div.pp_default .pp_bottom .pp_right {
	background: url(images/prettyPhoto/default/sprite.png) -112px -127px no-repeat
}
div.pp_default .pp_loaderIcon {
	background: url(images/prettyPhoto/default/loader.gif) center center no-repeat
}
div.pp_pic_holder a:focus {
	outline: none
}
div.pp_overlay {
	background: #000;
	display: none;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9500
}
div.pp_pic_holder {
	display: none;
	position: absolute;
	width: 100px;
	z-index: 10000
}
.pp_content {
	height: 40px;
	min-width: 40px
}
* html .pp_content {
	width: 40px
}
.pp_content_container {
	position: relative;
	text-align: left;
	width: 100%
}
.pp_content_container .pp_left {
	padding-left: 20px
}
.pp_content_container .pp_right {
	padding-right: 20px
}
.pp_content_container .pp_details {
	float: left;
	margin: 10px 0 2px
}
.pp_description {
	display: none;
	margin: 0
}
.pp_social {
	float: left;
	margin: 0
}
.pp_social .facebook {
	float: left;
	margin-left: 5px;
	overflow: hidden;
	width: 55px
}
.pp_social .twitter {
	float: left
}
.pp_nav {
	clear: right;
	float: left;
	margin: 3px 10px 0 0
}
.pp_nav p {
	float: left;
	margin: 2px 4px;
	white-space: nowrap
}
.pp_nav .pp_play,.pp_nav .pp_pause {
	float: left;
	margin-right: 4px;
	text-indent: -10000px
}
a.pp_arrow_previous,a.pp_arrow_next {
	display: block;
	float: left;
	height: 15px;
	margin-top: 3px;
	overflow: hidden;
	text-indent: -10000px;
	width: 14px
}
.pp_hoverContainer {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2000
}
.pp_gallery {
	display: none;
	left: 50%;
	margin-top: -50px;
	position: absolute;
	z-index: 10000
}
.pp_gallery div {
	float: left;
	overflow: hidden;
	position: relative
}
.pp_gallery ul {
	float: left;
	height: 35px;
	margin: 0 0 0 5px;
	padding: 0;
	position: relative;
	white-space: nowrap
}
.pp_gallery ul a {
	border: 1px rgba(0,0,0,0.5) solid;
	display: block;
	float: left;
	height: 33px;
	overflow: hidden
}
.pp_gallery ul a img {
	border: 0
}
.pp_gallery li {
	display: block;
	float: left;
	margin: 0 5px 0 0;
	padding: 0
}
.pp_gallery li.default a {
	background: url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
	display: block;
	height: 33px;
	width: 50px
}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next {
	margin-top: 7px!important
}
a.pp_next {
	background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
	display: block;
	float: right;
	height: 100%;
	text-indent: -10000px;
	width: 49%
}
a.pp_previous {
	background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
	display: block;
	float: left;
	height: 100%;
	text-indent: -10000px;
	width: 49%
}
a.pp_expand,a.pp_contract {
	cursor: pointer;
	display: none;
	height: 20px;
	position: absolute;
	right: 30px;
	text-indent: -10000px;
	top: 10px;
	width: 20px;
	z-index: 20000
}
a.pp_close {
	display: block;
	line-height: 22px;
	position: absolute;
	right: 0;
	text-indent: -10000px;
	top: 0
}
.pp_loaderIcon {
	display: block;
	height: 24px;
	left: 50%;
	margin: -12px 0 0 -12px;
	position: absolute;
	top: 50%;
	width: 24px
}
#pp_full_res {
	line-height: 1!important
}
#pp_full_res .pp_inline {
	text-align: left
}
#pp_full_res .pp_inline p {
	margin: 0 0 15px
}
div.ppt {
	color: #fff;
	display: none;
	font-size: 17px;
	margin: 0 0 5px 15px;
	z-index: 9999
}
div.pp_default .pp_content,div.light_rounded .pp_content {
	background-color: #fff
}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline {
	color: #000
}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a {
	border-color: #fff
}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details {
	position: relative
}
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content {
	background: #fff
}
.pp_top,.pp_bottom {
	height: 20px;
	position: relative
}
* html .pp_top,* html .pp_bottom {
	padding: 0 20px
}
.pp_top .pp_left,.pp_bottom .pp_left {
	height: 20px;
	left: 0;
	position: absolute;
	width: 20px
}
.pp_top .pp_middle,.pp_bottom .pp_middle {
	height: 20px;
	left: 20px;
	position: absolute;
	right: 20px
}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle {
	left: 0;
	position: static
}
.pp_top .pp_right,.pp_bottom .pp_right {
	height: 20px;
	left: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px
}
.pp_fade,.pp_gallery li.default a img {
	display: none
}
/*--------------------------------------------------------------
Social Icons
--------------------------------------------------------------*/
.vision-social,
.entry-content .vision-social {
	list-style: none;
	font-size: 20px;
	padding: 20px;
}
.vision-social li, .entry-content-wrapper .vision-social li {margin: 0 20px 20px 0;float: left;}
/* uncomment this code for vertical stacked icons
.vision-social li {
float:none;
}
*/

/* hover transitions */
.vision-social .fa { transition:all .5s; }
.fa:hover { text-decoration: none; }

/* Default Icons */
.vision-social a{
	font-size:23px;
	width:20px;
	text-align:center;
	height:24px;
	line-height:24px;
}

/* PNG Icons */
.vs-png .fa {color:rgba(0, 0, 0, 0.4);}
.vs-png .fa:hover {color:rgba(0, 0, 0, 0.8);}

/* Color Icons */
.vs-color .fa:hover {opacity: 0.6; }
.vs-color .fa-twitter,
.entry-content .vs-color .fa-twitter,
.vs-square .fa-twitter-square, .entry-content .vs-square .fa-twitter-square{color:#00BDEC;}
.vs-color .fa-facebook, .entry-content .vs-color .fa-facebook{color:#3B5998;}
.vs-color .fa-dribbble, .entry-content .vs-color .fa-dribbble{color:#EF5B92;}
.vs-color .fa-linkedin, .entry-content .vs-color .fa-linkedin{color:#1B92BD;}
.vs-color .fa-vimeo-square, .entry-content .vs-color .fa-vimeo-square{color:#20B9EB;}
.vs-color .fa-flickr, .entry-content .vs-color .fa-flickr{color:#EA2798;}
.vs-color .fa-youtube-play, .entry-content .vs-color .fa-youtube-play{color:#D20800;}
.vs-color .fa-pinterest, .entry-content .vs-color .fa-pinterest{color:#CC232A;}
.vs-color .fa-google-plus, .entry-content .vs-color .fa-google-plus{color:#D94A39;}
.vs-color .fa-rss, .entry-content .vs-color .fa-rss{color:#FF7F00;}
.vs-color .fa-envelope, .entry-content .vs-color .fa-envelope{color:#30C9F0;}
.vs-color .fa-skype, .entry-content .vs-color .fa-skype{color:#19B7F1;}
.vs-color .fa-wordpress, .entry-content .vs-color .fa-wordpress{color:#454545;}
.vs-color .fa-instagram, .entry-content .vs-color .fa-instagram{color:#316C95;}

/* Round Icons */
.vs-round li{margin:0 20px 10px 0;}
.vs-round .fa,
.vs-square .fa,
.entry-content .vs-round .fa{
	color:#fff;
	background:#88BBC8;
	font-size:20px;
	width:30px;
	height: 30px;
    line-height: 30px;
	padding:1px;
	-moz-border-radius:20em;
	-webkit-border-radius:20em;
	border-radius:20em;
}

/* Square Icons */
.vs-square .fa:hover {opacity: 0.6;}
.vs-square .fa{
	font-size: 23px;
	height: 40px;
	line-height: 41px;
	width: 40px;
	padding: 0;
	-webkit-border-radius:3px;
	   -moz-border-radius:3px;
	        border-radius:3px;
}
.vs-fill.vs-square .fa {font-size:28px;color:#FFF;}

/* Default Round Hover */
.vs-round.vs-default .fa:hover{background:#F26535;}

/* PNG Round */
.vs-round.vs-png .fa{background:rgba(0, 0, 0, 0.4);}
.vs-round.vs-png .fa:hover{color: #FFF;background:rgba(0, 0, 0, 0.8);}

/* Color Round & Square */
.vs-round.vs-color .fa-twitter,.vs-square .fa-twitter,.vs-square .fa-twitter-square{background:#00BDEC;}
.vs-round.vs-color .fa-facebook,.vs-square .fa-facebook,.vs-square .fa-facebook-square{background:#3B5998;}
.vs-round.vs-color .fa-dribbble,.vs-square .fa-dribbble{background:#EF5B92;}
.vs-round.vs-color .fa-linkedin,.vs-square .fa-linkedin,.vs-square .fa-linkedin-square{background:#1B92BD;}
.vs-round.vs-color .fa-vimeo-square,.vs-square .fa-vimeo-square{background:#20B9EB;}
.vs-round.vs-color .fa-flickr,.vs-square .fa-flickr{background:#EA2798;}
.vs-round.vs-color .fa-youtube-play,.vs-square .fa-youtube-play{background:#D20800;}
.vs-round.vs-color .fa-pinterest,.vs-square .fa-pinterest,.vs-square .fa-pinterest-square{background:#CC232A;}
.vs-round.vs-color .fa-google-plus,.vs-square .fa-google-plus,.vs-square .fa-google-plus-square{background:#D94A39;}
.vs-round.vs-color .fa-rss,.vs-square .fa-rss,.vs-square .fa-rss-square{background:#FF7F00;}
.vs-round.vs-color .fa-envelope,.vs-square .fa-envelope,.vs-square .fa-envelope-square{background:#30C9F0;}
.vs-round.vs-color .fa-skype,.vs-square .fa-skype{background:#19B7F1;}
.vs-round.vs-color .fa-wordpress,.vs-square .fa-wordpress{background:#454545;}
.vs-round.vs-color .fa-instagram,.vs-square .fa-instagram{background:#316C95;}
/*--------------------------------------------------------------
WP Theme-Specific Styles
--------------------------------------------------------------*/
#content .vision-tabs-vertical dd {
	margin-bottom: 0px !important;
}
/* Twenty Twelve Theme */
.entry-content .true-vision-pricing-column h1,
.comment-content .true-vision-pricing-column h1 {
	text-align: center;
	font: bold 88px/1 Helvetica, Arial, Verdana, sans-serif;
	margin: 0 0 0 -24px;
	color: #FFF;
	line-height: auto;
}
/* Enfold - by Kriesi 
 * (additional styles added to a.vision-button earlier in this file)
 */
.entry-content a.vision-button:hover {text-decoration: none;}
.entry-content a.vision-button {height: 30px;}
.entry-content a.vision-button.large {height: 37px;}
.entry-content a.vision-button.jumbo {height: 49px;}
.entry-content .vision-pullquote-1.alignleft, .entry-content .vision-pullquote-1.alignright, .entry-content .vision-pullquote-1.aligncenter {border:0;}
.template-page .entry-content-wrapper .true-vision-pricing-column h1, .template-page .entry-content-wrapper .true-vision-pricing-column h2 {text-transform: none;letter-spacing: 0;}
.container_wrap.main_color .vision-progress-section .progress, .container_wrap.main_color .vision-progress-section .progress-bar { height:20px;}
.container_wrap.main_color .vision-progress-section {margin-bottom:20px;}
.entry-content .vs-square .fa {color:#FFF;}
.container_wrap.main_color .closeable-x {background-position: 95% 0px;}
.container_wrap.main_color .vision-tabs-vertical_arrow {left: 23.3% !important;}
/*--------------------------------------------------------------
Vector Icon Boxes
--------------------------------------------------------------*/
.vision-icon-box {
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.vision-icon-box {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    color: #333333;
    float: left;
	margin-bottom: 20px;
    overflow: hidden;
	padding: 30px;
	text-align: center;
    transition: all 0.2s ease-out 0s;
    width: 100%;
	-webkit-border-radius:2px;
   	   -moz-border-radius:2px;
	-webkit-box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.15);
       -moz-box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition:all 0.2s ease-out 0s;
       -moz-transition:all 0.2s ease-out 0s;
         -o-transition:all 0.2s ease-out 0s;
}
.vision-icon-box span.fa-stack {
	margin-bottom: 15px;
}
a.vision-icon-box {
	text-decoration: none;
    cursor: pointer;
}
.vision-icon-box:hover {
    margin: -6px 0 26px 0;
	text-decoration: none;
}
/*--------------------------------------------------------------
Vector Icon Lists
--------------------------------------------------------------*/
ul.vision-vector-list {
	margin-left: 5px;
}
ul.vision-vector-list li {
	list-style: none;
	margin-bottom: 8px;
}
ul.vision-vector-list li i.fa {
	padding-right: 6px;
	font-size:120%;
}
.vision_hr_gap {display: block;width: 100%;} /* gap shortcode [gap size="100px"] */
/*--------------------------------------------------------------
Responsive Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 800px) {
	.vision_two_thirds {
		width: 98%;
		clear: both;
	}
	.vision_one_third + .vision_two_thirds {
		margin-left: 0;
	}
	.vision_two_thirds + .vision_one_third {
		width: 100%;
		margin: 0 auto;
	}
	.vision-services,
	.vision-features,
	.vision-circle-loader,
	.vision-circle-loader-icon {
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 600px) {
.vision_one_half,
.vision_one_third,
.vision_one_fourth,
.vision_one_fifth,
.vision_one_sixth {
	width: 99%;
}
.vision_one_half + .vision_one_half, .vision_one_third + .vision_one_third, .vision_two_thirds + .vision_one_third, .vision_one_fourth + .vision_one_fourth, .vision_one_fifth + .vision_one_fifth, .vision_one_third + .vision_two_thirds, .vision_one_sixth + .vision_one_sixth {
		margin-left: 0;
	}
.vision_one_third .closeable-x,
.vision_one_fourth .closeable-x,
.vision_one_fifth .closeable-x {
background: url(images/shortcodes/notification-closeable-x.png) 98% 8px no-repeat;
	}
}