/*-------------------------------------------------------------------------------------------------------
        CSS Reset (Boilerplate)
-------------------------------------------------------------------------------------------------------*/

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

audio:not([controls]) {
	display: none;
}

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	background: url('../img/fabric_plaid.png') top left repeat;
}

body {
	margin: 0;
	font-size: 13px;
	line-height: 1.231;
}

.ie8 body {
	min-width: 1020px;
}

body, button, input, select, textarea {
	font-family: sans-serif;
	color: #222;
}

a {
	color: #00e;
}

a:visited {
	color: #551a8b;
}
a:hover {
	color: #06e;
}

a:focus, a:hover, a:active {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b, strong {
	font-weight: bold;
}

blockquote {
	margin: 1em 40px;
}

dfn {
	font-style: italic;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

ins {
	background: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background: #ff0;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

pre, code, kbd, samp {
	font-family: monospace, monospace;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

q {
	quotes: none;
}

q:before, q:after {
	content: "";
	content: none;
}

small {
	font-size: 85%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

ul, ol {
	/*    margin: 1em 0;*/
	margin: 0 0 20px 0;
	padding: 0 0 0 20px;
}

dd {
	margin: 0 0 0 40px;
}

nav ul, nav ol {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

form {
	margin: 0;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

label {
	cursor: pointer;
}

legend {
	border: 0;
	*margin-left: -7px;
	padding: 0;
}

button, input, select, textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
}

button, input {
	line-height: normal;
	*overflow: visible;
}

table button, table input {
	*overflow: auto;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

input:valid, textarea:valid {
}

input:invalid, textarea:invalid {
	background-color: #f0dddd;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td {
	vertical-align: top;
}

/*-------------------------------------------------------------------------------------------------------
        Responsive Utility Classes
-------------------------------------------------------------------------------------------------------*/

.hidden {
	display: none;
	visibility: hidden;
}

.visible-phone {
	display: none !important;
}

.visible-phone-portrait {
	display: none !important;
}

.visible-phone-landscape {
	display: none !important;
}

.visible-tablet {
	display: none !important;
}

.hidden-desktop {
	display: none !important;
}

@media (max-width: 479px) {
	.visible-phone {
		display: inherit !important;
	}
	.visible-phone-portrait {
		display: inherit !important;
	}
	.visible-phone-landscape {
		display: none !important;
	}
	.hidden-phone {
		display: none !important;
	}
	.hidden-desktop {
		display: inherit !important;
	}
	.visible-desktop {
		display: none !important;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.visible-phone {
		display: inherit !important;
	}
	.visible-phone-portrait {
		display: none !important;
	}
	.visible-phone-landscape {
		display: inherit !important;
	}
	.hidden-phone {
		display: none !important;
	}
	.hidden-desktop {
		display: inherit !important;
	}
	.visible-desktop {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 959px) {
	.visible-tablet {
		display: inherit !important;
	}
	.visible-phone-portrait {
		display: none !important;
	}
	.visible-phone-landscape {
		display: none !important;
	}
	.hidden-tablet {
		display: none !important;
	}
	.hidden-desktop {
		display: inherit !important;
	}
	.visible-desktop {
		display: none !important ;
	}
}

.ie8 .visible-tablet, .ie8 .visible-phone-portrait, .ie8 .visible-phone-landscape,
.ie8 .hidden-tablet, .ie8 .hidden-desktop {
	display: none;
	visibility: collapse;
}

.ie8 .display-desktop {
	display: inherit;
	visibility: visible;
}

/*-------------------------------------------------------------------------------------------------------
        Document
-------------------------------------------------------------------------------------------------------*/

html.touch a:hover {
	text-decoration: none;
}

body a, body a:hover, body a:visited {
	text-decoration: underline;
}

div[role="document"] {
	color: #555555;
	font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	/*    width: 100%;
		max-width: 1004px;*/
	margin: 0 auto;
	zoom: 1;
	-webkit-font-smoothing: antialiased;
}

abbr[title] {
	border-bottom: none;
}

.ie7 body > div#wrap {
	/*    width: 1004px;
		max-width: 1004px;*/
}

.no-js body {
	display: block;
}

h1, h2, h3, h4, h5, h6 {
	color: #191919;
	padding: 0;
	margin: 15px 0 20px 0;
	font-weight: normal;
	line-height: 1em;
}

h1 {
	letter-spacing: -0.05em;
	color: #191919;
	font-size: 30px;
}

h2 {
	font-size: 25px;
}

h3 {
	font-size: 20px;
	font-weight: normal;

}

div.plan-header h3 {
	letter-spacing: -0.05em;
	line-height: 48px;
	margin: 30px auto 0 auto;
}

h4 {
	font-size: 18px;
	/*	line-height: 30px;*/
	/*	margin: 30px auto 15px auto;*/
}

h5 {
	font-size: 16px;
	/*    line-height: 18px;*/
	/*	font-weight: bold;*/
	/*	margin: 2em 0 0 0;*/
}

h6 {
	font-size: 15px;
	/*    line-height: 16px;*/
	/*    text-transform: uppercase;*/
}

p {
	margin: 0 0 20px 0;
}

/* Page Containers */

div#subheader h1, div#subheader h2 {
	text-align: center;
}

div#subheader h1 {
	font-size: 40px;
	line-height: 40px;
	margin: 60px auto 0 auto;
}

div#subheader h2 {
	margin-top: 5px;
	font-weight: 300;
	font-size: 20px;
	line-height: 40px;
}

.main {
	position: relative;
	background: white;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	width: 980px;
	margin: 0 auto 30px auto;
	overflow: hidden;
}

.main.home {
	/*    margin-top: 0;*/
	/*    padding-top: 18px;*/
}

.prime-page, .prime-post, .comments {
	/*    padding: 26px 6px 26px 0;
		margin-right: 14px;
		margin-bottom: 10px;*/
	/*	padding: 0 26px;*/
}

.prime-page {
	margin: 40px 45px 42px 45px;
	/*	padding-left: 25px;
		padding-right: 25px;*/
	/*	padding: 0 25px 25px 25px;*/
}

/*.main.has-sidebar.left-sidebar .prime-page {
    margin-left: 14px;
    margin-right: 0;
    padding-left: 6px;
    padding-right: 0;
}*/

.main.has-sidebar.left-sidebar div.sidebar-wrapper.right-sidebar-wrapper {
	display: none;
	visibility: collapse;
}

div.sidebar-wrapper.span4 {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	border-left: 1px solid #E5E5E5;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
	background: #fafafa;
	background: rgba(0, 0, 0, 0.01);
	margin: 0;
	width: 30%;
}


div.left-sidebar div.sidebar-wrapper.span4 {
	right: auto;
	left: 0;
	border-left: none;
	border-right: 1px solid #E5E5E5;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
}

div.left-sidebar div.sidebar-wrapper.span4 div#sidebar {
	padding-left: 45px;
	padding-right: 45px;
}


div.page-container.row-fluid > div.span8 {
	width: 70%;
	overflow: hidden;
}

div.left-sidebar div.page-container.row-fluid > div.span8 {
	float: right;
}

div#sidebar {
	margin: 40px 0;
	padding: 0 45px 0 40px;
	text-shadow: rgba(255, 255, 255, 0.597656) 0px 1px 0px;
}

div#sidebar article.widget-first {
	margin-top:15px;
}

div#sidebar > article > div.sidebar-widget > h3 {
	line-height: 13px;
	font-family: 'Helvetica Neue', 'Segoe UI', 'Arial', sans-serif;
	font-weight: bold;
}

.prime-post {
	padding-top: 0;
	margin-top: -5px;
}

.prime-single-portfolio {
	padding-top: 29px;
	padding-bottom: 0;
}

.prime-full-width {
	/*	padding: 25px;*/
}

article.item > iframe {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* Fluid Columns */

[class*="span"] {
	float: left;
	margin-left: 20px;
}
.row-fluid {
	width: 100%;
	*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
	display: table;
	content: "";
}
.row-fluid:after {
	clear: both;
}
.row-fluid > [class*="span"] {
	float: left;
	margin-left: 2.127659574%;
}
.row-fluid > [class*="span"]:first-child {
	margin-left: 0;
}
.row-fluid > .span12 {
	width: 99.99999998999999%;
}
.row-fluid > .span11 {
	width: 91.489361693%;
}
.row-fluid > .span10 {
	width: 82.97872339599999%;
}
.row-fluid > .span9 {
	width: 74.468085099%;
}
.row-fluid > .span8 {
	width: 65.95744680199999%;
}
.row-fluid > .span7 {
	width: 57.446808505%;
}
.row-fluid > .span6 {
	width: 48.93617020799999%;
}
.row-fluid > .span5 {
	width: 40.425531911%;
}
.row-fluid > .span4 {
	width: 31.914893614%;
}
.row-fluid > .span3 {
	width: 23.404255317%;
}
.row-fluid > .span2 {
	width: 14.89361702%;
}
.row-fluid > .span1 {
	width: 6.382978723%;
}

/* WP Core Styling*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
	display:block;
	margin: 5px auto 5px auto;
}

.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float:left;
	margin: 5px 20px 20px 0;
}

.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

a img.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float:left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.wp-caption {
	max-width: 96%;
	/* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin:0;
	max-width: 98.5%;
	padding:0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}

figcaption {
	margin-top: 1em;
	margin-bottom: 1em;
}

.sticky, .bypostauthor { }




/*-------------------------------------------------------------------------------------------------------
        Header
-------------------------------------------------------------------------------------------------------*/

div.header-bg {
	width: 100%;
	height: 500px;
	position: absolute;
	top: 0;
	/*	background-color: #79b743;
		background-image: -moz-linear-gradient(top, #79b743, #58b28d);
		background-image: -ms-linear-gradient(top, #79b743, #58b28d);
		background-image: -o-linear-gradient(top, #79b743, #58b28d);
		background-image: -webkit-linear-gradient(top, #79b743, #58b28d);
		background-image: linear-gradient(top, #79b743, #58b28d);*/
}

header {
	width: 100%;
	position: relative;
	/*    margin: 9px 0;*/
	/*    background: white;*/
	/*    border-radius: 4px;*/
	/*    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
	/*    font-weight: 500;*/
	padding: 30px 0 0 0;

}

/*html.touch header {*/
/*margin-top: 10px;*/
/*}*/

nav {
	width: 980px;
	margin: 0 auto;
}

/*.tagline {
    display: inline-block;
    vertical-align: middle;
    float: left;
    position: relative;
    top: 46px;
    padding-left: 10px;
    color: #7d7d7d;
}*/

div.tagline {
	display: inline-block;
	float: left;
	color: white;
	margin-top: 13px;
	line-height: 1em;
	font-weight: bold;
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2);

	margin-left: 12px;
	padding-left: 13px;
	font-weight: bold;
	border-left: 1px dotted white;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

header .logo {
	/*    padding: 11px 0;*/
	display: inline-block;
	float: left;
}

header div.logo > a {
	display: block;
}

html.std-selector body header a,
html.std-selector body header a:hover,
html.std-selector body header div.social-links a:hover,
html.std-selector body header a:visited {
	color: white;
}

/*-------------------------------------------------------------------------------------------------------
        Menus
-------------------------------------------------------------------------------------------------------*/

.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style:	none;
}

.sf-menu ul {
	position: absolute;
	top: -999em;
	width: 20em; /* left offset of submenus need to match (see below) */
}

.sf-menu ul li {
	width: 100%;
}

.sf-menu li.sfHover, html.no-touch .sf-menu li:hover {
	visibility: inherit; /* fixes IE7 'sticky bug' */
}

.sf-menu li {
	float: left;
	position: relative;
	height: 20px;
}

.sf-menu a {
	display: block;
	position: relative;
}

.sf-menu li.sfHover ul, html.no-touch .sf-menu li:hover ul {
	left: 0;
	top: 45px; /* match top ul list item height */
	z-index: 99;
}

html.mozilla .sf-menu li.sfHover ul,
html.mozilla html.no-touch .sf-menu li:hover ul {
	top: 46px;
}

html.msie .sf-menu li.sfHover ul,
html.msie html.no-touch .sf-menu li:hover ul {
	top: 46px;
}

ul.sf-menu li.sfHover li ul, html.no-touch ul.sf-menu li:hover li ul{
	top: -999em;
}

ul.sf-menu li li.sfHover ul, html.no-touch ul.sf-menu li li:hover ul {
	left: 20em; /* match ul width */
	top: 0;
}

ul.sf-menu li li.sfHover li ul, html.no-touch ul.sf-menu li li:hover li ul {
	top: -999em;
}

ul.sf-menu li li li.sfHover ul, html.no-touch ul.sf-menu li li li:hover ul {
	left: 20em; /* match ul width */
	top: 0;
}

ul.sf-menu li {
	height: auto;
}

ul.sub-menu {
	overflow: visible !important;
}

div.menu-wrapper {
	margin-top: 10px;
	background-color: #444;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: none;
	-ms-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-o-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	padding: 0;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
}

ul.topmenu {
	line-height: 1.0;
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: middle;
	float: left;
}

ul.topmenu > li:first-child {
	padding-left: 0;
}

ul.topmenu > li {
	margin-left: 8px;
}

ul.topmenu li a {
	display: block;
	text-decoration: none;
	border-bottom: none;
	line-height: 1.6em;
	/*    border-radius: 4px;*/
	padding: 8px 20px 7px 20px;
	font-size: 13px;
}

ul.topmenu > li > a {
	padding: 12px 20px 13px 20px;
}

ul.topmenu > li.menu-parent-item > a > span > strong:after {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	content: "\f078";
	padding-left: 6px;
	max-width:10px;
}


ul.sub-menu li.menu-parent-item > a > span > strong:after {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	content: "\f054";
	padding-left: 0;
	max-width:10px;
	float: right;
	text-align: right;
}



ul.topmenu li.menu-parent-item a {
	/*    border-radius: 4px 4px 0 0;*/

}
ul.topmenu li.menu-parent-item.sfHover > a, html.no-touch ul.topmenu li.menu-parent-item:hover > a {
	/*    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);*/
}

ul.topmenu li a span.menu-link-wrap {
	display: block;
}

ul.topmenu > li > a {
	/*	opacity: 0.7;*/
	-webkit-transition: 0.3s ease all;
	-moz-transition: 0.3s ease all;
	-ms-transition: 0.3s ease all;
	-o-transition: 0.3s ease all;
	transition: 0.3s ease all;
}

ul.topmenu li.sfHover > a > span.menu-link-wrap {
	border-color: transparent;
}

ul.topmenu li.sfHover > a {
	/*	opacity: 1;*/
	background: rgba(0, 0, 0, 0.2);
}

ul.topmenu > li.current_page_item > a , ul.topmenu > li.current-menu-ancestor > a {
	/*	background: rgba(0, 0, 0, 0.1);*/
	/*	opacity: 1;*/

	/*	-ms-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.15);
		-moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.15);
		-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.15);
		-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.15);
		box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.15);*/
}

ul.topmenu li a strong {
	font-weight: bold;
	display: block;
	/*    text-transform: uppercase;*/
	/*	font-size: 11px;*/
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2);
	color: white;
}

ul.topmenu > li.sfHover > a strong, ul.topmenu > li:hover > a strong {
	color: white;
	/*	text-shadow: 0px 0px 8px rgba(255,255,255,.5);*/

}

ul.topmenu li a span.description, ul.social-links a, ul.social-links a:visited {
	color: #b4b4b4;
	font-weight: 500;
}

ul.topmenu  li:last-child {
	padding-right: 0;
}

ul.topmenu ul.sub-menu {
	background: white;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
	border-radius:4px;
}

ul.topmenu > li > ul.sub-menu {
	border-radius: 0 0 4px 4px;
}

ul.topmenu ul.sub-menu li > a strong, ul.topmenu ul.sub-menu li > a strong {
	color: #333;
	text-transform: none;
	font-size: 13px;
	text-shadow: none;
}

ul.topmenu ul.sub-menu li:first-child a {
	/*	border-radius: 4px 4px 0 0;*/
}

ul.topmenu ul.sub-menu li:last-child a {
	border-radius: 0 0 4px 4px;
}

ul.topmenu.mobile-menu ul.sub-menu li:last-child a {
	border-radius: 0;
}

.ie8 ul.sub-menu li > a, .ie7 ul.sub-menu li > a {
	border-left: 1px solid #ededed;
	border-right: 1px solid #ededed;
}

.ie8 ul.sub-menu, .ie7 ul.sub-menu {
	border-bottom: 1px solid #ededed
}

ul.sub-menu ul.sub-menu {
	border-radius: 0 4px 4px 4px;
}

ul.sub-menu ul.sub-menu > li:first-child > a {
	border-radius: 0 4px 0 0;
}

ul.topmenu ul.sub-menu a, ul.mobile-menu li a  {
	border-radius: 0;
	margin-right: 0;
	margin-left: 0;
}

div.menu-wrapper ul.topmenu ul.sub-menu li.sfHover > a, html.no-touch div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background: #f8f8f8;
}

ul.topmenu ul.sub-menu li a span.menu-link-wrap {
	border-left: 1px solid transparent;
}

ul.topmenu ul.sub-menu li:first-child > a {
	border-top: 1px solid transparent;
}

ul.topmenu ul.sub-menu li a, ul.mobile-menu li a {
	border-top: 1px solid #ededed;
}

html.touch ul.topmenu.desktop-menu, html.no-touch ul.tablet-menu.tablet-menu-landscape, ul.topmenu.tablet-menu, ul.topmenu.mobile-menu, div.mobile-menu-wrapper, a.btn.mobile-menu-btn {
	display: none;
	visibility: collapse;
}

html.touch ul.tablet-menu.tablet-menu-landscape {
	display: block;
	visibility: visible;
}

span.call-us-button {
	position: relative;
}

div.mobile-header-content {
	display: none;
	visiblity: collapse;
}

span.call-button-inner {
	display: block;
	position: relative;
}

i.call-us-icon:before {
	/*	display: block;*/
	/*	display: inline;*/
	width: 15px;
	height: 15px;
	content: "\0021";
	font-family: 'EntypoRegular';
	font-style: normal;
	font-weight: normal;
	font-size:3em;
	line-height:12px;
	position: absolute;
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
	left: -0.49em;
	bottom: 0.05em;
	/*	left: 0.4em;
		bottom: 0.63em;*/
	/*	left: 13px;*/

	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	filter: progid:DXImageTransform.Microsoft.Matrix(/* IE6–IE9 */
			M11=6.123031769111886e-17, M12=-1, M21=1, M22=6.123031769111886e-17, sizingMethod='auto expand');
	zoom: 1;
}

.ie8 i.call-us-icon {
	display: none;
	visibility: collapse;
}

body span.call-us-button > a.btn {
	position: relative;
	padding-left: 36px;
}

.ie8 body span.call-us-button > a.btn {
	padding-left: 19px;
}

div.social-links {
	display: inline-block;
}

div.social-links > a:before {
	font-family: 'FontAwesome';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	font-size: 1em;
	padding-right: 4px;
	margin-top:2px;
}

div.header-content > a {

}
a.facebook-link:before {
	content: "\f082";
}

a.twitter-link:before {
	content: "\f081";
}

a.linkedin-link:before {
	content: "\f08c";
}


div.header-content {
	list-style: none;
	float: right;
	margin: 0;
	padding: 0;
	padding-left: 19px;
	padding-bottom: 1px;
}

div.social-links > a {
	display: inline-block;
	text-decoration: none;
	margin-top: 10px;
	margin-left: 10px;
	padding-left: 13px;
	font-weight: bold;
	/*	opacity: 0.8;*/
	border-left: 1px dotted white;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	-webkit-transition: 0.3s ease all;
	-moz-transition: 0.3s ease all;
	-ms-transition: 0.3s ease all;
	-o-transition: 0.3s ease all;
	transition: 0.3s ease all;
	line-height: 1em;
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2);
}

html.ie9 div.social-links > a,
html.ie9 div.social-links > a:hover,
html.ie9 div.social-links > a:visited:hover {
	color: white;
	opacity: 1;
}

div.social-links > a:hover {
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2), 0px 0px 8px rgba(255,255,255,.9);
}

div.standard-header-content div.social-links > a:first-child {
	border-left: none;
}

span.call-us-button {
	margin-left: 40px;
}

body div.header-content a:hover {
	color: white;
	opacity: 1;
}

ul.social-links li {
	line-height: 1.5em;
}

ul.social-links li:first-child, ul.social-links li:first-child a {
	line-height: 1.6em;
}

ul.social-links a {
	text-decoration: none;
}
ul.social-links a:hover {
	text-decoration: underline;
}

ul.social-links li span.arrow {
	display: inline-block;
	vertical-align: bottom;
	margin-bottom: -1px;
}

.ie7 ul.social-links li a > span.arrow {
	text-decoration: none;
}

ul.social-links li:first-child a span.arrow {
	margin-bottom: 0;
}

/*-------------------------------------------------------------------------------------------------------
        Page
-------------------------------------------------------------------------------------------------------*/

div.subheader-wrapper {
	border-bottom: 1px solid #e5e5e5;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px 4px 0 0;
}

div.main.cp_slider div.subheader-wrapper,
div.main.flex_slider div.subheader-wrapper,
div.main.content_slider div.subheader-wrapper,
div.main.cp_slider div.content-wrapper > div.overlay-divider:first-child,
div.main.flex_slider  div.content-wrapper > div.overlay-divider:first-child,
div.main.content_slider  div.content-wrapper > div.overlay-divider:first-child {
	display: none;
	visibility: collapse;
}

div#subheader {
	padding: 0;
	/*background: white url(img/separator.png) bottom left repeat-x;*/
	padding-bottom: 0;
}

div#subheader div.divider {
	width: 1004px;
	padding-top: 6px;
	margin-bottom: 0;
}

#subheader h1 {
	/*    margin: 0;*/
	/*    font-size: 20px;*/
	/*    line-height: 20px;*/
}

#subheader h2 {
	color: #999;
	margin: 10px auto 45px auto;
	line-height: 30px;
}

p#breadcrumbs {
	float: right;
	padding: 2px 0 0 0;
	margin: 0;
	line-height: 20px;
	color: #b4b4b4;
}

p#breadcrumbs a {
	text-decoration: underline;
}

div.content-wrapper {
	position: relative;
	/*	border-top: 3px solid #f8f8f8;
		border-top: 3px solid rgba(0, 0, 0, 0.025);*/
}

div.overlay-divider {
	height: 3px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: #f8f8f8;
	background: rgba(0, 0, 0, 0.02);
	z-index: 3;
}

.ie8 div.overlay-divider {
	background: black;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=2)";
	filter: alpha(opacity=2);
}

div.overlay-divider.bottom {
	bottom: 0;
	top: auto;
}

div.page-container {
	/*	margin-top: -3px;*/
}

/*-------------------------------------------------------------------------------------------------------
        Front Page
-------------------------------------------------------------------------------------------------------*/

div.intro {
	border-radius: 4px;
	margin: 0 auto;
	/*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
}

div.frontpage-slider-wrapper {
	/*    border-radius: 4px 4px 0 0;*/

}

div.flexslider {
	/*    overflow: hidden;*/
}

div.home.prime-page {
	padding-top: 0;
	margin-bottom: 0;
}

div.home.prime-page > .grid_3, .recent-posts-shortcode .grid_3  {
	padding-bottom: 15px;
	padding-top: 24px;
}

div.home.prime-page > .grid_3.omega {
	margin-right: 0;
}


/*-------------------------------------------------------------------------------------------------------
        Footer
-------------------------------------------------------------------------------------------------------*/

footer {
	position: relative;
	overflow: visible;
	/*	border-left: 1px solid white;
		border-right: 1px solid white;*/
	background: #f8f8f8;
	padding: 12px 45px 35px 45px;
	/*    width: 100%;*/
	/*	width: 916px;
		margin: 10px auto;*/
	/*    padding-bottom: 20px;*/
	/*    color: #b4b4b4;*/
	line-height: 18px;
	overflow-x: hidden;
	/*    border-radius: 4px 4px 0 0;*/
	/*    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
	text-shadow: rgba(255, 255, 255, 0.6) 0px 1px 0px;
	color: #777;
	border-radius: 0 0 4px 4px;

	/*background-color: #333333;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#666666));
	background-image: -webkit-linear-gradient(top, #333333, #666666);
	background-image:    -moz-linear-gradient(top, #333333, #666666);
	background-image:     -ms-linear-gradient(top, #333333, #666666);
	background-image:      -o-linear-gradient(top, #333333, #666666);
	background-image:         linear-gradient(to bottom, #333333, #666666);
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	color: #eee;*/

	/*background-color:
	#79B743;
	background-image: -moz-linear-gradient(top,
	#79B743,
	#58B28D);
	background-image: -ms-linear-gradient(top,
	#79B743,
	#58B28D);
	background-image: -o-linear-gradient(top,
	#79B743,
	#58B28D);
	background-image: -webkit-linear-gradient(top,
	#79B743,
	#58B28D);
	background-image: linear-gradient(top,
	#79B743,
	#58B28D);
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	color: white;*/
}

