* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Teko', sans-serif;
	font-size: 28px;
	line-height: 27px;
	color: #000;
	width: 100%;
	min-width: 1100px;
	font-weight: 300;
	background: #97670d url(images/body_bg.png) center repeat-y;
	position: relative;
}

/* text styles
-----------------------------------------------------------------------------*/
h1, .h1 {
	font-size: 26px;
	line-height: 29px;
	font-weight: normal;
	color: #5a5a5a;
	font-family: 'Cinzel Decorative', cursive;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-size: 24px;
	line-height: 27px;
	font-weight: normal;
	color: #000;
	font-family: 'Cinzel Decorative', cursive;
	padding: 0px 0px 15px 0px;
	margin: 0px;
}
h3, .h3 {
	font-size: 22px;
	line-height: 27px;
	font-weight: normal;
	color: #3b8017;
	font-family: 'Cinzel Decorative', cursive;
	padding: 0px 0px 15px 0px;
	margin: 0px;
}
h4, .h4 {
	font-size: 20px;
	line-height: 27px;
	font-weight: normal;
	color: #6b9455;
	font-family: 'Cinzel Decorative', cursive;
	padding: 0px 0px 15px 0px;
	margin: 0px;
}
h5, .h5 {
	font-size: 18px;
	line-height: 27px;
	font-weight: normal;
	color: #55634e;
	font-family: 'Cinzel Decorative', cursive;
	padding: 0px 0px 15px 0px;
	margin: 0px;
}

a {
	color: #0287b0;
	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 10px;
}
.bulleted_list li {
	font-size: 22px;
	color: #5a5a5a;
	padding: 0px 0px 0px 5px;
}
.bulleted_list li span {
	display: block;
	font-size: 28px;
	color: #000;
}
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: 25px;
	line-height: 24px;
    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: #55a32d;
	font-size: 28px;
	line-height: 26px;
	font-weight: normal;
	text-transform: uppercase; 
	padding: 16px 30px 14px 30px;
	border: 0px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 30px;
	line-height: 29px;
	padding: 0px;
}
.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 28px;
	line-height: 27px;
}
.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: 25px;
	line-height: 24px;
	padding: 8px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
}
.form select {
	padding: 8px;
}
.form textarea {
	height: 150px;
}
.required {
	color: #f00;
}

/* scode_block
-----------------------------------------------------------------------------*/
#scode_block {
	width: 100%;
	text-align: center;
	font-size: 25px;
	line-height: 24px;
}
#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;
	height: 56px;
}
#scode_block input[type=text] {
	margin: 0px;
}
#scode_block #img_code {
}

/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #fff !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #fff !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #fff !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #fff !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;
}
.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: none;
	background: #ddd;
}
.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: 'Cinzel Decorative', cursive;
	font-size: 20px;
	line-height: 21px;
	text-decoration: none;
	font-weight: normal;
	outline: none;
	background: #60493f;
	text-align: center;
	padding: 15px 26px 16px 31px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #fff;
	text-decoration: none;
	background: #0285af;
}
.a_button1 {
	background: #55a32d;
}
.green  {
	color: #55a32d;
}
.blue  {
	color: #0287b0;
}
.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: #fff;
	font-size: 24px;
	line-height: 25px;
	background: #878787;
	padding: 3px 6px 2px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	line-height: 27px;
	background: #0073ac;
}
.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	line-height: 27px;
	background: #0073ac;
	padding: 3px 6px 2px 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;
	font-size: 15px;
	line-height: 17px;
}
.ppt {
	font-size: 28px !important;
	line-height: 26px;
}
.pp_description {
	color: #000;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}
.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%-0px); /* - 2*border */
	max-width: -moz-calc(100%-0px);
	max-width: calc(100% - 0px);
	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;
}
.table1 {
	width: 100%;
}
.table1 tr {
	vertical-align: middle;
}
.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;
	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-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: 50px;
}
.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);
}

/* #header_box
-----------------------------------------------------------------------------*/
#header_box {
	height: 829px;
	background: #3f3227;
	position: relative;
}
.inside #header_box {
	height: 559px;
}

