@charset "utf-8";
/* CZ15 2026 combined */


@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		12;
	dw-num-cols-desktop:	18;
	dw-gutter-percentage:	5;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width:100%;
/*	width: 99.2063%;
	padding-left: 0.3968%;
	padding-right: 0.3968%;*/
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width:100%;
/*	width: 99.6031%;
	padding-left: 0.1984%;
	padding-right: 0.1984%;*/
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width:100%;
	width: 99.7354%;
/*	max-width: 1232px;
	padding-left: 0.1322%;
	padding-right: 0.1322%;*/
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
}


/*
/* 
 * HTML5 ✰ Boilerplate
 *
 * What follows is the result of much research on cross-browser styling. 
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 * 
 * Dreamweaver modifications:
 * 1. Commented out selection highlight
 * 2. Removed media queries section (we add our own in a separate file)
 *
 * ==|== normalize ==========================================================
 */


/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; transform: none; transform-origin: 0 0;}
audio:not([controls]) { display: none; }
[hidden] { display: none; }

/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */

html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body { margin: 0; font-size: 13px; line-height: 1.231; }

body, button, input, select, textarea { font-family: sans-serif; color: #222; }

/* 
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

/* Dreamweaver: uncomment these if you do want to customize the selection highlight
 *::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
 *::selection { background: #fe57a1; color: #fff; text-shadow: none; }
 */

/* =============================================================================
   Links
   ========================================================================== */

a { color: #00e; }
a:visited { color: #551a8b; }
a:hover { color: #06e; }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active { outline: 0; }


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e 
 */

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

/*
 * Correct overflow not hidden in IE9 
 */

svg:not(:root) { overflow: hidden; }


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */

legend { border: 0; *margin-left: -7px; padding: 0; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

button, input { line-height: normal; *overflow: visible; }

/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */

table button, table input { *overflow: auto; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/* 
 * Remove inner padding and border in FF3/4: h5bp.com/l 
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/* 
 * 1. Remove default vertical scrollbar in IE6/7/8/9 
 * 2. Allow only vertical resizing
 */

textarea { overflow: auto; vertical-align: top; resize: vertical; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }

/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: h5bp.com/q */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { transform: none; transform-origin: 0 0; }


/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
 
 @media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}



@font-face {
    font-family: 'alright_sansblack';
    src: url('fonts/alrightsans-black-v3-webfont.eot');
    src: url('fonts/alrightsans-black-v3-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/alrightsans-black-v3-webfont.ttf') format('truetype'),
         url('fonts/alrightsans-black-v3-webfont.svg#alright_sansblack') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'alright_sansbold';
    src: url('fonts/alrightsans-bold-v3-webfont.eot');
    src: url('fonts/alrightsans-bold-v3-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/alrightsans-bold-v3-webfont.ttf') format('truetype'),
         url('fonts/alrightsans-bold-v3-webfont.svg#alright_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'alright_sanslight';
    src: url('fonts/alrightsans-light-v3-webfont.eot');
    src: url('fonts/alrightsans-light-v3-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/alrightsans-light-v3-webfont.ttf') format('truetype'),
         url('fonts/alrightsans-light-v3-webfont.svg#alright_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'alright_sansregular';
    src: url('fonts/alrightsans-regular-v3-webfont.eot');
    src: url('fonts/alrightsans-regular-v3-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/alrightsans-regular-v3-webfont.ttf') format('truetype'),
         url('fonts/alrightsans-regular-v3-webfont.svg#alright_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


html, body {
	padding:0;
	margin:0;
}

body {
	font-family: 'alright_sansregular', sans-serif;
	/*background:#7e7e7e;*/
	background:#fff;
	color:#000;
	font-size: calc(22px + (24 - 16) * ((100vw - 600px) / (2000 - 600)));
	}

a {
	color:#555;
	text-decoration:none;
}

ol a {
	text-decoration: underline;
}

a:hover {
	color:#d98e1a;
}

a:visited {
	color:#555;
}

* {
    box-sizing: border-box;
}

img {
	opacity:0.999;
	filter:alpha(opacity=99.99);
}

a:hover img {
	opacity:0.8;
	filter:alpha(opacity=80);
}

img {
	border:0;
}

a img {
	border:0;
}


.style01 {
}

.clearboth {
	display:block;
	clear:both;
}

.vertalign {
	position: relative;
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.h_orange {
	color:#d20000;
	font-size: 1.2em !important;
}

.grecaptcha-badge { visibility: hidden; }

.googleterms {
	margin: 2em 0 0 0;
	font-size: .6em;
	line-height: normal;
}

.googleterms a {
	text-decoration: underline !important;
}

/* Mobile Layout: 480px and below. */


.gridContainer {
}

.break-mob {
	display:inline;
}

#LayoutDiv1 {
	font-size:1em;

}

.showdt {
	display:none;
}

h1 {
	font-size:1.5em;
	padding:0;
	margin:2% 0;
	font-weight:normal;
	font-family: 'alright_sansbold';
}

h2, h3 {
	font-size:1.2em;
	padding:0;
	margin:1% 0;
	font-weight:normal;
	font-family: 'alright_sansbold';
}

#maincontent .smallh2 {
	margin: 1em 0;
	font-family: 'alright_sansregular';
}

#showmenu {
	float:right;
	position:relative;
	width:12%;
	height:auto;
	margin:8% 5% 0 0;
	padding: 0;
	z-index:60;
}

#showmenu img {
	width:100%;
	height:auto;
}

#menu-main {
	position:relative;
	width:100%;
	padding:2% 0;
	margin:0;
	font-family:alright_sanslight, sans-serif;
	font-size:1em;
	text-transform:uppercase;
	letter-spacing:0.1em;
	z-index:102;
	background:rgba(255,255,255,.9);
	text-align:center;
}

#menu-main ul {
	margin:0;
	padding:0;

}

#menu-main ul li {
	display:block;
	margin:0;
	padding:3% 0;
}


#menu-main ul li:nth-child(odd) {
	background:rgba(220,220,220,.9);
}



#background {
	position:absolute;
	margin:0;
	padding:0;
	top:auto;
	bottom:0;
	left:auto;
	right:0;
	height:100%;
	width:auto;
}

#background img {
	height:100%;
	width:auto;
}

