﻿/*** fonts ***/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,700,800);

/*** element styles ***/
body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 1em; /* 16px */
	color: #7b7b7b;
	background-color: #ffffff;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p, div, h1, h2, h3 {
	position: relative;
	padding: 0;
	font-weight: normal;
}

h1, h2, h3 {
	font-weight: normal;
	margin: 0.5em 0;
	font-family: 'Open Sans', sans-serif;
	color: #252525
}

h1 {
	font-size: 42px;
	font-weight: 700;
}

h2 {
	font-size: 1.25em;
}

h3 {
	font-size: 16px;
	font-weight: 700;
}

a:link, a:visited, a:active {

}

a:hover, a:focus {

}

a img {
	border: none;
}
/*** globally relevant styles ***/
.button {
	display: inline-block;
	-webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3px;
  color: #ffffff;
  background-color: #feaf03;
  padding: 17px 60px 18px 60px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  border: 2px solid #feaf03;
  margin-top: 20px;
}

.button:hover,
.button:active {
	background-color: #5e5e5e;
	border-color: #5e5e5e;
}

.pages {
	text-align: center;
	font-weight: bold;
}

.pages a:link, .pages a:visited {

}

.pages .current {

}

.pagination .pages
{
	text-align: center;
}

.pagination .pages .current
{
	font-weight: bold;
}

.pagination .pages a
{
	text-decoration: none;
}

.pagination .pages a:hover,
.pagination .pages a:focus,
.pagination .pages a:active
{
	text-decoration: underline;
}

.struct {
	display: none;
}

