@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');

body 	{
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	border: #FFFFFF 0px solid;
	}
/* ^^^ SEE CLASS "outer-background" BELOW */




/* DEFAULTS - MARGINS SPACING */

div		{ margin: 0; padding: 0; border: 0; }

table, tr, td	{ border-collapse: collapse; border-spacing: 0; margin: 0; padding: 0; border: 0; }




/* DEFAULTS - ALIGNMENT */

.td-right 	{ text-align: right; }

.td-left 	{ text-align: left; }

.td-center	{ text-align: center; }

.td-top		{ vertical-align: top; }

.td-middle	{ vertical-align: middle; }

.td-bottom	{ vertical-align: bottom; }

.center-align	{ text-align: center; }

.center-div	{ margin-left: auto; margin-right: auto; }

.right-div	{ margin-left: auto; margin-right: 0; }

.left-div	{ margin-left: 0; margin-right: auto; }




/* DEFAULTS - MISC */

.fullwidth	{ width: 100%; }

.halfwidth	{ width: 50%; }

.nobreak	{ white-space: nowrap; }

.just 		{ text-align: justify; }

img 		{ border: 0; }

.rimage		{ max-width: 100%; height: auto; }

.blockimage	{ display: block; }

.formmargin	{ margin: 0px; }




/* NON-MENU LINK COLORS */