/*footer article.widget > div.container > h3 {
	text-transform: uppercase;
}

footer article.widget > div.container > h3, footer article.widget > div.container a {
	color: white;
}*/

footer div.border.border-top {
	position: absolute;
	height: 3px;
	border-top: 1px solid #E5E5E5;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.02);
	top: 0;
	left: -10px;
	right: -1px;
}

footer div.divider {
	display: none;
	visibility: collapse;
	width: 3000px;
	margin-left: -1000px;
	height: 1px;
	background: #212121;
	float: left;
}

footer a, footer a:visited {
	/*    color: white;*/
	text-decoration: none;
}

footer h3 {
	/*    color: white;*/
	font-family: 'Helvetica Neue', 'Segoe UI', 'Arial', 'sans-serif';
	/*    text-transform: none;*/
	/*    margin: 0 0 11px 0;*/
	margin: 13px 0 20px 0;
	font-size: 13px;
	line-height: 13px;
	font-weight: bold;
	letter-spacing: 0;
	/*    border-bottom: 1px solid #363636;*/
	/*    padding: 0 0 10px 0;*/
}

footer .widget {
	margin-top: 30px;
}
/*
body footer a, body footer a:visited {
    color: white;
}*/

footer a:hover {
	color: white;
}

.footer-logo {
	text-align: center;
}

.footer-logo h3 {
	margin-bottom: 17px;
}

.footer-logo h3 a {
	border: none;
}

.footer-logo span#tagline {
	display: block;
}

footer > .container_12 > div.grid_3:first-child > div.widget-first.divider {
	background: none;
}


.subfooter {
	width: 980px;
	margin: 0 auto 30px auto;
	text-align: center;
	color: #bbb;
	text-shadow: rgba(255, 255, 255, 0.597656) 0px 1px 0px;
}
/*
#subfooter #copyright {
    float: left;
}

#subfooter #social {
    float: right;
}*/

#subfooter a, #subfooter a:visited {
	color: #7c7c7c;
	text-decoration: none;
}

#subfooter a:hover {
	text-decoration: underline;
}

/*-------------------------------------------------------------------------------------------------------
        Shortcodes
-------------------------------------------------------------------------------------------------------*/

/* Social */
div.social-shortcode {
	display: inline-block;
}
div.social-shortcode.counter-right span.fb-wrap {
	margin-top: -2px;
}

div.social-shortcode.counter-right iframe.twitter-share-button {
	max-width: 87px;
}
div.social-shortcode.counter-right div#___plusone_0 {
	max-width: 67px;
}
div.social-shortcode.counter-right div.fb-like > span > iframe {
	max-width: 103px;
	margin-top: -3px;
}
div.social-shortcode.counter-right div.fb-like.hasLikes {
	max-width: 86px !important;
}

html.webkit.ms-windows div.social-shortcode.counter-right div.fb-like.hasLikes,
html.mozilla.ms-windows div.social-shortcode.counter-right div.fb-like.hasLikes {
	max-width: 79px !important;
}

div.social-shortcode > span.in-wrap {
	display: inline-block;
	position: relative;
	min-width: 30px;
	height: 18px;
}

div.social-shortcode.counter-right > span.in-wrap > span.IN-widget {
	top: -2px;
	position: absolute;

}

div.social-shortcode.counter-top span.fb-wrap,
div.social-shortcode.counter-top span.twitter-wrap,
div.social-shortcode.counter-top span.g-wrap,
div.social-shortcode.counter-top span.in-wrap {
	display: inline-block;
	/*	float: left;*/
	/*	margin-top: -3px;*/
}
div.social-shortcode.counter-top span.fb-wrap  iframe{
	margin-top: -3px;
}
div.social-shortcode.counter-top span.twitter-wrap {
	margin-right: 7px;
}
div.social-shortcode.counter-top span.g-wrap {
	margin-right: 6px;
}

div.social-shortcode.counter-top > span.in-wrap > span.IN-widget {
	bottom: -1px;
	position: absolute;
}

.ie8 div.social-shortcode.counter-top > span.in-wrap > span.IN-widget,
.ie9 div.social-shortcode.counter-top > span.in-wrap > span.IN-widget {
	bottom: 2px;
}


/* Buttons */

.btn.danger,
.alert-message.danger,
.btn.danger:hover,
.alert-message.danger:hover,
.btn.error,
.alert-message.error,
.btn.error:hover,
.alert-message.error:hover,
.btn.success,
.alert-message.success,
.btn.success:hover,
.alert-message.success:hover,
.btn.info,
.alert-message.info,
.btn.info:hover,
.alert-message.info:hover {
	color: #ffffff;
}

.btn.danger,
.alert-message.danger,
.btn.error,
.alert-message.error {
	background-color: #fb3939;
	/*    background-repeat: repeat-x;
		background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
		background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
		background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
		background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
		background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
		background-image: linear-gradient(top, #ee5f5b, #c43c35);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ee5f5b', endColorstr = '#c43c35', GradientType = 0);
		text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
		border-color: #c43c35 #c43c35 #882a25;
		border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
}

.btn.success, .alert-message.success {
	background-color: #58B28D;
	/*    background-repeat: repeat-x;
		background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
		background-image: -moz-linear-gradient(top, #62c462, #57a957);
		background-image: -ms-linear-gradient(top, #62c462, #57a957);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
		background-image: -webkit-linear-gradient(top, #62c462, #57a957);
		background-image: -o-linear-gradient(top, #62c462, #57a957);
		background-image: linear-gradient(top, #62c462, #57a957);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#62c462', endColorstr = '#57a957', GradientType = 0);
		text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
		border-color: #57a957 #57a957 #3d773d;
		border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
}

.btn.info, .alert-message.info {
	background-color: #6299C5;
	/*    background-repeat: repeat-x;
		background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
		background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
		background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
		background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
		background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
		background-image: linear-gradient(top, #5bc0de, #339bb9);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#5bc0de', endColorstr = '#339bb9', GradientType = 0);
		text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
		border-color: #339bb9 #339bb9 #22697d;
		border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
}

.btn, a.btn, a.btn:visited, body a.btn, body a.btn:visited, .wpcf7-submit, input[type="submit"] {
	cursor: pointer;
	display: inline-block;
	background-color: #6299C5;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	padding: 11px 19px 12px 19px;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	color: white;
	font-size: 13px;
	line-height: normal;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;
	margin: 0 8px 13px 0;
	text-decoration: none;
	font-weight: bold;
}

.ie9 .btn, .ie9 a.btn, .ie9 a.btn:visited, .ie9 body a.btn, .ie9 body a.btn:visited, .ie9 .wpcf7-submit, .ie9 input[type="submit"] {
	padding: 13px 19px 11px 19px;
}

.ie8 .btn, .ie8 a.btn, .ie8 a.btn:visited, .ie8 body a.btn, .ie8 body a.btn:visited, .ie8 .wpcf7-submit, .ie8 input[type="submit"] {
	border: none;
}

body div.header-content a.btn {
	margin-right: 0;
}

.btn:hover, a.btn:hover, a.btn:visited:hover, body a.btn:hover, body a.btn:visited:hover, .wpcf7-submit:hover, input[type="submit"]:hover {
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2), 0px 0px 8px rgba(255,255,255,.9);
	color: white;
}

.ie8 .btn:hover, .ie8 a.btn:hover, .ie8 a.btn:visited:hover, .ie8 body a.btn:hover, .ie8 body a.btn:visited:hover,
.ie8 .wpcf7-submit:hover, .ie8 input[type="submit"]:hover {
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; // first!
filter: alpha(opacity=90);					// second!
}

body div.header-content a.btn, body div.header-content a.btn:hover, body div.header-content a.btn:visited {
	color: white;
}

.gf_browser_ie.gform_wrapper div.gform_footer > input.button {
	padding: 10px 14px;
}

body a.btn, body a:visited.btn {
	/*    color: #333333;*/
}


.btn:hover, a.btn:hover, body .btn:hover, body a.btn:hover, .main .prime-page a.btn:hover, .main .post a.btn:hover, .wpcf7-submit:hover, input[type="submit"]:hover {
	text-decoration: none;
	color: white;
}

.btn:focus {
	outline: 1px dotted #666;
}

.btn.primary, .main a.btn.primary {
	color: #ffffff;
	background-color: #0064cd;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
	background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
	background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
	background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
	background-image: -o-linear-gradient(top, #049cdb, #0064cd);
	background-image: linear-gradient(top, #049cdb, #0064cd);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#049cdb', endColorstr = '#0064cd', GradientType = 0);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #0064cd #0064cd #003f81;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn:active {
	-webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.15);
	-moz-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.15);
	box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.15);
}

.btn.disabled {
	cursor: default;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	filter: alpha(opacity = 65);
	-khtml-opacity: 0.65;
	-moz-opacity: 0.65;
	opacity: 0.65;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.btn[disabled] {
	cursor: default;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	filter: alpha(opacity = 65);
	-khtml-opacity: 0.65;
	-moz-opacity: 0.65;
	opacity: 0.65;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.btn.large, a.btn.large:hover, .main .post a.btn.large:hover, .main .prime-page a.btn.large:hover {
	font-size: 18px;
	line-height: normal;
	padding: 16px 28px 17px 28px;
	/*    -webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;*/
}

.btn.small, a.btn.small, a.btn.small:hover, .main .post a.btn.small, .main .prime-page a.btn.small:hover {
	padding: 8px 10px 8px 10px;
	margin: 0 8px 13px 0;
	font-size: 11px;
}

:root .alert-message, :root .btn {
	/*    border-radius: 0 \0;*/
}

button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* Tabs */

.tabs, .pills {
	margin: 0 0 0 0;
	padding: 0;
	list-style: none;
	zoom: 1;
}

.tabs:before,
.pills:before,
.tabs:after,
.pills:after {
	display: table;
	content: "";
	zoom: 1;
	*display: inline;
}

.tabs:after, .pills:after {
	clear: both;
}

.tabs > li:first-child {
	background: none;
	padding-left: 0;
}

.tabs > li, .pills > li {
	float: left;
	padding-left: 0px;
	padding-right: 0px;

}

.tabs > li.active, .tabs > li.right-of-active {
	background: none;
}

.tabs > li > a, .pills > li > a {
	display: block;
}

ul.tabs, .prime-post ul.tabs {
	float: left;
	width: 100%;
	/*    border-bottom: 1px solid #ddd;*/
	padding-left: 0;
}

.tabs > li {
	position: relative;
	top: 0;
}

.main .tabs > li > a, .tabs > li > a, body .main .tabs > li > a, body .tabs > li > a {

	background-color: #6299C5;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));

	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);

	padding: 11px 19px;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	color: white;
	font-size: 13px;
	line-height: normal;

	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;

	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;

	font-weight: bold;
	/*    border-bottom: none;*/

	margin-right: 3px;
	margin-bottom: -1px;
	text-decoration: none;
}

.main .tabs > li > a:hover, .tabs > li > a:hover {
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2), 0px 0px 8px rgba(255,255,255,.9);

}

.main .tabs > li.active > a:hover, .tabs > li.active > a:hover {
	text-decoration: none;
}

.main .tabs > li.active > a, .tabs > li.active > a {
	-webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.15);
	-moz-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.15);
	box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.15);
}

.ie8 .main .tabs > li.active > a, .ie8 .tabs > li.active > a {
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; // first!
filter: alpha(opacity=80);
}

.tabs .menu-dropdown, .tabs .dropdown-menu {
	top: 35px;
	border-width: 1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.tabs a.menu:after, .tabs .dropdown-toggle:after {
	border-top-color: #999;
	margin-top: 15px;
	margin-left: 5px;
}

.tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
	border-color: #999;
}

.tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
	border-top-color: #555;
}

.tab-content {
	background: white;
	margin-bottom: 1em;
	clear: both;
}

.tab-content > div {
	padding: 20px 15px 2px 15px;
	border-top: none;
	margin-top: 0;
}

.tab-content > div, .pill-content > div {
	visibility: hidden;
	display: block;
	opacity: 0;
	height: 0;
	width: auto;
	padding: 0;
	overflow: hidden;
	padding-left: 13px;
	padding-right: 13px;
	-webkit-transition: opacity 1s linear;
	-moz-transition: opacity 1s linear;
	-ms-transition: opacity 1s linear;
	-o-transition: opacity 1s linear;
	transition: opacity 1s linear;
	border-radius: 0 0 4px 4px;
}

.tab-content {
	border: 1px solid #ddd;
	/*    border-top: none;*/
	height: auto;
	overflow: hidden;
	border-radius: 0 0 4px 4px;
}

.tab-content > div.active {
	visibility: visible;
	height: auto;
	opacity: 1;
	padding: 20px 15px 2px 15px;
	margin-top: 0;
}

/* Alerts */

.close, .main a.close, .main a.close:hover {
	float: right;
	color: black;
	font-size: 24px;
	margin-top:-2px;
	font-weight: bold;
	line-height: 17.5px;
	text-shadow: 0 1px 0 #ffffff;
	filter: alpha(opacity = 20);
	-khtml-opacity: 0.2;
	-moz-opacity: 0.2;
	opacity: 0.2;
	border: none;
	text-decoration: none;
}

.close:hover, .main a.close:hover {
	color: #000000;
	text-decoration: none;
	filter: alpha(opacity = 40);
	-khtml-opacity: 0.4;
	-moz-opacity: 0.4;
	opacity: 0.4;
	background: none;
}

.alert-message {
	position: relative;
	margin-bottom: 18px;
	background-color: #ffaa00;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	padding: 11px 19px 12px 19px;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	color: white;
	font-size: 13px;
	line-height: 1.5em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
}
html body div.alert-message.alert-shortcode a,
html body div.alert-message.alert-shortcode a:hover,
html body div.alert-message.alert-shortcode a:visited {
	color: white;
}

.alert-message .close {
	*margin-top: 3px; /* IE7 spacing */
}

div.alert-message.alert-shortcode {

}

.alert-message h5 {
	line-height: 18px;
}

.alert-message p:first-child {
	margin-top: 0;
}

.alert-message div {
	margin-top: 5px;
	margin-bottom: 2px;
	line-height: 28px;
}

.alert-message .btn {
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
	margin-bottom: 0;
	margin-top: 0;
}

.alert-message.block-message {
	background-image: none;
	background-color: #fdf5d9;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	padding: 14px;
	border-color: #fceec1;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.alert-message.block-message ul, .alert-message.block-message p {
	margin-right: 30px;
}

.alert-message.block-message ul {
	margin-bottom: 0;
}

.alert-message.block-message li {
	color: #404040;
}

.alert-message.block-message .alert-actions {
	margin-top: 5px;
}

.alert-message.block-message, .alert-message.block-message:hover {
	color: #404040;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.alert-message.block-message.error {
	background-color: #fddfde;
	border-color: #fbc7c6;
}

.alert-message.block-message.success {
	background-color: #d1eed1;
	border-color: #bfe7bf;
}

.alert-message.block-message.info {
	background-color: #ddf4fb;
	border-color: #c6edf9;
}

.alert-message .alert-actions a.btn {
	color: black !important;
}

/* Dividers */


.ie8 .main div.divider, .ie8 .main div#subheader div.divider {
	/*	border-bottom: 1px solid #eee;*/
}

/*.main div.prime-page div.divider, .main.has-sidebar div.divider, .main.has-sidebar div.prime-page > div.divider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
    border-bottom: 1px dotted #ddd;
}
*/
div.divider {
	height: 3px;
	border-top: 1px solid #E5E5E5;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	background: #F8F8F8;
	background: rgba(0, 0, 0, 0.02);
	/*    margin-top: 12px;
		margin-bottom:9px;*/
	display: block;
	/*    background: white;*/
	/*    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);*/
	border-bottom: none;
	width: 1280px;
	margin-left: -50px;
	margin-bottom: -4px;
}

.ie8 .main div.prime-page div.divider, .ie8 .main.has-sidebar div.divider, .ie8 .main.has-sidebar div.prime-page > div.divider, .ie8 .main div.prime-page > div.divider, .ie8 .main div#subheader div.divider {
	/*    border-bottom: 1px solid #eee;*/
}

/* Accordion */

.collapse {
	-webkit-transition: height 0.35s ease;
	-moz-transition: height 0.35s ease;
	-ms-transition: height 0.35s ease;
	-o-transition: height 0.35s ease;
	transition: height 0.35s ease;
	position: relative;
	overflow: hidden;
	height: 0;
}
.collapse.in {
	height: auto;
}
.accordion {
	margin-top: 2px;
	margin-bottom: 18px;
}
.accordion-group {
	margin-bottom: 2px;
	/*    border: 1px solid #e5e5e5;*/
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.accordion-heading {
	border-bottom: 0;
	position: relative;

}
.accordion-heading .accordion-toggle {
	display: block;
	padding: 10px 15px 10px 15px;
}
.accordion-inner {
	padding: 20px 15px 0 15px;
	/*margin-bottom: 1px;*/
	border: 1px solid #E5E5E5;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-top: none;
	border-radius: 0 0 4px 4px;
}

.accordion-body {



	/*	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);*/
}

a.accordion-toggle, a.accordion-toggle:visited {
	font-weight: bold;
	background: #6299C5;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	color: white;
	font-size: 13px;

	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);

	border-radius: 4px 4px 0 0;
	text-decoration: none;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;
}

a.accordion-toggle:hover {
	text-shadow: 0 -1px rgba(0, 0, 0, 0.2), 0px 0px 8px rgba(255,255,255,.9);
	color: white;
	text-decoration: none;
}

a.accordion-toggle > span {
	margin-left: 15px;
}
a.accordion-toggle.closed {
	border-radius: 4px;
}
html.touch a.accordion-toggle:hover {
	text-decoration: none;
}
i.toggle-icon {
	display: block;
	position: absolute;
	left: 14px;
}

/* Gallery */

.prime-gallery {
	display: inline-block;
	width: 100%;
}

.prime-gallery a {
	cursor: pointer;
}

/*.prime-gallery */
a.image-link {
	position:relative;
	display:inline-block;
	/*overflow: hidden;*/
	margin-right: 18px;
	margin-bottom: 18px;
	/*    border: 4px solid #eee;*/
	transition: border 0.2s;
	-moz-transition: border 0.2s;
	-webkit-transition: border 0.2s;
	-o-transition: border 0.2s;
}

div.prime-gallery a.image-link img {
	margin: 0;
	border-radius: 0;
	/*	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);*/
}

div.prime-gallery.single-image > a.image-link {
	margin-bottom: 0;
	margin-right: 0;
}

.ie8 article.item, .ie8 a.image-link {
	overflow: hidden;
}

.prime-gallery a.image-link.no-frame span.image-overlay {
	bottom: 0;
}

.prime-gallery a.image-link.no-frame img {
	/*    border-radius: 4px;*/
	/*    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);*/
}

html.no-touch a.image-link {
	transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
}

a.image-link {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

html.no-touch a.image-link:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #0079ff;
}

a.image-link.no-frame {
	border: 0;
}

a.image-link.no-frame span.image-overlay {
	top: 0;
	left: 0;
	bottom: 5px;
	right: 0;
}

/*html.no-touch .prime-gallery a.image-link */
html.no-touch span.image-overlay {
	position: absolute;
	margin: 0;
	/*    top:-4px;
		left:-4px;
		right: -4px;
		bottom: -4px;*/
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	/*	border-width: 4px;*/
	border-style: solid;
	/*    border: 4px solid #ff8000;*/
	background: rgba(255, 255, 255, 0.75);
	opacity: 0;
	border-radius: 4px;

}

html.no-touch.ie8 span.image-overlay {
	display: none;
	visibility: collapse;
}

/*html.no-touch .prime-gallery */
html.no-touch a.image-link:hover span.image-overlay {
	opacity: 1;
}

html.no-touch.ie8 a.image-link:hover span.image-overlay {
	display: block;
	visibility: visible;
}

/*.prime-gallery */
a.image-link span.overlay-thumbnail {
	position: absolute;
	top: 40px;
	left: -40px;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: white;
	/*    background: #ff8000;*/
	color: #333;
	font-size: 22px;
	text-align: center;
	opacity: 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/*.prime-gallery */
a.image-link span.overlay-thumbnail i {
	line-height: 40px;
}

.prime-gallery a.desktop-row {
	margin-right: 0;
}

/* Drop Cap */

span.dropcap {
	display: block;
	float: left;
	font-size: 40px;
	line-height: 34px;
	margin: 2px 8px 0 0;
}

span.dropcap.dropcap-circle {
	margin-top: 5px;
	color: white;
	background-color: #444;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: none;
	-ms-border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-o-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	padding: 5px 10px 9px 10px;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
}

/* Contact Form */

form.wpcf7-form ul {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

form.wpcf7-form ul li:first-child {
	padding-top: 0;
}

form.wpcf7-form ul br {
	display: none;
	visibility: collapse;
}

form.wpcf7-form  ul input {
	float: none;
	margin-bottom: 6px;
}

form.wpcf7-form  ul textarea {
	height: 200px;
	width: 97.5%;
	margin-bottom: 17px;
}

form.wpcf7-form  ul label {
	font-weight: bold;
	text-align: left;
	float: none;
	display: block;
	padding-top: 6px;
	padding-bottom: 6px;
}

form.wpcf7-form  ul input[type="submit"] {
	font-weight: bold;
	display: inline-block;
}

form.wpcf7-form ul p {
	display: inline-block;
	margin-left: 4px;
}

/* Styled Table */
div.styled-table {
	margin-top: 5px;
	display: inline-block;
	width: 100%;
}

div.styled-table > table {
	width:100%;
	text-align: left;
	white-space: normal;
}

div.styled-table > table > thead {
	/*    background: #fafafa;
		border-bottom: 2px solid #DDD;
		border-top: 1px solid #DDD;*/


}


div.styled-table > table > thead > tr {



}


div.styled-table > table > thead > tr > th {
	padding: 10px;
	text-align: left;

	margin-top: 10px;
	background-color: #444;
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));

	border: 1px solid rgba(0, 0, 0, 0.2);
	/*	border: 1px solid black;*/
	border-bottom: none;

	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
	/*	padding: 0;*/
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
	color: white;
}

/*div.styled-table > table > tbody > tr > th {
	border-left: ;
}*/

/*div.styled-table > table > thead > tr > th:first-child {
	-ms-border-radius: 4px 0 0 0;
	-moz-border-radius: 4px 0 0 0;
	-o-border-radius: 4px 0 0 0;
	-webkit-border-radius: 4px 0 0 0;
	border-radius: 4px 0 0 0;
}

div.styled-table > table > thead > tr > th:last-child {
	-ms-border-radius: 0 4px 0 0;
	-moz-border-radius: 0 4px 0 0;
	-o-border-radius: 0 4px 0 0;
	-webkit-border-radius: 0 4px 0 0;
	border-radius: 0 4px 0 0;
}*/

div.styled-table > table td {
	padding: 10px;
}

div.styled-table > table tbody {
	margin-top: 3px;
}

div.styled-table > table tbody tr {
	border: 1px solid #f0f0f0;
	border-top: none;
	background: transparent;
}

div.styled-table > table tfoot {
	font-size: 0.9em;
}

/* Force table to not be like a table anymore */
div.styled-table.responsive-table table,
div.styled-table.responsive-table thead,
div.styled-table.responsive-table tbody,
div.styled-table.responsive-table th,
div.styled-table.responsive-table td,
div.styled-table.responsive-table tr{
	display: block;
}
div.styled-table.responsive-table thead tr {
	position: absolute;
	top: -9999px;
	left: -9999px;
}
div.styled-table.responsive-table tr { border: 1px solid #ccc; }
div.styled-table.responsive-table td {
	/* Behave  like a "row" */
	border: none;
	border-bottom: 1px solid #eee;
	position: relative;
	padding-left: 50%;
}
div.styled-table.responsive-table td:before {
	/* Now like a table header */
	position: absolute;
	/* Top/left values mimic padding */
	top: 6px;
	left: 6px;
	width: 45%;
	padding-right: 10px;
	white-space: nowrap;
}

/* Blockquote */

blockquote, span.pullquote {
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 1.7em;
	font-weight: 300;
	font-style: italic;
	line-height: 1.5em;
	/*    border-left: 5px solid #ff8000;*/
	/*    color: #ff8000;*/
}

blockquote {
	border-left: 4px solid #f0f0f0;
	padding-left: 1em;
	margin-left: 1em;
}

blockquote > p {
	margin: 0;
	position: relative;
}

span.pullquote {
	margin-top: 15px;
	margin-bottom: 16px;
	font-size: 1.7em;
	font-weight: 300;
	font-style: italic;
}

span.pullquote.left {
	float: left;
	width: 220px;
	margin-left: 0;
	padding-left: 0;
	margin-right: 1em;
}

span.pullquote.right {
	float: right;
	width: 220px;
	margin-left: 40px;
	margin-right: 0;
}

/* Video Embed Shortcode */

div.video-embed-shortcode, div#map_canvas {
	/*    border: 4px solid #eee;
		transition: border 0.2s;
		-moz-transition: border 0.2s;
		-webkit-transition: border 0.2s;
		-o-transition: border 0.2s;*/
}
div.embed-widget-text {
	margin-top: 15px;
}

