article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
/*---------------------------------
	IMPORTS
-----------------------------------*/
@font-face { font-family: LithosBold; src: url(/assets/fonts/LithosPro-Bold.eot?#iefix) format('embedded-opentype'), url( /assets/fonts/LithosPro-Bold.otf ); }
@font-face { font-family: LithosLight; src: url(/assets/fonts/LithosPro-Light.eot?#iefix) format('embedded-opentype'), url( /assets/fonts/LithosPro-Light.otf ); }
@font-face { font-family: Rockwell; src: url( /assets/fonts/ROCK.otf ); }
@font-face { font-family: Rockwell-Bold; src: url( /assets/fonts/ROCKB.TTF ); }
:root { --darkGreen: #005500;
 --lightGreen: #9CBD00;
 --lakeBlue: #26507d; /*26507d*/
 --nmBlue: #0082B7; /*26507d*/
 --darkOrange: #d66144;
 --LithosBold : LithosBold, arial, helvetica, sans-serif;
 --Rockwell : Rockwell, arial, helvetica, sans-serif;
		
	  /* ***************************
			
		These are experimental at the moment
		https://googlechrome.github.io/samples/css-custom-properties/
	****************************/
	  /* Base spacing unit. */
  --spacing-unit: 6px;

  /* Margin size. No unit, because it's a multiple of the spacing unit. */
  --margins: 2;

  /* Colors. */
  --primary-color: #005500;
 --primary-color-text: #FFF;

  /* Number of columns to show. */
  --grid-columns: 4;
 --grid-columns2: 2;
 --grid-columns3: 3;
 --grid-columns1: 1;

  /***************************** Calculated values ****************************/
  /* We don't use calc here because we don't want to resolve the values yet.
     You can think of these as simple textual replacements. */

  /* The size of the margin around the card grid. */
  --margin-size: (var(--margins) * 2);
  /* How much internal padding each cell should have */
  --cell-padding: (4 * var(--spacing-unit));
  /* How big the space between cells should be */
  --grid-gutter: (var(--margins) * var(--spacing-unit));
  /* How big the space should be around the grid */
  --grid-margin: (var(--margin-size) * var(--spacing-unit));
  /* Calculated cell margin */
  --cell-margin: (var(--grid-gutter) / 2);
}
.gridFlex { margin: 0; border: 0; padding: 0; display: flex; flex-flow: row wrap; align-items: stretch; padding: calc(var(--grid-margin) - var(--cell-margin)); background-color: var(--grid-color); }
.no-flexboxlegacy .gridFlex { display: block; }
.gridFlex.twoColumns .cell { width: 45%; width: calc(100% / var(--grid-columns2) - var(--grid-gutter)); }
.gridFlex.threeColumns .cell { width: 31%; width: calc(100% / var(--grid-columns3) - var(--grid-gutter)); }
.gridFlex.oneColumns .cell { width: 100%; width: calc(100% / var(--grid-columns1) - var(--grid-gutter)); }
.cell { color: rgb(97, 97, 97); display: inline-block; display: flex; flex-direction: column; box-sizing: border-box; margin: 8px; margin: calc(var(--cell-margin)); background-color: var(--cell-color); width: 22%; width: calc(100% / var(--grid-columns) - var(--grid-gutter)); box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12); }
.no-flexboxlegacy .cell { display: inline-block; }
.cell.green { --primary-color: var(--darkGreen);
--primary-color-text: #FFF;
}
.cell.lightgreen { --primary-color: var(--lightGreen);
 --primary-color-text: #FFF;
}
.cell.blue { --primary-color: var(--nmBlue);
 --primary-color-text: #FFF;
}
.cell.orange { --primary-color: var(--darkOrange);
 --primary-color-text: #FFF;
}
.cell-title { font-size: 1.2em; font-family: var(--Rockwell); width: 100%; padding: 6px;  }
.no-flexboxlegacy .cell-header { display: flex; align-items: center; color: #fff; box-sizing: border-box; background-color: #005500; min-height: 4em; text-align: center; }
.cell-header { display: flex; align-items: center; color: #fff; color: var(--primary-color-text); box-sizing: border-box; background-color: #005500; background-color: var(--primary-color); /*padding-left: calc(var(--cell-padding));*/ min-height: 2em; min-height: calc(12 * var(--spacing-unit));
text-align: center; }
.cell-content {
font-size: calc(2.5 * var(--spacing-unit)); padding: calc(var(--cell-padding)); flex-grow: 1; /*Align contents vertical middle;*/ display: flex; justify-content: center; flex-direction: column; }
.cell-content.full {
font-size: calc(2.5 * var(--spacing-unit)); padding: 0; flex-grow: 1; /*Align contents vertical middle;*/ display: flex; justify-content: center; flex-direction: column; overflow:hidden; max-height: 200px; }

.cell-content.full img{object-fit: cover;  height: 100%; max-height:200px;  width: auto; /*max-width: initial;    max-width: 100%; max-height: 100%;*/}
.no-flexboxlegacy .cell-content { display: block; }
#infoSheets .cell-content.full img { height: 100%; width: auto; max-width: initial; /*   max-width: 100%;*/ max-height: 100%; }
#infoSheets .cell-content.full { overflow: hidden; flex-direction: initial; max-height: 200px; background: #000; }
.no-flexboxlegacy #infoSheets .cell-content.full { overflow: hidden; flex-direction: initial; height: 200px; background: #000; }
.cell-actions { padding: .75em .5em; padding: calc(2 * var(--spacing-unit));
border-top: 1px solid rgba(0, 0, 0, 0.12); }
.cell-actions.full { padding: 0; border-top: none; }
.picker-button { position: relative; font-size: calc(2 * var(--spacing-unit));
display: inline-block; box-sizing: border-box; border: none; border-radius: 2px; color: #fff; color: var(--primary-color); text-decoration: none; padding: calc(2 * var(--spacing-unit));
text-decoration: none; background: #005500; background: var(--primary-color); cursor: pointer; overflow: hidden; text-transform: uppercase; transition: background-color 0.2s; }
.cell-actions.full .picker-button { display: block; width: 100%; }
.picker-button a { color: #fff; text-decoration: none; }
.cell-actions.full .picker-button a { color: #fff; text-decoration: none; display: block; }
.picker-button:hover { background: var(--primary-color); opacity: .9; border: none; box-shadow: 0 0 12px var(--primary-color); }
.picker-button:focus { outline: none; }
.picker-button:active { background-color: #DDD; }
/*---------------------------------
	OVERRIDES
-----------------------------------*/
#content * { -webkit-animation: fadein 2s; -moz-animation: fadein 2s; -ms-animation: fadein 2s; -o-animation: fadein 2s; animation: fadein 2s; }
 @keyframes fadein { from {
opacity: .0;
}
to { opacity: 1; }
}
@-moz-keyframes fadein { from {
opacity: 0;
}
to { opacity: 1; }
}
@-webkit-keyframes fadein { from {
opacity: .0;
}
to { opacity: 1; }
}
@-ms-keyframes fadein { from {
opacity: 0;
}
to { opacity: 1; }
}
@-o-keyframes fadein { from {
opacity: 0;
}
to { opacity: 1; }
}
svg { max-width: 100%; height: auto; }
a { word-break: break-word; }
#topBar .redBar a { color: #fff; }
/*---------------------------------
	LAYOUT
-----------------------------------*/
html, body { width: 100%; height: 100%; /*overflow:auto;*/ position: relative; background: #333; }
body { margin: 0; padding: 0 0 0 0; color: #000; font: normal 15px/150% Roboto, arial, Helvetica, sans-serif; text-shadow: 0px 0px 1px transparent; /* google font pixelation fix */ }
body.no-flexboxlegacy { }
header { /*display: flex;*/ width: 100%; border-bottom: 4px solid var(--darkGreen); background: #fff; }
.no-flexboxlegacy header { min-height: 18em; }
#mastPhoto { height: 25.4vw;}
#mastPhoto img { max-width: 100%; height: auto; border-bottom: 4px solid var(--lightGreen); }
#topBar { background: #005500; min-height: 40px; }
footer { position: relative; overflow: auto; width: 100%; left: 0; bottom: 0; min-height: 6em; padding: 0 0 0em; background: #000 url(/assets/footprints.png) repeat-x center center; border-top: 4px solid var(--lightGreen); }
footer *:not(select):not(option) { color: #aaa; text-decoration: none; }
#footerWrap { flex-flow: column; padding-top: 2em; }
#logo { margin: .5em 0; }
#middle { margin-bottom: 0em; padding-bottom: 0em; overflow-x: hidden; min-height: 80vh; }
#mainContent { display: flex; width: 100%; }
.no-flexboxlegacy $mainContent {
display: block;
}
#content { padding: 0em 2em 2em; min-height: 12em; background: #fff; position: relative; }
#aza img { vertical-align: middle; margin-right: 6px; }
#sidenav { position: relative; margin-bottom: 3em; }
#rightcolumn { background: #26507d; background: var(--lakeBlue); color: #fff; margin-top: 0; margin-bottom: 0!important }
#rightcolumn[class*="col_"], #content[class*="col_"] { margin: 0; }
/*---------------------------------
	HEADINGS
-----------------------------------*/
h1, h2, h3, h4, h5, h6 { line-height: 110%; font-family: var(--Rockwell); }
h1 { font-size: 2.6em; margin: 0px -0em 20px -0em; width: calc(100% + 1.55em); margin-left: -.75em; position: relative; background: #005500; background: var(--darkGreen); color: #fff; padding: 6px 10px 6px 15px; font-family: var(--LithosBold); }
h2 { font-size: 2.5em; margin: 10px 0 10px 0; }
h3 { font-size: 2.0em; margin: 10px 0 10px 0; }
h4 { font-size: 1.75em; margin: 10px 0 10px 0; }
h5 { font-size: 1.5em; margin: 10px 0 10px 0; }
h6 { font-size: 1.2em; margin: 10px 0 5px 0; }
/*---------------------------------
	HTML STYLES
-----------------------------------*/
p { margin: 10px 0; }
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
a { color: #1a0dab; outline: 0; }
a:active { color: inherit; }
a:visited { }
a:hover { text-decoration: underline }
a img { border: 0; }
a [class^="icon-"] { color: inherit; text-decoration: none; }
strong, b { font-weight: bold; }
strike { }
em, i { }
.hide { display: none; }
.show { display: block; }
nav ul { list-style: none; margin: 0; padding: 0; }
nav ul li { margin: 0; padding: 0; }
nav ul li a { display: block; }
nav#mainnav { display: flex; align-items: center; height: 100%; }
.no-flexboxlegacy nav#mainnav { display: block; }
/*---------------------------------
	HOME SLIDER
-----------------------------------*/				
#slides { position: relative; }
#slides .slides-container { display: none; }
#slides .scrollable {
*zoom: 1; position: relative; top: 0; left: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; height: 100%; }
#slides .scrollable:after { content: ""; display: table; clear: both; }
.slides-navigation { margin: 0 auto; position: absolute; z-index: 3; top: 46%; width: 100%; }
.slides-navigation a { position: absolute; display: block; }
.slides-navigation a.prev { left: 0; background: url(/assets/arrowLeft.png); width: 64px; height: 64px; opacity: .5 }
.slides-navigation a.next { right: 0; background: url(/assets/arrowRight.png); width: 64px; height: 64px; opacity: .5 }
.slides-navigation a.next:hover, .slides-navigation a.prev:hover { opacity: 1 }
.slides-pagination { position: absolute; z-index: 3; bottom: 0; text-align: center; width: 100%; background: #000; padding: 4px 0; }
.slides-pagination a { border: 2px solid #fff; border-radius: 15px; width: 10px; height: 10px; display: -moz-inline-stack; display: inline-block; vertical-align: middle; *vertical-align: auto;
zoom: 1; *display: inline;
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII="); margin: 2px; overflow: hidden; text-indent: -100%; }
.slides-pagination a.current { border: 2px solid #900; background: #900; }
#slides .container, #slides .container2 { width: 50%; top: 13%; padding: 10px 20px; color: #fff; font-size: 1.6em; line-height: 140%; text-shadow: 0 0 8px rgba(0,0,0,.8); }
#slides .container H2, #slides .container2 H2 { max-width: 600px; }
#slides .container p, #slides .container2 p { max-width: 520px; }
#slides .container { position: relative; left: 90px; }
#slides .container2 { position: absolute; right: 90px;/*background: rgba(0, 0, 0, 0.21);
box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.21);*/ }
#slides img.forceTop { top: 0!important; }
.home article, .home aside { display: block; display: flex; width: 50%; flex-flow: column; float: left; position: relative; justify-content: center; align-items: center; padding: 2em; }
.no-flexboxlegacy .home article, .no-flexboxlegacy .home aside { display: block; width: 50%; flex-flow: column; float: left; position: relative; justify-content: center; align-items: center; padding: 2em; }
.home article { padding: 2em; }
/*---------------------------------
	SIDE MENU
-----------------------------------*/				
#sidenav ul { margin: 0; padding: 0; list-style: none; }
#sidenav ul li { margin: 0; padding: 0; }
#sidenav ul li.sideNavTitle { font-family: "LithosBold", arial, verdana, sans-serif; font-size: 1.2em; background: #000; color: #fff; cursor: none; }
#sidenav ul li.sideNavTitle a { color: #fff; cursor: none; }
#sidenav ul li a { padding: .35em .5em; margin: 0 0 1px 0; display: block; text-decoration: none; color: #fff; word-break: keep-all; }
#sidenav ul li a:hover { background: #000; }
#sidenav ul li a.current { background: var(--lightGreen); ; }
#sidenav ul li.has-menu a { background: var(--darkGreen); color: #fff; cursor: none; }
#sidenav ul li.has-menu ul li a { background: none; color: #efefef; cursor: pointer; padding: .35em .5em .35em 1.5em; font-size: 80%; }
#sidenav ul li.has-menu ul li a:hover { background: #222; }
#sidenav ul ul {/*border-bottom: 1px solid #fff;*/ background: #5183b9; }
#sidenav ul li.has-menu ul li.current a { background: var(--darkGreen); color: #fff; cursor: none; }
#primeFooterNav { font-weight: bold; font-size: 1.2em; margin-bottom: 8px; }
/*---------------------------------
	TOP MENU
-----------------------------------*/				
#topBar div.grid { justify-content: flex-end; }
#topBar ul li { display: inline-block; }
#topBar ul li a { padding: 10px 15px; color: #fff; text-decoration: none; display: inline-block; }
/*---------------------------------
	WUFOO OVERIDES
-----------------------------------*/		
div[id^="wufoo-"] { margin: 0 5% 2em; border: 1px dashed #ccc; padding: 1em; }
/*---------------------------------
	UTILITY
-----------------------------------*/
.center { text-align: center; }
.left { text-align: left; }
.right { text-align: right; }
.padH { padding-left: 10%; padding-right: 10%; }
.padHL { padding-left: 10% }
.padV { padding-top: 2em; padding-bottom: 2em; }
.noVMarg { margin-top: 0; margin-bottom: 0; }
/*---------------------------------
	HR
-----------------------------------*/
hr { clear: both; border-bottom: 0; border-top: 1px dotted #ccc; border-right: 0; border-left: 0; margin: 30px 0; min-height: 0; height: 1px; }
hr.alt1 { border-style: solid; }
hr.alt2 { border-style: dashed; }
/*---------------------------------
	BLOCKQUOTES
-----------------------------------*/
blockquote { font-size: 1.5em; line-height: 1.2em; font-style: italic; margin: 30px 30px 30px 60px; padding: 0 0 0 20px; border-left: 1px solid #ccc; }
blockquote span { font-size: 0.7em; display: block; }
blockquote.large { font-size: 1.5em; }
blockquote.fancy { font-size: 1.2em; line-height: 1.2em; font-style: italic; margin: 30px 30px 30px 60px; padding: 0 0 0 20px; border-left: 1px solid #ccc; }
/*---------------------------------
	LISTS
-----------------------------------*/
ul, ol { padding: 0; margin: 0 0 20px 55px; }
li { padding: 5px 0; margin: 0; }
ul.check { list-style: none; padding: 0; }
ul.check li { padding-left: 1.3em; }
ul.check li:before { content: "\f00c"; /* FontAwesome Unicode */ font-family: FontAwesome; display: inline-block; color: var(--darkGreen); font-size: 1.2em; margin-left: -1.3em; /* same as padding-left set on li */ width: 1.3em; /* same as padding-left set on li */ }
ul.list-unstyled { padding: 0; margin: 0 0 20px 26px; }
ul.list-unstyled li { padding: 5px 0; margin: 0; list-style-type: none; }
ul.alt { padding: 0; margin: 0 0 20px 0; }
ul.alt li { list-style-type: none; border-top: 1px dotted #ccc; border-bottom: 1px dotted #ccc; margin: 0 0 -1px 0; background: url(img/icon-arrow-right.png) no-repeat 5px 0.7em; padding-left: 20px; }
ul.icons { margin: 0 0 20px 0; padding: 0; }
ul.icons li { list-style-type: none; margin: 0; padding: 5px 0; }
/*---------------------------------
	TABLES
-----------------------------------*/
table { width: 100%; margin: 0 0 10px 0; text-align: left; border-collapse: collapse; }
thead, tbody { margin: 0; padding: 0; }
th, td { padding: 7px 10px; font-size: 0.9em; border-bottom: 1px dotted #ddd; text-align: left; }
thead th { font-size: 0.9em; padding: 3px 10px; border-bottom: 1px solid #ddd; }
tbody th { background: #f5f5f5; }
tbody tr.last th, tbody tr.last td { border-bottom: 0; }
/* striped */
table.striped { }
table.striped tr.alt { background: #f5f5f5; }
table.striped thead th { background: #005500; background: var(--darkGreen); color: #fff; }
table.striped tbody th { background: #f5f5f5; text-align: right; padding-right: 15px; border-right: 1px dotted #e5e5e5; }
table.striped tbody tr.alt th { background: #f5f5f5; }
/* tight */
table.tight { }
table.tight th, .tight td { padding: 2px 10px; }
/* sortable */
table.sortable { border: 1px solid #ddd; }
table.sortable thead th { cursor: pointer; position: relative; top: 0; left: 0; border-right: 1px solid #ddd; }
table.sortable thead th:hover { background: #efefef; }
table.sortable span.arrow { border-style: solid; border-width: 5px; display: block; position: absolute; top: 50%; right: 5px; font-size: 0; border-color: #ccc transparent transparent transparent; line-height: 0; height: 0; width: 0; margin-top: -2px; }
table.sortable span.arrow.up { border-color: transparent transparent #ccc transparent; margin-top: -7px; }
/*---------------------------------
	IMAGES
-----------------------------------*/
img { margin: 0; padding: 0; display: inline-block; position: relative; zoom: 1; vertical-align: bottom; }
img.align-left, .img-wrap.align-left, img.floatLeft { float: left; margin: 0 10px 5px 0; }
img.align-right, .img-wrap.align-right, img.floatRight { float: right; margin: 0 0 5px 10px; }
img.full-width { clear: both; display: block; width: 100%; height: auto; margin: 0 0 10px 0; }
div.caption { background: #f5f5f5; border: 1px solid #ddd; padding: 3px; max-width: 100%; display: inline-block; height: auto; }
div.caption img { display: block; padding: 0; margin: 0; width: 100%; height: auto; }
div.caption span { display: block; margin-top: 3px; font-size: 0.8em; color: #666; padding: 0px 5px; }
.gallery { }
.gallery a { display: inline-block; position: relative; border: 1px solid #ddd; background: #fff; padding: 3px; margin: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
.gallery a img { display: block; position: relative; margin: 0; padding: 0; }
/*---------------------------------
bars, boxes, text
	-----------------------------------*/
.fullWidth { margin: -20px -0em 20px 2em; width: calc(100% + 4em); margin-left: -2em; position: relative; }
.sectionBreak { height: 300px; width: 100%; background: no-repeat center center fixed; /* background-size: cover; */ margin: 0em 0 0; display: table; }
.sectionBreak2 { height: 300px; width: 100%; background: no-repeat center center; background-size: cover; margin: 0em 0 0; display: table; }
.blackBar, .blueBar, .redBar, .greenBar, .lightGreenBar, .blueBar, .orangeBar, .nmBlueBar { padding: .5em; color: #fff; overflow: auto; }
.blackBar { background: #323C45; }
.redBar { background: #900; }
.whiteBar { background: #fff; }
.blueBar { background: #26507d; background: var(--lakeBlue); }
.nmBlueBar { background: #0082B7; background: var(--nmBlue); }
.greenBar { background: #005500; background: var(--darkGreen); }
.orangeBar { background: #d66144; background: var(--darkOrange); }
.orangeBar a { color:#fff; }
.lightGreenBar { background: #9CBD00; background: var(--lightGreen); }
.bigBox { padding: 2em; }
.bigBox.grey { padding: 2em; background: #777; color: #fff; }
.redText { color: #900; }
.largeText { font-size: 2.2em; line-height: 130%; }
.bigText { font-size: 1.5em; line-height: 130%; }
.lithos { font-family: "LithosBold", arial, verdana, sans-serif; }
.roundnum { display: inline-block; background: #0082B7; background: var(--nmBlue); color: #fff; padding-top: 4px; -webkit-border-radius: 15px; border-radius: 15px; width: 30px; height: 30px; text-align: center; }
p.bigText span.roundnum { width: 36px; height: 36px; -webkit-border-radius: 18px; border-radius: 18px; }
p.largeText span.roundnum { width: 48px; height: 48px; -webkit-border-radius: 22px; border-radius: 24px; }
ul li .roundnum { margin-left: -38px; }
/*---------------------------------
Articles
	-----------------------------------*/
article header { font-size: 1.6em; border-bottom: 1px #ccc dashed; padding-bottom: 12px; margin-bottom: 12px; }
article .article_desc { padding: 0 4em; margin-bottom: 2em; }
section.articles artticle { }
/*---------------------------------
Google Reviews
	-----------------------------------*/
#map-plug { display: none; }
#google-reviews { margin: 2em 0; display: block; flex-wrap: wrap;/*display: grid;
grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));*/ }
#google-reviews3 { margin: 2em 0; display: flex; flex-wrap: wrap;/*display: grid;
grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));*/ }
.review-item { border: solid 0px rgba(190,190,190,.35); margin: 0 auto; padding: 1em; flex: 1 1 20%; }
.grid img.reviewPic { max-width: 110px; height: auto; margin-bottom: .75em; display: inline-block; text-align: center; }
#google-reviews3 .review-item { border: solid 1px rgba(190,190,190,.35); margin: 0 6px; padding: 1em; flex: 1 1 20%; }
.no-flexboxlegacy #google-reviews3 { margin: 2em 0; display: block; flex-wrap: wrap; }
 @media ( max-width:1200px) {
.review-item { flex: 1 1 40%; }
}
 @media ( max-width:450px) {
#google-reviews3 .review-item, .review-item { flex: 1 1 90%; }
}
.review-meta { text-align: center; font-size: 100%; }
.review-stars { text-align: center; font-size: 120%; }
.review-author { text-transform: capitalize; font-weight: bold; text-align: center; }
.review-date { opacity: .6; display: block; }
.review-text { line-height: 1.55; text-align: left; max-width: 32em; margin: auto; }
.review-stars ul { display: inline-block; list-style: none !important; margin: 0; padding: 0; }
.review-stars ul li { float: left; list-style: none !important; margin-right: 1px; line-height: 1; }
.review-stars ul li i { color: #E4B248; font-size: 1.4em; font-style: normal; }
.review-stars ul li i.inactive { color: #c6c6c6; }
.star:after { content: "\2605"; }
/*Tripadvisor*/
#CDSWIDCOE { margin: 1em auto!important; }
/*---------------------------------
 MISC OBJ 
	-----------------------------------*/
.sharethis-inline-share-buttons { padding: 1em; background: #000; position: relative; }
#footerlogo { max-height: 120px; }
#addressLine { padding: 1.5em 0; background: #333; }
#socMedia { }
#socMedia img { margin: 4px; -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */ filter: grayscale(100%); }
#socMedia img:hover { -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */ filter: grayscale(0%); }
#socMedia { }
.copyright * { color: #777; }
.box { padding: 16px; border-radius: 12px; border: 4px solid #999; box-shadow: 0 0 8px #999; }
.halo { box-shadow: 0 0 8px rgba(0,0,0,.9) }
.scrollTo { cursor: pointer; opacity: .5; }
.scrollTo:hover { opacity: 1; }
.clickme { position: fixed; z-index: 20; bottom: 260px; right: -38px; opacity: .3; }
.clickme:hover { opacity: 1 }
#arrowup { width: 32px; }
#submitSearch { position: relative; background: #006f3b url(/assets/icons/search.png) no-repeat center center; height: 27px; width: 50px; border: none; margin-left: -7px; }
#searchThing { margin-top: 5px; display: inline-block; }
#searchThing input { border: none; border-top-left-radius: 8px; border-bottom-left-radius: 8px; font-size: 1em; padding: 5px 0; text-indent: 15px; }
.breakout { margin: 2em calc(50% - 50vw); overflow: auto; }
a.button.black, input[type=submit].black { color: #fff; text-decoration: none; margin-right: 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: 0 1px 0px rgba(255,255,255,0.1) inset, 0 0px 1px rgba(0,0,0,0.7); -moz-box-shadow: 0 1px 0px rgba(255,255,255,0.1) inset, 0 0px 1px rgba(0,0,0,0.7); box-shadow: 0 1px 0px rgba(255,255,255,0.1) inset, 0 0px 1px rgba(0,0,0,0.7); background: rgba(0,0,0,1); /* #191919 */ border: 1px solid #141414; padding: 10px 25px; }
a.button.black:active, a.button.black:focus { box-shadow: 0 0 0 transparent inset; }
div.multiColumn { padding: 1em 0 0 0; -moz-column-count: 2; -moz-column-gap: 20px; -webkit-column-count: 2; -webkit-column-gap: 20px; column-count: 2; column-gap: 20px; -webkit-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid; }
div.multiColumn4 { padding: 1em 0 0 0; -moz-column-count: 4; -moz-column-gap: 20px; -webkit-column-count: 4; -webkit-column-gap: 20px; column-count: 4; column-gap: 20px; -webkit-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid; text-align: center; }
.multiColumn li, .multiColumn4 li { -webkit-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid; }
.multiColumn4 ul { list-style: none; }
.multiColumn4 a { text-decoration: none; color: #036; font-size: 1.2em; }
.newsBlock, .newsBlock.col_3 { text-align: center; display: inline-block!important; width: auto !important; padding: 8px; margin: 8px; border: 1px solid #ccc; float: none; }
.newsBlock a { color: #036; text-decoration: none }
/*---------------------------------
	SVG MAP
-----------------------------------*/
#trailMap { display: inline-block !important; max-width: 100%; }
#trailMap svg { min-height: 44em; }
svg .st1 { font-weight: bold; }
svg .st41, svg .st8 { font-size: 19px; }
svg .st23 { font-size: 110px; }
svg .st43 { font-size: 25px; }
svg .st42 { font-size: 22px; }
text { text-transform: uppercase }
svg #Buildings .st72[id] { cursor: pointer; }
svg #Buildings .st72[id]:hover { fill: #000; }
/*  
FAQs 
*/
.expandHeading { font-weight: bold; cursor: pointer; display: block; cursor: pointer; position: relative; margin: 2px 0 0 0; padding: .5em .5em .5em .7em; font-size: 100%; border: 1px solid #c5c5c5; background: #f6f6f6; font-weight: normal; color: #454545; }
.expandHeading:before { font-family: FontAwesome; content: "\f0da"; padding-right: .5em; }
.expandHeadingActive { background: #005500; background: var(--darkGreen); color: #fff; display: block; cursor: pointer; position: relative; margin: 2px 0 0 0; padding: .5em .5em .5em .7em; font-size: 100%; }
.expandHeadingActive:before { font-family: FontAwesome; content: "\f0d7 "; padding-right: .5em; }
.expandContent { padding: 1.5em 1em 2em 4em; background: #efefef; margin-bottom: 1em; overflow: auto; box-shadow: 0px 2px 2px rgba(0,0,0,.2); }
/*  
Footer Nav 
*/
footer ul.menus li { list-style: none; margin: 0; padding: 0; display: block; }
footer ul.menus li.listTitle { font-size: 1.6em; color: #7B8195; text-transform: uppercase; margin-bottom: .5em; }
footer a { color: #999; }
footer ul.menus a { color: #999; font-size: 1.0em; margin: 0; display: inline-block; line-height: 100%; width: 100%; }
footer ul.menus a:hover, footer a:hover { color: #fff; }
/* NAV BAR*/
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: #000; color: #fff; z-index: 1000; }
.navbar #logo { position: absolute; top: 0; right: 0; padding: 0.5em 1em; font-size: 1.7em; color: #efefef; text-decoration: none; }
.navbar span { color: #86dc00; }
.navbar ul { display: inline-block; margin: 0; padding: 0; }
.navbar li { margin: 0; padding: 0; list-style-type: 0; display: inline-block; }
.navbar li a { display: inline-block; color: #efefef; padding: 1em 1.3em; text-decoration: none; text-transform: uppercase; line-height: 100%; font-size: 1.2em; }
.callout { background: #9CBD00; background: var(--lightGreen); padding: 2em 1em; color: #fff; text-align: center; display: block; margin: 1.5em 0; font-size: 1.2em; }
.callout + div.grid { margin-top: 50px; }
a.callout { cursor: pointer; }
.callout a { color: #fff; }
.callout i.icon-4x { font-size: 6em; }
.callout h4 { margin-bottom: 30px; }
.callout-top { margin: 50px 0 0 0; }
.callout p { margin-bottom: 0; }
.callout .button { margin-top: 10px; }
.callout.green { background: #19ad0b;/*#86dc00;*/ }
.callout.blue { background: #26507d; background: var(--lakeBlue); }
/*Search page body */

/*Top categories*/
.main_cat1 { font-size: 16px; font-weight: bold; color: #0000FF }
.main_cat2 { font-size: 12px; font-weight: bold; color: #0000FF }
.cat1:visited { font-size: 16px; font-weight: bold; color: #5555AA }
/*Small urls*/
.url { color: #1a0dab; font-size: 90%; }
/*Page descriptions*/
.description {  }
/* Title/link of pages */
.title { color: #1a0dab; text-decoration: none; font-size: 120%; }
.title:hover { text-decoration: underline; }
#searchBoxWrap { width: 420px; max-width: 97%; margin: 18px auto; }
.searchBox { border: 1px solid #113377; font-size: 110%; width: 100%; table-layout: fixed; }
#result_report { text-align: center; padding: 3px; font-weight: bold; margin-bottom: 14px; }
.catBanner { padding: 3px; margin-top: 15px; background-color: #e5ecf9; font-weight: bold }
.webPageBanner { padding: 3px; margin-top: 20px; background-color: #e5ecf9; font-weight: bold }
hr.powered { }
/*main results table */
#results { max-width: 100%; }
#other_pages { text-align: center; }
#other_pages a { text-decoration: none; padding: 4px; background: #26507d; background: var(--lakeBlue); color: #fff; }
#powered_by { margin: 0 auto; margin-top: 20px; padding-top: 10px; font-size: 10px; text-align: center; vertical-align: center; display: none; }
#common_report { text-align: center; }
#cat_table { margin-top: 20px; padding-top: 10px; padding-bottom: 20px; border-top: 1px dashed #AAAAAA; border-bottom: 1px dashed #AAAAAA; clear: both; }
#cat_table:after { clear: both; content: ' '; display: block; font-size: 0; line-height: 0; visibility: hidden; width: 0; height: 0 }
#cat_main { font-weight: bold; }
.divline { margin-top: 20px; margin-bottom: -5px; border-bottom: 1px solid #DDDDDD; }
#sub_cat { font-size: 12px; }
.idented { margin-left: 30px; }
#did_you_mean { font-size: 14px; text-align: center; margin: 10px; }
.SuggestFramework_Combo td { padding: 6px 5px }
.SuggestFramework_List { background: #fff; margin-top: -9px; padding-top: 15px; margin-left: 0px; border-top: 0; z-index: 9999!important; }
.searchBox .SuggestFramework_List { border: 1px solid #000; margin-top: 0px; margin-left: 0px; border-top: 0; }
.SuggestFramework_Heading { padding: 0 1px 0 1px; background-color: #ccc; color: #FFFFFF; }
.SuggestFramework_Highlighted { padding: 3px; margin-bottom: 1px; background-color: var(--lightGreen); color: #000; }
.SuggestFramework_Normal { padding: 3px; margin-bottom: 1px; color: #000; background: #efefef; }
.SuggestFramework_Combo tr:hover { background: #000; color: #fff; }
.SuggestFramework_Combo { width: 100%; margin: 0; padding: 0; }
/*---------------------------------
transition 
	-----------------------------------*/
.scrollTo, .clickme, #sidenav a, .menu a, .expandHeading, .expandHeadingActive { transition: all 0.5s ease; }
.fancybox-slide--html .fancybox-content { width : 800px; /*height : 600px;*/ border: 6px solid var(--lightGreen); max-width : 80%; max-height : 80%; margin: 0; }
/*
.expandHeading { font-weight: bold; cursor: pointer;
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%;
				border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545; }
				.expandHeading:before {
    font-family: FontAwesome;
    content: "\f0da"; padding-right: .5em; 
}

.expandHeadingActive { background: var(--darkGreen); color: #fff;   display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%; }*/
				
.fancybox-slide--html .fancybox-content .expandHeading:before { font-family: FontAwesome; content: " "; padding-right: .5em; }
.fancybox-slide--html .fancybox-content .expandHeading { background: #005500; background: var(--darkGreen); color: #fff; display: block; margin-top: 2em; }
.fancybox-slide--html .fancybox-content .expandContent { display: block!important; padding: 1.5em 1em 2em 4em; background: #efefef; margin-bottom: 1em; overflow: auto; box-shadow: 0px 2px 2px rgba(0,0,0,.2); }
.isotope { }
.isotope:after { content: ''; display: block; clear: both; }
.grid-item { width: 25%; }
.grid-item--width2 { width: 33%; }
.grid-item--width3 { width: 50%; }
 @media all and (min-width: 1024px) and (max-width: 1280px) {
}
 @media all and (min-width: 768px) and (max-width: 1023px) {
}
 @media all and (max-width: 768px) {
#mainnav ul.menu { width: 100%; background: #000; color: #fff; }
#mainnav ul.menu a { width: 100%; background: #005500; background: var(--darkGreen); color: #fff; }
header *[class*="col_"] { margin: 0; padding: 0; min-width:100%!!important;
float: none; }
.grid { display: block; }
header, header .right, footer * { text-align: center!important; line-height: 120%; }
#logo { max-width: 20vh; }
#slides { min-height: 500px; }
#slides .container, #slides .container2 { width: 100%; left: 0; text-align: center; top: 1%; padding: 10px; color: #fff; font-size: 1.6em; line-height: 120%; text-shadow: 0 0 8px rgba(0,0,0,.8); }
#side_slides .slideshow { max-width: 100%; left: 0; text-align: center; top: 1%; padding: 10px; color: #fff; font-size: 1.6em; line-height: 120%; text-shadow: 0 0 8px rgba(0,0,0,.8); background: none; }
.home article, .home aside { display: flex; width: 100%; flex-flow: column; float: left; position: relative; justify-content: center; align-items: center; padding: 2em; }
}
 @media all and (max-width: 480px) {
.gridFlex .cell, .gridFlex.twoColumns .cell, .gridFlex.threeColumns .cell { width: 100%; }
#content { padding: 0em .75em 2em; }
#rightcolumn, #content, header [class*="col_"] { min-width: 100%!important; float: none; clear: both; display: block; }
#rightcolumn { padding-bottom: 1.5em; }
#aza, #primeFooterNav, #secondFooterNav { margin: 1.5em 0; }
#primeFooterNav a, #secondFooterNav a { margin: 1em; display: inline-block; }
a.button { margin: .5em!important; display: inline-block; }
article .article_desc { padding: 0; }
hgroup, h1, h2, h3, h4, h5, h6, .bigText, footer, header, .right, #rightcolumn { text-align: center!important; line-height: 120%; }
ul, ol { padding: 0; margin: 0 0 20px 25px; }
.sharethis-inline-share-buttons { padding: 1em 0; }
#topBar ul li a { padding: 7px 8px; }
#topBar { padding-bottom: .5em; }
#logo { max-width: 60%; }
img.align-right, img.align-left { float: none; display: block; text-align: center; margin: 1em auto; }
#slides .container, #slides .container2 { width: 100%; left: 0; text-align: center; top: 1%; padding: 10px; color: #fff; font-size: 1.6em; line-height: 120%; text-shadow: 0 0 8px rgba(0,0,0,.8); }
}
 @media only screen and (-webkit-min-device-pixel-ratio: 1.3), @media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 13/10), (min-device-pixel-ratio: 1.3), (min-resolution: 2dppx), (min-resolution: 120dpi) {
}
