/* google_fonts
-----------------------------------------------------------------------------*/
@import 'https://fonts.googleapis.com/css?family=Neuton';
@import 'https://fonts.googleapis.com/css?family=Open+Sans';


* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #434343;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #2d2d2d url(images/body_bg.png) center repeat-y;
	position: relative;
	overflow-x: hidden;
}

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

h1, .h1 {
	font-family: 'Neuton', serif;
	font-size: 30px;
	line-height: 33px;
	font-weight: normal;
	color: #676767;
	padding: 0px 0px 13px 0px;
	margin: 0px;
}
h2, .h2 {
	font-family: 'Neuton', serif;
	font-size: 27px;
	line-height: 30px;
	font-weight: normal;
	color: #363636;
	padding: 0px 0px 13px 0px;
	margin: 0px;
}
h3, .h3 {
	font-family: 'Neuton', serif;
	font-size: 24px;
	line-height: 27px;
	font-weight: normal;
	color: #0083a9;
	padding: 0px 0px 13px 0px;
	margin: 0px;
}

a {
	color: #00c5ff;
	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 {
}
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: #1d8917;
	font-size: 22px;
	line-height: 22px;
	border: 0px;
	border-radius: 3px;
	padding: 11px 20px 12px 20px;
}
.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: 25px;
	padding: 9px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
	border-radius: 2px;
}
.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: 2px;
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #231f20 !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: 0px;
}
.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: #cccccc;
	border: 0px;
	margin: 0px;
}

.a_button {
	display: inline-block;
	position: relative;
	height: 36px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	line-height: 22px;
	text-decoration: none;
	font-weight: normal;
	outline: none;
	background: #00c5ff;
	text-align: center;
	padding: 13px 15px 0px 15px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	text-decoration: underline;
}
.a_button:before {
	content: "";
	display: block;
	width: 15px;
	height: 63px;
	position: absolute;
	top: 0px;
	left: -15px;
	background: url(images/a_button_left.png) left top no-repeat;
}
.a_button:after {
	content: "";
	display: block;
	width: 10px;
	height: 49px;
	position: absolute;
	top: 0px;
	right: -10px;
	background: url(images/a_button_right.png) left top no-repeat;
}

.a_button1 {
	background: #414141;
}
.a_button1:before {
	content: "";
	display: block;
	width: 15px;
	height: 63px;
	position: absolute;
	top: 0px;
	left: -15px;
	background: #414141;
}
.a_button1:after {
	content: "";
	display: block;
	width: 10px;
	height: 49px;
	position: absolute;
	top: 0px;
	right: -10px;
	background: url(images/a_button1_right.png) left top no-repeat;
}

.a_button2 {
	background: #808080;
}
.a_button2:before {
	background: url(images/a_button2_left.png) left top no-repeat;
}
.a_button2:after {
	background: url(images/a_button2_right.png) left top no-repeat;
}

.a_button3 {
	background: #ffba00;
}
.a_button3:before {
	background: url(images/a_button3_left.png) left top no-repeat;
}
.a_button3:after {
	background: url(images/a_button3_right.png) left top no-repeat;
}

.a_button_bottom {
	width: 350px;
}
.a_button_side {
	width: 280px;
}


.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: #878787;
	border-radius: 2px;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #00c5ff;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #00c5ff;
	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;
}