div.video-embed-shortcode:hover, div#map_canvas:hover {
	/*    border-color: #ff8000;*/
}

div.map-wrapper {
	position: relative;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.18);
}

div.map-wrapper.full {
	margin-left: -45px;
	margin-right: -45px;
	border-top: none;
	margin-top:-40px;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}


div.video-embed-shortcode.autosize {
	width: 99%;
}

html.mozilla div.video-embed-shortcode.autosize {
	height: 99%;
}

div.video-embed-shortcode > iframe {
	width: 100%;
	height: 100%;
}

/* Recent Posts Shortcode */

div.recent-projects-carousel > ul > li {
	height:auto;
	list-style:none;
	float: left;
	display:block;
	padding-bottom:10px;
}

.recent-posts-shortcode {
	/*    margin: 2em 0 0 0;*/
}


div.recent-posts article.item div.description p.post-meta {
	margin-top: 12px;
	margin-bottom: 0;
}

html body div.recent-posts article.item div.description p.post-meta a,
html body div.recent-posts article.item div.description p.post-meta a:visited,
html body div.recent-posts-shortcode div.preview-content p.post-meta a,
html body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html body span.categories a,
html body ul.page-numbers > li > span, ul.page-numbers > li > a.page-numbers,
html body ul.page-numbers > li > a.page-numbers:visited {
	text-decoration: none;
	color: white;
	background-color: #ff8000;
	display: inline-block;
	border-radius: 3px;
	padding: 2px 4px;
	margin-bottom: 2px;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: -1px;

	font-size: 10.5px;
	font-weight: bold;
	line-height: 14px;
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
	white-space: nowrap;
	vertical-align: baseline;

	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;
}

div.recent-posts article.item div.description p.post-meta a:hover {
	opacity: 0.9;
}

div.recent-posts article.item div.description p.post-date,
div.recent-posts-shortcode.vertical div.preview-content p.post-date {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 9px;
	margin-bottom: 0;
}

div.recent-posts-shortcode.vertical div.preview-content p.post-date {
	margin-top: 3px;
}

div.recent-posts-shortcode.vertical div.preview-content p.post-meta {
	margin-top: 12px;
}

.recent-posts-item > a:first-child {
	display: block;
	margin-bottom: 13px;
}

.recent-posts-shortcode div.recent-posts-item h5 {
	margin-top: 1em;
	margin-bottom: 0;
}
/*.recent-posts-shortcode div.recent-posts-item p.post-meta {
    margin-top: 1px;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}*/

.recent-posts-shortcode div.recent-posts-item .continue-link {
	display: block;
	margin-top: 1em;
}

.recent-posts-shortcode div.recent-posts-item img.post-image {
	width: 100%;
	height: auto;
}

.recent-posts-shortcode.vertical a.image-link {
	margin: 0;
}

.recent-posts-shortcode.vertical .recent-posts-item {
	margin-bottom: 1.3em;
	margin-top: 0;
}

.recent-posts-shortcode.vertical div.recent-posts-item h5 {
	margin-top: -3px;
}

html.boxed-layout body .recent-posts-shortcode h5 > a,
html.boxed-layout body .recent-posts-shortcode h5 > a:visited {
	color: #333;
	text-decoration: none;
}

.recent-posts-shortcode.vertical div.preview-content > * {
	margin-left: 10px;
}

/* Codebox shortcode */
code,
pre {
	padding: 0 3px 2px;
	font-family: Menlo, Monaco, "Courier New", monospace;
	font-size: 12px;
	color: #333333;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
code {
	padding: 2px 4px;
	color: #d14;
	background-color: #f7f7f9;
	border: 1px solid #e1e1e8;
}
pre {
	display: block;
	padding: 8.5px;
	margin: 0 0 9px;
	font-size: 12.025px;
	line-height: 18px;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	white-space: pre;
	white-space: pre-wrap;
	word-break: break-all;
	word-wrap: break-word;
}
pre.prettyprint {
	margin-bottom: 18px;
}
pre code {
	padding: 0;
	color: inherit;
	background-color: transparent;
	border: 0;
}
/* Prettify */
.com { color: #93a1a1; }
.lit { color: #195f91; }
.pun, .opn, .clo { color: #93a1a1; }
.fun { color: #dc322f; }
.str, .atv { color: #D14; }
.kwd, .linenums .tag { color: #1e347b; }
.typ, .atn, .dec, .var { color: teal; }
.pln { color: #48484c; }

.prettyprint {
	padding: 8px;
	background-color: #f7f7f9;
	border: 1px solid #e1e1e8;
}
.prettyprint.linenums {
	-webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
	-moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
	box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
	margin: 0 0 0 33px; /* IE indents via margin-left */
	padding: 0;
}
ol.linenums li {
	padding-left: 12px;
	color: #bebec5;
	line-height: 18px;
	text-shadow: 0 1px 0 #fff;
}

ul.entypo-icon-list {
	margin: 0;
	padding: 0;
}

/* Recent Projects */
div.recent-projects {
	position: relative;

}

div.recent-projects article.item, div.recent-posts article.item {
	opacity: 1;
	margin: 0;
	margin-left: 18px;
	margin-right: 17px;
}

div.recent-projects h2, div.recent-posts h2 {
	line-height: 18px;
}

div.recent-projects div.recent-projects-carousel, div.recent-projects div.recent-posts {
	/*	box-sizing: padding-box;*/
	/*    margin-left: 0;
		padding-top: 20px;
		margin-top: -20px;
		padding-right: 20px;
		margin-right: -20px;
		min-width: 694px;*/
}

div.recent-projects article.item a.image-link > img {
	height: auto;
}

.ie8 div.recent-projects div.recent-projects-carousel {
	/*	max-height: 265px;*/
}

div.recent-projects-divider, div.recent-projects-mobile-divider {
	position:absolute;
	width: 18px;
	/*	background: white;*/
	top: 0;
	bottom: 0;
	left: 23.404255317%;
	/*	margin-right: -4px;*/
	z-index: 100;


	background-image: -webkit-gradient(
			linear, left top, right top, from(rgba(255,255,255,1)),
			to(rgba(255,255,255,0))
	);

	background-image: -moz-linear-gradient(left,
	rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 95%
	);

	/* approximately a 33% opacity on blue */
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,
	startColorstr=#FFFFFFFF, endColorstr=#00FFFFFF
	);

	/* IE8 uses -ms-filter for whatever reason... */
	-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,
	startColorstr=#FFFFFFFF, endColorstr=#00FFFFFF
	);
}

div.recent-projects-mobile-divider {
	left: auto;
	right: 0;
	display: none;
	visibility: collapse;

	background-image: -webkit-gradient(
			linear, left top, right top, from(rgba(255,255,255,0)),
			to(rgba(255,255,255,1))
	);

	background-image: -moz-linear-gradient(left,
	rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%
	);

	/* approximately a 33% opacity on blue */
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,
	startColorstr=#00FFFFFF, endColorstr=#FFFFFFFF
	);

	/* IE8 uses -ms-filter for whatever reason... */
	-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,
	startColorstr=#00FFFFFF, endColorstr=#FFFFFFFF
	);
}

div.recent-projects div.rpc-paginators {
	margin-top: 0.8em;
	display: inline-block;
	/*position: absolute;*/
	/*left: 1px;*/
	/*bottom: 18px;*/
	display: none;
	visibility: collapse;
}

html body div.recent-projects div.rpc-paginators a {
	text-align: center;
	display: inline-block;
	background: #aaa;
	background: rgba(0, 0, 0, 0.225);
	color: white;
	width: 20px;
	height: 20px;
	margin-right: -1px;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	padding-top: 1px;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);

	-webkit-transition: 0.2s linear all;
	-moz-transition: 0.2s linear all;
	-ms-transition: 0.2s linear all;
	-o-transition: 0.2s linear all;
	transition: 0.2s linear all;



}

html body div.recent-projects div.rpc-paginators a:hover {
	background: rgba(0, 0, 0, 0.3);
}

html body div.recent-projects div.rpc-paginators a:active {
	background: rgba(0, 0, 0, 0.4);
}

html body div.recent-projects div.rpc-paginators a.disabled {
	background: rgba(0, 0, 0, 0.2);
	cursor: not-allowed;
}

div.recent-projects div.rpc-paginators a.rpc-prev i {
	padding-right: 1px;
}

div.recent-projects div.rpc-paginators a.rpc-next i {
	padding-left: 1px;
}


/*.ie8 div.recent-projects-carousel, .ie8 div.recent-posts-carousel {
	position: relative;
}*/

.ie8 div.recent-projects {
	overflow: hidden;
	min-height: 267px;
}

.ie8 div.recent-projects.recent-posts {
	min-height: 374px;
}

/*.ie8 div.recent-projects-carousel > ul > li, .ie8 div.recent-posts-carousel > ul > li {
	list-style: none;
	float: left;
}*/

/*.ie8 div.recent-projects-carousel > ul, .ie8 div.recent-posts-carousel > ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	width: 10000px;
}*/
/*
.ie8 div.recent-projects div.rpc-paginators {
	display: none;
	visibility: collapse;
}
*/
/* Recent Posts */

div.recent-posts article.item div.description h5 {
	margin-top: 9px;
	margin-bottom: 2px;
}

html.boxed-layout body div.recent-posts article.item div.description h5 a,
html.boxed-layout body div.recent-posts article.item div.description h5 a:visited {
	color: #333;
	text-decoration: none;
}

div.recent-posts article.item div.description h5 a:hover {
	/*    color: #ff8000;*/
}

div.recent-posts article.item div.description a, div.recent-posts  article.item div.description a:visited{
	/*    color: #ff8000;*/
	/*    text-decoration: underline;*/
}

div.recent-posts article.item {
	width: 100%;
}


/* Pricing Table */

div.pricing-table {
	/*    padding-top: 25px;*/
	text-shadow: rgba(255, 255, 255, 0.796875) 0px 1px 0px;


}

div.pricing-table.full {
	margin-top: -40px;
	margin-left: -46px;
	margin-right: -48px;
}

div.pricing-table.full div.plan {
	border-top: none;
}

div.plan {
	position: relative;
	z-index: 1;
	border-top: 1px solid #E5E5E5;
	border-top:1px solid rgba(0, 0, 0, 0.1);
	border-right: 1px solid #E5E5E5;
	border-right:1px solid rgba(0, 0, 0, 0.1);
}

div.plan:first-child {
	/*	border-left:none;*/
	border-left: 1px solid #E5E5E5;
	border-left:1px solid rgba(0, 0, 0, 0.1);
}


div.plan > div.inner {
	/*    margin-right: 1px;*/
	border-radius: 4px;
}
div.plan.featured {
	z-index: 2!important;
	background: #F3F5FA;
}

div.plan.featured span.featured-msg {
	position: absolute;
	display: block;
	top: -2px;
	left: 0;
	right: 0;
	text-align: center;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2);
}

.ie9 div.plan.featured span.featured-msg {
	top: -8px;
}

/*div.plan.featured div.plan-header div.price {
    padding-top: 28px;
}

.ie9 div.plan.featured div.plan-header div.price {
	padding-top: 25px;
}*/

div.pricing-table  > div.plan.featured > div.inner > ul > li:last-child {
	/*    padding-bottom: 30px;*/
}

div.plan.featured > div.inner {
	/*box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);*/
	/*margin: -21px -4px 0px -1px;*/
}

div.pricing-table > div.plan {
	float: left;
	display: block;
	text-align:center;
	border-bottom: 1px solid #E5E5E5;
	border-bottom:1px solid rgba(0, 0, 0, 0.1);
}
div.pricing-table  > div.plan > div.inner > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 3px solid #f8f8f8;
	border-bottom: 3px solid rgba(0, 0, 0, 0.025);

	/*    background: #fafafa;*/
	/*    border-radius: 0 0 4px 4px;*/
}
div.pricing-table  > div.plan > div.inner > ul  > li {
	padding: 10px 0;
	/*    border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
	/*    border-right: 1px solid rgba(0, 0, 0, 0.05);*/
	/*    border-left: 1px solid rgba(0, 0, 0, 0.05);*/
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	/*
		background-image: -webkit-gradient(
			linear, left top, left bottom, from(rgba(220,220,220,0.05)),
			to(rgba(200,200,200,0.1))
		);

		background-image: -moz-linear-gradient(
			rgba(220, 220, 220, 0.05) 0%, rgba(200, 200, 200, 0.1) 100%
		);*/

	text-align: left;
	padding: 10px 13%;
}

div.pricing-table  > div.plan > div.inner > ul  > li:first-child {
	border-top:none;
}

.ie8 div.pricing-table  > div.plan > div.inner > ul  > li {
	/*	border-bottom: 1px solid #eee;
		border-left: 1px solid #eee;
		border-right: 1px solid #eee;*/
	border-top: 1px solid #eee;
}

.ie8 div.pricing-table  > div.plan > div.inner > ul  > li:first-child {
	border-top: none;
}


div.pricing-table  > div.plan > div.inner > ul  > li ul {
	padding-top: 5px;
	padding-left: 16px;
	font-size: 11px;
}

div.pricing-table  > div.plan > div.inner > ul  > li:first-child {

	/*    border-top: 1px solid white;*/
	/*    padding-top: 20px;*/
	/*    background: #fafafa;*/
}

div.pricing-table  > div.plan > div.inner > ul  > li:last-child {
	/*    border-radius: 0 0 4px 4px;*/
}

div.pricing-table  > div.plan > div.inner > ul  > li:nth-child(odd) {
	/*background: #fafafa;*/
}
div.pricing-table  > div.plan > div.inner > ul  > li:nth-child(even) {
	/*background: #f5f5f5;*/
}

div.plan-header {
	/*    color: white;*/
	text-shadow: rgba(255, 255, 255, 0.796875) 0px 1px 0px;
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.025), transparent 44%, rgba(0, 0, 0, 0.025) 45%, transparent);
	background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.025), transparent 44%, rgba(0, 0, 0, 0.025) 45%, transparent);
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.025), transparent 44%, rgba(0, 0, 0, 0.025) 45%, transparent);
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.025), transparent 44%, rgba(0, 0, 0, 0.025) 45%, transparent);
	background-image: linear-gradient(top, rgba(0, 0, 0, 0.025), transparent 44%, rgba(0, 0, 0, 0.025) 45%, transparent);
	border-bottom: 1px solid #E5E5E5;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);


	/*    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);*/
}
div.plan-header h3 {
	color: #191919;
	letter-spacing: -1px;
	font-size: 20px;
	padding: 13px 0 2px 0;
	/*    color: white;*/
	font-weight: 400;
	border-radius: 4px 4px 0 0;

	/*    border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
	margin-bottom: 0;
	margin-top: 0;

	/*    background-image: -webkit-gradient(
			linear, left top, left bottom, from(rgba(80,80,80,0.2)),
			to(rgba(120,120,120,0.2))
		);*/

	/* mozilla example - FF3.6+ */
	/*    background-image: -moz-linear-gradient(
			rgba(80, 80, 80, 0.2) 0%, rgba(120, 120, 120, 0.2) 100%
		);*/
}
.ie8 div.plan-header h3 {
	/*	border-bottom: 1px solid white;*/
}
div.plan-header div.price {
	position: relative;
	display: block;
	letter-spacing: -1px;
	/*    border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
	color: #191919;
	font-weight: 300;
	font-size: 55px;
	line-height: 0.8em;
	/*    padding-top: 3px;*/
	vertical-align: text-bottom;
	text-shadow: rgba(255, 255, 255, 0.796875) 0px 1px 0px;

}

.ie9 div.plan-header div.price {
	padding-top: 10px;
}

div.plan-header div.price > span {
	font-size: 13px;
}
div.plan-header div.price > span.symbol {
	vertical-align: text-top;
}
.ie9 div.plan-header div.price > span.symbol {
	padding-top: 10px;
	line-height: 10px;
	vertical-align: middle;

	/*	padding-top: 5px;*/
}

div.period {
	line-height: 3em;
	color: #b6b6b6;
}

div.plan-action {
	/*    border: 1px solid rgba(0, 0, 0, 0.05);*/
	border-top: none;
	border-bottom: none;
	padding: 6px 13% 20px 13%;
	/*    background: #fafafa;*/
	/*    background-image: -webkit-gradient(
			linear, left top, left center, from(rgba(180,180,180,0.2)),
			to(rgba(255,255,255,0.2))
		);

		background-image: -moz-linear-gradient(
			rgba(180, 180, 180, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%
		);*/
}
.ie8 div.plan-action {
	/*	border-left: 1px solid #eee;
		border-right: 1px solid #eee;*/
}

div.plan-action > a.btn {
	width: 100%;
	margin: 0 1px;
	/*text-transform: uppercase;*/
}

div.pricing-table.columns-1 > div.plan {
	width: 100%;
}
div.pricing-table.columns-2 > div.plan {
	width: 50%;
}
div.pricing-table.columns-3 > div.plan {
	width: 33.4%;
}
div.pricing-table.columns-3 > div.plan {
	width: 33.333333333333333%;
}
div.pricing-table.full.columns-3 > div.plan:first-child {
	width: 33.333333333333333%;
}
div.pricing-table.columns-4 > div.plan {
	width: 25%;
}
div.pricing-table.columns-5 > div.plan {
	width: 20%;
}
div.pricing-table.columns-6 > div.plan {
	width: 16.6666666666666666%;
}

/* Flexslider */

/* Browser Resets */
.flex-container a:active,
.flexslider a:active {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {width: 100%; margin: 0; padding: 0;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
	max-width: 100%;
	display: block;
	/*    border-radius: 4px;*/
	margin-bottom: 0;
}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

/* Ensure no padding or margin is set on the main ul*/
.flexslider > ul.slides {
	padding: 0;
	margin: 0;
	overflow: hidden;
}

/* FlexSlider Theme
*********************************/
.flexslider {position: relative; zoom: 1;}
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Frontpage slider preloader */
div.frontpage-slider-wrapper {
	background: white;
	position: relative;
}

html.touch div#frontpageslider-container {
	width:100%;
	margin:0;
}

html.touch div#frontpageslider-container >.grid_12 {
	width:100%;
	margin:0;
}

div.flexslider-shortcode {
	/*    border-radius: 5px;*/
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

div#frontpageslider-container div.flexslider-shortcode {
	/*	box-shadow: inset 0 1px rgba(0, 0, 0, 0.3), inset 0 2px rgba(255, 255, 255, 0.1)*/
	/*	box-shadow: none;*/
	box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

div#frontpageslider-container div.flexslider-shortcode ul li img {
	/*	border-radius: 4px 4px 0 0;*/
}

div.flexslider-shortcode ul.slider-arrows {
	opacity: 1;
}

/* Remove tap on android*/
.flexslider li {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.flex-caption {
	width: auto;
	position: absolute;
	left: 45px;
	top: 17px;
	background: black;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
	line-height: 18px;
	border-radius: 4px;
}

.ie8 .flex-caption {
	padding-top: 3px;
}

.flex-caption > div.caption {
	display: inline-block;
	color: white;
	font-size: 18px;
	font-weight: bold;
	padding: 13px 13px 8px 13px;
}

.flex-caption > div.subcaption > p {
	margin: 0;
}

.flex-caption > div.subcaption {
	position: relative;
	/*    font-weight: 500;*/
	display: block;
	color: #7d7d7d;
	padding: 0 14px 11px 14px;
	font-size: 13px;
}

.flex-caption.top-left {
	top: 45px;
	left: 45px;
	bottom: auto;
	right: auto;
}

.flex-caption.top-right {
	top: 45px;
	right: 45px;
	bottom: auto;
	left: auto;
}

.flex-caption.bottom-right {
	bottom: 45px;
	right:45px;
	top: auto;
	left: auto;
}

.flex-caption.bottom-left {
	top: auto;
	right: auto;
	left: 45px;
	bottom: 45px;
}

.flex-caption.center-left {
	top: 50%;
	right: auto;
	left: 45px;
	bottom: auto;
	margin-top: -37px;
}

.flex-caption.center-right {
	top: 50%;
	right: 45px;
	left: auto;
	bottom: auto;
	margin-top: -37px;
}

.flex-caption.top-right > div, .flex-caption.bottom-right > div {
	float: right;
}

ul.slider-arrows {
	display: none;
	visibility: collapse;
	margin: 0;
	padding: 0;
	height: 0;
	list-style: none;
}

div.arrow-left, div.arrow-right {
	position: absolute;
	bottom: -40px;
	/*	margin-top: -21px;*/
}

div.arrow-left {
	left: 0;
}

div.arrow-right {
	right: 0;
}

ul.slider-arrows li {
	display: inline-block;
	/*    display: block;*/
	/*	position: absolute;
		top: 50%;*/
}

ul.slider-arrows li i {
	background: transparent;
	color: black;
	font-size: 21px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	left: 6px;
}

ul.slider-arrows li span.arrow-wrapper.right-arrow-wrapper i {
	left: 9px;
}

span.arrow-wrapper {
	display: block;
	position: relative;
	/*	margin-right: 4px;*/
	/*	border: 3px solid white;*/
	border-radius: 0 4px 4px 0;
	/*	background: black;*/
	/*    background: rgba(0, 0, 0, 0.85);*/
	position: relative;
	width: 41px;
	height: 41px;
	/*	opacity: 0.5;*/
	-webkit-transition: 0.2s linear all;
	-moz-transition: 0.2s linear all;
	-ms-transition: 0.2s linear all;
	-o-transition: 0.2s linear all;
	transition: 0.2s linear all;
	/*	opacity: 0;	*/
}

span.arrow-wrapper.right-arrow-wrapper {
	border-radius: 4px 0 0 4px;

}

div.flexslider:hover span.arrow-wrapper {
	/*	opacity: 1;*/
}

/* Control Nav */

div.intro, div.frontpage-slider-wrapper,
div#frontpageslider-container, div.flexslider,
ol.flex-control-nav {
	overflow: visible;
}

ol.flex-control-nav {
	/*	background: red;*/
}

.flex-control-nav {
	position: absolute;
	background: white;
	margin-bottom: 0;
	text-align: center;
	margin-left:0;
	opacity: 0;
	vertical-align:middle;
	height:10px;
	bottom: -9px;
	right: 63px;
	padding: 12px 6px 18px 6px;
	border-radius: 4px 4px 0 0;
	z-index: 98;
}

.ie8 .flex-control-nav {
	padding-left: 16px;
	padding-right: 16px;
}

.flex-control-nav:before, .flex-control-nav:after, div#nav:before, div#nav:after {
	display: block;
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 6px;
	position: absolute;
	top: 6px;
	content:' ';
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	filter: progid:DXImageTransform.Microsoft.Matrix(/
	                     M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476, sizingMethod='auto expand');
	zoom: 1;
}

.flex-control-nav:before, div#nav:before {
	left: -19px;
	z-index: -1;
}
.flex-control-nav:before {
	left: -18px;
}

.flex-control-nav:after, div#nav:after {
	right: -19px;
	z-index: -1;
}
.flex-control-nav:after {
	right: -18px;
}

.ie8 .flex-control-nav:before,
.ie8 div#nav:before,
.ie8 .flex-control-nav:after,
.ie8 div#nav:after  {
	display: none;
	visibility: collapse;
}

.ie8 div#nav {
	padding-left: 8px;
	padding-right: 10px;
}

.flex-control-nav li {margin: 0; display: inline-block; zoom: 1; *display: inline; float: left;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav li a, div#nav-pager a {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	display: block;
	background: #d2d2d2;
	cursor: pointer;
	text-indent: -9999px;
	margin-left: 8px;
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;
}

html.msie .flex-control-nav li a {
	margin-top: 1px;
}

.flex-control-nav li:first-child a {
	margin-left: 0;
}

.flex-control-nav li a:hover, div#nav-pager > a:hover {
	background: #bbb;
}

.flex-control-nav li a.active, div#nav-pager a.activeSlide {
	background: #777;
}

.flex-control-nav li a.icon-play, .flex-control-nav li a.icon-pause,
html.msie .flex-control-nav li a.icon-play, html.msie .flex-control-nav li a.icon-pause {
	color: #d2d2d2;
	border-radius: 0;
	background: transparent !important;
	text-indent: 0;
	margin-top: -5px;
	margin-right: 1px;
	-webkit-transition: 0.2s linear all;
	-moz-transition: 0.2s linear all;
	-ms-transition: 0.2s linear all;
	-o-transition: 0.2s linear all;
	transition: 0.2s linear all;
	opacity: 1;
	text-decoration: none;
}

