/* google_fonts
-----------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Oranienbaum);
@import url(https://fonts.googleapis.com/css?family=Old+Standard+TT);

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Old Standard TT', serif;
	font-size: 17px;
	line-height: 24px;
	color: #5d5d5d;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #323a14 url(images/body_bg.png) center repeat-y;
}
.body_offset {
	padding-top: 0px;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-family: 'Oranienbaum', serif;
	font-size: 30px;
	line-height: 33px;
	font-weight: normal;
	color: #000;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-family: 'Oranienbaum', serif;
	font-size: 26px;
	line-height: 29px;
	font-weight: normal;
	color: #3e3e3e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-family: 'Oranienbaum', serif;
	font-size: 22px;
	line-height: 25px;
	font-weight: normal;
	color: #496001;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

a {
	color: #bb4600;
	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;
	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;
	color: #fff;
	background: #6c850a;
	font-family: 'Oranienbaum', serif;
	font-size: 22px;
	line-height: 22px;
	border: 0px;
	border-radius: 20px;
	padding: 12px 20px 11px 20px;
	text-transform: uppercase;
}
.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;
	color: #000;
	font-size: 20px;
	line-height: 20px;
}
.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: 18px;
	line-height: 18px;
	padding: 9px;
	margin: 0px 0px 10px 0px;
	font-family: 'Oranienbaum', serif;
	font-size: 20px;
	line-height: 20px;
	background: #fff;
	border: 1px solid #1f1f1e;
}
.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 {
	border-radius: 20px;
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #1f1f1e !important;
	text-transform: uppercase;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #1f1f1e !important;
	text-transform: uppercase;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #1f1f1e !important;
	text-transform: uppercase;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #1f1f1e !important;
	text-transform: uppercase;
	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;
}

.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: 3px solid #857650;
}
.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;
	color: #fff;
	font-family: 'Oranienbaum', serif;
	font-size: 20px;
	line-height: 20px;
	text-decoration: none;
	font-weight: normal;
	outline: none;
	background: #485e06 url(images/a_button_bg.png) top repeat-x;
	text-align: center;
	padding: 14px 25px 14px 25px;
	border-radius: 20px;
	text-shadow: none;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #000;
	text-decoration: none;
}

.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-images: 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: #4a6006;
	border-radius: 2px;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #000;
	background: #f4ea06;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #000;
	background: #f4ea06;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	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;
}


/* 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: 'Oranienbaum', serif;
	color: #fff;
	font-weight: normal;
	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: 'Oranienbaum', 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;
}


/* main styles
-----------------------------------------------------------------------------*/
.animatedParent {
	overflow: hidden;
}

.page_wrapper {
	width: 1100px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.body_wrapper {
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

.box_fixed {
	position: fixed !important;
	top: 0 !important;
	z-index: 300 !important;
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
/*	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
}


/* slideshow
-----------------------------------------------------------------------------*/
#slideshow {
	width: 100%;
	height: 777px;
	position: relative;
	z-index: 0;
}
.inside #slideshow {
	height: 456px;
}

#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;
	background-size: cover;
	list-style: none;
	list-style-image: none;
}

#slides_arrow_next {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: 40px;
	right: 45px;
	z-index: 101;
}
#slides_arrow_prev {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: 40px;
	left: 45px;
	z-index: 101;
}

.slideshow_slogan {
	width: 1100px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 310px;
	text-align: center;
	color: #fff;
	font-family: 'Old Standard TT', serif;
	font-size: 30px;
	line-height: 35px;
	z-index: 201;
	text-shadow: 2px 2px 1px rgba(0,0,0,1);
	padding: 20px 0px 20px 0px;
	background: rgba(0,0,0,0.3);
	border-radius: 20px;
}
.slideshow_slogan span {
	display: block;
	font-family: 'Oranienbaum', serif;
	font-size: 90px;
	line-height: 90px;
	padding-bottom: 10px;
}


/* slideshow_pager
-----------------------------------------------------------------------------*/
#slideshow_pager { 
    text-align: center; 
	width: 100%; 
	z-index: 101 !important; 
	position: absolute; 
	left: 0px;
	bottom: 30px; 
	overflow: hidden;
}

#slideshow_pager span { 
    width: 13px;
	height: 12px; 
    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: 1px; 
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.png) left top no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}


/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	width: 100%;
	position: absolute;
	top: 62px;
	height: 72px;
	background: url(images/menutop_bg.png) center top repeat-x;
}
#menutop ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}

