/* google_fonts
-----------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Federo);

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #3d372c;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #211315 url(images/body_bg.png) center repeat-y;
	position: relative;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-size: 23px;
	line-height: 26px;
	font-weight: bold;
	color: #bf1e2e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-size: 20px;
	line-height: 23px;
	font-weight: bold;
	color: #2c8546;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-size: 17px;
	line-height: 20px;
	font-weight: bold;
	color: #ff9000;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

a {
	color: #0071da;
	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: 14px;
	line-height: 14px;
    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: #e4d6c2;
	background: #9b8656;
	font-size: 17px;
	line-height: 17px;
	font-weight: bold;
	text-transform: uppercase;	
	border: 0px;
	padding: 10px 20px 9px 20px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 14px;
	line-height: 14px;
}
.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: 14px;
	line-height: 14px;
	padding: 9px;
	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;
}
#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;
}

/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #000;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #000;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #000;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #000;
	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: 7px solid #9b8656;
	background: #fdfcfc;
}
.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;
	position: relative;	
	color: #f7f6f3;
	font-family: 'Federo', Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 22px;
	text-decoration: none;
	font-weight: 400;
	outline: none;
	background: #9b8656;
	text-align: center;
	padding: 4px 20px 4px 20px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: -2px;
	left: 0px;
	border-top: 1px solid #9b8656;
	z-index: 2;
}
.a_button:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0px;
	border-bottom: 1px solid #9b8656;
	z-index: 2;
}
.a_button:hover {
	transform: scale(1.1);
	text-decoration: none;
	background: #44322a;
}
.a_button:hover:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: -2px;
	left: 0px;
	border-top: 1px solid #44322a;
	z-index: 2;
}
.a_button:hover:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0px;
	border-bottom: 1px solid #44322a;
	z-index: 2;
}
.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: #9b8656;
	border-radius: 2px;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #44322a;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #44322a;
	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;
}


/* 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: 'Open Sans', sans-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: 'Open Sans', 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;
}


/* main styles
-----------------------------------------------------------------------------*/
.animatedParent {
	overflow: hidden;
}

.page_wrapper {
	width: 1100px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.body_offset {
	padding-top: 138px;
}

.body_wrapper {
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

.box_fixed {
	position: fixed !important;
	top: 0 !important;
	z-index: 1000 !important;
	width: 100% !important;
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

#header {
	width: 100%;
	height: 185px;
	background: url(images/header_bg.png) center top no-repeat;
}
#header_logo {
	padding: 14px 0px 0px 16px;
	float: left;
	width: 484px;
}
#header_call_area {
	float: left;
	width: 600px;
	text-align: right;
}
#header_phone {
    display: inline-block;
	padding: 14px 17px 8px 19px;
	background: #9b8656;
	font-family: 'Federo', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 25px;
	color: #fefefe;
	font-weight: 400;
	text-transform: uppercase;	
}
#header_phone span {
	font-size: 25px;
}
#menutop {
	padding-top: 17px;
}
#menutop ul {
	display: table;
	float: right;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding: 0px 4px 0px 0px;
	margin: 0px;
	background: url(images/menutop_li_bg.png) right center no-repeat;
}
#menutop li:last-child {
	padding: 0px;
	background: none;
}
#menutop ul li a {
	display: block;
	font-family: 'Federo', Arial, Helvetica, sans-serif;
	color: #5b4b43;
	font-size: 15px;
	line-height: 15px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;	
	padding: 20px 16px 20px 17px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop li:last-child a {
	padding: 20px 0px 20px 17px;
	background: none;
}
#menutop ul li:hover a, #menutop li.selected a {
	text-decoration: none;
	color: #96875d;
	transform: scale(1.1);
}
#slide_area  {
	width: 100%;
	background: url(images/slide_area2_bg.png) center bottom no-repeat, url(images/slide_area1_bg.jpg) center top no-repeat, #281616 url(images/slide_area_bg.png) center top repeat-y;
}
#slide_table {
	display: table;
}
#box_menuleft {
	display: table-cell;
	padding: 0px;
	width: 254px;
	background: url(images/box_menuleft2_bg.jpg) center bottom no-repeat, url(images/box_menuleft1_bg.jpg) center top no-repeat, #927d50 url(images/box_menuleft_bg.png) center top repeat-y;
	vertical-align: top;
}
#menuleft {
	padding: 53px 0px 30px 10px;
}
#menuleft ul {
	width: 234px;
	margin: 0;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menuleft ul li {
	font-size: 0px;
	padding: 0px 0px 4px 0px;
	background: url(images/menuleft_li.png) bottom repeat-x;
}
#menuleft ul li:last-child {
	padding: 0px;
	background: none;
}
#menuleft li a {
	display: block;
	position: relative;
	font-family: 'Federo', Arial, Helvetica, sans-serif;
	color: #fefefe;
	font-size: 15px;
	line-height: 15px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;	
	padding: 13px 10px 13px 10px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	transform: scale(1);
}
#menuleft ul li:hover a {
	font-size: 18px;
	background: #402f28;
	text-decoration: none;
}
#menuleft li.selected a {
	font-size: 18px;
	background: #402f28;
	text-decoration: none;
}
#box_slideshow {
	display: table-cell;
	position: relative;	
	padding: 0px;
	width: 846px;
	vertical-align: top;
}
#slideshow {
	width: 100%;
	position: relative;
	z-index: 0;	
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#slideshow li {
	width: 100%;
	height: 548px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	list-style: none;
	list-style-image: none;
}
#slideshow_backgrounds {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 10;
	background: url(images/box_slideshow1_bg.png) right top repeat-y, url(images/box_slideshow_bg.png) left top repeat-y;

}
#slideshow_pager { 
	position: absolute;
	width: 100%;
	height: 41px;
	left: 0px;
	bottom: 0px;
	z-index: 100;
    text-align: center; 
	background: url(images/box_slideshow2_bg.png) left bottom no-repeat,  url(images/slideshow_pager_bg.png) center bottom no-repeat; 
}
#slideshow_pager span {
	font-size:1px; 
	width: 10px; 
	height: 10px; 
    display: inline-block; 
	cursor: pointer; 
	color: transparent;
	background: url(images/cycle_pager.png) center center no-repeat;
	margin-top:10px;
}
#slideshow_pager span.cycle-pager-active {
	color: transparent;
	background: url(images/cycle_pager_active.png) center center no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}