html.msie .flex-control-nav li a.icon-pause {
	margin-right: 3px;
}

div#nav > div.nav-controls > a#next, div#nav > div.nav-controls > a#pause {
	display: inline-block;
	color: #d2d2d2;
	background: transparent;
	-webkit-transition: 0.2s linear all;
	-moz-transition: 0.2s linear all;
	-ms-transition: 0.2s linear all;
	-o-transition: 0.2s linear all;
	transition: 0.2s linear all;
	opacity: 1;
	cursor: pointer;
	padding-left: 7px;
	padding-right: 1px;
	padding-top: 0;
}

div#nav > div.nav-controls > a#next > i, div#nav > div.nav-controls > a#pause > i {
	display: inline-block;
	/*	padding-top: 2px;*/
}

/*div#nav > a#next {
	padding-right: 5px;
}*/


.flex-control-nav li a.icon-play:hover, .flex-control-nav li a.icon-pause:hover, div#nav > div.nav-controls > a#next:hover, div#nav > div.nav-controls > a#pause:hover {
	color: #bbb;
}

.flex-control-nav li a.icon-play:active, .flex-control-nav li a.icon-pause:active, div#nav > div.nav-controls > a#next:active, div#nav > div.nav-controls > a#pause:active {
	color: #777;
}

.flex-control-nav li a.icon-pause {
	margin-right: 3px;
}

.flex-control-nav li a.icon-pause.is-paused, div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #ff8000;
	color: #ff8000;
}


/* Needed since there is not animated fade in the gallery slider */
.galleryslider .flex-control-nav {
	opacity: 1;
}
.galleryslider ul.slider-arrows {
	opacity: 1;
	padding-left: 0;
}

div#frontpageslider-container, div#frontpageslider-container >.grid_12  {
	width:100%;
	margin:0;
}

/* CP Slider */

div#nav {
	width: auto;
	position: absolute;
	bottom: -5px;
	padding-top: 6px;
	padding-left: 0px;
	padding-right: 1px;
	right: 63px;
	z-index: 98;
	background: white;
	clear: both;
	height: 24px;
}

div#nav-pager {
	padding-left: 0;
	padding-right: 5px;
	display: inline-block;
	position: relative;
}

div.nav-controls {
	float: left;
	padding-top: 1px;
}

div#nav-pager a {
	display: inline-block;
	/*	position: absolute;*/
	margin-top: 6px;
	line-height: 13px;
}

html.msie div#nav-pager a {
	margin-top: 7px;
}


div.cpslider > div.slide img.fg-image.right {
	float: right;
}
div.cpslider > div.slide img.fg-image.left {
	float: left;
}
div.cpslider > div.slide > .row-fluid > div.span6.right {
	float: right;
}
div.cpslider > div.slide > .row-fluid > div.span6.left {
	float: left;
}
div.cpslider > div.slide > .row-fluid > div.span6.text-content,
div.content {
	padding:  0 45px;
	z-index: 2;
}

div.cpslider > div.slide form,
div.prime-content-slider > div.slide form {
	margin-bottom: 0;
}

div.cpslider > div.slide div.divider,
div.prime-content-slider > div.slide div.divider {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 2px;
	height: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

div.cpslider-inner-wrap, div.content-slider-wrapper {
	position: relative;
}

div.cpslider-inner-wrap > div.border, div.content-slider-inner-wrap > div.border {
	position: absolute;
	background: rgba(0, 0, 0, 0.05);
	height: 2px;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: -2px;
	z-index: 10;
}

div.content-slider-inner-wrap > div.border {
	background: rgba(0, 0, 0, 0.02);
}

div.cpslider div.wpcf7 li span.wpcf7-form-control-wrap > input,
div.prime-content-slider div.wpcf7 li span.wpcf7-form-control-wrap > input {
	width: 100%;
	margin-bottom: 8px;
}

div.cpslider div.wpcf7 li.side-by-side span.wpcf7-form-control-wrap,
div.cpslider div.wpcf7 li.side-by-side input.wpcf7-form-control.wpcf7-submit,
div.prime-content-slider div.wpcf7 li.side-by-side span.wpcf7-form-control-wrap,
div.prime-content-slider div.wpcf7 li.side-by-side input.wpcf7-form-control.wpcf7-submit {
	width: 49%;
	float: right;
}

div.cpslider div.wpcf7 li.side-by-side span.wpcf7-form-control-wrap:first-child,
div.prime-content-slider div.wpcf7 li.side-by-side span.wpcf7-form-control-wrap:first-child {
	width: 49%;
	float: left;
}

div.cpslider div.wpcf7 li.side-by-side span.wpcf7-form-control-wrap > input,
div.prime-content-slider div.wpcf7 li.side-by-side span.wpcf7-form-control-wrap > input {
	width: 100%;
	float: left;
}

div.cpslider div.wpcf7 li.stretch-submit,
div.prime-content-slider div.wpcf7 li.stretch-submit {
	padding: 0 1px;
}

div.cpslider div.wpcf7 li.stretch-submit input[type="submit"],
div.prime-content-slider div.wpcf7 li.stretch-submit input[type="submit"] {
	width: 100%;
	/*	padding-top: 10px;
		padding-bottom: 10px;*/
}

div.cpslider div.wpcf7 ul input[type="text"],
div.prime-content-slider div.wpcf7 ul input[type="text"] {
	font-size: 14px;
	line-height: 21px;
	height: 34px;
	padding-left: 10px;
	padding-right: 0;
}

div.cpslider div.wpcf7 div.wpcf7-response-output,
div.prime-content-slider div.wpcf7 div.wpcf7-response-output {
	margin: 0 1px 0 0;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.6);
	margin-top: -17px;
	border-width: 1px;
	padding-top: 10px;
	padding-bottom: 10px;
	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.3);

}

div.cpslider div.wpcf7 div.wpcf7-response-output.wpcf7-mail-sent-ok,
div.prime-content-slider div.wpcf7 div.wpcf7-response-output.wpcf7-mail-sent-ok {

	background-color: transparent;
	background-color: rgba(57, 143, 20, 0.6);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99398F14,endColorstr=#99398F14);
	zoom: 1;
	border-color: #96C085;
	color: white;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
}

div.cpslider div.wpcf7 div.wpcf7-response-output.wpcf7-validation-errors,
div.prime-content-slider div.wpcf7 div.wpcf7-response-output.wpcf7-validation-errors {
	background-color: transparent;
	background-color: rgba(247, 231, 0, 0.6);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99F7E700,endColorstr=#99F7E700);
	zoom: 1;
	color: black;
}

div.cpslider span.wpcf7-not-valid-tip,
div.prime-content-slider span.wpcf7-not-valid-tip {
	display: none;
	visibility: collapse;
}

div.cpslider input.wpcf7-not-valid,
div.prime-content-slider input.wpcf7-not-valid {
	border-color: #F7E700;
}




/* Content Slider */

div.frontpage-slider-wrapper {
	z-index: 1;
}

div.prime-content-slider > div.slide {
	width: 100%;
}

div.prime-content-slider > div.slide > div.slide-content, div.prime-content-slider > div.slide > div.slide-content > div.span12 {
	width: 100%;
	height: 100%;
}

div.prime-content-slider > div.slide > img:first-child {
	z-index: -1;
}

div.prime-content-slider a img.alignnone, div.prime-content-slider img.alignnone, div.prime-content-slider img {
	margin:0;
}

div.prime-content-slider > div.slide div.embed-wrapper {
	margin-top: 0;
}


/*-------------------------------------------------------------------------------------------------------
        Archives
-------------------------------------------------------------------------------------------------------*/

.prime-archives > h4 {
	margin: 2em 0 1em 0;
}



/*-------------------------------------------------------------------------------------------------------
        Portfolio
-------------------------------------------------------------------------------------------------------*/

div.main.portfolio-main.show-filter {
	padding-top: 0;
}

div.main.portfolio-main.show-filter div#subheader {
	padding-bottom: 0;
}

div.main.portfolio-main img {
	/*border-radius: 3px;*/
}

/*div.main.portfolio-main.show-filter div#subheader h1 {
    padding-top: 30px;
    padding-bottom: 8px;
}*/

div.main.portfolio-main.show-filter div#subheader div.divider {
	padding-top: 0;
	margin-top: 0;
	margin-bottom: 0;
	position: absolute;
	top: 70px;
	background: transparent;
}

div.main.portfolio-main.no-filter div#subheader div.divider {
	margin-bottom: -5px;
}

div.prime-portfolio {
	/*padding-top: 0;*/
	padding-bottom: 0;
	/*margin-top: 10px;*/
	margin-bottom: 0;
}

div.filter-wrapper {
	position: relative;
	padding: 0 45px;
	width: 100%;
	border-bottom: 1px solid #E5E5E5;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

ul#filters
{
	/*	display: block;*/
	margin: 0 auto;
	/*    float: right;*/
	line-height: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: middle;
}

ul#filters li {
	/*    float: left;*/
	display: inline;
	padding: 0;
	cursor: pointer;
	color: #7d7d7d;
}

ul#filters li div:hover {
	/*    color: #ff8000;*/
}

ul#filters li div {
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	/*    padding-top: 30px;*/
	padding: 20px 17px;
	float: left;
	/*    padding-left: 13px;
		padding-right: 13px;*/
	/*    padding-bottom: 24px;*/
}

.table {
	display: table;   /* Allow the centering to work */
	margin: 0 auto;
}

ul#filters li div.current {
	color: #ff8000;
}

ul#filters li div.current:hover {

}

select.filter {
	display: none;
	visibility: collapse;
}

div.prime-portfolio {
	overflow: visible;
	position: relative;
	padding-bottom: 20px;
}

div.prime-portfolio.paginated div#masonry-container{
	padding-bottom: 70px;
}


div#masonry-container {
	margin-bottom: -13px;
	margin-left: -21px;
	margin-right: -21px;
}

div#masonry-container iframe {
	width: 191px;
	height: 173px;
}


div.prime-portfolio div.paginators {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 100;
}

article.item {
	width: 191px;
	overflow: visible;
	margin: 5px 21px 24px 21px;
	padding: 0;
	opacity: 0;
	display:inline-block;
}

article.item div.description {
	margin-top: 0;
	padding-bottom: 0;
}

article.item div.description h1,
article.item div.description h2,
article.item div.description h3,
article.item div.description h4,
article.item div.description h5,
article.item div.description h6 {
	margin: 13px 0;
	line-height: 1.5em;
}

article.item div.description a, article.item div.description a:visited,
.recent-posts-shortcode h5 > a, .recent-posts-shortcode h5 > a:visited  {
	/*    text-decoration: none;*/
	transition: color 0.2s;
	-moz-transition: color 0.2s;
	-webkit-transition: color 0.2s;
	-o-transition: color 0.2s;
}

article.item div.flexslider ol.flex-control-nav {
	display: none;
	visibility: collapse;
}

article.item div.flexslider ul.slider-arrows {
	margin-bottom: 0;
	left: 15px;
	bottom: 15px;
}

article.item div.portfolio-preview-video {
	margin-bottom: 5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

article.item div.description a:hover {
	/*    color: #ff8000;*/
}

article.item div.description h2 {
	margin-bottom: 0;
}

/*article.item div.description h2 a {
    font-size: 12px;
    text-transform: uppercase;
    color: #333;
}*/
article.item div.description p {
	margin-top: 0;
}

/*article.item div.description p a {
    color: #555;
}*/

article.item a.image-link {
	margin-bottom: 0;
	-webkit-transition: all 300ms ease,-webkit-transform 0s ease;
	-moz-transition: all 300ms ease,-moz-transform 0s ease;
	-o-transition: all 300ms ease,-o-transform 0s ease;
}

article.item a.image-link:hover {
	-webkit-box-shadow: 0 0 20px #0079ff;
	-moz-box-shadow: 0 0 20px #0079ff;
	box-shadow: 0 0 20px #0079ff;
}

.isotope-item {
	z-index: 2;
}

.isotope-hidden.isotope-item {
	pointer-events: none;
	z-index: 1;
}

/* Portfolio (Isotope) CSS3 transitions */

.isotope,
.isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	transition-property: transform, opacity;
}

/* Disabling Portfolio (Isotope) CSS3 transitions */

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	transition-duration: 0s;
}

#masonry-container {
	overflow-x: visible;
}


div.portfolio-divider {
	position: absolute;
}

div.portfolio-divider.tablet-divider {
	display: none;
	visibility: collapse;
}


.fade {
	-webkit-transition: opacity 0.15s linear;
	-moz-transition: opacity 0.15s linear;
	-ms-transition: opacity 0.15s linear;
	-o-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;
	opacity: 0;
}

.fade.in {
	opacity: 1;
}



/* Portfolio Item */

div.prime-post.prime-single-portfolio {
	margin-right: 0;
	padding-right: 0;
	padding-bottom: 1em;
	padding-top: 25px;
}

div.galleryslider-wrapper {
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 4px;

	margin-bottom: 12px;
	position: relative;
}

div.prime-post.prime-single-portfolio div.post > .embed-wrapper {
	margin-top: 0;
}

div.prime-single-portfolio img.post-image {
	margin-bottom: 12px;
}


/*-------------------------------------------------------------------------------------------------------
        Comments
-------------------------------------------------------------------------------------------------------*/

.comments {
	margin: 35px 0;
	padding-right: 0;
	margin-right: 0;
	/*    border-top: 1px solid #e8e8e8;*/
}

.comments h2.comments-title {
	font-size: 20px;
	line-height: 25px;
	margin-top: 0;
}

.comments h2.comments-title a {
	font-weight: normal;
}

.comments .comment:first-child {
	margin-top: 0;
}

.comments ul.children {
	margin: 0;
	padding-left: 46px;
}

.comment, .comments ul.children .comment:first-child {
	margin-top: 22px;
	padding-bottom: 3px;
	clear: both;
	width: 100%;
	position: relative;
}

.comment > .avatar {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
}

.comment .message-wrap {
	padding-left: 76px;
}

.comment .message > .comment-tip {
	float: left;
	margin-left: -33px;
	margin-top: 1px;
	width: 12px;
	height: 17px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right:10px solid #f3f3f3;
}

.comment a, .comment a:visited {
	/*    color: #ff8000;*/
	text-decoration: none;
	font-weight: bold;
}

.comment a:hover, .comment .message a.reply:hover {
	/*    color: #ff8000;*/
}

.comment .message > h5 {
	margin-top: 0;
	/*    margin-bottom: 10px;*/
	font-size: 13px;
}

.comment .message {
	padding: 21px 24px 21px 24px;
	background: #f3f3f3;
	border-radius: 4px;
}
.comment .message h5 a, .comment .message h5 a:hover, .comment.author .message h5 a:visited, .comment .message a.comment-reply-link, .comment .message a.comment-reply-link:visited {
	color: #333;
	text-decoration: none;
	font-weight: bold;
}

/*.comment .message h3 a:hover, .comment.author .message h3 a:visited:hover, .comment .message a.comment-reply-link:hover, .comment .message a.comment-reply-link:visited:hover {
    text-decoration: none;
    color: #ff8400;
}*/

.comment-form-wrapper > h2 {
	/*    font-weight: bold;
		font-size: 20px;
		margin-top: 15px;
		margin-bottom: 22px;*/
}

nav#comments-nav a {
	display: inline-block;
	margin-bottom: 13px;
}

nav#comments-nav a, nav#comments-nav a:visited {
	color: #313337;
	font-weight: bold;
}

nav#comments-nav a:hover {
	color: #ff8400;
	text-decoration: none;
}

nav#comments-nav div.comments-previous {
	float: left;
}

nav#comments-nav div.comments-next {
	float: right;
}

form.comment-form {
	padding-top: 1em;
	/*    padding-bottom: 0;
		margin-bottom: 0;
		margin-right: 0;*/
}

form.comment-form fieldset {
	padding-top: 0;
	margin-bottom: 0;
}

div#respond {
	/*    border-top: 1px solid #e8e8e8;*/
	margin-top: 0;
	padding-top: 35px;
}

div.prime-page div#respond > h3 {
	/*	margin-top: 35px;*/
}

div#respond.is-logged-in fieldset {
	padding-left: 0;
	padding-right: 0;
}

form.comment-form fieldset .comment-info {
	width: 44%;
	float: left;
	margin-bottom: 17px;
}

form.comment-form p.login-info {
	margin-top: 0;
	/*    font-weight: bold;*/
}

form.comment-form p.login-info > a {
	/*    color: #313337;*/
}

form.comment-form p.login-info > a:hover {
	/*    color: #ff8400;*/
	/*    text-decoration: none;*/
}

form.comment-form fieldset .comment-info input {
	clear: both;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 3px;
}

form.comment-form fieldset .comment-message {
	width: 50%;
	float: right;
	margin-bottom: 17px;
	position: relative;
}

div#respond.is-logged-in form.comment-form fieldset .comment-message {
	width: 100%;
	float: left;
}

div#respond.is-logged-in form.comment-form fieldset .comment-message > label {
	display: none;
	visibility: collapse;
}

form.comment-form fieldset .comment-message textarea {
	width: 100%;
	height: 149px;
	margin-top: 3px;
}

div#respond.is-logged-in form.comment-form fieldset .comment-message textarea {
	width: 98%;
}

form.comment-form fieldset .comment-options {
	width: 44%;
	float: left;
	clear: both;
	padding-left: 24px;
}

form.comment-form fieldset .comment-options label {
	font-weight: normal;
	margin-top: -1px;
	padding-top: 0;
	margin-left: 3px;
	width: 100%;
}

div#respond.is-logged-in form.comment-form fieldset input[type="submit"] {
	float: left;
}

form.comment-form fieldset input[type="submit"] {
	float: right;
	margin-right: 0;
	font-weight: bold;
	padding-left: 25px;
	padding-right: 25px;
	margin-bottom: 0;
}

div#respond.logged-in form.comment-form fieldset input[type="submit"] {
	float: left;
}

form.comment-form fieldset input {
	float: none;
}

form.comment-form fieldset label {
	font-weight: bold;
	text-align: left;
	float: none;
}

form.comment-form fieldset span.form {
	display: block;
	padding: 24px;
}


/*-------------------------------------------------------------------------------------------------------
        Blog
-------------------------------------------------------------------------------------------------------*/

.prime-blog {
	padding-top: 3px;
	padding-bottom: 15px;
}

.prime-blog div.divider:first-child {
	display: none;
	visibility: collapse;
}

.post-preview {
	margin-top: 40px;
	margin-bottom: 10px;
	position: relative;
	padding-top: 0;
	padding-bottom: 35px;
	/*    border-bottom: 1px solid #eee;*/
	/*    margin-right: 20px;*/
}

span.comment-count:before, span.author:before, span.date:before {
	padding-right: 4px;
}

html.boxed-layout body span.categories > a, html.boxed-layout body span.categories > a:hover,
html.boxed-layout body span.categories > a:visited {
	color: white;
	/*    -webkit-transition: 0.1s linear all;
		-moz-transition: 0.1s linear all;
		-ms-transition: 0.1s linear all;
		-o-transition: 0.1s linear all;
		transition: 0.1s linear all;	*/
}


span.categories > a:hover, ul.page-numbers > li > a:hover {
	color: white;
	opacity: 0.9;
}

span.spacer {
	display: inline-block;
	padding: 0 5px;
	opacity: 0.3;
}

.post-preview:first-child, article.post {
	margin-top: 0;
	padding-top: 4px;
	/*	padding-bottom: 13px;*/
}

img.post-image, a.image-link.no-frame img {
	background: #fafafa;
	/*    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);*/
	/*border-radius: 4px;*/
	/*    margin-bottom: 5px;*/
}

.post-preview h3.post-title, h1.post-title, div#respond > h3, h3.comments-title {
	font-size: 24px;
	margin: 0 0 10px 0;
	line-height: 30px;
	text-align: left;
}

.post-preview .post-title a,
.post-preview .post-title a:visited,
.post-preview .post-title a:hover {
	color: #333;
	text-decoration: none;
}

.post-preview h3.post-title a:hover {
	text-decoration: none;
}

.post-preview p.post-meta, div.post p.post-meta {
	margin: 12px 0 9px 0;
	padding: 0;
}

.post-preview .post-content p.post-text {
	margin: 0 0 11px 0;
}

.post-preview .like-buttons {
	width: auto;
	margin: 18px 0 0 0;
}

.post-preview .read-more-link {
	/*    font-weight: bold;*/
	margin: 0;
}

.main div.divider.post-divider {
	margin-top: 0;
	margin-bottom: 0;
}

.paginators {
	position: relative;
	margin: 25px 0 0 0;
}

.paginators a,
.paginators span {
	vertical-align: middle;
}

.paginators ul.page-numbers {
	display: block;
	list-style: none;
	padding: 0 0 0 0;
	margin-bottom: -15px;
	text-align: center;
}

.paginators ul.page-numbers li {
	display: inline-block;
}

.paginators ul.page-numbers li a,
.paginators ul.page-numbers li span.current {
	display: inline-block;
	padding: 6px 10px;
	/*    width: 20px;
		height: 34px;*/
	/*    background: #191919;*/
	/*    border-radius: 17px;*/
}

.paginators ul.page-numbers li span.current {
	background-color: #ccc;
	text-shadow: none;
}

html.std-selector span.page-numbers.dots {
	background: transparent;
	color: #aaa;
	text-shadow: none;
}

html ul.page-numbers > li > a.next.page-numbers, html ul.page-numbers > li > a.prev.page-numbers,
html.ie8 ul.page-numbers > li > a.next.page-numbers, html.ie8 ul.page-numbers > li > a.prev.page-numbers {
	text-transform: none;
	text-shadow: none;
	font-size: 13px;
	letter-spacing: 0;
	width: auto;
	text-decoration: none;
	padding-left: 0;
	padding-right: 0;
	font-weight: normal;
}

.prime-blog .paginators ul.page-numbers li span.current {
	display: inline-block;
	background: #7d7d7d;
}

.paginators ul.page-numbers li.ellipsis {
	background-image: url(../img/paginator-ellipsis.png);
	text-indent: -9999px;
	height: 10px;
	width: 18px;
}

html.std-selector body div.paginators > ul.page-numbers > li > a.page-numbers,
html.std-selector body div.paginators > ul.page-numbers > li > a.page-numbers:visited {
	display: inline-block;
	padding: 6px 10px;
	/*    color: white;*/
	/*    text-decoration: none;*/
	/*    font-weight: 500;*/
}

.paginators ul.page-numbers li a:hover {
	/*    text-decoration: none;*/
}

.paginators ul.page-numbers li span.current {
	/*    color: white;*/
}

.paginators ul.page-numbers li a.prev,
.paginators ul.page-numbers li a.next {
	position: absolute;
	background: none;
	top: 0;
	color: #7d7d7d;
	font-weight: normal;
}

.paginators ul.page-numbers li a.prev:hover,
.paginators ul.page-numbers li a.next:hover {
	text-decoration: none;
	/*    color: #ff8000;*/
}

.paginators ul.page-numbers li a.prev {
	left: 0;
}

.paginators ul.page-numbers li a.next {
	right: 0;
}


/*-------------------------------------------------------------------------------------------------------
        Post
-------------------------------------------------------------------------------------------------------*/
.prime-post h1.post-title {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
	margin-top: 23px;
}

.prime-post .post-meta {
	margin-top: 3px;
	margin-bottom: 12px;
}

div.post-content {
	margin-top: 15px;
}

div.post div.post-content {
	/*	margin-top: 1.5em;*/
	margin-bottom: 35px;
}

div.post > a.image-link, div.post-preview > a.image-link {
	margin: 0.5em 0;
}

.prime-post.prime-single-portfolio .post-meta {
	padding-top: 12px;
	padding-bottom: 4px;
}


.prime-post .post-meta > a#prev-post {
	background: url(../img/prev-post.png) center center no-repeat;
}

.prime-post .post-meta > a#next-post {
	margin-left: 2px;
	background: url(../img/next-post.png) center center no-repeat;
}

.prime-post .post-meta p.post-byline a {
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
}

.prime-post .post-meta p.post-date {
	float: right;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 0;
	line-height: 1em;
	margin-bottom: 0;
	color: #656971;
}

.prime-post .post-meta p.post-date sup {
	text-transform: none;
}

.prime-post .video-iframe-wrapper iframe, .jquery-player-wrapper {
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	background: #191919;
}

.prime-post .video-iframe-wrapper, .jquery-player-wrapper {
	width: 100%;
	display: inline-block;
	margin-bottom: 1px;
}

.jquery-player-wrapper {
	margin-bottom: 5px;
}

