/* google_fonts
-----------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Maven+Pro|Sigmar+One);

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #0f1263;
	width: 100%;
	min-width: 1100px;
	font-weight: 400;
	background: #00c4c4 url(images/body_bg.png) center repeat-y;
	position: relative;
	overflow-x: hidden;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 33px;
	font-weight: 400;
	color: #0557c7;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 26px;
	line-height: 29px;
	font-weight: 400;
	color: #3225b1;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 25px;
	font-weight: 400;
	color: #0e709d;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
a {
	color: #da0033;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}

table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	padding: 0px;
	margin: 0px;
}

ul, ol {
	margin: 0px 0px 10px 20px;
	padding: 0px 0px 0px 0px;
/*	list-style-position: inside;*/
}
ul {
	list-style-image: url(images/icon_bullet.png);
}
ul.no-list-image, ul.no-list-image li {
	list-style: none;
	list-style-image: none;
}
p {
	margin: 15px 0px 15px 0px;
}
img {
	border: none;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 15px;
	line-height: 15px;
    box-sizing: border-box;
	background: url(images/input_bg.png) top repeat-x;
}
label {
	box-sizing: border-box;
}
input {
	vertical-align: middle;
}

.form_standard {
	width: 700px !important;
	display: table;
	margin: 0 auto;
}
.form_standard_half {
	width: 350px !important;
	display: table;
	margin: 0 auto;
}

.form {
	width: 100%;
}
.form input.submit, input.button {
	width: auto;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	color: #feffff;
	background: #da0033;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	border: 0px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	padding: 13px 26px 13px 30px;
	text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.1);
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 15px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 15px;
	line-height: 15px;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}

.form input[type=text], .form input[type=email], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size: 15px;
	line-height: 22px;
	padding: 9px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;

}
.form select {
	padding: 8px;
}

.form textarea {
	height: 150px;
}

.required {
	color: #f00;
}
/* scode_block
-----------------------------------------------------------------------------*/
#scode_block {
	width: 100%;
	text-align: center;
}
#scode_block table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
}
#scode_block table tr {
    vertical-align: top;
}
#scode_block table td {
	width: auto;
}
#scode_block table td {
	padding: 0px 2px 0px 2px;
	margin: 0px;
}
#scode_block #scode {
	width: 105px;
}
#scode_block input[type=text] {
	margin: 0px;
}
#scode_block #img_code {
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #000;
	font-weight: 400;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #000;
	font-weight: 400;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #000;
	font-weight: 400;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #000;
	font-weight: 400;
	text-overflow: ellipsis;
}

/* standard styles
-----------------------------------------------------------------------------*/

.uppercase {
	text-transform: uppercase;
}
.underline {
	text-decoration: underline
}

.align_center {
	text-align: center;
	margin: auto;
}
.align_right {
	text-align: right;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}

.valign_top {
	vertical-align: top;
}
.valign_middle {
	vertical-align: middle;
}
.valign_bottom {
	vertical-align: bottom;
}