a:link, 
a:visited, 
a:active 	{ color: #1184FF; text-decoration: none; }

a:hover 	{ color: #0099FF; text-decoration: underline; }




/* THE NEXT LINE CONTROLS THE FONT SIZE ON ALL PAGES */

body, div, table {
		color: #000000;
		font-family: "Open Sans", arial, sans-serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 180%;
		}

.title 		{ color: #000000; font: 24px "Montserrat", "Open Sans", arial, sans-serif; font-weight: 600; letter-spacing: 0px; line-height: 200%; }

.subtitle 	{ color: #000000; font: 22px "Montserrat", "Open Sans", arial, sans-serif; font-weight: 600; line-height: normal; }

.smalltitle	{ font-size: 19px; font-weight: 600; }

.smalltext	{ font-size: 13px; }

.makebold	{ font-weight: 700; }

.hilite		{ color: #FF6600; }

.hilite2	{ color: #66CC00; font-size: 0.9em; font-weight: 600; font-style: italic; }




/* REMOVES MARGINS ON HEADING TAGS (FOR SEO) */

h1, h2, h3, h4	{ margin: 0px 0px 1px 0px; }




/* SERVICES PAGE LISTS */

.list		{
		color: #000000;
		font-weight: 400;
		line-height: normal;
		text-align: left;
		margin-top: 0px;
		margin-bottom: 0px;
		}

.list li	{ text-indent: 1px; }




/* PAGE & CONTENT HEIGHTS AND WIDTHS & PADDING */

/* NOTE: IF YOU CHANGE THE PAGE WIDTHS EDIT & TEST THE MEDIA QUERIES IN THE media-queries.css */

.pageheight	{ min-height: 700px; }

#pagewrapper	{
		width: 100%;
		min-width: 319px;
		text-align: center;
		margin: 0 auto 0 auto;
		}

.pagebox	{
		max-width: 1400px;
		padding: 0px 0px 0px 0px;
		margin: 0px auto 0px auto;
		}

.content-pad 	{ padding: 35px 65px 45px 65px; }

.content-slim	{
		max-width: 800px;
		margin: 0 auto;
		}




/* INNER AND OUTER BACKGROUNDS */

.inner-background	{
			background-color: #FFFFFF;
			border: #999999 0px solid;
			}

.outer-background	{
			background-color: #C3BAB4;
			background-image: url("picts/background-outer.jpg");
			background-repeat: repeat-x;
			background-attachment: fixed;
			}




/* HEADER CODE */

/* ALIGN LOGO IN THE header.js */

#headerdiv	{
		position: relative;
		background-color: #FFFFFF;
		padding: 10px 0px 10px 0px;
		margin: 0px auto 0px auto;
		border: #000000 0px solid;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		-o-user-select: none;
		user-select: none;
		}

/* GRAPHIC HEADER CODE */

.logo-respond	{
		height: 150px;
		width: 100%;
		max-width: 375px;
		display: block;
		margin: 0 auto 0 0;
		}

#header-right	{
		position: absolute;
		top: 7px;
		right: 15px;
		padding: 5px;
		}

.h-phone {
	color: #5E8100;
	font: 30px "Open Sans", arial, sans-serif;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);  /* TEXT SHADOW & OPACITY */
	width: 100%;
	padding: 0px 0px 1px 0px;
	}

.h-text	{
	color: #000000;
	font: 18px "Open Sans", arial, sans-serif;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	padding: 0px 0px 7px 0px;
	}
.h-hours {
	color: #000000;
	font: 16px "Open Sans", arial, sans-serif;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	padding: 3px 3px 3px 3px;
	border: #000000 2px solid;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	}

.h-phone a:link, 
.h-phone a:visited, 
.h-phone a:active 	{ color: #947A36; text-decoration: none; }

.h-phone a:hover 	{ color: #7EAD00; text-decoration: none; }




/* IMAGE BORDERS */

.img-borders	{
		border: #CCCCCC 0px solid;
		vertical-align: top;
	/* CORNER ROUNDING */
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
		border-radius: 0px;
		}




/* FLOATS & FLOAT CLEAR & MARGINS */

.left-float	{ float: left; }

.right-float	{ float: right; }

.float-L-margin	{ margin-right: 30px; margin-bottom: 5px; }

.img-float	{ float: left; margin: 3px 15px 5px 0px; }

.float-item	{ float: left; margin-right: 15px; margin-bottom: 2px; }

.text-nowrap	{ overflow: hidden; min-width: 300px; }

.divclear 	{ height: 1px; clear: both; font-size: 1px; line-height: 1px; padding: 0px; margin: 0px; }

.marg-bot-10	{ margin-bottom: 10px; }




/* PAGE LINES & BORDERS & PADDING */

.page-splits 	{ 
		font-size: 1px;
		line-height: 1px;
		height: 2px;
		margin-top: 26px;
		margin-bottom: 26px;
		padding: 0px;
		background-color: #CCCCCC;
/* FIVE COLOR GRADIENT */
		background-image: linear-gradient(to right, #FFFFFF, #BFD3DB, #FFFFFF);
		border-top: #404A5B 0px solid;
		}

.splits-xtramargin { margin-top: 56px; margin-bottom: 56px; }

.split-smalltopmargin { margin-top: 5px; }

.pad-top10	{ padding-top: 10px; }

.margin-top10	{ margin-top: 10px; }




/* HOME PAGE */

/* HOME PAGE TOP IMAGE */

.homeimage	{ width: 100%; height: auto; display: block; }

.homeimage-outer	{
			max-width: 100%;
			min-width: 250px;
			overflow: hidden;
			text-align: center;
			margin: 0px 0px 0px 0px;
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
			position: relative;
			border: solid #B3A071;
			border-width: 0px 0px 0px 0px;
		/* NOTE: BORDERS ABOVE ARE | top | right | bottom | left */
		/* IMAGE DROP SHADOW */
			box-shadow: 0 20px 12px -12px rgba(0, 0, 0, 0.30);
			}


/* HOME LAYERED TEXT */

.homeimage-text {
	color: #FFFFFF;
	font-size: 15px;
	line-height: normal;
	text-align: left;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.0);  /* TEXT SHADOW & OPACITY */
	background: #000000;  /* BACKGROUND FALLBACK NON-CSS3 */
	background: rgba(0,0,0,0.40);  /* BACKGROUND & OPACITY */
	width: 100%;
	max-width: 300px;
	padding: 20px 20px 20px 20px;
	position: absolute;
	left: 30px;
	bottom: 30px;
	border: solid #000000;
	border-width: 0px 0px 0px 15px;
	/* NOTE: BORDERS ABOVE ARE | top | right | bottom | left */
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	}

.rslides_container li section, .homeimage-box section { display: inline; }

.homeimage-title	{
		color: #FFFFFF;
		font: 20px "Montserrat", "Open Sans", arial, sans-serif;
		font-weight: 600;
		letter-spacing: 0px;
		line-height: normal;
		padding-bottom: 7px;
		}

.homeimage-text section { display: inline; }


/* LAYERED TEXT LINK COLORS */

.homeimage-text a 
		{  color: #BDFA7B; text-decoration: none; font-weight: 400; }

.homeimage-text a:hover 
		{  color: #FFFFFF; text-decoration: none; }


/* LAYERED TEXT ARROW */

.art-arrow		{
			background-color: #7FF600;
			background-image: url("picts/arrow-link-black.png");
			background-repeat: no-repeat;
			background-position: right 5px top 4px;
			height: 33px;
			width: 53px;
			padding: 0px 0px 0px 0px;
			margin: 0px 6px 0px 0px;
			display: inline-block;
			vertical-align: middle;
  		/* CORNER ROUNDING */
			-moz-border-radius: 17px;
			-webkit-border-radius: 17px;
			-khtml-border-radius: 17px;
			border-radius: 17px;
			}

div.arrow-link		{
			color: #BDFA7B;
			font-size: 16px;
			font-weight: 600;
			text-decoration: none;
			line-height: normal;
			vertical-align: top;
			background-color: transparent;
			padding: 0px 5px 0px 0px;
			margin: 15px 0px 15px 0px;
			height: 33px;
			display: inline-block;
			}

/* ARROW LINK HOVER COLORS */

div.arrow-link:hover	{ color: #FFFFFF; text-decoration: underline; }

div.arrow-link:hover div.art-arrow { background-color: #05F400; }



/* VIDEO (FOR RESPONSIVE VIDEO) */

.videobox	 {
		 max-width: 700px;
		 margin: 0 auto;
		 padding: 0px 0px 0px 0px;
		 }

.video-container {
		 min-width: 200px;
		 padding-top: 0px;
		 padding-bottom: 56.25%;
		 margin: 0px auto 0px auto;
		 height: 0;
		 overflow: hidden;
		 position: relative;
		 z-index: 100;
		 }
 
.video-container iframe,
.video-container object,
.video-container embed {
		 width: 100%;
		 height: 100%;
		 position: absolute;
		 top: 0;
		 left: 0;
		 z-index: 100;
		 }








/* HOME COLORED BOX OF 3 IMAGES */

.image-row	{
		line-height: 1px;
		font-size: 1px;
		background-color: #000000;
		padding: 30px 30px 30px 30px;
		margin: 40px 0px 40px 0px;
		vertical-align: top;
		border: solid #B3A071;
		border-width: 5px 0px 5px 0px;
		/* NOTE: BORDERS ABOVE ARE | top | right | bottom | left */
		}

.image-row-cell	{
		vertical-align: top;
		width: 33%;
		display: inline-block; 
		}

.irc-inner	{
		color: #FFFFFF;
		font-size: 0.90em;
		font-weight: 400;
		line-height: normal;
		padding: 10px 10px 10px 10px;
		}

.image-row img	{
		width: 100%;
		max-width: 500px;
		margin: 0px 0px 15px 0px;
		vertical-align: bottom;
		}

.HoverBorder	{
		border: #B3A071 4px solid;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	/* ZOOM */
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	/* FADE UP */
		-webkit-transition: all 0.3s;
		transition: all 0.3s ease;
		}

a:hover .HoverBorder {
		border: #FFFFFF 4px solid;
	/* ZOOM */
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		transform: scale(1.05);
		}

/* LINK COLOR IN COLORED BOX OF 3 IMAGES */

.image-row a:link, 
.image-row a:visited, 
.image-row a:active 	{ color: #FFFFFF; text-decoration: none; font-weight: 600; }

.image-row a:hover 	{ color: #FFFF9C; text-decoration: none; }




/* SOCIAL ICONS */

#social-links	{
		text-align: center;
		font-size: 0px;
		background-color: transparent;
		padding: 0px 0px 0px 0px;
		margin: 30px 0px 40px 0px;
		border: solid #000000;
		border-width: 0px 0px 0px 0px;
		}

.socialicon	{
		background-color: #7EAD00;
		border: #000000 0px solid;
		padding: 15px;
		margin: 1px;
		vertical-align: top;
	/* CORNER ROUNDING */
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		   }

.socialicon:hover  {
		   background-color: #5E8100;
		   border: #000000 0px solid;
		   }




/* FOOTER */

.footer-copyright {
		padding: 46px 0px 40px 0px;
		margin: 0px 0px 0px 0px;
		background-color: #282420;
		background-image: url("picts/background-footer.jpg");
		background-repeat: repeat-x;
		background-position: center top;
		border: solid #000000;
		border-width: 3px 0px 0px 0px;
		/* NOTE: BORDERS ABOVE ARE | top | right | bottom | left */
		}

.copy-text	{
		color: #FFFFFF;
		font-size: 15px;
		font-weight: 400;
		line-height: normal;
		display: inline-block;
		background:rgba(0,0,0,0.30); /* SEMI TRANSPARENT BACKGROUND */
		padding: 10px 10px 10px 10px
		}

.footer-title	{
		color: #FFFFFF;
		font-size: 18px;
		font-weight: 700;
		line-height: normal;
		padding: 12px 0px 12px 0px
		}

.footer-top	{
		background-color: #D9F92E;
		border: #000000 3px solid;
		padding: 7px;
		margin: 0px auto 10px auto;
	/* CORNER ROUNDING */
		-moz-border-radius: 22px;
		-webkit-border-radius: 22px;
		border-radius: 22px;
		}

.footer-top:hover  {
		   background-color: #C0ED24;
		   }

/* COPYRIGHT LINK COLORS */

div.footer-copyright a:link, 
div.footer-copyright a:visited, 
div.footer-copyright a:active 	{ color: #D9F92E; text-decoration: none; }

div.footer-copyright a:hover 	{ color: #FFFFFF; text-decoration: underline; }




/* CONTACT PAGE CODE */

.contact-title	{
		color: #000000;
		font: 19px "Open Sans", arial, sans-serif;
		font-weight: 600;
		line-height: normal;
		}

.contact-select	{ color: #003399; }

.email-link	{
		margin: 10px 0px 10px 0px;
		}

input[type=submit].submitbutton, input[type=reset].submitbutton 
		{
		color: #000000;
		font: 400 18px "Open Sans", arial, sans-serif;
		text-align: center;
		background-color: #FFFFFF;
		-webkit-appearance: none;
		padding: 12px 8px 12px 8px;
		margin: 0px 0px 0px 0px;
		cursor: pointer;
		width: 130px;
		border: #000000 2px solid;
	/* CORNER ROUNDING */
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		}

input[type=submit].submitbutton:hover, input[type=reset].submitbutton:hover 
		{
		color: #FFFFFF;
		background-color: #7EAD00;
		border: #7EAD00 2px solid;
		}

.shadeform	{
		font: 15px arial, sans-serif;
		color: #000000;
		background-color: #FFFFFF;
		background-image: url("picts/shadeform.png");
		text-align: left;
		width: 225px;
		margin-top: 2px;
		margin-bottom: 12px;
		border: #999999 1px solid;
		}

.textarea	{
		font: 15px arial, sans-serif;
		color: #000000;
		background-color: #FFFFFF;
		background-image: url("picts/shadeform.png");
		text-align: left;
		width: 275px;
		height: 150px;
		margin-top: 2px;
		margin-bottom: 12px;
		border: #999999 1px solid;
		}

.dropdown 	{
		font: 15px arial, sans-serif;
		color: #000000;
		background-color: #FFFFFF;
		width: 225px;
		margin-top: 3px;
		margin-bottom: 7px;
		}

/* CONTACT PAGE COLUMNS */

.contact-box	{ max-width: 950px; margin: 0 auto; text-align: center; }

.form-box-L	{
		min-width: 330px;
		max-width: 330px;
		font-size: 0.9em;
		text-align: left;
		line-height: normal;
		display: inline-block;
		vertical-align: top;
		margin: 0 auto;
		padding: 0px 10px 0px 10px;
		}

.form-box-R	{
		min-width: 330px;
		max-width: 330px;
		font-size: 0.9em;
		text-align: left;
		line-height: normal;
		display: inline-block;
		vertical-align: top;
		margin: 0 auto;
		padding: 0px 10px 0px 10px;
		}




/* FAQ PAGE */

.faq-box	{
		display: none;
		margin: 0px 0px 0px 0px;
		padding: 10px 20px 10px 20px;
		border: #999999 0px solid;
		}




/* LINKS PAGE CODE */

.linksmargin	{ margin: 0px 0px 20px 0px; }

table.linkboxes td  { padding: 5px 4px 2px 0px; line-height: normal; font-size: 12px; }

.searchform 	{
		color: #000000;
		font: 14px arial, sans-serif;
		text-align: left;
		background-color: #FFFFFF;
		background-image: url("picts/shadeform.png");
		width: 200px;
		border: #999999 1px solid;
		}

.searchbutton 	{
		color: #FFFFFF;
	       	font: bold 12px arial, sans-serif;
		text-align: center;
		background-color: #3C90B1;
		-webkit-appearance: none;
		height: 21px;
		margin-top: 0px;
		cursor: pointer;
		border: #000000 0px solid;
  	/* CORNER ROUNDING */
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		-khtml-border-radius: 3px;
		border-radius: 3px;
		}




/* SERVICES PAGE */

.box-section	{ max-width: 90%; margin: 0 auto; }




/* HIDE ITEMS FOR PRINTING */

@media print {
.printhide 	{ display:none; }
.pageheight 	{ min-height: 50px; }
}
@media screen{
.printonly 	{ display:none; }
}