div.jquery-player-wrapper.jplayer-audio-wrapper {
	margin-bottom: 1px;
	border-top: 0px;
}

.prime-post img.post-image.audio-banner-image {
	margin-bottom: 0;
	border-bottom: none;
}

.prime-post span.post-subtitle {
	color: #7d828c;
	font-weight: normal;
}

.prime-post ul.post-social {
	list-style: none;
	padding-left: 0;
	padding-top: 4px;
	float: left;
}

.prime-post ul.post-social li {
	margin-bottom: 10px;
	margin-left: 0;
}

.prime-post ul {
	padding-left: 16px;
}


div.post-content img {
	background: white;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	margin-bottom: 5px;
}


/*-------------------------------------------------------------------------------------------------------
        Widgets
-------------------------------------------------------------------------------------------------------*/

#sidebar {
	padding-top: 26px;
	padding-bottom: 30px;
}

.sidebar-widget {
	position: relative;
}

#sidebar article.widget {
	/*    padding-top: 2.2em;
	*/    margin-bottom: 50px;
}

#sidebar article.widget.widget-first, #sidebar article.widget:first-child {
	padding-top: 0;
	border-top: none;
}

#sidebar article.widget ul {
	margin-bottom: 0;
}

#sidebar article.widget li {
	padding-top:0;
	padding-bottom: 0;
}

#sidebar article.widget li:first-child {
	border-top: none;
}

#sidebar article > .sidebar-widget > h3 {
	margin-top: 0;
	margin-bottom: 1.5em;
	font-size: 13px;
}

#sidebar div.divider {
	display: none;
}

.search-widget {
	margin: 1em 0;
}

.search-widget > form.search-form {
	margin: 0;
}

div.search-widget input {
	color: #555;
}
.search-widget > form.search-form > fieldset {
	padding: 0;
	margin: 0;
	position: relative;
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;

}

.search-widget > form.search-form > fieldset.has-focus {
	outline: 0;
}

.search-widget > form.search-form > fieldset > div {
	padding-right: 29px;
}

.search-widget input[type="text"] {
	width: 100%;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	background-color: #fcfcfc;
	height: 28px;
	padding: 5px 0 3px 6px;
}
.ie9 .search-width input[type="text"] {
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
}

.search-widget input[type="text"]:focus {
	box-shadow: none;
	background-color: white;
}

.search-widget button {
	width: 30px;
	height: 28px;
	/*    text-indent: -9999px;*/
	padding: 0;
	margin: 0;
	position: absolute;
	right: 0pt;
	top: 0pt;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

.search-widget button i, .ie8 .search-widget button i, .ie7 .search-widget button i {
	width: 28px;
	height: 28px;
	font-family: FontAwesome;
	font-weight: 300;
	font-style: normal;
	display: inline-block;
	font-size: 16px;
	color: white;
	position: absolute;
	right: 0;
	top: 6px;
	content: "\f002";
	opacity: 0.95;
}

.ie8 .search-widget button i {
	top: -7px;
	right: 1px;
}

#searchform {
	max-width: 400px;
}

span.post-date {
	display: block;
	font-size: 10px;
	color: #464646;
}

/* Twitter Widget */

.tweet_time {
	display: block;
}

footer .tweet_time > a, .tweet_time > a:visited {
	/*    color: #464646;*/
	font-size: 10px;
}

footer .tweet_list a {
	/*    color: white;*/
	text-decoration: none;
}

ul.tweet_list, ul.post-list, article.widget_recent_entries ul {
	margin-left: 0;
	padding-left: 0;
}

ul.tweet_list > li, .ie8 ul.tweet_list > li, ul.post-list > li, .ie8 ul.post-list > li, article.widget_recent_entries ul > li, .widget_recent_comments ul > li {
	list-style: none;
	margin-left: 0;
	padding-top: 10px;
}

ul.tweet_list > li:first-child, .ie8 ul.tweet_list > li:first-child, ul.post-list > li:first-child, .ie8 ul.post-list > li:first-child, article.widget_recent_entries ul > li:first-child, .widget_recent_comments ul > li:first-child {
	border-top: none;
	padding-top: 0;
}

ul.tweet_list a.tweet_avatar {
	padding-top: 4px;
	position: absolute;
}

ul.tweet_list span.tweet_text, ul.tweet_list span.tweet_time {
	display: inline-block;
	padding-left: 50px;
	word-wrap: break-word;
}

ul.tweet_list span.tweet_text a, ul.tweet_list span.tweet_time a {
	white-space: pre; /* CSS 2.0 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3.0 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	white-space: -moz-pre-wrap; /* Mozilla */
	white-space: -hp-pre-wrap; /* HP Printers */
	word-wrap: break-word; /* IE 5+ */
}

ul.tweet_list a.tweet_avatar > img {
	/*    border-radius: 2px;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
}

#sidebar article.widget ul.tweet_list > li:first-child {
	padding-top: 3px;
}

#sidebar article.widget ul.tweet_list > li {
	margin-top: 1em;
}


/* Video Embed Styling */

.embed-wrapper {
	line-height: 0;
	margin: 1em 0 0 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.embed-wrapper:hover {
	box-shadow: 0 0 20px #0079ff;
}

.embed-wrapper > iframe {
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}


/* Archive Widget */

.widget_archive ul, .widget_categories ul, .widget_recent_comments ul, .widget_nav_menu ul, .widget_pages ul, .widget_links ul, .widget_meta ul, .widget_rss ul {
	list-style-type: disc;
	padding-left: 0;
}

.widget_archive ul > li, .widget_categories ul > li, .widget_nav_menu ul > li, .widget_pages ul > li, .widget_links ul > li, .widget_meta ul > li, .widget_rss ul > li {
	padding-left: 0;
	list-style: none;
	margin-left: 0;
	margin-bottom: 2px;
}



/* RSS */

.widget_rss > div.container > h3 > a:first-child > img {
	margin-top: -3px;
	margin-right: 5px;
}

.widget_rss cite {
	/*font-family: 'Droid Serif';*/
	/*color: #656971;*/
	color: #b4b4b4;
	font-style: normal;
}

.widget_rss h3 a {
	color: #333;
	text-decoration: none;
}

footer .widget_rss h3 a {
	color: #d4d4d4;
}

.widget_rss h3 a:hover {
	/*    color: #ff8000;*/
	text-decoration: underline;
}

.widget_rss span.rss-date {
	/*font-family: 'Droid Serif';*/
	color: #b4b4b4;
	/*font-style: italic;*/
}

.widget_links ul > li a, .widget_rss ul > li a {
	display: block;
}

.widget_nav_menu ul ul, .widget_pages ul ul {
	margin: 0;
	padding: 2px 0 1px 1.4em;
}

.widget_nav_menu ul ul li, .widget_pages ul ul li {
	/*list-style-type: disc;*/
	background-image: none;
	margin-left: 0;
	padding-left: 0;
}



/*-------------------------------------------------------------------------------------------------------
        Forms
-------------------------------------------------------------------------------------------------------*/
form {
	margin-bottom: 18px;
}

fieldset {
	margin-bottom: 18px;
	padding-top: 18px;
}

fieldset legend {
	display: block;
	padding-left: 150px;
	font-size: 19.5px;
	line-height: 1;
	color: #404040;
	*padding: 0 0 5px 145px; /* IE6-7 */
	*line-height: 1.5; /* IE6-7 */

}

form .clearfix {
	margin-bottom: 18px;
	zoom: 1;
}

form .clearfix:before, form .clearfix:after {
	display: table;
	content: "";
	zoom: 1;
	*display: inline;
}

form .clearfix:after {
	clear: both;
}

label,
input,
select,
textarea {
	font-size: 13px;
	font-weight: normal;
	line-height: normal;
}

label {
	color: #333;
}

footer label {
	color: white;
}

form .input {
	margin-left: 150px;
}

input[type=checkbox], input[type=radio] {
	cursor: pointer;
}

input,
textarea,
select,
.uneditable-input {
	display: inline-block;
	/*    width: 210px;*/
	height: 28px;
	padding: 4px;
	font-size: 13px;
	line-height: 18px;
	color: #808080;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* mini reset for non-html5 file types */
input[type=checkbox], input[type=radio] {
	width: auto;
	height: auto;
	padding: 0;
	margin: 3px 0;
	*margin-top: 0; /* IE6-7 */

	line-height: normal;
	border: none;
}

input[type=file] {
	background-color: #ffffff;
	padding: initial;
	border: initial;
	line-height: initial;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

input[type=button], input[type=reset], input[type=submit] {
	width: auto;
	height: auto;
}

select, input[type=file] {
	height: 27px;
	line-height: 27px;
	*margin-top: 4px; /* For IE7, add top margin to align select with labels */
}

select[multiple] {
	height: inherit;
}

textarea {
	height: auto;
}

.uneditable-input {
	background-color: #ffffff;
	display: block;
	border-color: #eee;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
	cursor: not-allowed;
}

:-moz-placeholder {
	color: #bfbfbf;
}

::-webkit-input-placeholder {
	color: #bfbfbf;
}

input, textarea {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:focus, textarea:focus {
	outline: 0;
}

input[type=file]:focus, input[type=checkbox]:focus, select:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 1px dotted #666;
}

form div.clearfix.error {
	background: #fae5e3;
	padding: 10px 0;
	margin: -10px 0 10px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

form div.clearfix.error > label, form div.clearfix.error span.help-inline, form div.clearfix.error span.help-block {
	color: #9d261d;
}

form div.clearfix.error input, form div.clearfix.error textarea {
	border-color: #c87872;
	-webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
	-moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
	box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
}

form div.clearfix.error input:focus, form div.clearfix.error textarea:focus {
	border-color: #b9554d;
	-webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
	-moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
	box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
}

form div.clearfix.error .input-prepend span.add-on, form div.clearfix.error .input-append span.add-on {
	background: #f4c8c5;
	border-color: #c87872;
	color: #b9554d;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
	background-color: #f5f5f5;
	border-color: #ddd;
	cursor: not-allowed;
}

/* Gravity Forms */

.gform_wrapper ul.gfield_radio li, .gform_wrapper ul.gfield_checkbox li {
	overflow: visible;
}

li.gfield {
	padding-bottom: 3px;
}

.gform_wrapper .gfield_description {
	padding-top: 6px;
}

label {
	padding-bottom: 2px;
}

.widget .gform_wrapper .top_label input.medium, .widget .gform_wrapper .top_label select.medium {
	width: 100%;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
	/*    color: #d4d4d4;*/
}

/*-------------------------------------------------------------------------------------------------------
        Helper
-------------------------------------------------------------------------------------------------------*/

.ir {
	display: block;
	border: 0;
	text-indent: -999em;
	overflow: hidden;
	background-color: transparent;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}

.ir br {
	display: none;
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.invisible {
	visibility: hidden;
}

.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

/*-------------------------------------------------------------------------------------------------------
        Skins
-------------------------------------------------------------------------------------------------------*/

div.header-bg {
	overflow: hidden;
}

div.header-bg-fill {
	height: 1000px;
	width: 100%;
	min-width: 1000px;
}


.ie8 div.header-bg-fill {
	position: absolute;
	top: -300px;
	bottom: -300px;
	left: -500px;
	right: -500px;
	min-width: 2000px;
}

.ie9 .gradient {
	filter: none;
}

html.boxed-layout ul.topmenu ul.sub-menu li > a {
	/*	border-top: 1px solid transparent;*/
	border-bottom: 1px solid transparent;
}

html.boxed-layout.no-touch div.menu-wrapper ul.topmenu ul.sub-menu li.sfHover > a,
html.boxed-layout.no-touch div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a{
	background-repeat: no-repeat;
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.2));
	border-top: 1px solid
	rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid
	rgba(0, 0, 0, 0.2);
	/*	-ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		-o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3); */
}

.ie8 ul.topmenu > li.menu-parent-item.sfHover > a,
.ie8 ul.topmenu > li.menu-parent-item:hover > a,
.ie8 ul.topmenu > li:hover > a,
.ie8 ul.topmenu > li.sfHover > a {
	background: #333;
}

html.boxed-layout div.menu-wrapper ul.topmenu ul.sub-menu li.sfHover > a strong,
html.boxed-layout div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a strong
{
	color: white;
	text-shadow: rgba(0, 0, 0, 0.2) 0px -1px 0px;
}

html.ie8 a.image-link, html.ie8 .embed-wrapper {
	border: 1px solid transparent;
}

html.boxed-layout div.prime-portfolio a.btn:hover, html.boxed-layout div.slide a.btn:hover, html.boxed-layout a.btn:hover {
	color: white !important;
}


/* Autumn */

html.skin-autumn div.header-bg-fill {
	background: #ff7a00; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjdhMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNGUxMDAwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e1000), color-stop(100%,#ff7a00));

	background: -moz-radial-gradient(center, ellipse cover,  #ff7a00 0%, #4e1000 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ff7a00), color-stop(100%,#4e1000)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ff7a00 0%,#4e1000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ff7a00 0%,#4e1000 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ff7a00 0%,#4e1000 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ff7a00 0%,#4e1000 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7a00', endColorstr='#4e1000',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-autumn ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-autumn div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a{
	background-color: #A44809;
}
html.skin-autumn body span.call-us-button a.btn,
html.skin-autumn .btn,
html.skin-autumn a.btn,
html.skin-autumn a.btn:visited,
html.skin-autumn body a.btn,
html.skin-autumn body a.btn:visited,
html.skin-autumn button,
html.skin-autumn .wpcf7-submit,
html.skin-autumn input[type="submit"],
html.skin-autumn body div.social-links > a.btn,
html.skin-autumn a.accordion-toggle,
html.skin-autumn a.accordion-toggle:visited,
html.skin-autumn a.accordion-toggle:hover,
html.skin-autumn .main .tabs > li > a,
html.skin-autumn .tabs > li > a,
html.skin-autumn body .main .tabs > li > a,
html.skin-autumn body .tabs > li > a
{
	background-color: #A44809;
	color: white;
}

html.skin-autumn body a.mobile-menu-btn.btn,
html.skin-autumn body div.social-links > a.btn,
html.skin-autumn body span.call-us-button a.btn,
html.skin-autumn span.icon-bg.circle   {
	background-color: #444;
}

html.skin-autumn body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-autumn a,
html.skin-autumn a:visited,
html.skin-autumn .widget_rss h3 a:hover,
html.skin-autumn body a:hover,
html.skin-autumn body a:visited:hover,
html.skin-autumn .main .tabs > li > a,
html.skin-autumn .tabs > li > a,
html.skin-autumn blockquote,
html.skin-autumn span.pullquote,
html.skin-autumn div.video-embed-shortcode:hover,
html.skin-autumn div#map_canvas:hover,
html.skin-autumn div.recent-posts h5 a:hover,
html.skin-autumn div.recent-posts article.item div.description a,
html.skin-autumn div.recent-posts article.item div.description a:visited,
html.skin-autumn ul#filters li div:hover,
html.skin-autumn article.item div.description a:hover,
html.skin-autumn .comment a,
html.skin-autumn .comment a:visited,
html.skin-autumn .comment a:hover,
html.skin-autumn .comment .message a.reply:hover,
html.skin-autumn .paginators ul.page-numbers li a.prev:hover,
html.skin-autumn .paginators ul.page-numbers li a.next:hover,
html.skin-autumn ul#filters li div.current {
	color: #A44809;
}

html.skin-autumn div.plan.featured {
	background-color: #FFF6F0;
}

html.skin-autumn body div.alert-message  a.close {
	color: black;
}

html.skin-autumn body div.recent-posts article.item div.description p.post-meta a,
html.skin-autumn body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-autumn body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-autumn body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-autumn body span.categories a,
html.skin-autumn body ul.page-numbers > li > span,
html.skin-autumn ul.page-numbers > li > a.page-numbers,
html.skin-autumn body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #A44809;
	color: white;
}

html.skin-autumn body ul.page-numbers > li > a.page-numbers.next,
html.skin-autumn body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #A44809;
}

html.skin-autumn input:focus,
html.skin-autumn textarea:focus,
html.skin-autumn .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(242, 124, 16, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(242, 124, 16, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(242, 124, 16, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(242, 124, 16, 0.6);
}

html.skin-autumn .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-autumn a.image-link:hover,  html.skin-autumn .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #F27C10;
}

html.no-touch.skin-autumn.ie8 a.image-link:hover,  html.skin-autumn.ie8 .embed-wrapper:hover {
	border: 1px solid #F27C10;
}

html.skin-autumn .flex-control-nav li a.icon-pause.is-paused,
html.skin-autumn div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #F27C10;
	color: #F27C10;
}


/* Black */

html.skin-black div.header-bg-fill {
	background: #808284; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM4MDgyODQiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMTYxNzE4IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#161718), color-stop(100%,#808284));

	background: -moz-radial-gradient(center, ellipse cover,  #808284 0%, #161718 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#808284), color-stop(100%,#161718)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #808284 0%,#161718 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #808284 0%,#161718 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #808284 0%,#161718 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #808284 0%,#161718 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#808284', endColorstr='#161718',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-black ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-black div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #444;
}

html.skin-black body span.call-us-button a.btn,
html.skin-black .btn,
html.skin-black a.btn,
html.skin-black a.btn:visited,
html.skin-black body a.btn,
html.skin-black body a.btn:visited,
html.skin-black button,
html.skin-black .wpcf7-submit,
html.skin-black input[type="submit"],
html.skin-black body div.social-links > a.btn,
html.skin-black a.accordion-toggle,
html.skin-black a.accordion-toggle:visited,
html.skin-black a.accordion-toggle:hover,
html.skin-black .main .tabs > li > a,
html.skin-black .tabs > li > a,
html.skin-black body .main .tabs > li > a,
html.skin-black body .tabs > li > a
{
	background-color: #444;
	color: white;
}

html.skin-black body a.mobile-menu-btn.btn,
html.skin-black body div.social-links > a.btn,
html.skin-black body span.call-us-button a.btn,
html.skin-black span.icon-bg.circle   {
	background-color: #444;
}

html.skin-black body span.call-us-button a.btn {
	background-color: #ff8000;

}

html.skin-black a,
html.skin-black a:visited,
html.skin-black .widget_rss h3 a:hover,
html.skin-black body a:hover,
html.skin-black body a:visited:hover,
html.skin-black .main .tabs > li > a,
html.skin-black .tabs > li > a,
html.skin-black blockquote,
html.skin-black span.pullquote,
html.skin-black div.video-embed-shortcode:hover,
html.skin-black div#map_canvas:hover,
html.skin-black div.recent-posts h5 a:hover,
html.skin-black div.recent-posts article.item div.description a,
html.skin-black div.recent-posts article.item div.description a:visited,
html.skin-black ul#filters li div:hover,
html.skin-black article.item div.description a:hover,
html.skin-black .comment a,
html.skin-black .comment a:visited,
html.skin-black .comment a:hover,
html.skin-black .comment .message a.reply:hover,
html.skin-black .paginators ul.page-numbers li a.prev:hover,
html.skin-black .paginators ul.page-numbers li a.next:hover,
html.skin-black ul#filters li div.current {
	color: #ff8000;
}

html.skin-black div.plan.featured {
	background-color: #FFF6ED;
}

html.skin-black body div.alert-message  a.close {
	color: black;
}

html.skin-black body div.recent-posts article.item div.description p.post-meta a,
html.skin-black body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-black body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-black body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-black body span.categories a,
html.skin-black body ul.page-numbers > li > span,
html.skin-black ul.page-numbers > li > a.page-numbers,
html.skin-black body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #ff8000;
}

html.skin-black body ul.page-numbers > li > a.page-numbers.next,
html.skin-black body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #ff8000;
}

html.skin-black input:focus,
html.skin-black textarea:focus,
html.skin-black .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(255, 128, 0, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 128, 0, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 128, 0, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 128, 0, 0.6);
}

html.skin-black .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-black a.image-link:hover,  html.skin-black .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #ff8000;
}

html.no-touch.skin-black.ie8 a.image-link:hover,
html.skin-black.ie8 .embed-wrapper:hover {
	border: 1px solid #ff8000;
}

html.skin-black .flex-control-nav li a.icon-pause.is-paused,
html.skin-black div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #ff8000;
	color: #ff8000;
}


/* Blue-Grey */

html.skin-blue-grey div.header-bg-fill {
	background: #c7c9f0; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNjN2M5ZjAiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMTExMTE4IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111118), color-stop(100%,#c7c9f0));

	background: -moz-radial-gradient(center, ellipse cover,  #c7c9f0 0%, #111118 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#c7c9f0), color-stop(100%,#111118)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #c7c9f0 0%,#111118 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #c7c9f0 0%,#111118 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #c7c9f0 0%,#111118 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #c7c9f0 0%,#111118 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7c9f0', endColorstr='#111118',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}


html.skin-blue-grey ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-blue-grey div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #666785;
}

html.skin-blue-grey body span.call-us-button a.btn,
html.skin-blue-grey .btn,
html.skin-blue-grey a.btn,
html.skin-blue-grey a.btn:visited,
html.skin-blue-grey body a.btn,
html.skin-blue-grey body a.btn:visited,
html.skin-blue-grey button,
html.skin-blue-grey .wpcf7-submit,
html.skin-blue-grey input[type="submit"],
html.skin-blue-grey body div.social-links > a.btn,
html.skin-blue-grey a.accordion-toggle,
html.skin-blue-grey a.accordion-toggle:visited,
html.skin-blue-grey a.accordion-toggle:hover,
html.skin-blue-grey .main .tabs > li > a,
html.skin-blue-grey .tabs > li > a,
html.skin-blue-grey body .main .tabs > li > a,
html.skin-blue-grey body .tabs > li > a
{
	background-color: #666785;
	color: white;
}

html.skin-blue-grey body a.mobile-menu-btn.btn,
html.skin-blue-grey body div.social-links > a.btn,
html.skin-blue-grey body span.call-us-button a.btn,
html.skin-blue-grey span.icon-bg.circle   {
	background-color: #444;
}

html.skin-blue-grey body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-blue-grey a,
html.skin-blue-grey a:visited,
html.skin-blue-grey .widget_rss h3 a:hover,
html.skin-blue-grey body a:hover,
html.skin-blue-grey body a:visited:hover,
html.skin-blue-grey .main .tabs > li > a,
html.skin-blue-grey .tabs > li > a,
html.skin-blue-grey blockquote,
html.skin-blue-grey span.pullquote,
html.skin-blue-grey div.video-embed-shortcode:hover,
html.skin-blue-grey div#map_canvas:hover,
html.skin-blue-grey div.recent-posts h5 a:hover,
html.skin-blue-grey div.recent-posts article.item div.description a,
html.skin-blue-grey div.recent-posts article.item div.description a:visited,
html.skin-blue-grey ul#filters li div:hover,
html.skin-blue-grey article.item div.description a:hover,
html.skin-blue-grey .comment a,
html.skin-blue-grey .comment a:visited,
html.skin-blue-grey .comment a:hover,
html.skin-blue-grey .comment .message a.reply:hover,
html.skin-blue-grey .paginators ul.page-numbers li a.prev:hover,
html.skin-blue-grey .paginators ul.page-numbers li a.next:hover,
html.skin-blue-grey ul#filters li div.current {
	color: #666785;
}

html.skin-blue-grey div.plan.featured {
	background-color: #F7F7FF;
}

html.skin-blue-grey body div.alert-message  a.close {
	color: black;
}

html.skin-blue-grey body div.recent-posts article.item div.description p.post-meta a,
html.skin-blue-grey body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-blue-grey body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-blue-grey body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-blue-grey body span.categories a,
html.skin-blue-grey body ul.page-numbers > li > span,
html.skin-blue-grey ul.page-numbers > li > a.page-numbers,
html.skin-blue-grey body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #666785;
}

html.skin-blue-grey body ul.page-numbers > li > a.page-numbers.next,
html.skin-blue-grey body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #666785;
}

html.skin-blue-grey input:focus,
html.skin-blue-grey textarea:focus,
html.skin-blue-grey .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(141, 142, 184, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(141, 142, 184, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(141, 142, 184, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(141, 142, 184, 0.6);
}

html.skin-blue-grey .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-blue-grey a.image-link:hover,  html.skin-blue-grey .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #666785;
}

html.no-touch.skin-blue-grey.ie8 a.image-link:hover,
html.ie8.skin-blue-grey.ie8 .embed-wrapper:hover {
	border: 1px solid #666785;
}

html.skin-blue-grey .flex-control-nav li a.icon-pause.is-paused,
html.skin-blue-grey div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #666785;
	color: #666785;
}



/* Cherry */