#middle  {
	width: 100%;
	padding: 27px 0px 21px 0px;
	min-height: 342px;
	background: url(images/middle1_bg.jpg) center top no-repeat, #eeebe5 url(images/middle_bg.png) center top repeat-y;
}
.inside #middle  {
	width: 100%;
	padding: 0px;
	min-height: 700px;
	background: url(images/middle2_inside_bg.jpg) center bottom no-repeat, url(images/middle1_inside_bg.jpg) center top no-repeat, #eeebe5 url(images/middle_inside_bg.png) center top repeat-y;
}
#side {
	width: 254px;
	float: left;
}
#content {
	width: 846px;
	float: left;
}
.inside #box_slideshow {
	display: block;
}
.inside #slideshow li {
	height: 348px;
}
#content1 {
	padding: 32px 0px 32px 38px;
}
#box_gallery  {
	width: 100%;
	padding: 81px 0px 0px 0px;
	min-height: 304px;
	background: url(images/box_gallery1_bg.jpg) center top no-repeat, #2e1f20 url(images/box_gallery_bg.png) center top repeat-y;
}
#our_gallery_thumbs a {
	display: block;
	float: left;
	width: 261px;
	padding: 0 15px 0 0;
	text-align: right;
}
#our_gallery_thumbs a:nth-child(4) {
	padding: 0;
}
#our_gallery_thumbs a img {
	margin: 0px 0px 16px 0px ;
}
#boxes_bottom  {
	width: 100%;
	padding: 105px 0px 105px 0px;
	min-height: 342px;
	background: url(images/boxes_bottom2_bg.jpg) center bottom no-repeat, url(images/boxes_bottom1_bg.jpg) center top no-repeat, #988455 url(images/boxes_bottom_bg.png) center top repeat-y;
	color: #ccc5b0;
}
.inside #boxes_bottom  {
	background: url(images/boxes_bottom2_bg.jpg) center bottom no-repeat, url(images/boxes_bottom1_inside_bg.jpg) center top no-repeat, #988455 url(images/boxes_bottom_bg.png) center top repeat-y;
}
#about_us {
	float: left;
	width: 282px;
	padding: 0 97px 0 30px;
}
#location_hours {
	float: left;
	width: 290px;
	padding: 0 89px 0 0;
}
#contact_us {
	float: left;
	width: 290px;
}
#box_contact_form label {
	padding: 0px;
	color: #ccc5b0;
	font-size: 14px;
	line-height: 14px;
	text-align: right;
	margin: 0 0 8px 0;
}
#box_contact_form label.edit_full span {
	display: inline-block;
	vertical-align: top;
	line-height: 14px;	
}
#box_contact_form input#name,
#box_contact_form input#phone,
#box_contact_form input#email,
#box_contact_form textarea {
	border: 1px solid #a29c92;
	background: #e7e2d5;
	padding: 2px;
	width: 211px;
	margin: 0 0 0 8px;
}
#box_contact_form textarea {
	height: 105px;
}
#footer  {
	width: 100%;
	min-height: 187px;
	background: #1c1319;
	font-size: 12px;
	line-height: 17px;
	color: #5e5641;	
}
#footer a {
	color: #5e5641;
}
#footer_logo {
	padding: 3px 0px 21px 0px;
	text-align: center;
}
#footer_address {
	float: left;
	width: 50%;
}
#footer_address span {
	font-weight: bold;
}
#footer_links {
	float: left;
	width: 50%;
	text-align: right;
}
/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	padding: 0px 0px 25px 0px;
	margin: 0px;
	font-family: 'Federo', Arial, Helvetica, sans-serif;
	font-size: 35px;
	line-height: 35px;
	font-weight: 400;
	color: #3c2b1e;
	text-align: center;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	font-family: 'Federo', Arial, Helvetica, sans-serif;
	font-size: 35px;
	line-height: 35px;
	font-weight: 400;
	color: #3c2b1e;
	text-align: center;
}
#box_gallery .content_title {
	padding: 0px 0px 26px 0px;
	color: #d7d1ba;
}
#boxes_bottom .content_title {
	color: #d7d1ba;
	text-align: left;
}
.inside .content_title h1 {
	text-align: left;
}

/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 350px;
	float: left;
}
#contact_form {
	width: 420px;
	float: right;
}

/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: #9b8656 url(images/scroll_top_bg.png) 11px 12px no-repeat;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	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: #44322a url(images/scroll_top_bg.png) 11px 12px no-repeat;
	text-decoration: none;
}

#service_area {
	 width: 1100px!important; 
}
