* {
	margin: 0;
	padding: 0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 28px;
	color: #454545;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #fff url(images/body_bg.png) center repeat-y;
	position: relative;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 47px;
	line-height: 50px;
	color: #69563f;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 44px;
	line-height: 47px;
	color: #616d5a;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 41px;
	line-height: 44px;
	color: #435367;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

a {
	color: #e82134;
	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: 18px;
	line-height: 18px;
    box-sizing: border-box;
}
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;
	color: #fff;
	background: #e82134;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 16px;
	text-transform: uppercase;
	border: 0px;
	padding: 17px 25px 17px 25px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	font-size: 16px;
	line-height: 28px;
	color: #454545;
}
.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: #454545;
	font-size: 16px;
	line-height: 16px;
	padding: 15px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #14487e;
}
.form select {
	padding: 14px;
}

.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 {
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #454545 !important;
	text-transform: uppercase !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #454545 !important;
	text-transform: uppercase !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #454545 !important;
	text-transform: uppercase !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #454545 !important;
	text-transform: uppercase !important;
	font-weight: normal;
	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;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
} 
.clearfix:after {
	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: 5px solid #f7f7f7;
}
.images_left {
	width: auto;
	float: left;
	margin: 0px 30px 20px 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;
	color: #fff;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	text-decoration: none;
	outline: none;
	text-transform: uppercase;
	background: #e82134;
	border: 1px #e82134 solid;
	text-align: center;
	padding: 14px 30px 14px 30px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #e82134;
	text-decoration: none;
	background: #fff;
	border: 1px #e82134 solid;
}

.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;
}


/* 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: #e82134;
	background: #fff;
	border: 1px #e82134 solid;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #e82134;
	border: 1px #e82134 solid;
}
.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #e82134;
	border: 1px #e82134 solid;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
}
.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;
}


/* breadcrumbs
-----------------------------------------------------------------------------*/
.breadcrumbs {
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 16px;
	color: #000;
	padding: 0px 0px 13px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #CCC;
}
.breadcrumbs ol {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
.breadcrumbs ol li {
	position: relative;
	display: inline-block;
	padding: 0px 15px 0px 0px;
	margin: 0px 5px 0px 0px;
}
.breadcrumbs ol li:after {
	content: " >";
	display: block;
	width: 20px;
	height: 100%;
	position: absolute;
	top: 2px;
	right: 0px;
	text-align: right;
	font-size: 14px;
	line-height: 14px;
}
.breadcrumbs ol li:last-child {
	margin: 0px 0px 0px 0px;
}
.breadcrumbs ol li:last-child:after {
	content: "";
	display: block;
	width: 0px;
}

.breadcrumbs ol li a {
	color: #e82134;
}
.breadcrumbs ol li:hover a {
	text-decoration: underline;
}


/* 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: 'Fjalla One', sans-serif;
	font-weight: normal;
	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: 'Fjalla One', sans-serif;
	font-weight: normal;
	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: 56px;
}

.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);
}


/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	height: 56px;
	background: #00630c;
}
#menutop ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding: 0px 5px 0px 5px;
	margin: 0px;
}
#menutop li:last-child {
	padding-right: 0px;
}

#menutop ul li a {
	display: block;
	color: #e8e8e8;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 23px;
	line-height: 23px;
	text-transform: uppercase;
	height: 34px;
	text-align: center;
	padding: 18px 10px 0px 10px;
	margin: 0px;
	transition: color 250ms ease-in;
	-webkit-transition: color 250ms ease-in;
}
#menutop li:last-child a {
	padding-right: 0px;
}

#menutop ul li:hover a, #menutop li.selected a {
	color: #ffa123;
	border-bottom: 4px solid #ffa123;
	text-decoration: none;
}


/* Header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	position: relative;
	height: 152px;
	background: url(images/header_bg.jpg) center top no-repeat;
}

#header_logo {
	width: 333px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 18px;
}
#header_social {
	width: 250px;
	position: absolute;
	left: 850px;
	top: 26px;
	text-align: right;
}
#header_social a img {
	margin: 0px 0px 0px 2px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	opacity: 0.8;
}
#header_social a:hover img {
	opacity: 1;
}

#header_phone {
	width: 235px;
	position: absolute;
	left: 865px;
	top: 115px;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	color: #fff;
	font-size: 34px;
	line-height: 34px;
	background: url(images/phone_icon.png) left 2px no-repeat;
	text-align: right;
}


/* slideshow
-----------------------------------------------------------------------------*/
#slideshow {
	width: 100%;
	height: 617px;
	position: relative;
	z-index: 0;
}
.inside #slideshow {
	height: 370px;
}
#slideshow:before {
	content: "";
	display: block;
	width: 100%;
	height: 127px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 101;
	background: url(images/slideshow_top_bg.png) center top no-repeat;
}
#slideshow:after {
	content: "";
	display: block;
	width: 100%;
	height: 127px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 100;
	background: url(images/slideshow_bottom_bg.png) center bottom no-repeat;
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}