.position_center {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.position_middle:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.box_center {
	display: table;
	margin: 0 auto !important;
}

.clear {
	height:0;
	font-size: 1px;
	line-height: 0px;
	clear: both;
}

.hidden {
	display: none;
}

.desktop_only {
}
.mobile_only {
	display: none;
}

.img_left {
	width: auto;
	float: left;
	margin: 0px 15px 10px 0px;
}
.img_right {
	width: auto;
	float: right;
	margin: 0px 0px 10px 15px;
}

.images, .images_left, .images_right {
	border: 8px solid #fff;
	background: #00c4c4;
	box-shadow: 5px 8px 0px 0px rgba(0, 0, 0, 0.13); 
}
.images_left {
	width: auto;
	float: left;
	margin: 0px 25px 15px 0px;
}
.images_right {
	width: auto;
	float: right;
	margin: 0px 0px 15px 25px;
}

hr, .hr {
	line-height: 1px;
	height: 1px;
	font-size: 1px;
	background: url(images/hr_bg.png) top repeat-x;
	border: 0px;
}

.a_button {
	display: inline-block;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	color: #feffff;
	background: #da0033;
	font-size: 18px;
	line-height: 18px;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	outline: none;
	border: 0px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	padding: 14px 25px 12px 26px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	text-decoration: none;
	background: #ffc20e;
	transform: scale(1.1);	
}

.columns {
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
}

.columns[data-columns-count="2"] {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}
.columns[data-columns-count="3"] {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}
.columns[data-columns-count="4"] {
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
}
.columns[data-columns-count="5"] {
	-moz-column-count: 5;
	-webkit-column-count: 5;
	column-count: 5;
}
.columns[data-columns-count="6"] {
	-moz-column-count: 6;
	-webkit-column-count: 6;
	column-count: 6;
}

.res_list div {
	display: inline-block;
	padding-bottom: 10px;
}

.pp_default {
	color: #000;
}

/* columns_list
-----------------------------------------------------------------------------*/
ul.columns_list {
	list-style: none;
}
ul.columns_list > li {
	list-style: none;
	list-style-image: none;
	display: inline-block;
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	vertical-align: top;
}
ul.columns_list > li, ul.columns_list[data-columns-count="2"] > li {
	width: 47%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="3"] > li {
	width: 30%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="4"] > li {
	width: 22%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="5"] > li {
	width: 17%;
	margin-right: 3%;
}


/* portfolio styles
-----------------------------------------------------------------------------*/
.sectionname, .imagepages {
	display: inline-block;
	color: #fff;
	background: #da0033;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #ffa206;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #ffa206;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.sectionnameselected:hover, .imagepageselected:hover {
	text-decoration: none;
}

.sectionname_divider {
	display: none;
}

.imagesmallname {
	color: #000;
}

.imagemediumname {
	color: #000; 
	font-weight: bold;
}

.image_delimiter {
	font-size: 1px;
	line-height: 1px;
	height: 3px;
	padding: 0px;
	margin: 0px;
}
/* portfolio_slides
-----------------------------------------------------------------------------*/
.portfolio_slides {
	position: relative;
}
.portfolio_slides ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.portfolio_slides li {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	text-align: center;
}
.portfolio_slides .images {
	max-width: -webkit-calc(100% - 8px); /* - 2*border */
	max-width: -moz-calc(100% - 8px);
	max-width: calc(100% - 8px);
	max-width: 100%;
	height: auto;
}

.portfolio_slides_pager {
	position: relative;
	display: table;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}
.portfolio_slides_pager span {
	width: 15px;
	height: 15px; 
    display: inline-block;
	cursor: pointer;
    font-family: arial;
	font-size: 40px;
	color: #4d1658;
}
.portfolio_slides_pager span.cycle-pager-active {
	color: #d1b26d;
}
.portfolio_slides_pager > * {
	cursor: pointer;
}

/* Table
-----------------------------------------------------------------------------*/
.table {
	width: 100%;
	border-top: 1px solid #bdb6a3;
	border-left: 1px solid #bdb6a3;
}
.table tr {
	vertical-align: middle;
}
.table th, .table td {
	padding: 5px;
	border-bottom: 1px solid #bdb6a3; 
	border-right: 1px solid #bdb6a3; 
	color: #64534c;
}
.table thead td, .table tfoot td {
	background: #efae40 url(images/table_header_bg.png) top repeat-x;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	background: #ada48c;
}
.table tr:nth-child(odd) {
	background: #efede8;
}
.table tr:nth-child(even) {
	background: #f5f3ee;
}

/* belgard
-----------------------------------------------------------------------------*/
table.belgard td {
	padding: 0px 20px 20px 0px;
}

/* main styles
-----------------------------------------------------------------------------*/
.animatedParent {
/*	overflow: hidden;*/
}

.page_wrapper {
	width: 1100px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

#main_wrapper {
	overflow: hidden;
}

.body_offset {
	padding-top: 52px;
}

.body_wrapper {
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

.box_fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	z-index: 1000 !important;
	width: 100% !important;
	max-width: 1920px !important;
	float: none !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#bodytop {
	width: 100%;
	height: 10px;
	background: #89e7fa url(images/bodytop_bg.jpg) center top no-repeat;
}
#menutop {
	width: 100%;
	height: 42px;
	background: #89e7fa url(images/menutop_bg.jpg) center top no-repeat;
}
#menutop.box_fixed {
	background: #3596f5 url(images/menutop_fixed_bg.png) center top repeat-x;
}
#menutop ul {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	height: 42px;
	padding: 0px;
	margin: 0px;
}
#menutop ul li a {
	display: block;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	color: #ff0d00;
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 12px 12px 12px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	text-shadow:
	 -3px -3px 1px #fff,  
	 3px -3px 1px #fff,
	 -3px 3px 1px #fff,
	 3px 3px 1px #fff; 
}
#menutop li:first-child a {
	padding: 12px 16px 12px 5px;
}
#menutop li:last-child a {
	padding: 12px 5px 12px 16px;
}
#menutop ul li:hover a, #menutop li.selected a {
	color: #2e2869;
	text-decoration: none;
	transform: scale(1.1);
}
#header {
	width: 100%;
	height: 297px;
	background: #89e7fa url(images/header_bg.jpg) center top no-repeat;
	position: relative;	
}