#menutop ul li a {
	display: block;
	color: #231f20;
	font-family: 'Oranienbaum', serif;
	font-size: 19px;
	line-height: 19px;
	font-weight: normal;
	height: 45px;
	text-align: center;
	padding: 27px 10px 0px 10px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop ul li:hover a, #menutop li.selected a {
	color: #97b400;
	text-decoration: none;
	transform: scale(1.1);
}
#menutop li:first-child a {
	padding-left: 0px;
}
#menutop li:last-child a {
	padding-right: 0px;
}

#menutop_left {
	position: absolute;
	left: 0px;
	top: 0px;
}
#menutop_right {
	position: absolute;
	right: 0px;
	top: 0px;
}



/* Header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

a#header_logo {
	width: 391px;
	height: 97px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: -50px;
	z-index: 301;
	background: url(images/logo.png) left top no-repeat;
	color: #fff;
	font-size: 28px;
	line-height: 28px;
	text-align: center;
	padding-top: 207px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
a#header_logo:hover {
	text-decoration: none;
}
.header_logo_fixed {
	top: -90px !important;
	transform: scale(0.6);
}

#header_social {
	width: 250px;
	position: absolute;
	left: 850px;
	top: 15px;
	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_service_area {
	width: 300px;
	position: absolute;
	left: 0px;
	top: 22px;
	color: #fff;
	font-size: 22px;
	line-height: 22px;
}


/* box_services
-----------------------------------------------------------------------------*/
#box_services {
	height: 454px;
	background: #186c15 url(images/box_services_bg.jpg) center top no-repeat;
	background-size: cover;
	padding: 37px 0px 40px 0px;
	position: relative;
	color: #fff;
	text-align: center;
	overflow: visible;
}
#box_services:before {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	position: absolute;
	top: -6px;
	left: 0px;
	background: url(images/box_services_top_bg.png) center top no-repeat;
	background-size: cover;
}

#box_services ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#box_services ul li {
	display: inline-block;
	vertical-align: top;
}
#box_services ul li:last-child {
	margin-right: -4px;
}
#box_services ul li {
	background-repeat: no-repeat;
}

#box_services ul li a {
	display: block;
	width: 245px;
	color: #fff;
	font-family: 'Old Standard TT', serif;
	font-size: 17px;
	line-height: 22px;
	font-weight: normal;
	padding: 0px 15px 0px 15px;
	text-align: center;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
}
#box_services ul li a:hover {
	text-decoration: none;
}
#box_services ul li:first-child a {
	padding-left: 0px;
}
#box_services ul li:last-child a {
	padding-right: 0px;
}

#box_services ul li a span {
	display: block;
	width: 198px;
	height: 176px;
	line-height: 176px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	transition: all 500ms ease-in;
	-webkit-transition: all 500ms ease-in;
}
#box_services ul li a span img {
	display: inline-block;
	vertical-align: middle;
}
#box_services ul li a:hover span {
	transform: scale(1.1);
}


/* middle
-----------------------------------------------------------------------------*/
#middle {
	min-height: 541px;
	padding: 45px 0px 30px 0px;
	margin-bottom: 9px;
	background: url(images/middle_bg.jpg) center bottom no-repeat, url(images/middle_h_bg.png) center repeat-y, #475807 url(images/middle_v_bg.png) bottom repeat-x;
	position: relative;
	overflow: visible;
}
#middle:before {
	content: "";
	display: block;
	width: 100%;
	height: 9px;
	position: absolute;
	top: -9px;
	left: 0px;
	background: url(images/middle_top_bg.png) center top no-repeat;
}
#middle:after {
	content: "";
	display: block;
	width: 100%;
	height: 9px;
	position: absolute;
	bottom: -9px;
	left: 0px;
	background: url(images/middle_bottom_bg.png) center bottom no-repeat;
	z-index: 2;
}

.inside #middle {
	min-height: 900px;
	height: auto !important;
	height: 900px;
	padding: 100px 0px 100px 0px;
	background: url(images/middle_inside1_bg.jpg) center bottom no-repeat, #fff url(images/middle_inside_bg.jpg) center top no-repeat;
	margin-bottom: 0px;
}
.inside #middle:after {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	position: absolute;
	bottom: -6px;
	left: 0px;
	background: url(images/box_portfolio_bottom_bg.png) center bottom no-repeat;
	z-index: 2;
}