#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	list-style: none;
	list-style-image: none;
}

#slides_arrow_next {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	right: 45px;
	z-index: 101;
}
#slides_arrow_prev {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	left: 45px;
	z-index: 101;
}

#slideshow_slogan {
	width: 1100px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 320px;
	text-align: center;
	color: #fff;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 80px;
	line-height: 80px;
	z-index: 201;
	text-shadow: 2px 3px 3px rgba(0,0,0,0.5);
}
#slideshow_slogan span {
	font-size: 140px;
	line-height: 140px;
}
#slideshow_button {
	width: 150px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 444px;
	z-index: 201;
}

/* slideshow_pager
-----------------------------------------------------------------------------*/
#slideshow_pager { 
  text-align: center; 
	width: 100%; 
	z-index: 101 !important; 
	position: absolute; 
	left: 0px;
	bottom: 75px; 
	overflow: hidden;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#slideshow_pager span { 
  width: 11px;
	height: 11px; 
  display: inline-block;
	cursor: pointer;
	background: url(images/slide_icon.png) left top no-repeat;
	padding: 0px 2px 0px 2px;
	font-family: arial; font-size: 0px; 
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.png) left top no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}


/* middle
-----------------------------------------------------------------------------*/
#middle {
	padding: 50px 0px 50px 0px;
	background: url(images/middle_top_bg.jpg) top no-repeat, url(images/middle_bg.png) top repeat-y;
	position: relative;
}
.inside #middle {
	min-height: 500px;
	height: auto !important;
	height: 500px;
}


/* content
-----------------------------------------------------------------------------*/
#content {
	width: 764px;
	float: left;
	position: relative;
	z-index: 1;
}


/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	color: #3b3132;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 50px;
	line-height: 50px;
	text-transform: uppercase;
	text-align: center;
	padding: 0px 0px 45px 0px;
	background: url(images/content_title_bg.png) bottom center no-repeat;
	margin-bottom: 30px;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	width: 100%;
	color: #3b3132;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 50px;
	line-height: 50px;
	text-transform: uppercase;
	text-align: center;
}
#content_title_gallery, #content_title_services, #content_title_contact {
	color: #fff;
	background: url(images/content_title_gallery_bg.png) bottom center no-repeat;
} 
#content_title_service_area {
	width: 100%;
	color: #3b3132;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	font-size: 35px;
	line-height: 24px;
	text-transform: uppercase;
	text-align: center;
	padding: 0px 0px 20px 0px;
} 


/* side
----------------------------------------------------------------------------*/
#side {
	width: 290px;
	float: left;
	position: relative;
	z-index: 2;
	padding: 0px 46px 0px 0px;
}


/* menu
-----------------------------------------------------------------------------*/
#menu {
}

#menu ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menu ul li {
	list-style: none;
	list-style-image: none;
}
#menu a {
	display: block;
	color: #fff;
	font-family: 'Fjalla One', sans-serif;
	font-weight: normal;
	text-align: center;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
	padding: 9px 0px 9px 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menu ul li:hover a, #menu li.selected a {
	text-decoration: none;
	color: #ffa123;
}


/* box_service_area
----------------------------------------------------------------------------*/
#box_service_area {
	background: #fdf7ec url(images/box_service_area_bg.jpg) top repeat;
	position: relative;
	padding: 45px 0px 45px 0px;
}
.inside #box_service_area {
	padding: 45px 0px 75px 0px;
}
#service_area ul {
	margin: 10px 0px 0px 20px;
	padding: 0px;

	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
	
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}
#service_area span {
	font-size: 16px;
	line-height: 17px;
	font-weight: bold;
}
#service_area a[href="javascript:;"] {
	color: #434343;
	text-decoration: none;
	cursor: text;
}


