﻿/* element styles */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	font-size: 15px; /* 16px */
	color: #000;
	background: #EFEFEF url() left top repeat-x;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
	font-weight: normal;
	margin: 0.5em 0;
	font-family: "Lora", serif;
}

h1 {
	font-size: 27px;
}

h2 {
	font-size: 1.25em;
}

h3 {
	font-size: 1.125em;
}

a:link, a:visited, a:active {
	color: #0161bc;
	text-decoration: none;
}

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

a img {
	border: none;
}

hr{
	height:2px;
	border:none;
	background: #50ccff;
	padding:0;
	margin:1em 0px;
}

/* globally relevant baseline styles */
.button {
	display: inline-block;
	margin: 12px 30px;
	padding: 5px;
	border: none;
	background: #50ccff;
	color: #FFF;
	font-size: 1em;
	line-height: 1.5em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.button:hover, .button:focus {
	text-decoration: underline;
	background: #0058b0;
}

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

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

}

.pages .current {

}

.struct {
	display: none;
}

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

/*** section styles ***/
.header, .midsection, .base {
	position: relative;
	width: 100%;
	margin: 0px auto;
}

.header {
	height: auto;
	background: #e3e3e3 url() top left repeat-x;
	z-index: 10;

	background: rgb(0,88,176); /* Old browsers */
	background: url('bg.png'), -moz-linear-gradient(top,  rgba(0,88,176,1) 0%, rgba(1,104,197,1) 100%); /* FF3.6+ */
	background: url('bg.png'), -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,88,176,1)), color-stop(100%,rgba(1,104,197,1))); /* Chrome,Safari4+ */
	background: url('bg.png'), -webkit-linear-gradient(top,  rgba(0,88,176,1) 0%,rgba(1,104,197,1) 100%); /* Chrome10+,Safari5.1+ */
	background: url('bg.png'), -o-linear-gradient(top,  rgba(0,88,176,1) 0%,rgba(1,104,197,1) 100%); /* Opera 11.10+ */
	background: url('bg.png'), -ms-linear-gradient(top,  rgba(0,88,176,1) 0%,rgba(1,104,197,1) 100%); /* IE10+ */
	background: url('bg.png'), linear-gradient(to bottom,  rgba(0,88,176,1) 0%,rgba(1,104,197,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0058b0', endColorstr='#0168c5',GradientType=0 ); /* IE6-9 */

	background-position: top center;
	background-repeat: none;
}

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

.banner {
	background: transparent url() top center no-repeat;
	height: 135px;
	position: relative;
}

.header-bg {
	height: 8px;
	max-width: 1417px;
	margin: 0 auto;
	position: absolute;
	left:0;
	right: 0;
	background: -moz-linear-gradient(left,  rgba(26,188,255,0) 0%, rgba(26,188,255,0.04) 3%, rgba(26,188,255,0.17) 8%, rgba(26,188,255,0.31) 13%, rgba(26,188,255,0.78) 28%, rgba(26,188,255,0.92) 33%, rgba(26,188,255,1) 38%, rgba(26,188,255,1) 64%, rgba(26,188,255,0.9) 69%, rgba(26,188,255,0.76) 74%, rgba(26,188,255,0.37) 86%, rgba(26,188,255,0.17) 92%, rgba(26,188,255,0.07) 96%, rgba(26,188,255,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(26,188,255,0)), color-stop(3%,rgba(26,188,255,0.04)), color-stop(8%,rgba(26,188,255,0.17)), color-stop(13%,rgba(26,188,255,0.31)), color-stop(28%,rgba(26,188,255,0.78)), color-stop(33%,rgba(26,188,255,0.92)), color-stop(38%,rgba(26,188,255,1)), color-stop(64%,rgba(26,188,255,1)), color-stop(69%,rgba(26,188,255,0.9)), color-stop(74%,rgba(26,188,255,0.76)), color-stop(86%,rgba(26,188,255,0.37)), color-stop(92%,rgba(26,188,255,0.17)), color-stop(96%,rgba(26,188,255,0.07)), color-stop(100%,rgba(26,188,255,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(26,188,255,0) 0%,rgba(26,188,255,0.04) 3%,rgba(26,188,255,0.17) 8%,rgba(26,188,255,0.31) 13%,rgba(26,188,255,0.78) 28%,rgba(26,188,255,0.92) 33%,rgba(26,188,255,1) 38%,rgba(26,188,255,1) 64%,rgba(26,188,255,0.9) 69%,rgba(26,188,255,0.76) 74%,rgba(26,188,255,0.37) 86%,rgba(26,188,255,0.17) 92%,rgba(26,188,255,0.07) 96%,rgba(26,188,255,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(26,188,255,0) 0%,rgba(26,188,255,0.04) 3%,rgba(26,188,255,0.17) 8%,rgba(26,188,255,0.31) 13%,rgba(26,188,255,0.78) 28%,rgba(26,188,255,0.92) 33%,rgba(26,188,255,1) 38%,rgba(26,188,255,1) 64%,rgba(26,188,255,0.9) 69%,rgba(26,188,255,0.76) 74%,rgba(26,188,255,0.37) 86%,rgba(26,188,255,0.17) 92%,rgba(26,188,255,0.07) 96%,rgba(26,188,255,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(26,188,255,0) 0%,rgba(26,188,255,0.04) 3%,rgba(26,188,255,0.17) 8%,rgba(26,188,255,0.31) 13%,rgba(26,188,255,0.78) 28%,rgba(26,188,255,0.92) 33%,rgba(26,188,255,1) 38%,rgba(26,188,255,1) 64%,rgba(26,188,255,0.9) 69%,rgba(26,188,255,0.76) 74%,rgba(26,188,255,0.37) 86%,rgba(26,188,255,0.17) 92%,rgba(26,188,255,0.07) 96%,rgba(26,188,255,0) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(26,188,255,0) 0%,rgba(26,188,255,0.04) 3%,rgba(26,188,255,0.17) 8%,rgba(26,188,255,0.31) 13%,rgba(26,188,255,0.78) 28%,rgba(26,188,255,0.92) 33%,rgba(26,188,255,1) 38%,rgba(26,188,255,1) 64%,rgba(26,188,255,0.9) 69%,rgba(26,188,255,0.76) 74%,rgba(26,188,255,0.37) 86%,rgba(26,188,255,0.17) 92%,rgba(26,188,255,0.07) 96%,rgba(26,188,255,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001abcff', endColorstr='#001abcff',GradientType=1 ); /* IE6-9 */

}

.logo {
	display: block;
	position: absolute;
	top: 45px;
	left: 0px;
	max-width: 505px;
	width: 100%;
}

.header-contact {
	position: absolute;
	top: 50px;
	right: 0;
	color: #FFF;
	font-family: "Lora", serif;
	text-align: right;
}
.header-contact p {
	font-size: 24px;
	padding-left: 40px;
	background: url('icon_phone.png') center left no-repeat;
	font-weight: bold;
}

.header-contact a {
	color: #cae6ff;
	font-size: 17px;
	text-decoration: none;
}
.header-contact a:hover {
	text-decoration: underline;
}

.title {
	padding: 23px 35px;
	background: #50ccff;
	color: #002d40;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.title h1 {
	margin: 0;
}

.main-navigation {
	position: relative;
	padding: 0;
	margin-bottom: 15px;
	background: #999 url('') left top repeat-x;
	color: #FFF;
	font-size: 15px;
	font-family: 'Lora', serif;
	text-align: left;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	background: rgb(247,250,252); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(247,250,252,1) 0%, rgba(230,239,247,1) 42%, rgba(204,222,238,1) 91%, rgba(208,225,239,1) 93%, rgba(204,222,238,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,250,252,1)), color-stop(42%,rgba(230,239,247,1)), color-stop(91%,rgba(204,222,238,1)), color-stop(93%,rgba(208,225,239,1)), color-stop(100%,rgba(204,222,238,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(247,250,252,1) 0%,rgba(230,239,247,1) 42%,rgba(204,222,238,1) 91%,rgba(208,225,239,1) 93%,rgba(204,222,238,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(247,250,252,1) 0%,rgba(230,239,247,1) 42%,rgba(204,222,238,1) 91%,rgba(208,225,239,1) 93%,rgba(204,222,238,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(247,250,252,1) 0%,rgba(230,239,247,1) 42%,rgba(204,222,238,1) 91%,rgba(208,225,239,1) 93%,rgba(204,222,238,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(247,250,252,1) 0%,rgba(230,239,247,1) 42%,rgba(204,222,238,1) 91%,rgba(208,225,239,1) 93%,rgba(204,222,238,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7fafc', endColorstr='#ccdeee',GradientType=0 ); /* IE6-9 */

}

.main-navigation ul {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

.main-navigation  li {
	display: flex;
	position: relative;
	flex-grow: 1;
	margin: 0;
	padding: 0;
	background: transparent url('') left center no-repeat;
	border-left: 1px solid #FFF;
}

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

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

.main-navigation a {
	display: inline-block;
	padding: 18px 15px;
	width: 100%;
	color: #002d40;
	text-decoration: none;
	text-align: center;
}

.main-navigation a:hover, .main-navigation a:focus {
	color: #002d40;
	text-decoration: underline;
	background: rgb(80,203,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(80,203,255,1) 0%, rgba(80,203,255,1) 27%, rgba(75,202,255,1) 40%, rgba(32,189,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(80,203,255,1)), color-stop(27%,rgba(80,203,255,1)), color-stop(40%,rgba(75,202,255,1)), color-stop(100%,rgba(32,189,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#50cbff', endColorstr='#20bdff',GradientType=0 ); /* IE6-9 */

}

.main-navigation .sel > a, .main-navigation .sel .sel > a {
	color: #002d40;

	background: rgb(80,203,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(80,203,255,1) 0%, rgba(80,203,255,1) 27%, rgba(75,202,255,1) 40%, rgba(32,189,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(80,203,255,1)), color-stop(27%,rgba(80,203,255,1)), color-stop(40%,rgba(75,202,255,1)), color-stop(100%,rgba(32,189,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(80,203,255,1) 0%,rgba(80,203,255,1) 27%,rgba(75,202,255,1) 40%,rgba(32,189,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#50cbff', endColorstr='#20bdff',GradientType=0 ); /* IE6-9 */

}

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

.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 0 0 15px;
	line-height: 1em;
	text-align: left;
	margin:0;
	background-image: none;
}

.main-navigation li li a:link, .main-navigation li li a:visited, .main-navigation li li a:active {
	padding: 5px 0;
	width: 100%;
}

.midsection {
	z-index: 5;
	background: #e0eaf5;
	border-top: 1px solid #FFF;
}

.content {

	padding: 20px 35px;
	background: #FFFFFF;
}
.content-wrapper .content:after {
	display: block;
	content: "";
	position: absolute;
	height: 10px;
	width: 100%;
	left:0;
	bottom: -10px;
	background: #50ccff;
	-webkit-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.content p {
	margin-bottom: 20px;
	line-height: 19px;
}

.content ul,
.content ol {
	padding: 0;
	list-style-position: outside;
    margin-left: 20px;
}

.content-wrapper:before,
.content-wrapper:after
{
	content: "";
	width: 0px;
	height: 0px;
	clear: both;
	display: block;
}

.content-wrapper > .struct {
	display: block;
	position: absolute;
	top: 0;
	height: 0px;
	width: 0px;
}

.leftwing {
	right: 100%;
}

.rightwing {
	left: 100%;
}

.about:after{
	display:block;
	width:100%;
	content:'';
	height:1px;
	clear:both;
}

.about img{
	float:right;
}

.base {
	margin-bottom: 0px;
	z-index: 0;
	background: #0058b0;
	font-size: 12px; /* 12px from 16px */
	color: #50ccff;
}

.base .container {
	display: flex;
	align-items: center;
    justify-content: space-between;
	padding: 0 40px;
}

.sub-footer {
	padding: 15px 0;
	width: 100%;
	background: #004ba0;
}

.footer {
	position: relative;
	/* height: 190px; */
	padding: 45px 0;
	text-align: left;
	background: transparent url('shadow.png') center 10px no-repeat;
}

.footer-contact {
	color: #FFF;
	font-size: 14px;
	line-height: 19px;
}

.footer img {
}

.base h2 {

}

.base p {

}

.base a:link, .footer a:visited, .footer a:active {
	color: #FFF;
	text-decoration: none;
}

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

.copyright {
}

.avd {
}

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

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

/* slideshow overrides */
/* ss dimensions */
.slideshow {
	position: relative;
	width: 980px;
	height: 345px;
	margin: 0px auto;
	margin-bottom: 15px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
}

.orbit-wrapper .slideshow {

}

.slider {

}

.slider > div.slide {
	position: absolute;
	top: 0;
	left: 0;
}

div.orbit-wrapper {
	width: 980px !important;
	height: 345px !important;
}

div.orbit {
	width: 980px !important;
	height: 345px !important;
}

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

.orbit-bullets {
	display: none;
}

/* 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%;
	height: 210px;
	line-height: 210px;
	text-align: center;
}

div.gallery a {
	display: inline-block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
}

.gallery img {
	display: inline; /* kauri default sets to block */
	vertical-align: middle;
}

.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;
}

/* form styling
 *
 */


#contact-form {
	background-color: #E0EAF5;
	max-width: 900px;
	width: 100%;
	overflow: hidden;
	margin: 10px auto 20px;
	padding-bottom: 40px;
	border: 10px solid #fff;
	-webkit-box-shadow: 2px 2px 4px 1px #d8d8d8;
	box-shadow: 2px 2px 4px 1px #d8d8d8;
	padding-top:15px;
}

#form-wrapper {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
	position: relative;
}
#form-wrapper h2 {
    font-size: 26px;
    padding-top: 0px;
    margin-bottom: 0;
    margin-top: 10px;
    float: left;
    width: 100%;
    font-weight: normal;
    text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.2);
}
#form-wrapper h2 strong {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 26px;
}
#form-wrapper form {
	float: left;
}
#form-wrapper .input-name,
#form-wrapper .input-email,
#form-wrapper .input-message
{
	float: left;
	width: 100%;
	padding: 15px 0px 5px 0;
	font-size: 16px;
	color: #000;
	position: relative;
}
#form-wrapper label {
	float: left;
	max-width: 280px;
	width: 100%;
	margin-right: 15px;
	padding-bottom: 7px;
	color: #000;
	font-size: 18px;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.2);
}
#form-wrapper label.error {
	position: absolute;
	right: 20px;
	top: 23px;
	max-width: 260px;
	width: 100%;
	text-align: right;
	font-size: 14px;
	padding: 0;
	color: #f00;
	text-shadow: none;
}
#form-wrapper textarea
{
    max-width: 567px;
	width: 100%;
}
#form-wrapper input,
#form-wrapper textarea {
	padding: 10px 10px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #fff;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
	color: #b9b2ac;
	-webkit-transition: all 0.5s;
	transition: color 0.5s;
}
#form-wrapper input:focus,
#form-wrapper textarea:focus {
	color: #554d47;
}
#form-wrapper input {
	background-color: #fff;
}
#form-wrapper input#name,
#form-wrapper input#email {
  	max-width: 272px;
	width: 100%;
}
#form-wrapper input#submit {
	background-color: #0160ba;
	float: left;
	max-width: 185px;
	width: 100%;
	padding: 5px 0;
	font-size: 25px;
	margin-top: 5px;
	border-color: rgba(255, 255, 255, .15);
	color: #fff;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.2);
	font-weight: 500;
}
#form-wrapper textarea {
	background-color: #fff;
	height: 232px;
}

#form-wrapper input#submit:hover
{
	background-color: #50ccff
}

#form-wrapper .input-name,
#form-wrapper .input-email {
	max-width: 295px;
	width: 100%;
}

#form {
	float: left;
	max-width: 590px;
	width: 100%;
	margin-left: 20px;
}

#form-sidebar {
	float: right;
    max-width: 250px;
	width: 100%;
	padding: 5px 0 0 0;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.2);
}
#form-sidebar p {
	font-size: 17px;
	color: #000;
	line-height: 1.3em;
	margin-bottom: 20px;
}
#form-sidebar strong {
	font-size: 17px;
	line-height: 1.5em;
}
#form-sidebar h2{
	font-size: 26px;
	margin-bottom:10px;
}
#form-sidebar h3 {
	font-size: 20px;
	margin: 0 0 5px 0;
	font-weight: 500;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.4);
}