html.skin-cherry div.header-bg-fill {
	background: #ff2100; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjIxMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjODAwNTAwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#800500), color-stop(100%,#ff2100));

	background: -moz-radial-gradient(center, ellipse cover,  #ff2100 0%, #800500 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ff2100), color-stop(100%,#800500)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ff2100 0%,#800500 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ff2100 0%,#800500 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ff2100 0%,#800500 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ff2100 0%,#800500 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff2100', endColorstr='#800500',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-cherry ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-cherry div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #D51600;
}

html.skin-cherry body span.call-us-button a.btn,
html.skin-cherry .btn,
html.skin-cherry a.btn,
html.skin-cherry a.btn:visited,
html.skin-cherry body a.btn,
html.skin-cherry body a.btn:visited,
html.skin-cherry button,
html.skin-cherry .wpcf7-submit,
html.skin-cherry input[type="submit"],
html.skin-cherry body div.social-links > a.btn,
html.skin-cherry a.accordion-toggle,
html.skin-cherry a.accordion-toggle:visited,
html.skin-cherry a.accordion-toggle:hover,
html.skin-cherry .main .tabs > li > a,
html.skin-cherry .tabs > li > a,
html.skin-cherry body .main .tabs > li > a,
html.skin-cherry body .tabs > li > a
{
	background-color: #D51600;
	color: white;
}

html.skin-cherry body a.mobile-menu-btn.btn,
html.skin-cherry body div.social-links > a.btn,
html.skin-cherry body span.call-us-button a.btn,
html.skin-cherry span.icon-bg.circle   {
	background-color: #444;
}

html.skin-cherry body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-cherry a,
html.skin-cherry a:visited,
html.skin-cherry .widget_rss h3 a:hover,
html.skin-cherry body a:hover,
html.skin-cherry body a:visited:hover,
html.skin-cherry .main .tabs > li > a,
html.skin-cherry .tabs > li > a,
html.skin-cherry blockquote,
html.skin-cherry span.pullquote,
html.skin-cherry div.video-embed-shortcode:hover,
html.skin-cherry div#map_canvas:hover,
html.skin-cherry div.recent-posts h5 a:hover,
html.skin-cherry div.recent-posts article.item div.description a,
html.skin-cherry div.recent-posts article.item div.description a:visited,
html.skin-cherry ul#filters li div:hover,
html.skin-cherry article.item div.description a:hover,
html.skin-cherry .comment a,
html.skin-cherry .comment a:visited,
html.skin-cherry .comment a:hover,
html.skin-cherry .comment .message a.reply:hover,
html.skin-cherry .paginators ul.page-numbers li a.prev:hover,
html.skin-cherry .paginators ul.page-numbers li a.next:hover,
html.skin-cherry ul#filters li div.current {
	color: #D51600;
}

html.skin-cherry div.plan.featured {
	background-color: #FFEFED;
}

html.skin-cherry body div.alert-message  a.close {
	color: black;
}

html.skin-cherry body div.recent-posts article.item div.description p.post-meta a,
html.skin-cherry body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-cherry body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-cherry body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-cherry body span.categories a,
html.skin-cherry body ul.page-numbers > li > span,
html.skin-cherry ul.page-numbers > li > a.page-numbers,
html.skin-cherry body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #D51600;
}

html.skin-cherry body ul.page-numbers > li > a.page-numbers.next,
html.skin-cherry body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #D51600;
}

html.skin-cherry input:focus,
html.skin-cherry textarea:focus,
html.skin-cherry .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(255, 36, 3, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 36, 3, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 36, 3, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 36, 3, 0.6);
}

html.skin-cherry .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-cherry a.image-link:hover,  html.skin-cherry .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #FF2403;
}

html.no-touch.skin-cherry.ie8 a.image-link:hover,
html.ie8.skin-cherry .embed-wrapper:hover {
	border: 1px solid #FF2403;
}

html.skin-cherry .flex-control-nav li a.icon-pause.is-paused,
html.skin-cherry div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #FF2403;
	color: #FF2403;
}


/* Coffee */

html.skin-coffee div.header-bg-fill {
	background: #ada59e; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNhZGE1OWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMTgwYjA0IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#180b04), color-stop(100%,#ada59e));

	background: -moz-radial-gradient(center, ellipse cover,  #ada59e 0%, #180b04 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ada59e), color-stop(100%,#180b04)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ada59e 0%,#180b04 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ada59e 0%,#180b04 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ada59e 0%,#180b04 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ada59e 0%,#180b04 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ada59e', endColorstr='#180b04',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-coffee div.menu-wrapper ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-coffee div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #5C5044;
}

html.skin-coffee body span.call-us-button a.btn,
html.skin-coffee .btn,
html.skin-coffee a.btn,
html.skin-coffee a.btn:visited,
html.skin-coffee body a.btn,
html.skin-coffee body a.btn:visited,
html.skin-coffee button,
html.skin-coffee .wpcf7-submit,
html.skin-coffee input[type="submit"],
html.skin-coffee body div.social-links > a.btn,
html.skin-coffee a.accordion-toggle,
html.skin-coffee a.accordion-toggle:visited,
html.skin-coffee a.accordion-toggle:hover,
html.skin-coffee .main .tabs > li > a,
html.skin-coffee .tabs > li > a,
html.skin-coffee body .main .tabs > li > a,
html.skin-coffee body .tabs > li > a
{
	background-color: #609BAD;
	color: white;
}

html.skin-coffee body a.mobile-menu-btn.btn,
html.skin-coffee body div.social-links > a.btn,
html.skin-coffee body span.call-us-button a.btn,
html.skin-coffee span.icon-bg.circle   {
	background-color: #444;
}

html.skin-coffee body span.call-us-button a.btn {
	background-color: #4D8394;

}

html.skin-coffee a,
html.skin-coffee a:visited,
html.skin-coffee .widget_rss h3 a:hover,
html.skin-coffee body a:hover,
html.skin-coffee body a:visited,
html.skin-coffee .main .tabs > li > a,
html.skin-coffee .tabs > li > a,
html.skin-coffee blockquote,
html.skin-coffee span.pullquote,
html.skin-coffee div.video-embed-shortcode:hover,
html.skin-coffee div#map_canvas:hover,
html.skin-coffee div.recent-posts h5 a:hover,
html.skin-coffee div.recent-posts article.item div.description a,
html.skin-coffee div.recent-posts article.item div.description a:visited,
html.skin-coffee ul#filters li div:hover,
html.skin-coffee article.item div.description a:hover,
html.skin-coffee .comment a,
html.skin-coffee .comment a:visited,
html.skin-coffee .comment a:hover,
html.skin-coffee .comment .message a.reply:hover,
html.skin-coffee .paginators ul.page-numbers li a.prev:hover,
html.skin-coffee .paginators ul.page-numbers li a.next:hover,
html.skin-coffee ul#filters li div.current {
	color: #609BAD;
}

html.skin-coffee div.plan.featured {
	background-color: #FFF9F4;
}

html.skin-coffee body div.alert-message  a.close {
	color: black;
}

html.skin-coffee body div.recent-posts article.item div.description p.post-meta a,
html.skin-coffee body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-coffee body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-coffee body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-coffee body span.categories a,
html.skin-coffee body ul.page-numbers > li > span,
html.skin-coffee ul.page-numbers > li > a.page-numbers,
html.skin-coffee body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #609BAD;
}

html.skin-coffee body ul.page-numbers > li > a.page-numbers.next,
html.skin-coffee body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #609BAD;
}

html.skin-coffee input:focus,
html.skin-coffee textarea:focus,
html.skin-coffee .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(96, 155, 173, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(96, 155, 173, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(96, 155, 173, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(96, 155, 173, 0.6);
}

html.skin-coffee .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-coffee a.image-link:hover,  html.skin-coffee .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #609BAD;
}

html.no-touch.skin-coffee.ie8 a.image-link:hover,
html.ie8.skin-coffee .embed-wrapper:hover {
	border: 1px solid #609BAD;
}


html.skin-coffee .flex-control-nav li a.icon-pause.is-paused,
html.skin-coffee div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #609BAD;
	color: #609BAD;
}


/* Cool Blue */

html.skin-cool-blue div.header-bg-fill {
	background: #41c7ff; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM0MWM3ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAyYjUwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002b50), color-stop(100%,#41c7ff));

	background: -moz-radial-gradient(center, ellipse cover,  #41c7ff 0%, #002b50 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#41c7ff), color-stop(100%,#002b50)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #41c7ff 0%,#002b50 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #41c7ff 0%,#002b50 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #41c7ff 0%,#002b50 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #41c7ff 0%,#002b50 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#41c7ff', endColorstr='#002b50',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-cool-blue ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-cool-blue div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #007FB6;
}

html.skin-cool-blue body span.call-us-button a.btn,
html.skin-cool-blue .btn,
html.skin-cool-blue a.btn,
html.skin-cool-blue a.btn:visited,
html.skin-cool-blue body a.btn,
html.skin-cool-blue body a.btn:visited,
html.skin-cool-blue button,
html.skin-cool-blue .wpcf7-submit,
html.skin-cool-blue input[type="submit"],
html.skin-cool-blue body div.social-links > a.btn,
html.skin-cool-blue a.accordion-toggle,
html.skin-cool-blue a.accordion-toggle:visited,
html.skin-cool-blue a.accordion-toggle:hover,
html.skin-cool-blue .main .tabs > li > a,
html.skin-cool-blue .tabs > li > a,
html.skin-cool-blue body .main .tabs > li > a,
html.skin-cool-blue body .tabs > li > a
{
	background-color: #007FB6;
	color: white;
}

html.skin-cool-blue body a.mobile-menu-btn.btn,
html.skin-cool-blue body div.social-links > a.btn,
html.skin-cool-blue body span.call-us-button a.btn,
html.skin-cool-blue span.icon-bg.circle   {
	background-color: #444;
}

html.skin-cool-blue body span.call-us-button a.btn {
	/*	background-color: #FFA641;*/

}

html.skin-cool-blue a,
html.skin-cool-blue a:visited,
html.skin-cool-blue .widget_rss h3 a:hover,
html.skin-cool-blue body a:hover,
html.skin-cool-blue body a:visited:hover,
html.skin-cool-blue .main .tabs > li > a,
html.skin-cool-blue .tabs > li > a,
html.skin-cool-blue blockquote,
html.skin-cool-blue span.pullquote,
html.skin-cool-blue div.video-embed-shortcode:hover,
html.skin-cool-blue div#map_canvas:hover,
html.skin-cool-blue div.recent-posts h5 a:hover,
html.skin-cool-blue div.recent-posts article.item div.description a,
html.skin-cool-blue div.recent-posts article.item div.description a:visited,
html.skin-cool-blue ul#filters li div:hover,
html.skin-cool-blue article.item div.description a:hover,
html.skin-cool-blue .comment a,
html.skin-cool-blue .comment a:visited,
html.skin-cool-blue .comment a:hover,
html.skin-cool-blue .comment .message a.reply:hover,
html.skin-cool-blue .paginators ul.page-numbers li a.prev:hover,
html.skin-cool-blue .paginators ul.page-numbers li a.next:hover,
html.skin-cool-blue ul#filters li div.current {
	color: #007FB6;
}

html.skin-cool-blue div.plan.featured {
	background-color: #F2FBFF;
}

html.skin-cool-blue body div.alert-message  a.close {
	color: black;
}

html.skin-cool-blue body div.recent-posts article.item div.description p.post-meta a,
html.skin-cool-blue body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-cool-blue body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-cool-blue body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-cool-blue body span.categories a,
html.skin-cool-blue body ul.page-numbers > li > span,
html.skin-cool-blue ul.page-numbers > li > a.page-numbers,
html.skin-cool-blue body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #007FB6;
}

html.skin-cool-blue body ul.page-numbers > li > a.page-numbers.next,
html.skin-cool-blue body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #007FB6;
}

html.skin-cool-blue input:focus,
html.skin-cool-blue textarea:focus,
html.skin-cool-blue .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(0, 127, 182, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 171, 245, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 171, 245, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 171, 245, 0.6);
}

html.skin-cool-blue .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-cool-blue a.image-link:hover,  html.skin-cool-blue .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #00ABF5;
}

html.no-touch.skin-cool-blue.ie8 a.image-link:hover,
html.ie8.skin-cool-blue .embed-wrapper:hover {
	border: 1px solid #00ABF5;
}

html.skin-cool-blue .flex-control-nav li a.icon-pause.is-paused,
html.skin-cool-blue div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #00ABF5;
	color: #00ABF5;
}


/* Fire */

html.skin-fire div.header-bg-fill {
	background: #ffb476; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmI0NzYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWI0NDAwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eb4400), color-stop(100%,#ffb476));

	background: -moz-radial-gradient(center, ellipse cover,  #ffb476 0%, #eb4400 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffb476), color-stop(100%,#eb4400)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ffb476 0%,#eb4400 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ffb476 0%,#eb4400 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ffb476 0%,#eb4400 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ffb476 0%,#eb4400 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb476', endColorstr='#eb4400',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-fire ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-fire div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #FF8424;
}

html.skin-fire body span.call-us-button a.btn,
html.skin-fire .btn,
html.skin-fire a.btn,
html.skin-fire a.btn:visited,
html.skin-fire body a.btn,
html.skin-fire body a.btn:visited,
html.skin-fire button,
html.skin-fire .wpcf7-submit,
html.skin-fire input[type="submit"],
html.skin-fire body div.social-links > a.btn,
html.skin-fire a.accordion-toggle,
html.skin-fire a.accordion-toggle:visited,
html.skin-fire a.accordion-toggle:hover,
html.skin-fire .main .tabs > li > a,
html.skin-fire .tabs > li > a,
html.skin-fire body .main .tabs > li > a,
html.skin-fire body .tabs > li > a
{
	background-color: #FF8424;
	color: white;
}

html.skin-fire body a.mobile-menu-btn.btn,
html.skin-fire body div.social-links > a.btn,
html.skin-fire body span.call-us-button a.btn,
html.skin-fire span.icon-bg.circle   {
	background-color: #444;
}

html.skin-fire body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-fire a,
html.skin-fire a:visited,
html.skin-fire .widget_rss h3 a:hover,
html.skin-fire body a:hover,
html.skin-fire body a:visited:hover,
html.skin-fire .main .tabs > li > a,
html.skin-fire .tabs > li > a,
html.skin-fire blockquote,
html.skin-fire span.pullquote,
html.skin-fire div.video-embed-shortcode:hover,
html.skin-fire div#map_canvas:hover,
html.skin-fire div.recent-posts h5 a:hover,
html.skin-fire div.recent-posts article.item div.description a,
html.skin-fire div.recent-posts article.item div.description a:visited,
html.skin-fire ul#filters li div:hover,
html.skin-fire article.item div.description a:hover,
html.skin-fire .comment a,
html.skin-fire .comment a:visited,
html.skin-fire .comment a:hover,
html.skin-fire .comment .message a.reply:hover,
html.skin-fire .paginators ul.page-numbers li a.prev:hover,
html.skin-fire .paginators ul.page-numbers li a.next:hover,
html.skin-fire ul#filters li div.current {
	color: #FF8424;
}

html.skin-fire div.plan.featured {
	background-color: #FFF0E4;
}

html.skin-fire body div.alert-message  a.close {
	color: black;
}

html.skin-fire body div.recent-posts article.item div.description p.post-meta a,
html.skin-fire body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-fire body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-fire body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-fire body span.categories a,
html.skin-fire body ul.page-numbers > li > span,
html.skin-fire ul.page-numbers > li > a.page-numbers,
html.skin-fire body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #FF8424;
}

html.skin-fire body ul.page-numbers > li > a.page-numbers.next,
html.skin-fire body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #FF8424;
}

html.skin-fire input:focus,
html.skin-fire textarea:focus,
html.skin-fire .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(255, 132, 36, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 132, 36, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 132, 36, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 132, 36, 0.6);
}

html.skin-fire .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-fire a.image-link:hover,  html.skin-fire .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #fc9038;
}

html.no-touch.ie8.skin-fire a.image-link:hover,
html.ie8.skin-fire .embed-wrapper:hover {
	border: 1px solid #fc9038;
}

html.skin-fire .flex-control-nav li a.icon-pause.is-paused,
html.skin-fire div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #fc9038;
	color: #fc9038;
}


/* Forest Green */

html.skin-forest-green div.header-bg-fill {
	background: #c5df87; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNjNWRmODciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMzEzZjE1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#313f15), color-stop(100%,#c5df87));

	background: -moz-radial-gradient(center, ellipse cover,  #c5df87 0%, #313f15 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#c5df87), color-stop(100%,#313f15)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #c5df87 0%,#313f15 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #c5df87 0%,#313f15 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #c5df87 0%,#313f15 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #c5df87 0%,#313f15 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c5df87', endColorstr='#313f15',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-forest-green ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-forest-green div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #76943B;
}


html.skin-forest-green body span.call-us-button a.btn,
html.skin-forest-green .btn,
html.skin-forest-green a.btn,
html.skin-forest-green a.btn:visited,
html.skin-forest-green body a.btn,
html.skin-forest-green body a.btn:visited,
html.skin-forest-green button,
html.skin-forest-green .wpcf7-submit,
html.skin-forest-green input[type="submit"],
html.skin-forest-green body div.social-links > a.btn,
html.skin-forest-green a.accordion-toggle,
html.skin-forest-green a.accordion-toggle:visited,
html.skin-forest-green a.accordion-toggle:hover,
html.skin-forest-green .main .tabs > li > a,
html.skin-forest-green .tabs > li > a,
html.skin-forest-green body .main .tabs > li > a,
html.skin-forest-green body .tabs > li > a
{
	background-color: #76943B;
	color: white;
}

html.skin-forest-green body a.mobile-menu-btn.btn,
html.skin-forest-green body div.social-links > a.btn,
html.skin-forest-green body span.call-us-button a.btn,
html.skin-forest-green span.icon-bg.circle   {
	background-color: #444;
}

html.skin-forest-green body span.call-us-button a.btn {
	/*	background-color: #7E3B94;*/

}

html.skin-forest-green a,
html.skin-forest-green a:visited,
html.skin-forest-green .widget_rss h3 a:hover,
html.skin-forest-green body a:hover,
html.skin-forest-green body a:visited:hover,
html.skin-forest-green .main .tabs > li > a,
html.skin-forest-green .tabs > li > a,
html.skin-forest-green blockquote,
html.skin-forest-green span.pullquote,
html.skin-forest-green div.video-embed-shortcode:hover,
html.skin-forest-green div#map_canvas:hover,
html.skin-forest-green div.recent-posts h5 a:hover,
html.skin-forest-green div.recent-posts article.item div.description a,
html.skin-forest-green div.recent-posts article.item div.description a:visited,
html.skin-forest-green ul#filters li div:hover,
html.skin-forest-green article.item div.description a:hover,
html.skin-forest-green .comment a,
html.skin-forest-green .comment a:visited,
html.skin-forest-green .comment a:hover,
html.skin-forest-green .comment .message a.reply:hover,
html.skin-forest-green .paginators ul.page-numbers li a.prev:hover,
html.skin-forest-green .paginators ul.page-numbers li a.next:hover,
html.skin-forest-green ul#filters li div.current {
	color: #76943B;
}

html.skin-forest-green div.plan.featured {
	background-color: #FBFFF4;
}

html.skin-forest-green body div.alert-message  a.close {
	color: black;
}

html.skin-forest-green body div.recent-posts article.item div.description p.post-meta a,
html.skin-forest-green body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-forest-green body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-forest-green body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-forest-green body span.categories a,
html.skin-forest-green body ul.page-numbers > li > span,
html.skin-forest-green ul.page-numbers > li > a.page-numbers,
html.skin-forest-green body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #76943B;
}

html.skin-forest-green body ul.page-numbers > li > a.page-numbers.next,
html.skin-forest-green body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #76943B;
}

html.skin-forest-green input:focus,
html.skin-forest-green textarea:focus,
html.skin-forest-green .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(121, 144, 66, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(121, 144, 66, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(121, 144, 66, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(121, 144, 66, 0.6);
}

html.skin-forest-green .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-forest-green a.image-link:hover,  html.skin-forest-green .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #C7F763;
}

html.no-touch.ie8.skin-forest-green a.image-link:hover,
html.ie8.skin-forest-green .embed-wrapper:hover {
	border: 1px solid #C7F763;
}

html.skin-forest-green .flex-control-nav li a.icon-pause.is-paused,
html.skin-forest-green div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #C7F763;
	color: #76943B;
}


/* Golden */

html.skin-golden div.header-bg-fill {
	background: #ffda47; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmRhNDciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNzU1NzE0IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#755714), color-stop(100%,#ffda47));
	background: -moz-radial-gradient(center, ellipse cover,  #ffda47 0%, #755714 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffda47), color-stop(100%,#755714)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ffda47 0%,#755714 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ffda47 0%,#755714 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ffda47 0%,#755714 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ffda47 0%,#755714 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffda47', endColorstr='#755714',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}


html.skin-golden ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-golden div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #BD9E24;
}


html.skin-golden body span.call-us-button a.btn,
html.skin-golden .btn,
html.skin-golden a.btn,
html.skin-golden a.btn:visited,
html.skin-golden body a.btn,
html.skin-golden body a.btn:visited,
html.skin-golden button,
html.skin-golden .wpcf7-submit,
html.skin-golden input[type="submit"],
html.skin-golden body div.social-links > a.btn,
html.skin-golden a.accordion-toggle,
html.skin-golden a.accordion-toggle:visited,
html.skin-golden a.accordion-toggle:hover,
html.skin-golden .main .tabs > li > a,
html.skin-golden .tabs > li > a,
html.skin-golden body .main .tabs > li > a,
html.skin-golden body .tabs > li > a
{
	background-color: #BD9E24;
	color: white;
}

html.skin-golden body a.mobile-menu-btn.btn,
html.skin-golden body div.social-links > a.btn,
html.skin-golden body span.call-us-button a.btn,
html.skin-golden span.icon-bg.circle   {
	background-color: #444;
}

html.skin-golden body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-golden a,
html.skin-golden a:visited,
html.skin-golden .widget_rss h3 a:hover,
html.skin-golden body a:hover,
html.skin-golden body a:visited:hover,
html.skin-golden .main .tabs > li > a,
html.skin-golden .tabs > li > a,
html.skin-golden blockquote,
html.skin-golden span.pullquote,
html.skin-golden div.video-embed-shortcode:hover,
html.skin-golden div#map_canvas:hover,
html.skin-golden div.recent-posts h5 a:hover,
html.skin-golden div.recent-posts article.item div.description a,
html.skin-golden div.recent-posts article.item div.description a:visited,
html.skin-golden ul#filters li div:hover,
html.skin-golden article.item div.description a:hover,
html.skin-golden .comment a,
html.skin-golden .comment a:visited,
html.skin-golden .comment a:hover,
html.skin-golden .comment .message a.reply:hover,
html.skin-golden .paginators ul.page-numbers li a.prev:hover,
html.skin-golden .paginators ul.page-numbers li a.next:hover,
html.skin-golden ul#filters li div.current {
	color: #BD9E24;
}

html.skin-golden div.plan.featured {
	background-color: #FFFBEC;
}

html.skin-golden body div.alert-message  a.close {
	color: black;
}

html.skin-golden body div.recent-posts article.item div.description p.post-meta a,
html.skin-golden body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-golden body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-golden body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-golden body span.categories a,
html.skin-golden body ul.page-numbers > li > span,
html.skin-golden ul.page-numbers > li > a.page-numbers,
html.skin-golden body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #BD9E24;
}

html.skin-golden body ul.page-numbers > li > a.page-numbers.next,
html.skin-golden body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #BD9E24;
}

html.skin-golden input:focus,
html.skin-golden textarea:focus,
html.skin-golden .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(255, 218, 71, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 218, 71, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 218, 71, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 218, 71, 0.6);
}

html.skin-golden .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-golden a.image-link:hover,  html.skin-golden .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #ffda47;
}

html.no-touch.ie8.skin-golden a.image-link:hover,
html.ie8.skin-golden .embed-wrapper:hover {
	border: 1px solid #ffda47;
}

html.skin-golden .flex-control-nav li a.icon-pause.is-paused,
html.skin-golden div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #ffda47;
	color: #BD9E24;
}

/* Grey */