/* content_logos
-----------------------------------------------------------------------------*/
#content_logos {
	width: 450px;
	float: left;
}
#content_logos td {
	padding: 0px 30px 0px 0px;
}


/* content
-----------------------------------------------------------------------------*/
#content {
	width: 530px;
	color: #fff;
	float: right;
}
.inside #content {
	width: 100%;
	color: #5d5d5d;
	float: none;
}


/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	color: #fff;
	font-family: 'Oranienbaum', serif;
	font-size: 40px;
	line-height: 40px;
	font-weight: normal;
	text-align: center;
	padding: 0px 0px 20px 0px;
	margin-bottom: 15px;
	background: url(images/content_title_bg.png) center bottom no-repeat;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	width: 100%;
	color: #fff;
	font-family: 'Oranienbaum', serif;
	font-size: 40px;
	line-height: 40px;
	font-weight: normal;
	text-align: center;
}

.content_title1 {
	color: #4b6206;
	background: url(images/content_title1_bg.png) center bottom no-repeat;
}
.content_title1 h1 {
	color: #4b6206;
}


/* service_area
----------------------------------------------------------------------------*/
#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: #5d5d5d;
	text-decoration: none;
	cursor: text;
}


/* box_testimonials
-----------------------------------------------------------------------------*/
#box_testimonials {
	min-height: 305px;
	position: relative;
	top: -9px;
	margin-bottom: -9px;
	background: #fff;
	padding: 45px 0px 0px 0px;
}
#box_testimonials:before {
	content: "";
	display: block;
	width: 100%;
	height: 350px;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(images/box_testimonials_bg.jpg) center top no-repeat;
}
#box_testimonials_text {
	width: 535px;
}


/* box_portfolio
-----------------------------------------------------------------------------*/
#box_portfolio {
	height: 454px;
	background: url(images/box_portfolio_bg.jpg) top no-repeat;
	background-size: cover;
	position: relative;
	padding: 44px 0px 0px 0px;
	overflow: visible;
}
#box_portfolio:before {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	position: absolute;
	top: -6px;
	left: 0px;
	background: url(images/box_portfolio_top_bg.png) center top no-repeat;
}
#box_portfolio:after {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	position: absolute;
	bottom: -6px;
	left: 0px;
	background: url(images/box_portfolio_bottom_bg.png) center bottom no-repeat;
	z-index: 2;
}

#box_portfolio ul {
	display: table;
	margin: 0 auto;
	padding: 0px 0px 0px 0px;
	list-style: none;
	list-style-image: none;
}
#box_portfolio ul li {
	float: left;
	width: 352px;
	padding: 0px;
	margin: 0px 22px 0px 0px;
}
#box_portfolio li:last-child {
	margin-right: 0px;
}

#box_portfolio ul li a {
	display: block;
	z-index: 1;
}
#box_portfolio ul li a img {
	transition: all 0.5s ease;
}
#box_portfolio ul li a:hover img {
	transform: scale(1.1);
}

#box_portfolio a div {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	background: url(images/icon_zoom.png) center 100px no-repeat;
	transition: all 0.5s ease;
	z-index: 2;
}
#box_portfolio a:hover div {
	opacity: 1;
	background: url(images/icon_zoom.png) center 110px no-repeat;
	transition: all 0.5s ease;
}


/* Footer
----------------------------------------------------------------------------*/
#footer {
	color: #fff;
	height: 571px;
	background: url(images/footer_bg.jpg) center top no-repeat;
	background-size: cover;
	position: relative;
	padding: 43px 0px 20px 0px;
	font-size: 16px;
	line-height: 20px;
}

#footer_links {
	height: 120px;
	padding: 46px 0px 0px 0px;
	color: #231f20;
	text-align: center;
	background: url(images/footer_links_bg.png) top repeat-x;
}
#footer_links a {
	color: #231f20;
}
#footer_links span {
	font-weight: bold;
}


/* form_side
-----------------------------------------------------------------------------*/
#form_estimate_side {
	width: 1100px;
	margin: 0 auto;
	padding-bottom: 60px;
}

#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 {
	border: 1px solid transparent;
}
#form_estimate_side textarea {
	height: 150px;
}

#form_estimate_side #table_form td {
	width: 49%;
	padding-right: 1%;
}


/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 300px;
	float: left;
}
#contact_form {
	width: 600px;
	float: right;
}


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 53px;
	height: 53px;
	background: url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
	cursor: pointer;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 1000;
}
#scroll_top:hover {
	text-decoration: none;
	transform: scale(1.1);
}