/* 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: 47px;
}

.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
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	position: relative;
	height: 199px;
	font-family: 'Neuton', serif;
	background: #e2e2e2 url(images/header_bg.png) top repeat-x;
}

#header_logo {
	width: 392px;
	position: absolute;
	left: 0px;
	top: 35px;
}

#header_phone {
	width: 300px;
	position: absolute;
	left: 205px;
	top: 115px;
	color: #808080;
	font-size: 20px;
	line-height: 20px;
}
#header_phone span {
	font-size: 30px;
	line-height: 30px;
	color: #231f20;
}
#header_phone p {
	font-size: 28px;
	line-height: 28px;
	color: #ffa4aa;
	padding: 0px;
	margin: 0px;
}

a#banner_emergency_services {
	width: 580px;
	position: absolute;
	left: 520px;
	top: 20px;
}


/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	width: 600px;
	position: absolute;
	left: 500px;
	top: 110px;
}
#menutop ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding: 0px 2px 0px 2px;
	margin: 0px;
	background: none;
	transition: all 100ms ease-in;
	-webkit-transition: all 100ms ease-in;
}

#menutop ul li a {
	display: block;
	color: #231f20;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	height: 27px;
	text-align: center;
	padding: 9px 12px 0px 12px;
	margin: 0px;
	transition: all 100ms ease-in;
	-webkit-transition: all 100ms ease-in;
}
#menutop ul li:hover, #menutop li.selected {
	background: #393939;
}
#menutop ul li:hover a, #menutop li.selected a {
	color: #fff;
	text-decoration: none;
}


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

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

#slideshow li a {
	width: 100%;
	height: 155px;
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0px;
	text-align: center;
	color: #a4a4a4;
	font-size: 18px;
	line-height: 22px;
	background: rgba(39, 39, 39, 0.9);
	z-index: 101;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
#slideshow li a:hover {
	text-decoration: none;
}
#slideshow li a div {
	padding: 20px 20px 0px 20px;
}
#slideshow li a div span {
	color: #fff;
	font-size: 30px;
	line-height: 50px;
}

#slideshow_arrows {
	width: 1100px;
	height: 20px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	bottom: 65px;
}
#slides_arrow_next {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	right: 0px;
	z-index: 101;
}
#slides_arrow_prev {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	left: 0px;
	z-index: 101;
}


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

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


/* form_search
-----------------------------------------------------------------------------*/
#form_search { 
	width: 100%;
	border: 1px solid #999;
	text-align: center;
	margin: 0 auto;
	display: table;
	margin-bottom: 20px;
}


/* middle
-----------------------------------------------------------------------------*/
#middle {
	padding: 95px 0px 55px 0px;
	background: #fff url(images/middle_bg.png) center top no-repeat;
	position: relative;
}
.inside #middle {
	min-height: 500px;
	height: auto !important;
	height: 500px;
}


/* content
-----------------------------------------------------------------------------*/
#content_home {
	width: 669px;
	border-right: 1px solid #cccccc;
	padding-right: 40px;
	float: left;
}
#content_inside {
	width: 729px;
	padding: 0px 0px 0px 40px;
	float: left;
}


/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	color: #414141;
	font-family: 'Open Sans', sans-serif;
	font-size: 34px;
	line-height: 34px;
	font-weight: normal;
	text-align: center;
	padding: 0px;
	margin-bottom: 25px;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	width: 100%;
	color: #414141;
	font-family: 'Open Sans', sans-serif;
	font-size: 34px;
	line-height: 34px;
	font-weight: normal;
	text-align: center;
}

.content_title1, .content_title1 h1, .content_title1 h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	line-height: 30px;
	padding: 0px;
	margin-bottom: 20px;
}

.content_title2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	padding: 0px;
	margin-bottom: 20px;
}

/* side
----------------------------------------------------------------------------*/
#side_home {
	width: 350px;
	float: left;
	padding: 0px 0px 0px 40px;
	color: #414141;
	text-align: center;
}
#side_home span {
	font-size: 24px;
	line-height: 35px;
}

/* side_inside
----------------------------------------------------------------------------*/
#side_inside {
	width: 290px;
	float: left;
	padding: 0px 40px 0px 0px;
	border-right: 1px solid #cccccc;
}


/* menu
-----------------------------------------------------------------------------*/
#menu {
	margin-bottom: 20px;
}

#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_bg.png) left 8px no-repeat;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-size: 14px;
	line-height: 14px;
}
#menu a {
	display: block;
	color: #00c5ff;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-size: 14px;
	line-height: 14px;
	padding: 3px 0px 5px 8px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menu ul li:hover a, #menu ul li.selected a {
	color: #00c5ff;
	text-decoration: underline;
}


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


/* box_columns
----------------------------------------------------------------------------*/
.box_columns {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}

.box_columns li {
	float: left;
	border-right: 1px solid #cccccc;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.box_columns[data-columns-count="2"] li {
	width: 510px;
	padding: 0px 39px 0px 40px;
}
.box_columns[data-columns-count="4"] li {
	width: 245px;
	padding: 0px 19px 0px 20px;
}