/* float clearing usually applied to <br /> sometimes div or span  */
.clear {
	display: block;
	width: 99%;
	height: 1px;
	clear: both;
	overflow: hidden;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
/*** section styles ***/
.header, .midsection, .base {
	position: relative;
	width: 100%;
	margin: 0px auto;
}

.header {
	background-color: #ffffff;
	z-index: 10;
}

.header .banner
{
	height: 90px;
}

.container
{
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}

.header .logo {
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 10px;
	z-index: 10001;
}

.header .logo-image {
	padding-right: 15px;
}

.header .logo-text {
	float: right;
	vertical-align: top;
	font-size: 25px;
	text-decoration: none;
	text-transform: uppercase;
	color: #3f5eab;
	position: relative;
	top: 10px;
	display: inline-block;
}

.header .logo-text strong {
	vertical-align: top;
	color: #5e5e5e;
}

.main-navigation {
	float: right;
	width: 45%;
	padding: 0;
	color: #FFF;
	text-align: left;
	height: 90px;
	font-family: 'Open Sans', sans-serif;
}

.main-navigation ul {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
	margin: 0;
	padding: 0;
}

.main-navigation  li {
	position: relative;
	display: flex;
	flex-grow: 1;
	height: 2em;
	line-height: 2em;
	margin: 0;
	padding: 0;
	background: transparent url('') left center no-repeat;
}

*+html .main-navigation > ul  li { display: block; float: left; } /* IE7*/

.main-navigation > ul li:first-child {
	background-image: none; /* remove separator */
}

.main-navigation a {
	display: inline-block;
	padding: 0;
	font-size: 15px;
	color: #5e5e5e;
	text-decoration: none;
	font-weight: bold;
	width: 100%;
    text-align: center;
}

.main-navigation a:hover, .main-navigation a:focus {
	color: #feaf03;
}

.main-navigation .sel > a, .main-navigation .sel .sel > a {
	color: #feaf03;
}

.main-navigation li ul {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 190px;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background: #3f5eab;
}

.main-navigation li:hover ul, .main-navigation a:focus+ul {
	height: auto;
}

.main-navigation li li {
	position: relative;
	display: block;
	width: 175px; /* 190px */
	height: auto;
	padding: 0;
	line-height: 1em;
	text-align: left;
	margin:0;
	background-image: none;
}

.main-navigation li li a{
	color: #fff;
	padding: 5px;
	width: 100%;
}

.home-info-banner {
	height: 680px;
	background-image: url("/resources/template/home-banner-background.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.home-info-banner .info {
	float: left;
	width: 54%;
	margin-top: 150px;
}
.home-info-banner .info > h1 {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 60px;
	line-height: 60px;
	margin-left: 30px;
}
.home-info-banner .info > h1 > strong {
	font-weight: 800;
}

.home-info-banner h2
{
	color: #FFF;
	font-weight: bold;
}

.home-info-banner .button
{
	padding: 10px 15px;
	margin-left: 30px;
}

}
a.download-button {
	float: left;
	margin-left: 20px;
  -webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3px;
  color: #ffffff;
  background: #feaf03 url("/resources/template/cloud.png") 12px 22px no-repeat;
  padding: 17px 0px 18px 55px;
  width:220px;
  text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 22px;
}

a.download-button:hover,
a.download-button:active {
	background-color: #5e5e5e;
}

a.learn-button {
	float: left;
	margin-left: 10px;
	-webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3px;
  color: #3f5eab;
  padding: 17px 30px 18px 62px;
	background: #ffffff url("/resources/template/heart.png") 17px 21px no-repeat;
  text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 22px;
}
.home-info-banner .phone {
	float: left;
	width: 46%;
	height: 680px;
	background-image: url("/resources/template/phone3.png");
	background-repeat: no-repeat;
	background-position: center center;
}

.services-info-banner {
	height: 499px;
	background-image: url("/resources/template/sevices-banner-background.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.services-info-banner .phones {
	height: 499px;
	background-image: url("/resources/template/service-phones10.png");
	background-repeat: no-repeat;
	background-position: center center;
}
.midsection {
	z-index: 5;

}
.homepage .midsection > .container {
	max-width: 1661px;
}
.homepage .content {
	padding: 10px 20px 20px 20px;
	background: #FFFFFF;
}
.content {
	padding: 10px 20px 20px 20px;
	background: #FFFFFF;
}
.blue {
	color: #3f5eab;
}
.content span.blue {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	color: #3f5eab;
}
.home {
	margin-top: 25px;
}
.home p {
	font-size: 19px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	color: #5e5e5e;
	text-align: center;
}
.home h1 {
	margin-bottom: 35px;
}
.home .grid {
	width: 14%;
	float: left;
}
.home .grid-container {
	padding: 15px;
}
.home .grid img {
	padding: 0 41px 0 41px;
	margin-left: -40px;
}
.home .grid p {
	color: #5e5e5e;
	font-size: 17px;
}
.home .grid p, .content .grid h3 {
	text-align: left;
}
.services-features .features {
	float: left;
	max-width: 690px;
	width: 100%;
	padding-top: 100px;
	padding-top: 20px;
}
.services-features .features hr {
	clear: both;
	margin: 0;
	border: none;
}
.services-features .features > .grid {
	float: left;
	width: calc(100% - 126px);
	/*height: 130px;
	line-height: 110px;*/
	padding-bottom: 20px;
}
.services-features .features > .grid:nth-of-type(odd) {
	width: 126px;
}
.services-features .features > .grid p {
	display: inline-block;
    vertical-align: middle;
    line-height: 25px;
	font-size: 19px;
	margin: 0;
}
.services-features > .download-container {
	clear: both;
	width: 100%;
	margin: 0px 0px;
	height: 150px;
	padding-left:200px;
	background-repeat: no-repeat;
	background-position: right center;
}
.services-features a.download-button {
	margin-top: 42px;
	margin-right: 10px;
	width:220px;
}
.our-testimonials {
	margin-top: 45px;
}
.testimonial-wrapper {
	padding: 5px 15px;
	color: #000000;
	border:1px solid #ddd;
	margin-bottom:20px;
	border-radius:3px;
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.testimonial-wrapper .testimonial {
	margin-top: 15px;
}
.testimonial-wrapper p.testimonial {
	color: #000000;
}
.testimonial-wrapper .witness > span {
	color: #000000 !important;
}
.testimonial-grid {
	width: 50%;
	float: left;
}
.testimonial-grid > .grid-container {
	padding: 25px;
}
testimonial-grid .seperator {
	width: 100%;
	height: 1px;
	display: block;
	background-color: #000000;
}
.testimonials {
	text-align: center;
	background-color: #f1f1f1;
	font-size: 17px;
	font-family: font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	padding-bottom: 25px;
}
.testimonials h1 {
	padding-top: 25px;
}
.testimonial {
	color: #3f5eab;
	font-style: italic;
}
.witness {
	margin-top: 15px;
	color: #3f5eab;
}
.witness span {
	display: block;
}
.contact-us {

}
.contact-us .video {
	text-align: center;

}

.people {
	width:100%;
	text-align: justify;
}

.people:after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 1px;
}

.people .person {
	width: 33%;
	text-align: center;
	display: inline-block;
}

.people .person p {
	margin-bottom: 0;
	background: #e5e5e5;
	border-radius: 10px;
	display: inline-block;
	padding: 15px 0;
	width: 90%;
}

.people .person strong {
	color: #252525;
}

.people .person a,
.people .person a:link,
.people .person a:visited {
	text-decoration: none;
	color: #3f5eab;
}

.people .person a:hover,
.people .person a:active {
	text-decoration: underline;
}

.contact-phone,
.contact-email {
	font-weight: bold;
	font-size: 34px;
	margin-top: 0;
}

.contact-email {
	margin-bottom: 0;
}

.contact-us .grid {
	width: 50%;
	float: left;
}
.contact-us .grid img {
	max-height: 500px;
	width: auto;
	margin-left: 180px;
}
.hasSidebar {
	display: block;
	float: left;
	width: 74%;
}
.sidebar {
	display: block;
	float: right;
	width: 25%;
}
.base {
	margin-bottom: 40px;
	z-index: 0;
}
.footer {
	height: 196px;
	padding: 0;
	background-image: url("/resources/template/footer-background.png");
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.footer .grid {
	width: 25%;
	float: left;
	text-align: left;
	margin-top: 35px;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
}
.footer .grid span, .footer .grid a {
	color: #ffffff;
	display: block;
	text-decoration: none;
}
.footer .grid span:first-child {
	color: #00a5d5;
}
.footer .grid > .grid-container {
	padding: 25px;
}

.footer h2 {

}

.footer p {

}

.footer a:link, .footer a:visited, .footer a:active {

}

.footer a:hover, .footer a:active {
	text-decoration: underline;
}

.legal {
	display: block;
	height: 45px;
	width: 100%;
	font-size: 13px;
	font-family: 'Ariel', sans-serif;
	line-height: 45px;
	background-color: #222222;
	box-shadow: 0px 1000px 0px 1000px #222222;
}
.legal span.copyright {
	float: left;
	color: #9d9d9d;
}
.legal span.avd {
	float: right;
	color: #ffffff;
}

.avd a:link, .avd a:visited, .avd a:active {
	color: #7e7e7e;
	text-decoration: none;
}

.avd a:hover, .avd a:focus {
	text-decoration: underline;
}

/* slideshow overrides */
/* ss dimensions */
.slideshow {
	position: relative;
	width: 980px;
	height: 225px;
}

.orbit-wrapper .slideshow {

}
.slider {

}

.testimonials .slide {
	background-color: #f1f1f1;
}
.slider > div.slide {
	position: absolute;
	top: 0;
	left: 0;
}

div.orbit-wrapper {
	width: 1140px !important;
	height: 225px !important;
}

div.orbit {
	width: 1140px !important;
	height: 200px !important;
}

.testimonials .orbit-bullets {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	width: 100%;
	text-align: center;
}

.testimonials .orbit-bullets li {
	width: 10px;
	height: 10px;
	float: none;
	background: transparent url('/resources/template/inactive_bullet.png') center center no-repeat;
	margin-left: 10px;
	display: inline-block;
}

.testimonials .orbit-bullets li.active {
	background-image: url('/resources/template/active_bullet.png');
	background-position: center center;
}

/* ss overlay */
/*
.slideshow:after {
	content: url('slideshow_overlay.png');
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}

.orbit > div {
	z-index: 0;
}
*/

/* ss nav features */
/*
div.slider-nav span {

}

div.slider-nav span.left {
	background-image: url('slider_left.png');
}

div.slider-nav span.right {
	background-image: url('slider_right.png');
}

.orbit-wrapper .orbit-caption {

}

.orbit-wrapper .timer {
	display: none;
}

.orbit-bullets {
	bottom: 10px;
	left: 0;
	margin: 0;
}

.orbit-bullets li {
	width: 10px;
	height: 10px;
	background: transparent url('slider_bullet.png') center center no-repeat;
	margin-left: 10px;
}

.orbit-bullets li.active {
	background-image: url('slider_active.png');
	background-position: center center;
}
*/

/* galleries */
div.gallery {
	padding: 0px;
	/*
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	*/
	position: relative;
	margin: 10px auto;
	overflow: hidden;
}

div.gallery ul {
	list-style-type: none;
	margin: 0 0;
	padding: 0;
	position: relative;
}

div.gallery li {
	float: left;
	margin: 5px !important;
	padding: 0;
	width: 23%;
	text-align: center;
}

div.gallery a {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	overflow: hidden;
}

.gallery img {
	box-sizing: border-box;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
}

/* default form styling
 * - apply .contact class to any form
 * - note .button styling at top of file
 */
form.contact {
	margin-top: 15px;
}

.contact p {
	line-height: 1.75em;
}

.contact p.action {
	text-align: center;
}

.contact .action a {
	font-size: 0.875em;
}

.contact label {
	display: inline-block;
	width: 25%;
	vertical-align: top;
}

.contact label.error {
	width: auto;
	font-size: 0.875em;
	color: #fd1a00;
	margin-left: 10px;
}

.contact input[type=text] {
	width: 100%;
	font-family: inherit;
	-webkit-box-shadow: inset 0 0 0 1px white,inset 0 0 10px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0 0 0 1px white,inset 0 0 10px rgba(0,0,0,0.1);
	box-shadow: inset 0 0 0 1px white,inset 0 0 10px rgba(0,0,0,0.1);
	padding: 4px 10px;
	margin-bottom: 0px;
	font-size: 14px;
	line-height: 29px;
	color: #8a8a8a;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	box-sizing: border-box;
}

.contact input[type=password], form.contact input.password, .contact .auth + input {
	width: 20%;
}
img.auth { vertical-align: middle; }

.contact textarea {
	width: 100%;
	height: 161px;
	font-family: inherit;
	-webkit-box-shadow: inset 0 0 0 1px white,inset 0 0 10px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0 0 0 1px white,inset 0 0 10px rgba(0,0,0,0.1);
	box-shadow: inset 0 0 0 1px white,inset 0 0 10px rgba(0,0,0,0.1);
	padding: 10px;
	margin-bottom: 0px;
	font-size: 14px;
	line-height: 18px;
	color: #8a8a8a;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	box-sizing: border-box;
}

/* basic code for using customised radio button graphics
 * - checkboxes can be handled similarly
 * - fallback to normal in <= IE8
 */
.contact input[type=radio] + label {
	position: relative;
	width: auto;
	margin-right: 30px;
}


.contact input[type=radio] + label:after {
	content: '';
	display: block;
	position: absolute;
	left: -22px;
	top: 4px;
	height: 18px;
	width: 18px;
	border-radius: 9px;
	background: #e1e1e1;
}

.contact input[type=radio]:checked + label:after {
	background: #feaf03;
}

/* blog */
.blog-summary > div {
	clear: both;
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #CCC;
	overflow: hidden;
}

.hasSidebar .blog-feature-image {
	display: table-cell;
}

.blog-feature-image img {
	display: block;
	border: 1px solid #CCC;
	border-radius: 5px;
	max-width: 100%;
}

.hasSidebar .blog-summary {
	display: table-cell;
	vertical-align: top;
	padding-left: 10px;
}

.blog-article .blog-feature {
	display: block;
	margin: 0 auto 1em;
	display: block;
	border: 1px solid #CCC;
	border-radius: 5px;
}

.articleNav {
	width: 100%;
	height: 2em;
}


.articleNav {
	width: 100%;
	height: 2em;
}

.articleNav .previous { /* older */
	float: right;
}

.articleNav .previous a:after {
	content: '>>';
	position: absolute;
	left: 101%;
	top: -0.0625em;
}

.articleNav .next { /* newer */
	float: left;
}

.articleNav .next a:before {
	content: '<<';
	position: absolute;
	right: 101%;
	top: -0.0625em;
}


.regionList
{
	padding: 15px 10px;
	box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	overflow: hidden;
	font-size: 15px;
	width: 696px;
	margin: auto;
}

.regionList li
{
	float: left;
	display: block;
}

.regionList li a
{
	width: 150px;
	padding: 10px;
	border: 3px;
	display: block;
	color: #6d6e71;
	background-color: #f9f9f9;
	border: 2px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}

.regionList li.sel a,
.regionList li a:hover,
.regionList li a:focus,
.regionList li a:active
{
	background-color: #a29061;
	color: #fff;
}

.stockists
{
	width: 716px;
	margin: auto;
	border-radius: 10px;
	margin-top: 80px;
	position: relative;
	margin-bottom: 50px;
}

.stockists:before,
.stockists:after
{
	content: "\0000a0";
	width: 0px;
	height: 0px;
	clear: both;
	overflow: hidden;
	display: block;
}

.stockists h2
{
	position: absolute;
	top: -65px;
	left: 10px;
}

.stockists div
{
	float: left;
	height: 155px;
	padding: 10px;
	width: 155px;
	position: relative;
	box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.05);
	margin: 2px;
}

.stockists h3
{
	font-size: 17px;
	margin: 0px;
}

.stockists p
{
	margin: 0px;
	font-size: 14px;
	line-height: 19px;
}

.stockists .mapLink
{
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding-left: 40px;
	padding-top: 15px;
	background: url(map.png) left no-repeat;
}

/** shopping cart (collapsible) **/
/*
.cart-bg {
 	display: block;
	margin: 0;
	padding: 40px 25px 40px;
	background: #f0f6f7 url('bg.jpg') left top repeat;
}
*/

.cart_options {
	border: 1px solid #bcc6d5;
	background: #FFF;
	margin-bottom: 15px;
}
.cart_options h4 {
	font-size: 1em;
	font-weight: normal;
	padding: 10px;
	background: #ffebf0;
	border-bottom: 1px solid #bcc6d5;
	margin: 0;
}

.cart_options p {
	padding: 10px 30px;
	background: #FFF;
	margin: 0;
}

.cart table {
	text-align: center;
	width: 100%;
	border: none;
	border-collapse: collapse;
}

.cart thead {
	border: 1px solid #bcc6d5;
	background: #ffebf0;
}

.cart th {
	font-weight: normal;
	padding: 10px 5px;
	font-size: 0.875em;
}

.cart tbody {
	border-left: 1px solid #bcc6d5;
	border-right: 1px solid #bcc6d5;
	background: #FFF;
	font-size: 0.875em;
}

.cart td {
	padding: 10px;
	vertical-align: middle;
}

.cart td.image a {
	display: block;
	position: relative;
	width: 105px;
	height: 105px;
	border: 1px solid #80c5e0;
	border-radius: 3px;
	background: #FFF;
}

.cart td.image img {
	display: block;
	position: absolute;
	top:0; left: 0; bottom: 0; right: 0;
	margin: auto;
	height: auto;
	max-height: 100px;
	max-width: 100px;
}

.cart td.name {
	text-align: left;
	font-size: 1.143em;
}

.cart td.quantity input {
	width: 1em;
	padding: 10px;
	text-align: center;
}

.cart td.total {
	font-weight: bold;
	color: #f13c65;
}

.cart tfoot {
	border-top: 1px solid #bcc6d5;
}

.cart tfoot td:last-child {
	text-align: right;
}

.cart span.total {
	font-weight: bold;
}

.cart span.value.total {
	font-size: 1.123em;
	color: #f13c65;
}

.cart h2 {
	font-family: Arial, serif;
	font-size: 1em;
}

.cart h3 {

	font-family: Arial, serif;
	color: #F13C65;
	margin: 0;
}

form.checkout-options {
	width: 50%;
	float: left;
}

form.checkout-options + .checkout-options {
	width: 45%;
	float: right;
}

form.checkout-options .button {
	margin-top: 0;
	margin-bottom: 0;
}

.cart .login-form p {
	position: relative;
}

.cart .login-form label {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.cart .login-form input[type=text], .cart .login-form input[type=password] {
	display: block;
	width: 100%;
}

.cart .warning
{
	color: #fd1a00;
	font-size: 2em;
}

.ui-helper-reset {
	font-size: 1em;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	background: #ffebf0;
	border-color: #bcc6d5;
	border-radius: 0;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	background: #ffebf0;
	border-color: #bcc6d5;
	border-radius: 0;
}

.ui-accordion-content {
	margin-bottom: 10px;
	border-radius: 0;
	font-size: 0.875em;
}

.ui-accordion-header {
	font-size: 0.875em;
}

.ui-accordion-content  + .ui-accordion-header {
	margin-top: 10px;
}

/* print order */
#print-order table {
	width: 100%;
}

#print_order th, #print-order td {
	vertical-align: top;
}

#print-order thead tr:first-child > * {
	border-bottom: 1px solid #423f3f;
	padding-bottom: 4px;
}