/* box_gallery
-----------------------------------------------------------------------------*/
#box_gallery {
	background: url(images/box_gallery_bg.jpg) top repeat;
	position: relative;
	padding: 70px 0px 70px 0px;
}
#box_gallery ul {
	display: table;
	margin: 0 auto;
	padding: 0px 0px 52px 0px;
	list-style: none;
	list-style-image: none;
}
#box_gallery ul.big_ul {
	display: table;
	width: 1100px;
	height: 265px;
	overflow: hidden;
	padding: 0px;
	z-index: 1;
}
#box_gallery ul li {
	float: left;
	width: 322px;
	padding: 0px 0px 0px 0px;
	margin: 0px 52px 0px 0px;
	border: 5px solid #ffd691;
}
#box_gallery ul li.big_li {
	display: block;
	width: 514px;
	height: 245px;
	margin: 0px 52px 0px 0px;
	overflow: hidden;
	z-index: 1;
}
#box_gallery li.big_li:last-child {
	margin-right: 0px;
}
#box_gallery li:last-child {
	margin-right: 0px;
}
#box_gallery ul li a {
	display: block;
	width: 322px;
	height: 265px;
	overflow: hidden;
	z-index: 1;
	position: relative;
}
#box_gallery ul li.big_li a {
	display: block;
	width: 514px;
	height: 245px;
	overflow: hidden;
	z-index: 1;
	position: relative;
}
#box_gallery a div {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	background: rgba(0,0,0,0.5) url(images/icon_zoom.png) top center no-repeat;
	transition: all 0.5s ease;
	z-index: 2;
}
#box_gallery a:hover div {
	opacity: 1;
	background: rgba(0,0,0,0.5) url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
}


/* box_about
-----------------------------------------------------------------------------*/
#box_about {
	background: #fff;
	position: relative;
	padding: 70px 0px 70px 0px;
}


/* box_testimonials
-----------------------------------------------------------------------------*/
#box_testimonials {
	background: #fdf7ec url(images/box_service_area_bg.jpg) top no-repeat;
	position: relative;
	padding: 70px 0px 70px 0px;
}


/* box_contact
-----------------------------------------------------------------------------*/
#box_contact {
	width: 100%;
	padding: 70px 0px 70px 0px;
	background: url(images/box_gallery_bg.jpg) top repeat;
	color: #fff;
	position: relative;
}
#box_contact form {
	width: 100%;
}


/* box_banners
-----------------------------------------------------------------------------*/
#box_banners {
	padding: 60px 0px 70px 0px;
	background: #fdf7ec url(images/box_service_area_bg.jpg) top repeat;
	position: relative;
} 
#box_banners ul {
	width: 330px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
#box_banners ul li {
	vertical-align: middle;
	display: inline-block;
	margin: 0px;
	padding: 0px 45px 0px 45px;
}
#box_banners li:first-child {
	padding-left: 0px;
}
#box_banners li:last-child {
	padding-right: 0px;
}


#banner_undermenu {
	width: 225px;
	margin: 30px 0px 0px 30px;
}

/* form_side
-----------------------------------------------------------------------------*/
#form_estimate_side {
	width: 100%;
}

#form_estimate_side fieldset {
	border: none;
	padding: 0px;
	margin: 0px;
}
#form_estimate_side input[type=text], #form_estimate_side input[type=email], #form_estimate_side select, #form_estimate_side textarea {
}
#form_estimate_side textarea {
	height: 171px;
}

#form_estimate_side #table_form {
	width: 100%;
}
#form_estimate_side #table_form td {
	width: 49%;
	padding-right: 1%;
}


/* Footer
----------------------------------------------------------------------------*/
#footer {
	color: #8e7663;
	background:  url(images/footer_bg.jpg) center top no-repeat;
	position: relative;
	height: 228px;
	padding: 0px;
	font-size: 14px;
	line-height: 21px;
}
#footer:before {
	content: "";
	display: block;
	width: 100%;
	height: 78px;
	position: absolute;
	top: -78px;
	left: 0px;
	background: url(images/footer_top_bg.png) center top no-repeat;
}
#footer_logo {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	width: 159px;
	text-align: center;
}

#footer_address {
	width: 1100px;
	text-align: center;
	padding-top: 20px;
}
#footer_address a {
	color: #8e7663;
}


/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 300px;
	float: left;
	padding-right: 30px;
}
#contact_form {
	width: 434px;
	float: right;
}


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: #e82134 url(images/scroll_top_bg.png) center no-repeat;
	-webkit-border-radius: 26px;
	-moz-border-radius: 26px;
	border-radius: 26px;
	border: 1px solid #e82134;
	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: #fff url(images/scroll_top_on_bg.png) center no-repeat;
	border: 1px solid #e82134;
	text-decoration: none;
}


/* catalogs
-----------------------------------------------------------------------------*/
.catalogs ul li {
	vertical-align: middle;
	display: inline-block;
	margin: 0px;
	text-align: center;
	padding: 0px 9px 25px 9px;
}
.catalogs li:first-child {
	padding-left: 10px;        
	margin-left: 0px;
}
.catalogs li:last-child {
	padding-right: 0px;
	margin-right: 0px;
}


#main_gallery ul {
	display: table;
	margin: 0 auto;
	padding: 0px 0px 40px 0px;
	list-style: none;
	list-style-image: none;
}
#main_gallery ul li {
	float: left;
	width: 200px;
	text-align: center;
	margin: 0px 50px 0px 0px;
}
.main_gallery ul li:last-child {
	margin-right: 0px;
}