#toplogo {
	float:left;
	position:relative;
	width:25%;
	height:auto;
	margin:2% 0 0 5%;
	padding:0;
}

#toplogo img {
	width:100%;
	height:auto;
}

#topbar {
	float:none;
	position:relative;
	width:90%;
	height:auto;
	margin:2% auto;
	padding:0;
	text-align:center;
}

#topbar h1 {
	font-family:alright_sansbold, sans-serif;
	text-transform:uppercase;
	font-size:1.6em;
	padding:0;
	margin:0;
}

#topbar h2 {
	font-family:alright_sansregular, sans-serif;
	font-size:1.1em;
	padding:0;
	margin:0;
	font-weight:normal;
}

.blackphone, .blackphone:visited  {
	font-family:alright_sansblack, sans-serif;
	color:#000;
}


.blackphone:hover {
	color:#444;
}

footer .blackphone {
	font-family:alright_sansregular, sans-serif;
}

#socialicons {
	display:block;
	position:relative;
	width:90%;
	padding:0;
	margin:0 auto;
	background:none;
	text-align:center;
}

#socialicons img {
	width:35%;
	height:auto;
}

#socialicons ul {
	margin:2% 0 0 0;
	padding:0;
}


#socialicons ul li {
	display:inline-block;
	width:21.33%;
	margin:0 2% 5% 0;
}

#socialicons ul li:nth-child(4) {
		margin:0 0% 5% 0;
}

#socialicons ul li img {
	width:60%;
	height:auto;
}