#header_book {
	float:left;
	width: 550px;
}
#header_book img {
	margin: 32px 0px 0px 10px;
}
#header_logo {
	width: 328px;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: 0px auto;
	text-align: center;
}
#header_phone {
	float:left;
	width: 549px;
	padding: 48px 1px 0px 0px;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 35px;
	line-height: 45px;
	font-weight: 400;
	color: #2e2869;
	text-transform: uppercase;
	text-align: right;
	text-shadow:
	 -3px -3px 1px #fff,  
	 3px -3px 1px #fff,
	 -3px 3px 1px #fff,
	 3px 3px 1px #fff;
}
#header_phone span {
	display: block;
	padding: 0px 4px 7px 0px;
	font-size: 25px;
	line-height: 28px;
	color: #ff0d00;
}
#header_social {
	float: right;
	margin-left:8px;
}
#header_social img {
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
	margin-left: 5px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#header_social a:hover img {
    -ms-transform: scale(1.1) rotate(360deg);
    -webkit-transform: scale(1.1) rotate(360deg);
    transform: scale(1.1) rotate(360deg);
}
#btn_facebook {
	position: absolute;
	top: 10px;
	right: 0px;
	z-index: 10;
}

#slide_area {
	width: 100%;
	height: 610px;
	background: #89e7fa url(images/slide_area_bg.jpg) center top no-repeat;
	position: relative;
}
.inside #slide_area {
	height: 350px;
	background: #89e7fa url(images/slide_area_inside_bg.jpg) center top no-repeat;
}
#slide_area1 {
	padding-left:49px;
	width: 1020px;
	height: 508px;
	position: relative;
}
.inside #slide_area1 {
	height: 255px;
}
#slideshow {
	width: 100%;
	height: 100%;
	overflow: hidden;	
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	list-style: none;
	list-style-image: none;
}
#slideshow_bg {
	width: 1020px;
	height: 508px;
	position: absolute;
	background: url(images/slideshow_bg.png) no-repeat;
	background-size: cover;
	top: 0px;
	right: 0px;
	z-index: 130;	
}
.inside #slideshow_bg {
	height: 255px;
	background: url(images/slideshow_inside_bg.png) no-repeat;
}
#slideshow_pager { 
	position: absolute;
	bottom: 13px;
	z-index: 140;
    text-align: center; 
	width: 100%;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.16); 	 
}
#slideshow_pager span { 
	width: 13px;
	height: 10px; 
    display: inline-block;
	cursor: pointer;
    font-family: arial;
	font-size: 38px;
	color: #ff0d00;
}
#slideshow_pager span.cycle-pager-active {
	color: #ffffff;
}
#slideshow_pager > * {
	cursor: pointer;
}
#btn_specials {
	display: block;
	position: absolute;
	width: 225px;
	height: 183px; 
	bottom: 16px;
	right: 51px;
	z-index: 150;
}
#cia_insured {
	display: block;
	position: absolute;
	width: 179px;
	height: 180px; 
	top: 0px;
	left: 0px;
	z-index: 150;
}
#box_services {
	width: 100%;
	padding: 12px 0px 29px 0px;
	min-height: 259px;
	background:  url(images/box_services2_bg.jpg) center bottom no-repeat, url(images/box_services1_bg.jpg) center top no-repeat, #fac589 url(images/box_services_bg.png) center top repeat-y;
}
#box_services ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;

}
#box_services ul li {
	width: 247px;
	display: inline-block;
	vertical-align: top;
	padding: 0px 16px 0px 16px;
	margin-right: -4px;
	text-align: center;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 20px;
	text-transform: uppercase;
	transition: all 250ms ease-in;		
	-webkit-transition: all 250ms ease-in;
}
#box_services li:first-child {
	padding: 0px 16px 0px 0px;
}
#box_services li:last-child {
	padding: 0px 0px 0px 16px;
}
#box_services ul li a {
	color: #00439f;
}
#box_services li:nth-child(3) a img {
	margin-bottom: 10px;
}
#box_services ul li:hover {
	transform: scale(1.05);
}
#box_services ul li:hover a {
	text-decoration: none;
	color: #da0033;
}
#middle {
	width: 100%;
	min-height: 1548px;
	background: url(images/middle2_bg.png) center bottom no-repeat, url(images/middle1_bg.jpg) center bottom no-repeat, #bee5f4 url(images/middle_bg.jpg) center top no-repeat;
}
.inside #middle {
	min-height: 800px;
	background: url(images/middle2_inside_bg.png) center bottom no-repeat, url(images/middle1_inside_bg.jpg) center bottom no-repeat, #bee5f4 url(images/middle_bg.jpg) center top no-repeat;
}
#side {
	float:left;
	width: 364px;
	padding: 0px 62px 51px 0px;
}
#menuleft {
	background: url(images/menuleft_bg.png) left top repeat-y;
}
#menuleft ul {
	width: 364px;
	margin: 0;
	padding: 41px 0px 0px 0px;
	list-style: none;
	list-style-image: none;
}
#menuleft ul li {
	display:inline-table;
	width: 364px;
	height:63px;	
	font-size: 0px;
	line-height: 0px;	
	padding: 0px;
	margin: 0px;	
	background: url(images/menuleft_li_bg.png) left top no-repeat;
}
#menuleft ul li:nth-child(2),
#menuleft ul li:nth-child(8) {
	background: url(images/menuleft_li_2_bg.png) left top no-repeat;
}
#menuleft ul li:nth-child(3),
#menuleft ul li:nth-child(9) {
	background: url(images/menuleft_li_3_bg.png) left top no-repeat;
}
#menuleft ul li:nth-child(4),
#menuleft ul li:nth-child(10) {
	background: url(images/menuleft_li_4_bg.png) left top no-repeat;
}
#menuleft ul li:nth-child(5),
#menuleft ul li:nth-child(11) {
	height:64px;
	background: url(images/menuleft_li_5_bg.png) left top no-repeat;
}
#menuleft ul li:nth-child(6) {
	background: url(images/menuleft_li_6_bg.png) left top no-repeat;
}
#menuleft ul li:nth-child(12) {
	background: url(images/menuleft_li_7_bg.png) left top no-repeat;
}