html.skin-grey div.header-bg-fill {
	background: #c3d1d8; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNjM2QxZDgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjkzMjM3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#293237), color-stop(100%,#c3d1d8));

	background: -moz-radial-gradient(center, ellipse cover,  #c3d1d8 0%, #293237 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#c3d1d8), color-stop(100%,#293237)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #c3d1d8 0%,#293237 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #c3d1d8 0%,#293237 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #c3d1d8 0%,#293237 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #c3d1d8 0%,#293237 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3d1d8', endColorstr='#293237',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}


html.skin-grey ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-grey div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #6E7D85;
}

html.skin-grey body span.call-us-button a.btn,
html.skin-grey .btn,
html.skin-grey a.btn,
html.skin-grey a.btn:visited,
html.skin-grey body a.btn,
html.skin-grey body a.btn:visited,
html.skin-grey button,
html.skin-grey .wpcf7-submit,
html.skin-grey input[type="submit"],
html.skin-grey body div.social-links > a.btn,
html.skin-grey a.accordion-toggle,
html.skin-grey a.accordion-toggle:visited,
html.skin-grey a.accordion-toggle:hover,
html.skin-grey .main .tabs > li > a,
html.skin-grey .tabs > li > a,
html.skin-grey body .main .tabs > li > a,
html.skin-grey body .tabs > li > a
{
	background-color: #6E7D85;
	color: white;
}

html.skin-grey body a.mobile-menu-btn.btn,
html.skin-grey body div.social-links > a.btn,
html.skin-grey body span.call-us-button a.btn,
html.skin-grey span.icon-bg.circle   {
	background-color: #444;
}

html.skin-grey body span.call-us-button a.btn {
	/*	background-color: #3BC43D;*/

}

html.skin-grey a,
html.skin-grey a:visited,
html.skin-grey .widget_rss h3 a:hover,
html.skin-grey body a:hover,
html.skin-grey body a:visited:hover,
html.skin-grey .main .tabs > li > a,
html.skin-grey .tabs > li > a,
html.skin-grey blockquote,
html.skin-grey span.pullquote,
html.skin-grey div.video-embed-shortcode:hover,
html.skin-grey div#map_canvas:hover,
html.skin-grey div.recent-posts h5 a:hover,
html.skin-grey div.recent-posts article.item div.description a,
html.skin-grey div.recent-posts article.item div.description a:visited,
html.skin-grey ul#filters li div:hover,
html.skin-grey article.item div.description a:hover,
html.skin-grey .comment a,
html.skin-grey .comment a:visited,
html.skin-grey .comment a:hover,
html.skin-grey .comment .message a.reply:hover,
html.skin-grey .paginators ul.page-numbers li a.prev:hover,
html.skin-grey .paginators ul.page-numbers li a.next:hover,
html.skin-grey ul#filters li div.current {
	color: #6E7D85;
}

html.skin-grey div.plan.featured {
	background-color: #F0F4F7;
}

html.skin-grey body div.alert-message  a.close {
	color: black;
}

html.skin-grey body div.recent-posts article.item div.description p.post-meta a,
html.skin-grey body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-grey body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-grey body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-grey body span.categories a,
html.skin-grey body ul.page-numbers > li > span,
html.skin-grey ul.page-numbers > li > a.page-numbers,
html.skin-grey body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #6E7D85;
}

html.skin-grey body ul.page-numbers > li > a.page-numbers.next,
html.skin-grey body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #6E7D85;
}

html.skin-grey input:focus,
html.skin-grey textarea:focus,
html.skin-grey .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(113, 138, 153, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(113, 138, 153, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(113, 138, 153, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(113, 138, 153, 0.6);
}

html.skin-grey .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-grey a.image-link:hover,  html.skin-grey .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #81A6C7;
}

html.no-touch.ie8.skin-grey a.image-link:hover,
html.ie8.skin-grey .embed-wrapper:hover {
	border: 1px solid #81A6C7;
}

html.skin-grey .flex-control-nav li a.icon-pause.is-paused,
html.skin-grey div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #81A6C7;
	color: #6E7D85;
}


/* Lime Green */

html.skin-lime-green div.header-bg-fill {
	background: #b8c900; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNiOGM5MDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNWY4MjAyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5f8202), color-stop(100%,#b8c900));

	background: -moz-radial-gradient(center, ellipse cover,  #b8c900 0%, #5f8202 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#b8c900), color-stop(100%,#5f8202)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #b8c900 0%,#5f8202 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #b8c900 0%,#5f8202 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #b8c900 0%,#5f8202 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #b8c900 0%,#5f8202 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8c900', endColorstr='#5f8202',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-lime-green ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-lime-green div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #8AB614;
}

html.skin-lime-green body span.call-us-button a.btn,
html.skin-lime-green .btn,
html.skin-lime-green a.btn,
html.skin-lime-green a.btn:visited,
html.skin-lime-green body a.btn,
html.skin-lime-green body a.btn:visited,
html.skin-lime-green button,
html.skin-lime-green .wpcf7-submit,
html.skin-lime-green input[type="submit"],
html.skin-lime-green body div.social-links > a.btn,
html.skin-lime-green a.accordion-toggle,
html.skin-lime-green a.accordion-toggle:visited,
html.skin-lime-green a.accordion-toggle:hover,
html.skin-lime-green .main .tabs > li > a,
html.skin-lime-green .tabs > li > a,
html.skin-lime-green body .main .tabs > li > a,
html.skin-lime-green body .tabs > li > a
{
	background-color: #8AB614;
	color: white;
}

html.skin-lime-green body a.mobile-menu-btn.btn,
html.skin-lime-green body div.social-links > a.btn,
html.skin-lime-green body span.call-us-button a.btn,
html.skin-lime-green span.icon-bg.circle   {
	background-color: #444;
}

html.skin-lime-green body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-lime-green a,
html.skin-lime-green a:visited,
html.skin-lime-green .widget_rss h3 a:hover,
html.skin-lime-green body a:hover,
html.skin-lime-green body a:visited:hover,
html.skin-lime-green .main .tabs > li > a,
html.skin-lime-green .tabs > li > a,
html.skin-lime-green blockquote,
html.skin-lime-green span.pullquote,
html.skin-lime-green div.video-embed-shortcode:hover,
html.skin-lime-green div#map_canvas:hover,
html.skin-lime-green div.recent-posts h5 a:hover,
html.skin-lime-green div.recent-posts article.item div.description a,
html.skin-lime-green div.recent-posts article.item div.description a:visited,
html.skin-lime-green ul#filters li div:hover,
html.skin-lime-green article.item div.description a:hover,
html.skin-lime-green .comment a,
html.skin-lime-green .comment a:visited,
html.skin-lime-green .comment a:hover,
html.skin-lime-green .comment .message a.reply:hover,
html.skin-lime-green .paginators ul.page-numbers li a.prev:hover,
html.skin-lime-green .paginators ul.page-numbers li a.next:hover,
html.skin-lime-green ul#filters li div.current {
	color: #8AB614;
}

html.skin-lime-green div.plan.featured {
	background-color: #FAFFED;
}

html.skin-lime-green body div.alert-message  a.close {
	color: black;
}

html.skin-lime-green body div.recent-posts article.item div.description p.post-meta a,
html.skin-lime-green body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-lime-green body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-lime-green body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-lime-green body span.categories a,
html.skin-lime-green body ul.page-numbers > li > span,
html.skin-lime-green ul.page-numbers > li > a.page-numbers,
html.skin-lime-green body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #8AB614;
}

html.skin-lime-green body ul.page-numbers > li > a.page-numbers.next,
html.skin-lime-green body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #8AB614;
}

html.skin-lime-green input:focus,
html.skin-lime-green textarea:focus,
html.skin-lime-green .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(184, 201, 0, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(184, 201, 0, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(184, 201, 0, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(184, 201, 0, 0.6);
}

html.skin-lime-green .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-lime-green a.image-link:hover,  html.skin-lime-green .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #C6D23F;
}

html.no-touch.ie8.skin-lime-green a.image-link:hover,
html.ie8.skin-lime-green .embed-wrapper:hover {
	border: 1px solid #C6D23F;
}

html.skin-lime-green .flex-control-nav li a.icon-pause.is-paused,
html.skin-lime-green div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #C6D23F;
	color: #8AB614;
}


/* Periwinkle */

html.skin-periwinkle div.header-bg-fill {
	background: #6487ff; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM2NDg3ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNTUyMjZmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#55226f), color-stop(100%,#6487ff));

	background: -moz-radial-gradient(center, ellipse cover,  #6487ff 0%, #55226f 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#6487ff), color-stop(100%,#55226f)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #6487ff 0%,#55226f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #6487ff 0%,#55226f 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #6487ff 0%,#55226f 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #6487ff 0%,#55226f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6487ff', endColorstr='#55226f',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-periwinkle ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-periwinkle div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #6255C5;
}

html.skin-periwinkle body span.call-us-button a.btn,
html.skin-periwinkle .btn,
html.skin-periwinkle a.btn,
html.skin-periwinkle a.btn:visited,
html.skin-periwinkle body a.btn,
html.skin-periwinkle body a.btn:visited,
html.skin-periwinkle button,
html.skin-periwinkle .wpcf7-submit,
html.skin-periwinkle input[type="submit"],
html.skin-periwinkle body div.social-links > a.btn,
html.skin-periwinkle a.accordion-toggle,
html.skin-periwinkle a.accordion-toggle:visited,
html.skin-periwinkle a.accordion-toggle:hover,
html.skin-periwinkle .main .tabs > li > a,
html.skin-periwinkle .tabs > li > a,
html.skin-periwinkle body .main .tabs > li > a,
html.skin-periwinkle body .tabs > li > a
{
	background-color: #6255C5;
	color: white;
}

html.skin-periwinkle body a.mobile-menu-btn.btn,
html.skin-periwinkle body div.social-links > a.btn,
html.skin-periwinkle body span.call-us-button a.btn,
html.skin-periwinkle span.icon-bg.circle   {
	background-color: #444;
}

html.skin-periwinkle body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-periwinkle a,
html.skin-periwinkle a:visited,
html.skin-periwinkle .widget_rss h3 a:hover,
html.skin-periwinkle body a:hover,
html.skin-periwinkle body a:visited:hover,
html.skin-periwinkle .main .tabs > li > a,
html.skin-periwinkle .tabs > li > a,
html.skin-periwinkle blockquote,
html.skin-periwinkle span.pullquote,
html.skin-periwinkle div.video-embed-shortcode:hover,
html.skin-periwinkle div#map_canvas:hover,
html.skin-periwinkle div.recent-posts h5 a:hover,
html.skin-periwinkle div.recent-posts article.item div.description a,
html.skin-periwinkle div.recent-posts article.item div.description a:visited,
html.skin-periwinkle ul#filters li div:hover,
html.skin-periwinkle article.item div.description a:hover,
html.skin-periwinkle .comment a,
html.skin-periwinkle .comment a:visited,
html.skin-periwinkle .comment a:hover,
html.skin-periwinkle .comment .message a.reply:hover,
html.skin-periwinkle .paginators ul.page-numbers li a.prev:hover,
html.skin-periwinkle .paginators ul.page-numbers li a.next:hover,
html.skin-periwinkle ul#filters li div.current {
	color: #6255C5;
}

html.skin-periwinkle div.plan.featured {
	background-color: #F6F5FF;
}

html.skin-periwinkle body div.alert-message  a.close {
	color: black;
}

html.skin-periwinkle body div.recent-posts article.item div.description p.post-meta a,
html.skin-periwinkle body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-periwinkle body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-periwinkle body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-periwinkle body span.categories a,
html.skin-periwinkle body ul.page-numbers > li > span,
html.skin-periwinkle ul.page-numbers > li > a.page-numbers,
html.skin-periwinkle body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #6255C5;
}

html.skin-periwinkle body ul.page-numbers > li > a.page-numbers.next,
html.skin-periwinkle body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #6255C5;
}

html.skin-periwinkle input:focus,
html.skin-periwinkle textarea:focus,
html.skin-periwinkle .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(100, 135, 255, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(100, 135, 255, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(100, 135, 255, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(100, 135, 255, 0.6);
}

html.skin-periwinkle .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-periwinkle a.image-link:hover,  html.skin-periwinkle .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #6487FF;
}

html.no-touch.ie8.skin-periwinkle a.image-link:hover,
html.ie8.skin-periwinkle .embed-wrapper:hover {
	border: 1px solid #6487FF;
}


html.skin-periwinkle .flex-control-nav li a.icon-pause.is-paused,
html.skin-periwinkle div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #6487FF;
	color: #6487FF;
}


/* Pink */

html.skin-pink div.header-bg-fill {
	background: #ff84cf; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjg0Y2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjOGExNDQ5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8a1449), color-stop(100%,#ff84cf));

	background: -moz-radial-gradient(center, ellipse cover,  #ff84cf 0%, #8a1449 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ff84cf), color-stop(100%,#8a1449)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ff84cf 0%,#8a1449 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ff84cf 0%,#8a1449 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ff84cf 0%,#8a1449 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ff84cf 0%,#8a1449 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff84cf', endColorstr='#8a1449',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-pink ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-pink div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #CE5592;
}


html.skin-pink body span.call-us-button a.btn,
html.skin-pink .btn,
html.skin-pink a.btn,
html.skin-pink a.btn:visited,
html.skin-pink body a.btn,
html.skin-pink body a.btn:visited,
html.skin-pink button,
html.skin-pink .wpcf7-submit,
html.skin-pink input[type="submit"],
html.skin-pink body div.social-links > a.btn,
html.skin-pink a.accordion-toggle,
html.skin-pink a.accordion-toggle:visited,
html.skin-pink a.accordion-toggle:hover,
html.skin-pink .main .tabs > li > a,
html.skin-pink .tabs > li > a,
html.skin-pink body .main .tabs > li > a,
html.skin-pink body .tabs > li > a
{
	background-color: #CE5592;
	color: white;
}

html.skin-pink body a.mobile-menu-btn.btn,
html.skin-pink body div.social-links > a.btn,
html.skin-pink body span.call-us-button a.btn,
html.skin-pink span.icon-bg.circle   {
	background-color: #444;
}

html.skin-pink body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-pink a,
html.skin-pink a:visited,
html.skin-pink .widget_rss h3 a:hover,
html.skin-pink body a:hover,
html.skin-pink body a:visited:hover,
html.skin-pink .main .tabs > li > a,
html.skin-pink .tabs > li > a,
html.skin-pink blockquote,
html.skin-pink span.pullquote,
html.skin-pink div.video-embed-shortcode:hover,
html.skin-pink div#map_canvas:hover,
html.skin-pink div.recent-posts h5 a:hover,
html.skin-pink div.recent-posts article.item div.description a,
html.skin-pink div.recent-posts article.item div.description a:visited,
html.skin-pink ul#filters li div:hover,
html.skin-pink article.item div.description a:hover,
html.skin-pink .comment a,
html.skin-pink .comment a:visited,
html.skin-pink .comment a:hover,
html.skin-pink .comment .message a.reply:hover,
html.skin-pink .paginators ul.page-numbers li a.prev:hover,
html.skin-pink .paginators ul.page-numbers li a.next:hover,
html.skin-pink ul#filters li div.current {
	color: #CE5592;
}

html.skin-pink div.plan.featured {
	background-color: #FFF0F9;
}

html.skin-pink body div.alert-message  a.close {
	color: black;
}

html.skin-pink body div.recent-posts article.item div.description p.post-meta a,
html.skin-pink body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-pink body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-pink body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-pink body span.categories a,
html.skin-pink body ul.page-numbers > li > span,
html.skin-pink ul.page-numbers > li > a.page-numbers,
html.skin-pink body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #CE5592;
}

html.skin-pink body ul.page-numbers > li > a.page-numbers.next,
html.skin-pink body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #CE5592;
}

html.skin-pink input:focus,
html.skin-pink textarea:focus,
html.skin-pink .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(206, 85, 146, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 132, 207, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 132, 207, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 132, 207, 0.6);
}

html.skin-pink .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-pink a.image-link:hover,  html.skin-pink .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #FF84CF;
}

html.no-touch.ie8.skin-pink a.image-link:hover,
html.ie8.skin-pink .embed-wrapper:hover {
	border: 1px solid #FF84CF;
}

html.skin-pink .flex-control-nav li a.icon-pause.is-paused,
html.skin-pink div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #FF84CF;
	color: #FF84CF;
}


/* Purple */

html.skin-purple div.header-bg-fill {
	background: #ee75a7; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNlZTc1YTciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDExZjJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#411f2d), color-stop(100%,#ee75a7));

	background: -moz-radial-gradient(center, ellipse cover,  #ee75a7 0%, #411f2d 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ee75a7), color-stop(100%,#411f2d)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ee75a7 0%,#411f2d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ee75a7 0%,#411f2d 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ee75a7 0%,#411f2d 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ee75a7 0%,#411f2d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee75a7', endColorstr='#411f2d',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-purple ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-purple div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #A04C6E;
}


html.skin-purple body span.call-us-button a.btn,
html.skin-purple .btn,
html.skin-purple a.btn,
html.skin-purple a.btn:visited,
html.skin-purple body a.btn,
html.skin-purple body a.btn:visited,
html.skin-purple button,
html.skin-purple .wpcf7-submit,
html.skin-purple input[type="submit"],
html.skin-purple body div.social-links > a.btn,
html.skin-purple a.accordion-toggle,
html.skin-purple a.accordion-toggle:visited,
html.skin-purple a.accordion-toggle:hover,
html.skin-purple .main .tabs > li > a,
html.skin-purple .tabs > li > a,
html.skin-purple body .main .tabs > li > a,
html.skin-purple body .tabs > li > a
{
	background-color: #A04C6E;
	color: white;
}

html.skin-purple body a.mobile-menu-btn.btn,
html.skin-purple body div.social-links > a.btn,
html.skin-purple body span.call-us-button a.btn,
html.skin-purple span.icon-bg.circle   {
	background-color: #444;
}

html.skin-purple body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-purple a,
html.skin-purple a:visited,
html.skin-purple .widget_rss h3 a:hover,
html.skin-purple body a:hover,
html.skin-purple body a:visited:hover,
html.skin-purple .main .tabs > li > a,
html.skin-purple .tabs > li > a,
html.skin-purple blockquote,
html.skin-purple span.pullquote,
html.skin-purple div.video-embed-shortcode:hover,
html.skin-purple div#map_canvas:hover,
html.skin-purple div.recent-posts h5 a:hover,
html.skin-purple div.recent-posts article.item div.description a,
html.skin-purple div.recent-posts article.item div.description a:visited,
html.skin-purple ul#filters li div:hover,
html.skin-purple article.item div.description a:hover,
html.skin-purple .comment a,
html.skin-purple .comment a:visited,
html.skin-purple .comment a:hover,
html.skin-purple .comment .message a.reply:hover,
html.skin-purple .paginators ul.page-numbers li a.prev:hover,
html.skin-purple .paginators ul.page-numbers li a.next:hover,
html.skin-purple ul#filters li div.current {
	color: #A04C6E;
}

html.skin-purple div.plan.featured {
	background-color: #FFEFF5;
}

html.skin-purple body div.alert-message  a.close {
	color: black;
}

html.skin-purple body div.recent-posts article.item div.description p.post-meta a,
html.skin-purple body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-purple body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-purple body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-purple body span.categories a,
html.skin-purple body ul.page-numbers > li > span,
html.skin-purple ul.page-numbers > li > a.page-numbers,
html.skin-purple body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #A04C6E;
}

html.skin-purple body ul.page-numbers > li > a.page-numbers.next,
html.skin-purple body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #A04C6E;
}

html.skin-purple input:focus,
html.skin-purple textarea:focus,
html.skin-purple .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(160, 76, 110, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 162, 197, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 162, 197, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(255, 162, 197, 0.6);
}

html.skin-purple .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-purple a.image-link:hover,  html.skin-purple .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #FFA2C5;
}

html.no-touch.ie8.skin-purple a.image-link:hover,
html.ie8.skin-purple .embed-wrapper:hover {
	border: 1px solid #FFA2C5;
}

html.skin-purple .flex-control-nav li a.icon-pause.is-paused,
html.skin-purple div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #FFA2C5;
	color: #A04C6E;
}


/* Royal Blue */

html.skin-royal-blue div.header-bg-fill {
	background: #9dc2eb; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM5ZGMyZWIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMWYzZTVlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f3e5e), color-stop(100%,#9dc2eb));

	background: -moz-radial-gradient(center, ellipse cover,  #9dc2eb 0%, #1f3e5e 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#9dc2eb), color-stop(100%,#1f3e5e)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #9dc2eb 0%,#1f3e5e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #9dc2eb 0%,#1f3e5e 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #9dc2eb 0%,#1f3e5e 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #9dc2eb 0%,#1f3e5e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dc2eb', endColorstr='#1f3e5e',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-royal-blue ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-royal-blue div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #4C81BB;
}


html.skin-royal-blue body span.call-us-button a.btn,
html.skin-royal-blue .btn,
html.skin-royal-blue a.btn,
html.skin-royal-blue a.btn:visited,
html.skin-royal-blue body a.btn,
html.skin-royal-blue body a.btn:visited,
html.skin-royal-blue button,
html.skin-royal-blue .wpcf7-submit,
html.skin-royal-blue input[type="submit"],
html.skin-royal-blue body div.social-links > a.btn,
html.skin-royal-blue a.accordion-toggle,
html.skin-royal-blue a.accordion-toggle:visited,
html.skin-royal-blue a.accordion-toggle:hover,
html.skin-royal-blue .main .tabs > li > a,
html.skin-royal-blue .tabs > li > a,
html.skin-royal-blue body .main .tabs > li > a,
html.skin-royal-blue body .tabs > li > a
{
	background-color: #4C81BB;
	color: white;
}

html.skin-royal-blue body a.mobile-menu-btn.btn,
html.skin-royal-blue body div.social-links > a.btn,
html.skin-royal-blue body span.call-us-button a.btn,
html.skin-royal-blue span.icon-bg.circle   {
	background-color: #444;
}

html.skin-royal-blue body span.call-us-button a.btn {
	/*	background-color: #FAF834;*/

}

html.skin-royal-blue a,
html.skin-royal-blue a:visited,
html.skin-royal-blue .widget_rss h3 a:hover,
html.skin-royal-blue body a:hover,
html.skin-royal-blue body a:visited:hover,
html.skin-royal-blue .main .tabs > li > a,
html.skin-royal-blue .tabs > li > a,
html.skin-royal-blue blockquote,
html.skin-royal-blue span.pullquote,
html.skin-royal-blue div.video-embed-shortcode:hover,
html.skin-royal-blue div#map_canvas:hover,
html.skin-royal-blue div.recent-posts h5 a:hover,
html.skin-royal-blue div.recent-posts article.item div.description a,
html.skin-royal-blue div.recent-posts article.item div.description a:visited,
html.skin-royal-blue ul#filters li div:hover,
html.skin-royal-blue article.item div.description a:hover,
html.skin-royal-blue .comment a,
html.skin-royal-blue .comment a:visited,
html.skin-royal-blue .comment a:hover,
html.skin-royal-blue .comment .message a.reply:hover,
html.skin-royal-blue .paginators ul.page-numbers li a.prev:hover,
html.skin-royal-blue .paginators ul.page-numbers li a.next:hover,
html.skin-royal-blue ul#filters li div.current {
	color: #4C81BB;
}

html.skin-royal-blue div.plan.featured {
	background-color: #EFF7FF;
}

html.skin-royal-blue body div.alert-message  a.close {
	color: black;
}

html.skin-royal-blue body div.recent-posts article.item div.description p.post-meta a,
html.skin-royal-blue body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-royal-blue body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-royal-blue body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-royal-blue body span.categories a,
html.skin-royal-blue body ul.page-numbers > li > span,
html.skin-royal-blue ul.page-numbers > li > a.page-numbers,
html.skin-royal-blue body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #4C81BB;
}

html.skin-royal-blue body ul.page-numbers > li > a.page-numbers.next,
html.skin-royal-blue body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #4C81BB;
}

html.skin-royal-blue input:focus,
html.skin-royal-blue textarea:focus,
html.skin-royal-blue .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(92, 157, 227, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(101, 172, 248, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(101, 172, 248, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(101, 172, 248, 0.6);
}

html.skin-royal-blue .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-royal-blue a.image-link:hover,  html.skin-royal-blue .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #5C9DE3;
}

html.no-touch.ie8.skin-royal-blue a.image-link:hover,
html.ie8.skin-royal-blue .embed-wrapper:hover {
	border: 1px solid #5C9DE3;
}

html.skin-royal-blue .flex-control-nav li a.icon-pause.is-paused,
html.skin-royal-blue div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #5C9DE3;
	color: #5C9DE3;
}

/* Silver */