#bottombar, .home h3 {
	display:block;
	position:relative;
	top:0;
	bottom:0;
	left:0;
	width:100%;
	height:12%;
	margin:0 0 4% 0;
	padding:3% 0;
	background:rgba(255,157,4,.8);
	font-family: 'alright_sansblack', sans-serif;
	color:#000;
	font-size:1.5em;
	text-align:center;
	text-transform:uppercase;
	z-index:60;
}

#license {
	position:relative;
	width:90%;
	height:auto;
	margin:0 auto;
	padding:0;
	font-family:alright_sanslight, sans-serif;
	color:#000;
	font-size:1em;
	text-align:center;
}


#maincontent, #bottomcontent {
	width:90%;
	margin:2% auto 10% auto;
}

#bottomcontent ol a {
	text-decoration: underline;
}

#maincontent {
	padding:0 0 3% 0; 
	border-bottom:2px solid #FFA923;
	text-align:center;
}

#maincontent p a {
	text-decoration: underline;
}

.home #maincontent {
	line-height: 1.4em;
}

.project #maincontent {
	text-align:left;
}

#maincontent ul a, .servitem #maincontent a {
	color:#000;
	text-decoration: underline;
}


#carousel {
	padding:0;
	margin:2% auto;
	width:70%;
	height:auto;
	
}

#carousel li {
	display:none;
}

#carousel li:first-child {
	display:block;
}

#topimg {
	margin:0 0 2% 0;
	padding:0;
	text-align:center;
}

#topimg li {
	display:inline-block;
	width:30%;
	margin:0 2% 0 0 ;
}

#topimg  li:last-child {
	margin:0;
}

#topimg  li img {
	width:100%;
	height:auto;
}

.topimg2 {
	display: block;
	margin: 0 auto 1em auto;
	width: 100%;
}


#servmenu {
	position:relative;
	width:100%;
	margin:0;
	padding:0;
	z-index:80;
}

#servmenu ul {
	margin:2% 0;
	padding:0;
}

#servmenu ul li {
	display:block;
	float:none;
	font-family: 'alright_sansbold', sans-serif;
	font-size:1.2em;
	text-align:center;
	text-transform:uppercase;
	margin:0;
	padding:2% 0;
	width:100%;
}


#servmenu ul #services-residential {
		background:#444;
}

#servmenu ul #services-commercial {
		background:#222;
}

#servmenu ul #services-areas {
		background:#444;
}

#servmenu ul li a {
	color:#FFC161;
}

#servmenu ul li:hover {
	background:#666 !important;
	color:#FFA923 !important;
}

#servmenu ul li:hover a {
	color:#d98e1a;
}

.projectlist {
	margin:2% 0 10% 0;
	padding:0;
}

.projectlist li {
	display:inline-block;
	width:30%;
	margin:0 1%;
}
.projectlist li img {
	width:100%;
}

.projectmainimg {
	float:left;
	margin:0 4% 2% 0;
	width:30%;
}

.projectsmallimg {
	margin:2% 0 10% 0;
	padding:0;
}

.projectsmallimg li {
	display:inline-block;
	margin:0 2% 0 0;
	width:15%;
}

.projectsmallimg li img {
	width:100%;
}

.projectclear {
	clear:both;
}

.footerlist {
	text-transform:capitalize;
	font-weight:bold;
	margin:2% 0;
	padding:0;
	font-size:1em;
}

.footerlist li {
	display:inline-block;
	margin:1% 1% 0 0;
	padding:0 1% 0 0;
	border-right:2px solid #000;
}

.formcell, .formarea {
	display:block;
	width:90%;

	height:auto;
	border:none;
	padding:.5%;
	margin:0 auto 2% auto;
	background:#eee;
}

.formbutton {
	display:block;
	border:none;
	padding:1% 2%;
	background:#FFA923;
	color:#000;
	margin:0 auto;
}