#print-order thead th:first-child {
	text-align: left;
}

#print-order tbody th {
	font-weight: normal;
	padding-bottom: 4px;
}

#print-order tfoot tr:first-child > * {
	border-top: 1px solid #423f3f;
	padding-top: 4px;
}

#print-order tbody {
	padding: 4px 0;
}

#print-order tbody th, #print-order tfoot th {
	font-weight: normal;
	text-align: left;
}


#print-order td+td, #print-order tfoot td+td {
	text-align: center;
}

#print-order td+td+td, #print-order tfoot td+td+td {
	text-align: right;
}

#print-order th:last-child {
	text-align: right;
}

/* customers/orders */
table.orders {
	width: 100%;
	border-collapse: collapse;
}

.orders th, .orders td {
	padding: 4px;
	vertical-align: top;
}

.orders tbody *:first-line {

}

.orders thead tr:first-child > * {
	border-bottom: 1px solid #423f3f;
	text-indent: 0;
}

.orders tbody th {
	font-weight: normal;
	text-indent: 0;
}

.orders .ref {
	text-align: left;
}

.orders .date {
	width: 95px;
}

.orders .details {
	text-align: left;
	text-indent: 1em;
}

.orders .price {
	text-align: right;
}

.orders .link {
	text-align: right;
	width: 75px;
}