/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	width: 100%;
	height: 50px;
	position: relative;
	background: rgba(0,0,0,0.6);
	z-index: 1;
}
#menutop ul {
	float: left;
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	background: url(images/menutop_li.png) right center no-repeat;
	padding: 0px;
	margin: 0px;
}
#menutop li:first-child a {
	padding-left: 2px;
}
#menutop li:last-child {
	background: none;
}
#menutop li:last-child a {
}
#menutop ul li a {
	display: block;
	color: #c4c4c4;
	font-size: 27px;
	line-height: 22px;
	font-weight: normal;
	height: 35px;
	text-align: center;
	padding: 15px 17px 0px 17px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop ul li:hover a, #menutop li.selected a {
	color: #f9cd30;
	text-decoration: none;
	transform: scale(1.1);
}
#menutop_phone {
	position: absolute; 
	top: 13px;
	right: 0px;
	color: #c4c4c4;
	font-size: 27px;
	line-height: 23px;
	text-align: left;
}
#menutop_phone span {
	color: #f1cb0e;
	font-size: 32px;
	padding-left: 7px;
}

/* Header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	position: absolute;
	top: 50px;
	height: 182px;
	background: url(images/header_bg.jpg) center top no-repeat;
	z-index: 1;
}
#header_logo {
	width: 394px;
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-top: 18px;
}
#header_slogan {
	width: auto;
	position: absolute;
	left: 0px;
	top: 13px;
	color: #000;
	font-size: 25px;
	line-height: 22px;
}
#header_license {
	width: auto;
	position: absolute;
	right: 0px;
	top: 13px;
	color: #000;
	font-size: 25px;
	line-height: 22px;
}
#header_social {
	width: auto;
	position: absolute;
	right: 0px;
	top: 40px;
	text-align: right;
}
#header_social a img {
	margin: 0px 0px 0px 3px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}

/* slideshow
-----------------------------------------------------------------------------*/
#slideshow {
	width: 100%;
	height: 829px;
	position: absolute;
	top: 0px;
	z-index: 0;
}
.inside #slideshow {
	height: 559px;
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	list-style: none;
	list-style-image: none;
}
#slides_arrow_next {
	width: auto;
	position: absolute;
	top: 60%;
	right: 25px;
	z-index: 101;
}
#slides_arrow_prev {
	width: auto;
	position: absolute;
	top: 60%;
	left: 25px;
	z-index: 101;
}
#slideshow_slogan {
	width: 678px;
	background: rgba(0,0,0,0.5);
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	bottom: 89px;
	text-align: center;
	color: #fff;
	font-size: 37px;
	line-height: 30px;
	font-family: 'Cinzel Decorative', cursive;
	text-shadow: 4px 3px 0px rgba(0,0,0,0.5);
	border: rgba(243,232,171,0.5) 3px solid;
	padding: 33px 0px 33px 0px;
	z-index: 101;
}
#slideshow_slogan span {
	font-size: 140px;
	line-height: 140px;
}
#slideshow_google {
	width: 100%;
	height: 24px;
	position: absolute;
	right: 0px;
	bottom: 44px;
	text-align: right;
	z-index: 101;
}

/* slideshow_pager
-----------------------------------------------------------------------------*/
#slideshow_pager { 
    text-align: center; 
	width: 100%; 
	z-index: 103 !important; 
	position: absolute; 
	left: 0px;
	bottom: 50px; 
	overflow: hidden;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
#slideshow_pager span { 
    width: 13px;
	height: 13px; 
    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;
}

/* slogan
-----------------------------------------------------------------------------*/
#slogan {
	width: 100%;
	display: table;
	margin: 0 auto;
	padding: 22px 0px 22px 0px;
	background: url(images/slogan_bg.jpg) left top repeat-x;
	color: #f1d497;
	font-size: 29px;
	line-height: 76px;
	font-family: 'Cinzel Decorative', cursive;
	text-align: center;
	position: relative;
}

/* middle
-----------------------------------------------------------------------------*/
#middle {
	padding: 83px 0px 50px 0px;
	background: #fff url(images/shadow_bg.png) top repeat-x;
	position: relative;
}
.inside #middle {
	background: url(images/middle_bottom_bg.png) left bottom repeat-x, #fff url(images/shadow_bg.png) top repeat-x;
	padding: 43px 0px 50px 0px;
	min-height: 400px;
	height: auto !important;
	height: 400px;
}

/* content
-----------------------------------------------------------------------------*/
#content {
	width: 100%;
	padding-top: 53px;
}
.inside #content {
	width: 820px;
	float: right;
	padding-top: 0px;
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: auto;
	display: table;
	margin-left: auto;
	margin-right: auto;
	color: #0287b0;
	font-family: 'Cinzel Decorative', cursive;
	font-size: 40px;
	line-height: 45px;
	font-weight: normal;
	text-align: center;
	padding: 0px 65px 0px 65px;
	margin-bottom: 19px;
	position: relative;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	width: 100%;
	color: #0287b0;
	font-family: 'Cinzel Decorative', cursive;
	font-size: 40px;
	line-height: 40px;
	font-weight: normal;
	text-align: center;
}
.content_title:before {
	content: "";
	display: table-cell;
	width: 55px;
	height: 35px;
	position: absolute;
	top: 4px;
	left: 0px;
	background: url(images/content_title_tracery1.png) left top no-repeat;
}
.content_title:after {
	content: "";
	display: block;
	width: 55px;
	height: 35px;
	position: absolute;
	top: 4px;
	right: 0px;
	background: url(images/content_title_tracery2.png) right top no-repeat;
}