.formbutton2 {
	display:inline-block;
	border:none;
	padding:1% 2%;
	background:#FFA923;
	color:#000;
	margin:0 auto;
	text-decoration:none;
	font-size:1.2em;
	font-weight:bold;
}

.videoplayer {
	margin:0 auto;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.videoplayer iframe,
.videoplayer object,
.videoplayer embed {
	text-align:center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border:none;
}

.revimg {
	height:5.5em;
	width:auto;
	margin:1.5em 0 0 0;
}

#bottomcontent a:hover {
	text-decoration: underline;
}

#bottomcontent ol li {
	font-weight: bold;
}

#bottomcontent ul li {
	font-weight: normal;
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {

}
#LayoutDiv1 {
	
}
}

/* Desktop Layout: 769px and up.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
	
body {
	font-size: calc(.56vw + .56vh + .4vmin);
}

.gridContainer {
	padding:0;
	margin:0;
	width:100%;
}
#LayoutDiv1 {
	font-size:1em;
	padding:0;
	margin:0;
	width:100%;
}


.showmob, #showmenu {
	display:none;
}

.break-mob, .showdt {
	display:inline;
}

.break-mob-b, .showdt-b {
	display:block;
}

.img70 {
	width:70% !important;
	height:auto;
}

.revimg {
	height:5.5em;
	width:auto;
	margin:1.5em 0 0 0;
}

.imgfull img {
	width:100%;
	height:100%;
}

.flex1 {
	display: flex;
	column-gap: 8em;
}

#rev1 {
	text-align:center;

}

#rev1 iframe {
	width:100% !important;

}

#yelpwidget {
background:#fff;
padding:2% 2% 0 2%;
width:100% !important;
}

.yelpreview {

}

#background {
	position:absolute;
	top:auto;
	bottom:0;
	left:auto;
	right:0;
	height:100%;
	width:auto;
	opacity:1;
	filter:alpha(opacity=100);
}

#background img {
	height:100%;
	width:auto;
}

#toplogo {
	float:none;
	position:absolute;
	top:3%;
	left:4%;
	width:9%;
	height:auto;
	margin:0;
	padding:0;
}

#toplogo img {
	width:100%;
	height:auto;
}

#topbar {
	float:none;
	position:absolute;
	top:5%;
	left:16%;
	width:80%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#topbar h1 {
	font-family:alright_sansbold, sans-serif;
	text-transform:uppercase;
	font-size:2.3em;
	padding:0;
	margin:0;
	letter-spacing:.1em;
}

#topbar h2 {
	font-family:alright_sansregular, sans-serif;
	font-size:1.3em;
	padding:0;
	margin:0;
	font-weight:normal;
}

#menu-main {
	display:block;
	position:absolute;
	top:23%;
	left:4%;
	width:9%;
	padding:0;
	margin:0;
	background:none;
	font-family:alright_sansregular, sans-serif;
	font-size:1.2em;
	text-transform:uppercase;
	text-align:left;
}

#menu-main ul {
	margin:0;
	padding:0;
}

#menu-main ul li {
	display:block;
	margin:0 0 6% 0;
	padding:0;
}

#menu-main ul li a:hover {
	border-bottom:4px solid #FFB136;
}

#menu-main ul li:nth-child(odd) {
	background:none;
}



#maincontent {
	position:absolute;
	top:20%;
	left:16%;
	width:80%;
	height:62%;
	margin:0;
	padding:2% 2% 0 2%;
	background:rgba(240,240,240,.75);
	color:#000;
	font-size:1em;
	line-height:1.6em;
	text-align:justify;
	overflow:hidden;
	border:none;
}


#maincontent h1 {
	text-align:center;
	font-family:alright_sansblack, sans-serif;
	font-size:1.4em;
	padding:0;
	margin:0;
	letter-spacing:.05em;
}

.services #maincontent h1 {
	margin:2% 0 0 0;
}

.project #maincontent h1 {
	text-align:left;
	margin:0 0 1% 0;
}

.contact #maincontent h1, .contact #maincontent h, .servitem #maincontent h2 {
	text-align:left;
}

.servitem #maincontent {
	text-align: left;
}


#maincontent h2 {
	text-align:center;
	font-family:alright_sansbold, sans-serif;
	font-size:1em;
	padding:0;
	margin:0;
	letter-spacing:.02em;
}

#maincontent h3 {
	text-align:center;
	font-family:alright_sansblack, sans-serif;
	font-size:1.8em;
	text-transform:none;
	padding:0;
	margin:3% 0 1% 0;
	letter-spacing:.08em;
	background:none;
}
	
.cityhub #maincontent h3 {
	font-family: 'alright_sansregular', sans-serif;
	font-weight: bold;
	text-align: left !important;
	font-size:1em;
	letter-spacing:normal;
}

.areas #maincontent a {
	font-weight:bold;
}

.areas #maincontent a:hover {
	text-decoration:underline;
}

.references #maincontent, .coupons #maincontent, .sitemap #maincontent {
	text-align:center;
}

.sitemap #maincontent ul {
	text-transform:capitalize;
}

#bottombar {
	display:block;
	position:absolute;
	top:auto;
	bottom:0;
	left:0;
	width:100%;
	height:12%;
	margin:0;
	padding:1% 0 0 0;
	background:rgba(255,157,4,.8);
	font-family: 'alright_sansblack', sans-serif;
	color:#000;
	font-size:3.6em;
	letter-spacing:.2em;
	text-align:center;
	text-transform:uppercase;
	z-index:60;
}

#license {
	position:absolute;
	top:auto;
	bottom:13%;
	left:16%;
	width:80%;
	height:auto;
	margin:0;
	padding:0;
	font-family:alright_sanslight, sans-serif;
	color:#000;
	font-size:1.2em;
	line-height:1.6em;
	text-align:center;
}

#bottomcontent {
	position:absolute;
	top:100%;
	bottom:auto;
	left:0;
	width:100%;
	height:auto;
	margin:0;
	padding:2% 4%;
	color:#000;
	font-size:1em;
	line-height:1.6em;
}

#socialicons {
	display:block;
	position:absolute;
	top:auto;
	bottom:18%;
	left:4%;
	width:10%;
	padding:0;
	margin:0;
	background:none;
	text-align:left;
}

#socialicons img {
	width:100%;
	height:auto;
}

#socialicons ul {
	margin:8% 0 0 0;
	padding:0;
	display: flex;
}


#socialicons ul li {
	width:26%;
	margin:auto;
}

#socialicons ul li:nth-child(4) {
		margin:auto;
}


#socialicons ul li img {
	width:100%;
	height:auto;
}


.formcell, .formarea {
	display:block;
	width:50%;
	height:auto;
	border:none;
	padding:.5%;
	margin:0 0 1% 0;
	background:#eee;
}

.formbutton {
	display:block;
	border:none;
	padding:.5% 1%;
	background:#FFA923;
	color:#000;
	margin:0;
}

.formbutton2 {
	display:inline-block;
	border:none;
	padding:.5% 1%;
	background:#FFA923;
	color:#000;
	margin:0;
}

.formbutton:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
}

.formbutton2:hover {
	background:#333;
	color:#fff;
}


.placeholder { 
   font-family: 'alright_sanslight', sans-serif;
   font-size:1em;
   color:#222;
}

::-webkit-input-placeholder {
   font-family: 'alright_sanslight', sans-serif;
   font-size:1em;
   color:#222;
}

:-moz-placeholder { /* Firefox 18- */
   font-family: 'alright_sanslight', sans-serif;
   font-size:1em;
   color:#222;
}