/** files **/
.file {
	position: relative;
	overflow: hidden; /* float clearing */
	padding: 15px;
	margin-bottom: 10px;
}

.file h2 {
	margin-bottom: 1em;
}

.file .button {
	position: absolute;
	top: 6px;
	right: 10px;
}

#hoverCart
{
	position: fixed;
	top: 50px;
	right: 50px;
	width: 200px;
	background-color: rgba(48, 48, 48, 0.8);
	background-color: #303030\9;
	color: #fff;
	padding: 15px;
	border-radius: 5px;
	overflow: auto;
	z-index: 1000;
	max-height: 100%;
	max-height: calc(100% - 100px);
}

#hoverCart h1,
#hoverCart h2,
#hoverCart h3
{
	color: #fff;
	margin: 0px 0px 5px;
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
}

#hoverCart a
{
	color: #fff;
}

#hoverCart .items
{
	overflow: hidden;
	display: block;
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

#hoverCart .checkout
{
	float: left;
}

#hoverCart .dismiss
{
	display: block;
	text-align: right;
	float: right;
}

#hoverCart .row
{
	border-bottom: 1px solid #fff;
	position: relative;
	overflow: hidden;
	padding: 10px 0px 5px;
}

#hoverCart .row .right
{
	text-align: right;
	font-family: "Courier New", Courier, monospace;
}

#hoverCart .remove
{
	font-size: 12px;
	display: block;
}

input:disabled,
textarea:disabled
{
	opacity: 0.5;
}

#interactive {
	width: 290px;
	margin: 10px 40px;
	height: 560px;
	padding: 83px 36px 0 32px;
	background: transparent url('contactPhone.png') center top no-repeat;
	background-size: contain;
}