#menuleft ul li:last-child {
	height:62px;
}
#menuleft li a {
	display:table-cell;
	padding: 0px;
	margin: 0px;	
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 17px;
	line-height: 17px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	vertical-align:middle;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	transform: scale(1);
	text-shadow:
	 -2px -2px 1px #473825,  
	 2px -2px 1px #473825,
	 -2px 2px 1px #473825,
	 2px 2px 1px #473825;	
}
#menuleft ul li:hover a {
	color: #ffc20e;
	transform: scale(1.1);
	text-decoration: none;
}
#menuleft li.selected a {
	color: #ffc20e;
	transform: scale(1.1);
	text-decoration: none;
}
#content {
	float:left;
	width: 674px;
	padding: 57px 0px 40px 0px;
}
#box_featured {
	position: relative;
}
#box_featured_area {
	height: 265px;
	padding-bottom:53px;
}
#box_featured_area a div {
	display: block;
	position: relative;
}
#box_featured_area a div span {
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 25px;
	margin: 0 auto;
	width: 200px; 
	height: 200px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;	
	background: rgba(254,76,16,0.6) url(images/box_gallery_carusel_zoom.png) center center no-repeat;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 100;
}
#box_featured_area a:hover div span  {
	opacity: 1;
}
#box_featured_area a img  {
	width: 328px; 
	height: 265px;
	margin: 0px 5px 0px 5px;
}
#carousel_next, #carousel_prev {
	width: 21px;
	height: 54px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#carousel_prev {
	float: left;
	margin: 102px 24px 0px 0px;
	background: url(images/carousel_prev.png) center center no-repeat;
}
#carousel_next {
	float: right;
	margin: 102px 0px 0px 0px;
	background: url(images/carousel_next.png) center center no-repeat;	
}