.box_columns li:first-child {
	padding-left: 0px;
}
.box_columns li:last-child {
	border-right: 0px;
	padding-right: 0px;
}

#box_services_home .box_columns[data-columns-count="2"] li {
	min-height: 550px;
	height: auto !important;
	height: 550px;	
}
#box_services_home .box_columns[data-columns-count="4"] li {
	min-height: 480px;
	height: auto !important;
	height: 480px;	
}

#box_services_home h3 {
	color: #414141;
	font-family: 'Open Sans', sans-serif;
	font-size: 34px;
	line-height: 34px;
}


/* Footer
----------------------------------------------------------------------------*/
#footer_top {
	color: #8c8c8c;
	background: #353535;
	position: relative;
	padding: 16px 0px 16px 0px;
	font-size: 14px;
	line-height: 14px;
}
#footer_top a {
	color: #8c8c8c;
}
#footer_top ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#footer_top ul li {
	width: 228px;
	height: 23px;
	float: left;
	margin: 0px 0px 0px 0px;
	padding: 9px 0px 0px 47px;
}
#footer_top ul li:nth-child(1) {
	background: url(images/footer_top_icon_01.png) left top no-repeat;
}
#footer_top ul li:nth-child(2) {
	background: url(images/footer_top_icon_02.png) left top no-repeat;
}
#footer_top ul li:nth-child(3) {
	width: 333px;
	background: url(images/footer_top_icon_03.png) left top no-repeat;
}
#footer_top ul li:nth-child(4) {
	width: 123px;
	background: url(images/footer_top_icon_04.png) left top no-repeat;
}


/* Footer
----------------------------------------------------------------------------*/
#footer {
	color: #8c8c8c;
	background: #2d2d2d;
	position: relative;
	padding: 57px 0px 57px 0px;
	font-size: 14px;
	line-height: 22px;
}

.footer_border {
	border-right: #393939 1px solid;
	min-height: 520px;
	height: auto !important;
	height: 520px;	
}

/* menubottom
-----------------------------------------------------------------------------*/
#menubottom {
	float: left;
	width: 216px;
}

#menubottom ul {
	width: 174px;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menubottom ul li {
	list-style: none;
	list-style-image: none;
	border-bottom: 1px solid #393939;
}
#menubottom ul li:last-child {
	border-bottom: 0px;
}
#menubottom a {
	display: block;
	color: #8c8c8c;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-size: 14px;
	line-height: 14px;
	padding: 19px 0px 19px 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menubottom ul li:hover a, #menubottom li.selected a {
	text-decoration: none;
	color: #fff;
}


/* footer_external_links
-----------------------------------------------------------------------------*/
#footer_external_links {
	float: left;
	width: 290px;
	padding: 0px 30px 0px 30px;
	text-align: center;
}


/* footer_area_service
-----------------------------------------------------------------------------*/
#footer_area_service {
	float: left;
	width: 500px;
	padding: 0px 0px 0px 30px;
}
#footer_area_service ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#footer_area_service li {
	display: inline-block;
	padding: 0px 7px 0px 2px;
	background: url(images/footer_area_service_li_bg.png) right center no-repeat;
}
#footer_area_service li:last-child {
	background: none;
	padding-right: 0px;
}

#footer_area_service ul li a {
	color: #00c3fd;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 14px;
	font-weight: normal;
	transition: all 100ms ease-in;
	-webkit-transition: all 100ms ease-in;
}
#footer_area_service ul li:hover a, #menutop li.selected a {
	color: #fff;
	text-decoration: none;
}


/* footer_links
-----------------------------------------------------------------------------*/
#footer_links {
	border-top: #393939 1px solid;
	padding-top: 53px;
	text-align: center;
}
#footer_links a {
	color: #8c8c8c;
}
#footer_links span {
	font-weight: bold;
}


/* footer_payment
-----------------------------------------------------------------------------*/
#footer_payment {
	width: 150px;
	float: left;
}


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

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


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: #00c5ff url(images/scroll_top_bg.png) center 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: #000 url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
}
