first commit
authorIan Weller <ian@gaslightmedia.com>
Tue, 16 Aug 2016 17:09:31 +0000 (13:09 -0400)
committerIan Weller <ian@gaslightmedia.com>
Tue, 16 Aug 2016 17:09:31 +0000 (13:09 -0400)
92 files changed:
.babelrc [new file with mode: 0644]
.bowerrc [new file with mode: 0644]
.gitignore [new file with mode: 0644]
CHANGELOG.md [new file with mode: 0644]
README.md [new file with mode: 0644]
assets/[cabins-map].map [new file with mode: 0644]
assets/[campsite-map].map [new file with mode: 0644]
assets/background.jpg [new file with mode: 0644]
assets/bike-image.jpg [new file with mode: 0644]
assets/bkgrd-image.jpg [new file with mode: 0644]
assets/cabin-image.jpg [new file with mode: 0644]
assets/cabins-map.jpg [new file with mode: 0644]
assets/camp-petosega-footer-logo.png [new file with mode: 0644]
assets/camp-petosega-logo.png [new file with mode: 0644]
assets/camping-icon.png [new file with mode: 0644]
assets/campsite-map.jpg [new file with mode: 0644]
assets/compass-icon.png [new file with mode: 0644]
assets/facebook-icon.png [new file with mode: 0644]
assets/favicon.ico [new file with mode: 0644]
assets/lantern.png [new file with mode: 0644]
assets/map-icon.png [new file with mode: 0644]
assets/more_emmet.png [new file with mode: 0644]
assets/page-header-image.jpg [new file with mode: 0644]
assets/playground-image.jpg [new file with mode: 0644]
assets/read-more-button.png [new file with mode: 0644]
assets/request-now-button.png [new file with mode: 0644]
assets/res-bkgrd.jpg [new file with mode: 0644]
assets/sample-page-image.jpg [new file with mode: 0644]
assets/search-icon.png [new file with mode: 0644]
assets/share-icon.png [new file with mode: 0644]
assets/slide-1.jpg [new file with mode: 0644]
assets/slide-2.jpg [new file with mode: 0644]
assets/slide-3.jpg [new file with mode: 0644]
assets/slide-4.jpg [new file with mode: 0644]
assets/view-full-map-preview-image.jpg [new file with mode: 0644]
assets/youtube-icon.png [new file with mode: 0644]
bower.json [new file with mode: 0644]
comments.php [new file with mode: 0644]
css/app.css [new file with mode: 0644]
css/app.css.map [new file with mode: 0644]
favicon.ico [new file with mode: 0644]
functions.php [new file with mode: 0644]
gulpfile.js [new file with mode: 0644]
index.php [new file with mode: 0644]
js/app.js [new file with mode: 0644]
js/custom/pageSetup.js [new file with mode: 0644]
lib/menu-walker.php [new file with mode: 0644]
lib/navigation.php [new file with mode: 0644]
nggallery/album-glmalbums.php [new file with mode: 0644]
nggallery/gallery-glmphotos-8.php [new file with mode: 0644]
nggallery/gallery-glmphotos-narrow.php [new file with mode: 0644]
nggallery/gallery-glmphotos.php [new file with mode: 0644]
nggallery/gallery-glmvideos.php [new file with mode: 0644]
package.json [new file with mode: 0644]
parts/blog-content-area.php [new file with mode: 0644]
parts/blog-feed-front.php [new file with mode: 0644]
parts/blog-sidebar-r.php [new file with mode: 0644]
parts/blog-text.php [new file with mode: 0644]
parts/glm-blocks.php [new file with mode: 0644]
parts/main-content.php [new file with mode: 0644]
parts/search-form.php [new file with mode: 0644]
parts/slide-show.php [new file with mode: 0644]
scss/_blog.scss [new file with mode: 0644]
scss/_body.scss [new file with mode: 0644]
scss/_content.scss [new file with mode: 0644]
scss/_copyright.scss [new file with mode: 0644]
scss/_defaults.scss [new file with mode: 0644]
scss/_left-off-canvas.scss [new file with mode: 0644]
scss/_main.scss [new file with mode: 0644]
scss/_mixins.scss [new file with mode: 0644]
scss/_page.footer.scss [new file with mode: 0644]
scss/_page.header.scss [new file with mode: 0644]
scss/_page.wrapper.scss [new file with mode: 0644]
scss/_plugins.scss [new file with mode: 0644]
scss/_right-off-canvas.scss [new file with mode: 0644]
scss/_search.scss [new file with mode: 0644]
scss/_settings.scss [new file with mode: 0644]
scss/_shadow.wrapper.scss [new file with mode: 0644]
scss/_sidebar.scss [new file with mode: 0644]
scss/_slideshow.scss [new file with mode: 0644]
scss/_structure.scss [new file with mode: 0644]
scss/_topbar.scss [new file with mode: 0644]
scss/_wordpress.scss [new file with mode: 0644]
scss/admin/tinymce.css [new file with mode: 0644]
scss/app.scss [new file with mode: 0644]
scss/mixins/_gradient.scss [new file with mode: 0644]
scss/mixins/_off-canvas-arrow.scss [new file with mode: 0644]
scss/plugins/_events.scss [new file with mode: 0644]
scss/plugins/_gravityForms.scss [new file with mode: 0644]
scss/plugins/_nextgen.scss [new file with mode: 0644]
sidebar.php [new file with mode: 0644]
style.css [new file with mode: 0644]

diff --git a/.babelrc b/.babelrc
new file mode 100644 (file)
index 0000000..b10a5a1
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,3 @@
+{
+    "presets": ['es2015']
+}
\ No newline at end of file
diff --git a/.bowerrc b/.bowerrc
new file mode 100644 (file)
index 0000000..69fad35
--- /dev/null
+++ b/.bowerrc
@@ -0,0 +1,3 @@
+{
+  "directory": "bower_components"
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..7a6f225
--- /dev/null
@@ -0,0 +1,4 @@
+.DS_Store
+bower_components
+node_modules
+
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644 (file)
index 0000000..381e1a1
--- /dev/null
@@ -0,0 +1,5 @@
+# Changelog
+
+## Version 1.0 (November 19, 2015)
+
+Initial release.
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..36ca655
--- /dev/null
+++ b/README.md
@@ -0,0 +1,48 @@
+# Foundation for Sites Template
+
+**Please open all issues with this template on the main [Foundation for Sites](https://github.com/zurb/foundation-sites/issues) repo.**
+
+This is the basic starter project for [Foundation for Sites 6](http://foundation.zurb.com/sites). It includes a Sass compiler and a starter HTML file for you.
+
+## Installation
+
+To use this template, your computer needs:
+
+- [NodeJS](https://nodejs.org/en/) (0.12 or greater)
+- [Git](https://git-scm.com/)
+
+This template can be installed with the Foundation CLI, or downloaded and set up manually.
+
+### Using the CLI
+
+Install the Foundation CLI with this command:
+
+```bash
+npm install foundation-cli --global
+```
+
+Use this command to set up a blank Foundation for Sites project with this template:
+
+```bash
+foundation new --framework sites --template basic
+```
+
+The CLI will prompt you to give your project a name. The template will be downloaded into a folder with this name.
+
+### Manual Setup
+
+To manually set up the template, first download it with Git:
+
+```bash
+git clone https://github.com/zurb/foundation-sites-template projectname
+```
+
+Then open the folder in your command line, and install the needed dependencies:
+
+```bash
+cd projectname
+npm install
+bower install
+```
+
+Finally, run `npm start` to run the Sass compiler. It will re-run every time you save a Sass file.
diff --git a/assets/[cabins-map].map b/assets/[cabins-map].map
new file mode 100644 (file)
index 0000000..66702d6
--- /dev/null
@@ -0,0 +1,16 @@
+<img src="[cabins-map] (imported)" width="565" height="697" border="0" usemap="#map" />
+
+<map name="map">
+<!-- #$-:Image map file created by GIMP Image Map plug-in -->
+<!-- #$-:GIMP Image Map plug-in by Maurits Rijk -->
+<!-- #$-:Please do not edit lines starting with "#$" -->
+<!-- #$VERSION:2.3 -->
+<!-- #$AUTHOR:anthony -->
+<area shape="poly" coords="389,79,401,81,394,100,381,94" alt="cabin-3"  nohref="nohref" />
+<area shape="poly" coords="410,98,419,85,429,91,421,108" alt="cabin-2"  nohref="nohref" />
+<area shape="poly" coords="429,116,448,116,445,127,427,128" alt="cabin-1"  nohref="nohref" />
+<area shape="poly" coords="406,269,414,256,424,263,416,276" alt="cabin-d"  nohref="nohref" />
+<area shape="poly" coords="359,287,373,286,373,302,360,302" alt="cabin-f"  nohref="nohref" />
+<area shape="poly" coords="216,524,227,527,220,547,210,543,209,542" alt="cabin-5"  nohref="nohref" />
+<area shape="poly" coords="262,15,278,13,274,34,264,32" alt="cabin-4"  nohref="nohref" />
+</map>
diff --git a/assets/[campsite-map].map b/assets/[campsite-map].map
new file mode 100644 (file)
index 0000000..6a305c4
--- /dev/null
@@ -0,0 +1,21 @@
+<img src="[campsite-map] (imported)" width="940" height="665" border="0" usemap="#map" />
+
+<map name="map">
+<!-- #$-:Image map file created by GIMP Image Map plug-in -->
+<!-- #$-:GIMP Image Map plug-in by Maurits Rijk -->
+<!-- #$-:Please do not edit lines starting with "#$" -->
+<!-- #$VERSION:2.3 -->
+<!-- #$AUTHOR:anthony -->
+<area shape="poly" coords="185,298,203,329,228,315,210,291" alt="site-1"  nohref="nohref" />
+<area shape="poly" coords="239,296,232,334,259,330,261,301" alt="site-2"  nohref="nohref" />
+<area shape="poly" coords="291,293,306,324,333,309,315,283" alt="site-5"  nohref="nohref" />
+<area shape="poly" coords="443,248,461,203,490,214,478,259" alt="sikte-10"  nohref="nohref" />
+<area shape="poly" coords="486,258,497,221,526,228,517,263" alt="site-11"  nohref="nohref" />
+<area shape="poly" coords="502,267,495,300,521,305,529,272" alt="site-12"  nohref="nohref" />
+<area shape="poly" coords="404,246,401,286,428,290,430,249" alt="site-9"  nohref="nohref" />
+<area shape="poly" coords="565,275,580,246,601,256,595,285" alt="site-14"  nohref="nohref" />
+<area shape="poly" coords="602,282,611,248,640,262,631,290" alt="site-15"  nohref="nohref" />
+<area shape="poly" coords="691,282,719,309,700,331,674,301" alt="site-17"  nohref="nohref" />
+<area shape="rect" coords="226,250,251,289" alt="site-3"  nohref="nohref" />
+<area shape="rect" coords="478,38,513,69" alt="site-25"  nohref="nohref" />
+</map>
diff --git a/assets/background.jpg b/assets/background.jpg
new file mode 100644 (file)
index 0000000..dbc8197
Binary files /dev/null and b/assets/background.jpg differ
diff --git a/assets/bike-image.jpg b/assets/bike-image.jpg
new file mode 100644 (file)
index 0000000..8a81e2e
Binary files /dev/null and b/assets/bike-image.jpg differ
diff --git a/assets/bkgrd-image.jpg b/assets/bkgrd-image.jpg
new file mode 100644 (file)
index 0000000..47aa8a8
Binary files /dev/null and b/assets/bkgrd-image.jpg differ
diff --git a/assets/cabin-image.jpg b/assets/cabin-image.jpg
new file mode 100644 (file)
index 0000000..d73d8a9
Binary files /dev/null and b/assets/cabin-image.jpg differ
diff --git a/assets/cabins-map.jpg b/assets/cabins-map.jpg
new file mode 100644 (file)
index 0000000..2f0d1e8
Binary files /dev/null and b/assets/cabins-map.jpg differ
diff --git a/assets/camp-petosega-footer-logo.png b/assets/camp-petosega-footer-logo.png
new file mode 100644 (file)
index 0000000..9904ce9
Binary files /dev/null and b/assets/camp-petosega-footer-logo.png differ
diff --git a/assets/camp-petosega-logo.png b/assets/camp-petosega-logo.png
new file mode 100644 (file)
index 0000000..008c819
Binary files /dev/null and b/assets/camp-petosega-logo.png differ
diff --git a/assets/camping-icon.png b/assets/camping-icon.png
new file mode 100644 (file)
index 0000000..5805168
Binary files /dev/null and b/assets/camping-icon.png differ
diff --git a/assets/campsite-map.jpg b/assets/campsite-map.jpg
new file mode 100644 (file)
index 0000000..81a34ff
Binary files /dev/null and b/assets/campsite-map.jpg differ
diff --git a/assets/compass-icon.png b/assets/compass-icon.png
new file mode 100644 (file)
index 0000000..bfef81b
Binary files /dev/null and b/assets/compass-icon.png differ
diff --git a/assets/facebook-icon.png b/assets/facebook-icon.png
new file mode 100644 (file)
index 0000000..9ef9ccf
Binary files /dev/null and b/assets/facebook-icon.png differ
diff --git a/assets/favicon.ico b/assets/favicon.ico
new file mode 100644 (file)
index 0000000..7683209
Binary files /dev/null and b/assets/favicon.ico differ
diff --git a/assets/lantern.png b/assets/lantern.png
new file mode 100644 (file)
index 0000000..95f17a1
Binary files /dev/null and b/assets/lantern.png differ
diff --git a/assets/map-icon.png b/assets/map-icon.png
new file mode 100644 (file)
index 0000000..217264f
Binary files /dev/null and b/assets/map-icon.png differ
diff --git a/assets/more_emmet.png b/assets/more_emmet.png
new file mode 100644 (file)
index 0000000..292b9e8
Binary files /dev/null and b/assets/more_emmet.png differ
diff --git a/assets/page-header-image.jpg b/assets/page-header-image.jpg
new file mode 100644 (file)
index 0000000..1ad0f90
Binary files /dev/null and b/assets/page-header-image.jpg differ
diff --git a/assets/playground-image.jpg b/assets/playground-image.jpg
new file mode 100644 (file)
index 0000000..1e1ea3f
Binary files /dev/null and b/assets/playground-image.jpg differ
diff --git a/assets/read-more-button.png b/assets/read-more-button.png
new file mode 100644 (file)
index 0000000..73711ab
Binary files /dev/null and b/assets/read-more-button.png differ
diff --git a/assets/request-now-button.png b/assets/request-now-button.png
new file mode 100644 (file)
index 0000000..d91521e
Binary files /dev/null and b/assets/request-now-button.png differ
diff --git a/assets/res-bkgrd.jpg b/assets/res-bkgrd.jpg
new file mode 100644 (file)
index 0000000..9c977f7
Binary files /dev/null and b/assets/res-bkgrd.jpg differ
diff --git a/assets/sample-page-image.jpg b/assets/sample-page-image.jpg
new file mode 100644 (file)
index 0000000..f54a020
Binary files /dev/null and b/assets/sample-page-image.jpg differ
diff --git a/assets/search-icon.png b/assets/search-icon.png
new file mode 100644 (file)
index 0000000..b0a7898
Binary files /dev/null and b/assets/search-icon.png differ
diff --git a/assets/share-icon.png b/assets/share-icon.png
new file mode 100644 (file)
index 0000000..6df905d
Binary files /dev/null and b/assets/share-icon.png differ
diff --git a/assets/slide-1.jpg b/assets/slide-1.jpg
new file mode 100644 (file)
index 0000000..501f558
Binary files /dev/null and b/assets/slide-1.jpg differ
diff --git a/assets/slide-2.jpg b/assets/slide-2.jpg
new file mode 100644 (file)
index 0000000..0b95f77
Binary files /dev/null and b/assets/slide-2.jpg differ
diff --git a/assets/slide-3.jpg b/assets/slide-3.jpg
new file mode 100644 (file)
index 0000000..acd905a
Binary files /dev/null and b/assets/slide-3.jpg differ
diff --git a/assets/slide-4.jpg b/assets/slide-4.jpg
new file mode 100644 (file)
index 0000000..2bb8170
Binary files /dev/null and b/assets/slide-4.jpg differ
diff --git a/assets/view-full-map-preview-image.jpg b/assets/view-full-map-preview-image.jpg
new file mode 100644 (file)
index 0000000..be31477
Binary files /dev/null and b/assets/view-full-map-preview-image.jpg differ
diff --git a/assets/youtube-icon.png b/assets/youtube-icon.png
new file mode 100644 (file)
index 0000000..f1b3e2a
Binary files /dev/null and b/assets/youtube-icon.png differ
diff --git a/bower.json b/bower.json
new file mode 100644 (file)
index 0000000..2694808
--- /dev/null
@@ -0,0 +1,25 @@
+{
+  "name": "foundation-sites-template",
+  "version": "1.0.0",
+  "authors": [
+    "ZURB <foundation@zurb.com>"
+  ],
+  "description": "Basic template for a new Foundation for Sites project.",
+  "main": "index.html",
+  "license": "MIT",
+  "homepage": "http://foundation.zurb.com",
+  "dependencies": {
+    "foundation-sites": "~6.1.2",
+    "motion-ui": "~1.1.0",
+    "foundation-sites": "~6.2.0",
+    "motion-ui": "~1.2.2"
+  },
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "test",
+    "tests"
+  ],
+  "private": true
+}
diff --git a/comments.php b/comments.php
new file mode 100644 (file)
index 0000000..353cd14
--- /dev/null
@@ -0,0 +1,89 @@
+<?php
+/**
+ * The template for displaying comments
+ *
+ * The area of the page that contains both current comments
+ * and the comment form.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Fifteen
+ * @since Twenty Fifteen 1.0
+ */
+if ( ! function_exists( 'twentyfifteen_comment_nav' ) ) :
+/**
+ * Display navigation to next/previous comments when applicable.
+ *
+ * @since Twenty Fifteen 1.0
+ */
+function twentyfifteen_comment_nav() {
+    // Are there comments to navigate through?
+    if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
+?>
+<nav class="navigation comment-navigation" role="navigation">
+    <h2 class="screen-reader-text"><?php _e( 'Comment navigation', 'twentyfifteen' ); ?></h2>
+    <div class="nav-links">
+        <?php
+    if ( $prev_link = get_previous_comments_link( __( 'Older Comments', 'twentyfifteen' ) ) ) :
+    printf( '<div class="nav-previous">%s</div>', $prev_link );
+    endif;
+
+    if ( $next_link = get_next_comments_link( __( 'Newer Comments', 'twentyfifteen' ) ) ) :
+    printf( '<div class="nav-next">%s</div>', $next_link );
+    endif;
+        ?>
+    </div><!-- .nav-links -->
+</nav><!-- .comment-navigation -->
+<?php
+    endif;
+}
+endif;
+/*
+ * If the current post is protected by a password and
+ * the visitor has not yet entered the password we will
+ * return early without loading the comments.
+ */
+if ( post_password_required() ) {
+    return;
+}
+?>
+
+<div id="comments" class="comments-area">
+
+    <?php if ( have_comments() ) : ?>
+    <h2 class="comments-title">
+        <?php
+        printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentyfifteen' ),
+               number_format_i18n( get_comments_number() ), get_the_title() );
+        ?>
+    </h2>
+
+    <?php twentyfifteen_comment_nav(); ?>
+
+    <ol class="comment-list">
+        <?php
+        wp_list_comments( array(
+            'style'       => 'ol',
+            'short_ping'  => true,
+            'avatar_size' => 56,
+        ) );
+        ?>
+    </ol><!-- .comment-list -->
+
+    <?php twentyfifteen_comment_nav(); ?>
+
+    <?php endif; // have_comments() ?>
+
+    <?php
+    // If comments are closed and there are comments, let's leave a little note, shall we?
+    if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
+    ?>
+    <p class="no-comments"><?php _e( 'Comments are closed.', 'twentyfifteen' ); ?></p>
+    <?php endif; ?>
+
+    <?php comment_form(
+    array(
+        'class_submit' => 'button'
+    )
+); ?>
+
+</div><!-- .comments-area -->
diff --git a/css/app.css b/css/app.css
new file mode 100644 (file)
index 0000000..dff164d
--- /dev/null
@@ -0,0 +1,4801 @@
+@charset "UTF-8";
+/**
+ * Foundation for Sites by ZURB
+ * Version 6.2.3
+ * foundation.zurb.com
+ * Licensed under MIT Open Source
+ */
+/* 
+    Created on : Mar 5, 2015, 2:57:35 PM
+    Author     : laury
+*/
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+/**
+   * 1. Set default font family to sans-serif.
+   * 2. Prevent iOS and IE text size adjust after device orientation change,
+   *    without disabling user zoom.
+   */
+html {
+  font-family: sans-serif;
+  /* 1 */
+  -ms-text-size-adjust: 100%;
+  /* 2 */
+  -webkit-text-size-adjust: 100%;
+  /* 2 */ }
+
+/**
+   * Remove default margin.
+   */
+body {
+  margin: 0; }
+
+/* HTML5 display definitions
+     ========================================================================== */
+/**
+   * Correct `block` display not defined for any HTML5 element in IE 8/9.
+   * Correct `block` display not defined for `details` or `summary` in IE 10/11
+   * and Firefox.
+   * Correct `block` display not defined for `main` in IE 11.
+   */
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block; }
+
+/**
+   * 1. Correct `inline-block` display not defined in IE 8/9.
+   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
+   */
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  /* 1 */
+  vertical-align: baseline;
+  /* 2 */ }
+
+/**
+   * Prevent modern browsers from displaying `audio` without controls.
+   * Remove excess height in iOS 5 devices.
+   */
+audio:not([controls]) {
+  display: none;
+  height: 0; }
+
+/**
+   * Address `[hidden]` styling not present in IE 8/9/10.
+   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
+   */
+[hidden],
+template {
+  display: none; }
+
+/* Links
+     ========================================================================== */
+/**
+   * Remove the gray background color from active links in IE 10.
+   */
+a {
+  background-color: transparent; }
+
+/**
+   * Improve readability of focused elements when they are also in an
+   * active/hover state.
+   */
+a:active,
+a:hover {
+  outline: 0; }
+
+/* Text-level semantics
+     ========================================================================== */
+/**
+   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
+   */
+abbr[title] {
+  border-bottom: 1px dotted; }
+
+/**
+   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
+   */
+b,
+strong {
+  font-weight: bold; }
+
+/**
+   * Address styling not present in Safari and Chrome.
+   */
+dfn {
+  font-style: italic; }
+
+/**
+   * Address variable `h1` font-size and margin within `section` and `article`
+   * contexts in Firefox 4+, Safari, and Chrome.
+   */
+h1 {
+  font-size: 2em;
+  margin: 0.67em 0; }
+
+/**
+   * Address styling not present in IE 8/9.
+   */
+mark {
+  background: #ff0;
+  color: #000; }
+
+/**
+   * Address inconsistent and variable font size in all browsers.
+   */
+small {
+  font-size: 80%; }
+
+/**
+   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
+   */
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline; }
+
+sup {
+  top: -0.5em; }
+
+sub {
+  bottom: -0.25em; }
+
+/* Embedded content
+     ========================================================================== */
+/**
+   * Remove border when inside `a` element in IE 8/9/10.
+   */
+img {
+  border: 0; }
+
+/**
+   * Correct overflow not hidden in IE 9/10/11.
+   */
+svg:not(:root) {
+  overflow: hidden; }
+
+/* Grouping content
+     ========================================================================== */
+/**
+   * Address margin not present in IE 8/9 and Safari.
+   */
+figure {
+  margin: 1em 40px; }
+
+/**
+   * Address differences between Firefox and other browsers.
+   */
+hr {
+  box-sizing: content-box;
+  height: 0; }
+
+/**
+   * Contain overflow in all browsers.
+   */
+pre {
+  overflow: auto; }
+
+/**
+   * Address odd `em`-unit font size rendering in all browsers.
+   */
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em; }
+
+/* Forms
+     ========================================================================== */
+/**
+   * Known limitation: by default, Chrome and Safari on OS X allow very limited
+   * styling of `select`, unless a `border` property is set.
+   */
+/**
+   * 1. Correct color not being inherited.
+   *    Known issue: affects color of disabled elements.
+   * 2. Correct font properties not being inherited.
+   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
+   */
+button,
+input,
+optgroup,
+select,
+textarea {
+  color: inherit;
+  /* 1 */
+  font: inherit;
+  /* 2 */
+  margin: 0;
+  /* 3 */ }
+
+/**
+   * Address `overflow` set to `hidden` in IE 8/9/10/11.
+   */
+button {
+  overflow: visible; }
+
+/**
+   * Address inconsistent `text-transform` inheritance for `button` and `select`.
+   * All other form control elements do not inherit `text-transform` values.
+   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
+   * Correct `select` style inheritance in Firefox.
+   */
+button,
+select {
+  text-transform: none; }
+
+/**
+   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
+   *    and `video` controls.
+   * 2. Correct inability to style clickable `input` types in iOS.
+   * 3. Improve usability and consistency of cursor style between image-type
+   *    `input` and others.
+   */
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  /* 2 */
+  cursor: pointer;
+  /* 3 */ }
+
+/**
+   * Re-set default cursor for disabled elements.
+   */
+button[disabled],
+html input[disabled] {
+  cursor: not-allowed; }
+
+/**
+   * Remove inner padding and border in Firefox 4+.
+   */
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0; }
+
+/**
+   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
+   * the UA stylesheet.
+   */
+input {
+  line-height: normal; }
+
+/**
+   * It's recommended that you don't attempt to style these elements.
+   * Firefox's implementation doesn't respect box-sizing, padding, or width.
+   *
+   * 1. Address box sizing set to `content-box` in IE 8/9/10.
+   * 2. Remove excess padding in IE 8/9/10.
+   */
+input[type="checkbox"],
+input[type="radio"] {
+  box-sizing: border-box;
+  /* 1 */
+  padding: 0;
+  /* 2 */ }
+
+/**
+   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
+   * `font-size` values of the `input`, it causes the cursor style of the
+   * decrement button to change from `default` to `text`.
+   */
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto; }
+
+/**
+   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
+   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
+   */
+input[type="search"] {
+  -webkit-appearance: textfield;
+  /* 1 */
+  box-sizing: content-box;
+  /* 2 */ }
+
+/**
+   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
+   * Safari (but not Chrome) clips the cancel button when the search input has
+   * padding (and `textfield` appearance).
+   */
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none; }
+
+/**
+   * Define consistent border, margin, and padding.
+   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
+   */
+/* fieldset {
+    border: 1px solid #c0c0c0;
+    margin: 0 2px;
+    padding: 0.35em 0.625em 0.75em;
+  } */
+/**
+   * 1. Correct `color` not being inherited in IE 8/9/10/11.
+   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
+   */
+legend {
+  border: 0;
+  /* 1 */
+  padding: 0;
+  /* 2 */ }
+
+/**
+   * Remove default vertical scrollbar in IE 8/9/10/11.
+   */
+textarea {
+  overflow: auto; }
+
+/**
+   * Don't inherit the `font-weight` (applied by a rule above).
+   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
+   */
+optgroup {
+  font-weight: bold; }
+
+/* Tables
+     ========================================================================== */
+/**
+   * Remove most spacing between table cells.
+   */
+table {
+  border-collapse: collapse;
+  border-spacing: 0; }
+
+td,
+th {
+  padding: 0; }
+
+.foundation-mq {
+  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }
+
+html {
+  font-size: 100%;
+  box-sizing: border-box; }
+
+*,
+*::before,
+*::after {
+  box-sizing: inherit; }
+
+body {
+  padding: 0;
+  margin: 0;
+  font-family: "Open Sans", sans-serif;
+  font-weight: normal;
+  line-height: 1.5;
+  color: #000000;
+  background: url(../assets/background.jpg) no-repeat center center fixed;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale; }
+
+img {
+  max-width: 100%;
+  height: auto;
+  -ms-interpolation-mode: bicubic;
+  display: inline-block;
+  vertical-align: middle; }
+
+textarea {
+  height: auto;
+  min-height: 50px;
+  border-radius: 0; }
+
+select {
+  width: 100%;
+  border-radius: 0; }
+
+#map_canvas img,
+#map_canvas embed,
+#map_canvas object,
+.map_canvas img,
+.map_canvas embed,
+.map_canvas object,
+.mqa-display img,
+.mqa-display embed,
+.mqa-display object {
+  max-width: none !important; }
+
+button {
+  -webkit-appearance: none;
+  -moz-appearance: none;
+  background: transparent;
+  padding: 0;
+  border: 0;
+  border-radius: 0;
+  line-height: 1; }
+  [data-whatinput='mouse'] button {
+    outline: 0; }
+
+.is-visible {
+  display: block !important; }
+
+.is-hidden {
+  display: none !important; }
+
+.row {
+  max-width: 75rem;
+  margin-left: auto;
+  margin-right: auto; }
+  .row::before, .row::after {
+    content: ' ';
+    display: table; }
+  .row::after {
+    clear: both; }
+  .row.collapse > .column, .row.collapse > .columns {
+    padding-left: 0;
+    padding-right: 0; }
+  .row .row {
+    max-width: none;
+    margin-left: -0.625rem;
+    margin-right: -0.625rem; }
+    @media screen and (min-width: 40em) {
+      .row .row {
+        margin-left: -0.9375rem;
+        margin-right: -0.9375rem; } }
+    .row .row.collapse {
+      margin-left: 0;
+      margin-right: 0; }
+  .row.expanded {
+    max-width: none; }
+    .row.expanded .row {
+      margin-left: auto;
+      margin-right: auto; }
+
+.column, .columns {
+  width: 100%;
+  float: left;
+  padding-left: 0.625rem;
+  padding-right: 0.625rem; }
+  @media screen and (min-width: 40em) {
+    .column, .columns {
+      padding-left: 0.9375rem;
+      padding-right: 0.9375rem; } }
+  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
+    float: right; }
+  .column.end:last-child:last-child, .end.columns:last-child:last-child {
+    float: left; }
+
+.column.row.row, .row.row.columns {
+  float: none; }
+  .row .column.row.row, .row .row.row.columns {
+    padding-left: 0;
+    padding-right: 0;
+    margin-left: 0;
+    margin-right: 0; }
+
+.small-1 {
+  width: 8.33333%; }
+
+.small-push-1 {
+  position: relative;
+  left: 8.33333%; }
+
+.small-pull-1 {
+  position: relative;
+  left: -8.33333%; }
+
+.small-offset-0 {
+  margin-left: 0%; }
+
+.small-2 {
+  width: 16.66667%; }
+
+.small-push-2 {
+  position: relative;
+  left: 16.66667%; }
+
+.small-pull-2 {
+  position: relative;
+  left: -16.66667%; }
+
+.small-offset-1 {
+  margin-left: 8.33333%; }
+
+.small-3 {
+  width: 25%; }
+
+.small-push-3 {
+  position: relative;
+  left: 25%; }
+
+.small-pull-3 {
+  position: relative;
+  left: -25%; }
+
+.small-offset-2 {
+  margin-left: 16.66667%; }
+
+.small-4 {
+  width: 33.33333%; }
+
+.small-push-4 {
+  position: relative;
+  left: 33.33333%; }
+
+.small-pull-4 {
+  position: relative;
+  left: -33.33333%; }
+
+.small-offset-3 {
+  margin-left: 25%; }
+
+.small-5 {
+  width: 41.66667%; }
+
+.small-push-5 {
+  position: relative;
+  left: 41.66667%; }
+
+.small-pull-5 {
+  position: relative;
+  left: -41.66667%; }
+
+.small-offset-4 {
+  margin-left: 33.33333%; }
+
+.small-6 {
+  width: 50%; }
+
+.small-push-6 {
+  position: relative;
+  left: 50%; }
+
+.small-pull-6 {
+  position: relative;
+  left: -50%; }
+
+.small-offset-5 {
+  margin-left: 41.66667%; }
+
+.small-7 {
+  width: 58.33333%; }
+
+.small-push-7 {
+  position: relative;
+  left: 58.33333%; }
+
+.small-pull-7 {
+  position: relative;
+  left: -58.33333%; }
+
+.small-offset-6 {
+  margin-left: 50%; }
+
+.small-8 {
+  width: 66.66667%; }
+
+.small-push-8 {
+  position: relative;
+  left: 66.66667%; }
+
+.small-pull-8 {
+  position: relative;
+  left: -66.66667%; }
+
+.small-offset-7 {
+  margin-left: 58.33333%; }
+
+.small-9 {
+  width: 75%; }
+
+.small-push-9 {
+  position: relative;
+  left: 75%; }
+
+.small-pull-9 {
+  position: relative;
+  left: -75%; }
+
+.small-offset-8 {
+  margin-left: 66.66667%; }
+
+.small-10 {
+  width: 83.33333%; }
+
+.small-push-10 {
+  position: relative;
+  left: 83.33333%; }
+
+.small-pull-10 {
+  position: relative;
+  left: -83.33333%; }
+
+.small-offset-9 {
+  margin-left: 75%; }
+
+.small-11 {
+  width: 91.66667%; }
+
+.small-push-11 {
+  position: relative;
+  left: 91.66667%; }
+
+.small-pull-11 {
+  position: relative;
+  left: -91.66667%; }
+
+.small-offset-10 {
+  margin-left: 83.33333%; }
+
+.small-12 {
+  width: 100%; }
+
+.small-offset-11 {
+  margin-left: 91.66667%; }
+
+.small-up-1 > .column, .small-up-1 > .columns {
+  width: 100%;
+  float: left; }
+  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
+    clear: both; }
+  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
+    float: left; }
+
+.small-up-2 > .column, .small-up-2 > .columns {
+  width: 50%;
+  float: left; }
+  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
+    clear: both; }
+  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
+    float: left; }
+
+.small-up-3 > .column, .small-up-3 > .columns {
+  width: 33.33333%;
+  float: left; }
+  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
+    clear: both; }
+  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
+    float: left; }
+
+.small-up-4 > .column, .small-up-4 > .columns {
+  width: 25%;
+  float: left; }
+  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
+    clear: both; }
+  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
+    float: left; }
+
+.small-up-5 > .column, .small-up-5 > .columns {
+  width: 20%;
+  float: left; }
+  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
+    clear: both; }
+  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
+    float: left; }
+
+.small-up-6 > .column, .small-up-6 > .columns {
+  width: 16.66667%;
+  float: left; }
+  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
+    clear: both; }
+  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
+    float: left; }
+
+.small-up-7 > .column, .small-up-7 > .columns {
+  width: 14.28571%;
+  float: left; }
+  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
+    clear: both; }
+  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
+    float: left; }
+
+.small-up-8 > .column, .small-up-8 > .columns {
+  width: 12.5%;
+  float: left; }
+  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
+    clear: none; }
+  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
+    clear: both; }
+  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
+    float: left; }
+
+.small-collapse > .column, .small-collapse > .columns {
+  padding-left: 0;
+  padding-right: 0; }
+
+.small-collapse .row,
+.expanded.row .small-collapse.row {
+  margin-left: 0;
+  margin-right: 0; }
+
+.small-uncollapse > .column, .small-uncollapse > .columns {
+  padding-left: 0.625rem;
+  padding-right: 0.625rem; }
+
+.small-centered {
+  float: none;
+  margin-left: auto;
+  margin-right: auto; }
+
+.small-uncentered,
+.small-push-0,
+.small-pull-0 {
+  position: static;
+  margin-left: 0;
+  margin-right: 0;
+  float: left; }
+
+@media screen and (min-width: 40em) {
+  .medium-1 {
+    width: 8.33333%; }
+  .medium-push-1 {
+    position: relative;
+    left: 8.33333%; }
+  .medium-pull-1 {
+    position: relative;
+    left: -8.33333%; }
+  .medium-offset-0 {
+    margin-left: 0%; }
+  .medium-2 {
+    width: 16.66667%; }
+  .medium-push-2 {
+    position: relative;
+    left: 16.66667%; }
+  .medium-pull-2 {
+    position: relative;
+    left: -16.66667%; }
+  .medium-offset-1 {
+    margin-left: 8.33333%; }
+  .medium-3 {
+    width: 25%; }
+  .medium-push-3 {
+    position: relative;
+    left: 25%; }
+  .medium-pull-3 {
+    position: relative;
+    left: -25%; }
+  .medium-offset-2 {
+    margin-left: 16.66667%; }
+  .medium-4 {
+    width: 33.33333%; }
+  .medium-push-4 {
+    position: relative;
+    left: 33.33333%; }
+  .medium-pull-4 {
+    position: relative;
+    left: -33.33333%; }
+  .medium-offset-3 {
+    margin-left: 25%; }
+  .medium-5 {
+    width: 41.66667%; }
+  .medium-push-5 {
+    position: relative;
+    left: 41.66667%; }
+  .medium-pull-5 {
+    position: relative;
+    left: -41.66667%; }
+  .medium-offset-4 {
+    margin-left: 33.33333%; }
+  .medium-6 {
+    width: 50%; }
+  .medium-push-6 {
+    position: relative;
+    left: 50%; }
+  .medium-pull-6 {
+    position: relative;
+    left: -50%; }
+  .medium-offset-5 {
+    margin-left: 41.66667%; }
+  .medium-7 {
+    width: 58.33333%; }
+  .medium-push-7 {
+    position: relative;
+    left: 58.33333%; }
+  .medium-pull-7 {
+    position: relative;
+    left: -58.33333%; }
+  .medium-offset-6 {
+    margin-left: 50%; }
+  .medium-8 {
+    width: 66.66667%; }
+  .medium-push-8 {
+    position: relative;
+    left: 66.66667%; }
+  .medium-pull-8 {
+    position: relative;
+    left: -66.66667%; }
+  .medium-offset-7 {
+    margin-left: 58.33333%; }
+  .medium-9 {
+    width: 75%; }
+  .medium-push-9 {
+    position: relative;
+    left: 75%; }
+  .medium-pull-9 {
+    position: relative;
+    left: -75%; }
+  .medium-offset-8 {
+    margin-left: 66.66667%; }
+  .medium-10 {
+    width: 83.33333%; }
+  .medium-push-10 {
+    position: relative;
+    left: 83.33333%; }
+  .medium-pull-10 {
+    position: relative;
+    left: -83.33333%; }
+  .medium-offset-9 {
+    margin-left: 75%; }
+  .medium-11 {
+    width: 91.66667%; }
+  .medium-push-11 {
+    position: relative;
+    left: 91.66667%; }
+  .medium-pull-11 {
+    position: relative;
+    left: -91.66667%; }
+  .medium-offset-10 {
+    margin-left: 83.33333%; }
+  .medium-12 {
+    width: 100%; }
+  .medium-offset-11 {
+    margin-left: 91.66667%; }
+  .medium-up-1 > .column, .medium-up-1 > .columns {
+    width: 100%;
+    float: left; }
+    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
+      clear: both; }
+    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
+      float: left; }
+  .medium-up-2 > .column, .medium-up-2 > .columns {
+    width: 50%;
+    float: left; }
+    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
+      clear: both; }
+    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
+      float: left; }
+  .medium-up-3 > .column, .medium-up-3 > .columns {
+    width: 33.33333%;
+    float: left; }
+    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
+      clear: both; }
+    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
+      float: left; }
+  .medium-up-4 > .column, .medium-up-4 > .columns {
+    width: 25%;
+    float: left; }
+    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
+      clear: both; }
+    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
+      float: left; }
+  .medium-up-5 > .column, .medium-up-5 > .columns {
+    width: 20%;
+    float: left; }
+    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
+      clear: both; }
+    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
+      float: left; }
+  .medium-up-6 > .column, .medium-up-6 > .columns {
+    width: 16.66667%;
+    float: left; }
+    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
+      clear: both; }
+    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
+      float: left; }
+  .medium-up-7 > .column, .medium-up-7 > .columns {
+    width: 14.28571%;
+    float: left; }
+    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
+      clear: both; }
+    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
+      float: left; }
+  .medium-up-8 > .column, .medium-up-8 > .columns {
+    width: 12.5%;
+    float: left; }
+    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
+      clear: both; }
+    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
+      float: left; }
+  .medium-collapse > .column, .medium-collapse > .columns {
+    padding-left: 0;
+    padding-right: 0; }
+  .medium-collapse .row,
+  .expanded.row .medium-collapse.row {
+    margin-left: 0;
+    margin-right: 0; }
+  .medium-uncollapse > .column, .medium-uncollapse > .columns {
+    padding-left: 0.9375rem;
+    padding-right: 0.9375rem; }
+  .medium-centered {
+    float: none;
+    margin-left: auto;
+    margin-right: auto; }
+  .medium-uncentered,
+  .medium-push-0,
+  .medium-pull-0 {
+    position: static;
+    margin-left: 0;
+    margin-right: 0;
+    float: left; } }
+
+@media screen and (min-width: 64em) {
+  .large-1 {
+    width: 8.33333%; }
+  .large-push-1 {
+    position: relative;
+    left: 8.33333%; }
+  .large-pull-1 {
+    position: relative;
+    left: -8.33333%; }
+  .large-offset-0 {
+    margin-left: 0%; }
+  .large-2 {
+    width: 16.66667%; }
+  .large-push-2 {
+    position: relative;
+    left: 16.66667%; }
+  .large-pull-2 {
+    position: relative;
+    left: -16.66667%; }
+  .large-offset-1 {
+    margin-left: 8.33333%; }
+  .large-3 {
+    width: 25%; }
+  .large-push-3 {
+    position: relative;
+    left: 25%; }
+  .large-pull-3 {
+    position: relative;
+    left: -25%; }
+  .large-offset-2 {
+    margin-left: 16.66667%; }
+  .large-4 {
+    width: 33.33333%; }
+  .large-push-4 {
+    position: relative;
+    left: 33.33333%; }
+  .large-pull-4 {
+    position: relative;
+    left: -33.33333%; }
+  .large-offset-3 {
+    margin-left: 25%; }
+  .large-5 {
+    width: 41.66667%; }
+  .large-push-5 {
+    position: relative;
+    left: 41.66667%; }
+  .large-pull-5 {
+    position: relative;
+    left: -41.66667%; }
+  .large-offset-4 {
+    margin-left: 33.33333%; }
+  .large-6 {
+    width: 50%; }
+  .large-push-6 {
+    position: relative;
+    left: 50%; }
+  .large-pull-6 {
+    position: relative;
+    left: -50%; }
+  .large-offset-5 {
+    margin-left: 41.66667%; }
+  .large-7 {
+    width: 58.33333%; }
+  .large-push-7 {
+    position: relative;
+    left: 58.33333%; }
+  .large-pull-7 {
+    position: relative;
+    left: -58.33333%; }
+  .large-offset-6 {
+    margin-left: 50%; }
+  .large-8 {
+    width: 66.66667%; }
+  .large-push-8 {
+    position: relative;
+    left: 66.66667%; }
+  .large-pull-8 {
+    position: relative;
+    left: -66.66667%; }
+  .large-offset-7 {
+    margin-left: 58.33333%; }
+  .large-9 {
+    width: 75%; }
+  .large-push-9 {
+    position: relative;
+    left: 75%; }
+  .large-pull-9 {
+    position: relative;
+    left: -75%; }
+  .large-offset-8 {
+    margin-left: 66.66667%; }
+  .large-10 {
+    width: 83.33333%; }
+  .large-push-10 {
+    position: relative;
+    left: 83.33333%; }
+  .large-pull-10 {
+    position: relative;
+    left: -83.33333%; }
+  .large-offset-9 {
+    margin-left: 75%; }
+  .large-11 {
+    width: 91.66667%; }
+  .large-push-11 {
+    position: relative;
+    left: 91.66667%; }
+  .large-pull-11 {
+    position: relative;
+    left: -91.66667%; }
+  .large-offset-10 {
+    margin-left: 83.33333%; }
+  .large-12 {
+    width: 100%; }
+  .large-offset-11 {
+    margin-left: 91.66667%; }
+  .large-up-1 > .column, .large-up-1 > .columns {
+    width: 100%;
+    float: left; }
+    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
+      clear: both; }
+    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
+      float: left; }
+  .large-up-2 > .column, .large-up-2 > .columns {
+    width: 50%;
+    float: left; }
+    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
+      clear: both; }
+    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
+      float: left; }
+  .large-up-3 > .column, .large-up-3 > .columns {
+    width: 33.33333%;
+    float: left; }
+    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
+      clear: both; }
+    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
+      float: left; }
+  .large-up-4 > .column, .large-up-4 > .columns {
+    width: 25%;
+    float: left; }
+    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
+      clear: both; }
+    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
+      float: left; }
+  .large-up-5 > .column, .large-up-5 > .columns {
+    width: 20%;
+    float: left; }
+    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
+      clear: both; }
+    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
+      float: left; }
+  .large-up-6 > .column, .large-up-6 > .columns {
+    width: 16.66667%;
+    float: left; }
+    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
+      clear: both; }
+    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
+      float: left; }
+  .large-up-7 > .column, .large-up-7 > .columns {
+    width: 14.28571%;
+    float: left; }
+    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
+      clear: both; }
+    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
+      float: left; }
+  .large-up-8 > .column, .large-up-8 > .columns {
+    width: 12.5%;
+    float: left; }
+    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
+      clear: none; }
+    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
+      clear: both; }
+    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
+      float: left; }
+  .large-collapse > .column, .large-collapse > .columns {
+    padding-left: 0;
+    padding-right: 0; }
+  .large-collapse .row,
+  .expanded.row .large-collapse.row {
+    margin-left: 0;
+    margin-right: 0; }
+  .large-uncollapse > .column, .large-uncollapse > .columns {
+    padding-left: 0.9375rem;
+    padding-right: 0.9375rem; }
+  .large-centered {
+    float: none;
+    margin-left: auto;
+    margin-right: auto; }
+  .large-uncentered,
+  .large-push-0,
+  .large-pull-0 {
+    position: static;
+    margin-left: 0;
+    margin-right: 0;
+    float: left; } }
+
+div,
+dl,
+dt,
+dd,
+ul,
+ol,
+li,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+pre,
+form,
+p,
+blockquote,
+th,
+td {
+  margin: 0;
+  padding: 0; }
+
+p {
+  font-size: inherit;
+  line-height: 1.6;
+  margin-bottom: 1rem;
+  text-rendering: optimizeLegibility; }
+
+em,
+i {
+  font-style: italic;
+  line-height: inherit; }
+
+strong,
+b {
+  font-weight: bold;
+  line-height: inherit; }
+
+small {
+  font-size: 80%;
+  line-height: inherit; }
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+  font-family: "Open Sans", sans-serif;
+  font-weight: normal;
+  font-style: normal;
+  color: inherit;
+  text-rendering: optimizeLegibility;
+  margin-top: 0;
+  margin-bottom: 0.5rem;
+  line-height: 1.4; }
+  h1 small,
+  h2 small,
+  h3 small,
+  h4 small,
+  h5 small,
+  h6 small {
+    color: #cacaca;
+    line-height: 0; }
+
+h1 {
+  font-size: 1.5rem; }
+
+h2 {
+  font-size: 1.25rem; }
+
+h3 {
+  font-size: 1.1875rem; }
+
+h4 {
+  font-size: 1.125rem; }
+
+h5 {
+  font-size: 1.0625rem; }
+
+h6 {
+  font-size: 1rem; }
+
+@media screen and (min-width: 40em) {
+  h1 {
+    font-size: 2.25rem; }
+  h2 {
+    font-size: 1.5rem; }
+  h3 {
+    font-size: 1.5rem; }
+  h4 {
+    font-size: 1.125rem; }
+  h5 {
+    font-size: 1rem; }
+  h6 {
+    font-size: 1rem; } }
+
+a {
+  color: #f28728;
+  text-decoration: none;
+  line-height: inherit;
+  cursor: pointer; }
+  a:hover, a:focus {
+    color: #797c25; }
+  a img {
+    border: 0; }
+
+hr {
+  max-width: 75rem;
+  height: 0;
+  border-right: 0;
+  border-top: 0;
+  border-bottom: 1px solid #cacaca;
+  border-left: 0;
+  margin: 1.25rem auto;
+  clear: both; }
+
+ul,
+ol,
+dl {
+  line-height: 1.6;
+  margin-bottom: 1rem;
+  list-style-position: outside; }
+
+li {
+  font-size: inherit; }
+
+ul {
+  list-style-type: disc;
+  margin-left: 1.25rem; }
+
+ol {
+  margin-left: 1.25rem; }
+
+ul ul, ol ul, ul ol, ol ol {
+  margin-left: 1.25rem;
+  margin-bottom: 0; }
+
+dl {
+  margin-bottom: 1rem; }
+  dl dt {
+    margin-bottom: 0.3rem;
+    font-weight: bold; }
+
+blockquote {
+  margin: 0 0 1rem;
+  padding: 0.5625rem 1.25rem 0 1.1875rem;
+  border-left: 1px solid #cacaca; }
+  blockquote, blockquote p {
+    line-height: 1.6;
+    color: #8a8a8a; }
+
+cite {
+  display: block;
+  font-size: 0.8125rem;
+  color: #8a8a8a; }
+  cite:before {
+    content: '\2014 \0020'; }
+
+abbr {
+  color: #000000;
+  cursor: help;
+  border-bottom: 1px dotted #000000; }
+
+code {
+  font-family: Consolas, "Liberation Mono", Courier, monospace;
+  font-weight: normal;
+  color: #000000;
+  background-color: #e6e6e6;
+  border: 1px solid #cacaca;
+  padding: 0.125rem 0.3125rem 0.0625rem; }
+
+kbd {
+  padding: 0.125rem 0.25rem 0;
+  margin: 0;
+  background-color: #e6e6e6;
+  color: #000000;
+  font-family: Consolas, "Liberation Mono", Courier, monospace; }
+
+.subheader {
+  margin-top: 0.2rem;
+  margin-bottom: 0.5rem;
+  font-weight: normal;
+  line-height: 1.4;
+  color: #8a8a8a; }
+
+.lead {
+  font-size: 125%;
+  line-height: 1.6; }
+
+.stat {
+  font-size: 2.5rem;
+  line-height: 1; }
+  p + .stat {
+    margin-top: -1rem; }
+
+.no-bullet {
+  margin-left: 0;
+  list-style: none; }
+
+.text-left {
+  text-align: left; }
+
+.text-right {
+  text-align: right; }
+
+.text-center {
+  text-align: center; }
+
+.text-justify {
+  text-align: justify; }
+
+@media screen and (min-width: 40em) {
+  .medium-text-left {
+    text-align: left; }
+  .medium-text-right {
+    text-align: right; }
+  .medium-text-center {
+    text-align: center; }
+  .medium-text-justify {
+    text-align: justify; } }
+
+@media screen and (min-width: 64em) {
+  .large-text-left {
+    text-align: left; }
+  .large-text-right {
+    text-align: right; }
+  .large-text-center {
+    text-align: center; }
+  .large-text-justify {
+    text-align: justify; } }
+
+.show-for-print {
+  display: none !important; }
+
+@media print {
+  * {
+    background: transparent !important;
+    color: black !important;
+    box-shadow: none !important;
+    text-shadow: none !important; }
+  .show-for-print {
+    display: block !important; }
+  .hide-for-print {
+    display: none !important; }
+  table.show-for-print {
+    display: table !important; }
+  thead.show-for-print {
+    display: table-header-group !important; }
+  tbody.show-for-print {
+    display: table-row-group !important; }
+  tr.show-for-print {
+    display: table-row !important; }
+  td.show-for-print {
+    display: table-cell !important; }
+  th.show-for-print {
+    display: table-cell !important; }
+  a,
+  a:visited {
+    text-decoration: underline; }
+  a[href]:after {
+    content: " (" attr(href) ")"; }
+  .ir a:after,
+  a[href^='javascript:']:after,
+  a[href^='#']:after {
+    content: ''; }
+  abbr[title]:after {
+    content: " (" attr(title) ")"; }
+  pre,
+  blockquote {
+    border: 1px solid #8a8a8a;
+    page-break-inside: avoid; }
+  thead {
+    display: table-header-group; }
+  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; } }
+
+.button {
+  display: inline-block;
+  text-align: center;
+  line-height: 1;
+  cursor: pointer;
+  -webkit-appearance: none;
+  transition: background-color 0.25s ease-out, color 0.25s ease-out;
+  vertical-align: middle;
+  border: 1px solid transparent;
+  border-radius: 0;
+  padding: 0.85em 1em;
+  margin: 0 0 1rem 0;
+  font-size: 0.9rem;
+  background-color: #2199e8;
+  color: #FFFFFF; }
+  [data-whatinput='mouse'] .button {
+    outline: 0; }
+  .button:hover, .button:focus {
+    background-color: #1583cc;
+    color: #FFFFFF; }
+  .button.tiny {
+    font-size: 0.6rem; }
+  .button.small {
+    font-size: 0.75rem; }
+  .button.large {
+    font-size: 1.25rem; }
+  .button.expanded {
+    display: block;
+    width: 100%;
+    margin-left: 0;
+    margin-right: 0; }
+  .button.primary {
+    background-color: #2199e8;
+    color: #FFFFFF; }
+    .button.primary:hover, .button.primary:focus {
+      background-color: #147cc0;
+      color: #FFFFFF; }
+  .button.secondary {
+    background-color: #777;
+    color: #FFFFFF; }
+    .button.secondary:hover, .button.secondary:focus {
+      background-color: #5f5f5f;
+      color: #FFFFFF; }
+  .button.success {
+    background-color: #3adb76;
+    color: #FFFFFF; }
+    .button.success:hover, .button.success:focus {
+      background-color: #22bb5b;
+      color: #FFFFFF; }
+  .button.warning {
+    background-color: #ffae00;
+    color: #FFFFFF; }
+    .button.warning:hover, .button.warning:focus {
+      background-color: #cc8b00;
+      color: #FFFFFF; }
+  .button.alert {
+    background-color: #ec5840;
+    color: #FFFFFF; }
+    .button.alert:hover, .button.alert:focus {
+      background-color: #da3116;
+      color: #FFFFFF; }
+  .button.hollow {
+    border: 1px solid #2199e8;
+    color: #2199e8; }
+    .button.hollow, .button.hollow:hover, .button.hollow:focus {
+      background-color: transparent; }
+    .button.hollow:hover, .button.hollow:focus {
+      border-color: #0c4d78;
+      color: #0c4d78; }
+    .button.hollow.primary {
+      border: 1px solid #2199e8;
+      color: #2199e8; }
+      .button.hollow.primary:hover, .button.hollow.primary:focus {
+        border-color: #0c4d78;
+        color: #0c4d78; }
+    .button.hollow.secondary {
+      border: 1px solid #777;
+      color: #777; }
+      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
+        border-color: #3c3c3c;
+        color: #3c3c3c; }
+    .button.hollow.success {
+      border: 1px solid #3adb76;
+      color: #3adb76; }
+      .button.hollow.success:hover, .button.hollow.success:focus {
+        border-color: #157539;
+        color: #157539; }
+    .button.hollow.warning {
+      border: 1px solid #ffae00;
+      color: #ffae00; }
+      .button.hollow.warning:hover, .button.hollow.warning:focus {
+        border-color: #805700;
+        color: #805700; }
+    .button.hollow.alert {
+      border: 1px solid #ec5840;
+      color: #ec5840; }
+      .button.hollow.alert:hover, .button.hollow.alert:focus {
+        border-color: #881f0e;
+        color: #881f0e; }
+  .button.disabled, .button[disabled] {
+    opacity: 0.25;
+    cursor: not-allowed; }
+    .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
+      background-color: #2199e8;
+      color: #FFFFFF; }
+  .button.dropdown::after {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 0.4em;
+    border-color: #FFFFFF transparent transparent;
+    border-top-style: solid;
+    border-bottom-width: 0;
+    position: relative;
+    top: 0.4em;
+    float: right;
+    margin-left: 1em;
+    display: inline-block; }
+  .button.arrow-only::after {
+    margin-left: 0;
+    float: none;
+    top: -0.1em; }
+
+[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
+textarea {
+  display: block;
+  box-sizing: border-box;
+  width: 100%;
+  height: 2.4375rem;
+  padding: 0.5rem;
+  border: 1px solid #cacaca;
+  margin: 0 0 1rem;
+  font-family: inherit;
+  font-size: 1rem;
+  color: #000000;
+  background-color: #FFFFFF;
+  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  border-radius: 0;
+  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
+  -webkit-appearance: none;
+  -moz-appearance: none; }
+  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
+  textarea:focus {
+    border: 1px solid #8a8a8a;
+    background-color: #FFFFFF;
+    outline: none;
+    box-shadow: 0 0 5px #cacaca;
+    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
+
+textarea {
+  max-width: 100%; }
+  textarea[rows] {
+    height: auto; }
+
+input::placeholder,
+textarea::placeholder {
+  color: #cacaca; }
+
+input:disabled, input[readonly],
+textarea:disabled,
+textarea[readonly] {
+  background-color: #e6e6e6;
+  cursor: default; }
+
+[type='submit'],
+[type='button'] {
+  border-radius: 0;
+  -webkit-appearance: none;
+  -moz-appearance: none; }
+
+input[type='search'] {
+  box-sizing: border-box; }
+
+[type='file'],
+[type='checkbox'],
+[type='radio'] {
+  margin: 0 0 1rem; }
+
+[type='checkbox'] + label,
+[type='radio'] + label {
+  display: inline-block;
+  margin-left: 0.5rem;
+  margin-right: 1rem;
+  margin-bottom: 0;
+  vertical-align: baseline; }
+  [type='checkbox'] + label[for],
+  [type='radio'] + label[for] {
+    cursor: pointer; }
+
+label > [type='checkbox'],
+label > [type='radio'] {
+  margin-right: 0.5rem; }
+
+[type='file'] {
+  width: 100%; }
+
+label {
+  display: block;
+  margin: 0;
+  font-size: 0.875rem;
+  font-weight: normal;
+  line-height: 1.8;
+  color: #000000; }
+  label.middle {
+    margin: 0 0 1rem;
+    padding: 0.5625rem 0; }
+
+.help-text {
+  margin-top: -0.5rem;
+  font-size: 0.8125rem;
+  font-style: italic;
+  color: #000000; }
+
+.input-group {
+  display: table;
+  width: 100%;
+  margin-bottom: 1rem; }
+  .input-group > :first-child {
+    border-radius: 0 0 0 0; }
+  .input-group > :last-child > * {
+    border-radius: 0 0 0 0; }
+
+.input-group-label, .input-group-field, .input-group-button {
+  margin: 0;
+  white-space: nowrap;
+  display: table-cell;
+  vertical-align: middle; }
+
+.input-group-label {
+  text-align: center;
+  padding: 0 1rem;
+  background: #e6e6e6;
+  color: #000000;
+  border: 1px solid #cacaca;
+  white-space: nowrap;
+  width: 1%;
+  height: 100%; }
+  .input-group-label:first-child {
+    border-right: 0; }
+  .input-group-label:last-child {
+    border-left: 0; }
+
+.input-group-field {
+  border-radius: 0;
+  height: 2.5rem; }
+
+.input-group-button {
+  padding-top: 0;
+  padding-bottom: 0;
+  text-align: center;
+  height: 100%;
+  width: 1%; }
+  .input-group-button a,
+  .input-group-button input,
+  .input-group-button button {
+    margin: 0; }
+
+.input-group .input-group-button {
+  display: table-cell; }
+
+fieldset {
+  border: 0;
+  padding: 0;
+  margin: 0; }
+
+legend {
+  margin-bottom: 0.5rem;
+  max-width: 100%; }
+
+.fieldset {
+  border: 1px solid #cacaca;
+  padding: 1.25rem;
+  margin: 1.125rem 0; }
+  .fieldset legend {
+    background: url(../assets/background.jpg) no-repeat center center fixed;
+    padding: 0 0.1875rem;
+    margin: 0;
+    margin-left: -0.1875rem; }
+
+select {
+  height: 2.4375rem;
+  padding: 0.5rem;
+  border: 1px solid #cacaca;
+  margin: 0 0 1rem;
+  font-size: 1rem;
+  font-family: inherit;
+  line-height: normal;
+  color: #000000;
+  background-color: #FFFFFF;
+  border-radius: 0;
+  -webkit-appearance: none;
+  -moz-appearance: none;
+  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
+  background-size: 9px 6px;
+  background-position: right -1rem center;
+  background-origin: content-box;
+  background-repeat: no-repeat;
+  padding-right: 1.5rem; }
+  @media screen and (min-width: 0\0) {
+    select {
+      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
+  select:disabled {
+    background-color: #e6e6e6;
+    cursor: default; }
+  select::-ms-expand {
+    display: none; }
+  select[multiple] {
+    height: auto;
+    background-image: none; }
+
+.is-invalid-input:not(:focus) {
+  background-color: rgba(236, 88, 64, 0.1);
+  border-color: #ec5840; }
+
+.is-invalid-label {
+  color: #ec5840; }
+
+.form-error {
+  display: none;
+  margin-top: -0.5rem;
+  margin-bottom: 1rem;
+  font-size: 0.75rem;
+  font-weight: bold;
+  color: #ec5840; }
+  .form-error.is-visible {
+    display: block; }
+
+.accordion {
+  list-style-type: none;
+  background: #FFFFFF;
+  margin-left: 0; }
+
+.accordion-item:first-child > :first-child {
+  border-radius: 0 0 0 0; }
+
+.accordion-item:last-child > :last-child {
+  border-radius: 0 0 0 0; }
+
+.accordion-title {
+  display: block;
+  padding: 1.25rem 1rem;
+  line-height: 1;
+  font-size: 0.75rem;
+  color: #2199e8;
+  position: relative;
+  border: 1px solid #e6e6e6;
+  border-bottom: 0; }
+  :last-child:not(.is-active) > .accordion-title {
+    border-radius: 0 0 0 0;
+    border-bottom: 1px solid #e6e6e6; }
+  .accordion-title:hover, .accordion-title:focus {
+    background-color: #e6e6e6; }
+  .accordion-title::before {
+    content: '+';
+    position: absolute;
+    right: 1rem;
+    top: 50%;
+    margin-top: -0.5rem; }
+  .is-active > .accordion-title::before {
+    content: '–'; }
+
+.accordion-content {
+  padding: 1rem;
+  display: none;
+  border: 1px solid #e6e6e6;
+  border-bottom: 0;
+  background-color: #FFFFFF;
+  color: #2199e8; }
+  :last-child > .accordion-content:last-child {
+    border-bottom: 1px solid #e6e6e6; }
+
+.is-accordion-submenu-parent > a {
+  position: relative; }
+  .is-accordion-submenu-parent > a::after {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 6px;
+    border-color: #2199e8 transparent transparent;
+    border-top-style: solid;
+    border-bottom-width: 0;
+    position: absolute;
+    top: 50%;
+    margin-top: -4px;
+    right: 1rem; }
+
+.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
+  transform-origin: 50% 50%;
+  transform: scaleY(-1); }
+
+.badge {
+  display: inline-block;
+  padding: 0.3em;
+  min-width: 2.1em;
+  font-size: 0.6rem;
+  text-align: center;
+  border-radius: 50%;
+  background: #2199e8;
+  color: #FFFFFF; }
+  .badge.secondary {
+    background: #777;
+    color: #FFFFFF; }
+  .badge.success {
+    background: #3adb76;
+    color: #FFFFFF; }
+  .badge.warning {
+    background: #ffae00;
+    color: #FFFFFF; }
+  .badge.alert {
+    background: #ec5840;
+    color: #FFFFFF; }
+
+.breadcrumbs {
+  list-style: none;
+  margin: 0 0 1rem 0; }
+  .breadcrumbs::before, .breadcrumbs::after {
+    content: ' ';
+    display: table; }
+  .breadcrumbs::after {
+    clear: both; }
+  .breadcrumbs li {
+    float: left;
+    color: #797c25;
+    font-size: 0.875rem;
+    cursor: default; }
+    .breadcrumbs li:not(:last-child)::after {
+      color: #cacaca;
+      content: "/";
+      margin: 0 0.75rem;
+      position: relative;
+      top: 1px;
+      opacity: 1; }
+  .breadcrumbs a {
+    color: #000000; }
+    .breadcrumbs a:hover {
+      text-decoration: underline; }
+  .breadcrumbs .disabled {
+    color: #cacaca;
+    cursor: not-allowed; }
+
+.button-group {
+  margin-bottom: 1rem;
+  font-size: 0; }
+  .button-group::before, .button-group::after {
+    content: ' ';
+    display: table; }
+  .button-group::after {
+    clear: both; }
+  .button-group .button {
+    margin: 0;
+    margin-right: 1px;
+    margin-bottom: 1px;
+    font-size: 0.9rem; }
+    .button-group .button:last-child {
+      margin-right: 0; }
+  .button-group.tiny .button {
+    font-size: 0.6rem; }
+  .button-group.small .button {
+    font-size: 0.75rem; }
+  .button-group.large .button {
+    font-size: 1.25rem; }
+  .button-group.expanded {
+    margin-right: -1px; }
+    .button-group.expanded::before, .button-group.expanded::after {
+      display: none; }
+    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
+      display: inline-block;
+      width: calc(50% - 1px);
+      margin-right: 1px; }
+      .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
+        margin-right: -6px; }
+    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
+      display: inline-block;
+      width: calc(33.33333% - 1px);
+      margin-right: 1px; }
+      .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
+        margin-right: -6px; }
+    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
+      display: inline-block;
+      width: calc(25% - 1px);
+      margin-right: 1px; }
+      .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
+        margin-right: -6px; }
+    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
+      display: inline-block;
+      width: calc(20% - 1px);
+      margin-right: 1px; }
+      .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
+        margin-right: -6px; }
+    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
+      display: inline-block;
+      width: calc(16.66667% - 1px);
+      margin-right: 1px; }
+      .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
+        margin-right: -6px; }
+  .button-group.primary .button {
+    background-color: #2199e8;
+    color: #FFFFFF; }
+    .button-group.primary .button:hover, .button-group.primary .button:focus {
+      background-color: #147cc0;
+      color: #FFFFFF; }
+  .button-group.secondary .button {
+    background-color: #777;
+    color: #FFFFFF; }
+    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
+      background-color: #5f5f5f;
+      color: #FFFFFF; }
+  .button-group.success .button {
+    background-color: #3adb76;
+    color: #FFFFFF; }
+    .button-group.success .button:hover, .button-group.success .button:focus {
+      background-color: #22bb5b;
+      color: #FFFFFF; }
+  .button-group.warning .button {
+    background-color: #ffae00;
+    color: #FFFFFF; }
+    .button-group.warning .button:hover, .button-group.warning .button:focus {
+      background-color: #cc8b00;
+      color: #FFFFFF; }
+  .button-group.alert .button {
+    background-color: #ec5840;
+    color: #FFFFFF; }
+    .button-group.alert .button:hover, .button-group.alert .button:focus {
+      background-color: #da3116;
+      color: #FFFFFF; }
+  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
+    width: 100%; }
+    .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
+      margin-bottom: 0; }
+  @media screen and (min-width: 40em) {
+    .button-group.stacked-for-small .button {
+      width: auto;
+      margin-bottom: 0; } }
+  @media screen and (min-width: 64em) {
+    .button-group.stacked-for-medium .button {
+      width: auto;
+      margin-bottom: 0; } }
+  @media screen and (max-width: 39.9375em) {
+    .button-group.stacked-for-small.expanded {
+      display: block; }
+      .button-group.stacked-for-small.expanded .button {
+        display: block;
+        margin-right: 0; } }
+
+.callout {
+  margin: 0 0 1rem 0;
+  padding: 1rem;
+  border: 1px solid rgba(0, 0, 0, 0.25);
+  border-radius: 0;
+  position: relative;
+  color: #000000;
+  background-color: white; }
+  .callout > :first-child {
+    margin-top: 0; }
+  .callout > :last-child {
+    margin-bottom: 0; }
+  .callout.primary {
+    background-color: #def0fc; }
+  .callout.secondary {
+    background-color: #ebebeb; }
+  .callout.success {
+    background-color: #e1faea; }
+  .callout.warning {
+    background-color: #fff3d9; }
+  .callout.alert {
+    background-color: #fce6e2; }
+  .callout.small {
+    padding-top: 0.5rem;
+    padding-right: 0.5rem;
+    padding-bottom: 0.5rem;
+    padding-left: 0.5rem; }
+  .callout.large {
+    padding-top: 3rem;
+    padding-right: 3rem;
+    padding-bottom: 3rem;
+    padding-left: 3rem; }
+
+.close-button {
+  position: absolute;
+  color: #8a8a8a;
+  right: 1rem;
+  top: 0.5rem;
+  font-size: 2em;
+  line-height: 1;
+  cursor: pointer; }
+  [data-whatinput='mouse'] .close-button {
+    outline: 0; }
+  .close-button:hover, .close-button:focus {
+    color: #000000; }
+
+.menu {
+  margin: 0;
+  list-style-type: none; }
+  .menu > li {
+    display: table-cell;
+    vertical-align: middle; }
+    [data-whatinput='mouse'] .menu > li {
+      outline: 0; }
+  .menu > li > a {
+    display: block;
+    padding: 0.7rem 1rem;
+    line-height: 1; }
+  .menu input,
+  .menu a,
+  .menu button {
+    margin-bottom: 0; }
+  .menu > li > a img,
+  .menu > li > a i,
+  .menu > li > a svg {
+    vertical-align: middle; }
+    .menu > li > a img + span,
+    .menu > li > a i + span,
+    .menu > li > a svg + span {
+      vertical-align: middle; }
+  .menu > li > a img,
+  .menu > li > a i,
+  .menu > li > a svg {
+    margin-right: 0.25rem;
+    display: inline-block; }
+  .menu > li {
+    display: table-cell; }
+  .menu.vertical > li {
+    display: block; }
+  @media screen and (min-width: 40em) {
+    .menu.medium-horizontal > li {
+      display: table-cell; }
+    .menu.medium-vertical > li {
+      display: block; } }
+  @media screen and (min-width: 64em) {
+    .menu.large-horizontal > li {
+      display: table-cell; }
+    .menu.large-vertical > li {
+      display: block; } }
+  .menu.simple li {
+    line-height: 1;
+    display: inline-block;
+    margin-right: 1rem; }
+  .menu.simple a {
+    padding: 0; }
+  .menu.align-right::before, .menu.align-right::after {
+    content: ' ';
+    display: table; }
+  .menu.align-right::after {
+    clear: both; }
+  .menu.align-right > li {
+    float: right; }
+  .menu.expanded {
+    width: 100%;
+    display: table;
+    table-layout: fixed; }
+    .menu.expanded > li:first-child:last-child {
+      width: 100%; }
+  .menu.icon-top > li > a {
+    text-align: center; }
+    .menu.icon-top > li > a img,
+    .menu.icon-top > li > a i,
+    .menu.icon-top > li > a svg {
+      display: block;
+      margin: 0 auto 0.25rem; }
+  .menu.nested {
+    margin-left: 1rem; }
+  .menu .active > a {
+    color: #f28728;
+    background: #797c25; }
+
+.menu-text {
+  font-weight: bold;
+  color: inherit;
+  line-height: 1;
+  padding-top: 0;
+  padding-bottom: 0;
+  padding: 0.7rem 1rem; }
+
+.menu-centered {
+  text-align: center; }
+  .menu-centered > .menu {
+    display: inline-block; }
+
+.no-js [data-responsive-menu] ul {
+  display: none; }
+
+.menu-icon {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle;
+  cursor: pointer;
+  width: 20px;
+  height: 16px; }
+  .menu-icon::after {
+    content: '';
+    position: absolute;
+    display: block;
+    width: 100%;
+    height: 2px;
+    background: #FFFFFF;
+    top: 0;
+    left: 0;
+    box-shadow: 0 7px 0 #FFFFFF, 0 14px 0 #FFFFFF; }
+  .menu-icon:hover::after {
+    background: #f28728;
+    box-shadow: 0 7px 0 #f28728, 0 14px 0 #f28728; }
+
+.menu-icon.dark {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle;
+  cursor: pointer;
+  width: 20px;
+  height: 16px; }
+  .menu-icon.dark::after {
+    content: '';
+    position: absolute;
+    display: block;
+    width: 100%;
+    height: 2px;
+    background: #000000;
+    top: 0;
+    left: 0;
+    box-shadow: 0 7px 0 #000000, 0 14px 0 #000000; }
+  .menu-icon.dark:hover::after {
+    background: #8a8a8a;
+    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
+
+.is-drilldown {
+  position: relative;
+  overflow: hidden; }
+  .is-drilldown li {
+    display: block !important; }
+
+.is-drilldown-submenu {
+  position: absolute;
+  top: 0;
+  left: 100%;
+  z-index: -1;
+  height: 100%;
+  width: 100%;
+  background: #FFFFFF;
+  transition: transform 0.15s linear; }
+  .is-drilldown-submenu.is-active {
+    z-index: 1;
+    display: block;
+    transform: translateX(-100%); }
+  .is-drilldown-submenu.is-closing {
+    transform: translateX(100%); }
+
+.is-drilldown-submenu-parent > a {
+  position: relative; }
+  .is-drilldown-submenu-parent > a::after {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 6px;
+    border-color: transparent transparent transparent #2199e8;
+    border-left-style: solid;
+    border-right-width: 0;
+    position: absolute;
+    top: 50%;
+    margin-top: -6px;
+    right: 1rem; }
+
+.js-drilldown-back > a::before {
+  content: '';
+  display: block;
+  width: 0;
+  height: 0;
+  border: inset 6px;
+  border-color: transparent #2199e8 transparent transparent;
+  border-right-style: solid;
+  border-left-width: 0;
+  border-left-width: 0;
+  display: inline-block;
+  vertical-align: middle;
+  margin-right: 0.75rem; }
+
+.dropdown-pane {
+  background-color: url(../assets/background.jpg) no-repeat center center fixed;
+  border: 1px solid #cacaca;
+  border-radius: 0;
+  display: block;
+  font-size: 1rem;
+  padding: 1rem;
+  position: absolute;
+  visibility: hidden;
+  width: 300px;
+  z-index: 10; }
+  .dropdown-pane.is-open {
+    visibility: visible; }
+
+.dropdown-pane.tiny {
+  width: 100px; }
+
+.dropdown-pane.small {
+  width: 200px; }
+
+.dropdown-pane.large {
+  width: 400px; }
+
+.dropdown.menu > li.opens-left > .is-dropdown-submenu {
+  left: auto;
+  right: 0;
+  top: 100%; }
+
+.dropdown.menu > li.opens-right > .is-dropdown-submenu {
+  right: auto;
+  left: 0;
+  top: 100%; }
+
+[data-whatinput='mouse'] .dropdown.menu a {
+  outline: 0; }
+
+.no-js .dropdown.menu ul {
+  display: none; }
+
+.dropdown.menu.vertical > li .is-dropdown-submenu {
+  top: 0; }
+
+.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
+  left: auto;
+  right: 100%; }
+
+.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
+  right: auto;
+  left: 100%; }
+
+@media screen and (min-width: 40em) {
+  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
+    left: auto;
+    right: 0;
+    top: 100%; }
+  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
+    right: auto;
+    left: 0;
+    top: 100%; }
+  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
+    top: 0; }
+  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
+    left: auto;
+    right: 100%; }
+  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
+    right: auto;
+    left: 100%; } }
+
+@media screen and (min-width: 64em) {
+  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
+    left: auto;
+    right: 0;
+    top: 100%; }
+  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
+    right: auto;
+    left: 0;
+    top: 100%; }
+  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
+    top: 0; }
+  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
+    left: auto;
+    right: 100%; }
+  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
+    right: auto;
+    left: 100%; } }
+
+.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
+  top: 100%;
+  left: auto;
+  right: 0; }
+
+.is-dropdown-menu.vertical {
+  width: 100px; }
+  .is-dropdown-menu.vertical.align-right {
+    float: right; }
+
+.is-dropdown-submenu-parent {
+  position: relative; }
+  .is-dropdown-submenu-parent a::after {
+    position: absolute;
+    top: 50%;
+    right: 5px;
+    margin-top: -2px; }
+  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
+    top: 100%;
+    left: auto; }
+  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
+    left: auto;
+    right: 100%; }
+  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
+    right: auto;
+    left: 100%; }
+
+.is-dropdown-submenu {
+  display: none;
+  position: absolute;
+  top: 0;
+  left: 100%;
+  min-width: 200px;
+  z-index: 1;
+  background: #797c25;
+  border: 1px solid #f28728; }
+  .is-dropdown-submenu .is-dropdown-submenu {
+    margin-top: -1px; }
+  .is-dropdown-submenu > li {
+    width: 100%; }
+  .is-dropdown-submenu.js-dropdown-active {
+    display: block; }
+
+.flex-video {
+  position: relative;
+  height: 0;
+  padding-bottom: 75%;
+  margin-bottom: 1rem;
+  overflow: hidden; }
+  .flex-video iframe,
+  .flex-video object,
+  .flex-video embed,
+  .flex-video video {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%; }
+  .flex-video.widescreen {
+    padding-bottom: 56.25%; }
+  .flex-video.vimeo {
+    padding-top: 0; }
+
+.label {
+  display: inline-block;
+  padding: 0.33333rem 0.5rem;
+  font-size: 0.8rem;
+  line-height: 1;
+  white-space: nowrap;
+  cursor: default;
+  border-radius: 0;
+  background: #2199e8;
+  color: #FFFFFF; }
+  .label.secondary {
+    background: #777;
+    color: #FFFFFF; }
+  .label.success {
+    background: #3adb76;
+    color: #FFFFFF; }
+  .label.warning {
+    background: #ffae00;
+    color: #FFFFFF; }
+  .label.alert {
+    background: #ec5840;
+    color: #FFFFFF; }
+
+.media-object {
+  margin-bottom: 1rem;
+  display: block; }
+  .media-object img {
+    max-width: none; }
+  @media screen and (max-width: 39.9375em) {
+    .media-object.stack-for-small .media-object-section {
+      padding: 0;
+      padding-bottom: 1rem;
+      display: block; }
+      .media-object.stack-for-small .media-object-section img {
+        width: 100%; } }
+
+.media-object-section {
+  display: table-cell;
+  vertical-align: top; }
+  .media-object-section:first-child {
+    padding-right: 1rem; }
+  .media-object-section:last-child:not(:nth-child(2)) {
+    padding-left: 1rem; }
+  .media-object-section > :last-child {
+    margin-bottom: 0; }
+  .media-object-section.middle {
+    vertical-align: middle; }
+  .media-object-section.bottom {
+    vertical-align: bottom; }
+
+html,
+body {
+  height: 100%; }
+
+.off-canvas-wrapper {
+  width: 100%;
+  overflow-x: hidden;
+  position: relative;
+  backface-visibility: hidden;
+  -webkit-overflow-scrolling: auto; }
+
+.off-canvas-wrapper-inner {
+  position: relative;
+  width: 100%;
+  transition: transform 0.5s ease; }
+  .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
+    content: ' ';
+    display: table; }
+  .off-canvas-wrapper-inner::after {
+    clear: both; }
+
+.off-canvas-content,
+.off-canvas-content {
+  min-height: 100%;
+  background: url(../assets/background.jpg) no-repeat center center fixed;
+  transition: transform 0.5s ease;
+  backface-visibility: hidden;
+  z-index: 1;
+  padding-bottom: 0.1px;
+  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
+
+.js-off-canvas-exit {
+  display: none;
+  position: absolute;
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+  background: rgba(255, 255, 255, 0.25);
+  cursor: pointer;
+  transition: background 0.5s ease; }
+
+.off-canvas {
+  position: absolute;
+  background: #797c25;
+  z-index: -1;
+  max-height: 100%;
+  overflow-y: auto;
+  transform: translateX(0); }
+  [data-whatinput='mouse'] .off-canvas {
+    outline: 0; }
+  .off-canvas.position-left {
+    left: -250px;
+    top: 0;
+    width: 250px; }
+    .is-open-left {
+      transform: translateX(250px); }
+  .off-canvas.position-right {
+    right: -250px;
+    top: 0;
+    width: 250px; }
+    .is-open-right {
+      transform: translateX(-250px); }
+
+@media screen and (min-width: 40em) {
+  .position-left.reveal-for-medium {
+    left: 0;
+    z-index: auto;
+    position: fixed; }
+    .position-left.reveal-for-medium ~ .off-canvas-content {
+      margin-left: 250px; }
+  .position-right.reveal-for-medium {
+    right: 0;
+    z-index: auto;
+    position: fixed; }
+    .position-right.reveal-for-medium ~ .off-canvas-content {
+      margin-right: 250px; } }
+
+@media screen and (min-width: 64em) {
+  .position-left.reveal-for-large {
+    left: 0;
+    z-index: auto;
+    position: fixed; }
+    .position-left.reveal-for-large ~ .off-canvas-content {
+      margin-left: 250px; }
+  .position-right.reveal-for-large {
+    right: 0;
+    z-index: auto;
+    position: fixed; }
+    .position-right.reveal-for-large ~ .off-canvas-content {
+      margin-right: 250px; } }
+
+.orbit {
+  position: relative; }
+
+.orbit-container {
+  position: relative;
+  margin: 0;
+  overflow: hidden;
+  list-style: none; }
+
+.orbit-slide {
+  width: 100%;
+  max-height: 100%; }
+  .orbit-slide.no-motionui.is-active {
+    top: 0;
+    left: 0; }
+
+.orbit-figure {
+  margin: 0; }
+
+.orbit-image {
+  margin: 0;
+  width: 100%;
+  max-width: 100%; }
+
+.orbit-caption {
+  position: absolute;
+  bottom: 0;
+  width: 100%;
+  padding: 1rem;
+  margin-bottom: 0;
+  color: #FFFFFF;
+  background-color: rgba(0, 0, 0, 0.5); }
+
+.orbit-previous, .orbit-next {
+  position: absolute;
+  top: 50%;
+  transform: translateY(-50%);
+  z-index: 10;
+  padding: 1rem;
+  color: #FFFFFF; }
+  [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
+    outline: 0; }
+  .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
+    background-color: rgba(0, 0, 0, 0.5); }
+
+.orbit-previous {
+  left: 0; }
+
+.orbit-next {
+  left: auto;
+  right: 0; }
+
+.orbit-bullets {
+  position: relative;
+  margin-top: 0.8rem;
+  margin-bottom: 0.8rem;
+  text-align: center; }
+  [data-whatinput='mouse'] .orbit-bullets {
+    outline: 0; }
+  .orbit-bullets button {
+    width: 1.2rem;
+    height: 1.2rem;
+    margin: 0.1rem;
+    background-color: #cacaca;
+    border-radius: 50%; }
+    .orbit-bullets button:hover {
+      background-color: #8a8a8a; }
+    .orbit-bullets button.is-active {
+      background-color: #8a8a8a; }
+
+.pagination {
+  margin-left: 0;
+  margin-bottom: 1rem; }
+  .pagination::before, .pagination::after {
+    content: ' ';
+    display: table; }
+  .pagination::after {
+    clear: both; }
+  .pagination li {
+    font-size: 0.875rem;
+    margin-right: 0.0625rem;
+    border-radius: 0;
+    display: none; }
+    .pagination li:last-child, .pagination li:first-child {
+      display: inline-block; }
+    @media screen and (min-width: 40em) {
+      .pagination li {
+        display: inline-block; } }
+  .pagination a,
+  .pagination button {
+    color: #000000;
+    display: block;
+    padding: 0.1875rem 0.625rem;
+    border-radius: 0; }
+    .pagination a:hover,
+    .pagination button:hover {
+      background: #e6e6e6; }
+  .pagination .current {
+    padding: 0.1875rem 0.625rem;
+    background: #2199e8;
+    color: #FFFFFF;
+    cursor: default; }
+  .pagination .disabled {
+    padding: 0.1875rem 0.625rem;
+    color: #cacaca;
+    cursor: not-allowed; }
+    .pagination .disabled:hover {
+      background: transparent; }
+  .pagination .ellipsis::after {
+    content: '\2026';
+    padding: 0.1875rem 0.625rem;
+    color: #000000; }
+
+.pagination-previous a::before,
+.pagination-previous.disabled::before {
+  content: '\00ab';
+  display: inline-block;
+  margin-right: 0.5rem; }
+
+.pagination-next a::after,
+.pagination-next.disabled::after {
+  content: '\00bb';
+  display: inline-block;
+  margin-left: 0.5rem; }
+
+.progress {
+  background-color: #cacaca;
+  height: 1rem;
+  margin-bottom: 1rem;
+  border-radius: 0; }
+  .progress.primary .progress-meter {
+    background-color: #2199e8; }
+  .progress.secondary .progress-meter {
+    background-color: #777; }
+  .progress.success .progress-meter {
+    background-color: #3adb76; }
+  .progress.warning .progress-meter {
+    background-color: #ffae00; }
+  .progress.alert .progress-meter {
+    background-color: #ec5840; }
+
+.progress-meter {
+  position: relative;
+  display: block;
+  width: 0%;
+  height: 100%;
+  background-color: #2199e8; }
+
+.progress-meter-text {
+  position: absolute;
+  top: 50%;
+  left: 50%;
+  transform: translate(-50%, -50%);
+  position: absolute;
+  margin: 0;
+  font-size: 0.75rem;
+  font-weight: bold;
+  color: #FFFFFF;
+  white-space: nowrap; }
+
+.slider {
+  position: relative;
+  height: 0.5rem;
+  margin-top: 1.25rem;
+  margin-bottom: 2.25rem;
+  background-color: #e6e6e6;
+  cursor: pointer;
+  user-select: none;
+  touch-action: none; }
+
+.slider-fill {
+  position: absolute;
+  top: 0;
+  left: 0;
+  display: inline-block;
+  max-width: 100%;
+  height: 0.5rem;
+  background-color: #cacaca;
+  transition: all 0.2s ease-in-out; }
+  .slider-fill.is-dragging {
+    transition: all 0s linear; }
+
+.slider-handle {
+  position: absolute;
+  top: 50%;
+  transform: translateY(-50%);
+  position: absolute;
+  left: 0;
+  z-index: 1;
+  display: inline-block;
+  width: 1.4rem;
+  height: 1.4rem;
+  background-color: #2199e8;
+  transition: all 0.2s ease-in-out;
+  touch-action: manipulation;
+  border-radius: 0; }
+  [data-whatinput='mouse'] .slider-handle {
+    outline: 0; }
+  .slider-handle:hover {
+    background-color: #1583cc; }
+  .slider-handle.is-dragging {
+    transition: all 0s linear; }
+
+.slider.disabled,
+.slider[disabled] {
+  opacity: 0.25;
+  cursor: not-allowed; }
+
+.slider.vertical {
+  display: inline-block;
+  width: 0.5rem;
+  height: 12.5rem;
+  margin: 0 1.25rem;
+  transform: scale(1, -1); }
+  .slider.vertical .slider-fill {
+    top: 0;
+    width: 0.5rem;
+    max-height: 100%; }
+  .slider.vertical .slider-handle {
+    position: absolute;
+    top: 0;
+    left: 50%;
+    width: 1.4rem;
+    height: 1.4rem;
+    transform: translateX(-50%); }
+
+.sticky-container {
+  position: relative; }
+
+.sticky {
+  position: absolute;
+  z-index: 0;
+  transform: translate3d(0, 0, 0); }
+
+.sticky.is-stuck {
+  position: fixed;
+  z-index: 5; }
+  .sticky.is-stuck.is-at-top {
+    top: 0; }
+  .sticky.is-stuck.is-at-bottom {
+    bottom: 0; }
+
+.sticky.is-anchored {
+  position: absolute;
+  left: auto;
+  right: auto; }
+  .sticky.is-anchored.is-at-bottom {
+    bottom: 0; }
+
+body.is-reveal-open {
+  overflow: hidden; }
+
+html.is-reveal-open,
+html.is-reveal-open body {
+  height: 100%;
+  overflow: hidden;
+  user-select: none; }
+
+.reveal-overlay {
+  display: none;
+  position: fixed;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  right: 0;
+  z-index: 1005;
+  background-color: rgba(0, 0, 0, 0.45);
+  overflow-y: scroll; }
+
+.reveal {
+  display: none;
+  z-index: 1006;
+  padding: 1rem;
+  border: 1px solid #cacaca;
+  background-color: #FFFFFF;
+  border-radius: 0;
+  position: relative;
+  top: 100px;
+  margin-left: auto;
+  margin-right: auto;
+  overflow-y: auto; }
+  [data-whatinput='mouse'] .reveal {
+    outline: 0; }
+  @media screen and (min-width: 40em) {
+    .reveal {
+      min-height: 0; } }
+  .reveal .column, .reveal .columns,
+  .reveal .columns {
+    min-width: 0; }
+  .reveal > :last-child {
+    margin-bottom: 0; }
+  @media screen and (min-width: 40em) {
+    .reveal {
+      width: 600px;
+      max-width: 75rem; } }
+  @media screen and (min-width: 40em) {
+    .reveal .reveal {
+      left: auto;
+      right: auto;
+      margin: 0 auto; } }
+  .reveal.collapse {
+    padding: 0; }
+  @media screen and (min-width: 40em) {
+    .reveal.tiny {
+      width: 30%;
+      max-width: 75rem; } }
+  @media screen and (min-width: 40em) {
+    .reveal.small {
+      width: 50%;
+      max-width: 75rem; } }
+  @media screen and (min-width: 40em) {
+    .reveal.large {
+      width: 90%;
+      max-width: 75rem; } }
+  .reveal.full {
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    height: 100vh;
+    min-height: 100vh;
+    max-width: none;
+    margin-left: 0;
+    border: 0;
+    border-radius: 0; }
+  @media screen and (max-width: 39.9375em) {
+    .reveal {
+      top: 0;
+      left: 0;
+      width: 100%;
+      height: 100%;
+      height: 100vh;
+      min-height: 100vh;
+      max-width: none;
+      margin-left: 0;
+      border: 0;
+      border-radius: 0; } }
+  .reveal.without-overlay {
+    position: fixed; }
+
+.switch {
+  margin-bottom: 1rem;
+  outline: 0;
+  position: relative;
+  user-select: none;
+  color: #FFFFFF;
+  font-weight: bold;
+  font-size: 0.875rem; }
+
+.switch-input {
+  opacity: 0;
+  position: absolute; }
+
+.switch-paddle {
+  background: #cacaca;
+  cursor: pointer;
+  display: block;
+  position: relative;
+  width: 4rem;
+  height: 2rem;
+  transition: all 0.25s ease-out;
+  border-radius: 0;
+  color: inherit;
+  font-weight: inherit; }
+  input + .switch-paddle {
+    margin: 0; }
+  .switch-paddle::after {
+    background: #FFFFFF;
+    content: '';
+    display: block;
+    position: absolute;
+    height: 1.5rem;
+    left: 0.25rem;
+    top: 0.25rem;
+    width: 1.5rem;
+    transition: all 0.25s ease-out;
+    transform: translate3d(0, 0, 0);
+    border-radius: 0; }
+  input:checked ~ .switch-paddle {
+    background: #2199e8; }
+    input:checked ~ .switch-paddle::after {
+      left: 2.25rem; }
+  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
+    outline: 0; }
+
+.switch-active, .switch-inactive {
+  position: absolute;
+  top: 50%;
+  transform: translateY(-50%); }
+
+.switch-active {
+  left: 8%;
+  display: none; }
+  input:checked + label > .switch-active {
+    display: block; }
+
+.switch-inactive {
+  right: 15%; }
+  input:checked + label > .switch-inactive {
+    display: none; }
+
+.switch.tiny .switch-paddle {
+  width: 3rem;
+  height: 1.5rem;
+  font-size: 0.625rem; }
+
+.switch.tiny .switch-paddle::after {
+  width: 1rem;
+  height: 1rem; }
+
+.switch.tiny input:checked ~ .switch-paddle::after {
+  left: 1.75rem; }
+
+.switch.small .switch-paddle {
+  width: 3.5rem;
+  height: 1.75rem;
+  font-size: 0.75rem; }
+
+.switch.small .switch-paddle::after {
+  width: 1.25rem;
+  height: 1.25rem; }
+
+.switch.small input:checked ~ .switch-paddle::after {
+  left: 2rem; }
+
+.switch.large .switch-paddle {
+  width: 5rem;
+  height: 2.5rem;
+  font-size: 1rem; }
+
+.switch.large .switch-paddle::after {
+  width: 2rem;
+  height: 2rem; }
+
+.switch.large input:checked ~ .switch-paddle::after {
+  left: 2.75rem; }
+
+table {
+  width: 100%;
+  margin-bottom: 1rem;
+  border-radius: 0; }
+  table thead,
+  table tbody,
+  table tfoot {
+    border: 1px solid #f2f2f2;
+    background-color: #FFFFFF; }
+  table caption {
+    font-weight: bold;
+    padding: 0.5rem 0.625rem 0.625rem; }
+  table thead,
+  table tfoot {
+    background: #f9f9f9;
+    color: #000000; }
+    table thead tr,
+    table tfoot tr {
+      background: transparent; }
+    table thead th,
+    table thead td,
+    table tfoot th,
+    table tfoot td {
+      padding: 0.5rem 0.625rem 0.625rem;
+      font-weight: bold;
+      text-align: left; }
+  table tbody tr:nth-child(even) {
+    background-color: #f2f2f2; }
+  table tbody th,
+  table tbody td {
+    padding: 0.5rem 0.625rem 0.625rem; }
+
+@media screen and (max-width: 63.9375em) {
+  table.stack thead {
+    display: none; }
+  table.stack tfoot {
+    display: none; }
+  table.stack tr,
+  table.stack th,
+  table.stack td {
+    display: block; }
+  table.stack td {
+    border-top: 0; } }
+
+table.scroll {
+  display: block;
+  width: 100%;
+  overflow-x: auto; }
+
+table.hover tr:hover {
+  background-color: #fafafa; }
+
+table.hover tr:nth-of-type(even):hover {
+  background-color: #ededed; }
+
+.table-scroll {
+  overflow-x: auto; }
+  .table-scroll table {
+    width: auto; }
+
+.tabs {
+  margin: 0;
+  list-style-type: none;
+  background: #FFFFFF;
+  border: 1px solid #e6e6e6; }
+  .tabs::before, .tabs::after {
+    content: ' ';
+    display: table; }
+  .tabs::after {
+    clear: both; }
+
+.tabs.vertical > li {
+  width: auto;
+  float: none;
+  display: block; }
+
+.tabs.simple > li > a {
+  padding: 0; }
+  .tabs.simple > li > a:hover {
+    background: transparent; }
+
+.tabs.primary {
+  background: #2199e8; }
+  .tabs.primary > li > a {
+    color: #FFFFFF; }
+    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
+      background: #1893e4; }
+
+.tabs-title {
+  float: left; }
+  .tabs-title > a {
+    display: block;
+    padding: 1.25rem 1.5rem;
+    line-height: 1;
+    font-size: 0.75rem; }
+    .tabs-title > a:hover {
+      background: #FFFFFF; }
+    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
+      background: #e6e6e6; }
+
+.tabs-content {
+  background: #FFFFFF;
+  transition: all 0.5s ease;
+  border: 1px solid #e6e6e6;
+  border-top: 0; }
+
+.tabs-content.vertical {
+  border: 1px solid #e6e6e6;
+  border-left: 0; }
+
+.tabs-panel {
+  display: none;
+  padding: 1rem; }
+  .tabs-panel.is-active {
+    display: block; }
+
+.thumbnail {
+  border: solid 4px #FFFFFF;
+  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
+  display: inline-block;
+  line-height: 0;
+  max-width: 100%;
+  transition: box-shadow 200ms ease-out;
+  border-radius: 0;
+  margin-bottom: 1rem; }
+  .thumbnail:hover, .thumbnail:focus {
+    box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }
+
+.title-bar {
+  background: #797c25;
+  color: #FFFFFF;
+  padding: 0.5rem; }
+  .title-bar::before, .title-bar::after {
+    content: ' ';
+    display: table; }
+  .title-bar::after {
+    clear: both; }
+  .title-bar .menu-icon {
+    margin-left: 0.25rem;
+    margin-right: 0.25rem; }
+
+.title-bar-left {
+  float: left; }
+
+.title-bar-right {
+  float: right;
+  text-align: right; }
+
+.title-bar-title {
+  font-weight: bold;
+  vertical-align: middle;
+  display: inline-block; }
+
+.menu-icon.dark {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle;
+  cursor: pointer;
+  width: 20px;
+  height: 16px; }
+  .menu-icon.dark::after {
+    content: '';
+    position: absolute;
+    display: block;
+    width: 100%;
+    height: 2px;
+    background: #000000;
+    top: 0;
+    left: 0;
+    box-shadow: 0 7px 0 #000000, 0 14px 0 #000000; }
+  .menu-icon.dark:hover::after {
+    background: #8a8a8a;
+    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
+
+.has-tip {
+  border-bottom: dotted 1px #8a8a8a;
+  font-weight: bold;
+  position: relative;
+  display: inline-block;
+  cursor: help; }
+
+.tooltip {
+  background-color: #000000;
+  color: #FFFFFF;
+  font-size: 80%;
+  padding: 0.75rem;
+  position: absolute;
+  z-index: 10;
+  top: calc(100% + 0.6495rem);
+  max-width: 10rem !important;
+  border-radius: 0; }
+  .tooltip::before {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 0.75rem;
+    border-color: transparent transparent #000000;
+    border-bottom-style: solid;
+    border-top-width: 0;
+    bottom: 100%;
+    position: absolute;
+    left: 50%;
+    transform: translateX(-50%); }
+  .tooltip.top::before {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 0.75rem;
+    border-color: #000000 transparent transparent;
+    border-top-style: solid;
+    border-bottom-width: 0;
+    top: 100%;
+    bottom: auto; }
+  .tooltip.left::before {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 0.75rem;
+    border-color: transparent transparent transparent #000000;
+    border-left-style: solid;
+    border-right-width: 0;
+    bottom: auto;
+    left: 100%;
+    top: 50%;
+    transform: translateY(-50%); }
+  .tooltip.right::before {
+    content: '';
+    display: block;
+    width: 0;
+    height: 0;
+    border: inset 0.75rem;
+    border-color: transparent #000000 transparent transparent;
+    border-right-style: solid;
+    border-left-width: 0;
+    bottom: auto;
+    left: auto;
+    right: 100%;
+    top: 50%;
+    transform: translateY(-50%); }
+
+.top-bar {
+  padding: 0.5rem; }
+  .top-bar::before, .top-bar::after {
+    content: ' ';
+    display: table; }
+  .top-bar::after {
+    clear: both; }
+  .top-bar,
+  .top-bar ul {
+    background-color: #797c25; }
+  .top-bar input {
+    max-width: 200px;
+    margin-right: 1rem; }
+  .top-bar .input-group-field {
+    width: 100%;
+    margin-right: 0; }
+  .top-bar input.button {
+    width: auto; }
+  .top-bar .top-bar-left,
+  .top-bar .top-bar-right {
+    width: 100%; }
+  @media screen and (min-width: 40em) {
+    .top-bar .top-bar-left,
+    .top-bar .top-bar-right {
+      width: auto; } }
+  @media screen and (max-width: 63.9375em) {
+    .top-bar.stacked-for-medium .top-bar-left,
+    .top-bar.stacked-for-medium .top-bar-right {
+      width: 100%; } }
+  @media screen and (max-width: 74.9375em) {
+    .top-bar.stacked-for-large .top-bar-left,
+    .top-bar.stacked-for-large .top-bar-right {
+      width: 100%; } }
+
+.top-bar-title {
+  float: left;
+  margin-right: 1rem; }
+
+.top-bar-left {
+  float: left; }
+
+.top-bar-right {
+  float: right; }
+
+.hide {
+  display: none !important; }
+
+.invisible {
+  visibility: hidden; }
+
+@media screen and (max-width: 39.9375em) {
+  .hide-for-small-only {
+    display: none !important; } }
+
+@media screen and (max-width: 0em), screen and (min-width: 40em) {
+  .show-for-small-only {
+    display: none !important; } }
+
+@media screen and (min-width: 40em) {
+  .hide-for-medium {
+    display: none !important; } }
+
+@media screen and (max-width: 39.9375em) {
+  .show-for-medium {
+    display: none !important; } }
+
+@media screen and (min-width: 40em) and (max-width: 63.9375em) {
+  .hide-for-medium-only {
+    display: none !important; } }
+
+@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
+  .show-for-medium-only {
+    display: none !important; } }
+
+@media screen and (min-width: 64em) {
+  .hide-for-large {
+    display: none !important; } }
+
+@media screen and (max-width: 63.9375em) {
+  .show-for-large {
+    display: none !important; } }
+
+@media screen and (min-width: 64em) and (max-width: 74.9375em) {
+  .hide-for-large-only {
+    display: none !important; } }
+
+@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
+  .show-for-large-only {
+    display: none !important; } }
+
+.show-for-sr,
+.show-on-focus {
+  position: absolute !important;
+  width: 1px;
+  height: 1px;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0); }
+
+.show-on-focus:active, .show-on-focus:focus {
+  position: static !important;
+  height: auto;
+  width: auto;
+  overflow: visible;
+  clip: auto; }
+
+.show-for-landscape,
+.hide-for-portrait {
+  display: block !important; }
+  @media screen and (orientation: landscape) {
+    .show-for-landscape,
+    .hide-for-portrait {
+      display: block !important; } }
+  @media screen and (orientation: portrait) {
+    .show-for-landscape,
+    .hide-for-portrait {
+      display: none !important; } }
+
+.hide-for-landscape,
+.show-for-portrait {
+  display: none !important; }
+  @media screen and (orientation: landscape) {
+    .hide-for-landscape,
+    .show-for-portrait {
+      display: none !important; } }
+  @media screen and (orientation: portrait) {
+    .hide-for-landscape,
+    .show-for-portrait {
+      display: block !important; } }
+
+.float-left {
+  float: left !important; }
+
+.float-right {
+  float: right !important; }
+
+.float-center {
+  display: block;
+  margin-left: auto;
+  margin-right: auto; }
+
+.clearfix::before, .clearfix::after {
+  content: ' ';
+  display: table; }
+
+.clearfix::after {
+  clear: both; }
+
+.slide-in-down.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateY(-100%);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-in-down.mui-enter.mui-enter-active {
+  transform: translateY(0); }
+
+.slide-in-left.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateX(-100%);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-in-left.mui-enter.mui-enter-active {
+  transform: translateX(0); }
+
+.slide-in-up.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateY(100%);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-in-up.mui-enter.mui-enter-active {
+  transform: translateY(0); }
+
+.slide-in-right.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateX(100%);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-in-right.mui-enter.mui-enter-active {
+  transform: translateX(0); }
+
+.slide-out-down.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateY(0);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-out-down.mui-leave.mui-leave-active {
+  transform: translateY(100%); }
+
+.slide-out-right.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateX(0);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-out-right.mui-leave.mui-leave-active {
+  transform: translateX(100%); }
+
+.slide-out-up.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateY(0);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-out-up.mui-leave.mui-leave-active {
+  transform: translateY(-100%); }
+
+.slide-out-left.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: translateX(0);
+  transition-property: transform, opacity;
+  backface-visibility: hidden; }
+
+.slide-out-left.mui-leave.mui-leave-active {
+  transform: translateX(-100%); }
+
+.fade-in.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  opacity: 0;
+  transition-property: opacity; }
+
+.fade-in.mui-enter.mui-enter-active {
+  opacity: 1; }
+
+.fade-out.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  opacity: 1;
+  transition-property: opacity; }
+
+.fade-out.mui-leave.mui-leave-active {
+  opacity: 0; }
+
+.hinge-in-from-top.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotateX(-90deg);
+  transform-origin: top;
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.hinge-in-from-top.mui-enter.mui-enter-active {
+  transform: perspective(2000px) rotate(0deg);
+  opacity: 1; }
+
+.hinge-in-from-right.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotateY(-90deg);
+  transform-origin: right;
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.hinge-in-from-right.mui-enter.mui-enter-active {
+  transform: perspective(2000px) rotate(0deg);
+  opacity: 1; }
+
+.hinge-in-from-bottom.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotateX(90deg);
+  transform-origin: bottom;
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.hinge-in-from-bottom.mui-enter.mui-enter-active {
+  transform: perspective(2000px) rotate(0deg);
+  opacity: 1; }
+
+.hinge-in-from-left.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotateY(90deg);
+  transform-origin: left;
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.hinge-in-from-left.mui-enter.mui-enter-active {
+  transform: perspective(2000px) rotate(0deg);
+  opacity: 1; }
+
+.hinge-in-from-middle-x.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotateX(-90deg);
+  transform-origin: center;
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.hinge-in-from-middle-x.mui-enter.mui-enter-active {
+  transform: perspective(2000px) rotate(0deg);
+  opacity: 1; }
+
+.hinge-in-from-middle-y.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotateY(-90deg);
+  transform-origin: center;
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.hinge-in-from-middle-y.mui-enter.mui-enter-active {
+  transform: perspective(2000px) rotate(0deg);
+  opacity: 1; }
+
+.hinge-out-from-top.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotate(0deg);
+  transform-origin: top;
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.hinge-out-from-top.mui-leave.mui-leave-active {
+  transform: perspective(2000px) rotateX(-90deg);
+  opacity: 0; }
+
+.hinge-out-from-right.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotate(0deg);
+  transform-origin: right;
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.hinge-out-from-right.mui-leave.mui-leave-active {
+  transform: perspective(2000px) rotateY(-90deg);
+  opacity: 0; }
+
+.hinge-out-from-bottom.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotate(0deg);
+  transform-origin: bottom;
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.hinge-out-from-bottom.mui-leave.mui-leave-active {
+  transform: perspective(2000px) rotateX(90deg);
+  opacity: 0; }
+
+.hinge-out-from-left.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotate(0deg);
+  transform-origin: left;
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.hinge-out-from-left.mui-leave.mui-leave-active {
+  transform: perspective(2000px) rotateY(90deg);
+  opacity: 0; }
+
+.hinge-out-from-middle-x.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotate(0deg);
+  transform-origin: center;
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.hinge-out-from-middle-x.mui-leave.mui-leave-active {
+  transform: perspective(2000px) rotateX(-90deg);
+  opacity: 0; }
+
+.hinge-out-from-middle-y.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: perspective(2000px) rotate(0deg);
+  transform-origin: center;
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.hinge-out-from-middle-y.mui-leave.mui-leave-active {
+  transform: perspective(2000px) rotateY(-90deg);
+  opacity: 0; }
+
+.scale-in-up.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: scale(0.5);
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.scale-in-up.mui-enter.mui-enter-active {
+  transform: scale(1);
+  opacity: 1; }
+
+.scale-in-down.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: scale(1.5);
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.scale-in-down.mui-enter.mui-enter-active {
+  transform: scale(1);
+  opacity: 1; }
+
+.scale-out-up.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: scale(1);
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.scale-out-up.mui-leave.mui-leave-active {
+  transform: scale(1.5);
+  opacity: 0; }
+
+.scale-out-down.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: scale(1);
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.scale-out-down.mui-leave.mui-leave-active {
+  transform: scale(0.5);
+  opacity: 0; }
+
+.spin-in.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: rotate(-0.75turn);
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.spin-in.mui-enter.mui-enter-active {
+  transform: rotate(0);
+  opacity: 1; }
+
+.spin-out.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: rotate(0);
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.spin-out.mui-leave.mui-leave-active {
+  transform: rotate(0.75turn);
+  opacity: 0; }
+
+.spin-in-ccw.mui-enter {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: rotate(0.75turn);
+  transition-property: transform, opacity;
+  opacity: 0; }
+
+.spin-in-ccw.mui-enter.mui-enter-active {
+  transform: rotate(0);
+  opacity: 1; }
+
+.spin-out-ccw.mui-leave {
+  transition-duration: 500ms;
+  transition-timing-function: linear;
+  transform: rotate(0);
+  transition-property: transform, opacity;
+  opacity: 1; }
+
+.spin-out-ccw.mui-leave.mui-leave-active {
+  transform: rotate(-0.75turn);
+  opacity: 0; }
+
+.slow {
+  transition-duration: 750ms !important; }
+
+.fast {
+  transition-duration: 250ms !important; }
+
+.linear {
+  transition-timing-function: linear !important; }
+
+.ease {
+  transition-timing-function: ease !important; }
+
+.ease-in {
+  transition-timing-function: ease-in !important; }
+
+.ease-out {
+  transition-timing-function: ease-out !important; }
+
+.ease-in-out {
+  transition-timing-function: ease-in-out !important; }
+
+.bounce-in {
+  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }
+
+.bounce-out {
+  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }
+
+.bounce-in-out {
+  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }
+
+.short-delay {
+  transition-delay: 300ms !important; }
+
+.long-delay {
+  transition-delay: 700ms !important; }
+
+.shake {
+  animation-name: shake-7; }
+
+@keyframes shake-7 {
+  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
+    transform: translateX(7%); }
+  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
+    transform: translateX(-7%); } }
+
+.spin-cw {
+  animation-name: spin-cw-1turn; }
+
+@keyframes spin-cw-1turn {
+  0% {
+    transform: rotate(-1turn); }
+  100% {
+    transform: rotate(0); } }
+
+.spin-ccw {
+  animation-name: spin-cw-1turn; }
+
+@keyframes spin-cw-1turn {
+  0% {
+    transform: rotate(0); }
+  100% {
+    transform: rotate(1turn); } }
+
+.wiggle {
+  animation-name: wiggle-7deg; }
+
+@keyframes wiggle-7deg {
+  40%, 50%, 60% {
+    transform: rotate(7deg); }
+  35%, 45%, 55%, 65% {
+    transform: rotate(-7deg); }
+  0%, 30%, 70%, 100% {
+    transform: rotate(0); } }
+
+.shake,
+.spin-cw,
+.spin-ccw,
+.wiggle {
+  animation-duration: 500ms; }
+
+.infinite {
+  animation-iteration-count: infinite; }
+
+.slow {
+  animation-duration: 750ms !important; }
+
+.fast {
+  animation-duration: 250ms !important; }
+
+.linear {
+  animation-timing-function: linear !important; }
+
+.ease {
+  animation-timing-function: ease !important; }
+
+.ease-in {
+  animation-timing-function: ease-in !important; }
+
+.ease-out {
+  animation-timing-function: ease-out !important; }
+
+.ease-in-out {
+  animation-timing-function: ease-in-out !important; }
+
+.bounce-in {
+  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }
+
+.bounce-out {
+  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }
+
+.bounce-in-out {
+  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }
+
+.short-delay {
+  animation-delay: 300ms !important; }
+
+.long-delay {
+  animation-delay: 700ms !important; }
+
+img.aligncenter {
+  display: block;
+  clear: both;
+  float: none;
+  padding: 0;
+  margin-left: auto;
+  margin-right: auto; }
+
+img.alignright {
+  padding: 0;
+  margin: 0 0 6px 11px;
+  display: inline; }
+
+blockquote.alignleft,
+img.alignleft,
+.wp-caption.alignleft {
+  margin: 0.4375rem 2.1875rem 0.4375rem 0; }
+
+blockquote.alignright,
+img.alignright,
+.wp-caption.alignright {
+  margin: 0.4375rem 0 0.4375rem 2.1875rem; }
+
+img.alignleft {
+  padding: 0;
+  display: inline; }
+
+img.alignleft, img.alignright, img.aligncenter, img.alignnone, div.wp-caption img {
+  border: 4px solid #FFFFFF;
+  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3);
+  -webkit-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3);
+  -moz-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3);
+  -ms-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3); }
+
+.alignright {
+  float: right; }
+
+.alignnone {
+  float: none; }
+
+.alignleft {
+  float: left; }
+
+.wp-caption {
+  background: #555555;
+  width: auto; }
+
+.wp-caption-text {
+  font-family: Open Sans, sans-serif;
+  font-size: 9px;
+  color: #FFFFFF;
+  font-style: italic;
+  margin: 0;
+  padding: 0 5px; }
+
+.gallery-one-title {
+  height: 45px;
+  font-size: 0.8em;
+  text-align: center;
+  font-family: sans-serif;
+  padding: 5px; }
+
+.gallery-holder {
+  margin: 10px 0 20px 0; }
+
+@media screen and (max-width: 39.9375em) {
+  img.alignright, img.alignleft, img.aligncenter {
+    width: 70% !important;
+    display: block;
+    margin-left: auto;
+    margin-right: auto;
+    float: none;
+    text-align: center; }
+  div.wp-caption.alignright, div.wp-caption.alignleft {
+    width: 44% !important;
+    margin-left: auto;
+    margin-right: auto;
+    float: none;
+    text-align: center; }
+  div.wp-caption.aligncenter {
+    width: 85% !important;
+    margin-left: auto;
+    margin-right: auto;
+    float: none;
+    text-align: center; }
+  div.wp-caption.alignnone {
+    width: 85% !important;
+    float: none; }
+  div.wp-caption.alignright, div.wp-caption.alignleft, div.wp-caption.aligncenter {
+    width: 100%; } }
+
+@media screen and (max-width: 63.9375em) {
+  img.aligncenter, img.alignnone {
+    width: 70% !important;
+    display: block;
+    margin-left: auto;
+    margin-right: auto;
+    float: none;
+    text-align: center; }
+  div.wp-caption.aligncenter {
+    width: 74% !important;
+    margin-left: auto;
+    margin-right: auto;
+    float: none;
+    text-align: center; }
+  div.wp-caption.aligncenter {
+    width: 100%; }
+  div.wp-caption.alignnone {
+    width: 73% !important;
+    float: none; } }
+
+.wp-caption {
+  max-width: 100%;
+  margin: 10px 20px;
+  padding: 5px;
+  text-align: center; }
+  .wp-caption img {
+    width: 100%; }
+  .wp-caption p.wp-caption-text {
+    padding: 5px;
+    width: 100%;
+    margin: 0;
+    color: black;
+    font-size: 12px; }
+  .wp-caption.aligncenter {
+    margin: 10px auto; }
+
+@media screen and (max-width: 39.9375em) {
+  #blog-posts-over {
+    padding: 0 !important;
+    margin: 0 !important; } }
+
+.blog-posts-container {
+  margin: 30px 0 30px; }
+  .blog-posts-container embed, .blog-posts-container iframe, .blog-posts-container object, .blog-posts-container video {
+    max-width: 100%; }
+  .blog-posts-container a {
+    text-decoration: none; }
+  .blog-posts-container header.entry-header h2.entry-title a {
+    color: #222;
+    margin-left: 0; }
+  .blog-posts-container .wp-caption .wp-caption-text, .blog-posts-container .gallery-caption, .blog-posts-container .entry-caption {
+    overflow: hidden;
+    color: #757575;
+    font-size: 0.857143rem;
+    font-style: italic;
+    line-height: 2; }
+  .blog-posts-container .date {
+    font-size: 12px; }
+  .blog-posts-container footer.entry-meta {
+    color: #757575;
+    font-size: 0.928571rem;
+    line-height: 1.84615;
+    margin-top: 1.71429rem;
+    clear: both;
+    float: none;
+    margin-right: auto; }
+  .blog-posts-container footer {
+    background: none;
+    clear: both;
+    padding: 15px 0 0;
+    position: relative;
+    text-align: center; }
+
+#content-wrapper h1, #content-wrapper h2, #content-wrapper h3, #content-wrapper h4, #content-wrapper h5, #content-wrapper h6 {
+  clear: both; }
+
+.content {
+  background: #fff;
+  /*    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
+    -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
+    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);*/
+  box-shadow: 3px 3px 8px -1px darkgrey; }
+
+#searchform_container {
+  margin-top: 20px; }
+
+#searchform {
+  max-width: 100%;
+  text-align: center; }
+  #searchform div input.blogbutton {
+    background: -webkit-linear-gradient(left, #1999ce 5%, #107098 100%);
+    background: -moz-linear-gradient(center top, #1999ce 5%, #107098 100%);
+    background: -ms-linear-gradient(left, #1999ce 5%, #107098 100%); }
+
+#blog-side-info {
+  border-left: 1px solid grey;
+  margin-top: 30px;
+  padding-left: 20px; }
+  @media screen and (max-width: 39.9375em) {
+    #blog-side-info {
+      text-align: center; } }
+
+h1, h2, h3, h4, h5, h6 {
+  clear: both; }
+
+/* PLUGINS */
+/* Nextgen */
+.gallery li a img {
+  display: block;
+  width: 100%; }
+
+.ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {
+  float: none !important; }
+
+.ngg-album-compact h4 .ngg-album-desc {
+  height: auto !important;
+  font-weight: 400; }
+
+.ngg-album-compact .album-meta-wrapper h4 a {
+  font-style: normal; }
+
+.album-meta-wrapper {
+  display: block;
+  height: 54px;
+  margin-bottom: 20px; }
+
+.ngg-glmalbums {
+  margin: 10px 0;
+  min-height: 260px; }
+  @media screen and (max-width: 39.9375em) {
+    .ngg-glmalbums {
+      min-height: 180px; } }
+
+.ngg-album-link {
+  text-align: center; }
+
+/* Ninja Forms */
+.ninja-forms-form-wrap {
+  max-width: 600px;
+  margin: 0 auto; }
+  .ninja-forms-form-wrap input[type=submit] {
+    display: inline-block;
+    text-align: center;
+    line-height: 1;
+    cursor: pointer;
+    -webkit-appearance: none;
+    transition: background-color 0.25s ease-out, color 0.25s ease-out;
+    vertical-align: middle;
+    border: 1px solid transparent;
+    border-radius: 0;
+    padding: 0.85em 1em;
+    margin: 0 0 1rem 0;
+    font-size: 0.9rem;
+    background-color: #2199e8;
+    color: #FFFFFF;
+    display: block;
+    margin: 0 auto; }
+    [data-whatinput='mouse'] .ninja-forms-form-wrap input[type=submit] {
+      outline: 0; }
+    .ninja-forms-form-wrap input[type=submit]:hover, .ninja-forms-form-wrap input[type=submit]:focus {
+      background-color: #1583cc;
+      color: #FFFFFF; }
+
+/* For fixing cellphones not showing phone numbers because of /helpful/ auto-coloring */
+a[href^=tel] {
+  color: inherit;
+  text-decoration: none; }
+
+body {
+  background-size: cover; }
+  body .off-canvas-content {
+    background: none; }
+
+header {
+  height: auto; }
+  header #logo img {
+    margin-bottom: 15px; }
+  header .search input {
+    height: 20px;
+    width: 167px;
+    padding: 0 8px;
+    margin: 13px 0px 0px 18px;
+    border-radius: 3px;
+    font-size: 10px;
+    color: #000000;
+    display: inline-block; }
+  header .search a.magnifying-glass {
+    font-size: 10em;
+    /* This controls the size. */
+    display: inline-block;
+    width: 0.625rem;
+    height: 0.625rem;
+    border: 0.125rem solid #131c5f;
+    position: relative;
+    border-radius: 0.35em;
+    margin: 0 0 0 -25px; }
+    header .search a.magnifying-glass:before {
+      content: "";
+      display: inline-block;
+      position: absolute;
+      right: -0.4375rem;
+      bottom: -0.25rem;
+      border-width: 0;
+      background: #131c5f;
+      width: 0.5rem;
+      height: 0.125rem;
+      -webkit-transform: rotate(45deg);
+      -moz-transform: rotate(45deg);
+      -ms-transform: rotate(45deg);
+      transform: rotate(45deg); }
+  header #sec-nav {
+    position: relative;
+    text-align: left;
+    padding: 10px 0;
+    margin: 0 0 15px 45px; }
+    header #sec-nav ul {
+      margin: 0; }
+      header #sec-nav ul li {
+        display: inline; }
+        header #sec-nav ul li a {
+          font-size: 12px;
+          color: #131c5f;
+          padding: 0 5px;
+          font-weight: bold; }
+    header #sec-nav > ul > li {
+      position: relative; }
+      header #sec-nav > ul > li:before {
+        color: #999999;
+        content: "|";
+        position: absolute;
+        top: 2px;
+        left: -15px;
+        font-size: 14px;
+        font-weight: bold;
+        display: block;
+        padding: 0 10px; }
+      header #sec-nav > ul > li:first-child:before {
+        content: none; }
+  header img {
+    margin-left: 5px; }
+  header.main {
+    margin-top: 15px; }
+    header.main a#big-logo {
+      padding-left: 15px; }
+    header.main a#contact {
+      color: #FFFFFF;
+      text-decoration: underline;
+      font-weight: bold; }
+      header.main a#contact:hover {
+        color: #f28728; }
+    header.main #under {
+      margin-top: 20px; }
+    header.main .social {
+      padding-left: 12px !important; }
+      header.main .social a {
+        position: relative;
+        margin: 0 5px; }
+        header.main .social a img {
+          margin: 0; }
+    header.main span#phone {
+      font-size: 1.5rem;
+      color: #FFFFFF;
+      font-weight: bold;
+      padding-right: 20px;
+      letter-spacing: 0.1em; }
+
+.contain-to-grid {
+  box-shadow: 0 5px 10px -1px #999999; }
+  .contain-to-grid .top-bar {
+    height: 73px;
+    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
+    margin-bottom: 10px; }
+
+.tab-bar .tab-bar-section.middle {
+  text-align: right; }
+
+.top-bar {
+  border-top-left-radius: 10px;
+  border-top-right-radius: 9px; }
+
+.top-bar-left {
+  border-top-left-radius: 10px;
+  border-top-right-radius: 9px;
+  background: #797c25;
+  float: none;
+  margin-left: auto;
+  margin-right: auto;
+  display: inline-block;
+  height: 60px;
+  width: 100%;
+  line-height: 1; }
+  .top-bar-left ul li a {
+    letter-spacing: 0.055em; }
+  .top-bar-left ul li:first-child {
+    border-top-left-radius: 10px; }
+    .top-bar-left ul li:first-child a {
+      border-top-left-radius: 8px; }
+  .top-bar-left ul li:not(.has-form):not(.active) > a:not(.button) {
+    background: transparent; }
+  .top-bar-left ul li.active:not(.has-form) a:not(.button) {
+    line-height: 60px; }
+  .top-bar-left > ul > li {
+    position: relative; }
+    .top-bar-left > ul > li:before {
+      color: #FFFFFF;
+      content: "|";
+      position: absolute;
+      top: 13px;
+      left: -15px;
+      font-size: 21px;
+      display: block;
+      padding: 0 10px; }
+    .top-bar-left > ul > li:first-child:before {
+      content: none; }
+
+.top-bar-section li:not(.has-form) a:not(.button) {
+  padding: 0 1.25rem; }
+
+.breadcrumbs span a span {
+  color: #000000; }
+
+.breadcrumbs span span {
+  color: #797c25; }
+
+.blocks {
+  padding: 0 15px; }
+  .blocks .blocks {
+    padding: 36px 15px; }
+    .blocks .blocks img {
+      border: 4px solid #FFFFFF;
+      box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3);
+      -webkit-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3);
+      -moz-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3);
+      -ms-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.3); }
+    .blocks .blocks h1 {
+      margin-top: 10px; }
+    .blocks .blocks a.blocks-readmore {
+      padding: 5px 12px;
+      background: transparent;
+      color: #f28728;
+      border: 1px solid #797c25;
+      display: inline-block;
+      transition: background 0.5s, color 0.5s;
+      -webkit-transition: background 0.5s, color 0.5s;
+      -moz-transition: background 0.5s, color 0.5s;
+      -ms-transition: background 0.5s, color 0.5s; }
+      .blocks .blocks a.blocks-readmore:hover {
+        background: #797c25;
+        color: #FFFFFF; }
+
+main.page-inside #content-wrapper {
+  padding: 0 16px; }
+
+#content-bulk #con {
+  margin: 0; }
+
+#content-bulk h2 {
+  text-transform: uppercase;
+  font-size: 25px; }
+
+#content-bulk footer {
+  margin: 35px 0; }
+  #content-bulk footer #address {
+    margin-top: 25px; }
+    #content-bulk footer #address p {
+      font-size: 12px;
+      margin-top: 5px; }
+    #content-bulk footer #address img {
+      margin: 0;
+      padding-right: 5px; }
+    #content-bulk footer #address a {
+      font-size: 12px; }
+  #content-bulk footer img {
+    box-shadow: none; }
+
+#slideshow #caption {
+  background: rgba(0, 0, 0, 0.75);
+  color: #FFFFFF;
+  margin-top: -51px; }
+  #slideshow #caption p {
+    padding: 10px 5px;
+    font-size: 12px;
+    margin: 0;
+    text-align: right; }
+
+/* NextGen Gallery */
+.ngg-gallery-thumbnail,
+.ngg-gallery-thumbnail-box {
+  float: none !important; }
+
+.gallery li a img {
+  display: block;
+  width: 100%; }
+
+.ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {
+  float: none !important; }
+
+.ngg-album-compact h4 .ngg-album-desc {
+  height: auto !important;
+  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
+  font-weight: 400; }
+
+.ngg-album-compact .album-meta-wrapper h4 a {
+  font-style: normal; }
+
+.album-meta-wrapper {
+  display: block;
+  height: 54px;
+  margin-bottom: 20px; }
+
+.ngg-glmalbums {
+  margin: 10px 0; }
+
+/* Ninja Forms */
+.ninja-forms-form-wrap {
+  max-width: 600px;
+  margin: 0 auto; }
+  .ninja-forms-form-wrap input[type=submit] {
+    display: inline-block;
+    text-align: center;
+    line-height: 1;
+    cursor: pointer;
+    -webkit-appearance: none;
+    transition: background-color 0.25s ease-out, color 0.25s ease-out;
+    vertical-align: middle;
+    border: 1px solid transparent;
+    border-radius: 0;
+    padding: 0.85em 1em;
+    margin: 0 0 1rem 0;
+    font-size: 0.9rem;
+    background-color: #2199e8;
+    color: #FFFFFF;
+    display: block;
+    margin: 0 auto; }
+    [data-whatinput='mouse'] .ninja-forms-form-wrap input[type=submit] {
+      outline: 0; }
+    .ninja-forms-form-wrap input[type=submit]:hover, .ninja-forms-form-wrap input[type=submit]:focus {
+      background-color: #1583cc;
+      color: #FFFFFF; }
+
+/* End NextGen Gallery */
+#blog-posts-over article.ai1ec_event {
+  padding: 10px; }
+
+.home-feed-post {
+  padding-bottom: 25px; }
+
+input[type="submit"].blogbutton {
+  border-radius: 3px;
+  color: #FFFFFF;
+  border: 2px solid #FFFFFF;
+  font-weight: bold;
+  font-size: 13px;
+  padding: 2px 5px;
+  margin-top: -10px;
+  text-transform: uppercase; }
+  input[type="submit"].blogbutton:hover {
+    cursor: pointer;
+    background: #FFFFFF;
+    border: 2px solid #035C84;
+    color: white; }
+
+#blog-posts-over article {
+  padding-top: 10px;
+  margin-bottom: 15px;
+  display: inline-block;
+  width: 100%; }
+  #blog-posts-over article .entry-header {
+    background: transparent; }
+  #blog-posts-over article #addthis_wrapper {
+    margin-top: -25px; }
+  #blog-posts-over article p {
+    padding-bottom: 15px; }
+  #blog-posts-over article a.read-more {
+    border: 2px solid #FFFFFF;
+    font-weight: bold;
+    font-size: 13px;
+    padding: 0 3px;
+    text-transform: uppercase; }
+    #blog-posts-over article a.read-more:hover {
+      background: #FFFFFF;
+      border: 2px solid #035C84;
+      color: #035C84; }
+  #blog-posts-over article .entry-header {
+    margin-bottom: 10px; }
+    #blog-posts-over article .entry-header .entry-title {
+      margin-bottom: 0; }
+    #blog-posts-over article .entry-header .meta.date {
+      font-size: 13px;
+      font-weight: bold; }
+
+/*#searchform div input &[type="text"] {
+    width: 95%;
+}*/
+#blog-posts-over .entry-meta {
+  text-align: center;
+  color: #757575;
+  font-size: 12px; }
+
+#blog-posts-over > div {
+  margin: 25px 0; }
+
+#blog-side-info #searchform {
+  margin-bottom: 30px; }
+
+#blog-side-info p {
+  margin-bottom: 0; }
+
+@media screen and (max-width: 39.9375em) {
+  #blog-side-info-wrapper {
+    float: none;
+    margin: 0 auto;
+    clear: both; }
+  #blog-side-info {
+    padding-left: 0;
+    border-left: 0; }
+    #blog-side-info ul {
+      margin-left: 0;
+      margin-top: 10px; }
+    #blog-side-info #searchform {
+      padding: 35px 0; }
+      #blog-side-info #searchform #s {
+        width: 100%; } }
+
+#blog-side-info {
+  padding-right: 10px; }
+  #blog-side-info ul {
+    list-style-type: none; }
+
+#sidebar {
+  padding-top: 25px;
+  background: #f2f9fc; }
+  #sidebar .row.collapse {
+    margin-left: 14px; }
+  #sidebar li {
+    list-style: none; }
+    #sidebar li #calendar_wrap table#wp-calendar {
+      margin: 0 auto; }
+  #sidebar a {
+    font-size: 12px; }
+  #sidebar form {
+    margin: 0 12px 0 14px; }
+    #sidebar form select {
+      padding: 0 0.5rem;
+      border-radius: 5px;
+      height: 25px;
+      margin: 0; }
+      #sidebar form select option {
+        font-size: 10px; }
+  #sidebar .small-block-grid-2 {
+    margin-top: 10px; }
+    #sidebar .small-block-grid-2 li {
+      padding: 0 0.625rem 0.625rem; }
+      #sidebar .small-block-grid-2 li img {
+        border: 2px solid lightblue; }
+    #sidebar .small-block-grid-2 > li:nth-of-type(2), #sidebar .small-block-grid-2 > li:nth-of-type(4) {
+      padding-left: 0; }
+    #sidebar .small-block-grid-2 > li:nth-of-type(3), #sidebar .small-block-grid-2 > li:nth-of-type(4) {
+      padding-bottom: 20px; }
+  #sidebar h3 {
+    margin: 20px 0 0; }
+  #sidebar h1 {
+    margin: 0;
+    font-size: 1.5625rem;
+    text-transform: none; }
+  #sidebar input {
+    padding: 5px 0 5px 8px;
+    height: auto;
+    margin: 10px 0; }
+  #sidebar button {
+    border-radius: 2px;
+    padding: 0 10px; }
+
+#side-nav {
+  padding-top: 10px;
+  background: #f2f9fc; }
+  #side-nav h1 {
+    font-size: 1.375rem;
+    /*        margin: 5px 0 25px;*/ }
+  #side-nav h4 {
+    font-weight: bold;
+    margin-left: 10px; }
+  #side-nav li {
+    list-style: none; }
+  #side-nav ul {
+    list-style: none;
+    margin: 0 0 20px; }
+    #side-nav ul li {
+      margin: 0 -15px;
+      padding: 5px 10px 5px 25px; }
+      #side-nav ul li:hover {
+        background: #81adc1; }
+      #side-nav ul li a {
+        color: darkblue; }
+        #side-nav ul li a:hover {
+          color: #FFFFFF; }
+  #side-nav h3 {
+    text-transform: none;
+    margin: 0; }
+  #side-nav input {
+    padding: 5px 0 5px 8px;
+    height: auto;
+    margin-bottom: 10px; }
+  #side-nav button {
+    border-radius: 2px;
+    padding: 0 10px; }
+
+#extra {
+  margin-top: 15px; }
+  #extra p {
+    line-height: 1.3; }
+    #extra p.title {
+      margin: 0; }
+      #extra p.title#last {
+        padding-top: 10px; }
+    #extra p#message {
+      text-transform: uppercase;
+      color: lightblue;
+      font-size: 0.9375rem;
+      margin: 40px 0; }
+
+.county-news {
+  font-weight: bold; }
+
+.current_page_item a {
+  font-weight: bold; }
+
+.search-top .searchform {
+  text-align: left;
+  display: inline-block;
+  position: relative; }
+  .search-top .searchform input.search-button {
+    width: 16px;
+    height: 13px;
+    top: 8px;
+    right: 7px;
+    position: absolute;
+    padding: 0;
+    margin-bottom: 0; }
+
+.search-top input[type=text] {
+  height: 25px;
+  width: 152px;
+  padding: 0 8px;
+  margin: 0 0 15px 0;
+  border-radius: 2px;
+  font-size: 12px;
+  color: #000000;
+  display: inline-block;
+  border: none;
+  box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.5); }
+
+aside.left-off-canvas-menu .searchform {
+  text-align: left;
+  display: inline-block;
+  position: relative;
+  float: none;
+  margin: 0 auto;
+  width: 100%; }
+  aside.left-off-canvas-menu .searchform input.search-button {
+    width: 16px;
+    height: 13px;
+    top: 8px;
+    right: 7px;
+    position: absolute;
+    padding: 0;
+    margin-bottom: 0; }
+
+aside.left-off-canvas-menu input.search-input {
+  width: 100%; }
+
+footer.main #res {
+  background: #797c25;
+  height: 238px;
+  margin-bottom: 36px;
+  padding: 10px 12px;
+  position: relative; }
+  @media screen and (max-width: 39.9375em) {
+    footer.main #res {
+      height: auto; } }
+  footer.main #res #request {
+    border: 3px dashed #f28728;
+    padding: 9px 0;
+    display: block;
+    height: 218px;
+    position: relative; }
+    @media screen and (max-width: 39.9375em) {
+      footer.main #res #request {
+        height: auto; } }
+  footer.main #res #res-content h1 {
+    padding-left: 28px;
+    color: #e8d8af;
+    font-size: 3.5rem;
+    position: relative;
+    z-index: 1;
+    margin: 0; }
+  footer.main #res #res-content p {
+    padding-left: 28px;
+    color: #FFFFFF; }
+  footer.main #res #res-content a#request-but {
+    margin-left: 28px;
+    padding: 2.5px 13px;
+    border: 2px solid #FFFFFF;
+    color: #FFFFFF;
+    background: transparent;
+    display: inline-block;
+    transition: background 0.5s, color 0.5s;
+    -webkit-transition: background 0.5s, color 0.5s;
+    -moz-transition: background 0.5s, color 0.5s;
+    -ms-transition: background 0.5s, color 0.5s; }
+    footer.main #res #res-content a#request-but:hover {
+      color: #797c25;
+      background: #FFFFFF; }
+  footer.main #res #lantern {
+    position: absolute;
+    top: 42px;
+    left: 30px; }
+  footer.main #res #camp {
+    position: absolute;
+    top: 20px;
+    right: 30px; }
+    @media screen and (max-width: 744px) {
+      footer.main #res #camp {
+        display: none; } }
+
+footer.main img#map {
+  padding-top: 5px;
+  display: inline-block; }
+
+footer.main .address {
+  padding-top: 4px; }
+
+footer.main img#compass {
+  padding-top: 5px;
+  display: inline-block; }
+
+footer.main .dir-contact {
+  padding-top: 5px; }
+  footer.main .dir-contact a {
+    text-decoration: underline; }
+
+#footer_address span {
+  white-space: nowrap; }
+
+#connect {
+  padding-top: 20px;
+  background: #4c4d4f; }
+  #connect ul {
+    margin: 0;
+    list-style: none; }
+    #connect ul li {
+      background: none;
+      padding: 0 5px;
+      display: inline-block; }
+      #connect ul li > a {
+        display: block;
+        font-family: Open Sans, sans-serif;
+        font-size: 12px;
+        color: #fff;
+        padding: 20px 18px;
+        line-height: 1.2; }
+      #connect ul li a#current {
+        background: #0093d1; }
+
+#compass {
+  float: right; }
+
+#copyright {
+  padding: 35px 0 5px;
+  margin: 0 auto -40px;
+  float: none; }
+  #copyright span {
+    font-size: 0.75rem; }
+  #copyright a {
+    color: #000000; }
+
+#footer_address span.bullet,
+#copyright span.bullet {
+  margin: 0 5px; }
+  @media screen and (max-width: 39.9375em) {
+    #footer_address span.bullet,
+    #copyright span.bullet {
+      display: none !important; } }
+
+body .shadow-wrapper {
+  border-radius: 10px;
+  margin: -1px auto 140px;
+  background: #f3ebd7;
+  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.5);
+  -ms-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.5);
+  -moz-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.5);
+  -webkit-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.5);
+  max-width: 1200px; }
+
+.off-canvas-wrap {
+  min-height: 100%; }
+  .off-canvas-wrap .inner-wrap {
+    min-height: 100vh;
+    height: 100%; }
+
+#example.element {
+  background-color: transparent; }
+
+h1 {
+  font-family: "Dancing Script";
+  font-weight: bold;
+  color: #f28728; }
+
+h2 {
+  color: #797c25; }
+
+h3 {
+  color: #797c25;
+  font-weight: bold; }
+
+h4 {
+  color: #f28728;
+  font-weight: bold; }
+
+h5 {
+  font-weight: bold; }
+
+/* for the mobile menu */
+aside.left-off-canvas-menu li.page_item {
+  display: block;
+  overflow: hidden;
+  position: relative;
+  padding: 4px 8px; }
+
+aside.left-off-canvas-menu .off-canvas-list ul li a {
+  line-height: 20px;
+  color: white;
+  border-bottom: 1px solid #b1b3b6;
+  background-repeat: no-repeat;
+  background-position: 3px 50%; }
+
+aside.left-off-canvas-menu li.page_item_has_children a.toggle {
+  position: absolute;
+  right: 10px;
+  top: 5px;
+  text-decoration: none; }
+  aside.left-off-canvas-menu li.page_item_has_children a.toggle:before {
+    content: '>';
+    transform: rotate(0deg);
+    color: #FFFFFF;
+    height: 17px;
+    width: 17px;
+    font-size: 17px;
+    font-weight: bold;
+    display: block; }
+  aside.left-off-canvas-menu li.page_item_has_children a.toggle:hover {
+    background: transparent; }
+
+aside.left-off-canvas-menu li.page_item_has_children a.toggle.open {
+  content: '>';
+  transform: rotate(90deg);
+  color: #FFFFFF;
+  height: 1rem;
+  width: 1rem;
+  font-size: 1rem;
+  font-weight: bold;
+  display: block; }
+
+aside.left-off-canvas-menu ul.children {
+  display: none; }
+
+aside.left-off-canvas-menu .off-canvas-list ul li > ul li > a {
+  padding-left: 10px;
+  margin-left: 25px;
+  line-height: 18px; }
+
+aside.left-off-canvas-menu ul.open {
+  display: block; }
+
+.left-off-canvas-menu {
+  list-style: none; }
+  .left-off-canvas-menu li a {
+    color: #FFFFFF;
+    font-size: 1.25rem;
+    line-height: 150%;
+    border-color: white; }
+  .left-off-canvas-menu li a:hover {
+    color: #f28728; }
+  .left-off-canvas-menu li .dropdown {
+    list-style: none; }
+  .left-off-canvas-menu ul {
+    list-style: none;
+    padding: 10px 0; }
+    .left-off-canvas-menu ul li a {
+      color: #FFFFFF;
+      background: transparent; }
+    .left-off-canvas-menu ul li ul {
+      list-style: none; }
+      .left-off-canvas-menu ul li ul li a {
+        width: 85%;
+        display: block;
+        white-space: pre-wrap; }
+
+.social-contact {
+  background: #f3ebd7; }
+
+.offcavas-social-list {
+  margin-left: auto; }
+
+/* End Mobile Menu */
+
+/*# sourceMappingURL=app.css.map */
diff --git a/css/app.css.map b/css/app.css.map
new file mode 100644 (file)
index 0000000..72eca60
--- /dev/null
@@ -0,0 +1 @@
+{"version":3,"file":"app.css","sources":["app.scss","_settings.scss","../bower_components/foundation-sites/scss/util/_util.scss","../bower_components/foundation-sites/scss/util/_unit.scss","../bower_components/foundation-sites/scss/util/_value.scss","../bower_components/foundation-sites/scss/util/_color.scss","../bower_components/foundation-sites/scss/util/_selector.scss","../bower_components/foundation-sites/scss/util/_flex.scss","../bower_components/foundation-sites/scss/util/_breakpoint.scss","../bower_components/foundation-sites/scss/util/_mixins.scss","../bower_components/foundation-sites/scss/foundation.scss","../bower_components/foundation-sites/scss/util/_util.scss","../bower_components/foundation-sites/scss/_global.scss","../bower_components/foundation-sites/scss/grid/_grid.scss","../bower_components/foundation-sites/scss/grid/_row.scss","../bower_components/foundation-sites/scss/grid/_column.scss","../bower_components/foundation-sites/scss/grid/_size.scss","../bower_components/foundation-sites/scss/grid/_position.scss","../bower_components/foundation-sites/scss/grid/_gutter.scss","../bower_components/foundation-sites/scss/grid/_classes.scss","../bower_components/foundation-sites/scss/grid/_layout.scss","../bower_components/foundation-sites/scss/grid/_flex-grid.scss","../bower_components/foundation-sites/scss/typography/_typography.scss","../bower_components/foundation-sites/scss/typography/_base.scss","../bower_components/foundation-sites/scss/typography/_helpers.scss","../bower_components/foundation-sites/scss/typography/_alignment.scss","../bower_components/foundation-sites/scss/typography/_print.scss","../bower_components/foundation-sites/scss/forms/_forms.scss","../bower_components/foundation-sites/scss/forms/_text.scss","../bower_components/foundation-sites/scss/forms/_checkbox.scss","../bower_components/foundation-sites/scss/forms/_label.scss","../bower_components/foundation-sites/scss/forms/_help-text.scss","../bower_components/foundation-sites/scss/forms/_input-group.scss","../bower_components/foundation-sites/scss/forms/_fieldset.scss","../bower_components/foundation-sites/scss/forms/_select.scss","../bower_components/foundation-sites/scss/forms/_range.scss","../bower_components/foundation-sites/scss/forms/_progress.scss","../bower_components/foundation-sites/scss/forms/_meter.scss","../bower_components/foundation-sites/scss/forms/_error.scss","../bower_components/foundation-sites/scss/components/_visibility.scss","../bower_components/foundation-sites/scss/components/_float.scss","../bower_components/foundation-sites/scss/components/_button.scss","../bower_components/foundation-sites/scss/components/_button-group.scss","../bower_components/foundation-sites/scss/components/_accordion-menu.scss","../bower_components/foundation-sites/scss/components/_accordion.scss","../bower_components/foundation-sites/scss/components/_badge.scss","../bower_components/foundation-sites/scss/components/_breadcrumbs.scss","../bower_components/foundation-sites/scss/components/_callout.scss","../bower_components/foundation-sites/scss/components/_close-button.scss","../bower_components/foundation-sites/scss/components/_drilldown.scss","../bower_components/foundation-sites/scss/components/_dropdown-menu.scss","../bower_components/foundation-sites/scss/components/_dropdown.scss","../bower_components/foundation-sites/scss/components/_flex.scss","../bower_components/foundation-sites/scss/components/_flex-video.scss","../bower_components/foundation-sites/scss/components/_label.scss","../bower_components/foundation-sites/scss/components/_media-object.scss","../bower_components/foundation-sites/scss/components/_menu.scss","../bower_components/foundation-sites/scss/components/_menu-icon.scss","../bower_components/foundation-sites/scss/components/_off-canvas.scss","../bower_components/foundation-sites/scss/components/_orbit.scss","../bower_components/foundation-sites/scss/components/_pagination.scss","../bower_components/foundation-sites/scss/components/_progress-bar.scss","../bower_components/foundation-sites/scss/components/_reveal.scss","../bower_components/foundation-sites/scss/components/_slider.scss","../bower_components/foundation-sites/scss/components/_sticky.scss","../bower_components/foundation-sites/scss/components/_switch.scss","../bower_components/foundation-sites/scss/components/_table.scss","../bower_components/foundation-sites/scss/components/_tabs.scss","../bower_components/foundation-sites/scss/components/_title-bar.scss","../bower_components/foundation-sites/scss/components/_top-bar.scss","../bower_components/foundation-sites/scss/components/_thumbnail.scss","../bower_components/foundation-sites/scss/components/_tooltip.scss","../bower_components/motion-ui/src/motion-ui.scss","../bower_components/motion-ui/src/_settings.scss","../bower_components/motion-ui/src/util/_animation.scss","../bower_components/motion-ui/src/util/_args.scss","../bower_components/motion-ui/src/util/_keyframe.scss","../bower_components/motion-ui/src/util/_selector.scss","../bower_components/motion-ui/src/util/_series.scss","../bower_components/motion-ui/src/util/_transition.scss","../bower_components/motion-ui/src/util/_unit.scss","../bower_components/motion-ui/src/effects/_fade.scss","../bower_components/motion-ui/src/effects/_hinge.scss","../bower_components/motion-ui/src/effects/_spin.scss","../bower_components/motion-ui/src/effects/_zoom.scss","../bower_components/motion-ui/src/effects/_shake.scss","../bower_components/motion-ui/src/effects/_slide.scss","../bower_components/motion-ui/src/effects/_wiggle.scss","../bower_components/motion-ui/src/transitions/_fade.scss","../bower_components/motion-ui/src/transitions/_hinge.scss","../bower_components/motion-ui/src/transitions/_zoom.scss","../bower_components/motion-ui/src/transitions/_slide.scss","../bower_components/motion-ui/src/transitions/_spin.scss","../bower_components/motion-ui/src/_classes.scss","_mixins.scss","mixins/_gradient.scss","mixins/_off-canvas-arrow.scss","_wordpress.scss","_defaults.scss","_body.scss","_page.header.scss","_topbar.scss","_main.scss","_slideshow.scss","_plugins.scss","plugins/_nextgen.scss","plugins/_gravityForms.scss","plugins/_events.scss","_blog.scss","_sidebar.scss","_search.scss","_page.footer.scss","_copyright.scss","_structure.scss","_left-off-canvas.scss"],"sourcesContent":["@charset 'utf-8';\r\n\r\n@import 'settings';\r\n@import 'foundation';\r\n@import 'motion-ui';\r\n@import \"mixins\";\r\n@include foundation-global-styles;\r\n@include foundation-grid;\r\n// @include foundation-flex-grid;\r\n@include foundation-typography;\r\n@include foundation-button;\r\n@include foundation-forms;\r\n// @include foundation-range-input;\r\n@include foundation-accordion;\r\n@include foundation-accordion-menu;\r\n@include foundation-badge;\r\n@include foundation-breadcrumbs;\r\n@include foundation-button-group;\r\n@include foundation-callout;\r\n@include foundation-close-button;\r\n@include foundation-menu;\r\n@include foundation-menu-icon;\r\n@include foundation-drilldown-menu;\r\n@include foundation-dropdown;\r\n@include foundation-dropdown-menu;\r\n@include foundation-flex-video;\r\n@include foundation-label;\r\n@include foundation-media-object;\r\n@include foundation-off-canvas;\r\n@include foundation-orbit;\r\n@include foundation-pagination;\r\n@include foundation-progress-bar;\r\n// @include foundation-progress-element;\r\n// @include foundation-meter-element;\r\n@include foundation-slider;\r\n@include foundation-sticky;\r\n@include foundation-reveal;\r\n@include foundation-switch;\r\n@include foundation-table;\r\n@include foundation-tabs;\r\n@include foundation-thumbnail;\r\n@include foundation-title-bar;\r\n@include foundation-tooltip;\r\n@include foundation-top-bar;\r\n@include foundation-visibility-classes;\r\n@include foundation-float-classes;\r\n// @include foundation-flex-classes;\r\n//\r\n@include motion-ui-transitions;\r\n@include motion-ui-animations;\r\n@import \"wordpress\";\r\n@import \"defaults\";\r\n@import \"body\";\r\n@import \"page.header\";\r\n@import \"topbar\";\r\n@import \"main\";\r\n@import \"slideshow\";\r\n@import \"plugins\";\r\n@import \"blog\";\r\n@import \"sidebar\";\r\n@import \"search\";\r\n@import \"page.footer\";\r\n@import \"copyright\";\r\n@import \"structure\";\r\n@import \"left-off-canvas\";\r\n//@import \"right-off-canvas\";\r\n\r\n\r\n","//  Foundation for Sites Settings\r\n//  -----------------------------\r\n//\r\n//  Table of Contents:\r\n//\r\n//   1. Global\r\n//   2. Breakpoints\r\n//   3. The Grid\r\n//   4. Base Typography\r\n//   5. Typography Helpers\r\n//   6. Abide\r\n//   7. Accordion\r\n//   8. Accordion Menu\r\n//   9. Badge\r\n//  10. Breadcrumbs\r\n//  11. Button\r\n//  12. Button Group\r\n//  13. Callout\r\n//  14. Close Button\r\n//  15. Drilldown\r\n//  16. Dropdown\r\n//  17. Dropdown Menu\r\n//  18. Flex Video\r\n//  19. Forms\r\n//  20. Label\r\n//  21. Media Object\r\n//  22. Menu\r\n//  23. Meter\r\n//  24. Off-canvas\r\n//  25. Orbit\r\n//  26. Pagination\r\n//  27. Progress Bar\r\n//  28. Reveal\r\n//  29. Slider\r\n//  30. Switch\r\n//  31. Table\r\n//  32. Tabs\r\n//  33. Thumbnail\r\n//  34. Title Bar\r\n//  35. Tooltip\r\n//  36. Top Bar\r\n\r\n@import 'util/util';\r\n\r\n// 1. Global\r\n// ---------\r\n\r\n$global-font-size: 100%;\r\n$global-width: rem-calc(1200);\r\n$global-lineheight: 1.5;\r\n$foundation-palette: (\r\n  primary: #2199e8,\r\n  secondary: #777,\r\n  success: #3adb76,\r\n  warning: #ffae00,\r\n  alert: #ec5840,\r\n);\r\n$light-gray: #e6e6e6;\r\n$medium-gray: #cacaca;\r\n$dark-gray: #8a8a8a;\r\n$white       : #FFFFFF;\r\n$ghost       : #FAFAFA;\r\n$snow        : #F9F9F9;\r\n$vapor       : #F6F6F6;\r\n$white-smoke : #F5F5F5;\r\n$silver      : #EFEFEF;\r\n$smoke       : #EEEEEE;\r\n$gainsboro   : #DDDDDD;\r\n$iron        : #CCCCCC;\r\n$base        : #AAAAAA;\r\n$aluminum    : #999999;\r\n$jumbo       : #888888;\r\n$monsoon     : #777777;\r\n$steel       : #666666;\r\n$charcoal    : #555555;\r\n$tuatara     : #444444;\r\n$oil         : #333333;\r\n$jet         : #222222;\r\n$black       : #000000;\r\n$green       : #797c25;\r\n$red         : #d2222a;\r\n$d-blue      : #131c5f;\r\n$l-blue      : #0093d1;\r\n$orange      : #f28728;\r\n$cream       : #f3ebd7;\r\n$dark-cream  : #e8d8af;\r\n$brown       : #704c21;\r\n\r\n\r\n$body-background: url(../assets/background.jpg) no-repeat center center fixed;\r\n$body-font-color: $black;\r\n$body-font-family: 'Open Sans', sans-serif;\r\n$body-antialiased: true;\r\n$global-margin: 1rem;\r\n$global-padding: 1rem;\r\n$global-weight-normal: normal;\r\n$global-weight-bold: bold;\r\n$global-radius: 0;\r\n$global-text-direction: ltr;\r\n$global-flexbox: false;\r\n$print-transparent-backgrounds: true;\r\n\r\n\r\n@include add-foundation-colors;\r\n\r\n// 2. Breakpoints\r\n// --------------\r\n\r\n$breakpoints: (\r\n  small: 0,\r\n  medium: 640px,\r\n  large: 1024px,\r\n  xlarge: 1200px,\r\n  xxlarge: 1440px,\r\n);\r\n$breakpoint-classes: (small medium large);\r\n\r\n// 3. The Grid\r\n// -----------\r\n\r\n$grid-row-width: $global-width;\r\n$grid-column-count: 12;\r\n$grid-column-gutter: (\r\n  small: 20px,\r\n  medium: 30px,\r\n);\r\n$grid-column-align-edge: true;\r\n$block-grid-max: 8;\r\n\r\n// 4. Base Typography\r\n// ------------------\r\n\r\n$header-font-family: $body-font-family;\r\n$header-font-weight: $global-weight-normal;\r\n$header-font-style: normal;\r\n// We use these to define default font stacks\r\n$font-family-sans-serif: \"Open Sans\", sans-serif;\r\n$font-family-serif: Georgia, Cambria, \"Times New Roman\", Times, serif;\r\n$font-family-monospace: Consolas, \"Liberation Mono\", Courier, monospace;\r\n$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace;\r\n$header-sizes: (\r\n  small: (\r\n    'h1': 24,\r\n    'h2': 20,\r\n    'h3': 19,\r\n    'h4': 18,\r\n    'h5': 17,\r\n    'h6': 16,\r\n  ),\r\n  medium: (\r\n    'h1': 36,\r\n    'h2': 24,\r\n    'h3': 24,\r\n    'h4': 18,\r\n    'h5': 16,\r\n    'h6': 16,\r\n  ),\r\n);\r\n$header-color: inherit;\r\n$header-lineheight: 1.4;\r\n$header-margin-bottom: 0.5rem;\r\n$header-text-rendering: optimizeLegibility;\r\n$small-font-size: 80%;\r\n$header-small-font-color: $medium-gray;\r\n$paragraph-lineheight: 1.6;\r\n$paragraph-margin-bottom: 1rem;\r\n$paragraph-text-rendering: optimizeLegibility;\r\n$code-color: $black;\r\n$code-font-family: $font-family-monospace;\r\n$code-font-weight: $global-weight-normal;\r\n$code-background: $light-gray;\r\n$code-border: 1px solid $medium-gray;\r\n$code-padding: rem-calc(2 5 1);\r\n$anchor-color: $orange;\r\n$anchor-color-hover: $green;\r\n$anchor-text-decoration: none;\r\n$anchor-text-decoration-hover: none;\r\n$hr-width: $global-width;\r\n$hr-border: 1px solid $medium-gray;\r\n$hr-margin: rem-calc(20) auto;\r\n$list-lineheight: $paragraph-lineheight;\r\n$list-margin-bottom: $paragraph-margin-bottom;\r\n$list-style-type: disc;\r\n$list-style-position: outside;\r\n$list-side-margin: 1.25rem;\r\n$list-nested-side-margin: 1.25rem;\r\n$defnlist-margin-bottom: 1rem;\r\n$defnlist-term-weight: $global-weight-bold;\r\n$defnlist-term-margin-bottom: 0.3rem;\r\n$blockquote-color: $dark-gray;\r\n$blockquote-padding: rem-calc(9 20 0 19);\r\n$blockquote-border: 1px solid $medium-gray;\r\n$cite-font-size: rem-calc(13);\r\n$cite-color: $dark-gray;\r\n$keystroke-font: $font-family-monospace;\r\n$keystroke-color: $black;\r\n$keystroke-background: $light-gray;\r\n$keystroke-padding: rem-calc(2 4 0);\r\n$keystroke-radius: $global-radius;\r\n$abbr-underline: 1px dotted $black;\r\n\r\n// 5. Typography Helpers\r\n// ---------------------\r\n\r\n$lead-font-size: $global-font-size * 1.25;\r\n$lead-lineheight: 1.6;\r\n$subheader-lineheight: 1.4;\r\n$subheader-color: $dark-gray;\r\n$subheader-font-weight: $global-weight-normal;\r\n$subheader-margin-top: 0.2rem;\r\n$subheader-margin-bottom: 0.5rem;\r\n$stat-font-size: 2.5rem;\r\n\r\n// 6. Abide\r\n// --------\r\n\r\n$abide-inputs: true;\r\n$abide-labels: true;\r\n$input-background-invalid: map-get($foundation-palette, alert);\r\n$form-label-color-invalid: map-get($foundation-palette, alert);\r\n$input-error-color: map-get($foundation-palette, alert);\r\n$input-error-font-size: rem-calc(12);\r\n$input-error-font-weight: $global-weight-bold;\r\n\r\n// 7. Accordion\r\n// ------------\r\n\r\n$accordion-background: $white;\r\n$accordion-plusminus: true;\r\n$accordion-item-color: foreground($accordion-background, $primary-color);\r\n$accordion-item-background-hover: $light-gray;\r\n$accordion-item-padding: 1.25rem 1rem;\r\n$accordion-content-background: $white;\r\n$accordion-content-border: 1px solid $light-gray;\r\n$accordion-content-color: foreground($accordion-background, $primary-color);\r\n$accordion-content-padding: 1rem;\r\n\r\n// 8. Accordion Menu\r\n// -----------------\r\n\r\n$accordionmenu-arrows: true;\r\n$accordionmenu-arrow-color: $primary-color;\r\n\r\n// 9. Badge\r\n// --------\r\n\r\n$badge-background: $primary-color;\r\n$badge-color: foreground($badge-background);\r\n$badge-padding: 0.3em;\r\n$badge-minwidth: 2.1em;\r\n$badge-font-size: 0.6rem;\r\n\r\n// 10. Breadcrumbs\r\n// ---------------\r\n\r\n$breadcrumbs-margin: 0 0 $global-margin 0;\r\n$breadcrumbs-item-font-size: rem-calc(14);\r\n$breadcrumbs-item-color: $black;\r\n$breadcrumbs-item-color-current: $green;\r\n$breadcrumbs-item-color-disabled: $medium-gray;\r\n$breadcrumbs-item-margin: 0.75rem;\r\n$breadcrumbs-item-uppercase: false;\r\n$breadcrumbs-item-slash: true;\r\n\r\n// 11. Button\r\n// ----------\r\n\r\n$button-padding: 0.85em 1em;\r\n$button-margin: 0 0 $global-margin 0;\r\n$button-fill: solid;\r\n$button-background: $primary-color;\r\n$button-background-hover: scale-color($button-background, $lightness: -15%);\r\n$button-color: $white;\r\n$button-color-alt: $black;\r\n$button-radius: $global-radius;\r\n$button-sizes: (\r\n  tiny: 0.6rem,\r\n  small: 0.75rem,\r\n  default: 0.9rem,\r\n  large: 1.25rem,\r\n);\r\n$button-opacity-disabled: 0.25;\r\n\r\n// 12. Button Group\r\n// ----------------\r\n\r\n$buttongroup-margin: 1rem;\r\n$buttongroup-spacing: 1px;\r\n$buttongroup-child-selector: '.button';\r\n$buttongroup-expand-max: 6;\r\n\r\n// 13. Callout\r\n// -----------\r\n\r\n$callout-background: $white;\r\n$callout-background-fade: 85%;\r\n$callout-border: 1px solid rgba($black, 0.25);\r\n$callout-margin: 0 0 1rem 0;\r\n$callout-padding: 1rem;\r\n$callout-font-color: $body-font-color;\r\n$callout-font-color-alt: $body-background;\r\n$callout-radius: $global-radius;\r\n$callout-link-tint: 30%;\r\n\r\n// 14. Close Button\r\n// ----------------\r\n\r\n$closebutton-position: right top;\r\n$closebutton-offset-horizontal: 1rem;\r\n$closebutton-offset-vertical: 0.5rem;\r\n$closebutton-size: 2em;\r\n$closebutton-lineheight: 1;\r\n$closebutton-color: $dark-gray;\r\n$closebutton-color-hover: $black;\r\n\r\n// 15. Drilldown\r\n// -------------\r\n\r\n$drilldown-transition: transform 0.15s linear;\r\n$drilldown-arrows: true;\r\n$drilldown-arrow-color: $primary-color;\r\n$drilldown-background: $white;\r\n\r\n// 16. Dropdown\r\n// ------------\r\n\r\n$dropdown-padding: 1rem;\r\n$dropdown-border: 1px solid $medium-gray;\r\n$dropdown-font-size: 1rem;\r\n$dropdown-width: 300px;\r\n$dropdown-radius: $global-radius;\r\n$dropdown-sizes: (\r\n  tiny: 100px,\r\n  small: 200px,\r\n  large: 400px,\r\n);\r\n\r\n// 17. Dropdown Menu\r\n// -----------------\r\n\r\n$dropdownmenu-arrows: false;\r\n$dropdownmenu-arrow-color: $anchor-color;\r\n$dropdownmenu-min-width: 200px;\r\n$dropdownmenu-background: $green;\r\n$dropdownmenu-border: 1px solid $orange;\r\n\r\n// 18. Flex Video\r\n// --------------\r\n\r\n$flexvideo-margin-bottom: rem-calc(16);\r\n$flexvideo-ratio: 4 by 3;\r\n$flexvideo-ratio-widescreen: 16 by 9;\r\n\r\n// 19. Forms\r\n// ---------\r\n\r\n$fieldset-border: 1px solid $medium-gray;\r\n$fieldset-padding: rem-calc(20);\r\n$fieldset-margin: rem-calc(18 0);\r\n$legend-padding: rem-calc(0 3);\r\n$form-spacing: rem-calc(16);\r\n$helptext-color: $black;\r\n$helptext-font-size: rem-calc(13);\r\n$helptext-font-style: italic;\r\n$input-prefix-color: $black;\r\n$input-prefix-background: $light-gray;\r\n$input-prefix-border: 1px solid $medium-gray;\r\n$input-prefix-padding: 1rem;\r\n$form-label-color: $black;\r\n$form-label-font-size: rem-calc(14);\r\n$form-label-font-weight: $global-weight-normal;\r\n$form-label-line-height: 1.8;\r\n$select-background: $white;\r\n$select-triangle-color: $dark-gray;\r\n$select-radius: $global-radius;\r\n$input-color: $black;\r\n$input-placeholder-color: $medium-gray;\r\n$input-font-family: inherit;\r\n$input-font-size: rem-calc(16);\r\n$input-background: $white;\r\n$input-background-focus: $white;\r\n$input-background-disabled: $light-gray;\r\n$input-border: 1px solid $medium-gray;\r\n$input-border-focus: 1px solid $dark-gray;\r\n$input-shadow: inset 0 1px 2px rgba($black, 0.1);\r\n$input-shadow-focus: 0 0 5px $medium-gray;\r\n$input-cursor-disabled: default;\r\n$input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;\r\n$input-number-spinners: true;\r\n$input-radius: $global-radius;\r\n\r\n// 20. Label\r\n// ---------\r\n\r\n$label-background: $primary-color;\r\n$label-color: foreground($label-background);\r\n$label-font-size: 0.8rem;\r\n$label-padding: 0.33333rem 0.5rem;\r\n$label-radius: $global-radius;\r\n\r\n// 21. Media Object\r\n// ----------------\r\n\r\n$mediaobject-margin-bottom: $global-margin;\r\n$mediaobject-section-padding: $global-padding;\r\n$mediaobject-image-width-stacked: 100%;\r\n\r\n// 22. Menu\r\n// --------\r\n\r\n$menu-margin: 0;\r\n$menu-margin-nested: 1rem;\r\n$menu-item-padding: 0.7rem 1rem;\r\n$menu-item-color-active: $orange;\r\n$menu-item-background-active: $green;\r\n$menu-icon-spacing: 0.25rem;\r\n\r\n// 23. Meter\r\n// ---------\r\n\r\n$meter-height: 1rem;\r\n$meter-radius: $global-radius;\r\n$meter-background: $medium-gray;\r\n$meter-fill-good: $success-color;\r\n$meter-fill-medium: $warning-color;\r\n$meter-fill-bad: $alert-color;\r\n\r\n// 24. Off-canvas\r\n// --------------\r\n\r\n$offcanvas-size: 250px;\r\n$offcanvas-background: $green;\r\n$offcanvas-zindex: -1;\r\n$offcanvas-transition-length: 0.5s;\r\n$offcanvas-transition-timing: ease;\r\n$offcanvas-fixed-reveal: true;\r\n$offcanvas-exit-background: rgba($white, 0.25);\r\n$maincontent-class: 'off-canvas-content';\r\n$maincontent-shadow: 0 0 10px rgba($black, 0.5);\r\n\r\n// 25. Orbit\r\n// ---------\r\n\r\n$orbit-bullet-background: $medium-gray;\r\n$orbit-bullet-background-active: $dark-gray;\r\n$orbit-bullet-diameter: 1.2rem;\r\n$orbit-bullet-margin: 0.1rem;\r\n$orbit-bullet-margin-top: 0.8rem;\r\n$orbit-bullet-margin-bottom: 0.8rem;\r\n$orbit-caption-background: rgba($black, 0.5);\r\n$orbit-caption-padding: 1rem;\r\n$orbit-control-background-hover: rgba($black, 0.5);\r\n$orbit-control-padding: 1rem;\r\n$orbit-control-zindex: 10;\r\n\r\n// 26. Pagination\r\n// --------------\r\n\r\n$pagination-font-size: rem-calc(14);\r\n$pagination-margin-bottom: $global-margin;\r\n$pagination-item-color: $black;\r\n$pagination-item-padding: rem-calc(3 10);\r\n$pagination-item-spacing: rem-calc(1);\r\n$pagination-radius: $global-radius;\r\n$pagination-item-background-hover: $light-gray;\r\n$pagination-item-background-current: $primary-color;\r\n$pagination-item-color-current: foreground($pagination-item-background-current);\r\n$pagination-item-color-disabled: $medium-gray;\r\n$pagination-ellipsis-color: $black;\r\n$pagination-mobile-items: false;\r\n$pagination-arrows: true;\r\n\r\n// 27. Progress Bar\r\n// ----------------\r\n\r\n$progress-height: 1rem;\r\n$progress-background: $medium-gray;\r\n$progress-margin-bottom: $global-margin;\r\n$progress-meter-background: $primary-color;\r\n$progress-radius: $global-radius;\r\n\r\n// 28. Reveal\r\n// ----------\r\n\r\n$reveal-background: $white;\r\n$reveal-width: 600px;\r\n$reveal-max-width: $global-width;\r\n$reveal-padding: $global-padding;\r\n$reveal-border: 1px solid $medium-gray;\r\n$reveal-radius: $global-radius;\r\n$reveal-zindex: 1005;\r\n$reveal-overlay-background: rgba($black, 0.45);\r\n\r\n// 29. Slider\r\n// ----------\r\n\r\n$slider-width-vertical: 0.5rem;\r\n$slider-transition: all 0.2s ease-in-out;\r\n$slider-height: 0.5rem;\r\n$slider-background: $light-gray;\r\n$slider-fill-background: $medium-gray;\r\n$slider-handle-height: 1.4rem;\r\n$slider-handle-width: 1.4rem;\r\n$slider-handle-background: $primary-color;\r\n$slider-opacity-disabled: 0.25;\r\n$slider-radius: $global-radius;\r\n\r\n// 30. Switch\r\n// ----------\r\n\r\n$switch-background: $medium-gray;\r\n$switch-background-active: $primary-color;\r\n$switch-height: 2rem;\r\n$switch-height-tiny: 1.5rem;\r\n$switch-height-small: 1.75rem;\r\n$switch-height-large: 2.5rem;\r\n$switch-radius: $global-radius;\r\n$switch-margin: $global-margin;\r\n$switch-paddle-background: $white;\r\n$switch-paddle-offset: 0.25rem;\r\n$switch-paddle-radius: $global-radius;\r\n$switch-paddle-transition: all 0.25s ease-out;\r\n\r\n// 31. Table\r\n// ---------\r\n\r\n$table-background: $white;\r\n$table-color-scale: 5%;\r\n$table-border: 1px solid smart-scale($table-background, $table-color-scale);\r\n$table-padding: rem-calc(8 10 10);\r\n$table-hover-scale: 2%;\r\n$table-row-hover: darken($table-background, $table-hover-scale);\r\n$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);\r\n$table-striped-background: smart-scale($table-background, $table-color-scale);\r\n$table-stripe: even;\r\n$table-head-background: smart-scale($table-background, $table-color-scale / 2);\r\n$table-foot-background: smart-scale($table-background, $table-color-scale);\r\n$table-head-font-color: $body-font-color;\r\n$show-header-for-stacked: false;\r\n\r\n// 32. Tabs\r\n// --------\r\n\r\n$tab-margin: 0;\r\n$tab-background: $white;\r\n$tab-background-active: $light-gray;\r\n$tab-item-font-size: rem-calc(12);\r\n$tab-item-background-hover: $white;\r\n$tab-item-padding: 1.25rem 1.5rem;\r\n$tab-expand-max: 6;\r\n$tab-content-background: $white;\r\n$tab-content-border: $light-gray;\r\n$tab-content-color: foreground($tab-background, $primary-color);\r\n$tab-content-padding: 1rem;\r\n\r\n// 33. Thumbnail\r\n// -------------\r\n\r\n$thumbnail-border: solid 4px $white;\r\n$thumbnail-margin-bottom: $global-margin;\r\n$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);\r\n$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);\r\n$thumbnail-transition: box-shadow 200ms ease-out;\r\n$thumbnail-radius: $global-radius;\r\n\r\n// 34. Title Bar\r\n// -------------\r\n\r\n$titlebar-background: $green;\r\n$titlebar-color: $white;\r\n$titlebar-padding: 0.5rem;\r\n$titlebar-text-font-weight: bold;\r\n$titlebar-icon-color: $white;\r\n$titlebar-icon-color-hover: $orange;\r\n$titlebar-icon-spacing: 0.25rem;\r\n\r\n// 35. Tooltip\r\n// -----------\r\n\r\n$has-tip-font-weight: $global-weight-bold;\r\n$has-tip-border-bottom: dotted 1px $dark-gray;\r\n$tooltip-background-color: $black;\r\n$tooltip-color: $white;\r\n$tooltip-padding: 0.75rem;\r\n$tooltip-font-size: $small-font-size;\r\n$tooltip-pip-width: 0.75rem;\r\n$tooltip-pip-height: $tooltip-pip-width * 0.866;\r\n$tooltip-radius: $global-radius;\r\n\r\n// 36. Top Bar\r\n// -----------\r\n\r\n$topbar-padding: 0.5rem;\r\n$topbar-background: $green;\r\n$topbar-submenu-background: $topbar-background;\r\n$topbar-title-spacing: 1rem;\r\n$topbar-input-width: 200px;\r\n$topbar-unstack-breakpoint: medium;\r\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n@import 'unit';\n@import 'value';\n@import 'color';\n@import 'selector';\n@import 'flex';\n@import 'breakpoint';\n@import 'mixins';\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group functions\n////\n\n$global-font-size: 100% !default;\n\n// scss-lint:disable ZeroUnit\n\n/// Removes the unit (e.g. px, em, rem) from a value, returning the number only.\n///\n/// @param {Number} $num - Number to strip unit from.\n///\n/// @returns {Number} The same number, sans unit.\n@function strip-unit($num) {\n  @return $num / ($num * 0 + 1);\n}\n\n/// Converts one or more pixel values into matching rem values.\n///\n/// @param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.\n/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.\n///\n/// @returns {List} A list of converted values.\n@function rem-calc($values, $base: null) {\n  $rem-values: ();\n  $count: length($values);\n\n  // If no base is defined, defer to the global font size\n  @if $base == null {\n    $base: $global-font-size;\n  }\n\n  // If the base font size is a %, then multiply it by 16px\n  // This is because 100% font size = 16px in most all browsers\n  @if unit($base) == '%' {\n    $base: ($base / 100%) * 16px;\n  }\n\n  @if $count == 1 {\n    @return -zf-to-rem($values, $base);\n  }\n\n  @for $i from 1 through $count {\n    $rem-values: append($rem-values, -zf-to-rem(nth($values, $i), $base));\n  }\n\n  @return $rem-values;\n}\n\n// Converts a unitless, pixel, or rem value to em, for use in breakpoints.\n@function -zf-bp-to-em($value) {\n  // Pixel and unitless values are converted to rems\n  @if unit($value) == 'px' or unitless($value) {\n    $value: rem-calc($value, $base: 16px);\n  }\n\n  // Then the value is converted to ems\n  @return strip-unit($value) * 1em;\n}\n\n/// Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.\n/// @access private\n///\n/// @param {Number} $value - Pixel value to convert.\n/// @param {Number} $base [null] - Base for pixel conversion.\n///\n/// @returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.\n@function -zf-to-rem($value, $base: null) {\n  // Check if the value is a number\n  @if type-of($value) != 'number' {\n    @warn inspect($value) + ' was passed to rem-calc(), which is not a number.';\n    @return $value;\n  }\n\n  // Calculate rem if units for $value is not rem\n  @if unit($value) != 'rem' {\n    $value: strip-unit($value) / strip-unit($base) * 1rem;\n  }\n\n  // Turn 0rem into 0\n  @if $value == 0rem {\n    $value: 0;\n  }\n\n  @return $value;\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group functions\n////\n\n/// Determine if a value is not falsey, in CSS terms. Falsey values are `null`, `none`, `0` with any unit, or an empty list.\n///\n/// @param {Mixed} $val - Value to check.\n///\n/// @returns {Boolean} `true` if `$val` is not falsey.\n@function has-value($val) {\n  @if $val == null or $val == none {\n    @return false;\n  }\n  @if type-of($val) == 'number' and strip-unit($val) == 0 {\n    @return false;\n  }\n  @if type-of($val) == 'list' and length($val) == 0 {\n    @return false;\n  }\n  @return true;\n}\n\n/// Determine a top/right/bottom/right value on a padding, margin, etc. property, no matter how many values were passed in. Use this function if you need to know the specific side of a value, but don't know if the value is using a shorthand format.\n///\n/// @param {List|Number} $val - Value to analyze. Should be a shorthand sizing property, e.g. \"1em 2em 1em\"\n/// @param {Keyword} $side - Side to return. Should be `top`, `right`, `bottom`, or `left`.\n///\n/// @returns {Number} A single value based on `$val` and `$side`.\n@function get-side($val, $side) {\n  $length: length($val);\n\n  @if $length == 1 {\n    @return $val;\n  }\n  @if $length == 2 {\n    @return map-get((\n      top: nth($val, 1),\n      bottom: nth($val, 1),\n      left: nth($val, 2),\n      right: nth($val, 2),\n    ), $side);\n  }\n  @if $length == 3 {\n    @return map-get((\n      top: nth($val, 1),\n      left: nth($val, 2),\n      right: nth($val, 2),\n      bottom: nth($val, 3),\n    ), $side);\n  }\n  @if $length == 4 {\n    @return map-get((\n      top: nth($val, 1),\n      right: nth($val, 2),\n      bottom: nth($val, 3),\n      left: nth($val, 4),\n    ), $side);\n  }\n}\n\n/// Given border $val, find a specific element of the border, which is $elem. The possible values for $elem are width, style, and color.\n///\n/// @param {List} $val - Border value to find a value in.\n/// @param {Keyword} $elem - Border component to extract.\n///\n/// @returns {Mixed} If the value exists, returns the value. If the value is not in the border definition, the function will return a 0px width, solid style, or black border.\n@function get-border-value($val, $elem) {\n  // Find the width, style, or color and return it\n  @each $v in $val {\n    $type: type-of($v);\n    @if $elem == width and $type == 'number' {\n      @return $v;\n    }\n    @if $elem == style and $type == 'string' {\n      @return $v;\n    }\n    @if $elem == color and $type == 'color' {\n      @return $v;\n    }\n  }\n\n  // Defaults\n  $defaults: (\n    width: 0,\n    style: solid,\n    color: #000,\n  );\n\n  @return map-get($defaults, $elem);\n}\n\n/// Finds a value in a nested map.\n/// @link https://css-tricks.com/snippets/sass/deep-getset-maps/ Deep Get/Set in Maps\n///\n/// @param {Map} $map - Map to pull a value from.\n/// @param {String} $keys... - Keys to use when looking for a value.\n/// @returns {Mixed} The value found in the map.\n@function map-deep-get($map, $keys...) {\n  @each $key in $keys {\n    $map: map-get($map, $key);\n  }\n  @return $map;\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group functions\n////\n\n/// Checks the lightness of `$color`, and if it passes the `$threshold` of lightness, it returns the `$yes` color. Otherwise, it returns the `$no` color. Use this function to dynamically output a foreground color based on a given background color.\n///\n/// @param {Color} $color - Color to check the lightness of.\n/// @param {Color} $yes [$black] - Color to return if `$color` is light.\n/// @param {Color} $no [$white] - Color to return if `$color` is dark.\n/// @param {Percentage} $threshold [60%] - Threshold of lightness to check against.\n///\n/// @returns {Color} The $yes color or $no color.\n@function foreground($color, $yes: $black, $no: $white, $threshold: 60%) {\n  @if $color == transparent {\n    $color: $body-background;\n  }\n  @if (lightness($color) > $threshold) {\n    @return $yes;\n  }\n  @else {\n    @return $no;\n  }\n}\n\n/// Scales a color to be lighter if it's light, or darker if it's dark. Use this function to tint a color appropriate to its lightness.\n///\n/// @param {Color} $color - Color to scale.\n/// @param {Percentage} $scale [5%] - Amount to scale up or down.\n/// @param {Percentage} $threshold [40%] - Threshold of lightness to check against.\n///\n/// @returns {Color} A scaled color.\n@function smart-scale($color, $scale: 5%, $threshold: 40%) {\n  @if lightness($color) > $threshold {\n    $scale: -$scale;\n  }\n  @return scale-color($color, $lightness: $scale);\n}\n\n/// Transfers the colors in the `$foundation-palette` variable into the legacy color variables, such as `$primary-color` and `$secondary-color`. Call this mixin below the Global section of your settings file to properly migrate your codebase.\n@mixin add-foundation-colors() {\n  @if map-has-key($foundation-palette, primary) {\n    $primary-color: map-get($foundation-palette, primary) !global;\n  }\n  @if map-has-key($foundation-palette, secondary) {\n    $secondary-color: map-get($foundation-palette, secondary) !global;\n  }\n  @if map-has-key($foundation-palette, success) {\n    $success-color: map-get($foundation-palette, success) !global;\n  }\n  @if map-has-key($foundation-palette, warning) {\n    $warning-color: map-get($foundation-palette, warning) !global;\n  }\n  @if map-has-key($foundation-palette, alert) {\n    $alert-color: map-get($foundation-palette, alert) !global;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group functions\n////\n\n/// Generates a selector with every text input type. You can also filter the list to only output a subset of those selectors.\n///\n/// @param {List|Keyword} $types [()] - A list of text input types to use. Leave blank to use all of them.\n@function text-inputs($types: ()) {\n  $return: ();\n\n  $all-types:\n    text\n    password\n    date\n    datetime\n    datetime-local\n    month\n    week\n    email\n    number\n    search\n    tel\n    time\n    url\n    color;\n\n  @if not has-value($types) {\n    $types: $all-types;\n  }\n\n  @each $type in $types {\n    $return: append($return, unquote('[type=\\'#{$type}\\']'), comma);\n  }\n\n  @return $return;\n}\n","$-zf-flex-justify: (\n  'left': flex-start,\n  'right': flex-end,\n  'center': center,\n  'justify': space-between,\n  'spaced': space-around,\n);\n\n$-zf-flex-align: (\n  'top': flex-start,\n  'bottom': flex-end,\n  'middle': center,\n  'stretch': stretch,\n);\n\n/// Enables flexbox by adding `display: flex` to the element.\n@mixin flex {\n  display: flex;\n}\n\n/// Horizontally or vertically aligns the items within a flex container.\n///\n/// @param {Keyword} $x [null] - Horizontal alignment to use. Can be `left`, `right`, `center`, `justify`, or `spaced`. Or, set it to `null` (the default) to not set horizontal alignment.\n/// @param {Keyword} $y [null] - Vertical alignment to use. Can be `top`, `bottom`, `middle`, or `stretch`. Or, set it to `null` (the default) to not set vertical alignment.\n@mixin flex-align($x: null, $y: null) {\n  @if $x {\n    @if map-has-key($-zf-flex-justify, $x) {\n      $x: map-get($-zf-flex-justify, $x);\n    }\n    @else {\n      @warn 'flex-grid-row-align(): #{$x} is not a valid value for horizontal alignment. Use left, right, center, justify, or spaced.'\n    }\n  }\n\n  @if $y {\n    @if map-has-key($-zf-flex-align, $y) {\n      $y: map-get($-zf-flex-align, $y);\n    }\n    @else {\n      @warn 'flex-grid-row-align(): #{$y} is not a valid value for vertical alignment. Use top, bottom, middle, or stretch.'\n    }\n  }\n\n  justify-content: $x;\n  align-items: $y;\n}\n\n/// Vertically align a single column within a flex row. Apply this mixin to a flex column.\n///\n/// @param {Keyword} $y [null] - Vertical alignment to use. Can be `top`, `bottom`, `middle`, or `stretch`. Or, set it to `null` (the default) to not set vertical alignment.\n@mixin flex-align-self($y: null) {\n  @if $y {\n    @if map-has-key($-zf-flex-align, $y) {\n      $y: map-get($-zf-flex-align, $y);\n    }\n    @else {\n      @warn 'flex-grid-column-align(): #{$y} is not a valid value for alignment. Use top, bottom, middle, or stretch.'\n    }\n  }\n\n  align-self: $y;\n}\n\n/// Changes the source order of a flex child. Children with lower numbers appear first in the layout.\n/// @param {Number} $order [0] - Order number to apply.\n@mixin flex-order($order: 0) {\n  order: $order;\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group breakpoints\n////\n\n// scss-lint:disable ZeroUnit\n\n/// A list of named breakpoints. You can use these with the `breakpoint()` mixin to quickly create media queries.\n/// @type Map\n$breakpoints: (\n  small: 0,\n  medium: 640px,\n  large: 1024px,\n  xlarge: 1200px,\n  xxlarge: 1440px,\n) !default;\n\n$-zf-zero-breakpoint: small !default;\n\n@if nth(map-values($breakpoints), 1) != 0 {\n  @error 'Your smallest breakpoint (defined in $breakpoints) must be set to \"0\".';\n}\n@else {\n  $-zf-zero-breakpoint: nth(map-keys($breakpoints), 1);\n}\n\n/// All of the names in this list will be output as classes in your CSS, like `.small-12`, `.medium-6`, and so on. Each value in this list must also be in the `$breakpoints` map.\n/// @type List\n$breakpoint-classes: (small medium large) !default;\n\n/// Generates a media query string matching the input value. Refer to the documentation for the `breakpoint()` mixin to see what the possible inputs are.\n///\n/// @param {Keyword|Number} $val [small] - Breakpoint name, or px, rem, or em value to process.\n@function breakpoint($val: $-zf-zero-breakpoint) {\n  // Size or keyword\n  $bp: nth($val, 1);\n  // Value for max-width media queries\n  $bp-max: 0;\n  // Direction of media query (up, down, or only)\n  $dir: if(length($val) > 1, nth($val, 2), up);\n  // Eventual output\n  $str: '';\n  // Is it a named media query?\n  $named: false;\n\n  // Orientation media queries have a unique syntax\n  @if $bp == 'landscape' or $bp == 'portrait' {\n    @return '(orientation: #{$bp})';\n  }\n  @else if $bp == 'retina' {\n    @return '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)';\n  }\n\n  // Try to pull a named breakpoint out of the $breakpoints map\n  @if type-of($bp) == 'string' {\n    @if map-has-key($breakpoints, $bp) {\n      @if $dir == 'only' or $dir == 'down' {\n        $bp-max: -zf-map-next($breakpoints, $bp);\n      }\n\n      $bp: map-get($breakpoints, $bp);\n      $named: true;\n    }\n    @else {\n      $bp: 0;\n      @warn 'breakpoint(): \"#{$val}\" is not defined in your $breakpoints setting.';\n    }\n  }\n\n  // Convert any pixel, rem, or unitless value to em\n  $bp: -zf-bp-to-em($bp);\n  @if $bp-max {\n    $bp-max: -zf-bp-to-em($bp-max) - (1/16);\n  }\n\n  // Conditions to skip media query creation\n  // - It's a named breakpoint that resolved to \"0 down\" or \"0 up\"\n  // - It's a numeric breakpoint that resolved to \"0 \" + anything\n  @if $bp > 0em or $dir == 'only' or $dir == 'down' {\n    // `only` ranges use the format `(min-width: n) and (max-width: n)`\n    @if $dir == 'only' {\n      // Only named media queries can have an \"only\" range\n      @if $named == true {\n        // Only use \"min-width\" if the floor is greater than 0\n        @if $bp > 0em {\n          $str: $str + '(min-width: #{$bp})';\n\n          // Only add \"and\" to the media query if there's a ceiling\n          @if $bp-max != null {\n            $str: $str + ' and ';\n          }\n        }\n\n        // Only use \"max-width\" if there's a ceiling\n        @if $bp-max != null {\n          $str: $str + '(max-width: #{$bp-max})';\n        }\n      }\n      @else {\n        @warn 'breakpoint(): Only named media queries can have an `only` range.';\n      }\n    }\n\n    // `down` ranges use the format `(max-width: n)`\n    @else if $dir == 'down' {\n      $max: if($named, $bp-max, $bp);\n\n      // Skip media query creation if input value is exactly \"0 down\",\n      // unless the function was called as \"small down\", in which case it's just \"small only\"\n      @if $named or $bp > 0em {\n        @if $max != null {\n          $str: $str + '(max-width: #{$max})';\n        }\n      }\n    }\n\n    // `up` ranges use the format `(min-width: n)`\n    @else if $bp > 0em {\n      $str: $str + '(min-width: #{$bp})';\n    }\n  }\n\n  @return $str;\n}\n\n/// Wraps a media query around the content you put inside the mixin. This mixin accepts a number of values:\n///  - If a string is passed, the mixin will look for it in the `$breakpoints` map, and use a media query there.\n///  - If a pixel value is passed, it will be converted to an em value using `$global-font-size` as the base.\n///  - If a rem value is passed, the unit will be changed to em.\n///  - If an em value is passed, the value will be used as-is.\n///\n/// @param {Keyword|Number} $value - Breakpoint name, or px, rem, or em value to process.\n///\n/// @output If the breakpoint is \"0px and larger\", outputs the content as-is. Otherwise, outputs the content wrapped in a media query.\n@mixin breakpoint($value) {\n  $str: breakpoint($value);\n\n  // If $str is still an empty string, no media query is needed\n  @if $str == '' {\n    @content;\n  }\n\n  // Otherwise, wrap the content in a media query\n  @else {\n    @media screen and #{$str} {\n      @content;\n    }\n  }\n}\n\n/// Convers the breakpoints map to a URL-encoded string, like this: `key1=value1&key2=value2`. The value is then dropped into the CSS for a special `<meta>` tag, which is read by the Foundation JavaScript. This is how we transfer values from Sass to JavaScript, so they can be defined in one place.\n/// @access private\n///\n/// @param {Map} $map - Map to convert.\n///\n/// @returns {String} A string containing the map's contents.\n@function -zf-bp-serialize($map) {\n  $str: '';\n  @each $key, $value in $map {\n    $str: $str + $key + '=' + -zf-bp-to-em($value) + '&';\n  }\n  $str: str-slice($str, 1, -2);\n\n  @return $str;\n}\n\n/// Find the next key in a map.\n/// @access private\n///\n/// @param {Map} $map - Map to traverse.\n/// @param {Mixed} $key - Key to use as a starting point.\n///\n/// @returns {Mixed} The value for the key after `$key`, if `$key` was found. If `$key` was not found, or `$key` was the last value in the map, returns `null`.\n@function -zf-map-next($map, $key) {\n  // Store the values of the map as a list, so we can access them with nth\n  $values: map-values($map);\n\n  // Ghetto for loop\n  $i: 1;\n  $found: false;\n  @each $val in map-keys($map) {\n    @if $found == false {\n      @if ($key == $val) {\n        $found: true;\n      }\n      $i: $i + 1;\n    }\n  }\n\n  // If the key doesn't exist, or it's the last key in the map, return null\n  @if $i > length($map) {\n    @return null;\n  }\n  // Otherwise, return the value\n  @else {\n    @return nth($values, $i);\n  }\n}\n\n/// Get a value for a breakpoint from a responsive config map. If the config map has the key `$value`, the exact breakpoint value is returned. If the config map does *not* have the breakpoint, the value matching the next lowest breakpoint in the config map is returned.\n/// @access private\n///\n/// @param {Map} $map - Input config map.\n/// @param {Keyword} $value - Breakpoint name to use.\n///\n/// @return {Mixed} The corresponding breakpoint value.\n@function -zf-get-bp-val($map, $value) {\n  // Check if the breakpoint name exists globally\n  @if not map-has-key($breakpoints, $value) {\n    @return null;\n  }\n  // Check if the breakpoint name exists in the local config map\n  @else if map-has-key($map, $value) {\n    // If it does, just return the value\n    @return map-get($map, $value);\n  }\n  // Otherwise, find the next lowest breakpoint and return that value\n  @else {\n    $anchor: null;\n    $found: false;\n\n    @each $key, $val in $breakpoints {\n      @if not $found {\n        @if map-has-key($map, $key) {\n          $anchor: $key;\n        }\n        @if $key == $value {\n          $found: true;\n        }\n      }\n    }\n\n    @return map-get($map, $anchor);\n  }\n}\n\n// Legacy breakpoint variables\n// These will be removed in 6.3\n$small-up: null;\n$small-only: null;\n$medium-up: null;\n$medium-only: null;\n$large-up: null;\n$large-only: null;\n$xlarge-up: null;\n$xlarge-only: null;\n$xxlarge-up: null;\n$xxlarge-only: null;\n\n@if map-has-key($breakpoints, small) {\n  $small-up: screen;\n  $small-only: unquote('screen and #{breakpoint(small only)}');\n}\n\n@if map-has-key($breakpoints, medium) {\n  $medium-up: unquote('screen and #{breakpoint(medium)}');\n  $medium-only: unquote('screen and #{breakpoint(medium only)}');\n}\n\n@if map-has-key($breakpoints, large) {\n  $large-up: unquote('screen and #{breakpoint(large)}');\n  $large-only: unquote('screen and #{breakpoint(large only)}');\n}\n\n@if map-has-key($breakpoints, xlarge) {\n  $xlarge-up: unquote('screen and #{breakpoint(xlarge)}');\n  $xlarge-only: unquote('screen and #{breakpoint(xlarge only)}');\n}\n\n@if map-has-key($breakpoints, xxlarge) {\n  $xxlarge-up: unquote('screen and #{breakpoint(xxlarge)}');\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group functions\n////\n\n/// Creates a CSS triangle, which can be used for dropdown arrows, dropdown pips, and more. Use this mixin inside a `&::before` or `&::after` selector, to attach the triangle to an existing element.\n///\n/// @param {Number} $triangle-size - Width of the triangle.\n/// @param {Color} $triangle-color - Color of the triangle.\n/// @param {Keyword} $triangle-direction - Direction the triangle points. Can be `up`, `right`, `down`, or `left`.\n@mixin css-triangle(\n  $triangle-size,\n  $triangle-color,\n  $triangle-direction\n) {\n  content: '';\n  display: block;\n  width: 0;\n  height: 0;\n  border: inset $triangle-size;\n\n  @if ($triangle-direction == down) {\n    border-color: $triangle-color transparent transparent;\n    border-top-style: solid;\n    border-bottom-width: 0;\n  }\n  @if ($triangle-direction == up) {\n    border-color: transparent transparent $triangle-color;\n    border-bottom-style: solid;\n    border-top-width: 0;\n  }\n  @if ($triangle-direction == right) {\n    border-color: transparent transparent transparent $triangle-color;\n    border-left-style: solid;\n    border-right-width: 0;\n  }\n  @if ($triangle-direction == left) {\n    border-color: transparent $triangle-color transparent transparent;\n    border-right-style: solid;\n    border-left-width: 0;\n  }\n}\n\n/// Creates a menu icon with a set width, height, number of bars, and colors. The mixin uses the height of the icon and the weight of the bars to determine spacing. <div class=\"docs-example-burger\"></div>\n///\n/// @param {Color} $color [$black] - Color to use for the icon.\n/// @param {Color} $color-hover [$dark-gray] - Color to use when the icon is hovered over.\n/// @param {Number} $width [20px] - Width of the icon.\n/// @param {Number} $height [16px] - Height of the icon.\n/// @param {Number} $weight [2px] - Height of individual bars in the icon.\n/// @param {Number} $bars [3] - Number of bars in the icon.\n@mixin hamburger(\n  $color: $black,\n  $color-hover: $dark-gray,\n  $width: 20px,\n  $height: 16px,\n  $weight: 2px,\n  $bars: 3\n) {\n  // box-shadow CSS output\n  $shadow: ();\n  $hover-shadow: ();\n\n  // Spacing between bars is calculated based on the total height of the icon and the weight of each bar\n  $spacing: floor(($height - ($weight * $bars)) / ($bars - 1));\n\n  // Icon container\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n  cursor: pointer;\n  width: $width;\n  height: $height;\n\n  // Icon bars\n  &::after {\n    content: '';\n    position: absolute;\n    display: block;\n    width: 100%;\n    height: $weight;\n    background: $color;\n    top: 0;\n    left: 0;\n\n    @for $i from 2 through $bars {\n      $offset: ($weight + $spacing) * ($i - 1);\n      $shadow: append($shadow, 0 $offset 0 $color, comma);\n    }\n\n    box-shadow: $shadow;\n  }\n\n  // Hover state\n  @if $color-hover {\n    // Generate CSS\n    @for $i from 2 through $bars {\n      $offset: ($weight + $spacing) * ($i - 1);\n      $hover-shadow: append($hover-shadow, 0 $offset 0 $color-hover, comma);\n    }\n\n    &:hover::after {\n      background: $color-hover;\n      box-shadow: $hover-shadow;\n    }\n  }\n}\n\n/// Adds a downward-facing triangle as a background image to an element. The image is formatted as an SVG, making it easy to change the color. Because Internet Explorer doesn't support encoded SVGs as background images, a PNG fallback is also included.\n/// There are two PNG fallbacks: a black triangle and a white triangle. The one used depends on the lightness of the input color.\n///\n/// @param {Color} $color [$black] - Color to use for the triangle.\n@mixin background-triangle($color: $black) {\n  $rgb: 'rgb%28#{red($color)}, #{green($color)}, #{blue($color)}%29';\n\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: #{$rgb}'></polygon></svg>\");\n\n  @media screen and (min-width:0\\0) {\n    @if lightness($color) < 60% {\n      // White triangle\n      background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==');\n    }\n    @else {\n      // Black triangle\n      background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMBJREFUeNrEllsOhCAMRVszC9IlzU7KCmVHTJsoMWYMUtpyv9BgbuXQB5ZSdgBYYY4ycgBivk8KYFsQMfMiTTBP4o3nUzCKzOabLJbLy2/g31evGkAginR4/ZegKH5qX3bJCscA3t0x3kgO5tQFyhhFf50xRqFLbyMUNJQzgyjGS/wgCpvKqkRBpuWrE4V9d+1E4dPUXqIg107SQOE/2DRQxMwTDygIInVDET9T3lCoj/6j/VCmGjZOl2lKpZ8AAwDQP7zIimDGFQAAAABJRU5ErkJggg==');\n    }\n  }\n}\n\n/// Applies the micro clearfix hack popularized by Nicolas Gallagher. Include this mixin on a container if its children are all floated, to give the container a proper height.\n/// The clearfix is augmented with specific styles to prevent borders in flexbox environments\n/// @link http://nicolasgallagher.com/micro-clearfix-hack/ Micro Clearfix Hack\n/// @link http://danisadesigner.com/blog/flexbox-clear-fix-pseudo-elements/ Flexbox fix\n@mixin clearfix {\n  &::before,\n  &::after {\n    content: ' ';\n    display: table;\n    @if $global-flexbox {\n      flex-basis: 0;\n      order: 1;\n    }\n  }\n\n  &::after {\n    clear: both;\n  }\n}\n\n/// Adds CSS for a \"quantity query\" selector that automatically sizes elements based on how many there are inside a container.\n/// @link http://alistapart.com/article/quantity-queries-for-css Quantity Queries for CSS\n///\n/// @param {Number} $max - Maximum number of items to detect. The higher this number is, the more CSS that's required to cover each number of items.\n/// @param {Keyword} $elem [li] - Tag to use for sibling selectors.\n@mixin auto-width($max, $elem: li) {\n  @for $i from 2 through $max {\n    &:nth-last-child(#{$i}):first-child,\n    &:nth-last-child(#{$i}):first-child ~ #{$elem} {\n      width: percentage(1 / $i);\n    }\n  }\n}\n\n/// Removes the focus ring around an element when a mouse input is detected.\n@mixin disable-mouse-outline {\n  [data-whatinput='mouse'] & {\n    outline: 0;\n  }\n}\n\n/// Makes an element visually hidden, but still accessible to keyboards and assistive devices.\n/// @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility Hiding Content for Accessibility\n@mixin element-invisible {\n  position: absolute !important;\n  width: 1px;\n  height: 1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n}\n\n/// Reverses the CSS output created by the `element-invisible()` mixin.\n@mixin element-invisible-off {\n  position: static !important;\n  height: auto;\n  width: auto;\n  overflow: visible;\n  clip: auto;\n}\n\n/// Vertically centers the element inside of its first non-static parent,\n/// @link http://www.sitepoint.com/centering-with-sass/ Centering With Sass\n@mixin vertical-center {\n  position: absolute;\n  top: 50%;\n  transform: translateY(-50%);\n}\n\n/// Horizontally centers the element inside of its first non-static parent,\n/// @link http://www.sitepoint.com/centering-with-sass/ Centering With Sass\n@mixin horizontal-center {\n  position: absolute;\n  left: 50%;\n  transform: translateX(-50%);\n}\n\n/// Absolutely centers the element inside of its first non-static parent,\n/// @link http://www.sitepoint.com/centering-with-sass/ Centering With Sass\n@mixin absolute-center {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translate(-50%, -50%);\n}\n\n/// Iterates through breakpoints defined in `$breakpoint-classes` and prints the CSS inside the mixin at each breakpoint's media query. Use this with the grid, or any other component that has responsive classes.\n///\n/// @param {Boolean} $small [true] - If `false`, the mixin will skip the `small` breakpoint. Use this with components that don't prefix classes with `small-`, only `medium-` and up.\n@mixin -zf-each-breakpoint($small: true) {\n  $map: $breakpoint-classes;\n\n  @if not $small {\n    $map: map-remove($map, $-zf-zero-breakpoint);\n  }\n\n  @each $size in $map {\n    $-zf-size: $size !global;\n\n    @include breakpoint($size) {\n      @content;\n    }\n  }\n}\n","/**\n * Foundation for Sites by ZURB\n * Version 6.2.3\n * foundation.zurb.com\n * Licensed under MIT Open Source\n */\n\n// Sass utilities\n@import 'util/util';\n\n// Global variables and styles\n@import 'global';\n\n// Components\n@import 'grid/grid';\n@import 'typography/typography';\n@import 'forms/forms';\n@import 'components/visibility';\n@import 'components/float';\n@import 'components/button';\n@import 'components/button-group';\n@import 'components/accordion-menu';\n@import 'components/accordion';\n@import 'components/badge';\n@import 'components/breadcrumbs';\n@import 'components/callout';\n@import 'components/close-button';\n@import 'components/drilldown';\n@import 'components/dropdown-menu';\n@import 'components/dropdown';\n@import 'components/flex';\n@import 'components/flex-video';\n@import 'components/label';\n@import 'components/media-object';\n@import 'components/menu';\n@import 'components/menu-icon';\n@import 'components/off-canvas';\n@import 'components/orbit';\n@import 'components/pagination';\n@import 'components/progress-bar';\n@import 'components/reveal';\n@import 'components/slider';\n@import 'components/sticky';\n@import 'components/switch';\n@import 'components/table';\n@import 'components/tabs';\n@import 'components/title-bar';\n@import 'components/top-bar';\n@import 'components/thumbnail';\n@import 'components/tooltip';\n\n@mixin foundation-everything($flex: false) {\n  @if $flex {\n    $global-flexbox: true !global;\n  }\n\n  @include foundation-global-styles;\n  @if not $flex {\n    @include foundation-grid;\n  }\n  @else {\n    @include foundation-flex-grid;\n  }\n  @include foundation-typography;\n  @include foundation-forms;\n  @include foundation-button;\n  @include foundation-accordion;\n  @include foundation-accordion-menu;\n  @include foundation-badge;\n  @include foundation-breadcrumbs;\n  @include foundation-button-group;\n  @include foundation-callout;\n  @include foundation-close-button;\n  @include foundation-menu;\n  @include foundation-menu-icon;\n  @include foundation-drilldown-menu;\n  @include foundation-dropdown;\n  @include foundation-dropdown-menu;\n  @include foundation-flex-video;\n  @include foundation-label;\n  @include foundation-media-object;\n  @include foundation-off-canvas;\n  @include foundation-orbit;\n  @include foundation-pagination;\n  @include foundation-progress-bar;\n  @include foundation-slider;\n  @include foundation-sticky;\n  @include foundation-reveal;\n  @include foundation-switch;\n  @include foundation-table;\n  @include foundation-tabs;\n  @include foundation-thumbnail;\n  @include foundation-title-bar;\n  @include foundation-tooltip;\n  @include foundation-top-bar;\n  @include foundation-visibility-classes;\n  @include foundation-float-classes;\n\n  @if $flex {\n    @include foundation-flex-classes;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n@import 'unit';\n@import 'value';\n@import 'color';\n@import 'selector';\n@import 'flex';\n@import 'breakpoint';\n@import 'mixins';\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n// scss-lint:disable ColorVariable, QualifyingElement, VendorPrefix\n\n////\n/// @group global\n////\n\n/// Font size attribute applied to `<html>` and `<body>`. We use 100% by default so the value is inherited from the user's browser settings.\n/// @type Number\n$global-font-size: 100% !default;\n\n/// Global width of your site. Used by the grid to determine row width.\n/// @type Number\n$global-width: rem-calc(1200) !default;\n\n/// Default line height for all type. `$global-lineheight` is 24px while `$global-font-size` is 16px\n/// @type Number\n$global-lineheight: 1.5 !default;\n\n/// Colors used for buttons, callouts, links, etc. There must always be a color called `primary`.\n/// @type Map\n$foundation-palette: (\n  primary: #2199e8,\n  secondary: #777,\n  success: #3adb76,\n  warning: #ffae00,\n  alert: #ec5840,\n) !default;\n\n/// Color used for light gray UI items.\n/// @type Color\n$light-gray: #e6e6e6 !default;\n\n/// Color used for medium gray UI items.\n/// @type Color\n$medium-gray: #cacaca !default;\n\n/// Color used for dark gray UI items.\n/// @type Color\n$dark-gray: #8a8a8a !default;\n\n/// Color used for black ui items.\n/// @type Color\n$black: #0a0a0a !default;\n\n/// Color used for white ui items.\n/// @type Color\n$white: #fefefe !default;\n\n/// Background color of the body.\n/// @type Color\n$body-background: $white !default;\n\n/// Text color of the body.\n/// @type Color\n$body-font-color: $black !default;\n\n/// Font stack of the body.\n/// @type List\n$body-font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif !default;\n\n/// Set to `true` to enable antialiased type, using the `-webkit-font-smoothing` and `-moz-osx-font-smoothing` CSS properties.\n/// @type Boolean\n$body-antialiased: true !default;\n\n/// Global value used for margin on components.\n/// @type Number\n$global-margin: 1rem !default;\n\n/// Global value used for padding on components.\n/// @type Number\n$global-padding: 1rem !default;\n\n/// Global font weight used for normal type.\n/// @type Keyword | Number\n$global-weight-normal: normal !default;\n\n/// Global font weight used for bold type.\n/// @type Keyword | Number\n$global-weight-bold: bold !default;\n\n/// Global value used for all elements that have a border radius.\n/// @type Number\n$global-radius: 0 !default;\n\n/// Sets the text direction of the CSS. Can be either `ltr` or `rtl`.\n/// @type Keyword\n$global-text-direction: ltr !default;\n\n/// Enables flexbox for components that support it.\n/// @type Boolean\n$global-flexbox: false !default;\n\n@if not map-has-key($foundation-palette, primary) {\n  @error 'In $foundation-palette, you must have a color named \"primary\".';\n}\n\n// Internal variables used for text direction\n$global-left: if($global-text-direction == rtl, right, left);\n$global-right: if($global-text-direction == rtl, left, right);\n\n// Internal variables used for colors\n$primary-color: map-get($foundation-palette, primary);\n$secondary-color: map-get($foundation-palette, secondary);\n$success-color: map-get($foundation-palette, success);\n$warning-color: map-get($foundation-palette, warning);\n$alert-color: map-get($foundation-palette, alert);\n\n// Remove this in 6.3\n$-zf-menu-icon-imported: false;\n$-zf-flex-classes-imported: false;\n\n@mixin foundation-global-styles {\n  @include -zf-normalize;\n\n  // These styles are applied to a <meta> tag, which is read by the Foundation JavaScript\n  .foundation-mq {\n    font-family: '#{-zf-bp-serialize($breakpoints)}';\n  }\n\n  html {\n    font-size: $global-font-size;\n    box-sizing: border-box;\n  }\n\n  // Set box-sizing globally to handle padding and border widths\n  *,\n  *::before,\n  *::after {\n    box-sizing: inherit;\n  }\n\n  // Default body styles\n  body {\n    padding: 0;\n    margin: 0;\n    font-family: $body-font-family;\n    font-weight: $global-weight-normal;\n    line-height: $global-lineheight;\n    color: $body-font-color;\n    background: $body-background;\n\n    @if ($body-antialiased) {\n      -webkit-font-smoothing: antialiased;\n      -moz-osx-font-smoothing: grayscale;\n    }\n  }\n\n  img {\n    // Grid defaults to get images and embeds to work properly\n    max-width: 100%;\n    height: auto;\n    -ms-interpolation-mode: bicubic;\n\n    // Get rid of gap under images by making them display: inline-block; by default\n    display: inline-block;\n    vertical-align: middle;\n  }\n\n  // Make sure textarea takes on height automatically\n  textarea {\n    height: auto;\n    min-height: 50px;\n    border-radius: $global-radius;\n  }\n\n  // Make select elements are 100% width by default\n  select {\n    width: 100%;\n    border-radius: $global-radius;\n  }\n\n  // Styles Google Maps and MapQuest embeds properly\n  // scss-lint:disable IdSelector\n  #map_canvas,\n  .map_canvas,\n  .mqa-display {\n    img,\n    embed,\n    object {\n      max-width: none !important;\n    }\n  }\n\n  // Reset <button> styles created by most browsers\n  button {\n    @include disable-mouse-outline;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    background: transparent;\n    padding: 0;\n    border: 0;\n    border-radius: $global-radius;\n    line-height: 1;\n  }\n\n  // Internal classes to show/hide elements in JavaScript\n  .is-visible {\n    display: block !important;\n  }\n\n  .is-hidden {\n    display: none !important;\n  }\n}\n\n/// Loads normalize.css.\n/// @access private\n@mixin -zf-normalize {\n  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n  /**\n   * 1. Set default font family to sans-serif.\n   * 2. Prevent iOS and IE text size adjust after device orientation change,\n   *    without disabling user zoom.\n   */\n\n  html {\n    font-family: sans-serif; /* 1 */\n    -ms-text-size-adjust: 100%; /* 2 */\n    -webkit-text-size-adjust: 100%; /* 2 */\n  }\n\n  /**\n   * Remove default margin.\n   */\n\n  body {\n    margin: 0;\n  }\n\n  /* HTML5 display definitions\n     ========================================================================== */\n\n  /**\n   * Correct `block` display not defined for any HTML5 element in IE 8/9.\n   * Correct `block` display not defined for `details` or `summary` in IE 10/11\n   * and Firefox.\n   * Correct `block` display not defined for `main` in IE 11.\n   */\n\n  article,\n  aside,\n  details,\n  figcaption,\n  figure,\n  footer,\n  header,\n  hgroup,\n  main,\n  menu,\n  nav,\n  section,\n  summary {\n    display: block;\n  }\n\n  /**\n   * 1. Correct `inline-block` display not defined in IE 8/9.\n   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n   */\n\n  audio,\n  canvas,\n  progress,\n  video {\n    display: inline-block; /* 1 */\n    vertical-align: baseline; /* 2 */\n  }\n\n  /**\n   * Prevent modern browsers from displaying `audio` without controls.\n   * Remove excess height in iOS 5 devices.\n   */\n\n  audio:not([controls]) {\n    display: none;\n    height: 0;\n  }\n\n  /**\n   * Address `[hidden]` styling not present in IE 8/9/10.\n   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n   */\n\n  [hidden],\n  template {\n    display: none;\n  }\n\n  /* Links\n     ========================================================================== */\n\n  /**\n   * Remove the gray background color from active links in IE 10.\n   */\n\n  a {\n    background-color: transparent;\n  }\n\n  /**\n   * Improve readability of focused elements when they are also in an\n   * active/hover state.\n   */\n\n  a:active,\n  a:hover {\n    outline: 0;\n  }\n\n  /* Text-level semantics\n     ========================================================================== */\n\n  /**\n   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n   */\n\n  abbr[title] {\n    border-bottom: 1px dotted;\n  }\n\n  /**\n   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n   */\n\n  b,\n  strong {\n    font-weight: bold;\n  }\n\n  /**\n   * Address styling not present in Safari and Chrome.\n   */\n\n  dfn {\n    font-style: italic;\n  }\n\n  /**\n   * Address variable `h1` font-size and margin within `section` and `article`\n   * contexts in Firefox 4+, Safari, and Chrome.\n   */\n\n  h1 {\n    font-size: 2em;\n    margin: 0.67em 0;\n  }\n\n  /**\n   * Address styling not present in IE 8/9.\n   */\n\n  mark {\n    background: #ff0;\n    color: #000;\n  }\n\n  /**\n   * Address inconsistent and variable font size in all browsers.\n   */\n\n  small {\n    font-size: 80%;\n  }\n\n  /**\n   * Prevent `sub` and `sup` affecting `line-height` in all browsers.\n   */\n\n  sub,\n  sup {\n    font-size: 75%;\n    line-height: 0;\n    position: relative;\n    vertical-align: baseline;\n  }\n\n  sup {\n    top: -0.5em;\n  }\n\n  sub {\n    bottom: -0.25em;\n  }\n\n  /* Embedded content\n     ========================================================================== */\n\n  /**\n   * Remove border when inside `a` element in IE 8/9/10.\n   */\n\n  img {\n    border: 0;\n  }\n\n  /**\n   * Correct overflow not hidden in IE 9/10/11.\n   */\n\n  svg:not(:root) {\n    overflow: hidden;\n  }\n\n  /* Grouping content\n     ========================================================================== */\n\n  /**\n   * Address margin not present in IE 8/9 and Safari.\n   */\n\n  figure {\n    margin: 1em 40px;\n  }\n\n  /**\n   * Address differences between Firefox and other browsers.\n   */\n\n  hr {\n    box-sizing: content-box;\n    height: 0;\n  }\n\n  /**\n   * Contain overflow in all browsers.\n   */\n\n  pre {\n    overflow: auto;\n  }\n\n  /**\n   * Address odd `em`-unit font size rendering in all browsers.\n   */\n\n  code,\n  kbd,\n  pre,\n  samp {\n    font-family: monospace, monospace;\n    font-size: 1em;\n  }\n\n  /* Forms\n     ========================================================================== */\n\n  /**\n   * Known limitation: by default, Chrome and Safari on OS X allow very limited\n   * styling of `select`, unless a `border` property is set.\n   */\n\n  /**\n   * 1. Correct color not being inherited.\n   *    Known issue: affects color of disabled elements.\n   * 2. Correct font properties not being inherited.\n   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n   */\n\n  button,\n  input,\n  optgroup,\n  select,\n  textarea {\n    color: inherit; /* 1 */\n    font: inherit; /* 2 */\n    margin: 0; /* 3 */\n  }\n\n  /**\n   * Address `overflow` set to `hidden` in IE 8/9/10/11.\n   */\n\n  button {\n    overflow: visible;\n  }\n\n  /**\n   * Address inconsistent `text-transform` inheritance for `button` and `select`.\n   * All other form control elements do not inherit `text-transform` values.\n   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n   * Correct `select` style inheritance in Firefox.\n   */\n\n  button,\n  select {\n    text-transform: none;\n  }\n\n  /**\n   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n   *    and `video` controls.\n   * 2. Correct inability to style clickable `input` types in iOS.\n   * 3. Improve usability and consistency of cursor style between image-type\n   *    `input` and others.\n   */\n\n  button,\n  html input[type=\"button\"], /* 1 */\n  input[type=\"reset\"],\n  input[type=\"submit\"] {\n    -webkit-appearance: button; /* 2 */\n    cursor: pointer; /* 3 */\n  }\n\n  /**\n   * Re-set default cursor for disabled elements.\n   */\n\n  button[disabled],\n  html input[disabled] {\n    cursor: not-allowed;\n  }\n\n  /**\n   * Remove inner padding and border in Firefox 4+.\n   */\n\n  button::-moz-focus-inner,\n  input::-moz-focus-inner {\n    border: 0;\n    padding: 0;\n  }\n\n  /**\n   * Address Firefox 4+ setting `line-height` on `input` using `!important` in\n   * the UA stylesheet.\n   */\n\n  input {\n    line-height: normal;\n  }\n\n  /**\n   * It's recommended that you don't attempt to style these elements.\n   * Firefox's implementation doesn't respect box-sizing, padding, or width.\n   *\n   * 1. Address box sizing set to `content-box` in IE 8/9/10.\n   * 2. Remove excess padding in IE 8/9/10.\n   */\n\n  input[type=\"checkbox\"],\n  input[type=\"radio\"] {\n    box-sizing: border-box; /* 1 */\n    padding: 0; /* 2 */\n  }\n\n  /**\n   * Fix the cursor style for Chrome's increment/decrement buttons. For certain\n   * `font-size` values of the `input`, it causes the cursor style of the\n   * decrement button to change from `default` to `text`.\n   */\n\n  input[type=\"number\"]::-webkit-inner-spin-button,\n  input[type=\"number\"]::-webkit-outer-spin-button {\n    height: auto;\n  }\n\n  /**\n   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n   */\n\n  input[type=\"search\"] {\n    -webkit-appearance: textfield; /* 1 */\n    box-sizing: content-box; /* 2 */\n  }\n\n  /**\n   * Remove inner padding and search cancel button in Safari and Chrome on OS X.\n   * Safari (but not Chrome) clips the cancel button when the search input has\n   * padding (and `textfield` appearance).\n   */\n\n  input[type=\"search\"]::-webkit-search-cancel-button,\n  input[type=\"search\"]::-webkit-search-decoration {\n    -webkit-appearance: none;\n  }\n\n  /**\n   * Define consistent border, margin, and padding.\n   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.\n   */\n\n  /* fieldset {\n    border: 1px solid #c0c0c0;\n    margin: 0 2px;\n    padding: 0.35em 0.625em 0.75em;\n  } */\n\n  /**\n   * 1. Correct `color` not being inherited in IE 8/9/10/11.\n   * 2. Remove padding so people aren't caught out if they zero out fieldsets.\n   */\n\n  legend {\n    border: 0; /* 1 */\n    padding: 0; /* 2 */\n  }\n\n  /**\n   * Remove default vertical scrollbar in IE 8/9/10/11.\n   */\n\n  textarea {\n    overflow: auto;\n  }\n\n  /**\n   * Don't inherit the `font-weight` (applied by a rule above).\n   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n   */\n\n  optgroup {\n    font-weight: bold;\n  }\n\n  /* Tables\n     ========================================================================== */\n\n  /**\n   * Remove most spacing between table cells.\n   */\n\n  table {\n    border-collapse: collapse;\n    border-spacing: 0;\n  }\n\n  td,\n  th {\n    padding: 0;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// The maximum width of a row.\n/// @type Number\n$grid-row-width: $global-width !default;\n\n/// The default column count of a grid. Changing this value affects the logic of the grid mixins, and the number of CSS classes output.\n/// @type Number\n$grid-column-count: 12 !default;\n\n/// The amount of space between columns at different screen sizes. To use just one size, set the variable to a number instead of a map.\n/// @type Map | Length\n/// @since 6.1.0\n$grid-column-gutter: (\n  small: 20px,\n  medium: 30px,\n) !default;\n\n/// If `true`, the last column in a row will align to the opposite edge of the row.\n/// @type Boolean\n$grid-column-align-edge: true !default;\n\n/// The highest number of `.x-up` classes available when using the block grid CSS.\n/// @type Number\n$block-grid-max: 8 !default;\n\n// Internal value to store the end column float direction\n$-zf-end-float: if($grid-column-align-edge, $global-right, $global-left);\n\n// The last piece to transition the responsive gutter feature\n// Remove this in 6.3\n$grid-column-responsive-gutter: null !default;\n@if $grid-column-responsive-gutter {\n  // scss-lint:disable DebugStatement\n  @warn 'Rename $grid-column-responsive-gutter to $grid-column-gutter to remove this warning.';\n  $grid-column-gutter: $grid-column-responsive-gutter;\n}\n\n// If a single value is passed as a gutter, convert it to a map so the code knows what to do with it\n@if type-of($grid-column-gutter) == 'number' {\n  $grid-column-gutter: (\n    small: $grid-column-gutter,\n  );\n}\n\n@import 'row';\n@import 'column';\n@import 'size';\n@import 'position';\n@import 'gutter';\n@import 'classes';\n@import 'layout';\n\n@import 'flex-grid';\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Change the behavior of columns defined inside this mixin to use a different column count.\n/// @content\n///\n/// @param {Number} $columns - Number of columns to use.\n/// @param {Boolean} $root [false]\n///   If `false`, selectors inside this mixin will nest inside the parent selector.\n///   If `true`, selectors will not nest.\n@mixin grid-context(\n  $columns,\n  $root: false\n) {\n  // Store the current column count so it can be re-set later\n  $old-grid-column-count: $grid-column-count;\n  $grid-column-count: $columns !global;\n\n  @if $root {\n    @at-root { @content; }\n  }\n  @else {\n    @content;\n  }\n\n  // Restore the old column count\n  $grid-column-count: $old-grid-column-count;\n}\n\n/// Creates a grid row.\n/// @content\n///\n/// @param {Number} $columns [null] - Column count for this row. `null` will use the default column count.\n/// @param {Keywords} $behavior [null]\n///   Modifications to the default grid styles. `nest` indicates the row will be placed inside another row. `collapse` indicates that the columns inside this row will not have padding. `nest collapse` combines both behaviors.\n/// @param {Number} $width [$grid-row-width] - Maximum width of the row.\n/// @param {Boolean} $cf [true] - Whether or not to include a clearfix.\n/// @param {Number} $gutter [$grid-column-gutter] - Gutter to use when inverting margins, in case the row is nested.\n@mixin grid-row(\n  $columns: null,\n  $behavior: null,\n  $width: $grid-row-width,\n  $cf: true,\n  $gutter: $grid-column-gutter\n) {\n  $margin: auto;\n\n  @if index($behavior, nest) != null {\n    @include grid-row-nest($gutter);\n\n    @if index($behavior, collapse) != null {\n      margin-left: 0;\n      margin-right: 0;\n    }\n  }\n  @else {\n    max-width: $width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  @if $cf {\n    @include clearfix;\n  }\n\n  @if $columns != null {\n    @include grid-context($columns) {\n      @content;\n    }\n  }\n}\n\n/// Inverts the margins of a row to nest it inside of a column.\n///\n/// @param {Map|null} $gutter [null] - Gutter value to use when inverting the margins. Set to `null` to refer to the responsive gutter settings.\n@mixin grid-row-nest($gutter: $grid-column-gutter) {\n  @if type-of($gutter) == 'number' {\n    $gutter: ($-zf-zero-breakpoint: $gutter);\n  }\n  max-width: none;\n\n  @each $breakpoint, $value in $gutter {\n    $margin: rem-calc($value) / 2 * -1;\n\n    @include breakpoint($breakpoint) {\n      margin-left: $margin;\n      margin-right: $margin;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Calculates the width of a column based on a number of factors.\n///\n/// @param {Number|List} $columns\n///   Width of the column. Accepts multiple values:\n///   - A percentage value will make the column that exact size.\n///   - A single digit will make the column span that number of columns wide, taking into account the column count of the parent row.\n///   - A string of the format \"x of y\" will make a column that is *x* columns wide, assuming *y* total columns for the parent.\n///\n/// @returns {Number} A calculated percentage value.\n@function grid-column($columns) {\n  $width: 0%;\n\n  // Parsing percents, decimals, and column counts\n  @if type-of($columns) == 'number' {\n    @if unit($columns) == '%' {\n      $width: $columns;\n    }\n    @else if $columns < 1 {\n      $width: percentage($columns);\n    }\n    @else {\n      $width: percentage($columns / $grid-column-count);\n    }\n  }\n\n  // Parsing \"n of n\" expressions\n  @else if type-of($columns) == 'list' {\n    @if length($columns) != 3 {\n      @error 'Wrong syntax for grid-column(). Use the format \"n of n\".';\n    }\n    @else {\n      $width: percentage(nth($columns, 1) / nth($columns, 3));\n    }\n  }\n\n  // Anything else is incorrect\n  @else {\n    @error 'Wrong syntax for grid-column(). Use a number, decimal, percentage, or \"n of n\".';\n  }\n\n  @return $width;\n}\n\n/// Creates a grid column.\n///\n/// @param {Mixed} $columns [$grid-column-count] - Width of the column. Refer to the `grid-column()` function to see possible values.\n/// @param {Number} $gutter [$grid-column-gutter] - Spacing between columns.\n@mixin grid-column(\n  $columns: $grid-column-count,\n  $gutter: $grid-column-gutter\n) {\n  @include grid-column-size($columns);\n  float: $global-left;\n\n  // Gutters\n  @if type-of($gutter) == 'map' {\n    @each $breakpoint, $value in $gutter {\n      $padding: rem-calc($value) / 2;\n\n      @include breakpoint($breakpoint) {\n        padding-left: $padding;\n        padding-right: $padding;\n      }\n    }\n  }\n  @else if type-of($gutter) == 'number' and strip-unit($gutter) > 0 {\n    $padding: rem-calc($gutter) / 2;\n    padding-left: $padding;\n    padding-right: $padding;\n  }\n\n  // Last column alignment\n  @if $grid-column-align-edge {\n    &:last-child:not(:first-child) {\n      float: $global-right;\n    }\n  }\n}\n\n/// Creates a grid column row. This is the equivalent of adding `.row` and `.column` to the same element.\n///\n/// @param {Number} $gutter [$grid-column-gutter] - Width of the gutters on either side of the column row.\n@mixin grid-column-row(\n  $gutter: $grid-column-gutter\n) {\n  @include grid-row;\n  @include grid-column($gutter: $gutter);\n\n  &,\n  &:last-child {\n    float: none;\n  }\n}\n\n/// Shorthand for `grid-column()`.\n/// @alias grid-column\n@function grid-col(\n  $columns: $grid-column-count\n) {\n  @return grid-column($columns);\n}\n\n/// Shorthand for `grid-column()`.\n/// @alias grid-column\n@mixin grid-col(\n  $columns: $grid-column-count,\n  $gutter: $grid-column-gutter\n) {\n  @include grid-column($columns, $gutter);\n}\n\n/// Shorthand for `grid-column-row()`.\n/// @alias grid-column-row\n@mixin grid-col-row(\n  $gutter: $grid-column-gutter\n) {\n  @include grid-column-row($gutter);\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Set the width of a grid column.\n///\n/// @param {Number|List} $width [$grid-column-count] - Width to make the column. You can pass in any value accepted by the `grid-column()` function, such as `6`, `50%`, or `1 of 2`.\n@mixin grid-column-size(\n  $columns: $grid-column-count\n) {\n  width: grid-column($columns);\n}\n\n/// Shorthand for `grid-column-size()`.\n/// @alias grid-column-size\n@mixin grid-col-size(\n  $columns: $grid-column-count\n) {\n  @include grid-column-size($columns);\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Reposition a column.\n///\n/// @param {Number|Keyword} $position - Direction and amount to move. The column will move equal to the width of the column count specified. A positive number will push the column to the right, while a negative number will pull it to the left. Set to center to center the column.\n@mixin grid-column-position($position) {\n  @if type-of($position) == 'number' {\n    $offset: percentage($position / $grid-column-count);\n\n    position: relative;\n    #{$global-left}: $offset;\n  }\n  @else if $position == center {\n    float: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  @else {\n    @warn 'Wrong syntax for grid-column-position(). Enter a positive or negative number, or center.';\n  }\n}\n\n/// Reset a position definition.\n@mixin grid-column-unposition {\n  position: static;\n  margin-left: 0;\n  margin-right: 0;\n  float: left;\n}\n\n/// Offsets a column to the right by `$n` columns.\n/// @param {Number|List} $n - Width to offset by. You can pass in any value accepted by the `grid-column()` mixin, such as `6`, `50%`, or `1 of 2`.\n@mixin grid-column-offset($n) {\n  margin-#{$global-left}: grid-column($n);\n}\n\n/// Disable the default behavior of the last column in a row aligning to the opposite edge.\n@mixin grid-column-end {\n  // This extra specificity is required for the property to be applied\n  &:last-child:last-child {\n    float: $global-left;\n  }\n}\n\n/// Shorthand for `grid-column-position()`.\n/// @alias grid-column-position\n@mixin grid-col-pos($position) {\n  @include grid-column-position($position);\n}\n\n/// Shorthand for `grid-column-unposition()`.\n/// @alias grid-column-unposition\n@mixin grid-col-unpos {\n  @include grid-column-unposition;\n}\n\n/// Shorthand for `grid-column-offset()`.\n/// @alias grid-column-offset\n@mixin grid-col-off($n) {\n  @include grid-column-offset($n);\n}\n\n/// Shorthand for `grid-column-end()`.\n/// @alias grid-column-end\n@mixin grid-col-end {\n  @include grid-column-end;\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Collapse the gutters on a column by removing the padding. **Note:** only use this mixin within a breakpoint. To collapse a column's gutters on all screen sizes, use the `$gutter` parameter of the `grid-column()` mixin instead.\n@mixin grid-column-collapse {\n  padding-left: 0;\n  padding-right: 0;\n}\n\n/// Un-collapse the gutters on a column by re-adding the padding.\n///\n/// @param {Number} $gutter [$grid-column-gutter] - Spacing between columns.\n@mixin grid-column-uncollapse($gutter: $grid-column-gutter) {\n  $gutter: rem-calc($gutter) / 2;\n  padding-left: $gutter;\n  padding-right: $gutter;\n}\n\n/// Shorthand for `grid-column-collapse()`.\n/// @alias grid-column-collapse\n@mixin grid-col-collapse {\n  @include grid-column-collapse;\n}\n\n/// Shorthand for `grid-column-uncollapse()`.\n/// @alias grid-column-uncollapse\n@mixin grid-col-uncollapse($gutter: $grid-column-gutter) {\n  @include grid-column-uncollapse($gutter);\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Outputs CSS classes for the grid.\n/// @access private\n@mixin foundation-grid(\n  $row: 'row',\n  $column: 'column',\n  $column-row: 'column-row',\n  $push: 'push',\n  $pull: 'pull',\n  $center: 'centered',\n  $uncenter: 'uncentered',\n  $collapse: 'collapse',\n  $uncollapse: 'uncollapse',\n  $offset: 'offset',\n  $end: 'end',\n  $expanded: 'expanded'\n) {\n  // Row\n  .#{$row} {\n    @include grid-row;\n\n    // Collapsing\n    &.#{$collapse} {\n      > .#{$column} {\n        @include grid-col-collapse;\n      }\n    }\n\n    // Nesting\n    & & {\n      @include grid-row-nest($grid-column-gutter);\n\n      &.#{$collapse} {\n        margin-left: 0;\n        margin-right: 0;\n      }\n    }\n\n    // Expanded (full-width) row\n    &.#{$expanded} {\n      max-width: none;\n\n      .#{$row} {\n        margin-left: auto;\n        margin-right: auto;\n      }\n    }\n  }\n\n  // Column\n  .#{$column} {\n    @include grid-col;\n\n    @if $grid-column-align-edge {\n      &.#{$end} {\n        @include grid-col-end;\n      }\n    }\n  }\n\n  // Column row\n  // The double .row class is needed to bump up the specificity\n  .#{$column}.#{$row}.#{$row} {\n    float: none;\n\n    // To properly nest a column row, padding and margin is removed\n    .#{$row} & {\n      padding-left: 0;\n      padding-right: 0;\n      margin-left: 0;\n      margin-right: 0;\n    }\n  }\n\n  @include -zf-each-breakpoint {\n    @for $i from 1 through $grid-column-count {\n      // Column width\n      .#{$-zf-size}-#{$i} {\n        @include grid-col-size($i);\n      }\n\n      // Source ordering\n      @if $i < $grid-column-count {\n        .#{$-zf-size}-#{$push}-#{$i} {\n          @include grid-col-pos($i);\n        }\n\n        .#{$-zf-size}-#{$pull}-#{$i} {\n          @include grid-col-pos(-$i);\n        }\n      }\n\n      // Offsets\n      $o: $i - 1;\n\n      .#{$-zf-size}-#{$offset}-#{$o} {\n        @include grid-col-off($o);\n      }\n    }\n\n    // Block grid\n    @for $i from 1 through $block-grid-max {\n      .#{$-zf-size}-up-#{$i} {\n        @include grid-layout($i, \".#{$column}\");\n      }\n    }\n\n    // Responsive collapsing\n    .#{$-zf-size}-#{$collapse} {\n      > .#{$column} { @include grid-col-collapse; }\n\n      .#{$row},\n      .#{$expanded}.#{$row} &.#{$row} {\n        margin-left: 0;\n        margin-right: 0;\n      }\n    }\n\n    .#{$-zf-size}-#{$uncollapse} {\n      $gutter: -zf-get-bp-val($grid-column-gutter, $-zf-size);\n\n      > .#{$column} { @include grid-col-uncollapse($gutter); }\n    }\n\n    // Positioning\n    .#{$-zf-size}-#{$center} {\n      @include grid-col-pos(center);\n    }\n\n    // Gutter adjustment\n    .#{$-zf-size}-#{$uncenter},\n    .#{$-zf-size}-#{$push}-0,\n    .#{$-zf-size}-#{$pull}-0 {\n      @include grid-col-unpos;\n    }\n  }\n\n  @if $column == 'column' {\n    .columns {\n      // scss-lint:disable PlaceholderInExtend\n      @extend .column;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group grid\n////\n\n/// Sizes child elements so that `$n` number of items appear on each row.\n///\n/// @param {Number} $n - Number of elements to display per row.\n/// @param {String} $selector ['.column'] - Selector(s) to use for child elements.\n@mixin grid-layout(\n  $n,\n  $selector: '.column'\n) {\n  & > #{$selector} {\n    width: percentage(1/$n);\n    float: $global-left;\n\n    &:nth-of-type(1n) {\n      clear: none;\n    }\n\n    &:nth-of-type(#{$n}n+1) {\n      clear: both;\n    }\n\n    &:last-child {\n      float: left;\n    }\n  }\n}\n\n/// Adds extra CSS to block grid children so the last items in the row center automatically. Apply this to the columns, not the row.\n///\n/// @param {Number} $n - Number of items that appear in each row.\n@mixin grid-layout-center-last($n) {\n  @for $i from 1 to $n {\n    @if $i == 1 {\n      &:nth-child(#{$n}n+1):last-child {\n        margin-left: (100 - 100/$n * $i) / 2 * 1%;\n      }\n    }\n    @else {\n      &:nth-child(#{$n}n+1):nth-last-child(#{$i}) {\n        margin-left: (100 - 100/$n * $i) / 2 * 1%;\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group flex-grid\n////\n\n/// Creates a container for a flex grid row.\n///\n/// @param {Keyword|List} $behavior [null]\n///   Modifications to the default grid styles. `nest` indicates the row will be placed inside another row. `collapse` indicates that the columns inside this row will not have padding. `nest collapse` combines both behaviors.\n/// @param {Number} $width [$grid-row-width] - Maximum width of the row.\n/// @param {Number} $columns [null] - Number of columns to use for this row. If set to `null` (the default), the global column count will be used.\n/// @param {Boolean} $base [true] - Set to `false` to prevent basic styles from being output. Useful if you're calling this mixin on the same element twice, as it prevents duplicate CSS output.\n/// @param {Number} $gutter [$grid-column-gutter] - Gutter to use when inverting margins, in case the row is nested.\n@mixin flex-grid-row(\n  $behavior: null,\n  $width: $grid-row-width,\n  $columns: null,\n  $base: true,\n  $gutter: $grid-column-gutter\n) {\n  $margin: auto;\n\n  @if index($behavior, nest) != null {\n    @include grid-row-nest($gutter);\n\n    @if index($behavior, collapse) != null {\n      margin-left: 0;\n      margin-right: 0;\n    }\n  }\n  @else {\n    max-width: $width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  @if $base {\n    display: flex;\n    flex-flow: row wrap;\n  }\n\n  @if $columns != null {\n    @include grid-context($columns, $base) {\n      @content;\n    }\n  }\n}\n\n/// Calculates the `flex` property for a flex grid column. It accepts all of the same values as the basic `grid-column()` function, along with two extras:\n///   - `null` (the default) will make the column expand to fill space.\n///   - `shrink` will make the column contract, so it only takes up the horizontal space it needs.\n///\n/// @param {Mixed} $columns [null] - Width of the column.\n@function flex-grid-column($columns: null) {\n  // scss-lint:disable ZeroUnit\n  $flex: 1 1 0px;\n\n  @if $columns == shrink {\n    $flex: 0 0 auto;\n  }\n  @else if $columns != null {\n    $flex: 0 0 grid-column($columns);\n  }\n\n  @return $flex;\n}\n\n/// Creates a column for a flex grid. By default, the column will stretch to the full width of its container, but this can be overridden with sizing classes, or by using the `unstack` class on the parent flex row.\n///\n/// @param {Mixed} $columns [null] - Width of the column. Refer to the `flex-grid-column()` function to see possible values.\n/// @param {Number} $gutter [$grid-column-gutter] - Space between columns, added as a left and right padding.\n@mixin flex-grid-column(\n  $columns: null,\n  $gutter: $grid-column-gutter\n) {\n  // Base properties\n  flex: flex-grid-column($columns);\n\n  // Gutters\n  @if type-of($gutter) == 'map' {\n    @each $breakpoint, $value in $gutter {\n      $padding: rem-calc($value) / 2;\n\n      @include breakpoint($breakpoint) {\n        padding-left: $padding;\n        padding-right: $padding;\n      }\n    }\n  }\n  @else if type-of($gutter) == 'number' and strip-unit($gutter) > 0 {\n    $padding: rem-calc($gutter) / 2;\n    padding-left: $padding;\n    padding-right: $padding;\n  }\n\n  // fixes recent Chrome version not limiting child width\n  // https://stackoverflow.com/questions/34934586/white-space-nowrap-and-flexbox-did-not-work-in-chrome\n  @if $columns == null {\n    min-width: initial;\n  }\n  // max-width fixes IE 10/11 not respecting the flex-basis property\n  @if $columns != null and $columns != shrink {\n    max-width: grid-column($columns);\n  }\n}\n\n/// Creates a block grid for a flex grid row.\n///\n/// @param {Number} $n - Number of columns to display on each row.\n/// @param {String} $selector - Selector to use to target columns within the row.\n@mixin flex-grid-layout(\n  $n,\n  $selector: '.column'\n) {\n  flex-wrap: wrap;\n\n  > #{$selector} {\n    $pct: percentage(1/$n);\n\n    flex: 0 0 $pct;\n    max-width: $pct;\n  }\n}\n\n/// Changes the source order of a flex grid column. Columns with lower numbers appear first in the layout.\n/// @param {Number} $order [0] - Order number to apply.\n@mixin flex-grid-order($order: 0) {\n  @warn 'This mixin is being replaced by flex-order(). flex-grid-order() will be removed in Foundation 6.3.';\n  @include flex-order($order);\n}\n\n/// Horizontally or vertically aligns the columns within a flex row. Apply this mixin to a flex row.\n///\n/// @param {Keyword} $x [null] - Horizontal alignment to use. Can be `left`, `right`, `center`, `justify`, or `spaced`. Or, set it to `null` (the default) to not set horizontal alignment.\n/// @param {Keyword} $y [null] - Vertical alignment to use. Can be `top`, `bottom`, `middle`, or `stretch`. Or, set it to `null` (the default) to not set vertical alignment.\n@mixin flex-grid-row-align($x: null, $y: null) {\n  @warn 'This mixin is being replaced by flex-align(). flex-grid-row-align() will be removed in Foundation 6.3.';\n  @include flex-align($x, $y);\n}\n\n/// Vertically align a single column within a flex row. Apply this mixin to a flex column.\n///\n/// @param {Keyword} $y [null] - Vertical alignment to use. Can be `top`, `bottom`, `middle`, or `stretch`. Or, set it to `null` (the default) to not set vertical alignment.\n@mixin flex-grid-column-align($y: null) {\n  @warn 'This mixin is being replaced by flex-align-self(). flex-grid-column-align() will be removed in Foundation 6.3.';\n  @include flex-align-self($y);\n}\n\n@mixin foundation-flex-grid {\n  // Row\n  .row {\n    @include flex-grid-row;\n\n    // Nesting behavior\n    & & {\n      @include flex-grid-row(nest, $base: false);\n    }\n\n    // Expanded row\n    &.expanded {\n      max-width: none;\n    }\n\n    &.collapse {\n      > .column { @include grid-col-collapse; }\n    }\n  }\n\n  // Column\n  .column {\n    @include flex-grid-column;\n  }\n\n  // Column row\n  // The double .row class is needed to bump up the specificity\n  .column.row.row {\n    float: none;\n    display: block;\n\n    // To properly nest a column row, padding and margin is removed\n    .row & {\n      padding-left: 0;\n      padding-right: 0;\n      margin-left: 0;\n      margin-right: 0;\n    }\n  }\n\n  @include -zf-each-breakpoint {\n    @for $i from 1 through $grid-column-count {\n      // Sizing (percentage)\n      .#{$-zf-size}-#{$i} {\n        flex: flex-grid-column($i);\n        max-width: grid-column($i);\n      }\n\n      // Offsets\n      $o: $i - 1;\n\n      .#{$-zf-size}-offset-#{$o} {\n        @include grid-column-offset($o);\n      }\n    }\n\n    // Source ordering\n    @for $i from 1 through 6 {\n      .#{$-zf-size}-order-#{$i} {\n        @include flex-order($i);\n      }\n    }\n\n    // Block grid\n    @for $i from 1 through $block-grid-max {\n      .#{$-zf-size}-up-#{$i} {\n        @include flex-grid-layout($i);\n      }\n    }\n\n    @if $-zf-size != $-zf-zero-breakpoint {\n      // Sizing (expand)\n      @include breakpoint($-zf-size) {\n        .#{$-zf-size}-expand {\n          flex: flex-grid-column();\n        }\n      }\n\n      // Auto-stacking/unstacking\n      @at-root (without: media) {\n        .row.#{$-zf-size}-unstack {\n          > .column {\n            flex: flex-grid-column(100%);\n\n            @include breakpoint($-zf-size) {\n              flex: flex-grid-column();\n            }\n          }\n        }\n      }\n    }\n\n    // Responsive collapsing\n    .#{$-zf-size}-collapse {\n      > .column { @include grid-col-collapse; }\n    }\n\n    .#{$-zf-size}-uncollapse {\n      $gutter: -zf-get-bp-val($grid-column-gutter, $-zf-size);\n\n      > .column { @include grid-col-uncollapse($gutter); }\n    }\n  }\n\n  // Sizing (shrink)\n  .shrink {\n    flex: flex-grid-column(shrink);\n    max-width: 100%;\n  }\n\n  // Vertical alignment using align-items and align-self\n  // Remove these in 6.3\n  @each $vdir, $prop in $-zf-flex-align {\n    .column.align-#{$vdir} {\n      @include flex-align-self($vdir);\n    }\n  }\n\n  .columns {\n    // scss-lint:disable PlaceholderInExtend\n    @extend .column;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group typography\n////\n\n// scss-lint:disable DeclarationOrder\n\n// Base typography styles (tags only)\n@import 'base';\n\n// Typography helper classes (classes only)\n@import 'helpers';\n\n// Text alignment classes\n@import 'alignment';\n\n// Print styles\n@import 'print';\n\n@mixin foundation-typography {\n  @include foundation-typography-base;\n  @include foundation-typography-helpers;\n  @include foundation-text-alignment;\n  @include foundation-print-styles;\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group typography-base\n////\n\n// Base Typography\n// - - - - - - - - - - - - - - -\n// These are styles applied to basic HTML tags, including:\n//   - Paragraphs <p>\n//   - Bold/italics <b> <strong> <i> <em>\n//   - Small text <small>\n//   - Headings <h1>—<h6>\n//   - Anchors <a>\n//   - Dividers <hr>\n//   - Lists <ul> <ol> <dl>\n//   - Blockquotes <blockquote>\n//   - Code blocks <code>\n//   - Abbreviations <abbr>\n//   - Citations <cite>\n//   - Keystrokes <kbd>\n\n/// Font family for header elements.\n/// @type String | List\n$header-font-family: $body-font-family !default;\n\n/// Font weight of headers.\n/// @type String\n$header-font-weight: $global-weight-normal !default;\n\n/// Font style (e.g. italicized) of headers.\n/// @type String\n$header-font-style: normal !default;\n\n/// Font stack used for elements that use monospaced type, such as code samples\n/// @type String | List\n$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace !default;\n\n/// Sizes of headings at various screen sizes. Each key is a breakpoint, and each value is a map of heading sizes.\n/// @type Map\n$header-sizes: (\n  small: (\n    'h1': 24,\n    'h2': 20,\n    'h3': 19,\n    'h4': 18,\n    'h5': 17,\n    'h6': 16,\n  ),\n  medium: (\n    'h1': 48,\n    'h2': 40,\n    'h3': 31,\n    'h4': 25,\n    'h5': 20,\n    'h6': 16,\n  ),\n) !default;\n\n/// Color of headers.\n/// @type Color\n$header-color: inherit !default;\n\n/// Line height of headers.\n/// @type Number\n$header-lineheight: 1.4 !default;\n\n/// Bottom margin of headers.\n/// @type Number\n$header-margin-bottom: 0.5rem !default;\n\n/// Text rendering method of headers.\n/// @type String\n$header-text-rendering: optimizeLegibility !default;\n\n/// Font size of `<small>` elements.\n/// @type Number\n$small-font-size: 80% !default;\n\n/// Color of `<small>` elements when placed inside headers.\n/// @type Color\n$header-small-font-color: $medium-gray !default;\n\n/// Line height of text inside `<p>` elements.\n/// @type Number\n$paragraph-lineheight: 1.6 !default;\n\n/// Bottom margin of paragraphs.\n/// @type Number\n$paragraph-margin-bottom: 1rem !default;\n\n/// Text rendering method for paragraph text.\n/// @type String\n$paragraph-text-rendering: optimizeLegibility !default;\n\n/// Text color of code samples.\n/// @type Color\n$code-color: $black !default;\n\n/// Font family of code samples.\n/// @type String | List\n$code-font-family: $font-family-monospace !default;\n\n/// Font weight of text in code samples.\n/// @type String\n$code-font-weight: $global-weight-normal !default;\n\n/// Background color of code samples.\n/// @type Color\n$code-background: $light-gray !default;\n\n/// Border around code samples.\n/// @type List\n$code-border: 1px solid $medium-gray !default;\n\n/// Padding around text of code samples.\n/// @type Number | List\n$code-padding: rem-calc(2 5 1) !default;\n\n/// Default color for links.\n/// @type Color\n$anchor-color: $primary-color !default;\n\n/// Default color for links on hover.\n/// @type Color\n$anchor-color-hover: scale-color($anchor-color, $lightness: -14%) !default;\n\n/// Default text deocration for links.\n/// @type String\n$anchor-text-decoration: none !default;\n\n/// Default text decoration for links on hover.\n/// @type String\n$anchor-text-decoration-hover: none !default;\n\n/// Maximum width of a divider.\n/// @type Number\n$hr-width: $global-width !default;\n\n/// Default border for a divider.\n/// @type List\n$hr-border: 1px solid $medium-gray !default;\n\n/// Default margin for a divider.\n/// @type Number | List\n$hr-margin: rem-calc(20) auto !default;\n\n/// Line height for items in a list.\n/// @type Number\n$list-lineheight: $paragraph-lineheight !default;\n\n/// Bottom margin for items in a list.\n/// @type Number\n$list-margin-bottom: $paragraph-margin-bottom !default;\n\n/// Bullet type to use for unordered lists (e.g., `square`, `circle`, `disc`).\n/// @type String\n$list-style-type: disc !default;\n\n/// Positioning for bullets on unordered list items.\n/// @type String\n$list-style-position: outside !default;\n\n/// Left (or right) margin for lists.\n/// @type Number\n$list-side-margin: 1.25rem !default;\n\n/// Left (or right) margin for a list inside a list.\n/// @type Number\n$list-nested-side-margin: 1.25rem !default;\n\n/// Bottom margin for `<dl>` elements.\n/// @type Number\n$defnlist-margin-bottom: 1rem !default;\n\n/// Font weight for `<dt>` elements.\n/// @type String\n$defnlist-term-weight: $global-weight-bold !default;\n\n/// Spacing between `<dt>` and `<dd>` elements.\n/// @type Number\n$defnlist-term-margin-bottom: 0.3rem !default;\n\n/// Text color of `<blockquote>` elements.\n/// @type Color\n$blockquote-color: $dark-gray !default;\n\n/// Padding inside a `<blockquote>` element.\n/// @type Number | List\n$blockquote-padding: rem-calc(9 20 0 19) !default;\n\n/// Side border for `<blockquote>` elements.\n/// @type List\n$blockquote-border: 1px solid $medium-gray !default;\n\n/// Font size for `<cite>` elements.\n/// @type Number\n$cite-font-size: rem-calc(13) !default;\n\n/// Text color for `<cite>` elements.\n/// @type Color\n$cite-color: $dark-gray !default;\n\n/// Font family for `<kbd>` elements.\n/// @type String | List\n$keystroke-font: $font-family-monospace !default;\n\n/// Text color for `<kbd>` elements.\n/// @type Color\n$keystroke-color: $black !default;\n\n/// Background color for `<kbd>` elements.\n/// @type Color\n$keystroke-background: $light-gray !default;\n\n/// Padding for `<kbd>` elements.\n/// @type Number | List\n$keystroke-padding: rem-calc(2 4 0) !default;\n\n/// Border radius for `<kbd>` elements.\n/// @type Number | List\n$keystroke-radius: $global-radius !default;\n\n/// Bottom border style for `<abbr>` elements.\n/// @type List\n$abbr-underline: 1px dotted $black !default;\n\n@mixin foundation-typography-base {\n  // Typography resets\n  div,\n  dl,\n  dt,\n  dd,\n  ul,\n  ol,\n  li,\n  h1,\n  h2,\n  h3,\n  h4,\n  h5,\n  h6,\n  pre,\n  form,\n  p,\n  blockquote,\n  th,\n  td {\n    margin: 0;\n    padding: 0;\n  }\n\n  // Paragraphs\n  p {\n    font-size: inherit;\n    line-height: $paragraph-lineheight;\n    margin-bottom: $paragraph-margin-bottom;\n    text-rendering: $paragraph-text-rendering;\n  }\n\n  // Emphasized text\n  em,\n  i {\n    font-style: italic;\n    line-height: inherit;\n  }\n\n  // Strong text\n  strong,\n  b {\n    font-weight: $global-weight-bold;\n    line-height: inherit;\n  }\n\n  // Small text\n  small {\n    font-size: $small-font-size;\n    line-height: inherit;\n  }\n\n  // Headings\n  h1,\n  h2,\n  h3,\n  h4,\n  h5,\n  h6 {\n    font-family: $header-font-family;\n    font-weight: $header-font-weight;\n    font-style: $header-font-style;\n    color: $header-color;\n    text-rendering: $header-text-rendering;\n    margin-top: 0;\n    margin-bottom: $header-margin-bottom;\n    line-height: $header-lineheight;\n\n    small {\n      color: $header-small-font-color;\n      line-height: 0;\n    }\n  }\n\n  // Heading sizes\n  @each $size, $headers in $header-sizes {\n    @include breakpoint($size) {\n      @each $header, $font-size in $headers {\n        #{$header} {\n          font-size: rem-calc($font-size);\n        }\n      }\n    }\n  }\n\n  // Links\n  a {\n    color: $anchor-color;\n    text-decoration: $anchor-text-decoration;\n    line-height: inherit;\n    cursor: pointer;\n\n    &:hover,\n    &:focus {\n      color: $anchor-color-hover;\n      @if $anchor-text-decoration-hover != $anchor-text-decoration {\n        text-decoration: $anchor-text-decoration-hover;\n      }\n    }\n\n    img {\n      border: 0;\n    }\n  }\n\n  // Horizontal rule\n  hr {\n    max-width: $hr-width;\n    height: 0;\n    border-right: 0;\n    border-top: 0;\n    border-bottom: $hr-border;\n    border-left: 0;\n    margin: $hr-margin;\n    clear: both;\n  }\n\n  // Lists\n  ul,\n  ol,\n  dl {\n    line-height: $list-lineheight;\n    margin-bottom: $list-margin-bottom;\n    list-style-position: $list-style-position;\n  }\n\n  // List items\n  li {\n    font-size: inherit;\n  }\n\n  // Unordered lists\n  ul {\n    list-style-type: $list-style-type;\n    margin-#{$global-left}: $list-side-margin;\n  }\n\n  // Ordered lists\n  ol {\n    margin-#{$global-left}: $list-side-margin;\n  }\n\n  // Nested unordered/ordered lists\n  ul, ol {\n    & & {\n      margin-#{$global-left}: $list-nested-side-margin;\n      margin-bottom: 0;\n    }\n  }\n\n  // Definition lists\n  dl {\n    margin-bottom: $defnlist-margin-bottom;\n\n    dt {\n      margin-bottom: $defnlist-term-margin-bottom;\n      font-weight: $defnlist-term-weight;\n    }\n  }\n\n  // Blockquotes\n  blockquote {\n    margin: 0 0 $paragraph-margin-bottom;\n    padding: $blockquote-padding;\n    border-#{$global-left}: $blockquote-border;\n\n    &, p {\n      line-height: $paragraph-lineheight;\n      color: $blockquote-color;\n    }\n  }\n\n  // Citations\n  cite {\n    display: block;\n    font-size: $cite-font-size;\n    color: $cite-color;\n\n    &:before {\n      content: '\\2014 \\0020';\n    }\n  }\n\n  // Abbreviations\n  abbr {\n    color: $body-font-color;\n    cursor: help;\n    border-bottom: $abbr-underline;\n  }\n\n  // Code\n  code {\n    font-family: $code-font-family;\n    font-weight: $code-font-weight;\n    color: $code-color;\n    background-color: $code-background;\n    border: $code-border;\n    padding: $code-padding;\n  }\n\n  // Keystrokes\n  kbd {\n    padding: $keystroke-padding;\n    margin: 0;\n    background-color: $keystroke-background;\n    color: $keystroke-color;\n    font-family: $keystroke-font;\n\n    @if has-value($keystroke-radius) {\n      border-radius: $keystroke-radius;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group typography-helpers\n////\n\n/// Default font size for lead paragraphs.\n/// @type Number\n$lead-font-size: $global-font-size * 1.25 !default;\n\n/// Default line height for lead paragraphs.\n/// @type String\n$lead-lineheight: 1.6 !default;\n\n/// Default line height for subheaders.\n/// @type Number\n$subheader-lineheight: 1.4 !default;\n\n/// Default font color for subheaders.\n/// @type Color\n$subheader-color: $dark-gray !default;\n\n/// Default font weight for subheaders.\n/// @type String\n$subheader-font-weight: $global-weight-normal !default;\n\n/// Default top margin for subhheaders.\n/// @type Number\n$subheader-margin-top: 0.2rem !default;\n\n/// Default bottom margin for subheaders.\n/// @type Number\n$subheader-margin-bottom: 0.5rem !default;\n\n/// Default font size for statistic numbers.\n/// @type Number\n$stat-font-size: 2.5rem !default;\n\n@mixin foundation-typography-helpers {\n  // Use to create a subheading under a main header\n  // Make sure you pair the two elements in a <header> element, like this:\n  // <header>\n  //   <h1>Heading</h1>\n  //   <h2>Subheading</h2>\n  // </header>\n  .subheader {\n    margin-top: $subheader-margin-top;\n    margin-bottom: $subheader-margin-bottom;\n    font-weight: $subheader-font-weight;\n    line-height: $subheader-lineheight;\n    color: $subheader-color;\n  }\n\n  // Use to style an introductory lead, deck, blurb, etc.\n  .lead {\n    font-size: $lead-font-size;\n    line-height: $lead-lineheight;\n  }\n\n  // Use to style a large number to display a statistic\n  .stat {\n    font-size: $stat-font-size;\n    line-height: 1;\n\n    p + & {\n      margin-top: -1rem;\n    }\n  }\n\n  // Use to remove the bullets from an unordered list\n  .no-bullet {\n    margin-#{$global-left}: 0;\n    list-style: none;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n@mixin foundation-text-alignment {\n  @each $size in $breakpoint-classes {\n    @include breakpoint($size) {\n      @each $align in (left, right, center, justify) {\n        @if $size != $-zf-zero-breakpoint {\n          .#{$size}-text-#{$align} {\n            text-align: $align;\n          }\n        }\n        @else {\n          .text-#{$align} {\n            text-align: $align;\n          }\n        }\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n/// If `true`, all elements will have transparent backgrounds when printed, to save on ink.\n/// @type Boolean\n/// @group global\n$print-transparent-backgrounds: true !default;\n\n// scss-lint:disable all\n\n@mixin foundation-print-styles {\n  .show-for-print { display: none !important; }\n\n  @media print {\n    * {\n      @if $print-transparent-backgrounds {\n        background: transparent !important;\n      }\n\n      color: black !important; // Black prints faster: h5bp.com/s\n      box-shadow: none !important;\n      text-shadow: none !important;\n    }\n\n    .show-for-print { display: block !important; }\n    .hide-for-print { display: none !important; }\n\n    table.show-for-print { display: table !important; }\n    thead.show-for-print { display: table-header-group !important; }\n    tbody.show-for-print { display: table-row-group !important; }\n    tr.show-for-print { display: table-row !important; }\n    td.show-for-print { display: table-cell !important; }\n    th.show-for-print { display: table-cell !important; }\n\n    // Display the URL of a link after the text\n    a,\n    a:visited { text-decoration: underline;}\n    a[href]:after { content: ' (' attr(href) ')'; }\n\n    // Don't display the URL for images or JavaScript/internal links\n    .ir a:after,\n    a[href^='javascript:']:after,\n    a[href^='#']:after { content: ''; }\n\n    // Display what an abbreviation stands for after the text\n    abbr[title]:after { content: ' (' attr(title) ')'; }\n\n    // Prevent page breaks in the middle of a blockquote or preformatted text block\n    pre,\n    blockquote {\n      border: 1px solid $dark-gray;\n      page-break-inside: avoid;\n    }\n\n    // h5bp.com/t\n    thead { display: table-header-group; }\n\n    tr,\n    img { page-break-inside: avoid; }\n\n    img { max-width: 100% !important; }\n\n    @page { margin: 0.5cm; }\n\n    p,\n    h2,\n    h3 {\n      orphans: 3;\n      widows: 3;\n    }\n\n    // Avoid page breaks after a heading\n    h2,\n    h3 { page-break-after: avoid; }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Global spacing for form elements.\n/// @type Number\n$form-spacing: rem-calc(16) !default;\n\n@import 'text';\n@import 'checkbox';\n@import 'label';\n@import 'help-text';\n@import 'input-group';\n@import 'fieldset';\n@import 'select';\n@import 'range';\n@import 'progress';\n@import 'meter';\n@import 'error';\n\n@mixin foundation-forms {\n  @include foundation-form-text;\n  @include foundation-form-checkbox;\n  @include foundation-form-label;\n  @include foundation-form-helptext;\n  @include foundation-form-prepostfix;\n  @include foundation-form-fieldset;\n  @include foundation-form-select;\n  @include foundation-form-error;\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Font color of text inputs.\n/// @type Color\n$input-color: $black !default;\n\n/// Font color of placeholder text within text inputs.\n/// @type Color\n$input-placeholder-color: $medium-gray !default;\n\n/// Font family of text inputs.\n/// @type Font\n$input-font-family: inherit !default;\n\n/// Font size of text inputs.\n/// @type Number\n$input-font-size: rem-calc(16) !default;\n\n/// Background color of text inputs.\n/// @type Color\n$input-background: $white !default;\n\n/// Background color of focused of text inputs.\n/// @type Color\n$input-background-focus: $white !default;\n\n/// Background color of disabled text inputs.\n/// @type Color\n$input-background-disabled: $light-gray !default;\n\n/// Border around text inputs.\n/// @type Border\n$input-border: 1px solid $medium-gray !default;\n\n/// Border around focused text inputs.\n/// @type Color\n$input-border-focus: 1px solid $dark-gray !default;\n\n/// Box shadow inside text inputs when not focused.\n/// @type Shadow\n$input-shadow: inset 0 1px 2px rgba($black, 0.1) !default;\n\n/// Box shadow outside text inputs when focused.\n/// @type Shadow\n$input-shadow-focus: 0 0 5px $medium-gray !default;\n\n/// Cursor to use when hovering over a disabled text input.\n/// @type Cursor\n$input-cursor-disabled: not-allowed !default;\n\n/// Properties to transition on text inputs.\n/// @type Transition\n$input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out !default;\n\n/// Enables the up/down buttons that Chrome and Firefox add to `<input type='number'>` elements.\n/// @type Boolean\n$input-number-spinners: true !default;\n\n/// Radius for text inputs.\n/// @type Border\n$input-radius: $global-radius !default;\n\n@mixin form-element {\n  $height: ($input-font-size + ($form-spacing * 1.5) - rem-calc(1));\n\n  display: block;\n  box-sizing: border-box;\n  width: 100%;\n  height: $height;\n  padding: $form-spacing / 2;\n  border: $input-border;\n  margin: 0 0 $form-spacing;\n\n  font-family: $input-font-family;\n  font-size: $input-font-size;\n  color: $input-color;\n  background-color: $input-background;\n  box-shadow: $input-shadow;\n  border-radius: $input-radius;\n\n  @if has-value($input-transition) {\n    transition: $input-transition;\n  }\n\n  // Focus state\n  &:focus {\n    border: $input-border-focus;\n    background-color: $input-background-focus;\n    outline: none;\n    box-shadow: $input-shadow-focus;\n\n    @if has-value($input-transition) {\n      transition: $input-transition;\n    }\n  }\n}\n\n@mixin foundation-form-text {\n  // Text inputs\n  #{text-inputs()},\n  textarea {\n    @include form-element;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n  }\n\n  // Text areas\n  textarea {\n    max-width: 100%;\n\n    &[rows] {\n      height: auto;\n    }\n  }\n\n  input,\n  textarea {\n    // Placeholder text\n    &::placeholder {\n      color: $input-placeholder-color;\n    }\n\n    // Disabled/readonly state\n    &:disabled,\n    &[readonly] {\n      background-color: $input-background-disabled;\n      cursor: $input-cursor-disabled;\n    }\n  }\n\n  // Reset styles on button-like inputs\n  [type='submit'],\n  [type='button'] {\n    border-radius: $button-radius;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n  }\n\n  // Reset Normalize setting content-box to search elements\n  // scss-lint:disable QualifyingElement\n  input[type='search'] {\n    box-sizing: border-box;\n  }\n\n  // Number input styles\n  [type='number'] {\n    @if not $input-number-spinners {\n      -moz-appearance: textfield;\n\n      [type='number']::-webkit-inner-spin-button,\n      [type='number']::-webkit-outer-spin-button {\n        -webkit-appearance: none;\n        margin: 0;\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n@mixin foundation-form-checkbox {\n  [type='file'],\n  [type='checkbox'],\n  [type='radio'] {\n    margin: 0 0 $form-spacing;\n  }\n\n  // Styles for input/label siblings\n  [type='checkbox'] + label,\n  [type='radio'] + label {\n    display: inline-block;\n    margin-#{$global-left}: $form-spacing * 0.5;\n    margin-#{$global-right}: $form-spacing;\n    margin-bottom: 0;\n    vertical-align: baseline;\n\n    &[for] {\n      cursor: pointer;\n    }\n  }\n\n  // Styles for inputs inside labels\n  label > [type='checkbox'],\n  label > [type='radio'] {\n    margin-#{$global-right}: $form-spacing * 0.5;\n  }\n\n  // Normalize file input width\n  [type='file'] {\n    width: 100%;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Color for form labels.\n/// @type Color\n$form-label-color: $black !default;\n\n/// Font size for form labels.\n/// @type Number\n$form-label-font-size: rem-calc(14) !default;\n\n/// Font weight for form labels.\n/// @type Keyword\n$form-label-font-weight: $global-weight-normal !default;\n\n/// Line height for form labels. The higher the number, the more space between the label and its input field.\n/// @type Number\n$form-label-line-height: 1.8 !default;\n\n@mixin form-label {\n  display: block;\n  margin: 0;\n  font-size: $form-label-font-size;\n  font-weight: $form-label-font-weight;\n  line-height: $form-label-line-height;\n  color: $form-label-color;\n}\n\n@mixin form-label-middle {\n  $input-border-width: get-border-value($input-border, width);\n  margin: 0 0 $form-spacing;\n  padding: ($form-spacing / 2 + rem-calc($input-border-width)) 0;\n}\n\n@mixin foundation-form-label {\n  label {\n    @include form-label;\n\n    &.middle {\n      @include form-label-middle;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Default color for help text.\n/// @type Color\n$helptext-color: $black !default;\n\n/// Default font size for help text.\n/// @type Number\n$helptext-font-size: rem-calc(13) !default;\n\n/// Default font style for help text.\n/// @type Keyword\n$helptext-font-style: italic !default;\n\n@mixin foundation-form-helptext {\n  .help-text {\n    $margin-top: ($form-spacing * 0.5) * -1;\n\n    margin-top: $margin-top;\n    font-size: $helptext-font-size;\n    font-style: $helptext-font-style;\n    color: $helptext-color;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Color of labels prefixed to an input.\n/// @type Color\n$input-prefix-color: $black !default;\n\n/// Background color of labels prefixed to an input.\n/// @type Color\n$input-prefix-background: $light-gray !default;\n\n/// Border around labels prefixed to an input.\n/// @type Border\n$input-prefix-border: 1px solid $medium-gray !default;\n\n/// Left/right padding of an pre/postfixed input label\n$input-prefix-padding: 1rem !default;\n\n@mixin foundation-form-prepostfix {\n  $height: ($input-font-size + $form-spacing * 1.5);\n\n  .input-group {\n    display: if($global-flexbox, flex, table);\n    width: 100%;\n    margin-bottom: $form-spacing;\n\n    @if $global-flexbox {\n      align-items: stretch;\n    }\n\n    > :first-child {\n      border-radius: if($global-text-direction == rtl, 0 $global-radius $global-radius 0, $global-radius 0 0 $global-radius);\n    }\n\n    > :last-child {\n      > * {\n        border-radius: if($global-text-direction == rtl, $global-radius 0 0 $global-radius, 0 $global-radius $global-radius 0);\n      }\n    }\n  }\n\n  %input-group-child {\n    margin: 0;\n    white-space: nowrap;\n\n    @if not $global-flexbox {\n      display: table-cell;\n      vertical-align: middle;\n    }\n  }\n\n  .input-group-label {\n    @extend %input-group-child;\n    text-align: center;\n    padding: 0 $input-prefix-padding;\n    background: $input-prefix-background;\n    color: $input-prefix-color;\n    border: $input-prefix-border;\n    white-space: nowrap;\n\n    @if $global-flexbox {\n      flex: 0 0 auto;\n      display: flex;\n      align-items: center;\n    }\n    @else {\n      width: 1%;\n      height: 100%;\n    }\n\n    @if has-value($input-prefix-border) {\n      &:first-child {\n        border-#{$global-right}: 0;\n      }\n\n      &:last-child {\n        border-#{$global-left}: 0;\n      }\n    }\n  }\n\n  .input-group-field {\n    @extend %input-group-child;\n    border-radius: 0;\n\n    // scss-lint:disable ZeroUnit\n    @if $global-flexbox {\n      flex: 1 1 0px;\n      width: auto;\n      height: auto;\n    }\n    @else {\n      height: $height;\n    }\n  }\n\n  .input-group-button {\n    @extend %input-group-child;\n    padding-top: 0;\n    padding-bottom: 0;\n    text-align: center;\n\n    @if $global-flexbox {\n      flex: 0 0 auto;\n    }\n    @else {\n      height: 100%;\n      width: 1%;\n    }\n\n    a,\n    input,\n    button {\n      margin: 0;\n    }\n  }\n\n  // Specificity bump needed to prevent override by buttons\n  // scss-lint:disable QualifyingSelector\n  .input-group .input-group-button {\n    display: table-cell;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Default border around custom fieldsets.\n/// @type Border\n$fieldset-border: 1px solid $medium-gray !default;\n\n/// Default padding inside custom fieldsets.\n/// @type Number\n$fieldset-padding: rem-calc(20) !default;\n\n/// Default margin around custom fieldsets.\n/// @type Number\n$fieldset-margin: rem-calc(18 0) !default;\n\n/// Default padding between the legend text and fieldset border.\n/// @type Number\n$legend-padding: rem-calc(0 3) !default;\n\n@mixin fieldset {\n  border: $fieldset-border;\n  padding: $fieldset-padding;\n  margin: $fieldset-margin;\n\n  legend {\n    // Covers up the fieldset's border to create artificial padding\n    background: $body-background;\n    padding: $legend-padding;\n    margin: 0;\n    margin-#{$global-left}: rem-calc(-3);\n  }\n}\n\n@mixin foundation-form-fieldset {\n  fieldset {\n    border: 0;\n    padding: 0;\n    margin: 0;\n  }\n\n  legend {\n    margin-bottom: $form-spacing * 0.5;\n    max-width: 100%;\n  }\n\n  .fieldset {\n    @include fieldset;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group forms\n////\n\n/// Background color for select menus.\n/// @type Color\n$select-background: $white !default;\n\n/// Color of the dropdown triangle inside select menus. Set to `transparent` to remove it entirely.\n/// @type Color\n$select-triangle-color: $dark-gray !default;\n\n/// Default radius for select menus.\n/// @type Color\n$select-radius: $global-radius !default;\n\n@mixin form-select {\n  $height: ($input-font-size + ($form-spacing * 1.5) - rem-calc(1));\n\n  height: $height;\n  padding: ($form-spacing / 2);\n  border: $input-border;\n  margin: 0 0 $form-spacing;\n  font-size: $input-font-size;\n  font-family: $input-font-family;\n  line-height: normal;\n  color: $input-color;\n  background-color: $select-background;\n  border-radius: $select-radius;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n\n  @if $select-triangle-color != transparent {\n    @include background-triangle($select-triangle-color);\n    background-size: 9px 6px;\n    background-position: $global-right (-$form-spacing) center;\n    background-origin: content-box;\n    background-repeat: no-repeat;\n    padding-#{$global-right}: ($form-spacing * 1.5);\n  }\n\n  // Disabled state\n  &:disabled {\n    background-color: $input-background-disabled;\n    cursor: $input-cursor-disabled;\n  }\n\n  // Hide the dropdown arrow shown in newer IE versions\n  &::-ms-expand {\n    display: none;\n  }\n\n  &[multiple] {\n    height: auto;\n    background-image: none;\n  }\n}\n\n@mixin foundation-form-select {\n  select {\n    @include form-select;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group slider\n////\n\n/// Default height of the slider.\n/// @type Number\n$slider-height: 0.5rem !default;\n\n/// Default background color of the slider's track.\n/// @type Color\n$slider-background: $light-gray !default;\n\n/// Default color of the active fill color of the slider.\n/// @type Color\n$slider-fill-background: $medium-gray !default;\n\n/// Default height of the handle of the slider.\n/// @type Number\n$slider-handle-height: 1.4rem !default;\n\n/// Default width of the handle of the slider.\n/// @type Number\n$slider-handle-width: 1.4rem !default;\n\n/// Default color of the handle for the slider.\n/// @type Color\n$slider-handle-background: $primary-color !default;\n\n/// Default fade amount of a disabled slider.\n/// @type Number\n$slider-opacity-disabled: 0.25 !default;\n\n/// Default radius for slider.\n/// @type Number\n$slider-radius: $global-radius !default;\n\n@mixin foundation-range-input {\n  // scss-lint:disable QualifyingElement\n  input[type=\"range\"] {\n    $margin: ($slider-handle-height - $slider-height) / 2;\n\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    display: block;\n    width: 100%;\n    height: auto;\n    cursor: pointer;\n    margin-top: $margin;\n    margin-bottom: $margin;\n    border: 0;\n    line-height: 1;\n\n    @if has-value($slider-radius) {\n      border-radius: $slider-radius;\n    }\n\n    &:focus {\n      outline: 0;\n    }\n\n    &[disabled] {\n      opacity: $slider-opacity-disabled;\n    }\n\n    // Chrome/Safari\n    &::-webkit-slider-runnable-track {\n      height: $slider-height;\n      background: $slider-background;\n    }\n\n    &::-webkit-slider-handle {\n      -webkit-appearance: none;\n      background: $slider-handle-background;\n      width: $slider-handle-width;\n      height: $slider-handle-height;\n      margin-top: -$margin;\n\n      @if has-value($slider-radius) {\n        border-radius: $slider-radius;\n      }\n    }\n\n    // Firefox\n    &::-moz-range-track {\n      -moz-appearance: none;\n      height: $slider-height;\n      background: $slider-background;\n    }\n\n    &::-moz-range-thumb {\n      -moz-appearance: none;\n      background: $slider-handle-background;\n      width: $slider-handle-width;\n      height: $slider-handle-height;\n      margin-top: -$margin;\n\n      @if has-value($slider-radius) {\n        border-radius: $slider-radius;\n      }\n    }\n\n    // Internet Explorer\n    &::-ms-track {\n      height: $slider-height;\n      background: $slider-background;\n      color: transparent;\n      border: 0;\n      overflow: visible;\n      border-top: $margin solid $body-background;\n      border-bottom: $margin solid $body-background;\n    }\n\n    &::-ms-thumb {\n      background: $slider-handle-background;\n      width: $slider-handle-width;\n      height: $slider-handle-height;\n      border: 0;\n\n      @if has-value($slider-radius) {\n        border-radius: $slider-radius;\n      }\n    }\n\n    &::-ms-fill-lower {\n      background: $slider-fill-background;\n    }\n\n    &::-ms-fill-upper {\n      background: $slider-background;\n    }\n\n    @at-root {\n      output {\n        line-height: $slider-handle-height;\n        vertical-align: middle;\n        margin-left: 0.5em;\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group progress-bar\n////\n\n/// Height of a progress bar.\n/// @type Number\n$progress-height: 1rem !default;\n\n/// Background color of a progress bar.\n/// @type Color\n$progress-background: $medium-gray !default;\n\n/// Bottom margin of a progress bar.\n/// @type Number\n$progress-margin-bottom: $global-margin !default;\n\n/// Default color of a progress bar's meter.\n/// @type Color\n$progress-meter-background: $primary-color !default;\n\n/// Default radius of a progress bar.\n/// @type Number\n$progress-radius: $global-radius !default;\n\n@mixin foundation-progress-element {\n  progress {\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    display: block;\n    width: 100%;\n    height: $progress-height;\n    margin-bottom: $progress-margin-bottom;\n\n    @if hasvalue($progress-radius) {\n      border-radius: $progress-radius;\n    }\n\n    // For Firefox\n    background: $progress-background;\n    border: 0;\n\n    &::-webkit-progress-bar {\n      background: $progress-background;\n\n      @if hasvalue($progress-radius) {\n        border-radius: $progress-radius;\n      }\n    }\n\n    &::-webkit-progress-value {\n      background: $progress-meter-background;\n\n      @if hasvalue($progress-radius) {\n        border-radius: $progress-radius;\n      }\n    }\n\n    &::-moz-progress-bar {\n      background: $progress-meter-background;\n\n      @if hasvalue($progress-radius) {\n        border-radius: $progress-radius;\n      }\n    }\n\n    @each $name, $color in $foundation-palette {\n      &.#{$name} {\n        // Internet Explorer sets the fill with color\n        color: $color;\n\n        &::-webkit-progress-value {\n          background: $color;\n        }\n\n        &::-moz-progress-bar {\n          background: $color;\n        }\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group meter\n////\n\n/// Height of a `<meter>` element.\n/// @type Length\n$meter-height: 1rem !default;\n\n/// Border radius of a `<meter>` element.\n/// @type Length\n$meter-radius: $global-radius !default;\n\n/// Background color of a `<meter>` element.\n/// @type Color\n$meter-background: $medium-gray !default;\n\n/// Meter fill for an optimal value in a `<meter>` element.\n/// @type Color\n$meter-fill-good: $success-color !default;\n\n/// Meter fill for an average value in a `<meter>` element.\n/// @type Color\n$meter-fill-medium: $warning-color !default;\n\n/// Meter fill for a suboptimal value in a `<meter>` element.\n/// @type Color\n$meter-fill-bad: $alert-color !default;\n\n@mixin foundation-meter-element {\n  meter {\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    display: block;\n    width: 100%;\n    height: $meter-height;\n    margin-bottom: 1rem;\n\n    @if has-value($meter-radius) {\n      border-radius: $meter-radius;\n    }\n\n    // For Firefox\n    background: $meter-background;\n    border: 0;\n\n    // Chrome/Safari\n    &::-webkit-meter-bar {\n      background: $meter-background;\n\n      @if has-value($meter-radius) {\n        border-radius: $meter-radius;\n      }\n    }\n\n    &::-webkit-meter-inner-element {\n      @if has-value($meter-radius) {\n        border-radius: $meter-radius;\n      }\n    }\n\n    &::-webkit-meter-optimum-value {\n      background: $meter-fill-good;\n\n      @if has-value($meter-radius) {\n        border-radius: $meter-radius;\n      }\n    }\n\n    &::-webkit-meter-suboptimum-value {\n      background: $meter-fill-medium;\n\n      @if has-value($meter-radius) {\n        border-radius: $meter-radius;\n      }\n    }\n\n    &::-webkit-meter-even-less-good-value {\n      background: $meter-fill-bad;\n\n      @if has-value($meter-radius) {\n        border-radius: $meter-radius;\n      }\n    }\n\n    &::-moz-meter-bar {\n      background: $primary-color;\n\n      @if has-value($meter-radius) {\n        border-radius: $meter-radius;\n      }\n    }\n\n    &:-moz-meter-optimum::-moz-meter-bar {\n      background: $meter-fill-good;\n    }\n\n    &:-moz-meter-sub-optimum::-moz-meter-bar {\n      background: $meter-fill-medium;\n    }\n\n    &:-moz-meter-sub-sub-optimum::-moz-meter-bar {\n      background: $meter-fill-bad;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group abide\n////\n\n/// Sets if error styles should be added to inputs.\n/// @type Boolean\n$abide-inputs: true !default;\n\n/// Sets if error styles should be added to labels.\n/// @type Boolean\n$abide-labels: true !default;\n\n/// Background color to use for invalid text inputs.\n/// @type Color\n$input-background-invalid: map-get($foundation-palette, alert) !default;\n\n/// Color to use for labels of invalid inputs.\n/// @type Color\n$form-label-color-invalid: map-get($foundation-palette, alert) !default;\n\n/// Default font color for form error text.\n/// @type Color\n$input-error-color: map-get($foundation-palette, alert) !default;\n\n/// Default font size for form error text.\n/// @type Number\n$input-error-font-size: rem-calc(12) !default;\n\n/// Default font weight for form error text.\n/// @type Keyword\n$input-error-font-weight: $global-weight-bold !default;\n\n/// Styles the background and border of an input field to have an error state.\n///\n/// @param {Color} $background [$alert-color] - Color to use for the background and border.\n/// @param {Number} $background-alpha [0.1] - Transparency level of the background color.\n@mixin form-input-error(\n  $background: $input-background-invalid,\n  $background-alpha: 0.1\n) {\n  &:not(:focus) {\n    background-color: rgba($background, $background-alpha);\n    border-color: $background;\n  }\n}\n\n/// Adds error styles to a form element, using the values in the settings file.\n@mixin form-error {\n  display: none;\n  margin-top: $form-spacing * -0.5;\n  margin-bottom: $form-spacing;\n  font-size: $input-error-font-size;\n  font-weight: $input-error-font-weight;\n  color: $input-error-color;\n}\n\n@mixin foundation-form-error {\n  @if $abide-inputs {\n    // Error class for invalid inputs\n    .is-invalid-input {\n      @include form-input-error;\n    }\n  }\n\n  @if $abide-labels {\n    // Error class for labels of invalid outputs\n    .is-invalid-label {\n      color: $form-label-color-invalid;\n    }\n  }\n\n  // Form error element\n  .form-error {\n    @include form-error;\n\n    &.is-visible {\n      display: block;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n/// Hide an element by default, only displaying it above a certain screen size.\n/// @param {Keyword} $size - Breakpoint to use. **Must be a breakpoint defined in `$breakpoints`.**\n@mixin show-for($size) {\n  $size: map-get($breakpoints, $size);\n  $size: -zf-bp-to-em($size) - (1 / 16);\n\n  @include breakpoint($size down) {\n    display: none !important;\n  }\n}\n\n/// Hide an element by default, only displaying it within a certain breakpoint.\n/// @param {Keyword} $size - Breakpoint to use. **Must be a breakpoint defined in `$breakpoints`.**\n@mixin show-for-only($size) {\n  $lower-bound-size: map-get($breakpoints, $size);\n  $upper-bound-size: -zf-map-next($breakpoints, $size);\n\n  // more often than not this will be correct, just one time round the loop it won't so set in scope here\n  $lower-bound: -zf-bp-to-em($lower-bound-size) - (1 / 16);\n  // test actual lower-bound-size, if 0 set it to 0em\n  @if strip-unit($lower-bound-size) == 0 {\n    $lower-bound: -zf-bp-to-em($lower-bound-size);\n  }\n\n  @if $upper-bound-size == null {\n    @media screen and (max-width: $lower-bound) {\n      display: none !important;\n    }\n  }\n  @else {\n    $upper-bound: -zf-bp-to-em($upper-bound-size);\n\n    @media screen and (max-width: $lower-bound), screen and (min-width: $upper-bound) {\n      display: none !important;\n    }\n  }\n}\n\n\n/// Show an element by default, and hide it above a certain screen size.\n/// @param {Keyword} $size - Breakpoint to use. **Must be a breakpoint defined in `$breakpoints`.**\n@mixin hide-for($size) {\n  @include breakpoint($size) {\n    display: none !important;\n  }\n}\n\n/// Show an element by default, and hide it above a certain screen size.\n/// @param {Keyword} $size - Breakpoint to use. **Must be a breakpoint defined in `$breakpoints`.**\n@mixin hide-for-only($size) {\n  @include breakpoint($size only) {\n    display: none !important;\n  }\n}\n\n@mixin foundation-visibility-classes {\n  // Basic hiding classes\n  .hide {\n    display: none !important;\n  }\n\n  .invisible {\n    visibility: hidden;\n  }\n\n  // Responsive visibility classes\n  @each $size in $breakpoint-classes {\n    @if $size != $-zf-zero-breakpoint {\n      .hide-for-#{$size} {\n        @include hide-for($size);\n      }\n\n      .show-for-#{$size} {\n        @include show-for($size);\n      }\n    }\n\n    .hide-for-#{$size}-only {\n      @include hide-for-only($size);\n    }\n\n    .show-for-#{$size}-only {\n      @include show-for-only($size);\n    }\n  }\n\n  // Screen reader visibility classes\n  // Need a \"hide-for-sr\" class? Add aria-hidden='true' to the element\n  .show-for-sr,\n  .show-on-focus {\n    @include element-invisible;\n  }\n\n  // Only display the element when it's focused\n  .show-on-focus {\n    &:active,\n    &:focus {\n      @include element-invisible-off;\n    }\n  }\n\n  // Landscape and portrait visibility\n  .show-for-landscape,\n  .hide-for-portrait {\n    display: block !important;\n\n    @include breakpoint(landscape) {\n      display: block !important;\n    }\n\n    @include breakpoint(portrait) {\n      display: none !important;\n    }\n  }\n\n  .hide-for-landscape,\n  .show-for-portrait {\n    display: none !important;\n\n    @include breakpoint(landscape) {\n      display: none !important;\n    }\n\n    @include breakpoint(portrait) {\n      display: block !important;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group float\n////\n\n@mixin foundation-float-classes {\n  .float-left {\n    float: left !important;\n  }\n\n  .float-right {\n    float: right !important;\n  }\n\n  .float-center {\n    display: block;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .clearfix {\n    @include clearfix;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group button\n////\n\n/// Padding inside buttons.\n/// @type List\n$button-padding: 0.85em 1em !default;\n\n/// Margin around buttons.\n/// @type List\n$button-margin: 0 0 $global-margin 0 !default;\n\n/// Default fill for buttons. Can either be `solid` or `hollow`.\n/// @type Keyword\n$button-fill: solid !default;\n\n/// Default background color for buttons.\n/// @type Color\n$button-background: $primary-color !default;\n\n/// Background color on hover for buttons.\n/// @type Color\n$button-background-hover: scale-color($button-background, $lightness: -15%) !default;\n\n/// Font color for buttons.\n/// @type List\n$button-color: $white !default;\n\n/// Font color for buttons, if the background is light.\n/// @type List\n$button-color-alt: $black !default;\n\n/// Border radius for buttons, defaulted to global-radius.\n/// @type Number\n$button-radius: $global-radius !default;\n\n/// Sizes for buttons.\n/// @type Map\n$button-sizes: (\n  tiny: 0.6rem,\n  small: 0.75rem,\n  default: 0.9rem,\n  large: 1.25rem,\n) !default;\n\n/// opacity for a disabled button.\n/// @type List\n$button-opacity-disabled: 0.25 !default;\n\n// Internal: flip from margin-right to margin-left for defaults\n@if $global-text-direction == 'rtl' {\n  $button-margin: 0 0 $global-margin $global-margin !default;\n}\n\n// TODO: Document button-base() mixin\n@mixin button-base {\n  @include disable-mouse-outline;\n  display: inline-block;\n  text-align: center;\n  line-height: 1;\n  cursor: pointer;\n  -webkit-appearance: none;\n  transition: background-color 0.25s ease-out, color 0.25s ease-out;\n  vertical-align: middle;\n  border: 1px solid transparent;\n  border-radius: $button-radius;\n  padding: $button-padding;\n  margin: $button-margin;\n  font-size: map-get($button-sizes, default);\n}\n\n/// Expands a button to make it full-width.\n/// @param {Boolean} $expand [true] - Set to `true` to enable the expand behavior. Set to `false` to reverse this behavior.\n@mixin button-expand($expand: true) {\n  @if $expand {\n    display: block;\n    width: 100%;\n    margin-left: 0;\n    margin-right: 0;\n  }\n  @else {\n    display: inline-block;\n    width: auto;\n    margin: $button-margin;\n  }\n}\n\n/// Sets the visual style of a button.\n/// @param {Color} $background [$button-background] - Background color of the button.\n/// @param {Color} $background-hover [$button-background-hover] - Background color of the button on hover. Set to `auto` to have the mixin automatically generate a hover color.\n/// @param {Color} $color [$button-color] - Text color of the button. Set to `auto` to automatically generate a color based on the background color.\n@mixin button-style(\n  $background: $button-background,\n  $background-hover: $button-background-hover,\n  $color: $button-color\n) {\n  @if $color == auto {\n    $color: foreground($background, $button-color-alt, $button-color);\n  }\n\n  @if $background-hover == auto {\n    $background-hover: scale-color($background, $lightness: -20%);\n  }\n\n  background-color: $background;\n  color: $color;\n\n  &:hover, &:focus {\n    background-color: $background-hover;\n    color: $color;\n  }\n}\n\n/// Removes background fill on hover and focus for hollow buttons.\n@mixin button-hollow {\n  &,\n  &:hover, &:focus {\n    background-color: transparent;\n  }\n}\n\n@mixin button-hollow-style($color: $primary-color) {\n  $color-hover: scale-color($color, $lightness: -50%);\n\n  border: 1px solid $color;\n  color: $color;\n\n  &:hover, &:focus {\n    border-color: $color-hover;\n    color: $color-hover;\n  }\n}\n\n/// Adds disabled styles to a button by fading the element, reseting the cursor, and disabling pointer events.\n@mixin button-disabled {\n  opacity: $button-opacity-disabled;\n  cursor: not-allowed;\n\n  &:hover, &:focus {\n    background-color: $button-background;\n    color: $button-color;\n  }\n}\n\n/// Adds a dropdown arrow to a button.\n/// @param {Number} $size [0.4em] - Size of the arrow. We recommend using an `em` value so the triangle scales when used inside different sizes of buttons.\n/// @param {Color} $color [white] - Color of the arrow.\n/// @param {Number} $offset [$button-padding] - Distance between the arrow and the text of the button. Defaults to whatever the right padding of a button is.\n@mixin button-dropdown(\n  $size: 0.4em,\n  $color: $white,\n  $offset: get-side($button-padding, right)\n) {\n  &::after {\n    @include css-triangle($size, $color, down);\n    position: relative;\n    top: 0.4em; // Aligns the arrow with the text of the button\n    float: #{$global-right};\n    margin-#{$global-left}: get-side($button-padding, right);\n    display: inline-block;\n  }\n}\n\n/// Adds all styles for a button. For more granular control over styles, use the individual button mixins.\n/// @param {Boolean} $expand [false] - Set to `true` to make the button full-width.\n/// @param {Color} $background [$button-background] - Background color of the button.\n/// @param {Color} $background-hover [$button-background-hover] - Background color of the button on hover. Set to `auto` to have the mixin automatically generate a hover color.\n/// @param {Color} $color [$button-color] - Text color of the button. Set to `auto` to automatically generate a color based on the background color.\n/// @param {Keyword} $style [solid] - Set to `hollow` to create a hollow button. The color defined in `$background` will be used as the primary color of the button.\n@mixin button(\n  $expand: false,\n  $background: $button-background,\n  $background-hover: $button-background-hover,\n  $color: $button-color,\n  $style: $button-fill\n) {\n  @include button-base;\n\n  @if $style == solid {\n    @include button-style($background, $background-hover, $color);\n  }\n  @else if $style == hollow {\n    @include button-hollow;\n    @include button-hollow-style($background);\n  }\n\n  @if $expand {\n    @include button-expand;\n  }\n}\n\n@mixin foundation-button {\n  .button {\n    @include button;\n\n    // Sizes\n    @each $size, $value in map-remove($button-sizes, default) {\n      &.#{$size} {\n        font-size: $value;\n      }\n    }\n\n    &.expanded { @include button-expand; }\n\n    // Colors\n    @each $name, $color in $foundation-palette {\n      @if $button-fill != hollow {\n        &.#{$name} {\n          @include button-style($color, auto, auto);\n        }\n      }\n      @else {\n        &.#{$name} {\n          @include button-hollow-style($color);\n        }\n\n        &.#{$name}.dropdown::after {\n          border-top-color: $color;\n        }\n      }\n    }\n\n    // Hollow style\n    @if $button-fill != hollow {\n      &.hollow {\n        @include button-hollow;\n        @include button-hollow-style;\n\n        @each $name, $color in $foundation-palette {\n          &.#{$name} {\n            @include button-hollow-style($color);\n          }\n        }\n      }\n    }\n\n    // Disabled style\n    &.disabled,\n    &[disabled] {\n      @include button-disabled;\n    }\n\n    // Dropdown arrow\n    &.dropdown {\n      @include button-dropdown;\n\n      @if $button-fill == hollow {\n        &::after {\n          border-top-color: $button-background;\n        }\n      }\n    }\n\n    // Button with dropdown arrow only\n    &.arrow-only::after {\n      margin-#{$global-left}: 0;\n      float: none;\n      top: -0.1em;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group button-group\n////\n\n/// Margin for button groups.\n/// @type Number\n$buttongroup-margin: 1rem !default;\n\n/// Margin between buttons in a button group.\n/// @type Border\n$buttongroup-spacing: 1px !default;\n\n/// Selector for the buttons inside a button group.\n/// @type String\n$buttongroup-child-selector: '.button' !default;\n\n/// Maximum number of buttons that can be in an even-width button group.\n/// @type Number\n$buttongroup-expand-max: 6 !default;\n\n/// Add styles for a button group container.\n/// @param {String} $child-selector [$buttongroup-child-selector] - Selector for the buttons inside a button group.\n@mixin button-group(\n  $child-selector: $buttongroup-child-selector\n) {\n  @include clearfix;\n  margin-bottom: $buttongroup-margin;\n\n  @if $global-flexbox {\n    display: flex;\n    flex-wrap: nowrap;\n    align-items: stretch;\n  }\n  @else {\n    font-size: 0;\n  }\n\n  #{$child-selector} {\n    margin: 0;\n    margin-#{$global-right}: $buttongroup-spacing;\n    margin-bottom: $buttongroup-spacing;\n    font-size: map-get($button-sizes, default);\n\n    @if $global-flexbox {\n      flex: 0 0 auto;\n    }\n\n    &:last-child {\n      margin-#{$global-right}: 0;\n    }\n  }\n}\n\n/// Creates a full-width button group, making each button equal width.\n/// @param {String} $selector [$buttongroup-child-selector] - Selector for the buttons inside a button group.\n@mixin button-group-expand(\n  $selector: $buttongroup-child-selector,\n  $count: null\n) {\n  @if not $global-flexbox {\n    margin-#{$global-right}: -$buttongroup-spacing;\n\n    &::before,\n    &::after {\n      display: none;\n    }\n  }\n\n  // scss-lint:disable ZeroUnit\n  #{$selector} {\n    @if $global-flexbox {\n      flex: 1 1 0px;\n    }\n    @else {\n      @for $i from 2 through $buttongroup-expand-max {\n        &:first-child:nth-last-child(#{$i}) {\n          &, &:first-child:nth-last-child(#{$i}) ~ #{$selector} {\n            display: inline-block;\n            width: calc(#{percentage(1 / $i)} - #{$buttongroup-spacing});\n            margin-#{$global-right}: $buttongroup-spacing;\n\n            &:last-child {\n              margin-#{$global-right}: $buttongroup-spacing * -$buttongroup-expand-max;\n            }\n          }\n        }\n      }\n    }\n  }\n}\n\n/// Stacks the buttons in a button group.\n/// @param {String} $selector [$buttongroup-child-selector] - Selector for the buttons inside the button group.\n@mixin button-group-stack(\n  $selector: $buttongroup-child-selector\n) {\n  @if $global-flexbox {\n    flex-wrap: wrap;\n  }\n\n  #{$selector} {\n    @if $global-flexbox {\n      flex: 0 0 100%;\n    }\n    @else {\n      width: 100%;\n    }\n\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n}\n\n/// Un-stacks the buttons in a button group.\n/// @param {String} $selector [$buttongroup-child-selector] - Selector for the buttons inside the button group.\n@mixin button-group-unstack(\n  $selector: $buttongroup-child-selector\n) {\n  // scss-lint:disable ZeroUnit\n  #{$selector} {\n    @if $global-flexbox {\n      flex: 1 1 0px;\n    }\n    @else {\n      width: auto;\n    }\n    margin-bottom: 0;\n  }\n}\n\n@mixin foundation-button-group {\n  .button-group {\n    @include button-group;\n\n    // Sizes\n    @each $size, $value in map-remove($button-sizes, default) {\n      &.#{$size} #{$buttongroup-child-selector} {\n        font-size: $value;\n      }\n    }\n\n    // Even-width Group\n    &.expanded { @include button-group-expand; }\n\n    // Colors\n    @each $name, $color in $foundation-palette {\n      @if $button-fill != hollow {\n        &.#{$name} #{$buttongroup-child-selector} {\n          @include button-style($color, auto, auto);\n        }\n      }\n      @else {\n        &.#{$name} #{$buttongroup-child-selector} {\n          @include button-hollow;\n          @include button-hollow-style($color);\n        }\n      }\n    }\n\n    &.stacked,\n    &.stacked-for-small,\n    &.stacked-for-medium {\n      @include button-group-stack;\n    }\n\n    &.stacked-for-small {\n      @include breakpoint(medium) {\n        @include button-group-unstack;\n      }\n    }\n\n    &.stacked-for-medium {\n      @include breakpoint(large) {\n        @include button-group-unstack;\n      }\n    }\n\n    // scss-lint:disable MergeableSelector\n    &.stacked-for-small.expanded {\n      @include breakpoint(small only) {\n        display: block;\n\n        #{$buttongroup-child-selector} {\n          display: block;\n          margin-#{$global-right}: 0;\n        }\n      }\n    }\n  }\n}\n","////\n/// @group accordion-menu\n////\n\n/// Sets if accordion menus have the default arrow styles.\n/// @type Boolean\n$accordionmenu-arrows: true !default;\n\n/// Sets accordion menu arrow color if arrow is used.\n/// @type Color\n$accordionmenu-arrow-color: $primary-color !default;\n\n@mixin foundation-accordion-menu {\n  @if $accordionmenu-arrows {\n    .is-accordion-submenu-parent > a {\n      position: relative;\n\n      &::after {\n        @include css-triangle(6px, $accordionmenu-arrow-color, down);\n        position: absolute;\n        top: 50%;\n        margin-top: -4px;\n        right: 1rem;\n      }\n    }\n\n    .is-accordion-submenu-parent[aria-expanded='true'] > a::after {\n      transform-origin: 50% 50%;\n      transform: scaleY(-1);\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group accordion\n////\n\n/// Default background color of an accordion group.\n/// @type Color\n$accordion-background: $white !default;\n\n/// If `true`, adds plus and minus icons to the side of each accordion title.\n/// @type Boolean\n$accordion-plusminus: true !default;\n\n/// Default text color for items in a Menu.\n/// @type Color\n$accordion-item-color: foreground($accordion-background, $primary-color) !default;\n\n/// Default background color on hover for items in a Menu.\n/// @type Color\n$accordion-item-background-hover: $light-gray !default;\n\n/// Default padding of an accordion item.\n/// @type Number | List\n$accordion-item-padding: 1.25rem 1rem !default;\n\n/// Default background color of tab content.\n/// @type Color\n$accordion-content-background: $white !default;\n\n/// Default border color of tab content.\n/// @type Color\n$accordion-content-border: 1px solid $light-gray !default;\n\n/// Default text color of tab content.\n/// @type Color\n$accordion-content-color: foreground($accordion-content-background, $body-font-color) !default;\n\n/// Default padding for tab content.\n/// @type Number | List\n$accordion-content-padding: 1rem !default;\n\n/// Adds styles for an accordion container. Apply this to the same element that gets `data-accordion`.\n@mixin accordion-container {\n  list-style-type: none;\n  background: $accordion-background;\n  margin-#{$global-left}: 0;\n}\n\n/// Adds styles for the accordion item. Apply this to the list item within an accordion ul.\n@mixin accordion-item {\n  &:first-child > :first-child {\n    border-radius: $global-radius $global-radius 0 0;\n  }\n\n  &:last-child > :last-child {\n    border-radius: 0 0 $global-radius $global-radius;\n  }\n}\n\n/// Adds styles for the title of an accordion item. Apply this to the link within an accordion item.\n@mixin accordion-title {\n  display: block;\n  padding: $accordion-item-padding;\n  line-height: 1;\n  font-size: rem-calc(12);\n  color: $accordion-item-color;\n  position: relative;\n  border: $accordion-content-border;\n  border-bottom: 0;\n\n  :last-child:not(.is-active) > & {\n    border-radius: 0 0 $global-radius $global-radius;\n    border-bottom: $accordion-content-border;\n  }\n\n  &:hover,\n  &:focus {\n    background-color: $accordion-item-background-hover;\n  }\n\n  @if $accordion-plusminus {\n    &::before {\n      content: '+';\n      position: absolute;\n      #{$global-right}: 1rem;\n      top: 50%;\n      margin-top: -0.5rem;\n    }\n\n    .is-active > &::before {\n      content: '–';\n    }\n  }\n}\n\n/// Adds styles for accordion content. Apply this to the content pane below an accordion item's title.\n@mixin accordion-content {\n  padding: $accordion-content-padding;\n  display: none;\n  border: $accordion-content-border;\n  border-bottom: 0;\n  background-color: $accordion-content-background;\n  color: $accordion-content-color;\n\n  :last-child > &:last-child {\n    border-bottom: $accordion-content-border;\n  }\n}\n\n@mixin foundation-accordion {\n  .accordion {\n    @include accordion-container;\n  }\n\n  .accordion-item {\n    @include accordion-item;\n  }\n\n  .accordion-title {\n    @include accordion-title;\n  }\n\n  .accordion-content {\n    @include accordion-content;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group badge\n////\n\n/// Default background color for badges.\n/// @type Color\n$badge-background: $primary-color !default;\n\n/// Default text color for badges.\n/// @type Color\n$badge-color: foreground($badge-background) !default;\n\n/// Default padding inside badges.\n/// @type Number\n$badge-padding: 0.3em !default;\n\n/// Minimum width of a badge.\n/// @type Number\n$badge-minwidth: 2.1em !default;\n\n/// Default font size for badges.\n/// @type Number\n$badge-font-size: 0.6rem !default;\n\n/// Generates the base styles for a badge.\n@mixin badge {\n  display: inline-block;\n  padding: $badge-padding;\n  min-width: $badge-minwidth;\n  font-size: $badge-font-size;\n  text-align: center;\n  border-radius: 50%;\n}\n\n@mixin foundation-badge {\n  .badge {\n    @include badge;\n\n    background: $badge-background;\n    color: $badge-color;\n\n    @each $name, $color in $foundation-palette {\n      @if $name != primary {\n        &.#{$name} {\n          background: $color;\n          color: foreground($color);\n        }\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group breadcrumbs\n////\n\n/// Margin around a breadcrumbs container.\n/// @type Number\n$breadcrumbs-margin: 0 0 $global-margin 0 !default;\n\n/// Font size of breadcrumb links.\n/// @type Number\n$breadcrumbs-item-font-size: rem-calc(11) !default;\n\n/// Color of breadcrumb links.\n/// @type Color\n$breadcrumbs-item-color: $primary-color !default;\n\n/// Color of the active breadcrumb link.\n/// @type Color\n$breadcrumbs-item-color-current: $black !default;\n\n/// Opacity of disabled breadcrumb links.\n/// @type Number\n$breadcrumbs-item-color-disabled: $medium-gray !default;\n\n/// Margin between breadcrumb items.\n/// @type Number\n$breadcrumbs-item-margin: 0.75rem !default;\n\n/// If `true`, makes breadcrumb links uppercase.\n/// @type Boolean\n$breadcrumbs-item-uppercase: true !default;\n\n/// If `true`, adds a slash between breadcrumb links.\n/// @type Boolean\n$breadcrumbs-item-slash: true !default;\n\n/// Adds styles for a breadcrumbs container, along with the styles for the `<li>` and `<a>` elements inside of it.\n@mixin breadcrumbs-container {\n  @include clearfix;\n  list-style: none;\n  margin: $breadcrumbs-margin;\n\n  // Item wrapper\n  li {\n    float: #{$global-left};\n    color: $breadcrumbs-item-color-current;\n    font-size: $breadcrumbs-item-font-size;\n    cursor: default;\n\n    @if $breadcrumbs-item-uppercase {\n      text-transform: uppercase;\n    }\n\n    @if $breadcrumbs-item-slash {\n      // Need to escape the backslash\n      $slash: if($global-text-direction == 'ltr', '/', '\\\\');\n\n      &:not(:last-child)::after {\n        color: $medium-gray;\n        content: $slash;\n        margin: 0 $breadcrumbs-item-margin;\n        position: relative;\n        top: 1px;\n        opacity: 1;\n      }\n    }\n    @else {\n      margin-#{$global-right}: $breadcrumbs-item-margin;\n    }\n  }\n\n  // Page links\n  a {\n    color: $breadcrumbs-item-color;\n\n    &:hover {\n      text-decoration: underline;\n    }\n  }\n}\n\n@mixin foundation-breadcrumbs {\n  .breadcrumbs {\n    @include breadcrumbs-container;\n\n    .disabled {\n      color: $breadcrumbs-item-color-disabled;\n      cursor: not-allowed;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group callout\n////\n\n/// Default background color.\n/// @type Color\n$callout-background: $white !default;\n\n/// Default fade value for callout backgrounds.\n/// @type Number\n$callout-background-fade: 85% !default;\n\n/// Default border style for callouts.\n/// @type List\n$callout-border: 1px solid rgba($black, 0.25) !default;\n\n/// Default bottom margin for callouts.\n/// @type Number\n$callout-margin: 0 0 1rem 0 !default;\n\n/// Default inner padding for callouts.\n/// @type Number\n$callout-padding: 1rem !default;\n\n/// Default font color for callouts.\n/// @type Color\n$callout-font-color: $body-font-color !default;\n\n/// Default font color for callouts, if the callout has a dark background.\n/// @type Color\n$callout-font-color-alt: $body-background !default;\n\n/// Default border radius for callouts.\n/// @type Color\n$callout-radius: $global-radius !default;\n\n/// Amount to tint links used within colored panels. Set to `false` to disable this feature.\n/// @type Number | Boolean\n$callout-link-tint: 30% !default;\n\n/// Adds basic styles for a callout, including padding and margin.\n@mixin callout-base() {\n  margin: $callout-margin;\n  padding: $callout-padding;\n  border: $callout-border;\n  border-radius: $callout-radius;\n  position: relative;\n  color: $callout-font-color;\n\n  // Respect the padding, fool.\n  > :first-child {\n    margin-top: 0;\n  }\n\n  > :last-child {\n    margin-bottom: 0;\n  }\n}\n\n/// Generate quick styles for a callout using a single color as a baseline.\n/// @param {Color} $color [$callout-background] - Color to use.\n@mixin callout-style($color: $callout-background) {\n  $background: scale-color($color, $lightness: $callout-background-fade);\n\n  background-color: $background;\n}\n\n@mixin callout-size($padding) {\n  padding-top: $padding;\n  padding-right: $padding;\n  padding-bottom: $padding;\n  padding-left: $padding;\n}\n\n\n/// Adds styles for a callout.\n/// @param {Color} $color [$callout-background] - Color to use.\n@mixin callout($color: $callout-background) {\n  @include callout-base;\n  @include callout-style($color);\n}\n\n@mixin foundation-callout {\n  .callout {\n    @include callout;\n\n    @each $name, $color in $foundation-palette {\n      &.#{$name} {\n        @include callout-style($color);\n      }\n    }\n\n    &.small {\n      @include callout-size(0.5rem);\n    }\n\n    &.large {\n      @include callout-size(3rem);\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group close-button\n////\n\n/// Default position of the close button. The first value should be `right` or `left`, and the second value should be `top` or `bottom`.\n/// @type List\n$closebutton-position: right top !default;\n\n/// Right (or left) offset for a close button.\n/// @type Number\n$closebutton-offset-horizontal: 1rem !default;\n\n/// Top (or bottom) offset for a close button.\n/// @type Number\n$closebutton-offset-vertical: 0.5rem !default;\n\n/// Default font size of the close button.\n/// @type Number\n$closebutton-size: 2em !default;\n\n/// The line-height of the close button. It affects the spacing of the element.\n/// @type Number\n$closebutton-lineheight: 1 !default;\n\n/// Default color of the close button.\n/// @type Color\n$closebutton-color: $dark-gray !default;\n\n/// Default color of the close button when being hovered on.\n/// @type Color\n$closebutton-color-hover: $black !default;\n\n/// Adds styles for a close button, using the styles in the settings variables.\n@mixin close-button {\n  $x: nth($closebutton-position, 1);\n  $y: nth($closebutton-position, 2);\n\n  @include disable-mouse-outline;\n  position: absolute;\n  color: $closebutton-color;\n  #{$x}: $closebutton-offset-horizontal;\n  #{$y}: $closebutton-offset-vertical;\n  font-size: $closebutton-size;\n  line-height: $closebutton-lineheight;\n  cursor: pointer;\n\n  &:hover,\n  &:focus {\n    color: $closebutton-color-hover;\n  }\n}\n\n@mixin foundation-close-button {\n  .close-button {\n    @include close-button;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group drilldown\n////\n\n/// Transition property to use for animating menus.\n/// @type Transition\n$drilldown-transition: transform 0.15s linear !default;\n\n/// Adds arrows to drilldown items with submenus, as well as the back button.\n/// @type Boolean\n$drilldown-arrows: true !default;\n\n/// Sets drilldown arrow color if arrow is used.\n/// @type Color\n$drilldown-arrow-color: $primary-color !default;\n\n/// Background color for drilldown submenus.\n/// @type Color\n$drilldown-background: $white !default;\n\n@mixin foundation-drilldown-menu {\n  // Applied to the Menu container\n  .is-drilldown {\n    position: relative;\n    overflow: hidden;\n\n    li {\n      display: block !important;\n    }\n  }\n\n  // Applied to nested <ul>s\n  .is-drilldown-submenu {\n    position: absolute;\n    top: 0;\n    #{$global-left}: 100%;\n    z-index: -1;\n    height: 100%;\n    width: 100%;\n    background: $drilldown-background;\n    transition: $drilldown-transition;\n\n    &.is-active {\n      z-index: 1;\n      display: block;\n      transform: translateX(if($global-text-direction == ltr, -100%, 100%));\n    }\n\n    &.is-closing {\n      transform: translateX(if($global-text-direction == ltr, 100%, -100%));\n    }\n  }\n\n  @if $drilldown-arrows {\n    .is-drilldown-submenu-parent > a {\n      position: relative;\n\n      &::after {\n        @include css-triangle(6px, $drilldown-arrow-color, $global-right);\n        position: absolute;\n        top: 50%;\n        margin-top: -6px;\n        #{$global-right}: 1rem;\n      }\n    }\n\n    .js-drilldown-back > a::before {\n      @include css-triangle(6px, $drilldown-arrow-color, $global-left);\n      border-#{$global-left}-width: 0;\n      display: inline-block;\n      vertical-align: middle;\n      margin-#{$global-right}: 0.75rem; // Creates space between the arrow and the text\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group dropdown-menu\n////\n\n/// Enables arrows for items with dropdown menus.\n/// @type Boolean\n$dropdownmenu-arrows: true !default;\n\n/// Sets dropdown menu arrow color if arrow is used.\n/// @type Color\n$dropdownmenu-arrow-color: $anchor-color !default;\n\n/// Minimum width of dropdown sub-menus.\n/// @type Length\n$dropdownmenu-min-width: 200px !default;\n\n/// Background color for dropdowns.\n/// @type Color\n$dropdownmenu-background: $white !default;\n\n/// Border for dropdown sub-menus.\n/// @type List\n$dropdownmenu-border: 1px solid $medium-gray !default;\n\n// Border width for dropdown sub-menus.\n// Used to adjust top margin of a sub-menu if a border is used.\n// @type Length\n$dropdownmenu-border-width: nth($dropdownmenu-border, 1);\n\n@mixin left-right-arrows {\n  > a::after {\n    #{$global-right}: 14px;\n    margin-top: -3px;\n  }\n\n  &.opens-left > a::after {\n    @include css-triangle(5px, $dropdownmenu-arrow-color, left);\n  }\n\n  &.opens-right > a::after {\n    @include css-triangle(5px, $dropdownmenu-arrow-color, right);\n  }\n}\n\n@mixin dropdown-menu-direction($dir: horizontal) {\n  @if $dir == horizontal {\n    > li.opens-left {\n      > .is-dropdown-submenu {\n        left: auto;\n        right: 0;\n        top: 100%;\n      }\n    }\n\n    > li.opens-right {\n      > .is-dropdown-submenu {\n        right: auto;\n        left: 0;\n        top: 100%;\n      }\n    }\n\n    @if $dropdownmenu-arrows {\n      > li.is-dropdown-submenu-parent > a {\n        padding-#{$global-right}: 1.5rem;\n        position: relative;\n      }\n\n      > li.is-dropdown-submenu-parent > a::after {\n        @include css-triangle(5px, $dropdownmenu-arrow-color, down);\n        #{$global-right}: 5px;\n        margin-top: -2px;\n      }\n    }\n  }\n  @else if $dir == vertical {\n    > li {\n      .is-dropdown-submenu {\n        top: 0;\n      }\n\n      &.opens-left {\n        > .is-dropdown-submenu {\n          left: auto;\n          right: 100%;\n        }\n      }\n\n      &.opens-right {\n        > .is-dropdown-submenu {\n          right: auto;\n          left: 100%;\n        }\n      }\n\n      @if $dropdownmenu-arrows {\n        @include left-right-arrows;\n      }\n    }\n  }\n  @else {\n    @warn 'The direction used for dropdown-menu-direction() must be horizontal or vertical.';\n  }\n}\n\n@mixin foundation-dropdown-menu {\n  .dropdown.menu {\n    @include dropdown-menu-direction(horizontal);\n\n    a {\n      @include disable-mouse-outline;\n    }\n\n    .no-js & ul {\n      display: none;\n    }\n\n    &.vertical {\n      @include dropdown-menu-direction(vertical);\n    }\n\n    @each $size in $breakpoint-classes {\n      @if $size != $-zf-zero-breakpoint {\n        @include breakpoint($size) {\n          &.#{$size}-horizontal {\n            @include dropdown-menu-direction(horizontal);\n          }\n\n          &.#{$size}-vertical {\n            @include dropdown-menu-direction(vertical);\n          }\n        }\n      }\n    }\n\n    &.align-right {\n      .is-dropdown-submenu.first-sub {\n        top: 100%;\n        left: auto;\n        right: 0;\n      }\n    }\n  }\n\n  .is-dropdown-menu.vertical {\n    width: 100px;\n\n    &.align-right {\n      float: right;\n    }\n  }\n\n  .is-dropdown-submenu-parent {\n    position: relative;\n\n    a::after {\n      position: absolute;\n      top: 50%;\n      #{$global-right}: 5px;\n      margin-top: -2px;\n    }\n\n    &.opens-inner > .is-dropdown-submenu {\n\n      top: 100%;\n      @if $global-text-direction == 'rtl' {\n        right: auto;\n      } @else {\n        left: auto;\n      }\n    }\n\n    &.opens-left > .is-dropdown-submenu {\n      left: auto;\n      right: 100%;\n    }\n\n    &.opens-right > .is-dropdown-submenu {\n      right: auto;\n      left: 100%;\n    }\n  }\n\n  .is-dropdown-submenu {\n    display: none;\n    position: absolute;\n    top: 0;\n    #{$global-left}: 100%;\n    min-width: $dropdownmenu-min-width;\n    z-index: 1;\n    background: $dropdownmenu-background;\n    border: $dropdownmenu-border;\n\n    .is-dropdown-submenu-parent {\n      @if $dropdownmenu-arrows {\n        @include left-right-arrows;\n      }\n    }\n\n    @if (type-of($dropdownmenu-border-width) == 'number') {\n      .is-dropdown-submenu {\n        margin-top: (-$dropdownmenu-border-width);\n      }\n    }\n\n    > li {\n      width: 100%;\n    }\n\n    // [TODO] Cut back specificity\n    // scss-lint:disable SelectorDepth\n    //&:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > &, // why is this line needed? Opening is handled by JS and this causes some ugly flickering when the sub is re-positioned automatically...\n    &.js-dropdown-active {\n      display: block;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group dropdown\n////\n\n/// Padding for dropdown panes.\n/// @type List\n$dropdown-padding: 1rem !default;\n\n/// Border for dropdown panes.\n/// @type List\n$dropdown-border: 1px solid $medium-gray !default;\n\n/// Font size for dropdown panes.\n/// @type List\n$dropdown-font-size: 1rem !default;\n\n/// Width for dropdown panes.\n/// @type Number\n$dropdown-width: 300px !default;\n\n/// Border radius dropdown panes.\n/// @type Number\n$dropdown-radius: $global-radius !default;\n\n/// Sizes for dropdown panes. Each size is a CSS class you can apply.\n/// @type Map\n$dropdown-sizes: (\n  tiny: 100px,\n  small: 200px,\n  large: 400px,\n) !default;\n\n/// Applies styles for a basic dropdown.\n@mixin dropdown-container {\n  background-color: $body-background;\n  border: $dropdown-border;\n  border-radius: $dropdown-radius;\n  display: block;\n  font-size: $dropdown-font-size;\n  padding: $dropdown-padding;\n  position: absolute;\n  visibility: hidden;\n  width: $dropdown-width;\n  z-index: 10;\n\n  &.is-open {\n    visibility: visible;\n  }\n}\n\n@mixin foundation-dropdown {\n  .dropdown-pane {\n    @include dropdown-container;\n  }\n\n  @each $name, $size in $dropdown-sizes {\n    .dropdown-pane.#{$name} {\n      width: $size;\n    }\n  }\n}\n","@mixin foundation-flex-classes {\n  // Horizontal alignment using justify-content\n  @each $hdir, $prop in map-remove($-zf-flex-justify, left) {\n    .align-#{$hdir} {\n      @include flex-align($x: $hdir);\n    }\n  }\n\n  // Vertical alignment using align-items and align-self\n  @each $vdir, $prop in $-zf-flex-align {\n    .align-#{$vdir} {\n      @include flex-align($y: $vdir);\n    }\n\n    .align-self-#{$vdir} {\n      @include flex-align-self($y: $vdir);\n    }\n  }\n\n  // Source ordering\n  @include -zf-each-breakpoint {\n    @for $i from 1 through 6 {\n      .#{$-zf-size}-order-#{$i} {\n        @include flex-order($i);\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group flex-video\n////\n\n/// Margin below a flex video container.\n/// @type Number\n$flexvideo-margin-bottom: rem-calc(16) !default;\n\n/// Padding used to create a 4:3 aspect ratio.\n/// @type Number\n$flexvideo-ratio: 4 by 3 !default;\n\n/// Padding used to create a 16:9 aspect ratio.\n/// @type Number\n$flexvideo-ratio-widescreen: 16 by 9 !default;\n\n/// Creates a percentage height that can be used as padding in a flex video container.\n/// @param {List} $ratio - Ratio to use to calculate the height, formatted as `x by y`.\n/// @return {Number} A percentage value that can be used as the `padding-bottom` parameter of a flex video container.\n@function flex-video($ratio) {\n  $w: nth($ratio, 1);\n  $h: nth($ratio, 3);\n  @return $h / $w * 100%;\n}\n\n/// Creates a flex video container.\n/// @param {List} $ratio [$flexvideo-ratio] - Ratio to use for the container, formatted as `x by y`.\n@mixin flex-video($ratio: $flexvideo-ratio) {\n  position: relative;\n  height: 0;\n  padding-bottom: flex-video($ratio);\n  margin-bottom: $flexvideo-margin-bottom;\n  overflow: hidden;\n\n  iframe,\n  object,\n  embed,\n  video {\n    position: absolute;\n    top: 0;\n    #{$global-left}: 0;\n    width: 100%;\n    height: 100%;\n  }\n}\n\n@mixin foundation-flex-video {\n  .flex-video {\n    @include flex-video;\n\n    &.widescreen {\n      padding-bottom: flex-video($flexvideo-ratio-widescreen);\n    }\n\n    &.vimeo {\n      padding-top: 0;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group label\n////\n\n/// Default background color for labels.\n/// @type Color\n$label-background: $primary-color !default;\n\n/// Default text color for labels.\n/// @type Color\n$label-color: foreground($label-background) !default;\n\n/// Default font size for labels.\n/// @type Number\n$label-font-size: 0.8rem !default;\n\n/// Default padding inside labels.\n/// @type Number\n$label-padding: 0.33333rem 0.5rem !default;\n\n/// Default radius of labels.\n/// @type Number\n$label-radius: $global-radius !default;\n\n/// Generates base styles for a label.\n@mixin label {\n  display: inline-block;\n  padding: $label-padding;\n  font-size: $label-font-size;\n  line-height: 1;\n  white-space: nowrap;\n  cursor: default;\n  border-radius: $label-radius;\n}\n\n@mixin foundation-label {\n  .label {\n    @include label;\n\n    background: $label-background;\n    color: $label-color;\n\n    @each $name, $color in $foundation-palette {\n      @if $name != primary {\n        &.#{$name} {\n          background: $color;\n          color: foreground($color);\n        }\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group media-object\n////\n\n/// Bottom margin of a media object.\n/// @type Number\n$mediaobject-margin-bottom: $global-margin !default;\n\n/// Left and right padding on sections within a media object.\n/// @type Number\n$mediaobject-section-padding: $global-padding !default;\n\n/// Width of images within a media object, when the object is stacked vertically. Set to 'auto' to use the image's natural width.\n/// @type Number\n$mediaobject-image-width-stacked: 100% !default;\n\n/// Adds styles for a media object container.\n@mixin media-object-container {\n  margin-bottom: $mediaobject-margin-bottom;\n  display: if($global-flexbox, flex, block);\n\n  @if $global-flexbox {\n    flex-wrap: nowrap;\n  }\n}\n\n/// Adds styles for sections within a media object.\n/// @param {Number} $padding [$mediaobject-section-padding] - Padding between sections.\n@mixin media-object-section($padding: $mediaobject-section-padding) {\n  @if $global-flexbox {\n    flex: 0 1 auto;\n  }\n  @else {\n    display: table-cell;\n    vertical-align: top;\n  }\n\n  &:first-child {\n    padding-#{$global-right}: $padding;\n  }\n\n  &:last-child:not(:nth-child(2)) {\n    padding-#{$global-left}: $padding;\n  }\n\n  > :last-child {\n    margin-bottom: 0;\n  }\n}\n\n/// Adds styles to stack sections of a media object. Apply this to the section elements, not the container.\n@mixin media-object-stack {\n  padding: 0;\n  padding-bottom: $mediaobject-section-padding;\n\n  @if $global-flexbox {\n    flex-basis: 100%;\n    max-width: 100%;\n  }\n  @else {\n    display: block;\n  }\n\n  img {\n    width: $mediaobject-image-width-stacked;\n  }\n}\n\n@mixin foundation-media-object {\n  .media-object {\n    @include media-object-container;\n\n    img {\n      max-width: none;\n    }\n\n    @if $global-flexbox {\n      &.stack-for-#{$-zf-zero-breakpoint} {\n        @include breakpoint($-zf-zero-breakpoint only) {\n          flex-wrap: wrap;\n        }\n      }\n    }\n\n    &.stack-for-#{$-zf-zero-breakpoint} .media-object-section {\n      @include breakpoint($-zf-zero-breakpoint only) {\n        @include media-object-stack;\n      }\n    }\n  }\n\n  .media-object-section {\n    @include media-object-section;\n\n    @if $global-flexbox {\n      // scss-lint:disable ZeroUnit\n      &.main-section {\n        flex: 1 1 0px;\n      }\n    }\n    @else {\n      &.middle {\n        vertical-align: middle;\n      }\n\n      &.bottom {\n        vertical-align: bottom;\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group menu\n////\n\n/// Margin of a menu.\n/// @type Number\n$menu-margin: 0 !default;\n\n/// Left-hand margin of a nested menu.\n/// @type Number\n$menu-margin-nested: 1rem !default;\n\n/// Padding for items in a menu.\n/// @type Number\n$menu-item-padding: 0.7rem 1rem !default;\n\n/// Text color of an active menu item.\n/// @type Color\n$menu-item-color-active: $white !default;\n\n/// Background color of an active menu item.\n/// @type Color\n$menu-item-background-active: map-get($foundation-palette, primary) !default;\n\n/// Spacing between an icon and text in a menu item.\n/// @type Number\n$menu-icon-spacing: 0.25rem !default;\n\n/// Creates the base styles for a Menu.\n@mixin menu-base {\n  margin: $menu-margin;\n  list-style-type: none;\n\n  @if $global-flexbox {\n    width: 100%;\n    display: flex;\n    flex-wrap: nowrap;\n    align-items: center;\n  }\n\n  // List items are table cell to allow for vertical alignment\n  > li {\n    @include disable-mouse-outline;\n\n    @if $global-flexbox {\n      flex: 0 0 auto;\n    }\n    @else {\n      display: table-cell;\n      vertical-align: middle;\n    }\n  }\n\n  // Reset line height to make the height of the overall item easier to calculate\n  > li > a {\n    display: block;\n    padding: $menu-item-padding;\n    line-height: 1;\n  }\n\n  // Reset styles of inner elements\n  input,\n  a,\n  button {\n    margin-bottom: 0;\n  }\n}\n\n/// Expands the items of a Menu, so each item is the same width.\n@mixin menu-expand {\n  @if $global-flexbox {\n    // scss-lint:disable ZeroUnit\n    > li {\n      flex: 1 1 0px;\n    }\n  }\n  @else {\n    width: 100%;\n    display: table;\n    table-layout: fixed;\n  }\n}\n\n/// Sets the direction of a Menu.\n/// @param {Keyword} $dir [horizontal] - Direction of the Menu. Can be `horizontal` or `vertical`.\n@mixin menu-direction($dir: horizontal) {\n  @if $dir == horizontal {\n    @if $global-flexbox {\n      flex-wrap: nowrap;\n\n      > li {\n        flex: 0 0 auto;\n      }\n    }\n    @else {\n      > li {\n        display: table-cell;\n      }\n    }\n  }\n  @else if $dir == vertical {\n    @if $global-flexbox {\n      flex-wrap: wrap;\n\n      > li {\n        flex: 0 0 100%;\n        max-width: 100%;\n      }\n\n      > li  > a {\n        align-items: flex-start;\n        justify-content: flex-start;\n      }\n    }\n    @else {\n      > li {\n        display: block;\n      }\n    }\n  }\n  @else {\n    @warn 'The direction used for menu-direction() must be horizontal or vertical.';\n  }\n}\n\n/// Creates a simple Menu, which has no padding or hover state.\n@mixin menu-simple {\n  li {\n    line-height: 1;\n    display: inline-block;\n    margin-#{$global-right}: get-side($menu-item-padding, $global-right);\n  }\n\n  a {\n    padding: 0;\n  }\n}\n\n/// Adds styles for a nested Menu, by adding `margin-left` to the menu.\n/// @param {Keyword|Number} $padding [auto] - Length of the margin.\n@mixin menu-nested($margin: $menu-margin-nested) {\n  margin-#{$global-left}: $margin;\n}\n\n/// Adds support for icons to Menu items.\n/// @param {Keyword} $position [side] - Positioning for icons. Can be `side` (left, or right on RTL) or `top`.\n/// @param {Boolean} $base [true] - Set to `false` to prevent the shared CSS between side- and top-aligned icons from being printed. Set this to `false` if you're calling the mixin multiple times on the same element.\n@mixin menu-icons($position: side, $base: true) {\n  @if $base {\n    @if $global-flexbox {\n      > li > a {\n        display: flex;\n      }\n    }\n    @else {\n      > li > a {\n        img,\n        i,\n        svg {\n          vertical-align: middle;\n\n          + span {\n            vertical-align: middle;\n          }\n        }\n      }\n    }\n  }\n\n  @if $position == side {\n    > li > a {\n      @if $global-flexbox {\n        flex-flow: row nowrap;\n      }\n\n      img,\n      i,\n      svg {\n        margin-#{$global-right}: $menu-icon-spacing;\n\n        @if not $global-flexbox {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  @else if $position == top {\n    > li > a {\n      @if $global-flexbox {\n        flex-flow: column nowrap;\n      }\n      @else {\n        text-align: center;\n      }\n\n      img,\n      i,\n      svg {\n        @if not $global-flexbox {\n          display: block;\n          margin: 0 auto $menu-icon-spacing;\n        }\n        @else {\n          align-self: stretch;\n          text-align: center;\n          margin-bottom: $menu-icon-spacing;\n        }\n      }\n    }\n  }\n}\n\n@mixin menu-text {\n  font-weight: bold;\n  color: inherit;\n  line-height: 1;\n  padding-top: 0;\n  padding-bottom: 0;\n  padding: $menu-item-padding;\n}\n\n@mixin foundation-menu {\n  .menu {\n    @include menu-base;\n    @include menu-icons;\n\n    // Orientation\n    @include menu-direction(horizontal);\n\n    &.vertical {\n      @include menu-direction(vertical);\n    }\n\n    @each $size in $breakpoint-classes {\n      @if $size != $-zf-zero-breakpoint {\n        @include breakpoint($size) {\n          &.#{$size}-horizontal {\n            @include menu-direction(horizontal);\n          }\n\n          &.#{$size}-vertical {\n            @include menu-direction(vertical);\n          }\n        }\n      }\n    }\n\n    // Simple\n    &.simple {\n      @include menu-simple;\n    }\n\n    // Align right\n    &.align-#{$global-right} {\n      @if $global-flexbox {\n        justify-content: flex-end;\n      }\n      @else {\n        @include clearfix;\n\n        > li {\n          float: $global-right;\n        }\n      }\n    }\n\n    // Even-width\n    &.expanded {\n      @include menu-expand;\n\n      > li:first-child:last-child {\n        width: 100%;\n      }\n    }\n\n    // Vertical icons\n    &.icon-top {\n      @include menu-icons(top, $base: false);\n    }\n\n    // Nesting\n    &.nested {\n      @include menu-nested;\n    }\n\n    // Active state\n    .active > a {\n      color: $menu-item-color-active;\n      background: $menu-item-background-active;\n    }\n  }\n\n  .menu-text {\n    @include menu-text;\n  }\n\n  // Align center\n  .menu-centered {\n    text-align: center;\n\n    > .menu {\n      display: inline-block;\n    }\n  }\n\n  // Prevent FOUC when using the Responsive Menu plugin\n  .no-js [data-responsive-menu] ul {\n    display: none;\n  }\n}\n","@mixin foundation-menu-icon {\n  .menu-icon {\n    @include hamburger($color: $titlebar-icon-color, $color-hover: $titlebar-icon-color-hover);\n  }\n\n  .menu-icon.dark {\n    @include hamburger;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group off-canvas\n////\n\n/// Width of an off-canvas menu.\n/// @type Number\n$offcanvas-size: 250px !default;\n\n/// Background color of an off-canvas menu.\n/// @type Color\n$offcanvas-background: $light-gray !default;\n\n/// Z-index of an off-canvas menu.\n/// @type Number\n$offcanvas-zindex: -1 !default;\n\n/// Length of the animation on an off-canvas menu.\n/// @type Number\n$offcanvas-transition-length: 0.5s !default;\n\n/// Timing function of the animation on an off-canvas menu.\n/// @type Keyword\n$offcanvas-transition-timing: ease !default;\n\n/// If `true`, a revealed off-canvas will be fixed-position, and scroll with the screen.\n$offcanvas-fixed-reveal: true !default;\n\n/// Background color for the overlay that appears when an off-canvas menu is open.\n/// @type Color\n$offcanvas-exit-background: rgba($white, 0.25) !default;\n\n/// CSS class used for the main content area. The off-canvas mixins use this to target the page body.\n$maincontent-class: 'off-canvas-content' !default;\n\n/// Box shadow to place under the main content area. This shadow overlaps the off-canvas menus.\n/// @type Shadow\n$maincontent-shadow: 0 0 10px rgba($black, 0.5) !default;\n\n/// Adds baseline styles for off-canvas. This CSS is required to make the other pieces work.\n@mixin off-canvas-basics {\n  // Extra properties needed on <html> and <body> to make off-canvas work\n  html,\n  body {\n    height: 100%;\n  }\n\n  .off-canvas-wrapper {\n    width: 100%;\n    overflow-x: hidden;\n    position: relative;\n    backface-visibility: hidden;\n    -webkit-overflow-scrolling: auto;\n  }\n\n  .off-canvas-wrapper-inner {\n    @include clearfix;\n    position: relative;\n    width: 100%;\n    transition: transform $offcanvas-transition-length $offcanvas-transition-timing;\n  }\n\n  // Container for page content\n  .off-canvas-content,\n  .#{$maincontent-class} {\n    min-height: 100%;\n    background: $body-background;\n    transition: transform $offcanvas-transition-length $offcanvas-transition-timing;\n    backface-visibility: hidden;\n    z-index: 1;\n    padding-bottom: 0.1px; // Prevents margin collapsing, which would reveal the box shadow of the wrapper\n\n    @if has-value($maincontent-shadow) {\n      box-shadow: $maincontent-shadow;\n    }\n  }\n\n  // Click-to-exit overlay (generated by JavaScript)\n  .js-off-canvas-exit {\n    display: none;\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background: $offcanvas-exit-background;\n    cursor: pointer;\n    transition: background $offcanvas-transition-length $offcanvas-transition-timing;\n  }\n}\n\n/// Adds basic styles for an off-canvas menu.\n@mixin off-canvas-base {\n  @include disable-mouse-outline;\n  position: absolute;\n  background: $offcanvas-background;\n  z-index: $offcanvas-zindex;\n  max-height: 100%;\n  overflow-y: auto;\n  transform: translateX(0);\n}\n\n@mixin off-canvas-position(\n  $position: left,\n  $size: $offcanvas-size,\n  $fixed: false\n) {\n  @if $position == left {\n    left: -$size;\n    top: 0;\n    width: $size;\n  }\n  @else if $position == right {\n    right: -$size;\n    top: 0;\n    width: $size;\n  }\n\n  // Generates an open state class that matches the width of the menu\n  @at-root {\n    .is-open-#{$position} {\n      @if $position == left {\n        transform: translateX($size);\n      }\n      @else if $position == right {\n        transform: translateX(-$size);\n      }\n    }\n  }\n}\n\n/// Adds styles that reveal an off-canvas menu.\n/// @param {Keyword} $position [left] - Position of the off-canvas menu being revealed.\n@mixin off-canvas-reveal(\n  $position: left\n) {\n  #{$position}: 0;\n  z-index: auto;\n\n  @if $offcanvas-fixed-reveal {\n    position: fixed;\n  }\n\n  & ~ .#{$maincontent-class} {\n    margin-#{$position}: $offcanvas-size;\n  }\n}\n\n@mixin foundation-off-canvas {\n  @include off-canvas-basics;\n\n  // Off-canvas container\n  .off-canvas {\n    @include off-canvas-base;\n\n    &.position-left   { @include off-canvas-position(left); }\n    &.position-right  { @include off-canvas-position(right); }\n  }\n\n  // Reveal off-canvas menu on larger screens\n  @each $name, $value in $breakpoint-classes {\n    @if $name != $-zf-zero-breakpoint {\n      @include breakpoint($name) {\n        .position-left.reveal-for-#{$name} {\n          @include off-canvas-reveal(left);\n        }\n\n        .position-right.reveal-for-#{$name} {\n          @include off-canvas-reveal(right);\n        }\n      }\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group orbit\n////\n\n/// Default color for Orbit's bullets.\n/// @type Color\n$orbit-bullet-background: $medium-gray !default;\n\n/// Default active color for Orbit's bullets.\n/// @type Color\n$orbit-bullet-background-active: $dark-gray !default;\n\n/// Default diameter for Orbit's bullets.\n/// @type Number\n$orbit-bullet-diameter: 1.2rem !default;\n\n/// Default margin between Orbit's bullets.\n/// @type Number\n$orbit-bullet-margin: 0.1rem !default;\n\n/// Default distance from slide region for Orbit's bullets.\n/// @type Number\n$orbit-bullet-margin-top: 0.8rem !default;\n\n/// Default bottom margin from Orbit's bullets to whatever content may lurk below it.\n/// @type Number\n$orbit-bullet-margin-bottom: 0.8rem !default;\n\n/// Default background color for Orbit's caption.\n/// @type Color\n$orbit-caption-background: rgba($black, 0.5) !default;\n\n/// Default padding for Orbit's caption.\n/// @type Number\n$orbit-caption-padding: 1rem !default;\n\n/// Default background color for Orbit's controls when hovered.\n/// @type Color\n$orbit-control-background-hover: rgba($black, 0.5) !default;\n\n/// Default padding for Orbit's controls.\n/// @type Number\n$orbit-control-padding: 1rem !default;\n\n/// Default z-index for Orbit's controls.\n/// @type Number\n$orbit-control-zindex: 10 !default;\n\n/// Adds styles for the outer Orbit wrapper. These styles are used on the `.orbit` class.\n@mixin orbit-wrapper {\n  position: relative;\n}\n\n/// Adds styles for the inner Orbit slide container. These styles are used on the `.orbit-container` class.\n@mixin orbit-container {\n  position: relative;\n  margin: 0;\n  overflow: hidden;\n  list-style: none;\n}\n\n/// Adds styles for the individual slides of an Orbit slider. These styles are used on the `.orbit-slide` class.\n@mixin orbit-slide {\n  width: 100%;\n  max-height: 100%;\n\n  &.no-motionui {\n    &.is-active {\n      top: 0;\n      left: 0;\n    }\n  }\n}\n\n@mixin orbit-figure {\n  margin: 0;\n}\n\n@mixin orbit-image {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n}\n\n/// Adds styles for an orbit slide caption. These styles are used on the `.orbit-caption` class.\n@mixin orbit-caption {\n  position: absolute;\n  bottom: 0;\n  width: 100%;\n  padding: $orbit-caption-padding;\n  margin-bottom: 0;\n  color: foreground($orbit-caption-background);\n  background-color: $orbit-caption-background;\n}\n\n/// Adds base styles for the next/previous buttons in an Orbit slider. These styles are shared between the `.orbit-next` and `.orbit-previous` classes in the default CSS.\n@mixin orbit-control {\n  @include disable-mouse-outline;\n  @include vertical-center;\n  z-index: $orbit-control-zindex;\n  padding: $orbit-control-padding;\n  color: $white;\n\n  &:hover,\n  &:active,\n  &:focus {\n    background-color: $orbit-control-background-hover;\n  }\n}\n\n/// Adds styles for the Orbit previous button. These styles are used on the `.orbit-previous` class.\n@mixin orbit-previous {\n  #{$global-left}: 0;\n}\n\n/// Adds styles for the Orbit next button. These styles are used on the `.orbit-next` class.\n@mixin orbit-next {\n  #{$global-left}: auto;\n  #{$global-right}: 0;\n}\n\n/// Adds styles for a container of Orbit bullets. /// Adds styles for the Orbit previous button. These styles are used on the `.orbit-bullets` class.\n@mixin orbit-bullets {\n  @include disable-mouse-outline;\n  position: relative;\n  margin-top: $orbit-bullet-margin-top;\n  margin-bottom: $orbit-bullet-margin-bottom;\n  text-align: center;\n\n  button {\n    width: $orbit-bullet-diameter;\n    height: $orbit-bullet-diameter;\n    margin: $orbit-bullet-margin;\n    background-color: $orbit-bullet-background;\n    border-radius: 50%;\n\n    &:hover {\n      background-color: $orbit-bullet-background-active;\n    }\n\n    &.is-active {\n      background-color: $orbit-bullet-background-active;\n    }\n  }\n}\n\n@mixin foundation-orbit {\n  .orbit {\n    @include orbit-wrapper;\n  }\n\n  .orbit-container {\n    @include orbit-container;\n  }\n\n  .orbit-slide {\n    @include orbit-slide;\n  }\n\n  .orbit-figure {\n    @include orbit-figure;\n  }\n\n  .orbit-image {\n    @include orbit-image;\n  }\n\n  .orbit-caption {\n    @include orbit-caption;\n  }\n\n  %orbit-control {\n    @include orbit-control;\n  }\n\n  .orbit-previous {\n    @extend %orbit-control;\n    @include orbit-previous;\n  }\n\n  .orbit-next {\n    @extend %orbit-control;\n    @include orbit-next;\n  }\n\n  .orbit-bullets {\n    @include orbit-bullets;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group pagination\n////\n\n/// Font size of pagination items.\n/// @type Number\n$pagination-font-size: rem-calc(14) !default;\n\n/// Default bottom margin of the media object.\n/// @type Number\n$pagination-margin-bottom: $global-margin !default;\n\n/// Text color of pagination items.\n/// @type Color\n$pagination-item-color: $black !default;\n\n/// Padding inside of pagination items.\n/// @type Number\n$pagination-item-padding: rem-calc(3 10) !default;\n\n/// Right margin to separate pagination items.\n/// @type Number\n$pagination-item-spacing: rem-calc(1) !default;\n\n/// Default radius for pagination items.\n/// @type Number\n$pagination-radius: $global-radius !default;\n\n/// Background color of pagination items on hover.\n/// @type Color\n$pagination-item-background-hover: $light-gray !default;\n\n/// Background color of pagination item for the current page.\n/// @type Color\n$pagination-item-background-current: $primary-color !default;\n\n/// Text color of the pagination item for the current page.\n/// @type Color\n$pagination-item-color-current: foreground($pagination-item-background-current) !default;\n\n/// Text color of a disabled pagination item.\n/// @type Color\n$pagination-item-color-disabled: $medium-gray !default;\n\n/// Color of the ellipsis in a pagination menu.\n/// @type Color\n$pagination-ellipsis-color: $black !default;\n\n/// If `false`, don't display page number links on mobile, only next/previous links.\n/// @type Boolean\n$pagination-mobile-items: false !default;\n\n/// If `true`, arrows are added to the next and previous links of pagination.\n/// @type Boolean\n$pagination-arrows: true !default;\n\n/// Adds styles for a pagination container. Apply this to a `<ul>`.\n@mixin pagination-container {\n  @include clearfix;\n  margin-#{$global-left}: 0;\n  margin-bottom: $pagination-margin-bottom;\n\n  // List item\n  li {\n    font-size: $pagination-font-size;\n    margin-#{$global-right}: $pagination-item-spacing;\n    border-radius: $pagination-radius;\n\n    @if $pagination-mobile-items {\n      display: inline-block;\n    }\n    @else {\n      display: none;\n\n      &:last-child,\n      &:first-child {\n        display: inline-block;\n      }\n\n      @include breakpoint(medium) {\n        display: inline-block;\n      }\n    }\n  }\n\n  // Page links\n  a,\n  button {\n    color: $pagination-item-color;\n    display: block;\n    padding: $pagination-item-padding;\n    border-radius: $global-radius;\n\n    &:hover {\n      background: $pagination-item-background-hover;\n    }\n  }\n}\n\n/// Adds styles for the current pagination item. Apply this to an `<a>`.\n@mixin pagination-item-current {\n  padding: $pagination-item-padding;\n  background: $pagination-item-background-current;\n  color: $pagination-item-color-current;\n  cursor: default;\n}\n\n/// Adds styles for a disabled pagination item. Apply this to an `<a>`.\n@mixin pagination-item-disabled {\n  padding: $pagination-item-padding;\n  color: $pagination-item-color-disabled;\n  cursor: not-allowed;\n\n  &:hover {\n    background: transparent;\n  }\n}\n\n/// Adds styles for an ellipsis for use in a pagination list.\n@mixin pagination-ellipsis {\n  content: '\\2026';\n  padding: $pagination-item-padding;\n  color: $pagination-ellipsis-color;\n}\n\n@mixin foundation-pagination {\n  .pagination {\n    @include pagination-container;\n\n    .current {\n      @include pagination-item-current;\n    }\n\n    .disabled {\n      @include pagination-item-disabled;\n    }\n\n    .ellipsis::after {\n      @include pagination-ellipsis;\n    }\n  }\n\n  @if $pagination-arrows {\n    .pagination-previous a::before,\n    .pagination-previous.disabled::before {\n      content: '\\00ab';\n      display: inline-block;\n      margin-#{$global-right}: 0.5rem;\n    }\n\n    .pagination-next a::after,\n    .pagination-next.disabled::after {\n      content: '\\00bb';\n      display: inline-block;\n      margin-#{$global-left}: 0.5rem;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n/// Adds styles for a progress bar container.\n@mixin progress-container {\n  background-color: $progress-background;\n  height: $progress-height;\n  margin-bottom: $progress-margin-bottom;\n  border-radius: $progress-radius;\n}\n\n/// Adds styles for the inner meter of a progress bar.\n@mixin progress-meter {\n  position: relative;\n  display: block;\n  width: 0%;\n  height: 100%;\n  background-color: $progress-meter-background;\n\n  @if has-value($progress-radius) {\n    border-radius: $global-radius;\n  }\n}\n\n/// Adds styles for text in the progress meter.\n@mixin progress-meter-text {\n  @include absolute-center;\n  position: absolute;\n  margin: 0;\n  font-size: 0.75rem;\n  font-weight: bold;\n  color: $white;\n  white-space: nowrap;\n\n  @if has-value($progress-radius) {\n    border-radius: $progress-radius;\n  }\n}\n\n@mixin foundation-progress-bar {\n  // Progress bar\n  .progress {\n    @include progress-container;\n\n    @each $name, $color in $foundation-palette {\n      &.#{$name} {\n        .progress-meter {\n          background-color: $color;\n        }\n      }\n    }\n  }\n\n  // Inner meter\n  .progress-meter {\n    @include progress-meter;\n  }\n\n  // Inner meter text\n  .progress-meter-text {\n    @include progress-meter-text;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group reveal\n////\n\n/// Default background color of a modal.\n/// @type Color\n$reveal-background: $white !default;\n\n/// Default width of a modal, with no class applied.\n/// @type Number\n$reveal-width: 600px !default;\n\n/// Default maximum width of a modal.\n/// @type Number\n$reveal-max-width: $global-width !default;\n\n/// Default padding inside a modal.\n/// @type Number\n$reveal-padding: $global-padding !default;\n\n/// Default border around a modal.\n/// @type Number\n$reveal-border: 1px solid $medium-gray !default;\n\n/// Default radius for modal.\n/// @type Number\n$reveal-radius: $global-radius !default;\n\n/// z-index for modals. The overlay uses this value, while the modal itself uses this value plus one.\n/// @type Number\n$reveal-zindex: 1005 !default;\n\n/// Background color of modal overlays.\n/// @type Color\n$reveal-overlay-background: rgba($black, 0.45) !default;\n\n/// Adds styles for a modal overlay.\n/// @param {Color} $background [$reveal-overlay-background] - Background color of the overlay.\n@mixin reveal-overlay {\n  display: none;\n  position: fixed;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  z-index: $reveal-zindex;\n  background-color: $reveal-overlay-background;\n  overflow-y: scroll;\n}\n\n/// Adds base styles for a modal.\n@mixin reveal-modal-base {\n  @include disable-mouse-outline;\n  display: none;\n  z-index: $reveal-zindex + 1;\n  padding: $reveal-padding;\n  border: $reveal-border;\n  background-color: $reveal-background;\n  border-radius: $reveal-radius;\n\n  @include breakpoint(medium) {\n    min-height: 0;\n  }\n\n  // Make sure rows don't have a min-width on them\n  .column,\n  .columns {\n    min-width: 0;\n  }\n\n  // Strip margins from the last item in the modal\n  > :last-child {\n    margin-bottom: 0;\n  }\n}\n\n/// Adjusts the width of a modal.\n/// @param {Number} $width - Width of the modal. Generally a percentage.\n/// @param {Number} $max-width [$reveal-max-width] - Maximum width of the modal.\n@mixin reveal-modal-width(\n  $width: $reveal-width,\n  $max-width: $reveal-max-width\n) {\n  @include breakpoint(medium) {\n    @extend %reveal-centered;\n    width: $width;\n    max-width: $reveal-max-width;\n  }\n}\n\n/// Creates a full-screen modal, which stretches the full width and height of the window.\n@mixin reveal-modal-fullscreen {\n  // scss-lint:disable DuplicateProperty\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  height: 100vh;\n  min-height: 100vh;\n  max-width: none;\n  margin-left: 0;\n  border: 0;\n  border-radius: 0;\n}\n\n@mixin foundation-reveal {\n  // [TODO] Is this necessary?\n  // scss-lint:disable QualifyingElement\n  body.is-reveal-open {\n    overflow: hidden;\n  }\n  // html gets this class only in iOS\n  html.is-reveal-open,\n  html.is-reveal-open body {\n    height: 100%;\n    overflow: hidden;\n    user-select: none;\n  }\n\n  // Overlay\n  .reveal-overlay {\n    @include reveal-overlay;\n  }\n\n  // Modal container\n  .reveal {\n    @include reveal-modal-base;\n    @include reveal-modal-width($reveal-width);\n    position: relative;\n    top: 100px;\n    margin-left: auto;\n    margin-right: auto;\n    overflow-y: auto;\n\n    // Placeholder selector for medium-and-up modals\n    // Prevents duplicate CSS when defining multiple Reveal sizes\n    @include breakpoint(medium) {\n      %reveal-centered {\n        left: auto;\n        right: auto;\n        margin: 0 auto;\n      }\n    }\n\n    // Remove padding\n    &.collapse {\n      padding: 0;\n    }\n\n    // Sizing classes\n    &.tiny  { @include reveal-modal-width(30%); }\n    &.small { @include reveal-modal-width(50%); }\n    &.large { @include reveal-modal-width(90%); }\n\n    // Full-screen mode\n    &.full {\n      @include reveal-modal-fullscreen;\n    }\n\n    @include breakpoint($-zf-zero-breakpoint only) {\n      @include reveal-modal-fullscreen;\n    }\n\n    &.without-overlay {\n      position: fixed;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n// [TODO] Check how plugin confirms disabled or vertical status\n// [TODO] Check if transition: all; is necessary\n\n////\n/// @group slider\n////\n\n/// Default slider width of a vertical slider. (Doesn't apply to the native slider.)\n/// @type Number\n$slider-width-vertical: 0.5rem !default;\n\n/// Transition properties to apply to the slider handle and fill. (Doesn't apply to the native slider.)\n/// @type Transition\n$slider-transition: all 0.2s ease-in-out !default;\n\n/// Adds the general styles for sliders.\n@mixin slider-container {\n  position: relative;\n  height: $slider-height;\n  margin-top: 1.25rem;\n  margin-bottom: 2.25rem;\n  background-color: $slider-background;\n  cursor: pointer;\n  user-select: none;\n  touch-action: none;\n}\n\n/// Adds the general styles for active fill for sliders.\n@mixin slider-fill {\n  position: absolute;\n  top: 0;\n  left: 0;\n  display: inline-block;\n  max-width: 100%;\n  height: $slider-height;\n  background-color: $slider-fill-background;\n  transition: $slider-transition;\n\n  &.is-dragging {\n    transition: all 0s linear;\n  }\n}\n\n/// Adds the general styles for the slider handles.\n@mixin slider-handle {\n  @include disable-mouse-outline;\n  @include vertical-center;\n  position: absolute;\n  left: 0;\n  z-index: 1;\n  display: inline-block;\n  width: $slider-handle-width;\n  height: $slider-handle-height;\n  background-color: $slider-handle-background;\n  transition: $slider-transition;\n  touch-action: manipulation;\n  border-radius: $slider-radius;\n\n  &:hover {\n    background-color: scale-color($slider-handle-background, $lightness: -15%);\n  }\n\n  &.is-dragging {\n    transition: all 0s linear;\n  }\n}\n\n@mixin slider-disabled {\n  opacity: $slider-opacity-disabled;\n  cursor: not-allowed;\n}\n\n@mixin slider-vertical {\n  display: inline-block;\n  width: $slider-width-vertical;\n  height: 12.5rem;\n  margin: 0 1.25rem;\n  transform: scale(1, -1);\n\n  .slider-fill {\n    top: 0;\n    width: $slider-width-vertical;\n    max-height: 100%;\n  }\n\n  .slider-handle {\n    position: absolute;\n    top: 0;\n    left: 50%;\n    width: $slider-handle-height;\n    height: $slider-handle-width;\n    transform: translateX(-50%);\n  }\n}\n\n@mixin foundation-slider {\n  // Container\n  .slider {\n    @include slider-container;\n  }\n\n  // Fill area\n  .slider-fill {\n    @include slider-fill;\n  }\n\n  // Draggable handle\n  .slider-handle {\n    @include slider-handle;\n  }\n\n  // Disabled state\n  .slider.disabled,\n  .slider[disabled] {\n    @include slider-disabled;\n  }\n\n  // Vertical slider\n  .slider.vertical {\n    @include slider-vertical;\n  }\n\n  // RTL support\n  @if $global-text-direction == rtl {\n    .slider:not(.vertical) {\n      transform: scale(-1, 1);\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n@mixin foundation-sticky {\n  .sticky-container {\n    position: relative;\n  }\n\n  .sticky {\n    position: absolute;\n    z-index: 0;\n    transform: translate3d(0, 0, 0);\n  }\n\n  .sticky.is-stuck {\n    position: fixed;\n    z-index: 5;\n\n    &.is-at-top {\n      top: 0;\n    }\n\n    &.is-at-bottom {\n      bottom: 0;\n    }\n  }\n\n  .sticky.is-anchored {\n    position: absolute;\n    left: auto;\n    right: auto;\n\n    &.is-at-bottom {\n      bottom: 0;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group switch\n////\n\n/// Background color of a switch.\n/// @type Color\n$switch-background: $medium-gray !default;\n\n/// Background active color of a switch.\n/// @type Color\n$switch-background-active: $primary-color !default;\n\n/// Height of a switch, with no class applied.\n/// @type Number\n$switch-height: 2rem !default;\n\n/// Height of a switch with .tiny class.\n/// @type Number\n$switch-height-tiny: 1.5rem !default;\n\n/// Height of a switch with .small class.\n/// @type Number\n$switch-height-small: 1.75rem !default;\n\n/// Height of a switch with .large class.\n/// @type Number\n$switch-height-large: 2.5rem !default;\n\n/// Border radius of the switch\n/// @type Number\n$switch-radius: $global-radius !default;\n\n/// border around a modal.\n/// @type Number\n$switch-margin: $global-margin !default;\n\n/// Background color for the switch container and paddle.\n/// @type Color\n$switch-paddle-background: $white !default;\n\n/// Spacing between a switch paddle and the edge of the body.\n/// @type Number\n$switch-paddle-offset: 0.25rem !default;\n\n/// border radius of the switch paddle\n/// @type Number\n$switch-paddle-radius: $global-radius !default;\n\n/// switch transition.\n/// @type Number\n$switch-paddle-transition: all 0.25s ease-out !default;\n\n// make them variables\n// ask about accessibility on label\n// change class name for text\n\n/// Adds styles for a switch container. Apply this to a container class.\n@mixin switch-container {\n  margin-bottom: $switch-margin;\n  outline: 0;\n  position: relative;\n  user-select: none;\n\n  // These properties cascade down to the switch text\n  color: $white;\n  font-weight: bold;\n  font-size: rem-calc(14);\n}\n\n/// Adds styles for a switch input. Apply this to an `<input>` within a switch.\n@mixin switch-input {\n  opacity: 0;\n  position: absolute;\n}\n\n/// Adds styles for the background and paddle of a switch. Apply this to a `<label>` within a switch.\n@mixin switch-paddle {\n  background: $switch-background;\n  cursor: pointer;\n  display: block;\n  position: relative;\n  width: 4rem;\n  height: $switch-height;\n  transition: $switch-paddle-transition;\n  border-radius: $switch-radius;\n\n  // Resetting these <label> presets so type styles cascade down\n  color: inherit;\n  font-weight: inherit;\n\n  // Needed to override specificity\n  input + & {\n    margin: 0;\n  }\n\n  // The paddle itself\n  &::after {\n    background: $switch-paddle-background;\n    content: '';\n    display: block;\n    position: absolute;\n    height: 1.5rem;\n    #{$global-left}: 0.25rem;\n    top: 0.25rem;\n    width: 1.5rem;\n    transition: $switch-paddle-transition;\n    transform: translate3d(0, 0, 0);\n    border-radius: $switch-paddle-radius;\n  }\n\n  // Change the visual style when the switch is active\n  input:checked ~ & {\n    background: $switch-background-active;\n\n    &::after {\n      #{$global-left}: 2.25rem;\n    }\n  }\n\n  input:focus ~ & {\n    @include disable-mouse-outline;\n  }\n}\n\n/// Adds base styles for active/inactive text inside a switch. Apply this to text elements inside the switch `<label>`.\n@mixin switch-text {\n  position: absolute;\n  top: 50%;\n  transform: translateY(-50%);\n}\n\n/// Adds styles for the active state text within a switch.\n@mixin switch-text-active {\n  #{$global-left}: 8%;\n  display: none;\n\n  input:checked + label > & {\n    display: block;\n  }\n}\n\n/// Adds styles for the inactive state text within a switch.\n@mixin switch-text-inactive {\n  #{$global-right}: 15%;\n\n  input:checked + label > & {\n    display: none;\n  }\n}\n\n/// Changes the size of a switch by modifying the size of the body and paddle. Apply this to a switch container.\n/// @param {Number} $font-size [1rem] - Font size of label text within the switch.\n/// @param {Number} $width [4rem] - Width of the switch body.\n/// @param {Number} $height [2rem] - Height of the switch body.\n/// @param {Number} $paddle-width [1.5rem] - Width of the switch paddle.\n/// @param {Number} $paddle-offset [0.25rem] - Spacing between the switch paddle and the edge of the switch body.\n@mixin switch-size(\n  $font-size: 1rem,\n  $width: 4rem,\n  $height: 2rem,\n  $paddle-width: 1.5rem,\n  $paddle-offset: 0.25rem\n) {\n  $paddle-height: $height - ($paddle-offset * 2);\n  $paddle-left-active: $width - $paddle-width - $paddle-offset;\n\n  .switch-paddle {\n    width: $width;\n    height: $height;\n    font-size: $font-size;\n  }\n\n  .switch-paddle::after {\n    width: $paddle-width;\n    height: $paddle-height;\n  }\n\n  input:checked ~ .switch-paddle::after {\n    #{$global-left}: $paddle-left-active;\n  }\n}\n\n@mixin foundation-switch {\n  // Container class\n  .switch {\n    @include switch-container;\n  }\n\n  // <input> element\n  .switch-input {\n    @include switch-input;\n  }\n\n  // <label> element\n  .switch-paddle {\n    @include switch-paddle;\n  }\n\n  // Base label text styles\n  %switch-text {\n    @include switch-text;\n  }\n\n  // Active label text styles\n  .switch-active {\n    @extend %switch-text;\n    @include switch-text-active;\n  }\n\n  // Inactive label text styles\n  .switch-inactive {\n    @extend %switch-text;\n    @include switch-text-inactive;\n  }\n\n  // Switch sizes\n  .switch.tiny {\n    @include switch-size(rem-calc(10), 3rem, $switch-height-tiny, 1rem, $switch-paddle-offset);\n  }\n\n  .switch.small {\n    @include switch-size(rem-calc(12), 3.5rem, $switch-height-small, 1.25rem, $switch-paddle-offset);\n  }\n\n  .switch.large {\n    @include switch-size(rem-calc(16), 5rem, $switch-height-large, 2rem, $switch-paddle-offset);\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n// scss-lint:disable MergeableSelector, QualifyingElement\n\n////\n/// @group table\n////\n\n/// Default color for table background.\n/// @type Color\n$table-background: $white  !default;\n\n/// Default scale for darkening the striped table rows and the table border.\n/// @type Number\n$table-color-scale: 5% !default;\n\n/// Default style for table border.\n/// @type List\n$table-border: 1px solid smart-scale($table-background, $table-color-scale) !default;\n\n/// Default padding for table.\n/// @type Number\n$table-padding: rem-calc(8 10 10) !default;\n\n/// Default scale for darkening the table rows on hover.\n/// @type Number\n$table-hover-scale: 2% !default;\n\n/// Default color of standard rows on hover.\n/// @type List\n$table-row-hover: darken($table-background, $table-hover-scale) !default;\n\n/// Default color of striped rows on hover.\n/// @type List\n$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale) !default;\n\n/// Default background color for striped rows.\n/// @type Color\n$table-striped-background: smart-scale($table-background, $table-color-scale) !default;\n\n/// Default value for showing the stripe on rows of the tables, excluding the header and footer. If even, the even rows will have a background color. If odd, the odd rows will have a background color. If empty, or any other value, the table rows will have no striping.\n/// @type Keyword\n$table-stripe: even !default;\n\n/// Default color for header background.\n/// @type Color\n$table-head-background: smart-scale($table-background, $table-color-scale / 2) !default;\n\n/// Default color for footer background.\n/// @type Color\n$table-foot-background: smart-scale($table-background, $table-color-scale) !default;\n\n/// Default font color for header.\n/// @type Color\n$table-head-font-color: $body-font-color !default;\n\n/// Default value for showing the header when using stacked tables.\n/// @type Boolean\n$show-header-for-stacked: false !default;\n\n@mixin -zf-table-children-styles($stripe: $table-stripe) {\n  thead,\n  tbody,\n  tfoot {\n    border: $table-border;\n    background-color: $table-background;\n  }\n\n  // Caption\n  caption {\n    font-weight: $global-weight-bold;\n    padding: $table-padding;\n  }\n\n  // Table head and foot\n  thead,\n  tfoot {\n    background: $table-head-background;\n    color: $table-head-font-color;\n\n    // Rows within head and foot\n    tr {\n      background: transparent;\n    }\n\n    // Cells within head and foot\n    th,\n    td {\n      padding: $table-padding;\n      font-weight: $global-weight-bold;\n      text-align: #{$global-left};\n    }\n  }\n\n  // Table rows\n  tbody {\n    tr {\n      // If stripe is set to even, darken the even rows.\n      @if $stripe == even {\n        &:nth-child(even) {\n          background-color: $table-striped-background;\n        }\n      }\n\n      // If stripe is set to odd, darken the odd rows.\n      @else if $stripe == odd {\n        &:nth-child(odd) {\n          background-color: $table-striped-background;\n        }\n      }\n    }\n\n    th,\n    td {\n      padding: $table-padding;\n    }\n  }\n}\n\n/// Adds the general styles for tables.\n/// @param {Keyword} $stripe [$table-stripe] - Uses keywords even, odd, or none to darken rows of the table. The default value is even.\n@mixin table(\n  $stripe: $table-stripe,\n  $nest: false\n) {\n  width: 100%;\n  margin-bottom: $global-margin;\n  border-radius: $global-radius;\n\n  @if $nest {\n    @include -zf-table-children-styles($stripe);\n  }\n  @else {\n    @at-root {\n      @include -zf-table-children-styles($stripe);\n    }\n  }\n}\n\n/// Adds the ability to horizontally scroll the table when the content overflows horizontally.\n@mixin table-scroll {\n  display: block;\n  width: 100%;\n  overflow-x: auto;\n}\n\n/// Slightly darkens the table rows on hover.\n@mixin table-hover {\n  tr {\n    //Darkens the non-striped table rows on hover.\n    &:hover {\n      background-color: $table-row-hover;\n    }\n\n    //Darkens the even striped table rows.\n    @if($table-stripe == even) {\n      &:nth-of-type(even):hover {\n        background-color: $table-row-stripe-hover;\n      }\n    }\n\n    //Darkens the odd striped table rows.\n    @elseif($table-stripe == odd) {\n      &:nth-of-type(odd):hover {\n        background-color: $table-row-stripe-hover;\n      }\n    }\n  }\n}\n\n/// Adds styles for a stacked table. Useful for small-screen layouts.\n/// @param {Boolean} $header [$show-header-for-stacked] - Show the first th of header when stacked.\n@mixin table-stack($header: $show-header-for-stacked) {\n  @if $header {\n    thead {\n      th:first-child {\n        display: block;\n      }\n\n      th {\n        display: none;\n      }\n    }\n  }\n  @else {\n    thead {\n      display: none;\n    }\n  }\n\n  tfoot {\n    display: none;\n  }\n\n  tr,\n  th,\n  td {\n    display: block;\n  }\n\n  td {\n    border-top: 0;\n  }\n}\n\n@mixin foundation-table($nest: false) {\n  table {\n    @include table($nest: $nest);\n  }\n\n  table.stack {\n    @include breakpoint(medium down) {\n      @include table-stack;\n    }\n  }\n\n  table.scroll {\n    @include table-scroll;\n  }\n\n  table.hover {\n    @include table-hover;\n  }\n\n  .table-scroll {\n    overflow-x: auto;\n\n    table {\n      width: auto;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group tabs\n////\n\n/// Default margin of the tab bar.\n/// @type Number\n$tab-margin: 0 !default;\n\n/// Default background color of a tab bar.\n/// @type Color\n$tab-background: $white !default;\n\n/// active background color of a tab bar.\n/// @type Color\n$tab-background-active: $light-gray !default;\n\n/// Font size of tab items.\n/// @type Number\n$tab-item-font-size: rem-calc(12) !default;\n\n/// Default background color on hover for items in a Menu.\n$tab-item-background-hover: $white !default;\n\n/// Default padding of a tab item.\n/// @type Number\n$tab-item-padding: 1.25rem 1.5rem !default;\n\n/// Maximum number of `expand-n` classes to include in the CSS.\n/// @type Number\n$tab-expand-max: 6 !default;\n\n/// Default background color of tab content.\n/// @type Color\n$tab-content-background: $white !default;\n\n/// Default border color of tab content.\n/// @type Color\n$tab-content-border: $light-gray !default;\n\n/// Default text color of tab content.\n/// @type Color\n$tab-content-color: foreground($tab-background, $primary-color) !default;\n\n/// Default padding for tab content.\n/// @type Number | List\n$tab-content-padding: 1rem !default;\n\n/// Adds styles for a tab container. Apply this to a `<ul>`.\n@mixin tabs-container {\n  @include clearfix;\n  margin: $tab-margin;\n  list-style-type: none;\n  background: $tab-background;\n  border: 1px solid $tab-content-border;\n}\n\n/// Augments a tab container to have vertical tabs. Use this in conjunction with `tabs-container()`.\n@mixin tabs-container-vertical {\n  > li {\n    width: auto;\n    float: none;\n    display: block;\n  }\n}\n\n/// Adds styles for the links within a tab container. Apply this to the `<li>` elements inside a tab container.\n@mixin tabs-title {\n  float: #{$global-left};\n\n  > a {\n    display: block;\n    padding: $tab-item-padding;\n    line-height: 1;\n    font-size: $tab-item-font-size;\n\n    &:hover {\n      background: $tab-item-background-hover;\n    }\n\n    &:focus,\n    &[aria-selected='true'] {\n      background: $tab-background-active;\n    }\n  }\n}\n\n/// Adds styles for the wrapper that surrounds a tab group's content panes.\n@mixin tabs-content {\n  background: $tab-content-background;\n  transition: all 0.5s ease;\n  border: 1px solid $tab-content-border;\n  border-top: 0;\n}\n\n/// Augments a tab content container to have a vertical style, by shifting the border around. Use this in conjunction with `tabs-content()`.\n@mixin tabs-content-vertical {\n  border: 1px solid $tab-content-border;\n  border-#{$global-left}: 0;\n}\n\n/// Adds styles for an individual tab content panel within the tab content container.\n@mixin tabs-panel {\n  display: none;\n  padding: $tab-content-padding;\n\n  &.is-active {\n    display: block;\n  }\n}\n\n@mixin foundation-tabs {\n  .tabs {\n    @include tabs-container;\n  }\n\n  // Vertical\n  .tabs.vertical {\n    @include tabs-container-vertical;\n  }\n\n  // Simple\n  .tabs.simple {\n    > li > a {\n      padding: 0;\n\n      &:hover {\n        background: transparent;\n      }\n    }\n  }\n\n  // Primary color\n  .tabs.primary {\n    background: $primary-color;\n\n    > li > a {\n      color: foreground($primary-color);\n\n      &:hover,\n      &:focus {\n        background: smart-scale($primary-color);\n      }\n    }\n  }\n\n  .tabs-title {\n    @include tabs-title;\n  }\n\n  .tabs-content {\n    @include tabs-content;\n  }\n\n  .tabs-content.vertical {\n    @include tabs-content-vertical;\n  }\n\n  .tabs-panel {\n    @include tabs-panel;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group title-bar\n////\n\n/// Background color of a title bar.\n/// @type Color\n$titlebar-background: $black !default;\n\n/// Color of text inside a title bar.\n/// @type Color\n$titlebar-color: $white !default;\n\n/// Padding inside a title bar.\n/// @type Length\n$titlebar-padding: 0.5rem !default;\n\n/// Font weight of text inside a title bar.\n/// @type Weight\n$titlebar-text-font-weight: bold !default;\n\n/// Color of menu icons inside a title bar.\n/// @type Color\n$titlebar-icon-color: $white !default;\n\n/// Color of menu icons inside a title bar on hover.\n/// @type Color\n$titlebar-icon-color-hover: $medium-gray !default;\n\n/// Spacing between the menu icon and text inside a title bar.\n/// @type Length\n$titlebar-icon-spacing: 0.25rem !default;\n\n@mixin foundation-title-bar {\n  .title-bar {\n    background: $titlebar-background;\n    color: $titlebar-color;\n    padding: $titlebar-padding;\n\n    @if $global-flexbox {\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n    }\n    @else {\n      @include clearfix;\n    }\n\n    .menu-icon {\n      margin-#{$global-left}: $titlebar-icon-spacing;\n      margin-#{$global-right}: $titlebar-icon-spacing;\n    }\n  }\n\n  @if $global-flexbox {\n    // scss-lint:disable ZeroUnit\n    .title-bar-left,\n    .title-bar-right {\n      flex: 1 1 0px;\n    }\n\n    .title-bar-right {\n      text-align: right;\n    }\n  }\n  @else {\n    .title-bar-left {\n      float: left;\n    }\n\n    .title-bar-right {\n      float: right;\n      text-align: right;\n    }\n  }\n\n  .title-bar-title {\n    font-weight: $titlebar-text-font-weight;\n    vertical-align: middle;\n    display: inline-block;\n  }\n\n  .menu-icon.dark {\n    @include hamburger;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group top-bar\n////\n\n/// Padding for the top bar.\n/// @type Number\n$topbar-padding: 0.5rem !default;\n\n/// Background color for the top bar. This color also cascades to menus within the top bar.\n/// @type Color\n$topbar-background: $light-gray !default;\n\n/// Background color submenus within the top bar. Usefull if $topbar-background is transparent.\n/// @type Color\n$topbar-submenu-background: $topbar-background !default;\n\n/// Spacing for the top bar title.\n/// @type Number\n$topbar-title-spacing: 1rem !default;\n\n/// Maximum width of `<input>` elements inside the top bar.\n/// @type Number\n$topbar-input-width: 200px !default;\n\n/// Breakpoint at which top bar switches from mobile to desktop view.\n/// @type Breakpoint\n$topbar-unstack-breakpoint: medium !default;\n\n/// Adds styles for a top bar container.\n@mixin top-bar-container {\n  @if $global-flexbox {\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    flex-wrap: nowrap;\n  }\n  @else {\n    @include clearfix;\n  }\n\n  padding: $topbar-padding;\n\n  &,\n  ul {\n    background-color: $topbar-background;\n  }\n\n  // Check if $topbar-background is differnt from $topbar-background-submenu\n  @if ($topbar-background != $topbar-submenu-background) {\n    ul ul {\n      background-color: $topbar-submenu-background;\n    }\n  }\n\n  // Restrain width of inputs by default to make them easier to arrange\n  input {\n    max-width: $topbar-input-width;\n    margin-#{$global-right}: 1rem;\n  }\n\n  // The above styles shouldn't apply to input group fields\n  .input-group-field {\n    width: 100%;\n    margin-#{$global-right}: 0;\n  }\n\n  // scss-lint:disable QualifyingElement\n  input.button {\n    width: auto;\n  }\n}\n\n/// Makes sections of a top bar stack on top of each other.\n@mixin top-bar-stacked {\n  @if $global-flexbox {\n    flex-wrap: wrap;\n\n    // Sub-sections\n    .top-bar-left,\n    .top-bar-right {\n      flex: 0 0 100%;\n      max-width: 100%;\n    }\n  }\n  @else {\n    // Sub-sections\n    .top-bar-left,\n    .top-bar-right {\n      width: 100%;\n    }\n  }\n}\n\n/// Undoes the CSS applied by the `top-bar-stacked()` mixin.\n@mixin top-bar-unstack {\n  @if $global-flexbox {\n    flex-wrap: nowrap;\n\n    // scss-lint:disable ZeroUnit\n    .top-bar-left,\n    .top-bar-right {\n      flex: 1 1 0px;\n    }\n  }\n  @else {\n    .top-bar-left,\n    .top-bar-right {\n      width: auto;\n    }\n  }\n}\n\n@mixin foundation-top-bar {\n  // Top bar container\n  .top-bar {\n    @include top-bar-container;\n\n    // Stack on small screens by default\n    @include top-bar-stacked;\n\n    @include breakpoint($topbar-unstack-breakpoint) {\n      @include top-bar-unstack;\n    }\n\n    // Generate classes for stacking on each screen size (defined in $breakpoint-classes)\n    @each $size in $breakpoint-classes {\n      @if $size != $-zf-zero-breakpoint {\n        &.stacked-for-#{$size} {\n          @include breakpoint($size down) {\n            @include top-bar-stacked;\n          }\n        }\n      }\n    }\n  }\n\n  // Sub-sections\n  @if $global-flexbox {\n    .top-bar-title {\n      flex: 0 0 auto;\n      margin-right: $topbar-title-spacing;\n    }\n\n    .top-bar-left,\n    .top-bar-right {\n      flex: 0 0 auto;\n    }\n  }\n  @else {\n    .top-bar-title {\n      float: left;\n      margin-right: $topbar-title-spacing;\n\n    }\n\n    .top-bar-left {\n      float: left;\n    }\n\n    .top-bar-right {\n      float: right;\n    }\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group thumbnail\n////\n\n/// Border around thumbnail images.\n/// @type Border\n$thumbnail-border: solid 4px $white !default;\n\n/// Bottom margin for thumbnail images.\n/// @type Length\n$thumbnail-margin-bottom: $global-margin !default;\n\n/// Box shadow under thumbnail images.\n/// @type Shadow\n$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2) !default;\n\n/// Box shadow under thumbnail images.\n/// @type Shadow\n$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5) !default;\n\n/// Transition proprties for thumbnail images.\n/// @type Transition\n$thumbnail-transition: box-shadow 200ms ease-out !default;\n\n/// Default radius for thumbnail images.\n/// @type Number\n$thumbnail-radius: $global-radius !default;\n\n/// Adds thumbnail styles to an element.\n@mixin thumbnail {\n  border: $thumbnail-border;\n  box-shadow: $thumbnail-shadow;\n  display: inline-block;\n  line-height: 0;\n  max-width: 100%;\n  transition: $thumbnail-transition;\n  border-radius: $thumbnail-radius;\n  margin-bottom: $thumbnail-margin-bottom;\n\n  &:hover,\n  &:focus {\n    box-shadow: $thumbnail-shadow-hover;\n  }\n}\n\n@mixin foundation-thumbnail {\n  .thumbnail {\n    @include thumbnail;\n  }\n}\n","// Foundation for Sites by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n////\n/// @group tooltip\n////\n\n/// Default font weight of the defined term.\n/// @type Keyword | Number\n$has-tip-font-weight: $global-weight-bold !default;\n\n/// Default border bottom of the defined term.\n/// @type List\n$has-tip-border-bottom: dotted 1px $dark-gray !default;\n\n/// Default color of the tooltip background.\n/// @type Color\n$tooltip-background-color: $black !default;\n\n/// Default color of the tooltip font.\n/// @type Color\n$tooltip-color: $white !default;\n\n/// Default padding of the tooltip background.\n/// @type Number\n$tooltip-padding: 0.75rem !default;\n\n/// Default font size of the tooltip text. By default, we recommend a smaller font size than the body copy.\n/// @type Number\n$tooltip-font-size: $small-font-size !default;\n\n/// Default pip width for tooltips.\n/// @type Number\n$tooltip-pip-width: 0.75rem !default;\n\n/// Default pip height for tooltips. This is helpful for calculating the distance of the tooltip from the tooltip word.\n/// @type Number\n$tooltip-pip-height: $tooltip-pip-width * 0.866 !default;\n\n/// Default radius for tooltips.\n/// @type Number\n$tooltip-radius: $global-radius !default;\n\n@mixin has-tip {\n  border-bottom: $has-tip-border-bottom;\n  font-weight: $has-tip-font-weight;\n  position: relative;\n  display: inline-block;\n  cursor: help;\n}\n\n@mixin tooltip {\n  background-color: $tooltip-background-color;\n  color: $tooltip-color;\n  font-size: $tooltip-font-size;\n  padding: $tooltip-padding;\n  position: absolute;\n  z-index: 10;\n  top: calc(100% + #{$tooltip-pip-height});\n  max-width: 10rem !important;\n  border-radius: $tooltip-radius;\n\n  &::before {\n    @include css-triangle($tooltip-pip-width, $tooltip-background-color, up);\n    bottom: 100%;\n    position: absolute;\n    left: 50%;\n    transform: translateX(-50%);\n  }\n\n  &.top::before {\n    @include css-triangle($tooltip-pip-width, $tooltip-background-color, down);\n    top: 100%;\n    bottom: auto;\n  }\n\n  &.left::before {\n    @include css-triangle($tooltip-pip-width, $tooltip-background-color, right);\n    bottom: auto;\n    left: 100%;\n    top: 50%;\n    transform: translateY(-50%);\n  }\n\n  &.right::before {\n    @include css-triangle($tooltip-pip-width, $tooltip-background-color, left);\n    bottom: auto;\n    left: auto;\n    right: 100%;\n    top: 50%;\n    transform: translateY(-50%);\n  }\n}\n\n@mixin foundation-tooltip {\n  .has-tip {\n    @include has-tip;\n  }\n\n  .tooltip {\n    @include tooltip;\n  }\n}\n","// Motion UI by ZURB\n// foundation.zurb.com/motion-ui\n// Licensed under MIT Open Source\n\n@import 'settings';\n\n@import 'util/animation';\n@import 'util/args';\n@import 'util/keyframe';\n@import 'util/selector';\n@import 'util/series';\n@import 'util/transition';\n@import 'util/unit';\n\n@import 'effects/fade';\n@import 'effects/hinge';\n@import 'effects/spin';\n@import 'effects/zoom';\n@import 'effects/shake';\n@import 'effects/slide';\n@import 'effects/wiggle';\n\n@import 'transitions/fade';\n@import 'transitions/hinge';\n@import 'transitions/zoom';\n@import 'transitions/slide';\n@import 'transitions/spin';\n\n@import 'classes';\n","/// Format for CSS classes created with Motion UI.\n/// @type Map\n/// @prop {Boolean} append [true] - Defines if selectors are chained to the selector (`.class.enter`), or appended as a new class (`.class-enter`).\n/// @prop {String} prefix ['mui-'] - Prefix to add before the state of a class. Enter an empty string to use no prefix.\n/// @prop {String} prefix ['-active'] - Suffix to add to the active state class.\n$motion-ui-classes: (\n  chain: true,\n  prefix: 'mui-',\n  active: '-active',\n) !default;\n\n/// State names to reference when writing motion classes. To use multiple class names for one state, enter a list of strings instead of one string.\n/// @type Map\n$motion-ui-states: (\n  in: 'enter',\n  out: 'leave',\n) !default;\n\n/// Default speed that transitions and animations play at, along with values for modifier classes to change the speed.\n/// @type Map\n$motion-ui-speeds: (\n  default: 500ms,\n  slow: 750ms,\n  fast: 250ms,\n) !default;\n\n/// Default delay to add before motion, along with values for modifier classes to change the delay.\n/// @type Map\n$motion-ui-delays: (\n  default: 0,\n  short: 300ms,\n  long: 700ms,\n) !default;\n\n/// Default easing for transitions and animations, along with values for modifier classes to change the easing.\n/// @type Map\n$motion-ui-easings: (\n  default: linear,\n  linear: linear,\n  ease: ease,\n  ease-in: ease-in,\n  ease-out: ease-out,\n  ease-in-out: ease-in-out,\n  bounce-in: cubic-bezier(0.485, 0.155, 0.24, 1.245),\n  bounce-out: cubic-bezier(0.485, 0.155, 0.515, 0.845),\n  bounce-in-out: cubic-bezier(0.76, -0.245, 0.24, 1.245),\n) !default;\n\n/// Miscellaneous settings related to Motion UI.\n/// @type Map\n/// @prop {Boolean} slide-and-fade [false] - Defines if slide motions should also fade in/out.\n/// @prop {Boolean} slide-and-fade [true] - Defines if hinge motions should also fade in/out.\n/// @prop {Boolean} slide-and-fade [true] - Defines if scale motions should also fade in/out.\n/// @prop {Boolean} slide-and-fade [true] - Defines if spin motions should also fade in/out.\n$motion-ui-settings: (\n  slide-and-fade: false,\n  hinge-and-fade: true,\n  scale-and-fade: true,\n  spin-and-fade: true,\n  activate-queue-class: 'is-animating',\n) !default;\n","/// Creates a keyframe from one or more effect functions and assigns it to the element by adding the `animation-name` property.\n/// @param {Function} $effects... - One or more effect functions to build the keyframe with.\n@mixin mui-animation($args...) {\n  $name: map-get(-mui-process-args($args...), name);\n  @include mui-keyframes($name, $args...);\n  animation-name: unquote($name);\n}\n","/// Processes a series of keyframe function arguments.\n/// @access private\n@function -mui-process-args($args...) {\n  @if length($args) == 1 {\n    $arg: nth($args, 1);\n\n    @if type-of($arg) == 'string' {\n      @return call($arg);\n    } @else if type-of($arg) == 'map' {\n      @return $arg;\n    }\n  }\n\n  @return -mui-keyframe-combine($args...);\n}\n","// Internal counter for creating unique keyframe names\n$-mui-custom: 0;\n\n/// Creates a keyframe from one or more effect functions. Use this function instead of `mui-animation` if you want to create a keyframe animation *without* automatically assigning it to the element.\n/// @param {String} $name - Name of the keyframe.\n/// @param {Function} $effects... - One or more effect functions to build the keyframe with.\n@mixin mui-keyframes($name, $effects...) {\n  $obj: -mui-process-args($effects...);\n  $obj: map-remove($obj, name);\n\n  @keyframes #{$name} {\n    // Now iterate through each keyframe percentage\n    @each $pct, $props in $obj {\n      #{-mui-keyframe-pct($pct)} {\n        // Lastly, iterate through each CSS property within a percentage and print it out\n        @each $prop, $value in $props {\n          #{$prop}: #{$value};\n        }\n      }\n    }\n  }\n}\n\n/// Creates a string for a CSS keyframe, by converting a list of numbers to a comma-separated list of percentage values.\n/// @param {Number|List} $input - List of numbers to use.\n/// @return {String} A set of comma-separated percentage values.\n/// @access private\n@function -mui-keyframe-pct($input) {\n  $output: ();\n\n  @if type-of($input) == 'number' {\n    $output: ($input * 1%);\n  } @else if type-of($input) == 'list' {\n    @each $i in $input {\n      $output: append($output, ($i * 1%), comma);\n    }\n  }\n\n  @return $output;\n}\n\n/// Prints the CSS properties from a specific key in a keyframes map. Used to borrow CSS from keyframe functions for use in transitions.\n/// @param {Map} $kf - Keyframe map to extract from.\n/// @param {Number} $key - Key in the map to print the CSS of.\n/// @access private\n@mixin -mui-keyframe-get($kf, $key) {\n  $map: map-get($kf, $key);\n\n  @each $prop, $value in $map or () {\n    // Some keyframe maps store transforms as quoted strings\n    @if type-of($value) == 'string' {\n      $value: unquote($value);\n    }\n    #{$prop}: $value;\n  }\n}\n\n/// Reformats a map containing keys with a list of values, so that each key is a single value.\n/// @param {Map} $map - Map to split up.\n/// @return {Map} A reformatted map.\n/// @access private\n@function -mui-keyframe-split($map) {\n  $new-map: ();\n\n  // Split keys with multiple values into individual keys\n  @each $key, $item in $map {\n    $key-type: type-of($key);\n\n    @if $key-type == 'number' {\n      $new-map: map-merge($new-map, ($key: $item));\n    } @else if $key-type == 'list' {\n      @each $k in $key {\n        $new-map: map-merge($new-map, ($k: $item));\n      }\n    }\n  }\n\n  @return $new-map;\n}\n\n/// Combines a series of keyframe objects into one.\n/// @param {Map} $maps... - A series of maps to merge, as individual parameters.\n/// @return {Map} A combined keyframe object.\n/// @access private\n@function -mui-keyframe-combine($maps...) {\n  $new-map: ();\n\n  // Iterate through each map passed in\n  @each $map in $maps {\n    @if type-of($map) == 'string' {\n      $map: call($map);\n    }\n\n    $map: -mui-keyframe-split($map);\n\n    // Iterate through each keyframe in the map\n    // $key is the keyframe percentage\n    // $value is a map of CSS properties\n    @each $key, $value in $map {\n      $new-value: ();\n\n      @if map-has-key($new-map, $key) {\n        // If the map already has the keyframe %, append the new property\n        $new-value: -mui-merge-properties(map-get($new-map, $key), $value);\n      } @else {\n        // Otherwise, create a new map with the new property\n        $new-value: $value;\n      }\n\n      // Finally, merge the modified keyframe value into the output map\n      $new-map: map-merge($new-map, ($key: $new-value));\n    }\n  }\n\n  // Make a name for the keyframes\n  $-mui-custom: $-mui-custom + 1 !global;\n  $map-name: (name: 'custom-#{$-mui-custom}');\n  $new-map: map-merge($new-map, $map-name);\n\n  @return $new-map;\n}\n\n/// Combines two maps of CSS properties into one map. If both maps have a transform property, the values from each will be combined into one property.\n/// @param {Map} $one - First map to merge.\n/// @param {Map} $two - Second map to merge.\n/// @return {Map} A combined map.\n/// @access private\n@function -mui-merge-properties($one, $two) {\n  @if map-has-key($one, transform) and map-has-key($two, transform) {\n    $transform: join(map-get($one, transform), map-get($two, transform));\n    $one: map-merge($one, (transform: $transform));\n    $two: map-remove($two, transform);\n  }\n\n  @return map-merge($one, $two);\n}\n","/// Builds a selector for a motion class, using the settings defined in the `$motion-ui-classes` and `$motion-ui-states` maps.\n/// @param {String|List} $states - One or more strings that correlate to a state.\n/// @param {Boolean} $active - Defines if the selector is for the setup or active class.\n/// @return {String} A selector that can be interpolated into your Sass code.\n/// @access private\n@function -mui-build-selector($states, $active: false) {\n  $return: '';\n  $chain: map-get($motion-ui-classes, chain);\n  $prefix: map-get($motion-ui-classes, prefix);\n  $suffix: map-get($motion-ui-classes, active);\n\n  @each $sel in $states {\n    $return: $return + if($chain, '&.', '#{&}-') + $prefix + $sel;\n\n    @if $active {\n      $return: $return + if($chain, '.', '#{&}-') + $prefix + $sel + $suffix;\n    }\n\n    $return: $return + ', ';\n  }\n\n  @return str-slice($return, 1, -3);\n}\n","$-mui-queue: ();\n\n/// Pauses the animation on an element by default, and then plays it when an active class is added to a parent. Also sets the fill mode of the animation to `both`. This pauses the element at the first frame of the animation, and holds it in place at the end.\n/// @access private\n%animated-element {\n  animation-play-state: paused;\n  animation-fill-mode: both;\n\n  .#{map-get($motion-ui-settings, activate-queue-class)} & {\n    animation-play-state: running;\n  }\n}\n\n/// Creates a new animation queue.\n/// @param {Duration} $delay [0s] - Delay in seconds or milliseconds to place at the front of the animation queue.\n@mixin mui-series($delay: 0s) {\n  $-mui-queue: () !global;\n\n  @if $delay > 0 {\n    $item: ($delay, 0s);\n    $-mui-queue: append($-mui-queue, $item) !global;\n  }\n\n  @content;\n}\n\n/// Adds an animation to an animation queue. Only use this mixin inside of `mui-series()`.\n/// @param {Duration} $duration [1s] - Length of the animation.\n/// @param {Duration} $gap [0s] - Amount of time to pause before playing the animation after this one. Use a negative value to make the next effect overlap with the current one.\n/// @param {Function} $keyframes... - One or more effect functions to build the keyframe with.\n@mixin mui-queue(\n  $duration: 1s,\n  $gap: 0s,\n  $keyframes...\n) {\n  // Build the animation\n  $kf: -mui-process-args($keyframes...);\n\n  // Calculate the delay for this animation based on how long the previous ones take\n  $actual-delay: 0s;\n  @each $anim in $-mui-queue {\n    $actual-delay: $actual-delay + nth($anim, 1) + nth($anim, 2);\n  }\n\n  // Append this animation's length and gap to the end of the queue\n  $item: ($duration, $gap);\n  $-mui-queue: append($-mui-queue, $item) !global;\n\n  // CSS output\n  @extend %animated-element;\n  @include mui-animation($kf);\n  animation-duration: $duration;\n  animation-delay: $actual-delay;\n}\n","/// Applies basic transition settings to an element.\n/// @param {Duration} $duration [null] - Length (speed) of the transition.\n/// @param {Keyword|Function} $timing [null] - Easing of the transition.\n/// @param {Duration} $delay [null] - Delay in seconds or milliseconds before the transition starts.\n@mixin transition-basics(\n  $duration: null,\n  $timing: null,\n  $delay: null\n) {\n  @include -motion-ui-defaults;\n  transition-duration: $duration;\n  transition-timing-function: $timing;\n  transition-delay: $delay;\n}\n\n/// Wraps the content in the setup class for a transition.\n/// @param {Keyword} $dir - State to setup for transition.\n@mixin transition-start($dir) {\n  $selector: -mui-build-selector(map-get($motion-ui-states, $dir));\n\n  @at-root {\n    #{$selector} {\n      @content;\n    }\n  }\n}\n\n/// Wraps the content in the active class for a transition.\n/// @param {Keyword} $dir - State to activate a transition on.\n@mixin transition-end($dir) {\n  $selector: -mui-build-selector(map-get($motion-ui-states, $dir), true);\n\n  @at-root {\n    #{$selector} {\n      @content;\n    }\n  }\n}\n\n/// Adds styles for a stagger animation, which can be used with Angular's `ng-repeat`.\n/// @param {Duration} $delay-amount - Amount of time in seconds or milliseconds to add between each item's animation.\n@mixin stagger($delay-amount) {\n  transition-delay: $delay-amount;\n  transition-duration: 0; // Prevent accidental CSS inheritance\n}\n","/// Removes the unit (e.g. px, em, rem) from a value, returning the number only.\n/// @param {Number} $num - Number to strip unit from.\n/// @return {Number} The same number, sans unit.\n/// @access private\n@function strip-unit($num) {\n  @return $num / ($num * 0 + 1);\n}\n","/// Creates a fading animation.\n/// @param {Number} $from [0] - Opacity to start at.\n/// @param {Number} $to [1] - Opacity to end at.\n/// @return {Map} A keyframes map that can be used with the `generate-keyframes()` mixin.\n@function fade(\n  $from: 0,\n  $to: 1\n) {\n  $type: type-of($from);\n  $keyframes: ();\n\n  @if $type == 'string' {\n    @if $from == in {\n      $from: 0;\n      $to: 1;\n    } @else if $from == out {\n      $from: 1;\n      $to: 0;\n    }\n  }\n\n  $fromName: $from * 100;\n  $toName:   $to   * 100;\n\n  $keyframes: (\n    name: 'fade-#{$fromName}-to-#{$toName}',\n    0: (opacity: $from),\n    100: (opacity: $to),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a hinge effect by rotating the element.\n/// @param {Keyword} $state [in] - State to transition to.\n/// @param {Keyword} $from [left] - Edge of the element to rotate from. Can be `top`, `right`, `bottom`, or `left`.\n/// @param {Keyword} $axis [edge] - Axis of the element to rotate on. Can be `edge` or `center`.\n/// @param {Number} $perspective [2000px] - Perceived distance between the viewer and the element. A higher number will make the rotation effect more pronounced.\n/// @param {Keyword} $turn-origin [from-back] - Side of the element to start the rotation from. Can be `from-back` or `from-front`.\n@function hinge (\n  $state: in,\n  $from: left,\n  $axis: edge,\n  $perspective: 2000px,\n  $turn-origin: from-back\n) {\n  // Rotation directions when hinging from back vs. front\n  $rotation-amount: 90deg;\n  $rotations-back: (\n    top: rotateX($rotation-amount * -1),\n    right: rotateY($rotation-amount * -1),\n    bottom: rotateX($rotation-amount),\n    left: rotateY($rotation-amount),\n  );\n  $rotations-from: (\n    top: rotateX($rotation-amount),\n    right: rotateY($rotation-amount),\n    bottom: rotateX($rotation-amount * -1),\n    left: rotateY($rotation-amount * -1),\n  );\n\n  // Rotation origin\n  $rotation: '';\n  @if $turn-origin == from-front {\n    $rotation: map-get($rotations-from, $from);\n  } @else if $turn-origin == from-back {\n    $rotation: map-get($rotations-back, $from);\n  } @else {\n    @warn '$turn-origin must be either \"from-back\" or \"from-front\"';\n  }\n\n  // Start and end state\n  $start: '';\n  $end: '';\n  @if $state == in {\n    $start: perspective($perspective) $rotation;\n    $end: perspective($perspective) rotate(0deg);\n  } @else {\n    $start: perspective($perspective) rotate(0deg);\n    $end: perspective($perspective) $rotation;\n  }\n\n  // Turn axis\n  $origin: '';\n  @if $axis == edge {\n    $origin: $from;\n  } @else {\n    $origin: center;\n  }\n\n  $keyframes: (\n    name: 'hinge-#{$state}-#{$from}-#{$axis}-#{$turn-origin}',\n    0: (transform: $start, transform-origin: $origin),\n    100: (transform: $end),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a spinning animation.\n/// @param {Keyword} $direction [cw] - Direction to spin. Should be `cw` (clockwise) or `ccw` (counterclockwise).\n/// @param {Number} $amount [360deg] - Amount to spin. Can be any CSS angle unit.\n/// @return {Map} A keyframes map that can be used with the `generate-keyframes()` mixin.\n@function spin(\n  $state: in,\n  $direction: cw,\n  $amount: 1turn\n) {\n  $start: 0;\n  $end: 0;\n\n  @if $state == in {\n    $start: if($direction == ccw, $amount, $amount * -1);\n    $end: 0;\n  } @else {\n    $start: 0;\n    $end: if($direction == ccw, $amount * -1, $amount);\n  }\n\n  $keyframes: (\n    name: 'spin-#{$direction}-#{$amount}',\n    0: (transform: rotate($start)),\n    100: (transform: rotate($end)),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a scaling transition. A scale of `1` means the element is the same size. Larger numbers make the element bigger, while numbers less than 1 make the element smaller.\n/// @param {Number} $from [1.5] - Size to start at.\n/// @param {Number} $to [1] - Size to end at.\n@function zoom(\n  $from: 0,\n  $to: 1\n) {\n  $keyframes: (\n    name: 'scale-#{$to}-to-#{$from}',\n    0: (transform: scale($from)),\n    100: (transform: scale($to)),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a shaking animation.\n/// @param {Percentage} $intensity [7%] - Intensity of the shake, as a percentage value.\n/// @return {Map} A keyframes map that can be used with the `generate-keyframes()` mixin.\n@function shake($intensity: 7%) {\n  $right: (0, 10, 20, 30, 40, 50, 60, 70, 80, 90);\n  $left: (5, 15, 25, 35, 45, 55, 65, 75, 85, 95);\n\n  $keyframes: (\n    name: 'shake-#{($intensity / 1%)}',\n    $right: (transform: translateX($intensity)),\n    $left: (transform: translateX(-$intensity)),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a sliding animation.\n/// @param {Keyword} $state [in] - Whether to move to (`in`) or from (`out`) the element's default position.\n/// @param {Keyword} $direction [up] - Direction to move. Can be `up`, `down`, `left`, or `right`.\n/// @param {Number} $amount [100%] - Distance to move. Can be any CSS length unit.\n/// @return {Map} A keyframes map that can be used with the `generate-keyframes()` mixin.\n@function slide(\n  $state: in,\n  $direction: up,\n  $amount: 100%\n) {\n  $from: $amount;\n  $to: 0;\n  $func: 'translateY';\n\n  @if $direction == left or $direction == right {\n    $func: 'translateX';\n  }\n\n  @if $state == out {\n    $from: 0;\n    $to: $amount;\n  }\n\n  @if $direction == down or $direction == right {\n    @if $state == in {\n      $from: -$from;\n    }\n  } @else {\n    @if $state == out {\n      $to: -$to;\n    }\n  }\n\n  $keyframes: (\n    name: 'slide-#{$state}-#{$direction}-#{strip-unit($amount)}',\n    0: (transform: '#{$func}(#{$from})'),\n    100: (transform: '#{$func}(#{$to})'),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a wiggling animation.\n/// @param {Number} $intensity [7deg] - Intensity of the wiggle. Can be any CSS angle unit.\n/// @return {Map} A keyframes map that can be used with the `generate-keyframes()` mixin.\n@function wiggle($intensity: 7deg) {\n  $keyframes: (\n    name: 'wiggle-#{$intensity}',\n    (40, 50, 60): (transform: rotate($intensity)),\n    (35, 45, 55, 65): (transform: rotate(-$intensity)),\n    (0, 30, 70, 100): (transform: rotate(0)),\n  );\n\n  @return $keyframes;\n}\n","/// Creates a fade transition by adjusting the opacity of the element.\n/// @param {Keyword} $state [in] - State to transition to.\n/// @param {Number} $from [0] - Opacity to start at. Must be a number between 0 and 1.\n/// @param {Number} $to [1] - Opacity to end on.\n/// @param {Keyword} $duration [null] - Length (speed) of the transition.\n/// @param {Keyword|Function} $timing [null] - Easing of the transition.\n/// @param {Duration} $delay [null] - Delay in seconds or milliseconds before the transition starts.\n@mixin mui-fade(\n  $state: in,\n  $from: 0,\n  $to: 1,\n  $duration: null,\n  $timing: null,\n  $delay: null\n) {\n  $fade: fade($from, $to);\n\n  @include transition-start($state) {\n    @include transition-basics($duration, $timing, $delay);\n    @include -mui-keyframe-get($fade, 0);\n\n    transition-property: opacity;\n  }\n\n  @include transition-end($state) {\n    @include -mui-keyframe-get($fade, 100);\n  }\n}\n","/// Creates a hinge transition by rotating the element.\n/// @param {Keyword} $state [in] - State to transition to.\n/// @param {Keyword} $from [left] - Edge of the element to rotate from. Can be `top`, `right`, `bottom`, or `left`.\n/// @param {Keyword} $axis [edge] - Axis of the element to rotate on. Can be `edge` or `center`.\n/// @param {Length} $perspective [2000px] - Perceived distance between the viewer and the element. A higher number will make the rotation effect more pronounced.\n/// @param {Keyword} $turn-origin [from-back] - Side of the element to start the rotation from. Can be `from-back` or `from-front`.\n/// @param {Boolean} $fade [true] - Set to `true` to fade the element in or out simultaneously.\n/// @param {Duration} $duration [null] - Length (speed) of the transition.\n/// @param {Keyword|Function} $timing [null] - Easing of the transition.\n/// @param {Duration} $delay [null] - Delay in seconds or milliseconds before the transition starts.\n@mixin mui-hinge (\n  $state: in,\n  $from: left,\n  $axis: edge,\n  $perspective: 2000px,\n  $turn-origin: from-back,\n  $fade: map-get($motion-ui-settings, hinge-and-fade),\n  $duration: null,\n  $timing: null,\n  $delay: null\n) {\n  $hinge: hinge($state, $from, $axis, $perspective, $turn-origin);\n\n  @include transition-start($state) {\n    @include transition-basics($duration, $timing, $delay);\n    @include -mui-keyframe-get($hinge, 0);\n\n    @if $fade {\n      transition-property: transform, opacity;\n      opacity: if($state == in, 0, 1);\n    } @else {\n      transition-property: transform, opacity;\n    }\n  }\n\n  @include transition-end($state) {\n    @include -mui-keyframe-get($hinge, 100);\n\n    @if $fade {\n      opacity: if($state == in, 1, 0);\n    }\n  }\n}\n","/// Creates a scaling transition. A scale of `1` means the element is the same size. Larger numbers make the element bigger, while numbers less than 1 make the element smaller.\n/// @param {Keyword} $state [in] - State to transition to.\n/// @param {Number} $from [1.5] - Size to start at.\n/// @param {Number} $from [1] - Size to end at.\n/// @param {Boolean} $fade [true] - Set to `true` to fade the element in or out simultaneously.\n/// @param {Duration} $duration [null] - Length (speed) of the transition.\n/// @param {Keyword|Function} $timing [null] - Easing of the transition.\n/// @param {Duration} $delay [null] - Delay in seconds or milliseconds before the transition starts.\n@mixin mui-zoom(\n  $state: in,\n  $from: 1.5,\n  $to: 1,\n  $fade: map-get($motion-ui-settings, scale-and-fade),\n  $duration: null,\n  $timing: null,\n  $delay: null\n) {\n  $scale: zoom($from, $to);\n\n  @include transition-start($state) {\n    @include transition-basics($duration, $timing, $delay);\n    @include -mui-keyframe-get($scale, 0);\n\n    @if $fade {\n      transition-property: transform, opacity;\n      opacity: if($state == in, 0, 1);\n    } @else {\n      transition-property: transform, opacity;\n    }\n  }\n\n  @include transition-end($state) {\n    @include -mui-keyframe-get($scale, 100);\n\n    @if $fade {\n      opacity: if($state == in, 1, 0);\n    }\n  }\n}\n","/// Creates a sliding transition by translating the element horizontally or vertically.\n/// @param {Keyword} $state [in] - State to transition to.\n/// @param {Keyword} $direction [left] - Direction to slide to. Can be `up`, `right`, `down`, or `left`.\n/// @param {Length} $amount [100%] - Length of the slide as a percentage value.\n/// @param {Boolean} $fade [false] - Set to `true` to fade the element in or out simultaneously.\n/// @param {Duration} $duration [null] - Length (speed) of the transition.\n/// @param {Keyword|Function} $timing [null] - Easing of the transition.\n/// @param {Duration} $delay [null] - Delay in seconds or milliseconds before the transition starts.\n@mixin mui-slide (\n  $state: in,\n  $direction: left,\n  $amount: 100%,\n  $fade: map-get($motion-ui-settings, slide-and-fade),\n  $duration: null,\n  $timing: null,\n  $delay: null\n) {\n  $slide: slide($state, $direction, $amount);\n\n  // CSS Output\n  @include transition-start($state) {\n    @include transition-basics($duration, $timing, $delay);\n    @include -mui-keyframe-get($slide, 0);\n\n    @if $fade {\n      transition-property: transform, opacity;\n      opacity: if($state == in, 0, 1);\n    } @else {\n      transition-property: transform, opacity;\n    }\n\n    backface-visibility: hidden;\n  }\n\n  @include transition-end($state) {\n    @include -mui-keyframe-get($slide, 100);\n\n    @if $fade {\n      opacity: if($state == in, 1, 0);\n    }\n  }\n}\n","/// Creates a spinning transition by rotating the element. The `turn` unit is used to specify how far to rotate. `1turn` is equal to a 360-degree spin.\n/// @param {Keyword} $state [in] - State to transition to.\n/// @param {Boolean} $direction [cw] - Direction to spin. Should be `cw` (clockwise) or `ccw` (counterclockwise).\n/// @param {Number} $amount [0.75turn] - Amount to element the element.\n/// @param {Boolean} $fade [false] - Set to `true` to fade the element in or out simultaneously.\n/// @param {Duration} $duration [null] - Length (speed) of the transition.\n/// @param {Keyword|Function} $timing [null] - Easing of the transition.\n/// @param {Duration} $delay [null] - Delay in seconds or milliseconds before the transition starts.\n@mixin mui-spin(\n  $state: in,\n  $direction: cw,\n  $amount: 0.75turn,\n  $fade: map-get($motion-ui-settings, spin-and-fade),\n  $duration: null,\n  $timing: null,\n  $delay: null\n) {\n  $spin: spin($state, $direction, $amount);\n\n  @include transition-start($state) {\n    @include transition-basics($duration, $timing, $delay);\n    @include -mui-keyframe-get($spin, 0);\n\n    @if $fade {\n      transition-property: transform, opacity;\n      opacity: if($state == in, 0, 1);\n    } @else {\n      transition-property: transform, opacity;\n    }\n  }\n\n  @include transition-end($state) {\n    @include -mui-keyframe-get($spin, 100);\n\n    @if $fade {\n      opacity: if($state == in, 1, 0);\n    }\n  }\n}\n","// scss-lint:disable ImportantRule, SpaceAfterComma, SingleLinePerProperty\n\n@mixin -motion-ui-defaults {\n  transition-duration: map-get($motion-ui-speeds, default);\n  transition-timing-function: map-get($motion-ui-easings, default);\n}\n\n// Transitions\n// - - - - - - - - - - - - - - -\n@mixin motion-ui-transitions {\n  // Slide\n  .slide-in-down    { @include mui-slide(in,  down); }\n  .slide-in-left    { @include mui-slide(in,  right); }\n  .slide-in-up      { @include mui-slide(in,  up); }\n  .slide-in-right   { @include mui-slide(in,  left); }\n  .slide-out-down   { @include mui-slide(out, down); }\n  .slide-out-right  { @include mui-slide(out, right); }\n  .slide-out-up     { @include mui-slide(out, up); }\n  .slide-out-left   { @include mui-slide(out, left); }\n\n  // Fade\n  .fade-in  { @include mui-fade(in,  0, 1); }\n  .fade-out { @include mui-fade(out, 1, 0); }\n\n  // Hinge\n  .hinge-in-from-top      { @include mui-hinge(in,  top); }\n  .hinge-in-from-right    { @include mui-hinge(in,  right); }\n  .hinge-in-from-bottom   { @include mui-hinge(in,  bottom); }\n  .hinge-in-from-left     { @include mui-hinge(in,  left); }\n  .hinge-in-from-middle-x  { @include mui-hinge(in,  top,   center); }\n  .hinge-in-from-middle-y  { @include mui-hinge(in,  right, center); }\n  .hinge-out-from-top     { @include mui-hinge(out, top); }\n  .hinge-out-from-right   { @include mui-hinge(out, right); }\n  .hinge-out-from-bottom  { @include mui-hinge(out, bottom); }\n  .hinge-out-from-left    { @include mui-hinge(out, left); }\n  .hinge-out-from-middle-x { @include mui-hinge(out, top,   center); }\n  .hinge-out-from-middle-y { @include mui-hinge(out, right, center); }\n\n  // Scale\n  .scale-in-up    { @include mui-zoom(in,  0.5, 1); }\n  .scale-in-down  { @include mui-zoom(in,  1.5, 1); }\n  .scale-out-up   { @include mui-zoom(out, 1, 1.5); }\n  .scale-out-down { @include mui-zoom(out, 1, 0.5); }\n\n  // Spin\n  .spin-in     { @include mui-spin(in,  cw); }\n  .spin-out    { @include mui-spin(out, cw); }\n  .spin-in-ccw  { @include mui-spin(in,  ccw); }\n  .spin-out-ccw { @include mui-spin(out, ccw); }\n\n  // Transition Modifiers\n  // - - - - - - - - - - - - - - -\n\n  @each $name, $value in $motion-ui-speeds {\n    @if $name != default {\n      .#{$name} { transition-duration: $value !important; }\n    }\n  }\n\n  @each $name, $value in $motion-ui-easings {\n    @if $name != default {\n      .#{$name} { transition-timing-function: $value !important; }\n    }\n  }\n\n  @each $name, $value in $motion-ui-delays {\n    @if $name != default {\n      .#{$name}-delay { transition-delay: $value !important; }\n    }\n  }\n}\n\n// Animations\n// - - - - - - - - - - - - - - -\n@mixin motion-ui-animations {\n  .shake    { @include mui-animation(shake); }\n  .spin-cw  { @include mui-animation(spin); }\n  .spin-ccw { @include mui-animation(spin(ccw)); }\n  .wiggle   { @include mui-animation(wiggle); }\n\n  .shake,\n  .spin-cw,\n  .spin-ccw,\n  .wiggle {\n    animation-duration: map-get($motion-ui-speeds, default);\n  }\n\n  // Animation Modifiers\n  // - - - - - - - - - - - - - - -\n  .infinite { animation-iteration-count: infinite; }\n\n  @each $name, $value in $motion-ui-speeds {\n    @if $name != default {\n      .#{$name} { animation-duration: $value !important; }\n    }\n  }\n\n  @each $name, $value in $motion-ui-easings {\n    @if $name != default {\n      .#{$name} { animation-timing-function: $value !important; }\n    }\n  }\n\n  @each $name, $value in $motion-ui-delays {\n    @if $name != default {\n      .#{$name}-delay { animation-delay: $value !important; }\n    }\n  }\n}\n","  @import \"mixins/gradient\";\r\n  @import \"mixins/off-canvas-arrow\";","/* \r\n    Created on : Mar 5, 2015, 2:57:35 PM\r\n    Author     : laury\r\n*/\r\n\r\n@mixin gradient($from, $to) {\r\n    background: -webkit-linear-gradient(left, $from 5%, $to 100%);\r\n    background: -moz-linear-gradient(center top, $from 5%, $to 100%);\r\n    background: -ms-linear-gradient(left, $from 5%, $to 100%);\r\n}\r\n","@mixin off-canvas-arrow($direction: down, $color: white, $size: 20px) {\r\n  border-left: $size - 5 solid transparent;\r\n  border-right: $size - 5 solid transparent;\r\n   @if $direction == 'up' {\r\n    border-bottom: $size solid $color;\r\n    border-top: 0;\r\n    // if width is not passed, or empty do this\r\n   } @else {\r\n    border-top: $size solid $color;\r\n    border-bottom: 0;\r\n   }\r\n}\r\n@mixin off-canvas-point($direction: right, $color: red, $size: 1rem) {\r\n    @if $direction == 'down' {\r\n        content: '>';\r\n        transform: rotate(90deg);\r\n        color: $color;\r\n        height: $size;\r\n        width: $size;\r\n        font-size: $size;\r\n        font-weight: bold;\r\n        display: block;\r\n    } @if $direction == 'up' {\r\n        content: '>';\r\n        transform: rotate(-90deg);\r\n        color: $color;\r\n        height: $size;\r\n        width: $size;\r\n        font-size: $size;\r\n        font-weight: bold;\r\n        display: block;\r\n    } @else if $direction == 'right' {\r\n        content: '>';\r\n        transform: rotate(0deg);\r\n        color: $color;\r\n        height: $size;\r\n        width: $size;\r\n        font-size: $size;\r\n        font-weight: bold;\r\n        display: block;\r\n    }\r\n}","// Wordpress styles\r\n// Table of Contents\r\n// 01. Images\r\n\r\n\r\n// 01. Images\r\n// 02 Search and Post\r\n\r\nimg.aligncenter {\r\n    display: block;\r\n    clear: both;\r\n    float:none;\r\n    padding:0;\r\n    margin-left: auto;\r\n    margin-right: auto;\r\n    }\r\n\r\nimg.alignright {\r\n    padding: 0;\r\n    margin: 0 0 6px 11px;\r\n    display: inline;\r\n    }\r\n\r\nblockquote.alignleft,\r\nimg.alignleft,\r\n.wp-caption.alignleft {\r\n    margin: rem-calc(7) rem-calc(35) rem-calc(7) 0;\r\n}\r\n\r\nblockquote.alignright,\r\nimg.alignright,\r\n.wp-caption.alignright {\r\n    margin: rem-calc(7) 0 rem-calc(7) rem-calc(35);\r\n}\r\nimg.alignleft {\r\n    padding: 0;\r\n    display: inline;\r\n    }\r\nimg.alignleft, img.alignright, img.aligncenter, img.alignnone, div.wp-caption img {\r\n    border: 4px solid $white;\r\n    box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n    -webkit-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n    -moz-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n    -ms-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n}\r\n\r\n.alignright {\r\n    float: right;\r\n}\r\n.alignnone {\r\n    float: none;\r\n}\r\n.alignleft {\r\n    float: left;\r\n}\r\n.wp-caption {\r\n    background: $charcoal;\r\n    width: auto;\r\n}\r\n.wp-caption-text {\r\n    font-family: Open Sans, sans-serif;\r\n    font-size: 9px;\r\n    color: $white;\r\n    font-style: italic;\r\n    margin: 0;\r\n    padding: 0 5px;\r\n}\r\n.gallery-one-title {\r\n    height: 45px;\r\n    font-size: 0.8em;\r\n    text-align: center;\r\n    font-family: sans-serif;\r\n    padding: 5px;\r\n}\r\n.gallery-holder {\r\n    margin: 10px 0 20px 0;\r\n}\r\n@include breakpoint(small down) {\r\n    img.alignright, img.alignleft, img.aligncenter {\r\n        width: 70% !important;\r\n        display: block;\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        float: none;\r\n        text-align: center;\r\n    }\r\n    div.wp-caption.alignright, div.wp-caption.alignleft {\r\n        width: 44% !important;\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        float: none;\r\n        text-align: center;\r\n    }\r\n    div.wp-caption.aligncenter {\r\n        width: 85% !important;\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        float: none;\r\n        text-align: center;\r\n    }\r\n    div.wp-caption.alignnone {\r\n        width: 85% !important;\r\n        float: none;\r\n    }\r\n    div.wp-caption.alignright, div.wp-caption.alignleft, div.wp-caption.aligncenter {\r\n        width: 100%;\r\n    }\r\n}\r\n@include breakpoint(medium down) {\r\n    img.aligncenter, img.alignnone {\r\n        width: 70% !important;\r\n        display: block;\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        float: none;\r\n        text-align: center;\r\n    }\r\n    div.wp-caption.aligncenter {\r\n        width: 74% !important;\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        float: none;\r\n        text-align: center;\r\n    }\r\n    div.wp-caption.aligncenter {\r\n        width: 100%;\r\n    }\r\n    div.wp-caption.alignnone {\r\n        width: 73% !important;\r\n        float: none;\r\n    }\r\n}\r\n\r\n.wp-caption {\r\n    max-width: 100%;\r\n    margin: 10px 20px;\r\n    padding: 5px;\r\n//    background-color: #f3f3f3;\r\n//    border: 1px solid #ddd;\r\n    text-align: center;\r\n    img {\r\n        width: 100%;\r\n    }\r\n    p.wp-caption-text {\r\n        padding: 5px;\r\n        width: 100%;\r\n        margin: 0;\r\n        color: black;\r\n        font-size: 12px;\r\n    }\r\n    &.aligncenter {\r\n        margin: 10px auto;\r\n    }\r\n}\r\n// end Images\r\n// 02 Search and Post\r\n@include breakpoint(small only) {\r\n    #blog-posts-over {\r\n        padding: 0 !important;\r\n        margin: 0 !important;\r\n    }\r\n}\r\n.blog-posts-container {\r\n    margin: 30px 0 30px;\r\n    embed, iframe, object, video {\r\n        max-width: 100%;\r\n    }\r\n    a {\r\n        text-decoration: none;\r\n    }\r\n    header.entry-header {\r\n        h2.entry-title {\r\n            a {\r\n                color: #222;\r\n                margin-left: 0;\r\n            }\r\n        }\r\n    }\r\n    .wp-caption .wp-caption-text, .gallery-caption, .entry-caption {\r\n        overflow: hidden;\r\n        color: #757575;\r\n        font-size: 0.857143rem;\r\n        font-style: italic;\r\n        line-height: 2;\r\n    }\r\n    .date {\r\n        font-size: 12px;\r\n    }\r\n    footer.entry-meta {\r\n        color: #757575;\r\n        font-size: 0.928571rem;\r\n        line-height: 1.84615;\r\n        margin-top: 1.71429rem;\r\n        clear: both;\r\n        float: none;\r\n        margin-right: auto;\r\n    }\r\n    footer {\r\n        background: none;\r\n        clear: both;\r\n        padding: 15px 0 0;\r\n        position: relative;\r\n        text-align: center;\r\n    }\r\n}\r\n#content-wrapper {\r\n    h1, h2, h3, h4, h5, h6 {\r\n        clear: both;\r\n    }\r\n}\r\n.content {\r\n    background: #fff;\r\n/*    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);\r\n    -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);\r\n    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);*/\r\n    box-shadow: 3px 3px 8px -1px darkgrey;\r\n}\r\n#searchform_container {\r\n    margin-top: 20px;\r\n}\r\n#searchform {\r\n    max-width: 100%;\r\n    text-align: center;\r\n    div {\r\n        input.blogbutton {\r\n            @include gradient(#1999ce, #107098);\r\n        }\r\n    }\r\n}\r\n#blog-side-info {\r\n    border-left: 1px solid grey;\r\n    margin-top: 30px;\r\n    padding-left: 20px;\r\n    @include breakpoint(small only) {\r\n        text-align: center;\r\n    }\r\n}\r\n\r\n// End Search and Posts\r\n","// This document will contain all the styles that we want to apply to every\r\n//  site. Make sure this is placed before _structures (if that is still the\r\n//  primary css file).\r\n\r\nh1,h2,h3,h4,h5,h6 {\r\n    clear: both;\r\n}\r\n\r\n/* PLUGINS */\r\n/* Nextgen */\r\n.gallery li a img { // without this images will overlap each other at certain widths\r\n    display: block;\r\n    width: 100%;\r\n}\r\n.ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {\r\n    float: none !important;\r\n}\r\n.ngg-album-compact h4 .ngg-album-desc {\r\n    height: auto !important;\r\n//    font-family: $font-family-serif;\r\n    font-weight: 400;\r\n}\r\n.ngg-album-compact .album-meta-wrapper h4 a {\r\n    font-style: normal;\r\n}\r\n.album-meta-wrapper {\r\n    display: block;\r\n    height: 54px;\r\n    margin-bottom: 20px;\r\n}\r\n.ngg-glmalbums {\r\n    margin: 10px 0;\r\n    min-height: 260px;\r\n    @include breakpoint(small only) {\r\n        min-height: 180px;\r\n    }\r\n}\r\n.ngg-album-link {\r\n    text-align: center;\r\n}\r\n/* Ninja Forms */\r\n.ninja-forms-form-wrap {\r\n    max-width: 600px;\r\n    margin: 0 auto;\r\n    input[type=submit] {\r\n        @include button();\r\n        display: block;\r\n        margin: 0 auto;\r\n    }\r\n}\r\n/* For fixing cellphones not showing phone numbers because of /helpful/ auto-coloring */\r\na[href^=tel]{\r\n    color:inherit;\r\n    text-decoration:none;\r\n}","body {\r\n    background-size: cover;\r\n    .off-canvas-content {\r\n        background: none;\r\n    }\r\n}\r\n","header {\r\n    height: auto;\r\n    & #logo {\r\n        img {\r\n            margin-bottom: 15px;\r\n        }\r\n    }\r\n    & .search {\r\n        input {\r\n            height: 20px;\r\n            width: 167px;\r\n            padding: 0 8px;\r\n            margin: 13px 0px 0px 18px;\r\n            border-radius: 3px;\r\n            font-size: 10px;\r\n            color: $black;\r\n            display: inline-block;\r\n        }\r\n        a {\r\n            &.magnifying-glass {\r\n                font-size: 10em; /* This controls the size. */ \r\n                display: inline-block; \r\n                width: rem-calc(10); \r\n                height: rem-calc(10);\r\n                border: rem-calc(2) solid $d-blue; \r\n                position: relative; \r\n                border-radius: 0.35em;\r\n                margin: 0 0 0 -25px;\r\n                &:before {\r\n                    content: \"\"; \r\n                    display: inline-block; \r\n                    position: absolute; \r\n                    right: rem-calc(-7); \r\n                    bottom: rem-calc(-4); \r\n                    border-width: 0; \r\n                    background: $d-blue; \r\n                    width: rem-calc(8); \r\n                    height: rem-calc(2); \r\n                    -webkit-transform: rotate(45deg); \r\n                    -moz-transform: rotate(45deg);\r\n                    -ms-transform: rotate(45deg);\r\n                    transform: rotate(45deg);\r\n                }\r\n            }\r\n        }\r\n    }\r\n    #sec-nav {\r\n        position: relative;\r\n        text-align: left;\r\n        padding: 10px 0;\r\n        margin: 0 0 15px 45px;\r\n        ul {\r\n            margin: 0;\r\n            li {\r\n                display: inline;\r\n                a {\r\n                    font-size: 12px;\r\n                    color: $d-blue;\r\n                    padding: 0 5px;\r\n                    font-weight: bold;\r\n                }\r\n            }\r\n        }\r\n        & > ul > li {\r\n            position: relative;\r\n            &:before {\r\n                color: $aluminum;\r\n                content: \"|\";\r\n                position: absolute;\r\n                top: 2px;\r\n                left: -15px;\r\n                font-size: 14px;\r\n                font-weight: bold;\r\n                display:block;\r\n                padding: 0 10px;\r\n            }\r\n            &:first-child:before {\r\n                content: none;\r\n            }\r\n        }\r\n    }\r\n    img {\r\n        margin-left: 5px;\r\n    }\r\n    &.main {\r\n        margin-top: 15px;\r\n        a#big-logo {\r\n            padding-left: 15px;\r\n        }\r\n        a#contact {\r\n            color: $white;\r\n            text-decoration: underline;\r\n            font-weight: bold;\r\n            &:hover {\r\n                color: $orange;\r\n            }\r\n        }\r\n        #under {\r\n            margin-top: 20px;\r\n        }\r\n        .social {\r\n            padding-left: 12px !important;\r\n            a {\r\n                position: relative;\r\n                margin: 0 5px;\r\n                img {\r\n                    margin: 0;\r\n                }\r\n            }\r\n        }\r\n        span#phone {\r\n            font-size: rem-calc(24);\r\n            color: $white;\r\n            font-weight: bold;\r\n            padding-right: 20px;\r\n            letter-spacing: 0.1em;\r\n        }\r\n    }\r\n}\r\n",".contain-to-grid {\r\n    box-shadow: 0 5px 10px -1px $aluminum;\r\n    .top-bar {\r\n        height: 73px;\r\n        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);\r\n        margin-bottom: 10px;\r\n    }\r\n}\r\n.tab-bar {\r\n    .tab-bar-section.middle {\r\n//        left: 0;\r\n//        right: 2.8125rem;\r\n        text-align: right;\r\n    }\r\n}\r\n.top-bar{\r\n    border-top-left-radius: 10px;\r\n    border-top-right-radius: 9px;\r\n}\r\n.top-bar-left {\r\n    border-top-left-radius: 10px;\r\n    border-top-right-radius: 9px;\r\n    background: $green;\r\n    float: none;\r\n    margin-left: auto;\r\n    margin-right: auto;\r\n    display: inline-block;\r\n    height: 60px;\r\n    width: 100%;\r\n    line-height: 1;\r\n    ul{\r\n        li {\r\n            \r\n            a {\r\n                letter-spacing: 0.055em;\r\n            }\r\n            &:first-child {\r\n                border-top-left-radius: 10px;\r\n                a {\r\n                    border-top-left-radius: 8px;\r\n                }\r\n            }\r\n            &:not(.has-form):not(.active) {\r\n                & > a:not(.button) {\r\n                    background: transparent;\r\n                }\r\n            }\r\n            &.active:not(.has-form) {\r\n                a:not(.button) {\r\n                    line-height: 60px;\r\n                }\r\n            }\r\n//            ul.dropdown {\r\n//                border-bottom: 4px solid $orange;\r\n//                margin-top: -1px;\r\n//                li {\r\n//                    border-radius: 0;\r\n//                    border-top: 1px solid $white;\r\n//                    height: 35px;\r\n//                    a {\r\n//                        border-radius: 0;\r\n//                        font-size: rem-calc(16);\r\n//                        height: 35px;\r\n//                    }\r\n//                    &:not(.has-form) {\r\n//                        a:not(.button) {\r\n//                            line-height: rem-calc(32);\r\n//                        }\r\n//                    } \r\n//                }\r\n//            }\r\n//            &.drop-left {\r\n//                ul.dropdown {\r\n//                    padding-left: 21px;\r\n//                    padding-right: 250px;\r\n//                    top: 74px;\r\n//                    background: $white;\r\n//                    border-bottom-left-radius: 10px;\r\n//                    border-bottom-right-radius: 10px;\r\n//                    min-width: 500px;\r\n//                    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    -ms-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    -moz-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    li {\r\n//                        white-space: nowrap;\r\n//                        border-bottom: 1px solid #e7e7e8;\r\n//                        padding: 5px 0;\r\n//                        &.nav-img-container {\r\n//                            img {\r\n//                                position: absolute;\r\n//                                right: 20px;\r\n//                                top: 23px;\r\n//                                border: 6px solid #fdefd4;\r\n//                            }\r\n//                            border: none;\r\n//                        }\r\n//                        a {\r\n//                            padding-left: 0;\r\n//                            text-align: left;\r\n//                            font-size: 18px;\r\n//                            &:hover {\r\n//                                color: $d-blue;\r\n//                                text-shadow: 0 0 1px $green;\r\n//                                text-shadow: 1 0 1px $green;\r\n//                                text-shadow: 0 1 1px $green;\r\n//                                text-shadow: -1 0 1px $green;\r\n//                                text-shadow: 0 -1 1px $green;\r\n//                            }\r\n//                        }\r\n//                    }\r\n//                }\r\n//            }\r\n//            &.drop-right {\r\n//                ul.dropdown {\r\n//                    padding-left: 250px;\r\n//                    padding-right: 21px;\r\n//                    right: -1%;\r\n//                    left: auto;\r\n//                    top: 74px;\r\n//                    background: $white;\r\n//                    border-bottom-left-radius: 10px;\r\n//                    border-bottom-right-radius: 10px;\r\n//                    min-width: 500px;\r\n//                    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    -ms-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    -moz-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);\r\n//                    li {\r\n//                        white-space: nowrap;\r\n//                        background: $white;\r\n//                        text-align: right;\r\n//                        border-bottom: 1px solid #e7e7e8;\r\n//                        padding: 5px 0;\r\n//                        &.nav-img-container {\r\n//                            img {\r\n//                                position: absolute;\r\n//                                left: 20px;\r\n//                                top: 23px;\r\n//                                border: 6px solid #fdefd4;\r\n//                            }\r\n//                            border: none;\r\n//                        }\r\n//                        a {\r\n//                            padding-left: 0;\r\n//                            text-align: left;\r\n//                            font-size: 18px;\r\n//                            &:hover {\r\n//                                color: $d-blue;\r\n//                                text-shadow: 0 0 1px $green;\r\n//                                text-shadow: 1 0 1px $green;\r\n//                                text-shadow: 0 1 1px $green;\r\n//                                text-shadow: -1 0 1px $green;\r\n//                                text-shadow: 0 -1 1px $green;\r\n//                            }\r\n//                        }\r\n//                    }\r\n//                }\r\n//            }\r\n        }\r\n    }\r\n    & > ul > li {\r\n        position: relative;\r\n        &:before {\r\n            color: $white;\r\n            content: \"|\";\r\n            position: absolute;\r\n            top: 13px;\r\n            left: -15px;\r\n            font-size: 21px;\r\n            display:block;\r\n            padding: 0 10px;\r\n        }\r\n        &:first-child:before {\r\n            content: none;\r\n        }\r\n    }\r\n}\r\n.top-bar-section li:not(.has-form) a:not(.button){\r\n    padding: 0 1.25rem;\r\n}",".breadcrumbs {\r\n//    margin-top: 10px;\r\n    span {\r\n        a {\r\n            span {\r\n                color: $black;\r\n            }\r\n        }\r\n        span {\r\n            color: $green;\r\n        }\r\n    }\r\n}\r\n.blocks {\r\n    padding: 0 15px;\r\n    .blocks {\r\n        padding: 36px 15px;\r\n        img {\r\n            border: 4px solid $white;\r\n            box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n            -webkit-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n            -moz-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n            -ms-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);\r\n        }\r\n        h1 {\r\n            margin-top: 10px;\r\n        }\r\n        a.blocks-readmore {\r\n            padding: 5px 12px;\r\n            background: transparent;\r\n            color: $orange;\r\n            border: 1px solid $green;\r\n            display: inline-block;\r\n            transition: background 0.5s, color 0.5s; \r\n            -webkit-transition: background 0.5s, color 0.5s; \r\n            -moz-transition: background 0.5s, color 0.5s; \r\n            -ms-transition: background 0.5s, color 0.5s; \r\n            &:hover {\r\n                background: $green;\r\n                color: $white;\r\n            }\r\n        }\r\n    }\r\n}\r\nmain.page-inside {\r\n    #content-wrapper {\r\n        padding: 0 16px;\r\n    }\r\n}\r\n#content-bulk {\r\n    #con {\r\n        margin: 0;\r\n    }\r\n    h2 {\r\n        text-transform: uppercase;\r\n        font-size: 25px;\r\n    }\r\n    footer {\r\n        margin: 35px 0;\r\n        #address {\r\n            margin-top: 25px;\r\n            p {\r\n                font-size: 12px;\r\n                margin-top: 5px;\r\n            }\r\n            img {\r\n                margin: 0;\r\n                padding-right: 5px;\r\n            }\r\n            a {\r\n                font-size: 12px;\r\n            }\r\n        }\r\n        img {\r\n            box-shadow: none;\r\n        }\r\n    }\r\n}\r\n","#slideshow {\r\n    #caption {\r\n        background: rgba(0, 0, 0, 0.75);\r\n        color: $white;\r\n        margin-top: -51px;\r\n        p {\r\n            padding: 10px 5px;\r\n            font-size: 12px;\r\n            margin: 0;\r\n            text-align: right;\r\n        }\r\n    }\r\n}\r\n","  @import \"plugins/nextgen\";\r\n  @import \"plugins/gravityForms\";\r\n  @import \"plugins/events\";","/* NextGen Gallery */\r\n.ngg-gallery-thumbnail, \r\n.ngg-gallery-thumbnail-box {\r\n    float: none !important;\r\n}\r\n.gallery li a img { // without this images will overlap each other at certain widths\r\n    display: block;\r\n    width: 100%;\r\n}\r\n.ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {\r\n    float: none !important;\r\n}\r\n.ngg-album-compact h4 .ngg-album-desc {\r\n    height: auto !important;\r\n    font-family: $font-family-serif;\r\n    font-weight: 400;\r\n}\r\n.ngg-album-compact .album-meta-wrapper h4 a {\r\n    font-style: normal;\r\n}\r\n.album-meta-wrapper {\r\n    display: block;\r\n    height: 54px;\r\n    margin-bottom: 20px;\r\n}\r\n.ngg-glmalbums {\r\n    margin: 10px 0;\r\n}\r\n/* Ninja Forms */\r\n.ninja-forms-form-wrap {\r\n    max-width: 600px;\r\n    margin: 0 auto;\r\n    input[type=submit] {\r\n        @include button();\r\n        display: block;\r\n        margin: 0 auto;\r\n    }\r\n}\r\n\r\n/* End NextGen Gallery */\r\n","","#blog-posts-over article.ai1ec_event {\r\n    padding: 10px;\r\n}","\r\n.home-feed-post {\r\n    padding-bottom: 25px;\r\n//    @include breakpoint(small only) {\r\n//        > * {\r\n//            text-align: center;\r\n//        }\r\n//    }\r\n}\r\ninput[type=\"submit\"].blogbutton {\r\n    border-radius: 3px;\r\n    color: $white;\r\n    border: 2px solid $white;\r\n    font-weight: bold;\r\n    font-size: 13px;\r\n    padding: 2px 5px;\r\n    margin-top: -10px;\r\n    text-transform: uppercase;\r\n    &:hover {\r\n        cursor: pointer;\r\n        background: $white;\r\n        border: 2px solid #035C84;\r\n        color:  white;\r\n    }\r\n}\r\n#blog-posts-over article {\r\n    padding-top: 10px;\r\n    margin-bottom: 15px;\r\n    display: inline-block;\r\n    width: 100%;\r\n    .entry-header {\r\n        background: transparent;\r\n    }\r\n    #addthis_wrapper {\r\n        margin-top: -25px;\r\n    }\r\n    p {\r\n        padding-bottom: 15px;\r\n    }\r\n    a.read-more {\r\n        border: 2px solid $white;\r\n        font-weight: bold;\r\n        font-size: 13px;\r\n        padding: 0 3px;\r\n        text-transform: uppercase;\r\n        &:hover {\r\n            background: $white;\r\n            border: 2px solid #035C84;\r\n            color: #035C84;\r\n        }\r\n    }\r\n     .entry-header {\r\n        margin-bottom: 10px;\r\n        .entry-title {\r\n            margin-bottom: 0;\r\n        }\r\n        .meta.date {\r\n            font-size: 13px;\r\n            font-weight: bold;\r\n        }\r\n    }\r\n}\r\n/*#searchform div input &[type=\"text\"] {\r\n    width: 95%;\r\n}*/\r\n#blog-posts-over .entry-meta {\r\n    text-align: center;\r\n    color: #757575;\r\n    font-size: 12px;\r\n}\r\n#blog-posts-over > div {\r\n    margin: 25px 0;\r\n}\r\n#blog-side-info {\r\n    #searchform {\r\n        margin-bottom: 30px;\r\n    }\r\n    p {\r\n        margin-bottom: 0;\r\n    }\r\n}\r\n@include breakpoint(small only) {\r\n    #blog-side-info-wrapper {\r\n        float: none;\r\n        margin: 0 auto;\r\n        clear: both;\r\n    }\r\n    #blog-side-info {\r\n        padding-left: 0;\r\n        border-left: 0;\r\n        ul {\r\n            margin-left: 0;\r\n            margin-top:10px;\r\n        }\r\n        #searchform {\r\n            padding: 35px 0;\r\n            #s {\r\n                width: 100%;\r\n            }\r\n        }\r\n    }\r\n}\r\n#blog-side-info {\r\n    padding-right: 10px;\r\n    ul {\r\n        list-style-type: none;\r\n    }\r\n}","#sidebar {\r\n    padding-top: 25px;\r\n    background: #f2f9fc;\r\n    .row.collapse {\r\n        margin-left: 14px;\r\n    }\r\n    li {\r\n        list-style: none;\r\n        #calendar_wrap {\r\n            table#wp-calendar {\r\n                margin: 0 auto;\r\n            }\r\n        }\r\n    }\r\n    a {\r\n        font-size: 12px;\r\n    }\r\n    form {\r\n        margin: 0 12px 0 14px;\r\n        select {\r\n            padding: 0 rem-calc(8);\r\n            border-radius: 5px;\r\n            height: 25px;\r\n            margin: 0;\r\n            option {\r\n                font-size: 10px;\r\n            }\r\n        }\r\n    }\r\n    .small-block-grid-2 {\r\n        margin-top: 10px;\r\n        li {\r\n            padding: 0 rem-calc(10) rem-calc(10);\r\n            img {\r\n                border: 2px solid lightblue;\r\n            }\r\n        }\r\n        & > li:nth-of-type(2), & > li:nth-of-type(4) {\r\n            padding-left: 0;\r\n        }\r\n        & > li:nth-of-type(3), & > li:nth-of-type(4) {\r\n            padding-bottom: 20px;\r\n        }\r\n    }\r\n    h3 {\r\n        margin: 20px 0 0;\r\n    }\r\n    h1 {\r\n        margin: 0;\r\n        font-size: rem-calc(25);\r\n        text-transform: none;\r\n    }\r\n    input {\r\n        padding: 5px 0 5px 8px;\r\n        height: auto;\r\n        margin: 10px 0;\r\n    }\r\n    button {\r\n        border-radius: 2px;\r\n        padding: 0 10px;\r\n    }\r\n}\r\n#side-nav {\r\n    padding-top: 10px;\r\n    background: #f2f9fc;\r\n    h1 {\r\n        font-size: rem-calc(22);\r\n/*        margin: 5px 0 25px;*/\r\n    }\r\n    h4 {\r\n        font-weight: bold;\r\n        margin-left: 10px;\r\n    }\r\n    li {\r\n        list-style: none;\r\n    }\r\n    ul {\r\n        list-style: none;\r\n        margin: 0 0 20px;\r\n        li {\r\n            margin: 0 -15px;\r\n            padding: 5px 10px 5px 25px;\r\n            &:hover {\r\n                background: #81adc1;\r\n            }\r\n            a {\r\n                color: darkblue;\r\n                &:hover {\r\n                    color: $white;\r\n                }\r\n            }\r\n        }\r\n    }\r\n    h3 {\r\n        text-transform: none;\r\n        margin: 0;\r\n    }\r\n    input {\r\n        padding: 5px 0 5px 8px;\r\n        height: auto;\r\n        margin-bottom: 10px;\r\n    }\r\n    button {\r\n        border-radius: 2px;\r\n        padding: 0 10px;\r\n    }\r\n}\r\n#extra {\r\n    margin-top: 15px;\r\n    p {\r\n        line-height: 1.3;\r\n        &.title {\r\n            margin: 0;\r\n            &#last {\r\n                padding-top: 10px;\r\n            }\r\n        }\r\n        &#message {\r\n            text-transform: uppercase;\r\n            color: lightblue;\r\n            font-size: rem-calc(15);\r\n            margin: 40px 0;\r\n        }\r\n    }\r\n}\r\n.county-news {\r\n    font-weight: bold;\r\n}\r\n.current_page_item a {\r\n    font-weight: bold;\r\n}",".search-top {\r\n    .searchform {\r\n            text-align: left;\r\n            display: inline-block;\r\n            position: relative;\r\n            input.search-button {\r\n                width: 16px;\r\n                height: 13px;\r\n                top: 8px;\r\n                right: 7px;\r\n                position: absolute;\r\n                padding: 0;\r\n                margin-bottom: 0;\r\n            }\r\n        }\r\n        input[type=text] {\r\n            height: 25px;\r\n            width: 152px;\r\n            padding: 0 8px;\r\n            margin: 0 0 15px 0;\r\n            border-radius: 2px;\r\n            font-size: 12px;\r\n            color: $black;\r\n            display: inline-block;\r\n            border: none;\r\n            box-shadow: inset 0 0 2px 1px rgba($black, 0.5);\r\n        }\r\n}\r\naside.left-off-canvas-menu {\r\n    .searchform {\r\n        text-align: left;\r\n        display: inline-block;\r\n        position: relative;\r\n        float: none;\r\n        margin: 0 auto;\r\n        width: 100%;\r\n        input.search-button {\r\n            width: 16px;\r\n            height: 13px;\r\n            top: 8px;\r\n            right: 7px;\r\n            position: absolute;\r\n            padding: 0;\r\n            margin-bottom: 0;\r\n        }\r\n    }\r\n    input.search-input {\r\n        width: 100%;\r\n    }\r\n}","footer.main {\r\n    #res {\r\n        background: $green;\r\n        height: 238px;\r\n        margin-bottom: 36px;\r\n        padding: 10px 12px;\r\n        position: relative;\r\n        @media #{$small-only} {\r\n            height: auto;\r\n        }\r\n        #request {\r\n            border: 3px dashed $orange;\r\n    //        background: $green;\r\n            padding: 9px 0;\r\n            display: block;\r\n            height: 218px;\r\n            position: relative;\r\n            @media #{$small-only} {\r\n                height: auto;\r\n            }\r\n        }\r\n        #res-content {\r\n            h1 {\r\n                padding-left: 28px;\r\n                color: $dark-cream;\r\n                font-size: rem-calc(56);\r\n                position: relative;\r\n                z-index: 1;\r\n                margin: 0;\r\n            }\r\n            p {\r\n                padding-left: 28px;\r\n                color: $white;\r\n//                margin-bottom: 10px;\r\n            }\r\n            a#request-but {\r\n                margin-left: 28px;\r\n                padding: 2.5px 13px;\r\n                border: 2px solid $white;\r\n                color: $white;\r\n                background: transparent;\r\n                display: inline-block;\r\n                transition: background 0.5s, color 0.5s; \r\n                -webkit-transition: background 0.5s, color 0.5s; \r\n                -moz-transition: background 0.5s, color 0.5s; \r\n                -ms-transition: background 0.5s, color 0.5s;\r\n                &:hover {\r\n                    color: $green;\r\n                    background: $white;\r\n                }\r\n            }\r\n        }\r\n        #lantern {\r\n            position: absolute;\r\n            top: 42px;\r\n            left: 30px;\r\n        }\r\n        #camp {\r\n            position: absolute;\r\n            top: 20px;\r\n            right: 30px;\r\n            @media screen and (max-width:744px) {\r\n                display: none;\r\n            }\r\n        }\r\n    }\r\n    img#map {\r\n        padding-top: 5px;\r\n        display: inline-block;\r\n    }\r\n    .address {\r\n        padding-top: 4px;\r\n    }\r\n    img#compass {\r\n        padding-top: 5px;\r\n        display: inline-block;\r\n    }\r\n    .dir-contact {\r\n        padding-top: 5px;\r\n        a {\r\n            text-decoration: underline;\r\n        }\r\n    }\r\n}\r\n#footer_address {\r\n    span{\r\n        white-space: nowrap;\r\n    }\r\n}\r\n#connect {\r\n    padding-top: 20px;\r\n    background: #4c4d4f;\r\n    ul{\r\n        margin: 0;\r\n        list-style: none;\r\n        li {\r\n            background: none;\r\n            padding: 0 5px;\r\n            display: inline-block;\r\n            & > a {\r\n                display: block;\r\n                font-family: Open Sans, sans-serif;\r\n                font-size: 12px;\r\n                color: #fff;\r\n                padding: 20px 18px;\r\n                line-height: 1.2;\r\n            }\r\n            a {\r\n                &#current {\r\n                    background: $l-blue;\r\n                }\r\n            }\r\n        }\r\n    }\r\n}\r\n#compass{\r\n    float: right;\r\n}","#copyright {\r\n    padding: 35px 0 5px;\r\n    margin: 0 auto -40px;\r\n    float: none;\r\n    span {\r\n        font-size: rem-calc(12);\r\n    }\r\n    a {\r\n        color: $black;\r\n    }\r\n}\r\n#footer_address span.bullet,\r\n#copyright span.bullet {\r\n    margin: 0 5px;\r\n    @include breakpoint(small only) {\r\n        display: none !important;\r\n    }\r\n}\r\n","//1. Body\r\nbody {\r\n    .shadow-wrapper {\r\n        border-radius: 10px;\r\n        margin: -1px auto 140px;\r\n        background: $cream;\r\n        box-shadow: 0 0 15px 0px rgba($black, 0.5);\r\n        -ms-box-shadow: 0 0 15px 0px rgba($black, 0.5);\r\n        -moz-box-shadow: 0 0 15px 0px rgba($black, 0.5);\r\n        -webkit-box-shadow: 0 0 15px 0px rgba($black, 0.5);\r\n        max-width: 1200px;\r\n        \r\n    }\r\n}\r\n//2. Header\r\n//3. Fonts\r\n//4. Top Bar\r\n//5. Off-Canvas\r\n.off-canvas-wrap {\r\n    min-height: 100%;\r\n    .inner-wrap {\r\n        min-height: 100vh;\r\n        height: 100%;\r\n    }\r\n}\r\n//6. Main\r\n//7. Slideshow\r\n//8. Blog \r\n//9. Sidebar\r\n//10. Links\r\n//11. Footer\r\n//12. Copyright\r\n\r\n#example.element {\r\n    background-color: transparent;\r\n}\r\nh1 {\r\n    font-family: \"Dancing Script\";\r\n    font-weight: bold;\r\n    color: $orange;\r\n}\r\nh2 {\r\n    color: $green;\r\n}\r\nh3 {\r\n    color: $green;\r\n    font-weight: bold;\r\n}\r\nh4 {\r\n    color: $orange;\r\n    font-weight: bold;\r\n}\r\nh5 {\r\n    font-weight: bold;\r\n}","/* for the mobile menu */\r\naside.left-off-canvas-menu {\r\n//  background-color: rgba(0, 0, 0, 0.7);\r\n//  color: white;\r\n}\r\naside.left-off-canvas-menu li.page_item {\r\n  display: block;\r\n  overflow: hidden;\r\n  position: relative;\r\n  padding: 4px 8px;\r\n}\r\naside.left-off-canvas-menu .off-canvas-list ul li a {\r\n  line-height: 20px;\r\n  color: white;\r\n  border-bottom: 1px solid #b1b3b6;\r\n  background-repeat: no-repeat;\r\n  background-position: 3px 50%;\r\n}\r\naside.left-off-canvas-menu li.page_item_has_children a.toggle {\r\n  position: absolute;\r\n  right: 10px;\r\n  top: 5px;\r\n    text-decoration: none;\r\n    &:before {\r\n        @include off-canvas-point(right, $white, 17px);\r\n    }\r\n    &:hover {\r\n        background: transparent;\r\n    }\r\n}\r\naside.left-off-canvas-menu li.page_item_has_children a.toggle.open {\r\n    @include off-canvas-point(down, $white);\r\n}\r\naside.left-off-canvas-menu ul.children {\r\n  display: none;\r\n}\r\naside.left-off-canvas-menu .off-canvas-list ul li > ul li > a {\r\n  padding-left: 10px;\r\n  margin-left: 25px;\r\n  line-height: 18px;\r\n}\r\naside.left-off-canvas-menu ul.open {\r\n  display: block;\r\n}\r\n.left-off-canvas-menu {\r\n        list-style: none;\r\n        li {\r\n            a {\r\n                color: $white;\r\n                font-size: rem-calc(20);\r\n                line-height: 150%;\r\n                border-color: white;\r\n            }\r\n            a:hover {\r\n                color: $orange;\r\n            }\r\n            .dropdown {\r\n                list-style: none;\r\n            }\r\n        }\r\n        ul {\r\n            list-style: none;\r\n\r\n            padding: 10px 0;\r\n            li {\r\n                a {\r\n                    color: $white;\r\n                    background: transparent;\r\n                }\r\n                ul {\r\n                    list-style: none;\r\n                    li {\r\n                        a {\r\n                            width: 85%;\r\n                            display: block;\r\n                            white-space: pre-wrap;\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        }\r\n}\r\n.social-contact {\r\n    background: $cream;\r\n}\r\n.offcavas-social-list {\r\n//    @include inline-list;\r\n    margin-left: auto;\r\n}\r\n/* End Mobile Menu */\r\n"],"mappings":"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","names":[],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/favicon.ico b/favicon.ico
new file mode 100644 (file)
index 0000000..73d8985
Binary files /dev/null and b/favicon.ico differ
diff --git a/functions.php b/functions.php
new file mode 100644 (file)
index 0000000..e7dd182
--- /dev/null
@@ -0,0 +1,143 @@
+<?php
+require_once 'lib/menu-walker.php';
+require_once 'lib/navigation.php';
+
+$ancestorId   = null;
+$includePages = array();
+$frontPageId  = get_option('page_on_front');
+add_action('widgets_init', 'glm_quicksite_widget_init');
+
+if (!function_exists('glm_quicksite_widget_init')) {
+
+    function glm_quicksite_widget_init()
+    {
+        register_sidebar(array(
+            'name'        => __('Slideshow'),
+            'id'          => 'slideshow',
+            'description' => __('Meta Slider/Slideshow Area')
+        ));
+    }
+
+}
+
+/**
+ * Return the client info option for the given key
+ *
+ * @param type $name Name of the client info option to return
+ *
+ * @return string Option
+ */
+if (!function_exists('glm_get_clientinfo_option')) {
+    function glm_get_clientinfo_option($name)
+    {
+        $settings = get_option('glmclientinfo_settings');
+        $states   = get_option('glmclientinfo_states');
+        if ($name == 'stateFull' && $settings['state']) {
+            return $states[$settings['state']];
+        }
+        if ($name == 'state2Full' && $settings['state2']) {
+            return $states[$settings['state2']];
+        }
+        return ($settings && $settings[$name])
+            ? $settings[$name]
+            : null;
+    }
+}
+
+add_theme_support('post-thumbnails');
+set_post_thumbnail_size(120, 100, true);
+/**
+ * glm_site_scripts
+ *
+ * Add the scripts that we'll need for any home page stuff
+ */
+function glm_site_scripts()
+{
+//    wp_enqueue_script(
+//        'modernizr',
+//        get_template_directory_uri() . '/js/modernizr/modernizr.min.js'
+//    );
+    wp_enqueue_script('jquery');
+    wp_enqueue_script(
+        'glm_foundation',
+        get_template_directory_uri() . '/js/app.js',
+        'jquery',
+        '1.0',
+        true
+    );
+    if(is_front_page()) {
+    }
+
+}
+
+
+/* Header for posts*/
+function glm_get_header() {
+    echo '<div';
+
+    if (has_post_thumbnail()) {
+            $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full");
+            echo ' style="background-image: url('.$image_data[0].');height:0;padding:0;padding-bottom:20%;background-position:center center;background-size: 100%;background-repeat:no-repeat;max-height: 300px; "';
+    } else {
+            //echo ' style="background-image: url('.get_template_directory_uri().'/assets/default-header.gif);height:0;padding:0;padding-bottom:30%;background-position:center center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;"';
+            echo ' class="no-featured"';
+    }
+    echo '>';
+    echo '</div>';
+    echo '<div class="row">';
+    echo '<div class="small-12 columns">';
+    echo '</div>';
+    echo '</div>';
+}
+
+// // The code below is useful when you want the image to resize to
+//    if (has_post_thumbnail()) {
+//            $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full");
+//            echo '<img src="'.$image_data[0].'" style="no-repeat;max-height:400px;">';
+//    } else {
+//            echo '<img src="'.get_template_directory_uri().'/assets/default-header.gif" style="max-height:400px;">';
+//    }
+//    echo '<div class="row">';
+//    echo '<div class="small-12 columns">';
+//    echo '</div>';
+//    echo '</div>';
+
+add_action('wp_enqueue_scripts', 'glm_site_scripts');
+
+
+// Start of the Contextual/Highlight Search functions
+function mytheme_init() {
+   remove_action('thematic_searchloop', 'thematic_search_loop');
+}
+
+add_action('init', 'mytheme_init', 10);
+
+function wpse_setup_theme() {
+    add_image_size('glm-block-image', 290, 190,true);
+}
+
+add_action( 'after_setup_theme', 'wpse_setup_theme' );
+function mytheme_search_loop() {
+  while ( have_posts() ) : the_post(); ?>
+
+    <div id="post-<?php the_ID() ?>" class="<?php thematic_post_class() ?>">
+      <?php thematic_postheader(); ?>
+      <div class="entry-content">
+        <?php thematic_content(); /* We will replace this next */ ?>
+
+      </div>
+      <?php thematic_postfooter(); ?>
+  </div><!-- .post -->
+
+  <?php endwhile;
+}
+
+function is_post_type($type){
+    global $wp_query;
+    if($type == get_post_type($wp_query->post->ID)) return true;
+    return false;
+}
+
+add_action('thematic_searchloop', 'mytheme_search_loop');
+// End of the Contextual/Highlight Search functions
+?>
diff --git a/gulpfile.js b/gulpfile.js
new file mode 100644 (file)
index 0000000..29fe38c
--- /dev/null
@@ -0,0 +1,72 @@
+var gulp = require('gulp');
+var rename = require('gulp-rename');
+var sass = require('gulp-sass');
+var concat = require('gulp-concat');
+var copy = require('gulp-copy');
+var uglify = require('gulp-uglify');
+var jshint = require('gulp-jshint');
+var clean = require('gulp-clean');
+var maps = require('gulp-sourcemaps');
+var babel = require("gulp-babel");
+
+
+var sassPaths = [
+  'bower_components/foundation-sites/scss',
+  'bower_components/motion-ui/src'
+];
+
+gulp.task('sass', function() {
+  return gulp.src('scss/app.scss')
+    .pipe(maps.init())
+    .pipe(sass({ 
+      includePaths: sassPaths ,
+      style: 'compressed'
+
+  }))
+    .pipe(maps.write('.'))
+    .pipe(gulp.dest('css'));
+});
+
+gulp.task('copy-bower', function () {
+   return gulp.src('bower_components/**/')
+        .pipe(gulp.dest('js'));
+});
+
+gulp.task('lint', function (){
+    return gulp.src('js/custom/*.js')
+        .pipe(jshint())
+        .pipe(jshint.reporter('default'));
+});
+
+gulp.task("concat-uglify", function (){
+    return gulp.src(['js/custom/**/*.js', 'js/foundation-sites/dist/foundation.min.js'])
+        .pipe(babel({"compact": true}))
+        .pipe(concat('app.js'))
+        .pipe(uglify())
+        .pipe(gulp.dest('js'));
+});
+
+//gulp.task('uglify-modernizr', function () {
+  //  return gulp.src('js/modernizr/modernizr.js')
+  //    .pipe(uglify())
+  //  .pipe(rename('modernizr.min.js'))
+  //.pipe(gulp.dest('js/modernizr'));
+//});
+
+gulp.task('clean', function (){
+   return gulp.src(['js/foundation-sites', 'js/jquery', 'js/motion-ui', 'js/what-input', 'js/app.js','css/app.css','css/app.css.map'], {read: false})
+        .pipe(clean());
+});
+
+gulp.task('watch', function () {
+  gulp.watch('js/custom/**/*.js',['concat-uglify', 'lint']);
+  gulp.watch('scss/**/*.{scss,sass}', ['sass','concat-uglify']);
+  gulp.watch('gulpfile.js');
+});
+
+gulp.task('build', ["sass","copy-bower"]);
+
+gulp.task('runwatch', ["sass", "concat-uglify","lint"]);
+
+gulp.task('default', ["runwatch","watch"]);
+
diff --git a/index.php b/index.php
new file mode 100644 (file)
index 0000000..17c736c
--- /dev/null
+++ b/index.php
@@ -0,0 +1,670 @@
+<?php
+/*
+ *  1. Body
+ *  2. Header
+ *  3. Off Canvas
+ *  4. Top Bar
+ *  5. Main
+ *   5.1. Front Page
+ *   5.2 Blog Home Page
+ *   5.3 Blog Archive Page
+ *   5.4 Blog Single Post
+ *   5.5 Search Results
+ *   5.6 Interior Page
+ *  6. Footer
+ *  7. Copyright
+ */
+?>
+
+<?php
+/*
+ * 1. Body
+ * The first set up layer
+ */
+?>
+
+<!doctype html>
+<html class="no-js" lang="en">
+    <?php
+    /*
+     * Site header meta information 
+     */
+    ?>
+<editor-fold defaultstate="collapsed">
+  <head>
+    <meta charset="utf-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <title><?php wp_title(); ?></title>
+    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css">
+     <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri() ; ?>/favicon.ico">  
+    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
+    <link href='https://fonts.googleapis.com/css?family=Dancing+Script:700' rel='stylesheet' type='text/css'>
+    <?php wp_head(); ?>
+  </head>
+</editor-fold>
+  <body>
+      <div class="off-canvas-wrapper">
+        <div class="off-canvas-wrapper-inner" data-off-canvas-wrapper>
+            <div class="off-canvas-content" data-off-canvas-content>
+                
+<?php
+/*
+ * 2. Header
+ * The first visible items. Top of the Page
+ */
+?>
+<editor-fold defaultstate="collapsed">
+                    <header class="main">
+                        <div class="row">
+                            <div class="small-12 medium-6 columns">
+                                <a id="big-logo" href="<?php bloginfo('url')?>"><img src="<?php bloginfo('template_url');?>/assets/camp-petosega-logo.png"></a>
+                            </div>
+                            <div class="medium-6 columns show-for-medium">
+                                <div class="row">
+                                    <div class="medium-12 columns text-right">
+                                        <div class="row medium-uncollapse large-collapse">
+                                            <div class="medium-6 large-8 columns">
+                                                <a id="contact" href="<?php echo get_permalink(106); ?>">Contact</a>
+                                            </div>
+                                            <div class="medium-6 large-4 columns search-top show-for-medium">
+                                                <?php get_template_part('parts/search-form');
+                                                ?>
+                                            </div>
+                                        </div>
+                                    </div>
+                                </div>
+                                <div id="under" class="row collapse">
+                                    <div class="medium-9 columns text-right">
+                                        <span id="phone">231-347-6536</span>
+                                    </div>
+                                    <div class="large-3 columns social show-for-large">
+                                        <a href="https://www.facebook.com/camppetosega/" target="_blank"><img src="<?php bloginfo('template_url');?>/assets/facebook-icon.png"></a>
+                                        <a href="https://www.youtube.com/user/gappold" target="_blank"><img src="<?php bloginfo('template_url');?>/assets/youtube-icon.png"></a>
+                                    </div>
+                                </div>
+                            </div>
+                        </div>
+<!--
+                        <div class="search-top show-for-large-up">
+                            <?php //get_template_part('parts/search-form');?>
+                        </div>
+-->
+                    </header>   
+</editor-fold>
+                <div class="shadow-wrapper"> 
+<?php
+/*  
+ * 2. /Header
+ * End of the Header
+ */
+?>
+<?php
+/*
+ * 3. Off Canvas
+ * The main navigation for the site. Bar Navigantion
+ */
+?>
+<editor-fold defaultstate="collapsed">
+                    <div class="title-bar" data-responsive-toggle="main-menu" data-hide-for="medium">
+                        <div class="title-bar-left">
+                            <button class="menu-icon" type="button" data-data-open="offCanvasLeft" data-toggle></button>
+                            <span class="title-bar-title">Menu</span>
+                        </div>
+                        <div class="title-bar-right">
+                            <span class="title-bar-title"></span>
+                            <button class="menu-icon" type="button" data-open="offCanvasRight"></button>
+                        </div>
+                    </div>
+                    <div class="off-canvas position-left" id="offCanvasLeft" data-off-canvas>
+                        <?php glm_theme_mobile_off_canvas(); ?>
+                        <?php get_template_part('parts/search-form');?>
+                        <div class="social-contact">
+                            <ul class="offcavas-social-list horizontal">
+                                <li><a href="https://www.facebook.com/camppetosega/" target="_blank"><img src="<?php bloginfo('template_url');?>/assets/facebook-icon.png"></a></li>
+                                <li><a href="https://www.youtube.com/user/gappold" target="_blank"><img src="<?php bloginfo('template_url');?>/assets/youtube-icon.png"></a></li>
+                            </ul>
+                            <?php if (function_exists('glm_get_clientinfo_option')) :?>
+                                <ul class="vertical">
+                                    <li><?php echo glm_get_clientinfo_option('businessName');?></li>
+                                    <?php if (glm_get_clientinfo_option('address')):?>
+                                        <li><?php echo glm_get_clientinfo_option('address');?></li>
+                                        <li><?php echo glm_get_clientinfo_option('city');?>, <?php echo glm_get_clientinfo_option('state');?>
+                                            <?php echo glm_get_clientinfo_option('zip');?></li>
+                                    <?php endif;?>
+                                    <?php if (glm_get_clientinfo_option('address2')):?>
+                                        <li><?php echo glm_get_clientinfo_option('address2');?></li>
+                                        <li><?php echo glm_get_clientinfo_option('city2');?>, <?php echo glm_get_clientinfo_option('state2');?>
+                                            <?php echo glm_get_clientinfo_option('zip2');?></li>
+                                    <?php endif;?>
+                                    <?php if (glm_get_clientinfo_option('phone')) :?>
+                                        <li><?php echo glm_get_clientinfo_option('phone');?></li>
+                                    <?php endif;?>
+                                    <?php if (glm_get_clientinfo_option('phone2')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php echo glm_get_clientinfo_option('phone2');?></span>
+                                    <?php endif;?>
+                                    <?php if (glm_get_clientinfo_option('email')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php echo glm_get_clientinfo_option('email');?></span>
+                                    <?php endif;?>
+                                    <?php if (glm_get_clientinfo_option('fax')) :?>
+                                        <li><?php echo glm_get_clientinfo_option('fax');?></li>
+                                    <?php endif;?>
+                                    <?php if (glm_get_clientinfo_option('extra')) :?>
+                                        <li><?php echo glm_get_clientinfo_option('extra');?></li>
+                                    <?php endif;?>
+                                </ul>
+                            <?php endif;?>
+                        </div>    
+                    </div>
+                    
+                    <div class="off-canvas positon-right" id="offCanvasRight" data-off-canvas data-positon="right">
+                        
+                    </div>
+                            
+                    
+</editor-fold>
+<?php
+/*
+ * 3. /Top Bar
+ * End of main navigation. End of Bar Navigation
+ */
+?>
+<?php
+/*
+ * 4. Off Canvas
+ * Hidden Off Canvas Menu
+ */
+?>
+<editor-fold defaultstate="collapsed">
+                    <div id="mainmenu" class="top-bar">
+                        <div class="top-bar-left">
+                            <ul class="dropdown menu expanded" data-dropdown-menu>
+                                <li><a href="<?php echo get_permalink(11); ?>">Reservations</a></li>
+                                <li><a href="<?php echo get_permalink(13); ?>">Campsites & Cabins</a></li>
+                                <li><a href="<?php echo get_permalink(15); ?>">Facility Rentals</a></li>
+                                <li><a href="<?php echo get_permalink(17); ?>">Location</a></li>
+                                <li><a href="<?php echo get_permalink(19); ?>">Events</a></li>
+                                <li class="has-submenu"><a href="<?php echo get_permalink(21); ?>">About</a>
+                                    <ul class="menu submenu vertical">
+                                        <li><a href="<?php echo get_permalink(39); ?>">History</a></li>
+                                        <li><a href="<?php echo get_permalink(41); ?>">Gift Shop</a></li>
+                                    </ul>
+                                </li>
+                            </ul>
+                        </div>
+                        
+                    </div>                    
+                        
+</editor-fold>
+<?php
+/*
+ * 4. /Off Canvas 
+ * End of Off Canvas Menu
+ */
+?>
+
+<?php
+/*
+ * 5. Main
+ * Primary Content Area
+ */
+?>
+<?php
+/*
+ * 5.1. Front Page
+ * Front Page Area
+ */
+?>
+<editor-fold defaultstate="collapsed">
+<?php if (is_front_page()) { ?>
+                    <main class="page-front">
+                        <div class="row">
+                            <?php get_template_part('parts/slide-show');?>
+                        </div>
+                        <div id="content-wrapper">
+                            <div class="row">
+                                <?php get_template_part('parts/main-content');?>
+                            </div>
+                            <div class="row" data-equalizer data-options="equalize_on_stack: false">
+                                <?php
+                                get_template_part('parts/glm-blocks');
+                                ?>
+                            </div>
+                        </div>
+                    </main>
+<?php } ?>                        
+<?php
+/*
+ * 5.1. /Front Page
+ * End of Front Page Area
+ */
+?>
+</editor-fold>                        
+<?php
+/*
+ * 5.2 Blog Home Page
+ * Home Page for Posts
+ */
+?>
+<editor-fold defaultstate="collapsed">    
+<?php if (is_home()) { ?>
+                    <main class="blog-home">
+                <!--    <article <?php // post_class() ?> id="interior-featured">
+                        <?php // GLM_get_header(); ?>
+                    </article> -->
+                        <div class="row">
+                            <?php get_template_part('parts/blog-content-area'); ?>
+                            <?php get_template_part('parts/blog-sidebar-r'); ?>
+                        </div>
+                    </main>
+<?php } ?>                        
+<?php
+/*
+ * 5.2 /Blog Home Page
+ * End of Home Page for Posts
+ */
+?>
+</editor-fold>
+<?php
+/*
+ * 5.3 Blog Archive Page
+ * Page for a selected set of Posts
+ */
+?>
+<editor-fold defaultstate="collapsed">    
+<?php if (is_archive()) { ?>
+                    <main class="blog-archive">
+                        <div class="row">
+                            <?php get_template_part('parts/blog-content-area'); ?>
+                            <?php get_template_part('parts/blog-sidebar-r'); ?>
+                        </div>
+                    </main>
+<?php } ?>
+<?php
+/*
+ * 5.3 /Blog Archive Page
+ * Page for a selected set of Posts
+ */
+?>
+</editor-fold>
+<?php
+/*
+ * 5.4 Blog Single Post
+ * Page for a Post
+ */
+?>
+<editor-fold defaultstate="collapsed">
+<?php if (is_single()) { ?>
+                    <main class="blog-single">
+                        <div class="row">
+                            <div id="blog-posts-over" class="small-12 medium-9 columns">
+                                <?php if(have_posts()) : while(have_posts()): the_post();?>
+                                <div class="row blog-post-container">
+                                    <div class="small-11 small-centered columns">
+                                        <div class="row">
+                                            <div class="small-12 columns">
+                                                <?php get_template_part('parts/blog-text'); ?>
+                                                <?php if ( comments_open() || get_comments_number() ) :
+                                                comments_template();
+                                                endif; ?>
+                                            </div>
+                                        </div>
+                                    </div>
+                                </div>
+                                <?php endwhile; ?>
+                                <?php else: ?>
+                                <div id="post-404" class="noposts">
+                                    <p><?php _e('Sorry, no results were found.');?></p>
+                                </div><!-- /#post-404 -->
+                                <?php endif;?>
+                            </div>
+                            <?php get_template_part('parts/blog-sidebar-r'); ?>
+                        </div>
+                    </main>    
+<?php } ?>                        
+<?php
+/*
+ * 5.4 /Blog Single Post
+ * End of a Post
+ */
+?>
+</editor-fold>
+<?php
+/*
+ * 5.5 Search Result Page
+ * Page for Search Results
+ */
+?>
+<editor-fold defaultstate="collapsed">
+<?php if (is_search()) { ?>
+        <main class="search-results">
+            <div class="row">
+                <?php if (get_search_query() == "") { ?>
+                <br><h2 class="search-result-header small-12 columns">Please enter a query in the search box. </h2>
+                <?php } else { ?>
+                <br><h2 class="search-result-header small-12 columns">Search Results for "<?php echo get_search_query(); ?>"</h2>
+            </div>
+
+            <div class="row">
+                <div id="blog-posts-over" class="small-12 columns">
+                    <?php if(have_posts()) : while(have_posts()): the_post();?>
+                        <?php if (is_search() && (isset($_GET['searchType']) && $_GET['searchType'] == 'blog') && ($post->post_type=='page')) continue; ?>
+                    <div class="row content search-result-container">
+                        <div class="small-11 small-centered columns">
+                            <article id="<?php the_ID()?>" <?php post_class()?>>
+                                <header class="entry-header">
+                                    <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
+                                    <span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
+                                </header>
+
+
+                        <!-- Start of the Contextual/Highlight Search -->
+                                        <?php
+                                        // Configuration
+                                        $max_length = 400; // Max length in characters
+                                        $min_padding = 30; // Min length in characters of the context to place around found search terms
+
+                                        // Load content as plain text
+                                        global $wp_query, $post;
+                                        $content = (!post_password_required($post) ? strip_tags(preg_replace(array("/\r?\n/", '@<\s*(p|br\s*/?)\s*>@'), array(' ', "\n"), apply_filters('the_content', $post->post_content))) : '');
+
+                                        // Search content for terms
+                                        $terms = $wp_query->query_vars['search_terms'];
+                                        if ( preg_match_all('/'.str_replace('/', '\/', join('|', $terms)).'/i', $content, $matches, PREG_OFFSET_CAPTURE) ) {
+                                            $padding = max($min_padding, $max_length / (2*count($matches[0])));
+
+                                          // Construct extract containing context for each term
+                                          $output = '';
+                                          $last_offset = 0;
+                                          foreach ( $matches[0] as $match ) {
+                                            list($string, $offset) = $match;
+                                            $start  = $offset-$padding;
+                                            $end = $offset+strlen($string)+$padding;
+                                            // Preserve whole words
+                                            while ( $start > 1 && preg_match('/[A-Za-z0-9\'"-]/', $content{$start-1}) ) $start--;
+                                            while ( $end < strlen($content)-1 && preg_match('/[A-Za-z0-9\'"-]/', $content{$end}) ) $end++;
+                                            $start = max($start, $last_offset);
+                                            $context = substr($content, $start, $end-$start);
+                                            if ( $start > $last_offset ) $context = '...'.$context;
+                                            $output .= $context;
+                                            $last_offset = $end;
+                                          }
+
+                                          if ( $last_offset != strlen($content)-1 ) $output .= '...';
+                                        } else {
+                                          $output = $content;
+                                        }
+
+                                        if ( strlen($output) > $max_length ) {
+                                          $end = $max_length-3;
+                                          while ( $end > 1 && preg_match('/[A-Za-z0-9\'"-]/', $output{$end-1}) ) $end--;
+                                          $output = substr($output, 0, $end) . '...';
+                                        }
+
+                                        // Highlight matches
+                                        $context = nl2br(preg_replace('/'.str_replace('/', '\/', join('|', $terms)).'/i', '<strong>$0</strong>', $output));
+                                        ?>
+
+                                        <p class="search_result_context">
+                                          <?php echo $context ?>
+                                        </p>
+                                        <p>
+                                          <a href="<?php the_permalink() ?>" rel="bookmark">Read this entry</a>
+                                        </p>
+                        <!-- End of the Contextual/Highlight Search -->
+
+                                <?php //echo (function_exists('the_advanced_excerpt')) ? the_advanced_excerpt(): the_excerpt(); ?>
+                                <footer class="entry-meta small-12 medium-6 medium-push-3 center">
+                                    <?php
+                                    if (has_category()) {
+                                        $post_categories = wp_get_post_categories( get_the_ID() );
+                                        $cats = array();
+                                        echo 'This entry was posted ';
+                                        echo 'in';
+                                        foreach($post_categories as $c){
+                                            $cat = get_category( $c );
+                                            $cats[] = array( 'name' => $cat->name, 'slug' => $cat->slug );
+                                            echo ', <a rel="category" title="View all posts in '. $cat->name . ' " href="'. $cat->slug .'">'. $cat->name .'</a>';
+                                        }
+                                        echo '.';
+                                    }
+                                    ?>
+                                </footer>
+                            </article>
+                        </div>
+                    </div>
+                    <?php endwhile; ?>
+                    <div class="navigation">
+                        <span class="newer"><?php previous_posts_link(__('« Newer','example')) ?></span> <span class="older"><?php next_posts_link(__('Older Â»','example')) ?></span>
+                    </div><!-- /.navigation -->
+                    <?php else: ?>
+                    <div id="post-404" class="noposts">
+                        <p><?php _e('Sorry, no results were found.');?></p>
+                    </div><!-- /#post-404 -->
+                    <?php endif;?>
+                </div>
+
+                    <?php } ?> <!-- end empty query check -->
+                </div>
+        </main>
+<?php } ?>                  
+<?php
+/*
+ * 5.5 /Search Result Page
+ * End of Search Results
+ */
+?>
+</editor-fold>
+<?php
+/*
+ * 5.6 Interior Page
+ * Interior content Pages
+ */
+?>
+<editor-fold defaultstate="collapsed">
+<?php if (is_page()) { ?>
+                    <main class="page-inside">
+                        <div class="feature-img">
+                            <?php echo glm_get_header(); ?>
+                        </div>
+                        <div id="content-wrapper">
+                            <div class="row">
+                                <?php if(function_exists('bcn_display') && !is_front_page())
+                                {
+                                    echo "<div class=\"breadcrumbs\">";
+                                    bcn_display();
+                                    echo "</div>";
+                                }
+                                ?>
+                            </div>
+                            <div class="row">
+                                <?php get_template_part('parts/main-content');?>
+                <!--
+                                <div class="small-12 medium-6 large-4 columns small-text-center medium-text-left">
+                                    <?php //get_sidebar(); ?>
+                                </div>
+                -->
+                            </div>
+                        </div>
+                    </main>    
+<?php } ?>    
+<?php
+/*
+ * 5.6 /Interior Page
+ * End of Interior Pages
+ */
+?>
+</editor-fold>
+                    
+<?php
+/*
+ * 5. /Main
+ * End of Primary Content Area
+ */
+?>
+<?php
+/*
+ * 6. Footer
+ * Footer Area, Bottom of the page.
+ */
+?>
+<editor-fold defaultstate="collapsed">
+                        <footer class="main">
+                            <?php if (is_active_sidebar('sidebar-f')) :?>
+                                <?php dynamic_sidebar('sidebar-f');?>
+                            <?php endif;?>
+                            <div id="res">
+                                <div id="request" class="row">
+                                    <div id="lantern" class="show-for-large">
+                                        <img src="<?php bloginfo('template_url');?>/assets/lantern.png">
+                                    </div>
+                                    <div id="res-content" class="small-12 large-7 large-offset-1 columns">
+                                        <h1>Request A Reservation</h1>
+                                        <p>Your perfect site is waiting... <br> Request a reservation now!</p>
+                                        <a id="request-but" href="<?php echo get_permalink(11); ?>">Request Now!</a>
+                                    </div>
+                                    <div id="camp">
+                                        <img src="<?php bloginfo('template_url');?>/assets/camping-icon.png">
+                                    </div>
+                                </div>
+                            </div>
+                            <div class="row">
+                                <div class="small-12 small-centered columns">
+                                    <div class="row">
+                                        <div class="small-12 medium-4 columns text-center">
+                                            <a href="<?php bloginfo('url');?>"><img src="<?php bloginfo('template_url');?>/assets/camp-petosega-footer-logo.png"></a>
+                                        </div>
+                                        <div id="footer_address" class="medium-4 columns show-for-medium-up">
+                                        <?php if (function_exists('glm_get_clientinfo_option')) :?>
+                                            <div class="row collapse">
+                                                <div class="medium-12 large-3 columns">
+                                                    <img id="map" src="<?php bloginfo('template_url');?>/assets/map-icon.png">
+                                                </div>
+                                                <div class="small-12 large-9 columns address">
+                                                    <?php if (glm_get_clientinfo_option('address')):?>
+                                                        <span><?php echo glm_get_clientinfo_option('address');?></span><br>
+                                                        <span><?php echo glm_get_clientinfo_option('city');?>, <?php echo glm_get_clientinfo_option('state');?>
+                                                            <?php echo glm_get_clientinfo_option('zip');?></span>
+                                                    <?php endif;?>
+                                                </div>
+                                            </div>
+                                        </div>
+                                        <div class="medium-4 columns show-for-medium-up emailFooter">
+                                            <div class="row collapse">
+                                                <div class="small-12 medium-2 medium-offset-1 columns compassIcon">
+                                                    <img id="compass" src="<?php bloginfo('template_url');?>/assets/compass-icon.png">
+                                                </div>
+                                                <div class="small-12 medium-8 medium-offset-1 columns dir-contact">
+                                                    <?php if (glm_get_clientinfo_option('phone')) :?>
+                                                        <span><?php echo glm_get_clientinfo_option('phone');?></span>
+                                                    <?php endif;?>
+                                                    <?php if (glm_get_clientinfo_option('email')) :?>
+                                                            <a href="mailto:camppetosega@emmetcounty.org"><span><br>Email</span></a>
+                                                    <?php endif;?>
+                                                </div>
+                                            </div>
+
+                                            <?php if (glm_get_clientinfo_option('fax')) :?>
+                                                <span class="bullet"> &#8226; </span><span><?php echo glm_get_clientinfo_option('fax');?></span>
+                                            <?php endif;?>
+                                            <?php if (glm_get_clientinfo_option('extra')) :?>
+                                                <span class="bullet"> &#8226; </span><span><?php echo glm_get_clientinfo_option('extra');?></span>
+                                            <?php endif;?>
+                                            <?php endif;?>
+                                        </div>
+                                    </div>
+                                </div>
+<!--
+                                <div id="footer_address" class="small-centered small-11 medium-6 columns">
+                                    <?php //if (function_exists('glm_get_clientinfo_option')) :?>
+                                    <h2><?php //echo glm_get_clientinfo_option('businessName');?></h2>
+                                    <?php //if (glm_get_clientinfo_option('address')):?>
+                                        <span><?php //echo glm_get_clientinfo_option('address');?></span>
+                                        <span class="bullet"> &#8226; </span>
+                                        <span><?php //echo glm_get_clientinfo_option('city');?>, <?php //echo glm_get_clientinfo_option('state');?>
+                                            <?php //echo glm_get_clientinfo_option('zip');?></span>
+                                    <?php //endif;?>
+                                    <?php //if (glm_get_clientinfo_option('address2')):?>
+                                        <span class="bullet"> &#8226; </span>
+                                        <span><?php //echo glm_get_clientinfo_option('address2');?></span>
+                                        <span class="bullet"> &#8226; </span>
+                                        <span><?php //echo glm_get_clientinfo_option('city2');?>, <?php //echo glm_get_clientinfo_option('state2');?>
+                                            <?php //echo glm_get_clientinfo_option('zip2');?></span>
+                                    <?php //endif;?>
+                                    <?php //if (glm_get_clientinfo_option('phone')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php //echo glm_get_clientinfo_option('phone');?></span>
+                                    <?php //endif;?>
+                                    <?php //if (glm_get_clientinfo_option('phone2')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php //echo glm_get_clientinfo_option('phone2');?></span>
+                                    <?php //endif;?>
+                                    <?php //if (glm_get_clientinfo_option('email')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php //echo glm_get_clientinfo_option('email');?></span>
+                                    <?php //endif;?>
+                                    <?php //if (glm_get_clientinfo_option('fax')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php //echo glm_get_clientinfo_option('fax');?></span>
+                                    <?php //endif;?>
+                                    <?php //if (glm_get_clientinfo_option('extra')) :?>
+                                        <span class="bullet"> &#8226; </span><span><?php //echo glm_get_clientinfo_option('extra');?></span>
+                                    <?php //endif;?>
+                                    <?php //endif;?>
+                                </div>
+-->
+                            </div>
+                        </footer>
+<?php
+//  6. /Footer
+//  End of Footer Area, Bottom of the page.
+?>
+</editor-fold>
+<?php
+/*
+ * 7. Copyright
+ * Copyright Area
+ */
+?>
+<editor-fold defaultstate="collapsed">                
+                <div id="copyright" class="small-12 text-center row columns">
+                    <span>Copyright &copy; <?php echo date('Y');?> </span>
+                    <span class="bullet"> &#8226; </span>
+                    <span> All Rights Reserved.</span>
+                    <span class="bullet"> &#8226; </span>
+                    <span> Produced by <a target="_blank" href="http://www.gaslightmedia.com">Gaslight Media</a></span>
+                </div>
+<?php
+/*
+ * 7. /Copyright
+ * End of Copyright Area
+ */
+?>
+</editor-fold>
+                </div><!--/.shadow-wrapper-->
+            </div><!--/.off-canvas-content-->     
+        </div><!--End of inner-wrap-->
+      </div><!--End of off-canvas-->
+  <?php wp_footer();?>
+    <?php
+    /*
+     * 8. Footer Scripts
+     * Scripts manually loaded in the footer.
+     */
+
+    ?>
+<editor-fold defaultstate="collapsed">
+<script charset="utf-8" type="text/javascript">var switchTo5x=true;</script>
+<script charset="utf-8" type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
+<script charset="utf-8" type="text/javascript">stLight.options({"publisher":"wp.c3d3647e-de70-4780-b71d-6b739fad685a"});var st_type="wordpress4.3.1";</script>
+</editor-fold>
+<?php
+/*
+ * 8. /Footer Scripts
+ * End of Footer Scripts.
+ */
+?>
+
+  </body>
+</html>
+<?php
+/*
+ * 1. /Body
+ * End of Site
+ */
+?>
\ No newline at end of file
diff --git a/js/app.js b/js/app.js
new file mode 100644 (file)
index 0000000..40d8c24
--- /dev/null
+++ b/js/app.js
@@ -0,0 +1 @@
+"use strict";function _classCallCheck(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}jQuery(document).ready(function($){$(document).foundation();var PI=3.141593,Test=function e(n,i){_classCallCheck(this,e),this.x=i+n,this.y=n},joe="cool";console.log(joe),$("ul.children").each(function(){$(this).before('<a class="toggle" href="#"></a>')}),$("a.toggle").click("click",function(){$(this).toggleClass("open"),$(this).siblings("ul").toggleClass("open")}),$(".top-bar-section").find("ul.sub-menu.dropdown").each(function(){var menuImg=$(this).parent("li").prop("id"),menuNum=menuImg.match(/\d+/)[0],menuImgSrc="img_for_menu_"+menuNum;window["img_for_menu_"+menuNum]?$(this).find("li.image-placeholder").html('<img src="'+eval(menuImgSrc)+'">'):($(this).find("li.image-placeholder").parent("ul").addClass("no-image-subul"),$(this).find("li.image-placeholder").remove())})});
\ No newline at end of file
diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js
new file mode 100644 (file)
index 0000000..320e25a
--- /dev/null
@@ -0,0 +1,37 @@
+// Load foundation
+/*jshint esversion: 6 */
+jQuery(document).ready(function ($) {
+     'use strict';
+    $(document).foundation();
+
+    const PI = 3.141593;
+    class Test {
+        constructor(x,y){
+            this.x = y+x;
+            this.y = x;
+        }
+    }
+    let joe = "cool";
+    console.log(joe);
+    
+    $('ul.children').each(function () {
+        $(this).before('<a class="toggle" href="#"></a>');
+    });
+    $('a.toggle').click('click', function () {
+        $(this).toggleClass('open');
+        $(this).siblings('ul').toggleClass('open');
+    });
+    $('.top-bar-section').find('ul.sub-menu.dropdown').each(function (){
+        var menuImg = $(this).parent('li').prop('id');
+        var menuNum = menuImg.match(/\d+/)[0];
+        var menuImgSrc = 'img_for_menu_' + menuNum;
+        if (window['img_for_menu_' + menuNum]) {
+            $(this).find('li.image-placeholder').html('<img src="' + eval(menuImgSrc) + '">');
+        } else {
+            $(this).find('li.image-placeholder').parent('ul').addClass('no-image-subul');
+            $(this).find('li.image-placeholder').remove();
+        }
+        //console.log('ul = ' + menuImg);
+        //console.log('menu-id = ' + menuNum);
+    });
+});
diff --git a/lib/menu-walker.php b/lib/menu-walker.php
new file mode 100644 (file)
index 0000000..64b5a96
--- /dev/null
@@ -0,0 +1,81 @@
+<?php
+/**
+ * Customize the output of menus for Foundation top bar
+ */
+if ( ! class_exists( 'Glm_Theme_Top_Bar_Walker' ) ) :
+class Glm_Theme_Top_Bar_Walker extends Walker_Nav_Menu {
+    function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
+        static $mainLevelCounter;
+        if ($depth == 0) {
+            ++$mainLevelCounter;
+        }
+        $element->has_children = ! empty( $children_elements[ $element->ID ] );
+        $element->classes[] = ( $element->current || $element->current_item_ancestor ) ? 'active' : '';
+        $element->classes[] = ( $element->has_children && 1 !== $max_depth ) ? 'has-dropdown' : '';
+        $element->classes[] = ( $element->post_parent == 0 && $mainLevelCounter < 6 ) ? '' : 'drop-left';
+        parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
+    }
+
+    function start_el( &$output, $object, $depth = 0, $args = array(), $current_object_id = 0 ) {
+        $item_html = '';
+        parent::start_el( $item_html, $object, $depth, $args );
+
+        // Insert style to display page's thumbnail
+        $item_style = '';
+        if ($depth == 0 && has_post_thumbnail((int)$object->object_id)) {
+            $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id((int)$object->object_id), 'large');
+            $item_style .= "<style>#menu-item-".$object->ID." > .dropdown:before { background-image: url('".$thumbnail[0]."');</style>";
+        }
+        //$output .= ( 0 == $depth ) ? '<li class="divider"></li>' : '';
+        $classes = empty( $object->classes ) ? array() : (array) $object->classes;
+        if ( in_array( 'label', $classes ) ) {
+            //$output .= '<li class="divider"></li>';
+            $item_html = preg_replace( '/<a[^>]*>(.*)<\/a>/iU', '<label>$1</label>', $item_html );
+        }
+        if ( in_array( 'divider', $classes ) ) {
+            $item_html = preg_replace( '/<a[^>]*>( .* )<\/a>/iU', '', $item_html );
+        }
+        if ($item_style)
+            $output .= $item_style;
+        $output .= $item_html;
+    }
+
+    function start_lvl( &$output, $depth = 0, $args = array() ) {
+        $output .= "\n<ul class=\"sub-menu dropdown\">\n";
+    }
+}
+endif;
+if ( ! class_exists( 'Glm_Theme_Off_Canvas_Walker' ) ) :
+class Glm_Theme_Off_Canvas_Walker extends Walker_Nav_Menu {
+    function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
+        $element->has_children = ! empty( $children_elements[ $element->ID ] );
+        $element->classes[] = ( $element->current || $element->current_item_ancestor ) ? 'active' : '';
+        $element->classes[] = ( $element->has_children && 1 !== $max_depth ) ? 'page_item_has_children' : '';
+        $element->classes[] = 'page_item';
+
+        parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
+    }
+
+    function start_el( &$output, $object, $depth = 0, $args = array(), $current_object_id = 0 ) {
+        $item_html = '';
+        parent::start_el( $item_html, $object, $depth, $args );
+
+        $classes = empty( $object->classes ) ? array() : (array) $object->classes;
+
+        if ( in_array( 'label', $classes ) ) {
+            $item_html = preg_replace( '/<a[^>]*>(.*)<\/a>/iU', '<label>$1</label>', $item_html );
+        }
+
+        $output .= $item_html;
+    }
+
+    function start_lvl( &$output, $depth = 0, $args = array() ) {
+        $output .= "\n<ul class=\"children\">\n";
+    }
+
+    function end_lvl(&$output, $depth = 0, $args = array()){
+        $output .= '</ul>';
+    }
+}
+endif;
+?>
diff --git a/lib/navigation.php b/lib/navigation.php
new file mode 100644 (file)
index 0000000..85b48c4
--- /dev/null
@@ -0,0 +1,166 @@
+<?php
+
+register_nav_menus(array(
+  'top-bar' => 'Site Navigation'
+));
+
+/**
+ * Top Bar
+ */
+if ( ! function_exists( 'glm_theme_top_bar' ) ) {
+    
+  function glm_theme_top_bar() {
+      wp_nav_menu(array(
+          'container' => false,                           // remove nav container
+          'container_class' => '',                        // class of container
+          'menu' => '',                                   // menu name
+          'menu_class' => 'dropdown menu',                             // adding custom nav class
+          'theme_location' => 'top-bar',                  // where it's located in the theme
+          'before' => '',                                 // before each link <a>
+          'after' => '',                                  // after each link </a>
+          'link_before' => '',                            // before each link text
+          'link_after' => '',                             // after each link text
+          'depth' => 3,                                   // limit the depth of the nav
+          'fallback_cb' => false,                         // fallback function (see below)
+          'walker' => new Glm_Theme_Top_Bar_Walker()
+      ));
+  }
+}
+
+/**
+ * Mobile off-canvas
+ */
+if ( ! function_exists( 'glm_theme_mobile_off_canvas' ) ) {
+    function glm_theme_mobile_off_canvas() {
+        echo '<div class="left-off-canvas-list">';
+        echo '<ul clas="vertical dropdown menu" data-dropdown-menu><li class="page_item"><a href="' . get_bloginfo('url') . '">Home</a></li>';
+        echo glm_get_mobile_nav_menu( 'top-bar' );
+        echo '</ul></div>';
+    }
+}
+
+function glm_get_mobile_nav_menu( $theme_location )
+{
+    $menu = wp_nav_menu(array(
+        'echo'            => false,             // don't echo
+        'container'       => false,             // remove nav container
+        'container_class' => '',                // class of container
+        'menu'            => '',                // menu name
+        'menu_class'      => 'vertical dropdown menu', // adding custom nav class
+        'theme_location'  => $theme_location,       // where it's located in the theme
+        'before'          => '',                // before each link <a>
+        'after'           => '',                // after each link </a>
+        'link_before'     => '',                // before each link text
+        'link_after'      => '',                // after each link text
+        'depth'           => 5,                 // limit the depth of the nav
+        'fallback_cb'     => false,             // fallback function (see below)
+        'walker'          => new Glm_Theme_Off_Canvas_Walker()
+    ));
+    return preg_replace( array( '%^<ul[^>]*>%', '%</ul>$%' ), '', $menu );
+}
+
+/**
+ * Footer
+ */
+if ( ! function_exists( 'glm_theme_footer' ) ) {
+  function glm_theme_footer() {
+      wp_nav_menu(array(
+          'container' => false,                           // remove nav container
+          'container_class' => '',                        // class of container
+          'menu' => '',                                   // menu name
+          'menu_class' => '',                             // adding custom nav class
+          'theme_location' => 'footer',                   // where it's located in the theme
+          'before' => '',                                 // before each link <a>
+          'after' => '',                                  // after each link </a>
+          'link_before' => '',                            // before each link text
+          'link_after' => '',                             // after each link text
+          'depth' => 1,                                   // limit the depth of the nav
+          'fallback_cb' => false,                         // fallback function (see below)
+      ));
+  }
+}
+
+/**
+ * glm_page_menu
+ *
+ * Grab the top level pages and their sub pages as the main navigation
+ */
+function glm_page_menu($parent = 0, $class = '')
+{
+    $menuConfig   = glm_get_menu_options();
+    $frontPageId  = get_option('page_on_front');
+    $parents      = array();
+    $args         = array(
+        'post_type'   => 'page',
+        'parent'      => $parent,
+        'number'      => '',
+        'exclude'     => $frontPageId,
+        'post_status' => 'publish',
+        'sort_order'  => 'asc',
+        'sort_column' => 'menu_order'
+    );
+    if ($parent == 0 && $menuConfig['menu_options']['main_level_pages']) {
+        $args['include'] = $menuConfig['menu_options']['main_level_pages'];
+    }
+    $pages = get_pages($args);
+    echo '<ul'.(($class)?' class="'.$class.'"':'').'><!-- begin -->'."\n";
+    foreach ($pages as $page) {
+        $childs = get_pages('child_of=' . $page->ID);
+        if (count($childs) > 0) {
+            echo '<li class="has-dropdown">'."\n";
+            echo '<a href="'.get_permalink($page->ID).'">'.$page->post_title.'</a>'."\n";
+            echo glm_page_menu($page->ID, 'sub-menu dropdown');
+            echo '</li>'."\n";
+        } else {
+            echo '<li><a href="'.get_permalink($page->ID).'">'.$page->post_title.'</a></li>'."\n";
+        }
+    }
+    echo '</ul><!-- end -->'."\n";
+}
+
+/**
+ * glm_offcanvas_menu
+ *
+ * Generate the list of pages as nested ul li list
+ */
+function glm_offcanvas_menu()
+{
+    wp_page_menu(array(
+        'depth' => 0,
+        'sort_column' => 'menu_order',
+        'menu_class' => 'left-off-canvas-list'
+    ));
+}
+
+/**
+ * get_menu_options
+ *
+ * Grab the menu options from the theme.ini file
+ */
+function glm_get_menu_options()
+{
+    static $menu_options;
+    $themeConfig = get_template_directory() . '/theme.ini';
+
+    if (!$menu_options && is_file($themeConfig)) {
+        $menu_options = parse_ini_file($themeConfig, true);
+    }
+    return $menu_options;
+}
+
+function glm_side_menu() {
+    global $post;
+    $parents = get_post_ancestors($post->ID);
+    $id = ($parents) ? $parents[count($parents)-1]: $post->ID;
+    $parent = get_page( $id );
+    if ($id == 0) {
+        $ID = $post->ID;
+    } else {
+        $ID = $parent->ID;
+    }
+    echo '<h1>'.get_the_title($ID).'</h1>';
+    echo '<ul class="sidebar"><!-- begin -->'."\n";
+    echo wp_list_pages( 'child_of='.$ID.'&title_li=&depth=1&echo=0');
+    echo '</ul><!-- end -->'."\n";
+}
+
diff --git a/nggallery/album-glmalbums.php b/nggallery/album-glmalbums.php
new file mode 100644 (file)
index 0000000..9ebf91f
--- /dev/null
@@ -0,0 +1,60 @@
+<?php
+/**
+Template Page for the album overview
+
+Follow variables are useable :
+
+    $album       : Contain information about the first album
+    $albums      : Contain information about all albums
+    $galleries   : Contain all galleries inside this album
+    $pagination  : Contain the pagination content
+
+ You can check the content when you insert the tag <?php var_dump($variable) ?>
+ If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
+**/
+?>
+<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($galleries)) : ?>
+
+<div class="ngg-albumoverview">
+
+    <!-- List of galleries -->
+    <?php foreach ($galleries as $gallery) : ?>
+
+    <div class="ngg-glmalbums ngg-album-compact small-6 medium-4 large-3">
+        <div class="ngg-album-compactbox">
+            <div class="ngg-album-link">
+                <a class="Link" href="<?php echo nextgen_esc_url($gallery->pagelink) ?>">
+                    <img class="Thumb" alt="<?php echo esc_attr($gallery->title) ?>" src="<?php echo nextgen_esc_url($gallery->previewurl) ?>"/>
+                </a>
+            </div>
+        </div>
+        <?php if (!empty($image_gen_params)) {
+            $max_width = 'style="max-width: ' . ($image_gen_params['width'] + 20) . 'px"';
+        } else {
+            $max_width = '';
+        } ?>
+        <section class="album-meta-wrapper">
+            <h4>
+                <a class="ngg-album-desc"
+                   title="<?php echo esc_attr($gallery->title); ?>"
+                   href="<?php echo nextgen_esc_url($gallery->pagelink); ?>"
+                   <?php echo $max_width; ?>>
+                   <?php echo_safe_html($gallery->title); ?>
+                </a>
+            </h4>
+            <p class="ngg-album-gallery-image-counter">
+                <?php if ($gallery->counter > 0) { ?>
+                    <strong><?php echo $gallery->counter; ?></strong>&nbsp;<?php _e('Photos', 'nggallery'); ?>
+                <?php } else { ?>
+                    &nbsp;
+                <?php } ?>
+            </p>
+        </section>
+    </div>
+    <?php endforeach; ?>
+    <!-- Pagination -->
+    <br class="ngg-clear"/>
+    <?php echo $pagination ?>
+</div>
+
+<?php endif; ?>
diff --git a/nggallery/gallery-glmphotos-8.php b/nggallery/gallery-glmphotos-8.php
new file mode 100644 (file)
index 0000000..28bb6c9
--- /dev/null
@@ -0,0 +1,55 @@
+<?php 
+/**
+Template Page for the gallery overview
+
+Follow variables are useable :
+
+       $gallery     : Contain all about the gallery
+       $images      : Contain all images, path, title
+       $pagination  : Contain the pagination content
+
+ You can check the content when you insert the tag <?php var_dump($variable) ?>
+ If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
+**/
+?>
+<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?>
+
+       <!-- Thumbnails -->
+    <?php $i = 0; ?>
+        <ul class="gallery row small-block-grid-3 medium-block-grid-6 large-block-grid-8">
+       <?php foreach ( $images as $image ) : ?>
+        <li>
+            <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box imgBorderMe" <?php echo $image->style ?> >
+
+                <div class="ngg-gallery-thumbnail" >
+                    <a href="<?php echo nextgen_esc_url($image->imageURL) ?>"
+                title="<?php echo esc_attr($image->description) ?>"
+                data-src="<?php echo nextgen_esc_url($image->imageURL) ?>"
+                data-thumbnail="<?php echo nextgen_esc_url($image->thumbnailURL); ?>"
+                data-image-id="<?php echo esc_attr($image->pid); ?>"
+                data-title="<?php echo esc_attr($image->alttext); ?>"
+                data-description="<?php echo esc_attr($image->description); ?>"
+                <?php echo $image->thumbcode ?> >
+                            <?php if ( !$image->hidden ) { ?>
+                        
+                        <div class="image_overlay">
+                            <img title="<?php echo esc_attr($image->alttext) ?>" alt="<?php echo esc_attr($image->alttext) ?>" src="<?php echo nextgen_esc_url($image->thumbnailURL) ?>" <?php echo $image->size ?> />
+                        </div>
+                    <span class="photoTitle" title="<?php echo esc_attr($image->alttext) ?>"><?php if (!$image->hidden) { echo esc_attr($image->alttext); }?></span>
+                            <?php } ?>
+                    </a>
+                </div>
+                
+            </div>
+        </li>
+       <?php if ( $image->hidden ) continue; ?>
+       <?php if ( $gallery->columns > 0 && ++$i % $gallery->columns == 0 ) { ?>
+       <br style="clear: both" />
+       <?php } ?>
+       <?php endforeach; ?>
+        </ul>
+       <!-- Pagination -->
+       <?php echo $pagination ?>
+</ul>
+
+<?php endif; ?>
diff --git a/nggallery/gallery-glmphotos-narrow.php b/nggallery/gallery-glmphotos-narrow.php
new file mode 100644 (file)
index 0000000..bc07527
--- /dev/null
@@ -0,0 +1,55 @@
+<?php 
+/**
+Template Page for the gallery overview
+
+Follow variables are useable :
+
+       $gallery     : Contain all about the gallery
+       $images      : Contain all images, path, title
+       $pagination  : Contain the pagination content
+
+ You can check the content when you insert the tag <?php var_dump($variable) ?>
+ If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
+**/
+?>
+<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?>
+
+       <!-- Thumbnails -->
+    <?php $i = 0; ?>
+        <ul class="gallery row small-block-grid-1 medium-block-grid-2 large-block-grid-3">
+       <?php foreach ( $images as $image ) : ?>
+        <li>
+            <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box imgBorderMe" <?php echo $image->style ?> >
+
+                <div class="ngg-gallery-thumbnail" >
+                    <a href="<?php echo nextgen_esc_url($image->imageURL) ?>"
+                title="<?php echo esc_attr($image->description) ?>"
+                data-src="<?php echo nextgen_esc_url($image->imageURL) ?>"
+                data-thumbnail="<?php echo nextgen_esc_url($image->thumbnailURL); ?>"
+                data-image-id="<?php echo esc_attr($image->pid); ?>"
+                data-title="<?php echo esc_attr($image->alttext); ?>"
+                data-description="<?php echo esc_attr($image->description); ?>"
+                <?php echo $image->thumbcode ?> >
+                            <?php if ( !$image->hidden ) { ?>
+                        
+                        <div class="image_overlay">
+                            <img title="<?php echo esc_attr($image->alttext) ?>" alt="<?php echo esc_attr($image->alttext) ?>" src="<?php echo nextgen_esc_url($image->thumbnailURL) ?>" <?php echo $image->size ?> />
+                        </div>
+                    <span class="photoTitle" title="<?php echo esc_attr($image->alttext) ?>"><?php if (!$image->hidden) { echo esc_attr($image->alttext); }?></span>
+                            <?php } ?>
+                    </a>
+                </div>
+                
+            </div>
+        </li>
+       <?php if ( $image->hidden ) continue; ?>
+       <?php if ( $gallery->columns > 0 && ++$i % $gallery->columns == 0 ) { ?>
+       <br style="clear: both" />
+       <?php } ?>
+       <?php endforeach; ?>
+        </ul>
+       <!-- Pagination -->
+       <?php echo $pagination ?>
+</ul>
+
+<?php endif; ?>
diff --git a/nggallery/gallery-glmphotos.php b/nggallery/gallery-glmphotos.php
new file mode 100644 (file)
index 0000000..c5329e2
--- /dev/null
@@ -0,0 +1,66 @@
+<?php
+/**
+Template Page for the gallery overview
+
+Follow variables are useable :
+
+       $gallery     : Contain all about the gallery
+       $images      : Contain all images, path, title
+       $pagination  : Contain the pagination content
+
+ You can check the content when you insert the tag <?php var_dump($variable) ?>
+ If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
+**/
+?>
+<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?>
+
+<div class="ngg-galleryoverview" id="<?php echo $gallery->anchor ?>">
+       <!-- Thumbnails -->
+    <?php $i = 0; ?>
+        <ul class="gallery row small-block-grid-2 medium-block-grid-3 large-block-grid-4">
+       <?php foreach ( $images as $image ) : ?>
+        <li>
+            <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box imgBorderMe" <?php echo $image->style ?> >
+
+                <div class="ngg-gallery-thumbnail" >
+                    <a href="<?php echo nextgen_esc_url($image->imageURL) ?>"
+                title="<?php echo esc_attr($image->description) ?>"
+                data-src="<?php echo nextgen_esc_url($image->imageURL) ?>"
+                data-thumbnail="<?php echo nextgen_esc_url($image->thumbnailURL); ?>"
+                data-image-id="<?php echo esc_attr($image->pid); ?>"
+                data-title="<?php echo esc_attr($image->alttext); ?>"
+                data-description="<?php echo esc_attr($image->description); ?>"
+                <?php echo $image->thumbcode ?> >
+                            <?php if ( !$image->hidden ) { ?>
+
+                        <div class="image_overlay">
+                            <img
+                            title="<?php echo esc_attr($image->alttext) ?>"
+                            alt="<?php echo esc_attr($image->alttext) ?>"
+                            src="<?php echo nextgen_esc_url($image->thumbnailURL) ?>"
+                            <?php echo $image->size ?> />
+                        </div>
+                    <?php
+                    $imageTitle = !preg_match(';is\d{2,}-\d{10,}-\d{5,}$;', $image->alttext) ? $image->alttext: '';
+                    ?>
+                    <span class="photoTitle" title="<?php echo esc_attr($imageTitle) ?>">
+                        <?php if (!$image->hidden) { echo esc_attr($imageTitle); }?>
+                    </span>
+                            <?php } ?>
+                    </a>
+                </div>
+
+            </div>
+        </li>
+       <?php if ( $image->hidden ) continue; ?>
+       <?php if ( $gallery->columns > 0 && ++$i % $gallery->columns == 0 ) { ?>
+       <br style="clear: both" />
+       <?php } ?>
+       <?php endforeach; ?>
+        </ul>
+       <!-- Pagination -->
+       <?php echo $pagination ?>
+</ul>
+</div>
+
+<?php endif; ?>
diff --git a/nggallery/gallery-glmvideos.php b/nggallery/gallery-glmvideos.php
new file mode 100644 (file)
index 0000000..367627d
--- /dev/null
@@ -0,0 +1,72 @@
+<?php 
+/**
+Template Page for the gallery overview
+
+Follow variables are useable :
+
+       $gallery     : Contain all about the gallery
+       $images      : Contain all images, path, title
+       $pagination  : Contain the pagination content
+
+ You can check the content when you insert the tag <?php var_dump($variable) ?>
+ If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
+**/
+?>
+<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?>
+
+<ul id='gallery' class='gallery row small-block-grid-2 medium-block-grid-3 large-block-grid-4'>
+<?php if ($gallery->show_slideshow) { ?>
+       <!-- Slideshow link -->
+       <div class="slideshowlink">
+               <a class="slideshowlink" href="<?php echo nextgen_esc_url($gallery->slideshow_link) ?>">
+                       <?php echo $gallery->slideshow_link_text ?>
+               </a>
+       </div>
+<?php } ?>
+       <!-- Thumbnails -->
+    <?php $i = 0; ?>
+       <?php foreach ( $images as $image ) : ?>
+       <li>
+            <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box imgBorderMe" <?php echo $image->style ?> >
+
+                <div class="ngg-gallery-thumbnail" >
+                    <a href="<?php echo nggcf_get_field($image->pid, "video_url"); ?>"
+                    title="<?php echo esc_attr($image->description); ?>"
+                    data-src="<?php echo nextgen_esc_url($image->imageURL); ?>"
+                    data-thumbnail="<?php echo nextgen_esc_url($image->thumbnailURL); ?>"
+                    data-image-id="<?php echo esc_attr($image->pid); ?>"
+                    data-title="<?php echo esc_attr($image->alttext); ?>"
+                    data-description="<?php echo esc_attr($image->description); ?>"
+                    data-url="<?php echo nggcf_get_field($image->pid, "video_url"); ?>"
+                    <?php echo $image->thumbcode ?> >
+                        <?php if ( !$image->hidden ) { ?>
+                        
+                        <div class="image_overlay">
+                            <img title="<?php echo esc_attr($image->alttext) ?>" alt="<?php echo esc_attr($image->alttext) ?>" src="<?php echo nextgen_esc_url($image->thumbnailURL) ?>" <?php echo $image->size ?> />
+                        </div>
+                    <span class="photoTitle"><?php if (!$image->hidden) { echo esc_attr($image->alttext); }?></span>
+                    
+                            <?php } ?>
+                    </a>
+                </div>
+                
+            </div>
+        </li>
+       <?php if ( $image->hidden ) continue; ?>
+       <?php if ( $gallery->columns > 0 && ++$i % $gallery->columns == 0 ) { ?>
+       <br style="clear: both" />
+       <?php } ?>
+       <?php endforeach; ?>
+       
+       <!-- Pagination -->
+       <?php echo $pagination ?>
+</ul>
+<script>
+    jQuery(document).ready(function(){
+        jQuery(".ngg-fancybox").each(function (){
+            jQuery(this).addClass("various iframe");
+            jQuery(this).attr("href",jQuery(this).children("img").attr("title"));
+        });
+    });
+</script>
+<?php endif; ?>
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..dad81f7
--- /dev/null
@@ -0,0 +1,21 @@
+{
+  "name": "PetosegaRebuild",
+  "description": "Gaslight Media",
+  "version": "0.0.1",
+  "devDependencies": {
+    "gulp": "^3.9.0",
+    "gulp-autoprefixer": "^3.1.0",
+    "gulp-babel": "^6.1.2",
+    "gulp-clean": "^0.3.2",
+    "gulp-concat": "^2.6.0",
+    "gulp-copy": "0.0.2",
+    "gulp-jshint": "^2.0.1",
+    "gulp-rename": "^1.2.2",
+    "gulp-sass": "^2.3.2",
+    "gulp-sourcemaps": "^1.6.0",
+    "gulp-uglify": "^2.0.0",
+    "jshint": "^2.9.2",
+    "node-sass": "^3.8.0",
+    "babel-preset-es2015": "~6.13.2"
+  }
+}
\ No newline at end of file
diff --git a/parts/blog-content-area.php b/parts/blog-content-area.php
new file mode 100644 (file)
index 0000000..66c0dd3
--- /dev/null
@@ -0,0 +1,28 @@
+        <div id="blog-posts-over" class="small-12 medium-9 columns">
+            <?php if(have_posts()) : while(have_posts()): the_post();?>
+            <div class="row content blog-posts-container">
+              <!--  <div class="small-11 small-centered columns"> -->
+                <?php $thumbnail = get_the_post_thumbnail($post->ID, 'blog-feed-front'); ?>
+                <?php if ($thumbnail) { ?>
+                <div class="small-12 medium-4 columns text-center blog-feed-imgs">
+                    <?php echo $thumbnail; ?>
+                </div>
+                <div class="small-12 medium-8 columns blog-feed-contents">
+                    <?php } else { ?>
+                    <div class="small-12 columns blog-feed-content">
+                        <?php } ?>
+
+                        <?php get_template_part('parts/blog-text'); ?>
+                </div>
+            </div>
+            <?php endwhile; ?>
+            <div class="navigation">
+                <span class="newer"><?php previous_posts_link(__('« Newer','example')) ?></span>
+                <span class="older"><?php next_posts_link(__('Older Â»','example')) ?></span>
+            </div><!-- /.navigation -->
+            <?php else: ?>
+            <div id="post-404" class="noposts">
+                <p><?php _e('Sorry, no results were found.');?></p>
+            </div><!-- /#post-404 -->
+            <?php endif;?>
+        </div>
\ No newline at end of file
diff --git a/parts/blog-feed-front.php b/parts/blog-feed-front.php
new file mode 100644 (file)
index 0000000..ba35dbb
--- /dev/null
@@ -0,0 +1,27 @@
+<?php $args = array( 'numberposts' => 4);?>
+<div id="home-feed-posts">
+<?php
+$lastposts = get_posts( $args );
+    $count = 0;
+foreach($lastposts as $post) : setup_postdata($post); ?>
+    <div class="home-feed-post">
+        <div class="row">
+            <?php if (has_post_thumbnail( $post->ID )) { ?>
+            <div class="small-11 small-centered columns text-center home-feed-post-image">
+                <?php echo get_the_post_thumbnail($post->ID, array(190, 190), array('class' => 'blog-excerpt-img-wrap')); ?>
+                </div>
+                <div class="small-12 medium-12 columns home-feed-post-content">
+                 <?php } else { ?>
+                <div class="small-12 columns home-feed-post-content">
+                <?php } ?>
+                <span class="meta date"><?php the_time('F j, Y') ?></span>
+                <h2 class="title-posts" href="<?php the_permalink(); ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
+                
+                <div class="excerpt<?php echo $count ?>"><?php echo the_advanced_excerpt('length=265&length_type=characters&no_custom=1&ellipsis=%26hellip;&exclude_tags=a,img,p,strong,h1,h2,h3,hr,div'); ?></div>
+            </div>
+        </div>
+    </div>
+    <hr>
+        <?php $count++; ?>
+<?php endforeach; ?>
+</div>
\ No newline at end of file
diff --git a/parts/blog-sidebar-r.php b/parts/blog-sidebar-r.php
new file mode 100644 (file)
index 0000000..c051ab4
--- /dev/null
@@ -0,0 +1,33 @@
+        <div id="blog-side-info-wrapper" class="small-11 small-only-text-center medium-3 columns">
+            <div id="blog-side-info">
+                <form id="searchform" action="<?php echo esc_url( home_url() ); ?>" method="get">
+                    <div><input id="s" class="text" type="text" name="s" value="" />
+                    <input class="submit blogbutton" type="submit" name="submit" value="Search" />
+                    <input type="hidden" name="searchType" value="blog" /> </div>
+                </form>
+                <p>Recent Posts</p>
+                <ul>
+                <?php
+                        $args = array( 'numberposts' => '5','post_status'=>'publish' );
+                        $recent_posts = wp_get_recent_posts( $args );
+                        foreach( $recent_posts as $recent ){
+                                echo '<li><a href="' . get_permalink($recent["ID"]) . '">' .   $recent["post_title"].'</a> </li> ';
+                        }
+                ?>
+                </ul>
+                <p>Archive</p>
+                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
+                <p>Categories</p>
+                <ul>
+                    <?php
+                    $args = array(
+                    'orderby' => 'name',
+                    'order' => 'ASC'
+                    );
+                  $categories = get_categories($args);
+                    foreach($categories as $category) {
+                      echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </li> ';  }
+                    ?>
+                </ul>
+            </div>
+        </div>
\ No newline at end of file
diff --git a/parts/blog-text.php b/parts/blog-text.php
new file mode 100644 (file)
index 0000000..ebb264f
--- /dev/null
@@ -0,0 +1,12 @@
+                                                <article id="<?php the_ID()?>" <?php post_class()?>>
+                                                    <header class="entry-header">
+                                                        <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
+                                                        <?php if ( has_post_thumbnail() ):?>
+                                                                 <?php if (get_post_type( $post ) != "ai1ec_event") { ?>
+                                                        <div class="featured-image-wrap"><?php the_post_thumbnail("large"); ?></div>
+                                                        <?php } ?>
+                                                        <?php endif; ?>
+                                                        <span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
+                                                    </header>
+                                                    <?php echo the_content(); ?>
+                                                </article>
\ No newline at end of file
diff --git a/parts/glm-blocks.php b/parts/glm-blocks.php
new file mode 100644 (file)
index 0000000..12d71b1
--- /dev/null
@@ -0,0 +1,28 @@
+<?php if(function_exists('fetch_all_glm_blocks')):?>
+<?php $blocks = fetch_all_glm_blocks();?>
+<div class="blocks">
+    <?php foreach ($blocks as $block):?>
+    <div class="text-center small-12 medium-4 columns large-text-left blocks">
+            <?php if($block->url):?>
+            <a href="<?php echo $block->url;?>"<?php if($block->externalUrl){echo ' target="_blank"';}?>>
+            <?php endif;?>
+            <?php echo get_the_post_thumbnail($block->ID, 'glm-block-image');?>
+            <?php if($block->url):?>
+            </a>
+            <?php endif;?>
+            <?php if($block->url):?>
+            <a class="title-posts" href="<?php echo $block->url;?>"<?php if($block->externalUrl){echo ' target="_blank"';}?>>
+            <?php endif;?>
+                <h1><?php echo $block->post_title;?></h1>
+            <?php if($block->url):?>
+            </a>
+             <?php endif;?>
+        <p><?php echo apply_filters('the_content', $block->post_content) . $block->post_excerpt;?></p>
+        <?php if($block->url):?>
+        <a class="blocks-readmore" href="<?php echo $block->url;?>">read more...</a>
+        <?php endif;?>
+    </div>
+    <?php endforeach;?>
+</div>
+<!--<div class="separator"><hr></div>-->
+<?php endif;?>
diff --git a/parts/main-content.php b/parts/main-content.php
new file mode 100644 (file)
index 0000000..5a9ccd0
--- /dev/null
@@ -0,0 +1,7 @@
+            <div id="main-content" class="small-12 columns">
+                <?php if(have_posts()) : while(have_posts()): the_post();?>
+                <?php the_content();?>
+                <?php endwhile; else:?>
+                <p><?php _e('Sorry, no posts yet');?></p>
+                <?php endif;?>
+            </div>
\ No newline at end of file
diff --git a/parts/search-form.php b/parts/search-form.php
new file mode 100644 (file)
index 0000000..4ee7990
--- /dev/null
@@ -0,0 +1,6 @@
+<form role="search" method="get" class="searchform" action="<?php echo home_url('/'); ?>">
+     <input class="search-input" type="text" placeholder="Search" value="" name="s">
+     <input class="search-button" type="image" 
+        src="<?php bloginfo('template_url'); ?>/assets/search-icon.png" 
+        value="submit" name="searchButton">
+</form>
\ No newline at end of file
diff --git a/parts/slide-show.php b/parts/slide-show.php
new file mode 100644 (file)
index 0000000..94844b5
--- /dev/null
@@ -0,0 +1,7 @@
+<?php if (is_front_page()) : ?>
+       <div id="slideshow">
+         <?php if ( is_active_sidebar( 'slideshow' ) ) : ?>
+           <?php dynamic_sidebar( 'slideshow' ); ?>
+         <?php endif; ?>
+       </div>
+<?php endif; ?>
diff --git a/scss/_blog.scss b/scss/_blog.scss
new file mode 100644 (file)
index 0000000..dd44f5f
--- /dev/null
@@ -0,0 +1,108 @@
+
+.home-feed-post {
+    padding-bottom: 25px;
+//    @include breakpoint(small only) {
+//        > * {
+//            text-align: center;
+//        }
+//    }
+}
+input[type="submit"].blogbutton {
+    border-radius: 3px;
+    color: $white;
+    border: 2px solid $white;
+    font-weight: bold;
+    font-size: 13px;
+    padding: 2px 5px;
+    margin-top: -10px;
+    text-transform: uppercase;
+    &:hover {
+        cursor: pointer;
+        background: $white;
+        border: 2px solid #035C84;
+        color:  white;
+    }
+}
+#blog-posts-over article {
+    padding-top: 10px;
+    margin-bottom: 15px;
+    display: inline-block;
+    width: 100%;
+    .entry-header {
+        background: transparent;
+    }
+    #addthis_wrapper {
+        margin-top: -25px;
+    }
+    p {
+        padding-bottom: 15px;
+    }
+    a.read-more {
+        border: 2px solid $white;
+        font-weight: bold;
+        font-size: 13px;
+        padding: 0 3px;
+        text-transform: uppercase;
+        &:hover {
+            background: $white;
+            border: 2px solid #035C84;
+            color: #035C84;
+        }
+    }
+     .entry-header {
+        margin-bottom: 10px;
+        .entry-title {
+            margin-bottom: 0;
+        }
+        .meta.date {
+            font-size: 13px;
+            font-weight: bold;
+        }
+    }
+}
+/*#searchform div input &[type="text"] {
+    width: 95%;
+}*/
+#blog-posts-over .entry-meta {
+    text-align: center;
+    color: #757575;
+    font-size: 12px;
+}
+#blog-posts-over > div {
+    margin: 25px 0;
+}
+#blog-side-info {
+    #searchform {
+        margin-bottom: 30px;
+    }
+    p {
+        margin-bottom: 0;
+    }
+}
+@include breakpoint(small only) {
+    #blog-side-info-wrapper {
+        float: none;
+        margin: 0 auto;
+        clear: both;
+    }
+    #blog-side-info {
+        padding-left: 0;
+        border-left: 0;
+        ul {
+            margin-left: 0;
+            margin-top:10px;
+        }
+        #searchform {
+            padding: 35px 0;
+            #s {
+                width: 100%;
+            }
+        }
+    }
+}
+#blog-side-info {
+    padding-right: 10px;
+    ul {
+        list-style-type: none;
+    }
+}
\ No newline at end of file
diff --git a/scss/_body.scss b/scss/_body.scss
new file mode 100644 (file)
index 0000000..aadec95
--- /dev/null
@@ -0,0 +1,6 @@
+body {
+    background-size: cover;
+    .off-canvas-content {
+        background: none;
+    }
+}
diff --git a/scss/_content.scss b/scss/_content.scss
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/scss/_copyright.scss b/scss/_copyright.scss
new file mode 100644 (file)
index 0000000..0a257dd
--- /dev/null
@@ -0,0 +1,18 @@
+#copyright {
+    padding: 35px 0 5px;
+    margin: 0 auto -40px;
+    float: none;
+    span {
+        font-size: rem-calc(12);
+    }
+    a {
+        color: $black;
+    }
+}
+#footer_address span.bullet,
+#copyright span.bullet {
+    margin: 0 5px;
+    @include breakpoint(small only) {
+        display: none !important;
+    }
+}
diff --git a/scss/_defaults.scss b/scss/_defaults.scss
new file mode 100644 (file)
index 0000000..eaac287
--- /dev/null
@@ -0,0 +1,55 @@
+// This document will contain all the styles that we want to apply to every
+//  site. Make sure this is placed before _structures (if that is still the
+//  primary css file).
+
+h1,h2,h3,h4,h5,h6 {
+    clear: both;
+}
+
+/* PLUGINS */
+/* Nextgen */
+.gallery li a img { // without this images will overlap each other at certain widths
+    display: block;
+    width: 100%;
+}
+.ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {
+    float: none !important;
+}
+.ngg-album-compact h4 .ngg-album-desc {
+    height: auto !important;
+//    font-family: $font-family-serif;
+    font-weight: 400;
+}
+.ngg-album-compact .album-meta-wrapper h4 a {
+    font-style: normal;
+}
+.album-meta-wrapper {
+    display: block;
+    height: 54px;
+    margin-bottom: 20px;
+}
+.ngg-glmalbums {
+    margin: 10px 0;
+    min-height: 260px;
+    @include breakpoint(small only) {
+        min-height: 180px;
+    }
+}
+.ngg-album-link {
+    text-align: center;
+}
+/* Ninja Forms */
+.ninja-forms-form-wrap {
+    max-width: 600px;
+    margin: 0 auto;
+    input[type=submit] {
+        @include button();
+        display: block;
+        margin: 0 auto;
+    }
+}
+/* For fixing cellphones not showing phone numbers because of /helpful/ auto-coloring */
+a[href^=tel]{
+    color:inherit;
+    text-decoration:none;
+}
\ No newline at end of file
diff --git a/scss/_left-off-canvas.scss b/scss/_left-off-canvas.scss
new file mode 100644 (file)
index 0000000..dc2a21c
--- /dev/null
@@ -0,0 +1,90 @@
+/* for the mobile menu */
+aside.left-off-canvas-menu {
+//  background-color: rgba(0, 0, 0, 0.7);
+//  color: white;
+}
+aside.left-off-canvas-menu li.page_item {
+  display: block;
+  overflow: hidden;
+  position: relative;
+  padding: 4px 8px;
+}
+aside.left-off-canvas-menu .off-canvas-list ul li a {
+  line-height: 20px;
+  color: white;
+  border-bottom: 1px solid #b1b3b6;
+  background-repeat: no-repeat;
+  background-position: 3px 50%;
+}
+aside.left-off-canvas-menu li.page_item_has_children a.toggle {
+  position: absolute;
+  right: 10px;
+  top: 5px;
+    text-decoration: none;
+    &:before {
+        @include off-canvas-point(right, $white, 17px);
+    }
+    &:hover {
+        background: transparent;
+    }
+}
+aside.left-off-canvas-menu li.page_item_has_children a.toggle.open {
+    @include off-canvas-point(down, $white);
+}
+aside.left-off-canvas-menu ul.children {
+  display: none;
+}
+aside.left-off-canvas-menu .off-canvas-list ul li > ul li > a {
+  padding-left: 10px;
+  margin-left: 25px;
+  line-height: 18px;
+}
+aside.left-off-canvas-menu ul.open {
+  display: block;
+}
+.left-off-canvas-menu {
+        list-style: none;
+        li {
+            a {
+                color: $white;
+                font-size: rem-calc(20);
+                line-height: 150%;
+                border-color: white;
+            }
+            a:hover {
+                color: $orange;
+            }
+            .dropdown {
+                list-style: none;
+            }
+        }
+        ul {
+            list-style: none;
+
+            padding: 10px 0;
+            li {
+                a {
+                    color: $white;
+                    background: transparent;
+                }
+                ul {
+                    list-style: none;
+                    li {
+                        a {
+                            width: 85%;
+                            display: block;
+                            white-space: pre-wrap;
+                        }
+                    }
+                }
+            }
+        }
+}
+.social-contact {
+    background: $cream;
+}
+.offcavas-social-list {
+//    @include inline-list;
+    margin-left: auto;
+}
+/* End Mobile Menu */
diff --git a/scss/_main.scss b/scss/_main.scss
new file mode 100644 (file)
index 0000000..09626be
--- /dev/null
@@ -0,0 +1,78 @@
+.breadcrumbs {
+//    margin-top: 10px;
+    span {
+        a {
+            span {
+                color: $black;
+            }
+        }
+        span {
+            color: $green;
+        }
+    }
+}
+.blocks {
+    padding: 0 15px;
+    .blocks {
+        padding: 36px 15px;
+        img {
+            border: 4px solid $white;
+            box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+            -webkit-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+            -moz-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+            -ms-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+        }
+        h1 {
+            margin-top: 10px;
+        }
+        a.blocks-readmore {
+            padding: 5px 12px;
+            background: transparent;
+            color: $orange;
+            border: 1px solid $green;
+            display: inline-block;
+            transition: background 0.5s, color 0.5s; 
+            -webkit-transition: background 0.5s, color 0.5s; 
+            -moz-transition: background 0.5s, color 0.5s; 
+            -ms-transition: background 0.5s, color 0.5s; 
+            &:hover {
+                background: $green;
+                color: $white;
+            }
+        }
+    }
+}
+main.page-inside {
+    #content-wrapper {
+        padding: 0 16px;
+    }
+}
+#content-bulk {
+    #con {
+        margin: 0;
+    }
+    h2 {
+        text-transform: uppercase;
+        font-size: 25px;
+    }
+    footer {
+        margin: 35px 0;
+        #address {
+            margin-top: 25px;
+            p {
+                font-size: 12px;
+                margin-top: 5px;
+            }
+            img {
+                margin: 0;
+                padding-right: 5px;
+            }
+            a {
+                font-size: 12px;
+            }
+        }
+        img {
+            box-shadow: none;
+        }
+    }
+}
diff --git a/scss/_mixins.scss b/scss/_mixins.scss
new file mode 100644 (file)
index 0000000..cf454d0
--- /dev/null
@@ -0,0 +1,2 @@
+  @import "mixins/gradient";
+  @import "mixins/off-canvas-arrow";
\ No newline at end of file
diff --git a/scss/_page.footer.scss b/scss/_page.footer.scss
new file mode 100644 (file)
index 0000000..cec2a74
--- /dev/null
@@ -0,0 +1,118 @@
+footer.main {
+    #res {
+        background: $green;
+        height: 238px;
+        margin-bottom: 36px;
+        padding: 10px 12px;
+        position: relative;
+        @media #{$small-only} {
+            height: auto;
+        }
+        #request {
+            border: 3px dashed $orange;
+    //        background: $green;
+            padding: 9px 0;
+            display: block;
+            height: 218px;
+            position: relative;
+            @media #{$small-only} {
+                height: auto;
+            }
+        }
+        #res-content {
+            h1 {
+                padding-left: 28px;
+                color: $dark-cream;
+                font-size: rem-calc(56);
+                position: relative;
+                z-index: 1;
+                margin: 0;
+            }
+            p {
+                padding-left: 28px;
+                color: $white;
+//                margin-bottom: 10px;
+            }
+            a#request-but {
+                margin-left: 28px;
+                padding: 2.5px 13px;
+                border: 2px solid $white;
+                color: $white;
+                background: transparent;
+                display: inline-block;
+                transition: background 0.5s, color 0.5s; 
+                -webkit-transition: background 0.5s, color 0.5s; 
+                -moz-transition: background 0.5s, color 0.5s; 
+                -ms-transition: background 0.5s, color 0.5s;
+                &:hover {
+                    color: $green;
+                    background: $white;
+                }
+            }
+        }
+        #lantern {
+            position: absolute;
+            top: 42px;
+            left: 30px;
+        }
+        #camp {
+            position: absolute;
+            top: 20px;
+            right: 30px;
+            @media screen and (max-width:744px) {
+                display: none;
+            }
+        }
+    }
+    img#map {
+        padding-top: 5px;
+        display: inline-block;
+    }
+    .address {
+        padding-top: 4px;
+    }
+    img#compass {
+        padding-top: 5px;
+        display: inline-block;
+    }
+    .dir-contact {
+        padding-top: 5px;
+        a {
+            text-decoration: underline;
+        }
+    }
+}
+#footer_address {
+    span{
+        white-space: nowrap;
+    }
+}
+#connect {
+    padding-top: 20px;
+    background: #4c4d4f;
+    ul{
+        margin: 0;
+        list-style: none;
+        li {
+            background: none;
+            padding: 0 5px;
+            display: inline-block;
+            & > a {
+                display: block;
+                font-family: Open Sans, sans-serif;
+                font-size: 12px;
+                color: #fff;
+                padding: 20px 18px;
+                line-height: 1.2;
+            }
+            a {
+                &#current {
+                    background: $l-blue;
+                }
+            }
+        }
+    }
+}
+#compass{
+    float: right;
+}
\ No newline at end of file
diff --git a/scss/_page.header.scss b/scss/_page.header.scss
new file mode 100644 (file)
index 0000000..9cd4f1c
--- /dev/null
@@ -0,0 +1,119 @@
+header {
+    height: auto;
+    & #logo {
+        img {
+            margin-bottom: 15px;
+        }
+    }
+    & .search {
+        input {
+            height: 20px;
+            width: 167px;
+            padding: 0 8px;
+            margin: 13px 0px 0px 18px;
+            border-radius: 3px;
+            font-size: 10px;
+            color: $black;
+            display: inline-block;
+        }
+        a {
+            &.magnifying-glass {
+                font-size: 10em; /* This controls the size. */ 
+                display: inline-block; 
+                width: rem-calc(10); 
+                height: rem-calc(10);
+                border: rem-calc(2) solid $d-blue; 
+                position: relative; 
+                border-radius: 0.35em;
+                margin: 0 0 0 -25px;
+                &:before {
+                    content: ""; 
+                    display: inline-block; 
+                    position: absolute; 
+                    right: rem-calc(-7); 
+                    bottom: rem-calc(-4); 
+                    border-width: 0; 
+                    background: $d-blue; 
+                    width: rem-calc(8); 
+                    height: rem-calc(2); 
+                    -webkit-transform: rotate(45deg); 
+                    -moz-transform: rotate(45deg);
+                    -ms-transform: rotate(45deg);
+                    transform: rotate(45deg);
+                }
+            }
+        }
+    }
+    #sec-nav {
+        position: relative;
+        text-align: left;
+        padding: 10px 0;
+        margin: 0 0 15px 45px;
+        ul {
+            margin: 0;
+            li {
+                display: inline;
+                a {
+                    font-size: 12px;
+                    color: $d-blue;
+                    padding: 0 5px;
+                    font-weight: bold;
+                }
+            }
+        }
+        & > ul > li {
+            position: relative;
+            &:before {
+                color: $aluminum;
+                content: "|";
+                position: absolute;
+                top: 2px;
+                left: -15px;
+                font-size: 14px;
+                font-weight: bold;
+                display:block;
+                padding: 0 10px;
+            }
+            &:first-child:before {
+                content: none;
+            }
+        }
+    }
+    img {
+        margin-left: 5px;
+    }
+    &.main {
+        margin-top: 15px;
+        a#big-logo {
+            padding-left: 15px;
+        }
+        a#contact {
+            color: $white;
+            text-decoration: underline;
+            font-weight: bold;
+            &:hover {
+                color: $orange;
+            }
+        }
+        #under {
+            margin-top: 20px;
+        }
+        .social {
+            padding-left: 12px !important;
+            a {
+                position: relative;
+                margin: 0 5px;
+                img {
+                    margin: 0;
+                }
+            }
+        }
+        span#phone {
+            font-size: rem-calc(24);
+            color: $white;
+            font-weight: bold;
+            padding-right: 20px;
+            letter-spacing: 0.1em;
+        }
+    }
+}
diff --git a/scss/_page.wrapper.scss b/scss/_page.wrapper.scss
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/scss/_plugins.scss b/scss/_plugins.scss
new file mode 100644 (file)
index 0000000..05709de
--- /dev/null
@@ -0,0 +1,3 @@
+  @import "plugins/nextgen";
+  @import "plugins/gravityForms";
+  @import "plugins/events";
\ No newline at end of file
diff --git a/scss/_right-off-canvas.scss b/scss/_right-off-canvas.scss
new file mode 100644 (file)
index 0000000..56e2f42
--- /dev/null
@@ -0,0 +1,86 @@
+/* for the mobile menu */
+aside.right-off-canvas-menu {
+  background-color: $primary-color;
+  color: white;
+}
+aside.right-off-canvas-menu li.page_item {
+  display: block;
+  overflow: hidden;
+  position: relative;
+  padding: 4px 8px;
+}
+aside.right-off-canvas-menu .off-canvas-list ul li a {
+  line-height: 20px;
+  color: white;
+  border-bottom: 1px solid #b1b3b6;
+  background-repeat: no-repeat;
+  background-position: 3px 50%;
+}
+aside.right-off-canvas-menu li.page_item_has_children a.toggle {
+  position: absolute;
+  right: 10px;
+  top: 5px;
+    text-decoration: none;
+    &:before {
+        @include off-canvas-point(right, $white, 17px);
+    }
+    &:hover {
+        background: transparent;
+    }
+}
+aside.right-off-canvas-menu li.page_item_has_children a.toggle.open {
+    @include off-canvas-point(down, $white);
+}
+aside.right-off-canvas-menu ul.children {
+  display: none;
+}
+aside.right--menu .off-canvas-list ul li > ul li > a {
+  padding-left: 10px;
+  margin-left: 25px;
+  line-height: 18px;
+}
+aside.right-off-canvas-menu ul.open {
+  display: block;
+}
+.right-off-canvas-menu {
+        list-style: none;
+        li {
+            a {
+                color: $white;
+                font-size: rem-calc(16);
+                line-height: 150%;
+                border-color: white;
+            }
+            a:hover {
+                color: black;
+            }
+            .dropdown {
+                list-style: none;
+            }
+        }
+        ul {
+            list-style: none;
+
+            padding: 10px 0;
+            li {
+                a {
+                    color: $white;
+                }
+                ul {
+                    list-style: none;
+                    li {
+                        a {
+                            width: 85%;
+                            display: block;
+                            white-space: pre-wrap;
+                        }
+                    }
+                }
+            }
+        }
+}
+.offcavas-social-list {
+    @include inline-list;
+    margin-right: auto;
+}
+/* End Mobile Menu */
diff --git a/scss/_search.scss b/scss/_search.scss
new file mode 100644 (file)
index 0000000..d30fe14
--- /dev/null
@@ -0,0 +1,50 @@
+.search-top {
+    .searchform {
+            text-align: left;
+            display: inline-block;
+            position: relative;
+            input.search-button {
+                width: 16px;
+                height: 13px;
+                top: 8px;
+                right: 7px;
+                position: absolute;
+                padding: 0;
+                margin-bottom: 0;
+            }
+        }
+        input[type=text] {
+            height: 25px;
+            width: 152px;
+            padding: 0 8px;
+            margin: 0 0 15px 0;
+            border-radius: 2px;
+            font-size: 12px;
+            color: $black;
+            display: inline-block;
+            border: none;
+            box-shadow: inset 0 0 2px 1px rgba($black, 0.5);
+        }
+}
+aside.left-off-canvas-menu {
+    .searchform {
+        text-align: left;
+        display: inline-block;
+        position: relative;
+        float: none;
+        margin: 0 auto;
+        width: 100%;
+        input.search-button {
+            width: 16px;
+            height: 13px;
+            top: 8px;
+            right: 7px;
+            position: absolute;
+            padding: 0;
+            margin-bottom: 0;
+        }
+    }
+    input.search-input {
+        width: 100%;
+    }
+}
\ No newline at end of file
diff --git a/scss/_settings.scss b/scss/_settings.scss
new file mode 100644 (file)
index 0000000..8196334
--- /dev/null
@@ -0,0 +1,598 @@
+//  Foundation for Sites Settings
+//  -----------------------------
+//
+//  Table of Contents:
+//
+//   1. Global
+//   2. Breakpoints
+//   3. The Grid
+//   4. Base Typography
+//   5. Typography Helpers
+//   6. Abide
+//   7. Accordion
+//   8. Accordion Menu
+//   9. Badge
+//  10. Breadcrumbs
+//  11. Button
+//  12. Button Group
+//  13. Callout
+//  14. Close Button
+//  15. Drilldown
+//  16. Dropdown
+//  17. Dropdown Menu
+//  18. Flex Video
+//  19. Forms
+//  20. Label
+//  21. Media Object
+//  22. Menu
+//  23. Meter
+//  24. Off-canvas
+//  25. Orbit
+//  26. Pagination
+//  27. Progress Bar
+//  28. Reveal
+//  29. Slider
+//  30. Switch
+//  31. Table
+//  32. Tabs
+//  33. Thumbnail
+//  34. Title Bar
+//  35. Tooltip
+//  36. Top Bar
+
+@import 'util/util';
+
+// 1. Global
+// ---------
+
+$global-font-size: 100%;
+$global-width: rem-calc(1200);
+$global-lineheight: 1.5;
+$foundation-palette: (
+  primary: #2199e8,
+  secondary: #777,
+  success: #3adb76,
+  warning: #ffae00,
+  alert: #ec5840,
+);
+$light-gray: #e6e6e6;
+$medium-gray: #cacaca;
+$dark-gray: #8a8a8a;
+$white       : #FFFFFF;
+$ghost       : #FAFAFA;
+$snow        : #F9F9F9;
+$vapor       : #F6F6F6;
+$white-smoke : #F5F5F5;
+$silver      : #EFEFEF;
+$smoke       : #EEEEEE;
+$gainsboro   : #DDDDDD;
+$iron        : #CCCCCC;
+$base        : #AAAAAA;
+$aluminum    : #999999;
+$jumbo       : #888888;
+$monsoon     : #777777;
+$steel       : #666666;
+$charcoal    : #555555;
+$tuatara     : #444444;
+$oil         : #333333;
+$jet         : #222222;
+$black       : #000000;
+$green       : #797c25;
+$red         : #d2222a;
+$d-blue      : #131c5f;
+$l-blue      : #0093d1;
+$orange      : #f28728;
+$cream       : #f3ebd7;
+$dark-cream  : #e8d8af;
+$brown       : #704c21;
+
+
+$body-background: url(../assets/background.jpg) no-repeat center center fixed;
+$body-font-color: $black;
+$body-font-family: 'Open Sans', sans-serif;
+$body-antialiased: true;
+$global-margin: 1rem;
+$global-padding: 1rem;
+$global-weight-normal: normal;
+$global-weight-bold: bold;
+$global-radius: 0;
+$global-text-direction: ltr;
+$global-flexbox: false;
+$print-transparent-backgrounds: true;
+
+
+@include add-foundation-colors;
+
+// 2. Breakpoints
+// --------------
+
+$breakpoints: (
+  small: 0,
+  medium: 640px,
+  large: 1024px,
+  xlarge: 1200px,
+  xxlarge: 1440px,
+);
+$breakpoint-classes: (small medium large);
+
+// 3. The Grid
+// -----------
+
+$grid-row-width: $global-width;
+$grid-column-count: 12;
+$grid-column-gutter: (
+  small: 20px,
+  medium: 30px,
+);
+$grid-column-align-edge: true;
+$block-grid-max: 8;
+
+// 4. Base Typography
+// ------------------
+
+$header-font-family: $body-font-family;
+$header-font-weight: $global-weight-normal;
+$header-font-style: normal;
+// We use these to define default font stacks
+$font-family-sans-serif: "Open Sans", sans-serif;
+$font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
+$font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;
+$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace;
+$header-sizes: (
+  small: (
+    'h1': 24,
+    'h2': 20,
+    'h3': 19,
+    'h4': 18,
+    'h5': 17,
+    'h6': 16,
+  ),
+  medium: (
+    'h1': 36,
+    'h2': 24,
+    'h3': 24,
+    'h4': 18,
+    'h5': 16,
+    'h6': 16,
+  ),
+);
+$header-color: inherit;
+$header-lineheight: 1.4;
+$header-margin-bottom: 0.5rem;
+$header-text-rendering: optimizeLegibility;
+$small-font-size: 80%;
+$header-small-font-color: $medium-gray;
+$paragraph-lineheight: 1.6;
+$paragraph-margin-bottom: 1rem;
+$paragraph-text-rendering: optimizeLegibility;
+$code-color: $black;
+$code-font-family: $font-family-monospace;
+$code-font-weight: $global-weight-normal;
+$code-background: $light-gray;
+$code-border: 1px solid $medium-gray;
+$code-padding: rem-calc(2 5 1);
+$anchor-color: $orange;
+$anchor-color-hover: $green;
+$anchor-text-decoration: none;
+$anchor-text-decoration-hover: none;
+$hr-width: $global-width;
+$hr-border: 1px solid $medium-gray;
+$hr-margin: rem-calc(20) auto;
+$list-lineheight: $paragraph-lineheight;
+$list-margin-bottom: $paragraph-margin-bottom;
+$list-style-type: disc;
+$list-style-position: outside;
+$list-side-margin: 1.25rem;
+$list-nested-side-margin: 1.25rem;
+$defnlist-margin-bottom: 1rem;
+$defnlist-term-weight: $global-weight-bold;
+$defnlist-term-margin-bottom: 0.3rem;
+$blockquote-color: $dark-gray;
+$blockquote-padding: rem-calc(9 20 0 19);
+$blockquote-border: 1px solid $medium-gray;
+$cite-font-size: rem-calc(13);
+$cite-color: $dark-gray;
+$keystroke-font: $font-family-monospace;
+$keystroke-color: $black;
+$keystroke-background: $light-gray;
+$keystroke-padding: rem-calc(2 4 0);
+$keystroke-radius: $global-radius;
+$abbr-underline: 1px dotted $black;
+
+// 5. Typography Helpers
+// ---------------------
+
+$lead-font-size: $global-font-size * 1.25;
+$lead-lineheight: 1.6;
+$subheader-lineheight: 1.4;
+$subheader-color: $dark-gray;
+$subheader-font-weight: $global-weight-normal;
+$subheader-margin-top: 0.2rem;
+$subheader-margin-bottom: 0.5rem;
+$stat-font-size: 2.5rem;
+
+// 6. Abide
+// --------
+
+$abide-inputs: true;
+$abide-labels: true;
+$input-background-invalid: map-get($foundation-palette, alert);
+$form-label-color-invalid: map-get($foundation-palette, alert);
+$input-error-color: map-get($foundation-palette, alert);
+$input-error-font-size: rem-calc(12);
+$input-error-font-weight: $global-weight-bold;
+
+// 7. Accordion
+// ------------
+
+$accordion-background: $white;
+$accordion-plusminus: true;
+$accordion-item-color: foreground($accordion-background, $primary-color);
+$accordion-item-background-hover: $light-gray;
+$accordion-item-padding: 1.25rem 1rem;
+$accordion-content-background: $white;
+$accordion-content-border: 1px solid $light-gray;
+$accordion-content-color: foreground($accordion-background, $primary-color);
+$accordion-content-padding: 1rem;
+
+// 8. Accordion Menu
+// -----------------
+
+$accordionmenu-arrows: true;
+$accordionmenu-arrow-color: $primary-color;
+
+// 9. Badge
+// --------
+
+$badge-background: $primary-color;
+$badge-color: foreground($badge-background);
+$badge-padding: 0.3em;
+$badge-minwidth: 2.1em;
+$badge-font-size: 0.6rem;
+
+// 10. Breadcrumbs
+// ---------------
+
+$breadcrumbs-margin: 0 0 $global-margin 0;
+$breadcrumbs-item-font-size: rem-calc(14);
+$breadcrumbs-item-color: $black;
+$breadcrumbs-item-color-current: $green;
+$breadcrumbs-item-color-disabled: $medium-gray;
+$breadcrumbs-item-margin: 0.75rem;
+$breadcrumbs-item-uppercase: false;
+$breadcrumbs-item-slash: true;
+
+// 11. Button
+// ----------
+
+$button-padding: 0.85em 1em;
+$button-margin: 0 0 $global-margin 0;
+$button-fill: solid;
+$button-background: $primary-color;
+$button-background-hover: scale-color($button-background, $lightness: -15%);
+$button-color: $white;
+$button-color-alt: $black;
+$button-radius: $global-radius;
+$button-sizes: (
+  tiny: 0.6rem,
+  small: 0.75rem,
+  default: 0.9rem,
+  large: 1.25rem,
+);
+$button-opacity-disabled: 0.25;
+
+// 12. Button Group
+// ----------------
+
+$buttongroup-margin: 1rem;
+$buttongroup-spacing: 1px;
+$buttongroup-child-selector: '.button';
+$buttongroup-expand-max: 6;
+
+// 13. Callout
+// -----------
+
+$callout-background: $white;
+$callout-background-fade: 85%;
+$callout-border: 1px solid rgba($black, 0.25);
+$callout-margin: 0 0 1rem 0;
+$callout-padding: 1rem;
+$callout-font-color: $body-font-color;
+$callout-font-color-alt: $body-background;
+$callout-radius: $global-radius;
+$callout-link-tint: 30%;
+
+// 14. Close Button
+// ----------------
+
+$closebutton-position: right top;
+$closebutton-offset-horizontal: 1rem;
+$closebutton-offset-vertical: 0.5rem;
+$closebutton-size: 2em;
+$closebutton-lineheight: 1;
+$closebutton-color: $dark-gray;
+$closebutton-color-hover: $black;
+
+// 15. Drilldown
+// -------------
+
+$drilldown-transition: transform 0.15s linear;
+$drilldown-arrows: true;
+$drilldown-arrow-color: $primary-color;
+$drilldown-background: $white;
+
+// 16. Dropdown
+// ------------
+
+$dropdown-padding: 1rem;
+$dropdown-border: 1px solid $medium-gray;
+$dropdown-font-size: 1rem;
+$dropdown-width: 300px;
+$dropdown-radius: $global-radius;
+$dropdown-sizes: (
+  tiny: 100px,
+  small: 200px,
+  large: 400px,
+);
+
+// 17. Dropdown Menu
+// -----------------
+
+$dropdownmenu-arrows: false;
+$dropdownmenu-arrow-color: $anchor-color;
+$dropdownmenu-min-width: 200px;
+$dropdownmenu-background: $green;
+$dropdownmenu-border: 1px solid $orange;
+
+// 18. Flex Video
+// --------------
+
+$flexvideo-margin-bottom: rem-calc(16);
+$flexvideo-ratio: 4 by 3;
+$flexvideo-ratio-widescreen: 16 by 9;
+
+// 19. Forms
+// ---------
+
+$fieldset-border: 1px solid $medium-gray;
+$fieldset-padding: rem-calc(20);
+$fieldset-margin: rem-calc(18 0);
+$legend-padding: rem-calc(0 3);
+$form-spacing: rem-calc(16);
+$helptext-color: $black;
+$helptext-font-size: rem-calc(13);
+$helptext-font-style: italic;
+$input-prefix-color: $black;
+$input-prefix-background: $light-gray;
+$input-prefix-border: 1px solid $medium-gray;
+$input-prefix-padding: 1rem;
+$form-label-color: $black;
+$form-label-font-size: rem-calc(14);
+$form-label-font-weight: $global-weight-normal;
+$form-label-line-height: 1.8;
+$select-background: $white;
+$select-triangle-color: $dark-gray;
+$select-radius: $global-radius;
+$input-color: $black;
+$input-placeholder-color: $medium-gray;
+$input-font-family: inherit;
+$input-font-size: rem-calc(16);
+$input-background: $white;
+$input-background-focus: $white;
+$input-background-disabled: $light-gray;
+$input-border: 1px solid $medium-gray;
+$input-border-focus: 1px solid $dark-gray;
+$input-shadow: inset 0 1px 2px rgba($black, 0.1);
+$input-shadow-focus: 0 0 5px $medium-gray;
+$input-cursor-disabled: default;
+$input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
+$input-number-spinners: true;
+$input-radius: $global-radius;
+
+// 20. Label
+// ---------
+
+$label-background: $primary-color;
+$label-color: foreground($label-background);
+$label-font-size: 0.8rem;
+$label-padding: 0.33333rem 0.5rem;
+$label-radius: $global-radius;
+
+// 21. Media Object
+// ----------------
+
+$mediaobject-margin-bottom: $global-margin;
+$mediaobject-section-padding: $global-padding;
+$mediaobject-image-width-stacked: 100%;
+
+// 22. Menu
+// --------
+
+$menu-margin: 0;
+$menu-margin-nested: 1rem;
+$menu-item-padding: 0.7rem 1rem;
+$menu-item-color-active: $orange;
+$menu-item-background-active: $green;
+$menu-icon-spacing: 0.25rem;
+
+// 23. Meter
+// ---------
+
+$meter-height: 1rem;
+$meter-radius: $global-radius;
+$meter-background: $medium-gray;
+$meter-fill-good: $success-color;
+$meter-fill-medium: $warning-color;
+$meter-fill-bad: $alert-color;
+
+// 24. Off-canvas
+// --------------
+
+$offcanvas-size: 250px;
+$offcanvas-background: $green;
+$offcanvas-zindex: -1;
+$offcanvas-transition-length: 0.5s;
+$offcanvas-transition-timing: ease;
+$offcanvas-fixed-reveal: true;
+$offcanvas-exit-background: rgba($white, 0.25);
+$maincontent-class: 'off-canvas-content';
+$maincontent-shadow: 0 0 10px rgba($black, 0.5);
+
+// 25. Orbit
+// ---------
+
+$orbit-bullet-background: $medium-gray;
+$orbit-bullet-background-active: $dark-gray;
+$orbit-bullet-diameter: 1.2rem;
+$orbit-bullet-margin: 0.1rem;
+$orbit-bullet-margin-top: 0.8rem;
+$orbit-bullet-margin-bottom: 0.8rem;
+$orbit-caption-background: rgba($black, 0.5);
+$orbit-caption-padding: 1rem;
+$orbit-control-background-hover: rgba($black, 0.5);
+$orbit-control-padding: 1rem;
+$orbit-control-zindex: 10;
+
+// 26. Pagination
+// --------------
+
+$pagination-font-size: rem-calc(14);
+$pagination-margin-bottom: $global-margin;
+$pagination-item-color: $black;
+$pagination-item-padding: rem-calc(3 10);
+$pagination-item-spacing: rem-calc(1);
+$pagination-radius: $global-radius;
+$pagination-item-background-hover: $light-gray;
+$pagination-item-background-current: $primary-color;
+$pagination-item-color-current: foreground($pagination-item-background-current);
+$pagination-item-color-disabled: $medium-gray;
+$pagination-ellipsis-color: $black;
+$pagination-mobile-items: false;
+$pagination-arrows: true;
+
+// 27. Progress Bar
+// ----------------
+
+$progress-height: 1rem;
+$progress-background: $medium-gray;
+$progress-margin-bottom: $global-margin;
+$progress-meter-background: $primary-color;
+$progress-radius: $global-radius;
+
+// 28. Reveal
+// ----------
+
+$reveal-background: $white;
+$reveal-width: 600px;
+$reveal-max-width: $global-width;
+$reveal-padding: $global-padding;
+$reveal-border: 1px solid $medium-gray;
+$reveal-radius: $global-radius;
+$reveal-zindex: 1005;
+$reveal-overlay-background: rgba($black, 0.45);
+
+// 29. Slider
+// ----------
+
+$slider-width-vertical: 0.5rem;
+$slider-transition: all 0.2s ease-in-out;
+$slider-height: 0.5rem;
+$slider-background: $light-gray;
+$slider-fill-background: $medium-gray;
+$slider-handle-height: 1.4rem;
+$slider-handle-width: 1.4rem;
+$slider-handle-background: $primary-color;
+$slider-opacity-disabled: 0.25;
+$slider-radius: $global-radius;
+
+// 30. Switch
+// ----------
+
+$switch-background: $medium-gray;
+$switch-background-active: $primary-color;
+$switch-height: 2rem;
+$switch-height-tiny: 1.5rem;
+$switch-height-small: 1.75rem;
+$switch-height-large: 2.5rem;
+$switch-radius: $global-radius;
+$switch-margin: $global-margin;
+$switch-paddle-background: $white;
+$switch-paddle-offset: 0.25rem;
+$switch-paddle-radius: $global-radius;
+$switch-paddle-transition: all 0.25s ease-out;
+
+// 31. Table
+// ---------
+
+$table-background: $white;
+$table-color-scale: 5%;
+$table-border: 1px solid smart-scale($table-background, $table-color-scale);
+$table-padding: rem-calc(8 10 10);
+$table-hover-scale: 2%;
+$table-row-hover: darken($table-background, $table-hover-scale);
+$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
+$table-striped-background: smart-scale($table-background, $table-color-scale);
+$table-stripe: even;
+$table-head-background: smart-scale($table-background, $table-color-scale / 2);
+$table-foot-background: smart-scale($table-background, $table-color-scale);
+$table-head-font-color: $body-font-color;
+$show-header-for-stacked: false;
+
+// 32. Tabs
+// --------
+
+$tab-margin: 0;
+$tab-background: $white;
+$tab-background-active: $light-gray;
+$tab-item-font-size: rem-calc(12);
+$tab-item-background-hover: $white;
+$tab-item-padding: 1.25rem 1.5rem;
+$tab-expand-max: 6;
+$tab-content-background: $white;
+$tab-content-border: $light-gray;
+$tab-content-color: foreground($tab-background, $primary-color);
+$tab-content-padding: 1rem;
+
+// 33. Thumbnail
+// -------------
+
+$thumbnail-border: solid 4px $white;
+$thumbnail-margin-bottom: $global-margin;
+$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
+$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
+$thumbnail-transition: box-shadow 200ms ease-out;
+$thumbnail-radius: $global-radius;
+
+// 34. Title Bar
+// -------------
+
+$titlebar-background: $green;
+$titlebar-color: $white;
+$titlebar-padding: 0.5rem;
+$titlebar-text-font-weight: bold;
+$titlebar-icon-color: $white;
+$titlebar-icon-color-hover: $orange;
+$titlebar-icon-spacing: 0.25rem;
+
+// 35. Tooltip
+// -----------
+
+$has-tip-font-weight: $global-weight-bold;
+$has-tip-border-bottom: dotted 1px $dark-gray;
+$tooltip-background-color: $black;
+$tooltip-color: $white;
+$tooltip-padding: 0.75rem;
+$tooltip-font-size: $small-font-size;
+$tooltip-pip-width: 0.75rem;
+$tooltip-pip-height: $tooltip-pip-width * 0.866;
+$tooltip-radius: $global-radius;
+
+// 36. Top Bar
+// -----------
+
+$topbar-padding: 0.5rem;
+$topbar-background: $green;
+$topbar-submenu-background: $topbar-background;
+$topbar-title-spacing: 1rem;
+$topbar-input-width: 200px;
+$topbar-unstack-breakpoint: medium;
diff --git a/scss/_shadow.wrapper.scss b/scss/_shadow.wrapper.scss
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/scss/_sidebar.scss b/scss/_sidebar.scss
new file mode 100644 (file)
index 0000000..b64cf19
--- /dev/null
@@ -0,0 +1,131 @@
+#sidebar {
+    padding-top: 25px;
+    background: #f2f9fc;
+    .row.collapse {
+        margin-left: 14px;
+    }
+    li {
+        list-style: none;
+        #calendar_wrap {
+            table#wp-calendar {
+                margin: 0 auto;
+            }
+        }
+    }
+    a {
+        font-size: 12px;
+    }
+    form {
+        margin: 0 12px 0 14px;
+        select {
+            padding: 0 rem-calc(8);
+            border-radius: 5px;
+            height: 25px;
+            margin: 0;
+            option {
+                font-size: 10px;
+            }
+        }
+    }
+    .small-block-grid-2 {
+        margin-top: 10px;
+        li {
+            padding: 0 rem-calc(10) rem-calc(10);
+            img {
+                border: 2px solid lightblue;
+            }
+        }
+        & > li:nth-of-type(2), & > li:nth-of-type(4) {
+            padding-left: 0;
+        }
+        & > li:nth-of-type(3), & > li:nth-of-type(4) {
+            padding-bottom: 20px;
+        }
+    }
+    h3 {
+        margin: 20px 0 0;
+    }
+    h1 {
+        margin: 0;
+        font-size: rem-calc(25);
+        text-transform: none;
+    }
+    input {
+        padding: 5px 0 5px 8px;
+        height: auto;
+        margin: 10px 0;
+    }
+    button {
+        border-radius: 2px;
+        padding: 0 10px;
+    }
+}
+#side-nav {
+    padding-top: 10px;
+    background: #f2f9fc;
+    h1 {
+        font-size: rem-calc(22);
+/*        margin: 5px 0 25px;*/
+    }
+    h4 {
+        font-weight: bold;
+        margin-left: 10px;
+    }
+    li {
+        list-style: none;
+    }
+    ul {
+        list-style: none;
+        margin: 0 0 20px;
+        li {
+            margin: 0 -15px;
+            padding: 5px 10px 5px 25px;
+            &:hover {
+                background: #81adc1;
+            }
+            a {
+                color: darkblue;
+                &:hover {
+                    color: $white;
+                }
+            }
+        }
+    }
+    h3 {
+        text-transform: none;
+        margin: 0;
+    }
+    input {
+        padding: 5px 0 5px 8px;
+        height: auto;
+        margin-bottom: 10px;
+    }
+    button {
+        border-radius: 2px;
+        padding: 0 10px;
+    }
+}
+#extra {
+    margin-top: 15px;
+    p {
+        line-height: 1.3;
+        &.title {
+            margin: 0;
+            &#last {
+                padding-top: 10px;
+            }
+        }
+        &#message {
+            text-transform: uppercase;
+            color: lightblue;
+            font-size: rem-calc(15);
+            margin: 40px 0;
+        }
+    }
+}
+.county-news {
+    font-weight: bold;
+}
+.current_page_item a {
+    font-weight: bold;
+}
\ No newline at end of file
diff --git a/scss/_slideshow.scss b/scss/_slideshow.scss
new file mode 100644 (file)
index 0000000..81aff90
--- /dev/null
@@ -0,0 +1,13 @@
+#slideshow {
+    #caption {
+        background: rgba(0, 0, 0, 0.75);
+        color: $white;
+        margin-top: -51px;
+        p {
+            padding: 10px 5px;
+            font-size: 12px;
+            margin: 0;
+            text-align: right;
+        }
+    }
+}
diff --git a/scss/_structure.scss b/scss/_structure.scss
new file mode 100644 (file)
index 0000000..121ed22
--- /dev/null
@@ -0,0 +1,55 @@
+//1. Body
+body {
+    .shadow-wrapper {
+        border-radius: 10px;
+        margin: -1px auto 140px;
+        background: $cream;
+        box-shadow: 0 0 15px 0px rgba($black, 0.5);
+        -ms-box-shadow: 0 0 15px 0px rgba($black, 0.5);
+        -moz-box-shadow: 0 0 15px 0px rgba($black, 0.5);
+        -webkit-box-shadow: 0 0 15px 0px rgba($black, 0.5);
+        max-width: 1200px;
+        
+    }
+}
+//2. Header
+//3. Fonts
+//4. Top Bar
+//5. Off-Canvas
+.off-canvas-wrap {
+    min-height: 100%;
+    .inner-wrap {
+        min-height: 100vh;
+        height: 100%;
+    }
+}
+//6. Main
+//7. Slideshow
+//8. Blog 
+//9. Sidebar
+//10. Links
+//11. Footer
+//12. Copyright
+
+#example.element {
+    background-color: transparent;
+}
+h1 {
+    font-family: "Dancing Script";
+    font-weight: bold;
+    color: $orange;
+}
+h2 {
+    color: $green;
+}
+h3 {
+    color: $green;
+    font-weight: bold;
+}
+h4 {
+    color: $orange;
+    font-weight: bold;
+}
+h5 {
+    font-weight: bold;
+}
\ No newline at end of file
diff --git a/scss/_topbar.scss b/scss/_topbar.scss
new file mode 100644 (file)
index 0000000..ce0f1be
--- /dev/null
@@ -0,0 +1,181 @@
+.contain-to-grid {
+    box-shadow: 0 5px 10px -1px $aluminum;
+    .top-bar {
+        height: 73px;
+        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
+        margin-bottom: 10px;
+    }
+}
+.tab-bar {
+    .tab-bar-section.middle {
+//        left: 0;
+//        right: 2.8125rem;
+        text-align: right;
+    }
+}
+.top-bar{
+    border-top-left-radius: 10px;
+    border-top-right-radius: 9px;
+}
+.top-bar-left {
+    border-top-left-radius: 10px;
+    border-top-right-radius: 9px;
+    background: $green;
+    float: none;
+    margin-left: auto;
+    margin-right: auto;
+    display: inline-block;
+    height: 60px;
+    width: 100%;
+    line-height: 1;
+    ul{
+        li {
+            
+            a {
+                letter-spacing: 0.055em;
+            }
+            &:first-child {
+                border-top-left-radius: 10px;
+                a {
+                    border-top-left-radius: 8px;
+                }
+            }
+            &:not(.has-form):not(.active) {
+                & > a:not(.button) {
+                    background: transparent;
+                }
+            }
+            &.active:not(.has-form) {
+                a:not(.button) {
+                    line-height: 60px;
+                }
+            }
+//            ul.dropdown {
+//                border-bottom: 4px solid $orange;
+//                margin-top: -1px;
+//                li {
+//                    border-radius: 0;
+//                    border-top: 1px solid $white;
+//                    height: 35px;
+//                    a {
+//                        border-radius: 0;
+//                        font-size: rem-calc(16);
+//                        height: 35px;
+//                    }
+//                    &:not(.has-form) {
+//                        a:not(.button) {
+//                            line-height: rem-calc(32);
+//                        }
+//                    } 
+//                }
+//            }
+//            &.drop-left {
+//                ul.dropdown {
+//                    padding-left: 21px;
+//                    padding-right: 250px;
+//                    top: 74px;
+//                    background: $white;
+//                    border-bottom-left-radius: 10px;
+//                    border-bottom-right-radius: 10px;
+//                    min-width: 500px;
+//                    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    -ms-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    -moz-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    li {
+//                        white-space: nowrap;
+//                        border-bottom: 1px solid #e7e7e8;
+//                        padding: 5px 0;
+//                        &.nav-img-container {
+//                            img {
+//                                position: absolute;
+//                                right: 20px;
+//                                top: 23px;
+//                                border: 6px solid #fdefd4;
+//                            }
+//                            border: none;
+//                        }
+//                        a {
+//                            padding-left: 0;
+//                            text-align: left;
+//                            font-size: 18px;
+//                            &:hover {
+//                                color: $d-blue;
+//                                text-shadow: 0 0 1px $green;
+//                                text-shadow: 1 0 1px $green;
+//                                text-shadow: 0 1 1px $green;
+//                                text-shadow: -1 0 1px $green;
+//                                text-shadow: 0 -1 1px $green;
+//                            }
+//                        }
+//                    }
+//                }
+//            }
+//            &.drop-right {
+//                ul.dropdown {
+//                    padding-left: 250px;
+//                    padding-right: 21px;
+//                    right: -1%;
+//                    left: auto;
+//                    top: 74px;
+//                    background: $white;
+//                    border-bottom-left-radius: 10px;
+//                    border-bottom-right-radius: 10px;
+//                    min-width: 500px;
+//                    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    -ms-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    -moz-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.5);
+//                    li {
+//                        white-space: nowrap;
+//                        background: $white;
+//                        text-align: right;
+//                        border-bottom: 1px solid #e7e7e8;
+//                        padding: 5px 0;
+//                        &.nav-img-container {
+//                            img {
+//                                position: absolute;
+//                                left: 20px;
+//                                top: 23px;
+//                                border: 6px solid #fdefd4;
+//                            }
+//                            border: none;
+//                        }
+//                        a {
+//                            padding-left: 0;
+//                            text-align: left;
+//                            font-size: 18px;
+//                            &:hover {
+//                                color: $d-blue;
+//                                text-shadow: 0 0 1px $green;
+//                                text-shadow: 1 0 1px $green;
+//                                text-shadow: 0 1 1px $green;
+//                                text-shadow: -1 0 1px $green;
+//                                text-shadow: 0 -1 1px $green;
+//                            }
+//                        }
+//                    }
+//                }
+//            }
+        }
+    }
+    & > ul > li {
+        position: relative;
+        &:before {
+            color: $white;
+            content: "|";
+            position: absolute;
+            top: 13px;
+            left: -15px;
+            font-size: 21px;
+            display:block;
+            padding: 0 10px;
+        }
+        &:first-child:before {
+            content: none;
+        }
+    }
+}
+.top-bar-section li:not(.has-form) a:not(.button){
+    padding: 0 1.25rem;
+}
\ No newline at end of file
diff --git a/scss/_wordpress.scss b/scss/_wordpress.scss
new file mode 100644 (file)
index 0000000..bdde512
--- /dev/null
@@ -0,0 +1,239 @@
+// Wordpress styles
+// Table of Contents
+// 01. Images
+
+
+// 01. Images
+// 02 Search and Post
+
+img.aligncenter {
+    display: block;
+    clear: both;
+    float:none;
+    padding:0;
+    margin-left: auto;
+    margin-right: auto;
+    }
+
+img.alignright {
+    padding: 0;
+    margin: 0 0 6px 11px;
+    display: inline;
+    }
+
+blockquote.alignleft,
+img.alignleft,
+.wp-caption.alignleft {
+    margin: rem-calc(7) rem-calc(35) rem-calc(7) 0;
+}
+
+blockquote.alignright,
+img.alignright,
+.wp-caption.alignright {
+    margin: rem-calc(7) 0 rem-calc(7) rem-calc(35);
+}
+img.alignleft {
+    padding: 0;
+    display: inline;
+    }
+img.alignleft, img.alignright, img.aligncenter, img.alignnone, div.wp-caption img {
+    border: 4px solid $white;
+    box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+    -webkit-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+    -moz-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+    -ms-box-shadow: 3px 3px 2px 0px rgba($black, 0.3);
+}
+
+.alignright {
+    float: right;
+}
+.alignnone {
+    float: none;
+}
+.alignleft {
+    float: left;
+}
+.wp-caption {
+    background: $charcoal;
+    width: auto;
+}
+.wp-caption-text {
+    font-family: Open Sans, sans-serif;
+    font-size: 9px;
+    color: $white;
+    font-style: italic;
+    margin: 0;
+    padding: 0 5px;
+}
+.gallery-one-title {
+    height: 45px;
+    font-size: 0.8em;
+    text-align: center;
+    font-family: sans-serif;
+    padding: 5px;
+}
+.gallery-holder {
+    margin: 10px 0 20px 0;
+}
+@include breakpoint(small down) {
+    img.alignright, img.alignleft, img.aligncenter {
+        width: 70% !important;
+        display: block;
+        margin-left: auto;
+        margin-right: auto;
+        float: none;
+        text-align: center;
+    }
+    div.wp-caption.alignright, div.wp-caption.alignleft {
+        width: 44% !important;
+        margin-left: auto;
+        margin-right: auto;
+        float: none;
+        text-align: center;
+    }
+    div.wp-caption.aligncenter {
+        width: 85% !important;
+        margin-left: auto;
+        margin-right: auto;
+        float: none;
+        text-align: center;
+    }
+    div.wp-caption.alignnone {
+        width: 85% !important;
+        float: none;
+    }
+    div.wp-caption.alignright, div.wp-caption.alignleft, div.wp-caption.aligncenter {
+        width: 100%;
+    }
+}
+@include breakpoint(medium down) {
+    img.aligncenter, img.alignnone {
+        width: 70% !important;
+        display: block;
+        margin-left: auto;
+        margin-right: auto;
+        float: none;
+        text-align: center;
+    }
+    div.wp-caption.aligncenter {
+        width: 74% !important;
+        margin-left: auto;
+        margin-right: auto;
+        float: none;
+        text-align: center;
+    }
+    div.wp-caption.aligncenter {
+        width: 100%;
+    }
+    div.wp-caption.alignnone {
+        width: 73% !important;
+        float: none;
+    }
+}
+
+.wp-caption {
+    max-width: 100%;
+    margin: 10px 20px;
+    padding: 5px;
+//    background-color: #f3f3f3;
+//    border: 1px solid #ddd;
+    text-align: center;
+    img {
+        width: 100%;
+    }
+    p.wp-caption-text {
+        padding: 5px;
+        width: 100%;
+        margin: 0;
+        color: black;
+        font-size: 12px;
+    }
+    &.aligncenter {
+        margin: 10px auto;
+    }
+}
+// end Images
+// 02 Search and Post
+@include breakpoint(small only) {
+    #blog-posts-over {
+        padding: 0 !important;
+        margin: 0 !important;
+    }
+}
+.blog-posts-container {
+    margin: 30px 0 30px;
+    embed, iframe, object, video {
+        max-width: 100%;
+    }
+    a {
+        text-decoration: none;
+    }
+    header.entry-header {
+        h2.entry-title {
+            a {
+                color: #222;
+                margin-left: 0;
+            }
+        }
+    }
+    .wp-caption .wp-caption-text, .gallery-caption, .entry-caption {
+        overflow: hidden;
+        color: #757575;
+        font-size: 0.857143rem;
+        font-style: italic;
+        line-height: 2;
+    }
+    .date {
+        font-size: 12px;
+    }
+    footer.entry-meta {
+        color: #757575;
+        font-size: 0.928571rem;
+        line-height: 1.84615;
+        margin-top: 1.71429rem;
+        clear: both;
+        float: none;
+        margin-right: auto;
+    }
+    footer {
+        background: none;
+        clear: both;
+        padding: 15px 0 0;
+        position: relative;
+        text-align: center;
+    }
+}
+#content-wrapper {
+    h1, h2, h3, h4, h5, h6 {
+        clear: both;
+    }
+}
+.content {
+    background: #fff;
+/*    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
+    -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
+    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);*/
+    box-shadow: 3px 3px 8px -1px darkgrey;
+}
+#searchform_container {
+    margin-top: 20px;
+}
+#searchform {
+    max-width: 100%;
+    text-align: center;
+    div {
+        input.blogbutton {
+            @include gradient(#1999ce, #107098);
+        }
+    }
+}
+#blog-side-info {
+    border-left: 1px solid grey;
+    margin-top: 30px;
+    padding-left: 20px;
+    @include breakpoint(small only) {
+        text-align: center;
+    }
+}
+
+// End Search and Posts
diff --git a/scss/admin/tinymce.css b/scss/admin/tinymce.css
new file mode 100644 (file)
index 0000000..24e0f6a
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+GaslightMedia, all rights reserved.
+*/
+/* 
+    Created on : May 22, 2015, 11:19:44 AM
+    Author     : laury
+*/
+ /*
+ * To make the TINYMCE editor in wordpress reflect some of the default styles
+ * we have active on all our themes, thus leading to a more true WYSIWYG
+ * experience.
+ */
+#tinymce h1 {
+    clear: both;
+}
+
+#tinymce h2 {
+    clear: both;
+}
+
+#tinymce h3 {
+    clear: both;   
+}
+
+#tinymce h4 {
+    clear: both;   
+}
+
+#tinymce h5 {
+    clear: both;   
+}
+
+#tinymce h6 {
+    clear: both;   
+} 
\ No newline at end of file
diff --git a/scss/app.scss b/scss/app.scss
new file mode 100644 (file)
index 0000000..5799bec
--- /dev/null
@@ -0,0 +1,68 @@
+@charset 'utf-8';
+
+@import 'settings';
+@import 'foundation';
+@import 'motion-ui';
+@import "mixins";
+@include foundation-global-styles;
+@include foundation-grid;
+// @include foundation-flex-grid;
+@include foundation-typography;
+@include foundation-button;
+@include foundation-forms;
+// @include foundation-range-input;
+@include foundation-accordion;
+@include foundation-accordion-menu;
+@include foundation-badge;
+@include foundation-breadcrumbs;
+@include foundation-button-group;
+@include foundation-callout;
+@include foundation-close-button;
+@include foundation-menu;
+@include foundation-menu-icon;
+@include foundation-drilldown-menu;
+@include foundation-dropdown;
+@include foundation-dropdown-menu;
+@include foundation-flex-video;
+@include foundation-label;
+@include foundation-media-object;
+@include foundation-off-canvas;
+@include foundation-orbit;
+@include foundation-pagination;
+@include foundation-progress-bar;
+// @include foundation-progress-element;
+// @include foundation-meter-element;
+@include foundation-slider;
+@include foundation-sticky;
+@include foundation-reveal;
+@include foundation-switch;
+@include foundation-table;
+@include foundation-tabs;
+@include foundation-thumbnail;
+@include foundation-title-bar;
+@include foundation-tooltip;
+@include foundation-top-bar;
+@include foundation-visibility-classes;
+@include foundation-float-classes;
+// @include foundation-flex-classes;
+//
+@include motion-ui-transitions;
+@include motion-ui-animations;
+@import "wordpress";
+@import "defaults";
+@import "body";
+@import "page.header";
+@import "topbar";
+@import "main";
+@import "slideshow";
+@import "plugins";
+@import "blog";
+@import "sidebar";
+@import "search";
+@import "page.footer";
+@import "copyright";
+@import "structure";
+@import "left-off-canvas";
+//@import "right-off-canvas";
+
+
diff --git a/scss/mixins/_gradient.scss b/scss/mixins/_gradient.scss
new file mode 100644 (file)
index 0000000..47f4364
--- /dev/null
@@ -0,0 +1,10 @@
+/* 
+    Created on : Mar 5, 2015, 2:57:35 PM
+    Author     : laury
+*/
+
+@mixin gradient($from, $to) {
+    background: -webkit-linear-gradient(left, $from 5%, $to 100%);
+    background: -moz-linear-gradient(center top, $from 5%, $to 100%);
+    background: -ms-linear-gradient(left, $from 5%, $to 100%);
+}
diff --git a/scss/mixins/_off-canvas-arrow.scss b/scss/mixins/_off-canvas-arrow.scss
new file mode 100644 (file)
index 0000000..07180f3
--- /dev/null
@@ -0,0 +1,42 @@
+@mixin off-canvas-arrow($direction: down, $color: white, $size: 20px) {
+  border-left: $size - 5 solid transparent;
+  border-right: $size - 5 solid transparent;
+   @if $direction == 'up' {
+    border-bottom: $size solid $color;
+    border-top: 0;
+    // if width is not passed, or empty do this
+   } @else {
+    border-top: $size solid $color;
+    border-bottom: 0;
+   }
+}
+@mixin off-canvas-point($direction: right, $color: red, $size: 1rem) {
+    @if $direction == 'down' {
+        content: '>';
+        transform: rotate(90deg);
+        color: $color;
+        height: $size;
+        width: $size;
+        font-size: $size;
+        font-weight: bold;
+        display: block;
+    } @if $direction == 'up' {
+        content: '>';
+        transform: rotate(-90deg);
+        color: $color;
+        height: $size;
+        width: $size;
+        font-size: $size;
+        font-weight: bold;
+        display: block;
+    } @else if $direction == 'right' {
+        content: '>';
+        transform: rotate(0deg);
+        color: $color;
+        height: $size;
+        width: $size;
+        font-size: $size;
+        font-weight: bold;
+        display: block;
+    }
+}
\ No newline at end of file
diff --git a/scss/plugins/_events.scss b/scss/plugins/_events.scss
new file mode 100644 (file)
index 0000000..7362cbc
--- /dev/null
@@ -0,0 +1,3 @@
+#blog-posts-over article.ai1ec_event {
+    padding: 10px;
+}
\ No newline at end of file
diff --git a/scss/plugins/_gravityForms.scss b/scss/plugins/_gravityForms.scss
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/scss/plugins/_nextgen.scss b/scss/plugins/_nextgen.scss
new file mode 100644 (file)
index 0000000..3bb3619
--- /dev/null
@@ -0,0 +1,40 @@
+/* NextGen Gallery */
+.ngg-gallery-thumbnail, 
+.ngg-gallery-thumbnail-box {
+    float: none !important;
+}
+.gallery li a img { // without this images will overlap each other at certain widths
+    display: block;
+    width: 100%;
+}
+.ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {
+    float: none !important;
+}
+.ngg-album-compact h4 .ngg-album-desc {
+    height: auto !important;
+    font-family: $font-family-serif;
+    font-weight: 400;
+}
+.ngg-album-compact .album-meta-wrapper h4 a {
+    font-style: normal;
+}
+.album-meta-wrapper {
+    display: block;
+    height: 54px;
+    margin-bottom: 20px;
+}
+.ngg-glmalbums {
+    margin: 10px 0;
+}
+/* Ninja Forms */
+.ninja-forms-form-wrap {
+    max-width: 600px;
+    margin: 0 auto;
+    input[type=submit] {
+        @include button();
+        display: block;
+        margin: 0 auto;
+    }
+}
+
+/* End NextGen Gallery */
diff --git a/sidebar.php b/sidebar.php
new file mode 100644 (file)
index 0000000..03ba537
--- /dev/null
@@ -0,0 +1,6 @@
+<!--
+                        <div id="side-nav" class="show-for-large-up" data-equalizer-watch>
+                            <div class="row collapse">
+                                <?php //glm_side_menu(); ?>
+                            </div>
+                        </div>-->
diff --git a/style.css b/style.css
new file mode 100644 (file)
index 0000000..5591b2f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,7 @@
+/*
+Theme Name: PetosegaRebuild
+Author: Gaslight Media
+Author URI: http://www.gaslightmedia.com
+Description: A theme for PetosegaRebuild
+Version: 1.0
+*/