#carousel_next:hover, #carousel_prev:hover {
	transform: scale(1.15);
}
#carousel_next:hover {
	transform-origin: 100% 50%;
}
#carousel_prev:hover {
	transform: scale(1.15);
	transform-origin: 0% 50%;
}
#box_contact {
	width: 100%;
	padding: 22px 0px 0px 0px;
	min-height: 499px;
}
.inside #box_contact {
	padding: 0px;
	min-height: 188px;
}
#box_contact_form {
	width: 1010px;
	margin:0 auto;
}
#box_contact_form .td_half {
	width: 50%;
}
#box_contact_form table tr {
	vertical-align: top;
}
#box_contact_form textarea {
	height: 155px;
	color: #0f1263;
	font-size: 18px;
	line-height: 18px;
	padding: 14px 10px 13px 21px;
	background: url(images/box_contact_form_input_lt_bg.png) left top no-repeat, url(images/box_contact_form_input_bg.png) top repeat-x, #dffbfc url(images/box_contact_form_input_left_bg.png) left top repeat-y;
	border: none;
	text-transform: uppercase;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;	
}
@-moz-document url-prefix() {
	#box_contact_form textarea {
		height: 145px;
	}
}
#box_contact_form #name,
#box_contact_form #phone,
#box_contact_form #email,
#box_contact_form #scode {
	color: #0f1263;
	font-size: 18px;
	line-height: 18px;
	padding: 14px 10px 13px 21px;
	background: url(images/box_contact_form_input_lt_bg.png) left top no-repeat, url(images/box_contact_form_input_bg.png) top repeat-x, #dffbfc url(images/box_contact_form_input_left_bg.png) left top repeat-y;
	border: none;
	text-transform: uppercase;
	margin: 0px 0px 5px 0px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
		
}
#box_contact_form input:required {
	background: url(images/placeholder_req_bg.png) 12px 14px no-repeat, url(images/box_contact_form_input_lt_bg.png) left top no-repeat, url(images/box_contact_form_input_bg.png) top repeat-x, #dffbfc url(images/box_contact_form_input_left_bg.png) left top repeat-y!important;
}
#box_contact_form input:required:active,
#box_contact_form input:required:focus,
#box_contact_form input:required:valid {
	background: url(images/box_contact_form_input_lt_bg.png) left top no-repeat, url(images/box_contact_form_input_bg.png) top repeat-x, #dffbfc url(images/box_contact_form_input_left_bg.png) left top repeat-y!important;
}
#box_contact_form label {
	padding-right:14px;
}
#box_contact_form td:nth-child(2) label {
	padding-right:0px;
}
#box_contact_form #scode_block #scode {
	width: 107px;
}
#box_contact_form ::-webkit-input-placeholder {
	color: #0f1263;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
}
#box_contact_form ::-moz-placeholder {
	color: #0f1263;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
}
#box_contact_form :-moz-placeholder {
	color: #0f1263;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
}
#box_contact_form :-ms-input-placeholder {
	color: #0f1263;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
}
#box_contact_form .chk_boxes label {
	color: #0f1263;
	font-size: 18px;
	margin-top: 14px;
}
#box_contact_form #scode_block span {
	display: inline-block;
}
#box_contact_slogans ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;

}
#box_contact_slogans {
	padding: 70px 0px 0px 0px;
}
.inside #box_contact_slogans {
	padding: 80px 0px 0px 0px;
}
#box_contact_slogans ul li {
	display: inline-block;
	padding: 0px 66px 0px 58px;
	margin-right: -4px;
	text-align: center;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 20px;
	color:#00439f;
	text-transform: uppercase;
	background: url(images/box_contact_slogans_li.png) right center no-repeat;	
}
#box_contact_slogans li:first-child {
	padding: 0px 66px 0px 0px;
}
#box_contact_slogans li:last-child {
	padding: 0px 0px 0px 58px;
	background: none;	
}
#footer {
	width: 100%;
	padding: 15px 0px 27px 0px;
	min-height: 241px;
	background: #ffbb00;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
}
#footer a {
	color: #fff;
}
#footer_logo {
	width: 300px;
	padding: 5px 39px 35px 0px;
	text-align: center;
	float: left;
}
#footer_products {
	width: 417px;
	float: left;
}
#footer_company {
	width: 196px;
	float: left;
}
#footer_social {
	width: 148px;
	float: left;
}
#footer_social img {
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
	margin: 0px 17px 14px 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#footer_social a:hover img {
    -ms-transform: scale(1.1) rotate(360deg);
    -webkit-transform: scale(1.1) rotate(360deg);
    transform: scale(1.1) rotate(360deg);
}
#footer ul {
	margin: 0;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#footer ul li {
	font-size: 0px;
	padding: 0px 0px 0px 9px;
	background: url(images/footer_li.png) left center no-repeat;
}
#footer li a {
	display: block;
	color: #0f1263;
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	transform: scale(1);
}
#footer ul li:hover a {
	font-size: 15px;
	color: #da0033;
	text-decoration: underline;
}
#footer li.selected a {
	font-size: 15px;
	color: #da0033;
	text-decoration: underline;
}
#footer_address,
#footer_links {
	width: 50%;
	float: left;
}
#footer_links {
	text-align: right;
}