.ie7 #form-wrapper label {
  position: relative;
  left: 0;
  top: 0; }
  .ie7 #form-wrapper input#name, .ie7 #form-wrapper input#email {
    position: absolute;
    left: 0;
    top: 50px; }
  .ie7 #form-wrapper .input-message {
    margin-top: 40px;
    margin-bottom: 10px; }

.ie7 #form-wrapper label.error, .ie8 #form-wrapper label.error {
  max-width: 320px;
  width: 100%;
}
  .ie7 #form-wrapper input, .ie8 #form-wrapper input, .ie7 #form-wrapper textarea, .ie8 #form-wrapper textarea {
    color: #554d47; }

/* basic code for using customised radio button graphics
 * - checkboxes can be handled similarly
 * - fallback to normal in <= IE8
 */
/*
.contact input[type=radio] + label {
	left: -22px;
	padding: 3px 20px 3px 30px;
	height: 18px;
	line-height: 18px;
	background: transparent url('radio-buttons.png') top left no-repeat;
}

.contact input[type=radio]:checked + label{
	background-position: bottom left;
}

.ie8 .contact input[type=radio] + label {
	left: 0;
	padding-left: 10px;
	background-image: none;
}
/* blog */
.articleNav {
	overflow: hidden;
}

.articleNav .previous {
	float: left;
}

.articleNav .next {
	float: right;
}

.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%;
}

.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;
}

/* 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; }