::-moz-placeholder {  /* Firefox 19+ */
   font-family: 'alright_sanslight', sans-serif;
   font-size:1em;
   color:#222;
}

:-ms-input-placeholder {
   font-family: 'alright_sanslight', sans-serif;
   font-size:1em;
   color:#222;
}


#topimg {
	margin:0 0 2% 0;
	padding:0;
	text-align:center;
}

#topimg li {
	display:inline-block;
	width:20%;
	margin:0 2% 0 0 ;
}

#topimg  li:last-child {
	margin:0;
}

#topimg  li img {
	width:100%;
	height:auto;
}
	
.topimg2 {
	margin: 0 auto 1em auto;
	width: 80%;
}


.locationlist {
	-webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
}

#servmenu {
	position:absolute;
	width:80%;
	top:20%;
	left:16%;
	margin:0;
	padding:0;
	z-index:80;
}

#servmenu ul {
	margin:0;
	padding:0;
}

#servmenu ul li {
	display:block;
	float:left;
	font-family: 'alright_sansbold', sans-serif;
	font-size:1.2em;
	text-align:center;
	text-transform:uppercase;
	margin:0;
	padding:.8% 0;
	width:33.3%;
}

#servmenu ul li:nth-child(3) {
	width:33.4%;
}

#servmenu ul #services-residential {
		background:#000;
}