#interactive img {
	width: 100%;
	height: auto;
}

#interactive.inZone {
	cursor: pointer;
}

.demo
{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	float:right;
	max-width: 385px;
	width: 100%;
}

.demo h1, .demo h2
{
	font-size: 24px;
}

.request-container
{
	clear: both;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
}
.socialmed{
    margin-top: 10px;
    margin-right: 7px;
}





.content-left, .content-right {
	display: inline-block;
	vertical-align: top;
	
}

.content-left {
	padding-right: 25px;
}

.content-right {
	padding-left: 100px;
	padding-top: 70px;
}

.column-1 {
    max-width: 541px;
    margin: 0 auto;
    padding: 20px;
    background: #3f5eab;
}

.wow {
	color:#3f5eab;
	text-align: center;
	font-size: 23px;
}

.p-form {
	color:#FFFFFF;
	text-align: center;
	font-size: 23px;
	font-weight: bold;
}

.p-label {
	color:#FFFFFF;
	text-align: left;
	font-size: 1em;
	
}





/* tinymce universal formatting */
#tinymce {width: 940px; padding: 10px; background: #FFF; text-align: left; font-size: 1em; color: #666;}
#tinymce p { padding: 0 0 1em;}
#tinymce form { outline: 1px dotted #F00;}
#tinymce a { border-bottom: 1px dotted #002D4A; color: #002D4A; text-decoration: none; }