html.skin-silver div.header-bg-fill {
	background: #e4e4e4; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNlNGU0ZTQiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNmQ2ZDZkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6d6d6d), color-stop(100%,#e4e4e4));

	background: -moz-radial-gradient(center, ellipse cover,  #e4e4e4 0%, #6d6d6d 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#e4e4e4), color-stop(100%,#6d6d6d)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #e4e4e4 0%,#6d6d6d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #e4e4e4 0%,#6d6d6d 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #e4e4e4 0%,#6d6d6d 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #e4e4e4 0%,#6d6d6d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#6d6d6d',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-silver ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-silver div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #aaa;
}

html.skin-silver body span.call-us-button a.btn,
html.skin-silver .btn,
html.skin-silver a.btn,
html.skin-silver a.btn:visited,
html.skin-silver body a.btn,
html.skin-silver body a.btn:visited,
html.skin-silver button,
html.skin-silver .wpcf7-submit,
html.skin-silver input[type="submit"],
html.skin-silver body div.social-links > a.btn,
html.skin-silver a.accordion-toggle,
html.skin-silver a.accordion-toggle:visited,
html.skin-silver a.accordion-toggle:hover,
html.skin-silver .main .tabs > li > a,
html.skin-silver .tabs > li > a,
html.skin-silver body .main .tabs > li > a,
html.skin-silver body .tabs > li > a
{
	background-color: #aaa;
	color: white;
}

html.skin-silver body a.mobile-menu-btn.btn,
html.skin-silver body div.social-links > a.btn,
html.skin-silver body span.call-us-button a.btn,
html.skin-silver span.icon-bg.circle   {
	background-color: #444;
}

html.skin-silver body span.call-us-button a.btn {
	/*	background-color: #55BE18;*/

}

html.skin-silver a,
html.skin-silver a:visited,
html.skin-silver .widget_rss h3 a:hover,
html.skin-silver body a:hover,
html.skin-silver body a:visited:hover,
html.skin-silver .main .tabs > li > a,
html.skin-silver .tabs > li > a,
html.skin-silver blockquote,
html.skin-silver span.pullquote,
html.skin-silver div.video-embed-shortcode:hover,
html.skin-silver div#map_canvas:hover,
html.skin-silver div.recent-posts h5 a:hover,
html.skin-silver div.recent-posts article.item div.description a,
html.skin-silver div.recent-posts article.item div.description a:visited,
html.skin-silver ul#filters li div:hover,
html.skin-silver article.item div.description a:hover,
html.skin-silver .comment a,
html.skin-silver .comment a:visited,
html.skin-silver .comment a:hover,
html.skin-silver .comment .message a.reply:hover,
html.skin-silver .paginators ul.page-numbers li a.prev:hover,
html.skin-silver .paginators ul.page-numbers li a.next:hover,
html.skin-silver ul#filters li div.current {
	color: #999;
}

html.skin-silver div.plan.featured {
	background-color: #f4f4f4;
}

html.skin-silver body div.alert-message  a.close {
	color: black;
}

html.skin-silver body div.recent-posts article.item div.description p.post-meta a,
html.skin-silver body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-silver body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-silver body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-silver body span.categories a,
html.skin-silver body ul.page-numbers > li > span,
html.skin-silver ul.page-numbers > li > a.page-numbers,
html.skin-silver body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #999;
}

html.skin-silver body ul.page-numbers > li > a.page-numbers.next,
html.skin-silver body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #999;
}

html.skin-silver input:focus,
html.skin-silver textarea:focus,
html.skin-silver .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(170, 170, 170, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(200, 200, 200, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(200, 200, 200, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(200, 200, 200, 0.6);
}

html.skin-silver .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-silver a.image-link:hover,  html.skin-silver .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #999;
}

html.no-touch.ie8.skin-silver a.image-link:hover,
html.ie8.skin-silver .embed-wrapper:hover {
	border: 1px solid #999;
}

html.skin-silver .flex-control-nav li a.icon-pause.is-paused,
html.skin-silver div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #999;
	color: #999;
}


/* Sky Blue */

html.skin-sky-blue div.header-bg-fill {
	background: #00ccff; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMGNjZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDA3NTliIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00759b), color-stop(100%,#00ccff));

	background: -moz-radial-gradient(center, ellipse cover,  #00ccff 0%, #00759b 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#00ccff), color-stop(100%,#00759b)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #00ccff 0%,#00759b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #00ccff 0%,#00759b 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #00ccff 0%,#00759b 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #00ccff 0%,#00759b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ccff', endColorstr='#00759b',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}


html.skin-sky-blue ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-sky-blue div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #009ED1;
}

html.skin-sky-blue body span.call-us-button a.btn,
html.skin-sky-blue .btn,
html.skin-sky-blue a.btn,
html.skin-sky-blue a.btn:visited,
html.skin-sky-blue body a.btn,
html.skin-sky-blue body a.btn:visited,
html.skin-sky-blue button,
html.skin-sky-blue .wpcf7-submit,
html.skin-sky-blue input[type="submit"],
html.skin-sky-blue body div.social-links > a.btn,
html.skin-sky-blue a.accordion-toggle,
html.skin-sky-blue a.accordion-toggle:visited,
html.skin-sky-blue a.accordion-toggle:hover,
html.skin-sky-blue .main .tabs > li > a,
html.skin-sky-blue .tabs > li > a,
html.skin-sky-blue body .main .tabs > li > a,
html.skin-sky-blue body .tabs > li > a
{
	background-color: #009ED1;
	color: white;
}

html.skin-sky-blue body a.mobile-menu-btn.btn,
html.skin-sky-blue body div.social-links > a.btn,
html.skin-sky-blue body span.call-us-button a.btn,
html.skin-sky-blue span.icon-bg.circle   {
	background-color: #444;
}

html.skin-sky-blue body span.call-us-button a.btn {
	/*	background-color: #D16900;*/

}

html.skin-sky-blue a,
html.skin-sky-blue a:visited,
html.skin-sky-blue .widget_rss h3 a:hover,
html.skin-sky-blue body a:hover,
html.skin-sky-blue body a:visited:hover,
html.skin-sky-blue .main .tabs > li > a,
html.skin-sky-blue .tabs > li > a,
html.skin-sky-blue blockquote,
html.skin-sky-blue span.pullquote,
html.skin-sky-blue div.video-embed-shortcode:hover,
html.skin-sky-blue div#map_canvas:hover,
html.skin-sky-blue div.recent-posts h5 a:hover,
html.skin-sky-blue div.recent-posts article.item div.description a,
html.skin-sky-blue div.recent-posts article.item div.description a:visited,
html.skin-sky-blue ul#filters li div:hover,
html.skin-sky-blue article.item div.description a:hover,
html.skin-sky-blue .comment a,
html.skin-sky-blue .comment a:visited,
html.skin-sky-blue .comment a:hover,
html.skin-sky-blue .comment .message a.reply:hover,
html.skin-sky-blue .paginators ul.page-numbers li a.prev:hover,
html.skin-sky-blue .paginators ul.page-numbers li a.next:hover,
html.skin-sky-blue ul#filters li div.current {
	color: #009ED1;
}

html.skin-sky-blue div.plan.featured {
	background-color: #F0FAFF;
}

html.skin-sky-blue body div.alert-message  a.close {
	color: black;
}

html.skin-sky-blue body div.recent-posts article.item div.description p.post-meta a,
html.skin-sky-blue body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-sky-blue body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-sky-blue body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-sky-blue body span.categories a,
html.skin-sky-blue body ul.page-numbers > li > span,
html.skin-sky-blue ul.page-numbers > li > a.page-numbers,
html.skin-sky-blue body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #009ED1;
}

html.skin-sky-blue body ul.page-numbers > li > a.page-numbers.next,
html.skin-sky-blue body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #009ED1;
}

html.skin-sky-blue input:focus,
html.skin-sky-blue textarea:focus,
html.skin-sky-blue .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(0, 204, 255, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 204, 255, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 204, 255, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 204, 255, 0.6);
}

html.skin-sky-blue .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-sky-blue a.image-link:hover,  html.skin-sky-blue .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #00ccff;
}

html.no-touch.ie8.skin-sky-blue a.image-link:hover,
html.ie8.skin-sky-blue .embed-wrapper:hover {
	border: 1px solid #00ccff;
}

html.skin-sky-blue .flex-control-nav li a.icon-pause.is-paused,
html.skin-sky-blue div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #00ccff;
	color: #00ccff;
}



/* Teal Skin */

html.skin-teal div.header-bg-fill {
	background: #6cecd9; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM2Y2VjZDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjE0ZDQ2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#214d46), color-stop(100%,#6cecd9));

	background: -moz-radial-gradient(center, ellipse cover,  #6cecd9 0%, #214d46 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#6cecd9), color-stop(100%,#214d46)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #6cecd9 0%,#214d46 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #6cecd9 0%,#214d46 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #6cecd9 0%,#214d46 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #6cecd9 0%,#214d46 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6cecd9', endColorstr='#214d46',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.skin-teal ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-teal div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #4D998F;
}

html.skin-teal body span.call-us-button a.btn,
html.skin-teal .btn,
html.skin-teal a.btn,
html.skin-teal a.btn:visited,
html.skin-teal body a.btn,
html.skin-teal body a.btn:visited,
html.skin-teal button,
html.skin-teal .wpcf7-submit,
html.skin-teal input[type="submit"],
html.skin-teal body div.social-links > a.btn,
html.skin-teal a.accordion-toggle,
html.skin-teal a.accordion-toggle:visited,
html.skin-teal a.accordion-toggle:hover,
html.skin-teal .main .tabs > li > a,
html.skin-teal .tabs > li > a,
html.skin-teal body .main .tabs > li > a,
html.skin-teal body .tabs > li > a
{
	background-color: #4D998F;
	color: white;
}

html.skin-teal body a.mobile-menu-btn.btn,
html.skin-teal body div.social-links > a.btn,
html.skin-teal body span.call-us-button a.btn,
html.skin-teal span.icon-bg.circle   {
	background-color: #444;
}

html.skin-teal body span.call-us-button a.btn {
	/*	background-color: #CC5452;*/

}


html.skin-teal a,
html.skin-teal a:visited,
html.skin-teal .widget_rss h3 a:hover,
html.skin-teal body a:hover,
html.skin-teal body a:visited:hover,
html.skin-teal .main .tabs > li > a,
html.skin-teal .tabs > li > a,
html.skin-teal blockquote,
html.skin-teal span.pullquote,
html.skin-teal div.video-embed-shortcode:hover,
html.skin-teal div#map_canvas:hover,
html.skin-teal div.recent-posts h5 a:hover,
html.skin-teal div.recent-posts article.item div.description a,
html.skin-teal div.recent-posts article.item div.description a:visited,
html.skin-teal ul#filters li div:hover,
html.skin-teal article.item div.description a:hover,
html.skin-teal .comment a,
html.skin-teal .comment a:visited,
html.skin-teal .comment a:hover,
html.skin-teal .comment .message a.reply:hover,
html.skin-teal .paginators ul.page-numbers li a.prev:hover,
html.skin-teal .paginators ul.page-numbers li a.next:hover,
html.skin-teal ul#filters li div.current {
	color: #4D998F;
}

html.skin-teal div.plan.featured {
	background-color: #E7F8F6;
}

html.skin-teal body div.alert-message  a.close {
	color: black;
}

html.skin-teal body div.recent-posts article.item div.description p.post-meta a,
html.skin-teal body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-teal body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-teal body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-teal body span.categories a,
html.skin-teal body ul.page-numbers > li > span,
html.skin-teal ul.page-numbers > li > a.page-numbers,
html.skin-teal body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #4D998F;
}

html.skin-teal body ul.page-numbers > li > a.page-numbers.next,
html.skin-teal body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #4D998F;
}

html.skin-teal input:focus,
html.skin-teal textarea:focus,
html.skin-teal .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(75, 161, 150, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(100, 225, 210, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(100, 225, 210, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(100, 225, 210, 0.6);
}

html.skin-teal .search-widget > form.search-form > fieldset.has-focus button {
	/*    border-color: rgba(75, 161, 150, 0.8);*/
}

html.no-touch.skin-teal a.image-link:hover,  html.skin-teal .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #64E1D2;
}

html.no-touch.ie8.skin-teal a.image-link:hover,
html.ie8.skin-teal .embed-wrapper:hover {
	border: 1px solid #64E1D2;
}

html.skin-teal .flex-control-nav li a.icon-pause.is-paused,
html.skin-teal div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #64E1D2;
	color: #4D998F;
}


/*  Teal Grey */

html.skin-teal-grey div.header-bg-fill {
	background: #9bd5db; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM5YmQ1ZGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjkzZTQxIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#293e41), color-stop(100%,#9bd5db));

	background: -moz-radial-gradient(center, ellipse cover,  #9bd5db 0%, #293e41 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#9bd5db), color-stop(100%,#293e41)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #9bd5db 0%,#293e41 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #9bd5db 0%,#293e41 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #9bd5db 0%,#293e41 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #9bd5db 0%,#293e41 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bd5db', endColorstr='#293e41',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}


html.skin-teal-grey ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-teal-grey div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #4A767C;
}

html.skin-teal-grey  body span.call-us-button a.btn,
html.skin-teal-grey  .btn,
html.skin-teal-grey  a.btn,
html.skin-teal-grey a.btn:visited,
html.skin-teal-grey body a.btn,
html.skin-teal-grey body a.btn:visited,
html.skin-teal-grey button,
html.skin-teal-grey .wpcf7-submit,
html.skin-teal-grey input[type="submit"],
html.skin-teal-grey body div.social-links > a.btn,
html.skin-teal-grey a.accordion-toggle,
html.skin-teal-grey a.accordion-toggle:visited,
html.skin-teal-grey a.accordion-toggle:hover,
html.skin-teal-grey .main .tabs > li > a,
html.skin-teal-grey .tabs > li > a,
html.skin-teal-grey body .main .tabs > li > a,
html.skin-teal-grey body .tabs > li > a
{
	background-color: #4A767C;
	color: white;
}

html.skin-teal-grey body a.mobile-menu-btn.btn,
html.skin-teal-grey body div.social-links > a.btn,
html.skin-teal-grey body span.call-us-button a.btn,
html.skin-teal-grey span.icon-bg.circle   {
	background-color: #444;
}

html.skin-teal-grey a,
html.skin-teal-grey a:visited,
html.skin-teal-grey .widget_rss h3 a:hover,
html.skin-teal-grey body a:hover,
html.skin-teal-grey body a:visited:hover,
html.skin-teal-grey .main .tabs > li > a,
html.skin-teal-grey .tabs > li > a,
html.skin-teal-grey blockquote,
html.skin-teal-grey span.pullquote,
html.skin-teal-grey div.video-embed-shortcode:hover,
html.skin-teal-grey div#map_canvas:hover,
html.skin-teal-grey div.recent-posts h5 a:hover,
html.skin-teal-grey div.recent-posts article.item div.description a,
html.skin-teal-grey div.recent-posts article.item div.description a:visited,
html.skin-teal-grey ul#filters li div:hover,
html.skin-teal-grey article.item div.description a:hover,
html.skin-teal-grey .comment a,
html.skin-teal-grey .comment a:visited,
html.skin-teal-grey .comment a:hover,
html.skin-teal-grey .comment .message a.reply:hover,
html.skin-teal-grey .paginators ul.page-numbers li a.prev:hover,
html.skin-teal-grey .paginators ul.page-numbers li a.next:hover,
html.skin-teal-grey ul#filters li div.current {
	color: #4A767C;
}

html.skin-teal-grey div.plan.featured {
	background-color: #F2FAFC;
}

html.no-touch.skin-teal-grey a.image-link:hover,  html.skin-teal-grey .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #9bd5db;
}

html.skin-teal-grey body div.alert-message  a.close {
	color: black;
}

html.skin-teal-grey body div.recent-posts article.item div.description p.post-meta a,
html.skin-teal-grey body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-teal-grey body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-teal-grey body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-teal-grey body span.categories a,
html.skin-teal-grey body ul.page-numbers > li > span,
html.skin-teal-grey ul.page-numbers > li > a.page-numbers,
html.skin-teal-grey body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #57898E;
}

html.skin-teal-grey body ul.page-numbers > li > a.page-numbers.next,
html.skin-teal-grey body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #4A767C;
}

html.skin-teal-grey input:focus,
html.skin-teal-grey textarea:focus,
html.skin-teal-grey .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(74, 118, 124, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(92, 213, 225, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(92, 213, 225, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(92, 213, 225, 0.6);
}

html.skin-teal-grey .search-widget > form.search-form > fieldset.has-focus button {
	border-color: rgba(74, 118, 124, 0.8);
}

html.skin-teal-grey .flex-control-nav li a.icon-pause.is-paused,
html.skin-teal-grey div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #9bd5db;
	color: #57898E;
}

html.no-touch.ie8.skin-teal-grey a.image-link:hover,
html.ie8.skin-teal-grey .embed-wrapper:hover {
	border: 1px solid #9bd5db;
}

/* Violet Skin */

html.skin-violet div.header-bg-fill {
	background: #cda0ff; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNjZGEwZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMzcxNDVjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#37145c), color-stop(100%,#cda0ff));

	background: -moz-radial-gradient(center, ellipse cover,  #cda0ff 0%, #37145c 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#cda0ff), color-stop(100%,#37145c)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #cda0ff 0%,#37145c 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #cda0ff 0%,#37145c 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #cda0ff 0%,#37145c 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #cda0ff 0%,#37145c 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cda0ff', endColorstr='#37145c',GradientType=0 ); /* IE6-8 fallback on horizontal gradient */
}

html.no-touch.skin-violet ul.topmenu ul.sub-menu li.sfHover > a,
html.no-touch.skin-violet div.menu-wrapper ul.topmenu ul.sub-menu li:hover > a {
	background-color: #7950A7;
}

html.skin-violet body span.call-us-button a.btn,
html.skin-violet .btn,
html.skin-violet a.btn,
html.skin-violet a.btn:visited,
html.skin-violet body a.btn,
html.skin-violet body a.btn:visited,
html.skin-violet button,
html.skin-violet .wpcf7-submit,
html.skin-violet input[type="submit"],
html.skin-violet body div.social-links > a.btn,
html.skin-violet a.accordion-toggle,
html.skin-violet a.accordion-toggle:visited,
html.skin-violet a.accordion-toggle:hover,
html.skin-violet .main .tabs > li > a,
html.skin-violet .tabs > li > a,
html.skin-violet body .main .tabs > li > a,
html.skin-violet body .tabs > li > a
{
	background-color: #7950A7;
	color: white;
}

html.skin-violet body a.mobile-menu-btn.btn,
html.skin-violet body div.social-links > a.btn,
html.skin-violet body span.call-us-button a.btn,
html.skin-violet span.icon-bg.circle   {
	background-color: #444;
}

html.skin-violet body span.call-us-button a.btn {
	/*	background-color: #40965B;*/
}

html.skin-violet a,
html.skin-violet a:visited,
html.skin-violet .widget_rss h3 a:hover,
html.skin-violet body a:hover,
html.skin-violet body a:visited:hover,
html.skin-violet .main .tabs > li > a,
html.skin-violet .tabs > li > a,
html.skin-violet blockquote,
html.skin-violet span.pullquote,
html.skin-violet div.video-embed-shortcode:hover,
html.skin-violet div#map_canvas:hover,
html.skin-violet div.recent-posts h5 a:hover,
html.skin-violet div.recent-posts article.item div.description a,
html.skin-violet div.recent-posts article.item div.description a:visited,
html.skin-violet ul#filters li div:hover,
html.skin-violet article.item div.description a:hover,
html.skin-violet .comment a,
html.skin-violet .comment a:visited,
html.skin-violet .comment a:hover,
html.skin-violet .comment .message a.reply:hover,
html.skin-violet .paginators ul.page-numbers li a.prev:hover,
html.skin-violet .paginators ul.page-numbers li a.next:hover,
html.skin-violet ul#filters li div.current {
	color: #7950A7;
}

html.skin-violet div.plan.featured {
	background-color: #F8F2FF;
}

html.no-touch.skin-violet a.image-link:hover,  html.skin-violet .embed-wrapper:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 20px #852DE3;
}

html.skin-violet body div.alert-message  a.close {
	color: black;
}

html.skin-violet body div.recent-posts article.item div.description p.post-meta a,
html.skin-violet body div.recent-posts article.item div.description p.post-meta a:visited,
html.skin-violet body div.recent-posts-shortcode div.preview-content p.post-meta a,
html.skin-violet body div.recent-posts-shortcode div.preview-content p.post-meta a:visited,
html.skin-violet body span.categories a,
html.skin-violet body ul.page-numbers > li > span,
html.skin-violet ul.page-numbers > li > a.page-numbers,
html.skin-violet body ul.page-numbers > li > a.page-numbers:visited {
	background-color: #7950A7;
}

html.skin-violet body ul.page-numbers > li > a.page-numbers.next,
html.skin-violet body ul.page-numbers > li > a.page-numbers.prev {
	background-color: transparent;
	color: #7950A7;
}

html.skin-violet input:focus,
html.skin-violet textarea:focus,
html.skin-violet .search-widget > form.search-form > fieldset.has-focus {
	border-color: rgba(133, 45, 227, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(133, 45, 227, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(133, 45, 227, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(133, 45, 227, 0.6);
}

html.skin-violet .search-widget > form.search-form > fieldset.has-focus button {
	border-color: rgba(133, 45, 227, 0.8);
}

html.skin-violet .flex-control-nav li a.icon-pause.is-paused,
html.skin-violet div#nav > div.nav-controls > a#pause.is-paused {
	text-shadow: 0.1em 0.1em 1em #852DE3;
	color: #852DE3;
}

html.no-touch.ie8.skin-violet a.image-link:hover,
html.ie8.skin-violet .embed-wrapper:hover {
	border: 1px solid #852DE3;
}

/* Needed to prevent the IE8 fallback filter from applying to IE9 */
html.ie9 div.header-bg-fill {
	filter: none;
}

/* kdev edits */

.animated div {
	background:url(trans-bg.png);
	background-color: transparent !important;
}

body div.logo a {
	margin: 0px 175px;
}

.logo > a > img {
	max-width: 100%;
	height: auto;
}

@media only screen and (max-width: 959px) and (min-width: 768px) {
	body header div.logo > a {
		background-image: none;
		margin: 0;
		width: auto;
	}
}

@media screen and (max-width: 767px) {
	body header div.logo > a {
		margin: 0;
	}
}


.sibling-menu {
	list-style: none;
	background: #4C81BB;
	padding: 0;
	margin: 0;
}

.sibling-menu li {
	display: inline-block;
	height: 3em;
}

@media (max-width: 500px) {
	.sibling-menu li {
		display: block;
	}
}

.sibling-menu li a:link,
.sibling-menu li a:visited {
	padding: 0 2em;
	text-decoration: none;
	display: block;
	height: 3em;
	line-height: 3;
	color: #ffffff;
}

.sibling-menu li:hover,
html.skin-royal-blue body .sibling-menu li a:hover,
.sibling-menu li a:active {
	color: #ffffff;
	background-color: #669BD5;
}

.sibling-menu li.current_page_item,
.sibling-menu li.current_page_item a:link,
.sibling-menu li.current_page_item a:visited {
	color: #4C81BB;
	background-color: #ffffff;
}

.subheader .pre-title {
	display: block;
	font-size: 1.5em;
	margin: 2em 0 -10px;
	text-align: center;
}

.subheader h1 {
	font-size: 40px;
	line-height: 40px;
	margin: 30px auto 30px auto;
	text-align: center;
}

.qdm-year {
	clear: both;
}

.qdm-tile {
	width:21%;
	float: left;
	margin-right: 4%;
	margin-bottom: 2em;
	background: #E8E8E8;

	font-size: 2em;
	line-height: 3;
	text-align: center;
	text-decoration: none;
}

.qdm-tile.last {
	margin-right: 0px;
}

.post-preview--news {
	margin-bottom: 0px;
}

.post-preview--news h3.post-title {
	margin-bottom: 0px;
}


ul#topmenu li.current-menu-item .sub-menu a strong {
	color: #333;
}

ul#topmenu .sub-menu li.current-menu-item a strong {
	color: #9DC2EB;
}

.site-header {
	z-index: 99999;
}

div.overlay-divider {
	z-index: 0;
}


/*
* Sidebar
*/

.sidebar-widget {
	margin-bottom: 3em;
}

.sidebar-widget h3 {
	text-align: left;
	margin-bottom: .5em;
}

.sidebar-widget ul {
	list-style: none;
	text-align: left;
	padding-left: 0px;
}

.sidebar-widget ul li {
	padding: 0.5em 0;
	margin-bottom: 0em;
	border-bottom: 1px solid #ddd;
}

.sidebar-widget ul li a:link,
.sidebar-widget ul li a:visited {
	text-decoration: none;
}

.sidebar-widget p {
	text-align: left;
	font-size: 13px;
}

.msg-global-cookie {
    border-top: 1px solid #ebebeb;
    padding: 12px 20px 12px 25px;
    display: none;
    background: #fff;
    color: #333;
    margin: 0 auto;
    text-align: center;

    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 3;

    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;

    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    font-size: 13px;
}

.msg-global-cookie span {
    margin-right: 20px;
}

.action.primary {
    background-image: none;

    color: #fff;
    cursor: pointer;
    display: inline-block;

    font-weight: 600;
    padding: 7px 15px;
    font-size: 14px;
    line-height: 16px;
    box-sizing: border-box;
    vertical-align: middle;

    text-align: center;

    background: #4C81BB;
    border: 1px solid #4C81BB;
    border-radius: 3px;
}