#servmenu ul #services-commercial {
		background:#222;
}

#servmenu ul #services-areas {
		background:#444;
}

#servmenu ul li a {
	color:#FFC161;
}

#servmenu ul li:hover {
	background:#666 !important;
	color:#FFA923 !important;
}

#servmenu ul li:hover a {
	color:#d98e1a;
}

.serviceslist {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
}

.serviceslist ul {
	margin:0 0 5% 0;
}

.footerlist {
	text-transform:capitalize;
	font-weight:bold;
	margin:1% 0;
	padding:0;
	font-size: 1em;
}

.footerlist li {
	display:inline-block;
	margin:0 1% 0 0;
	padding:0 1% 0 0;
	border-right:2px solid #000;
}

.projectlist {
	margin:1% 0 0 0;
	padding:0;
}

.projectlist li {
	display:inline-block;
	width:20%;
	margin:0 1%;
}
.projectlist li img {
	width:100%;
}

.projectmainimg {
	float:left;
	margin:0 2% 0 0;
	width:25%;
}

.projectsmallimg {
	margin:2% 0 0 0;
	padding:0;
}

.projectsmallimg li {
	display:inline-block;
	margin:0 2% 0 0;
	width:15%;
}

.projectsmallimg li img {
	width:100%;
}

.projectclear {
	clear:none;
}

.awardholder {
	position:relative;
	float:left;
	width:18%;
	margin:0;
	text-align:center;
}



/* infinitecarousel */

div.ic_myCarousel {
	clear:right;
}
.infiniteCarousel {
	width:100%;
}

.ic_caption {
	width: auto;
	padding:10%;
	background:#000;
	background:rgba(255,255,255,0.15);
}
.ic_left_nav, .ic_right_nav {
	display:none;
}

#carouselholder {
	float:left;
	width:60%;
	height:auto;
	visibility:hidden;
	margin:0 2%;
	padding:0 0 0 0;
	z-index:99;
	overflow:hidden;
}

.sliderholder {
	float:left;
	width:60%;
	height:auto;
	margin:1em 2%;
	padding:0 0 0 0;
	z-index:99;
}

#carousel {
	padding:0;
	margin:0 auto;
	width:20%;
	height:auto;
	
}

#carousel li {
	width:100%;
	height:100%;
}


.infiniteCarousel_item {
}

/* end infinitecarousel */


/* flexcroll */
	
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width: 16px;
background-color: #e5e5e5;
}
.vscrollerbar {
width: 16px;
background-color: #7c7c7c;
}
.hscrollerbase {
height: 12px;
background-color: #ccc;
}
.hscrollerbar {
height: 12px;
background-color: #f9bb90;
}

.scrollerjogbox {
width: 10px;
height: 10px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}

/* end flexcroll */


}