/* side
----------------------------------------------------------------------------*/
#side {
	float: left;
	width: 260px;
}

/* menu
-----------------------------------------------------------------------------*/
#menu {
	width: 225px;
	background: #006eab url(images/menu_bg.png) left top no-repeat;
	background: url(images/menu_bg.png) left top no-repeat, -moz-linear-gradient(top, #006eab 0%, #0289b0 50%, #04a4b6 100%);
	background: url(images/menu_bg.png) left top no-repeat, -webkit-linear-gradient(top, #006eab 0%, #0289b0 50%, #04a4b6 100%);
	background: url(images/menu_bg.png) left top no-repeat, linear-gradient(to bottom, #006eab 0%, #0289b0 50%, #04a4b6 100%);
	filter: url(images/menu_bg.png) left top no-repeat, progid:DXImageTransform.Microsoft.gradient(startColorstr='#006eab', endColorstr='#04a4b6',GradientType=0);
	padding: 30px 18px 20px 18px;
	min-height: 338px;
	height: auto !important;
	height: 338px;
}
#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;
	background: url(images/menu_li.png) left 8px no-repeat;
}
#menu a {
	display: block;
	color: #fefefe;
	font-family: 'Cinzel Decorative', cursive;
	font-weight: normal;
	font-size: 17px;
	line-height: 19px;
	padding: 0px 0px 10px 13px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menu ul li:hover a, #menu li.selected a {
	color: #fedd5a;
	text-decoration: none;
	transform: scale(1.05);
	padding-left: 18px;
}
.menu_before_after_paver_gallery {
	padding-right: 25px !important;
}

/* side_images
-----------------------------------------------------------------------------*/
#side_images {
	float: right;
	width: auto;
}
#side_images ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#side_images ul li {
	float: left;
	width: 260px;
	margin-left: 19px;
}
#side_images li:last-child {
	margin-right: 0px;
}

/* box_portfolio
-----------------------------------------------------------------------------*/
#box_portfolio {
	height: auto;
	background: url(images/box_portfolio_bg.jpg) top no-repeat;
	position: relative;
	padding: 67px 0px 53px 0px;
}
#box_portfolio .content_title {
	color: #fff;
	font-size: 36px;
	line-height: 27px;
	padding: 0px;
	margin-bottom: 55px;
}
#box_portfolio .content_title:before {
	background: none;
}
#box_portfolio .content_title:after {
	background: none;
}
#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: auto;
	height: 253px;
	padding: 0px;
	margin: 0px 20px 20px 0px;
}
#box_portfolio li:nth-child(3) {
	margin-right: 0px;
}
#box_portfolio li:last-child {
	margin-right: 0px;
}
#box_portfolio ul li a {
	display: block;
	height: 253px;
	overflow: hidden;
	z-index: 1;
}
#box_portfolio ul li a img {
	transition: all 0.5s ease;
}
#box_portfolio ul li a:hover img {
	opacity: 1;
	transform: scale(1.08);
}
#box_portfolio_slogon {
	font-family: 'Cinzel Decorative', cursive;
	color: #fff;
	font-weight: bold;
	font-size: 32px;
	line-height: 38px;	
	text-align: center;
}
#box_portfolio_slogon span {
	color: #e5d0b8;
	font-weight: normal;
	font-size: 27px;
	line-height: 30px;
}

/* box_footer
-----------------------------------------------------------------------------*/
#box_footer {
	width: 100%;
	background: url(images/box_footer_bg.jpg) left top repeat;
	position: relative;
	padding: 62px 0px 62px 0px;
}

/* box_reviews
-----------------------------------------------------------------------------*/
#box_reviews {
	float: left;
	width: 400px;
	text-align: center;
}
.box_reviews_div {
	padding-top: 48px;
}