/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 300px;
	float: left;
}
#contact_form {
	width: 374px;
	float: right;
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	padding: 0px 0px 23px 0px;
	margin: 0px;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 35px;
	line-height: 32px;
	color: #00439f;
	text-transform: uppercase;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 35px;
	line-height: 32px;
	color: #00439f;
	text-transform: uppercase;
}
.content_title span {
	font-size: 30px;
}
#box_featured .content_title {
	padding: 0px 0px 40px 0px;
	text-align: center;
}
#footer .content_title {
	font-size: 22px;
	line-height: 22px;
	color: #da0033;
}
#footer_social {
	padding: 0px 0px 26px 0px;
}

/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 72px;
	height: 72px;
	background: #da0033 url(images/scroll_top_bg.png) center no-repeat;
	-webkit-border-radius: 36px;
	-moz-border-radius: 36px;
	border-radius: 36px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 1000;
}
#scroll_top:hover {
	background: #ffc20e url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
}

.facebook {
	background: #537abb;
}
.google {
	background: #d24230;
}
.instagram {
	background: #696969;
}
.youtube {
	background: #e96349;
}
label.rounded_box {
	float: none;
	display: inline-block;
	padding: 0px 15px 0px 31px;
	line-height: 21px;
}
label.rounded_box input {
	display: none;	
}
label.rounded_box input + span {
	display: inline-block;
	float: left;
	width: 21px;
	height: 21px;
	margin-right: 10px;
	background: url(images/radio_input.png) no-repeat;
}
label.rounded_box input[type=checkbox]:checked + span {
	background: url(images/radio_input_checked.png) no-repeat;
}

.products {
	text-align: center;
}
.products span {
	width: 300px;
	display: inline-block;
	margin: 0px 10px 15px 10px;
	vertical-align: top;
}
/* service_area
----------------------------------------------------------------------------*/
#service_area ul {
	margin: 10px 0px 0px 20px;
	padding: 0px;

	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
	
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}
#service_area span {
	font-family: 'Sigmar One', Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 25px;
	font-weight: 400;
	color: #0e709d;
}
#service_area a[href="javascript:;"] {
	color: #0f1263;
	text-decoration: none;
	cursor: text;
}

.chk_boxes label {
	float:none;
	width: auto!important;
}
.chk_boxes label input {
	width: auto!important;
	margin: 0px 5px 0px 5px;
}