/* form_request_a_quote
-----------------------------------------------------------------------------*/
#box_request_a_quote {
	float: right;
	width: 630px;
}
#box_request_a_quote .content_title {
	color: #322519;
	font-size: 36px;
	line-height: 27px;
	padding: 0px;
	margin-bottom: 23px;
}
#box_request_a_quote .content_title:before {
	background: none;
}
#box_request_a_quote .content_title:after {
	background: none;
}
/* form_request_a_quote
-----------------------------------------------------------------------------*/
#form_request_a_quote {
	width: 100%;
}
#form_request_a_quote fieldset {
	border: none;
}
#form_request_a_quote fieldset > table {
	width: 100%;
}
#form_request_a_quote fieldset > table tr td {
	vertical-align: top;
}
#form_request_a_quote label input {
	width: 630px;
	height: 56px;	
	font-size: 23px;
	line-height: 19px;
	padding: 4px 10px 8px 22px;
	color: #fff;
	font-weight: normal;
	background: rgba(142,134,124,0.6);
	border: #fff 1px solid;
	margin-bottom: 7px;
}
#form_request_a_quote label textarea {
	width: 630px;
	height: 219px;	
	font-size: 23px;
	line-height: 19px;
	padding: 9px 10px 8px 22px;
	color: #fff;
	font-weight: normal;
	background: rgba(142,134,124,0.6);
	border: #fff 1px solid;
	margin-bottom: 19px;
}
#form_request_a_quote input.submit {
	background: #55a32d;
	font-size: 24px;
	line-height: 20px;
	font-weight: normal;
	color: #fff; 
	font-family: 'Cinzel Decorative', cursive;
	text-transform: uppercase; 
	padding: 20px 35px 16px 35px;
	border: none;
}
#form_request_a_quote #img_code {
	height: 56px;
}
#form_request_a_quote input:required {
	background: url(images/placeholder_yellow_bg.png) 2% 20px no-repeat, rgba(142,134,124,0.6);
}
#form_request_a_quote input:required:active,
#form_request_a_quote input:required:focus,
#form_request_a_quote input:required:valid {
	background: rgba(142,134,124,0.6);
}
#form_request_a_quote #scode_block {
	color: #000;
	font-size: 25px;
	line-height: 27px;
	text-align: center;
}

/* Footer
----------------------------------------------------------------------------*/
#footer {
	color: #000;
	background: url(images/footer_bg.jpg) center 36px no-repeat;
	position: relative;
	padding: 90px 0px 63px 0px;
	font-size: 23px;
	line-height: 24px;
}
#footer:before {
	content: "";
	display: block;
	width: 100%;
	height: 14px;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(images/footer_tracery1.jpg) left top repeat-x;
}
#footer:after {
	content: "";
	display: block;
	width: 100%;
	height: 22px;
	position: absolute;
	top: 14px;
	right: 0px;
	background: url(images/footer_tracery2.jpg) left top repeat-x;
}
#footer_logo {
	float: left;
	width: 302px;
	margin-left: 58px;
	font-weight: 300;
}
#footer_houzz {
	float: right;
	width: auto;
	margin-right: 58px;
}
#footer_address {
	float: left;
	width: 450px;
	margin-left: 65px;
}
#footer_address span {
	color: #fff;
	font-size: 31px;
}
#footer_address a {
	color: #000;
}

/* footer service_area
----------------------------------------------------------------------------*/
#footer_service_area {
	position: absolute;
	top: 100px;
	left: 80px;
	width: auto;
}
#service_area {
	width: 900px !important;
	vertical-align: central;
}
.area_service { 
	display: inline-block;  
	color: #fff;
	font-size: 28px;
	line-height: 18px;
	font-weight: 300;
	outline: none;
	text-decoration: none;
}
.area_service:hover {	
	color: #3a6c21;
	text-decoration: none;
}
#service_area ul {
	margin: 10px 0px 0px 20px;
	padding: 0px;

	-moz-column-count: 1;
	-webkit-column-count: 1;
	column-count: 1;
	
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}
#service_area span {
	display: block;
	margin-left: 10px;
}
#service_area a[href="javascript:;"] {
	color: #000;
	text-decoration: none;
	cursor: text;
}

/* Contact
-----------------------------------------------------------------------------*/
#contact_address {
	width: 300px;
	float: left;
}
#contact_form {
	width: 480px;
	float: right;
}

/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 36px;
	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 {
	background: url(images/scroll_top_on_bg.png) center no-repeat;
	text-decoration: none;
}

/* Paver Lights page
-----------------------------------------------------------------------------*/
#paver_lights_slide {
	width: 100%;
	height: 375px;
	position: relative;
	margin-bottom: 10px;
}
#paver_lights_slide div {
	width: 100%;
	height: 375px;
	margin: auto 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}