[
  {
    "path": ".bithoundrc",
    "content": "{\n\t\"ignore\": [\n\t\t\"**/*grunt*\",\n\t    \"**/src/**\"\n\t  ]\n}"
  },
  {
    "path": ".gitignore",
    "content": ".git\n.fuse*\nnode_modules/*\n.DS_Store"
  },
  {
    "path": ".jscsrc",
    "content": "{\n    \"preset\": \"wordpress\",\n    \"fileExtensions\": [ \".js\" ],\n    \"excludeFiles\": [\n    \t\"js/main.js\",\n    \t\"src/\"\n    ]\n}"
  },
  {
    "path": ".travis.yml",
    "content": "# Travis CI configuration file.\n# @link https://travis-ci.org/\n\n# Based on the methods seen in the Twenty Sixteen WordPress theme\n# @link https://github.com/WordPress/twentysixteen/\n\n# Declare project language and PHP versions to test against.\n# @link http://about.travis-ci.org/docs/user/languages/php/\nlanguage: php\n\n# Declare versions of PHP to use. Use one decimal max.\nphp:\n    - \"7.0\"\n    - \"5.6\"\n    - \"5.5\"\n    - \"5.4\"\n    # Current $required_php_version for WordPress: 5.2.4\n\n# Ditch sudo and use containers.\n# @link http://docs.travis-ci.com/user/migrating-from-legacy/#Why-migrate-to-container-based-infrastructure%3F\n# @link http://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure\nsudo: false\n\n# Declare which versions of WordPress to test against.\n# Also declare whether or not to test in Multisite.\nenv:\n    # Trunk (current version in development is 4.4)\n    # @link https://github.com/WordPress/WordPress\n    - WP_VERSION=master WP_MULTISITE=0\n\n# Use this to prepare your build for testing.\n# e.g. copy database configurations, environment variables, etc.\n# Failures in this section will result in build status 'errored'.\nbefore_script:\n    # Set up WordPress installation.\n    - export WP_DEVELOP_DIR=/tmp/wordpress/\n    - mkdir -p $WP_DEVELOP_DIR\n    # Use the Git mirror of WordPress.\n    - git clone --depth=1 --branch=\"$WP_VERSION\" git://develop.git.wordpress.org/ $WP_DEVELOP_DIR\n    # Set up Twenty Sixteen theme information.\n    - theme_slug=$(basename $(pwd))\n    - theme_dir=$WP_DEVELOP_DIR/src/wp-content/themes/$theme_slug\n    - cd ..\n    - mv $theme_slug $theme_dir\n    # Set up WordPress configuration.\n    - cd $WP_DEVELOP_DIR\n    - echo $WP_DEVELOP_DIR\n    - cp wp-tests-config-sample.php wp-tests-config.php\n    #- sed -i \"s/youremptytestdbnamehere/wordpress_test/\" wp-tests-config.php\n    #- sed -i \"s/yourusernamehere/root/\" wp-tests-config.php\n    #- sed -i \"s/yourpasswordhere//\" wp-tests-config.php\n    # Create WordPress database.\n    - mysql -e 'CREATE DATABASE wordpress_test;' -uroot\n    # Install CodeSniffer for WordPress Coding Standards checks.\n    #- mkdir php-codesniffer && curl -L https://github.com/squizlabs/PHP_CodeSniffer/archive/master.tar.gz | tar xz --strip-components=1 -C php-codesniffer\n    # Install WordPress Coding Standards.\n    #- mkdir wordpress-coding-standards && curl -L https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/archive/master.tar.gz | tar xz --strip-components=1 -C wordpress-coding-standards\n    # Hop into CodeSniffer directory.\n    #- cd php-codesniffer\n    # Set install path for WordPress Coding Standards\n    # @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941\n    #- scripts/phpcs --config-set installed_paths ../wordpress-coding-standards\n    # Hop into themes directory.\n    - cd $theme_dir\n    # After CodeSniffer install you should refresh your path.\n    #- phpenv rehash\n    # Install JSCS: JavaScript Code Style checker\n    # @link http://jscs.info/\n    - npm install -g jscs\n    # Install JSHint, a JavaScript Code Quality Tool\n    # @link http://jshint.com/docs/\n    - npm install -g jshint\n    - wget https://develop.svn.wordpress.org/trunk/.jshintrc\n\n# Run test script commands.\n# Default is specific to project language.\n# All commands must exit with code 0 on success. Anything else is considered failure.\nscript:\n    # Search theme for PHP syntax errors.\n    - find . \\( -name '*.php' \\) -exec php -lf {} \\;\n    # Run the theme through JSHint\n    - jshint .\n    # Run the theme through JavaScript Code Style checker\n    - jscs .\n    # WordPress Coding Standards\n    # @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\n    # @link http://pear.php.net/package/PHP_CodeSniffer/\n    # -p flag: Show progress of the run.\n    # -s flag: Show sniff codes in all reports.\n    # -v flag: Print verbose output.\n    # -n flag: Do not print warnings (shortcut for --warning-severity=0)\n    # --standard: Use WordPress as the standard.\n    # --extensions: Only sniff PHP files.\n    #- $WP_DEVELOP_DIR/php-codesniffer/scripts/phpcs -p -s -v -n . --standard=./codesniffer.ruleset.xml --extensions=php"
  },
  {
    "path": "404.php",
    "content": "<?php\n/**\n * The template for displaying 404 pages (Not Found).\n *\n * @package Casper\n */\n\nget_header(); \n?>\n\t<div id=\"primary\" class=\"content-area\">\n\t\t<main id=\"main\" class=\"site-main\" role=\"main\">\n\n\t\t\t<section class=\"error-404 not-found hentry\">\n\t\t\t\t<header class=\"page-header\">\n\t\t\t\t\t<h1 class=\"entry-title\"><?php _e( 'Oops! That page can&rsquo;t be found.', 'casper' ); ?></h1>\n\t\t\t\t</header><!-- .page-header -->\n\n\t\t\t\t<div class=\"page-content\">\n\t\t\t\t\t<img class=\"alignright\" src=\"<?php echo get_template_directory_uri(); ?>/img/404-ghost@2x.png\" width=\"96\" height=\"150\">\n\t\t\t\t\t<p><?php _e( 'We tried searching for what you were looking for, but didn&apos;t find anything. Please use the search form below.', 'casper'); ?></p>\n\t\t\t\t\t\n\t\t\t\t\t<p><?php get_search_form(); ?></p>\n\n\t\t\t\t</div><!-- .page-content -->\n\t\t\t</section><!-- .error-404 -->\n\n\t\t</main><!-- #main -->\n\t</div><!-- #primary -->\n<?php get_sidebar(); ?>\n<?php get_footer(); ?>\n"
  },
  {
    "path": "Gruntfile.js",
    "content": "    module.exports = function( grunt ) {\n    require( 'load-grunt-tasks' )( grunt, { scope: 'devDependencies' });\n    require( 'time-grunt' )( grunt );\n    grunt.initConfig({\n        pkg: grunt.file.readJSON( 'package.json' ),\n        banner: '/*\\n' +\n                '  Theme Name:       <%= pkg.name%>\\n' +\n                '  Theme URI:        <%= pkg.homepage %>\\n' +\n                '  Author:           Lacy Morrow\\n' +\n                '  Author URI:       http://lacymorrow.com\\n' +\n                '  Description:      <%= pkg.description %>\\n' +\n                '  Version:          <%= pkg.version%>\\n' +\n                '  License:          GNU General Public License v2.0\\n' +\n                '  License URI:      http://www.gnu.org/licenses/gpl-2.0.html\\n' +\n                '  Text Domain:      casper\\n' +\n                '  Domain Path:      /languages/\\n' +\n                '  Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\\n' +\n                '  GitHub Theme URI: <%= pkg.repository.url %>\\n' +\n                '  GitHub Branch:    master\\n' +\n                '  Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\\n' +\n                '*/',\n        autoprefixer: {\n            options: {\n                browsers: ['> 1%', 'last 2 versions', 'Firefox ESR', 'Opera 12.1', 'ie 9']\n            },\n            casper: {\n                expand: true,\n                flatten: true,\n                src: '<%= concat.casper.dest %>'\n            }\n        },\n        concat: {\n            options: {\n                banner: '<%= banner %>\\n',\n                stripBanners: true\n            },\n            casper: {\n                src: ['css/style.css', 'src/css/**/*.css'],\n                dest: 'css/style.css'\n            }\n        },\n        csscomb: {\n            casper: {\n                src: '<%= concat.casper.dest %>',\n                dest: '<%= concat.casper.dest %>'\n            }\n        },\n        csslint: {\n            src: [\n                '<%= concat.casper.dest %>'\n            ]\n        },\n        cssmin: {\n            casper: {\n                options: {\n                    noAdvanced: true,\n                    compatibility: 'ie8',\n                    keepSpecialComments: 0\n                },\n                casper: {\n                    src: 'css/style.css',\n                    dest: 'style.css'\n                }\n            }\n        },\n        jshint: {\n            casper: ['Gruntfile.js', 'src/js/**/*.js', 'js/**/*.js'],\n            options: {\n                globals: {\n                    jQuery: true,\n                    console: true,\n                    module: true,\n                    document: true\n                }\n            }\n        },\n        less: {\n            casper: {\n                files: {\n                    'css/style.css': ['src/less/style.less'],\n                    'css/rtl.css': ['src/less/rtl.less'],\n                    'css/admin.css': ['src/less/admin.less']\n                }\n            }\n        },\n        checktextdomain: {\n           options:{\n              text_domain: 'casper',\n              correct_domain: true, //Will correct missing/variable domains\n              keywords: [ //WordPress localisation functions\n                    '__:1,2d',\n                    '_e:1,2d',\n                    '_x:1,2c,3d',\n                    'esc_html__:1,2d',\n                    'esc_html_e:1,2d',\n                    'esc_html_x:1,2c,3d',\n                    'esc_attr__:1,2d',\n                    'esc_attr_e:1,2d',\n                    'esc_attr_x:1,2c,3d',\n                    '_ex:1,2c,3d',\n                    '_n:1,2,4d',\n                    '_nx:1,2,4c,5d',\n                    '_n_noop:1,2,3d',\n                    '_nx_noop:1,2,3c,4d'\n              ]\n           },\n           files: {\n               src:  [ '*.php', 'inc/*.php' ], //All php files\n               expand: true\n           }\n        },\n        pot: {\n            options: {\n                text_domain: 'casper',\n                dest: 'languages/',\n                keywords: [ //WordPress localisation functions\n                  '__:1',\n                  '_e:1',\n                  '_x:1,2c',\n                  'esc_html__:1',\n                  'esc_html_e:1',\n                  'esc_html_x:1,2c',\n                  'esc_attr__:1',\n                  'esc_attr_e:1',\n                  'esc_attr_x:1,2c',\n                  '_ex:1,2c',\n                  '_n:1,2',\n                  '_nx:1,2,4c',\n                  '_n_noop:1,2',\n                  '_nx_noop:1,2,3c'\n                 ]\n            },\n            files:{\n                src:  [ '*.php', 'inc/*.php' ], //Parse all php files\n                expand: true\n            }\n        },\n        uglify: {\n            options: {\n                banner: '/* jshint ignore: start */\\n/*! <%= pkg.name %> <%= grunt.template.today(\"dd-mm-yyyy\") %> */\\n'\n            },\n            casper: {\n                src: 'src/js/**/*.js',\n                dest: 'js/main.js'\n            }\n        },\n        watch: {\n            options: {\n                livereload: true\n            },\n            casper: {\n                files: ['Gruntfile.js', 'src/**/*'],\n                tasks: ['default'],\n                options: {\n                    nospawn: true\n                }\n            }\n        }\n    });\n    grunt.registerTask( 'i18n', ['checktextdomain', 'pot']);\n    grunt.registerTask( 'js', [ /* 'jshint', */ 'uglify']);\n    grunt.registerTask( 'css', ['less', 'concat', 'csscomb', /* 'csslint', */ 'autoprefixer', 'cssmin']);\n    grunt.registerTask( 'default', ['css', 'js']);\n\n};\n"
  },
  {
    "path": "archive.php",
    "content": "<?php\n/**\n * The template for displaying Archive pages.\n *\n * Learn more: http://codex.wordpress.org/Template_Hierarchy\n *\n * @package Casper\n */\n\nget_header(); ?>\n\n\t<section id=\"primary\" class=\"content-area\">\n\t\t<main id=\"main\" class=\"site-main\" role=\"main\">\n\n\t\t<?php if ( have_posts() ) : ?>\n\n\t\t\t<header class=\"page-header\">\n\t\t\t\t<h1 class=\"page-title\">\n\t\t\t\t\t<?php\n\t\t\t\t\t\tif ( is_category() ) :\n\t\t\t\t\t\t\tsingle_cat_title();\n\n\t\t\t\t\t\telseif ( is_tag() ) :\n\t\t\t\t\t\t\tsingle_tag_title();\n\n\t\t\t\t\t\telseif ( is_author() ) :\n\t\t\t\t\t\t\tprintf( __( 'Author: %s', 'casper' ), '<span class=\"vcard\">' . get_the_author() . '</span>' );\n\n\t\t\t\t\t\telseif ( is_day() ) :\n\t\t\t\t\t\t\tprintf( __( 'Day: %s', 'casper' ), '<span>' . get_the_date() . '</span>' );\n\n\t\t\t\t\t\telseif ( is_month() ) :\n\t\t\t\t\t\t\tprintf( __( 'Month: %s', 'casper' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'casper' ) ) . '</span>' );\n\n\t\t\t\t\t\telseif ( is_year() ) :\n\t\t\t\t\t\t\tprintf( __( 'Year: %s', 'casper' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'casper' ) ) . '</span>' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-aside' ) ) :\n\t\t\t\t\t\t\t_e( 'Asides', 'casper' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-gallery' ) ) :\n\t\t\t\t\t\t\t_e( 'Galleries', 'casper');\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-image' ) ) :\n\t\t\t\t\t\t\t_e( 'Images', 'casper');\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-video' ) ) :\n\t\t\t\t\t\t\t_e( 'Videos', 'casper' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-quote' ) ) :\n\t\t\t\t\t\t\t_e( 'Quotes', 'casper' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-link' ) ) :\n\t\t\t\t\t\t\t_e( 'Links', 'casper' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-status' ) ) :\n\t\t\t\t\t\t\t_e( 'Statuses', 'casper' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-audio' ) ) :\n\t\t\t\t\t\t\t_e( 'Audios', 'casper' );\n\n\t\t\t\t\t\telseif ( is_tax( 'post_format', 'post-format-chat' ) ) :\n\t\t\t\t\t\t\t_e( 'Chats', 'casper' );\n\n\t\t\t\t\t\telse :\n\t\t\t\t\t\t\t_e( 'Archives', 'casper' );\n\n\t\t\t\t\t\tendif;\n\t\t\t\t\t?>\n\t\t\t\t</h1>\n\t\t\t\t<?php\n\t\t\t\t\t// Show an optional term description.\n\t\t\t\t\t$term_description = term_description();\n\t\t\t\t\tif ( ! empty( $term_description ) ) :\n\t\t\t\t\t\tprintf( '<div class=\"taxonomy-description\">%s</div>', $term_description );\n\t\t\t\t\tendif;\n\t\t\t\t?>\n\t\t\t</header><!-- .page-header -->\n\n\t\t\t<?php /* Start the Loop */ ?>\n\t\t\t<?php while ( have_posts() ) : the_post(); ?>\n\n\t\t\t\t<?php\n\t\t\t\t\t/* Include the Post-Format-specific template for the content.\n\t\t\t\t\t * If you want to override this in a child theme, then include a file\n\t\t\t\t\t * called content-___.php (where ___ is the Post Format name) and that will be used instead.\n\t\t\t\t\t */\n\t\t\t\t\tget_template_part( 'content', get_post_format() );\n\t\t\t\t?>\n\n\t\t\t<?php endwhile; ?>\n\n\t\t\t<?php casper_paging_nav(); ?>\n\n\t\t<?php else : ?>\n\n\t\t\t<?php get_template_part( 'content', 'none' ); ?>\n\n\t\t<?php endif; ?>\n\n\t\t</main><!-- #main -->\n\t</section><!-- #primary -->\n\n<?php get_sidebar(); ?>\n<?php get_footer(); ?>\n"
  },
  {
    "path": "changelog.txt",
    "content": "= 1.1.1 =\n\n* Add auto-excerpt option - https://github.com/lacymorrow/casper/issues/17\n\n* Increase header size to <h1> - https://github.com/lacymorrow/casper/issues/31\n\n* Fix widget layout issues; Made responsive - https://github.com/lacymorrow/casper/issues/37\n\n* Add Excerpts - https://github.com/lacymorrow/casper/issues/43\n\n* Fix menu on mobile - https://github.com/lacymorrow/casper/issues/47\n\n* Fix inline emoticons breaking paragraph - https://github.com/lacymorrow/casper/issues/49\n\n* Fix spacing in tag listings - https://github.com/lacymorrow/casper/issues/50\n\n* Add Flickr/stack-overflow/behance/codepen/deviantart/lastfm/spotify/soundclod icons - https://github.com/lacymorrow/casper/issues/51\n\n* Clear DOM after posts -  https://github.com/lacymorrow/casper/issues/52\n\n* Make tags, categories, dates optional - https://github.com/lacymorrow/casper/issues/55\n\n* Fix captioned images extra padding - https://github.com/lacymorrow/casper/issues/57\n\n* Add author image - https://github.com/lacymorrow/casper/issues/58\n\n* Create child theme - copy casper-child to themes directory and activate - https://github.com/lacymorrow/casper/issues/59\n\n* Add custom 'Read More' link option - https://github.com/lacymorrow/casper/issues/61\n\n* Rename casper-wp to casper\n\n* Add `grunt i18n` for theme internationalization\n\n* Add edit link to content.php\n\n\n= 1.1.0 =\n\n* Icon fixes\n\n* New icon font - Font Awesome\n\n* Clean up outdated info.\n\n= 1.0.17 =\n\n* Sub-menu support\n\n* New icons\n\n* Minimal mobile enhancements\n\n* Translation improvements for fix-size elements\n\n* Change Wordpress to WordPress in screenshot"
  },
  {
    "path": "comments.php",
    "content": "<?php\n/**\n * The template for displaying Comments.\n *\n * The area of the page that contains both current comments\n * and the comment form.\n *\n * @package Casper\n */\n\n/*\n * If the current post is protected by a password and\n * the visitor has not yet entered the password we will\n * return early without loading the comments.\n */\nif ( post_password_required() ) {\n\treturn;\n}\n?>\n\n<div id=\"comments\" class=\"comments-area\">\n\n\t<?php // You can start editing here -- including this comment! ?>\n\n\t<?php if ( have_comments() ) : ?>\n\t\t<h2 class=\"comments-title\">\n\t\t\t<?php\n\t\t\t\tprintf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'casper' ),\n\t\t\t\t\tnumber_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );\n\t\t\t?>\n\t\t</h2>\n\n\t\t<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>\n\t\t<nav id=\"comment-nav-above\" class=\"comment-navigation\" role=\"navigation\">\n\t\t\t<h1 class=\"screen-reader-text\"><?php _e( 'Comment navigation', 'casper' ); ?></h1>\n\t\t\t<div class=\"nav-previous\"><?php previous_comments_link( __( '&larr; Older Comments', 'casper' ) ); ?></div>\n\t\t\t<div class=\"nav-next\"><?php next_comments_link( __( 'Newer Comments &rarr;', 'casper' ) ); ?></div>\n\t\t</nav><!-- #comment-nav-above -->\n\t\t<?php endif; // check for comment navigation ?>\n\n\t\t<ol class=\"comment-list\">\n\t\t\t<?php\n\t\t\t\twp_list_comments( array(\n\t\t\t\t\t'style'      => 'ol',\n\t\t\t\t\t'short_ping' => true,\n\t\t\t\t) );\n\t\t\t?>\n\t\t</ol><!-- .comment-list -->\n\n\t\t<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>\n\t\t<nav id=\"comment-nav-below\" class=\"comment-navigation\" role=\"navigation\">\n\t\t\t<h1 class=\"screen-reader-text\"><?php _e( 'Comment navigation', 'casper' ); ?></h1>\n\t\t\t<div class=\"nav-previous\"><?php previous_comments_link( __( '&larr; Older Comments', 'casper' ) ); ?></div>\n\t\t\t<div class=\"nav-next\"><?php next_comments_link( __( 'Newer Comments &rarr;', 'casper' ) ); ?></div>\n\t\t</nav><!-- #comment-nav-below -->\n\t\t<?php endif; // check for comment navigation ?>\n\n\t<?php endif; // have_comments() ?>\n\n\t<?php\n\t\t// If comments are closed and there are comments, let's leave a little note, shall we?\n\t\tif ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :\n\t?>\n\t\t<p class=\"no-comments\"><?php _e( 'Comments are closed.', 'casper' ); ?></p>\n\t<?php endif; ?>\n\n\t<?php comment_form(); ?>\n\n</div><!-- #comments -->\n"
  },
  {
    "path": "content-none.php",
    "content": "<?php\n/**\n * The template part for displaying a message that posts cannot be found.\n *\n * Learn more: http://codex.wordpress.org/Template_Hierarchy\n *\n * @package Casper\n */\n?>\n\n<section class=\"no-results not-found hentry\">\n\t<header class=\"page-header\">\n\t\t<h1 class=\"page-title\"><?php _e( 'Nothing Found', 'casper' ); ?></h1>\n\t</header><!-- .page-header -->\n\n\t<div class=\"page-content\">\n\t\t<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>\n\n\t\t\t<p><?php printf( __( 'Ready to publish your first post? <a href=\"%1$s\">Get started here</a>.', 'casper' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>\n\n\t\t<?php elseif ( is_search() ) : ?>\n\n\t\t\t<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'casper' ); ?></p>\n\t\t\t<?php get_search_form(); ?>\n\n\t\t<?php else : ?>\n\n\t\t\t<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'casper' ); ?></p>\n\t\t\t<?php get_search_form(); ?>\n\n\t\t<?php endif; ?>\n\t</div><!-- .page-content -->\n</section><!-- .no-results -->\n"
  },
  {
    "path": "content-page.php",
    "content": "<?php\n/**\n * The template used for displaying page content in page.php\n *\n * @package Casper\n */\n?>\n<?php\n    /* translators: used between list items, there is a space after the comma */\n    $category_list = get_the_category_list( __( ', ', 'casper' ) );\n\n    /* translators: used between list items, there is a space after the comma */\n    $tag_list = get_the_tag_list( '', __( ', ', 'casper' ) );\n\n    if ( ! casper_categorized_blog() ) {\n        // This blog only has 1 category so we just need to worry about tags in the meta text\n        if ( '' != $tag_list ) {\n            $meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n        } else {\n            $meta_text = __( 'Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n        }\n\n    } else {\n        // But this blog has loads of categories so we should probably display them here\n        if ( '' != $tag_list ) {\n            $meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n        } else {\n            $meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n        }\n\n    } // end check for categories on this blog\n?>\n<article id=\"post-<?php the_ID(); ?>\" <?php post_class(); ?>>\n    <header class=\"post-header\">\n        <?php if ( 'post' == get_post_type() ) : ?>\n            <span class=\"post-meta\">\n                <?php \n                    if(  false == get_theme_mod( 'casper_hide_dates') ) {\n                        casper_posted_on(); \n                    }\n                    if(  false == get_theme_mod( 'casper_hide_categories') ) {\n                        printf( __( ' | ', 'casper' ).'%1$s', $category_list );\n                    }\n                    if(  false == get_theme_mod( 'casper_hide_tags') ) {\n                        if ( '' != $tag_list ) { _e(' in ', 'casper'); } printf($tag_list); \n                    }\n                    edit_post_link( __( 'Edit&rarr;', 'casper' ), '<span class=\"edit-link\">&nbsp;&bull;&nbsp;', '</span>' ); \n                ?>\n            </span>\n        <?php endif; ?>\n        <h1 class=\"post-title\"><a href=\"<?php the_permalink(); ?>\" rel=\"bookmark\"><?php the_title(); ?></a></h1>\n        <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.\n            $image_id = get_post_thumbnail_id();\n            $thumb_url = wp_get_attachment_image_src($image_id,'thumbnail', true);\n            $medium_url = wp_get_attachment_image_src($image_id,'medium', true);\n            $large_url = wp_get_attachment_image_src($image_id,'large', true);\n        ?>\n\n            <img data-src='<480:<?php echo $thumb_url[0]; ?>, <768:<?php echo $medium_url[0]; ?>, >768:<?php echo $large_url[0]; ?>' />\n            <noscript><?php the_post_thumbnail('thumbnail'); ?></noscript>\n        <?php } ?>\n    </header><!-- .entry-header -->\n\t<div class=\"post-content\">\n\t\t<?php the_content(); ?>\n        <div class=\"clear\">&nbsp;</div>\n\t</div><!-- .entry-content -->\n\t<?php edit_post_link( __( 'Edit', 'casper' ), '<footer class=\"entry-footer\"><span class=\"edit-link\">', '</span></footer>' ); ?>\n</article><!-- #post-## -->"
  },
  {
    "path": "content-single.php",
    "content": "<?php\n/**\n * @package Casper\n */\n?>\n<?php\n\t/* translators: used between list items, there is a space after the comma */\n\t$category_list = get_the_category_list( __( ', ', 'casper' ) );\n\n\t/* translators: used between list items, there is a space after the comma */\n\t$tag_list = get_the_tag_list( '', __( ', ', 'casper' ) );\n\n\tif ( ! casper_categorized_blog() ) {\n\t\t// This blog only has 1 category so we just need to worry about tags in the meta text\n\t\tif ( '' != $tag_list ) {\n\t\t\t$meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n\t\t} else {\n\t\t\t$meta_text = __( 'Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n\t\t}\n\n\t} else {\n\t\t// But this blog has loads of categories so we should probably display them here\n\t\tif ( '' != $tag_list ) {\n\t\t\t$meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n\t\t} else {\n\t\t\t$meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" rel=\"bookmark\">permalink</a>.', 'casper' );\n\t\t}\n\n\t} // end check for categories on this blog\n?>\n<article id=\"post-<?php the_ID(); ?>\" <?php post_class(); ?>>\n    <header class=\"post-header\">\n        <?php if ( 'post' == get_post_type() ) : ?>\n        \t<span class=\"post-meta\">\n        \t    <?php \n        \t        if(  false == get_theme_mod( 'casper_hide_dates') ) {\n        \t            casper_posted_on(); \n        \t        }\n        \t        if(  false == get_theme_mod( 'casper_hide_categories') ) {\n        \t            printf( __( ' | ', 'casper' ).'%1$s', $category_list );\n        \t        }\n        \t        if(  false == get_theme_mod( 'casper_hide_tags') ) {\n        \t            if ( '' != $tag_list ) { _e(' in ', 'casper'); } printf($tag_list); \n        \t        }\n        \t    \tedit_post_link( __( 'Edit&rarr;', 'casper' ), '<span class=\"edit-link\">&nbsp;&bull;&nbsp;', '</span>' ); \n        \t    ?>\n        \t</span>\n\t\t<?php endif; ?>\n        <h1 class=\"post-title\"><a href=\"<?php the_permalink(); ?>\" rel=\"bookmark\"><?php the_title(); ?></a></h1>\n        <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.\n        \t$image_id = get_post_thumbnail_id();\n        \t$thumb_url = wp_get_attachment_image_src($image_id,'thumbnail', true);\n\t\t\t$medium_url = wp_get_attachment_image_src($image_id,'medium', true);\n\t\t\t$large_url = wp_get_attachment_image_src($image_id,'large', true);\n\t\t?>\n\n        \t<img data-src='<480:<?php echo $thumb_url[0]; ?>, <768:<?php echo $medium_url[0]; ?>, >768:<?php echo $large_url[0]; ?>' />\n\t\t\t<noscript><?php the_post_thumbnail('thumbnail'); ?></noscript>\n\t    <?php } ?>\n\n    </header>\n    <?php if ( is_search() ) : // Only display Excerpts for Search ?>\n\t\t<section class=\"post-excerpt\">\n\t        <p><?php the_excerpt(); ?></p>\n\t    </section><!-- .entry-summary -->\n\t<?php else : ?>\n\t\t<section class=\"post-content\">\n\t\t    <?php the_content( __( '&hellip;&nbsp<span class=\"meta-nav\">&rarr;</span>', 'casper' ) ); ?>\n\t\t    <?php\n\t\t\t\twp_link_pages( array(\n\t\t\t\t\t'before' => '<div class=\"page-links\">' . __( 'Pages:', 'casper' ),\n\t\t\t\t\t'after'  => '</div>',\n\t\t\t\t) );\n\t\t\t?>\n\t\t\t<div class=\"clear\">&nbsp;</div>\n\t\t</section>\n\t<?php endif; ?>\n\n\t<footer class=\"post-footer\">\n\n\t    <section class=\"author\">\n\t    \t<?php echo get_avatar( get_the_author_meta( 'ID' ) , 100 ); ?>\n\t        <h4><?php the_author_link(); ?></h4>\n\t        <p><?php the_author_meta('description'); ?></p>\n\t\t\t<div class=\"clear\">&nbsp;</div>\n\t    </section>\n\t</footer>\n</article><!-- #post-## -->\n"
  },
  {
    "path": "content.php",
    "content": "<?php\n/**\n * @package Casper\n */\n?>\n\n<article id=\"post-<?php the_ID(); ?>\" <?php post_class(); ?>>\n\t\t<?php\n\t\t\t/* translators: used between list items, there is a space after the comma */\n\t\t\t$category_list = get_the_category_list( __( ', ', 'casper' ) );\n\t\t?>\n    <header class=\"post-header\">\n        <?php if ( 'post' == get_post_type() ) : ?>\n\t\t\t<span class=\"post-meta\">\n\t\t\t\t<?php \n\t\t\t\t\tif(  false == get_theme_mod( 'casper_hide_dates') ) {\n\t\t\t\t\t\tcasper_posted_on(); \n\t\t\t\t\t}\n\t\t\t\t\tif(  false == get_theme_mod( 'casper_hide_categories') ) {\n\t\t\t\t\t\tprintf( __( ' on ', 'casper' ).'%1$s', $category_list );\n\t\t\t\t\t}\n        \t    \tedit_post_link( __( 'Edit&rarr;', 'casper' ), '<span class=\"edit-link\">&nbsp;&bull;&nbsp;', '</span>' ); \n\t\t\t\t?>\n\t\t\t</span>\n\t\t<?php endif; ?>\n        <h1 class=\"post-title\"><a href=\"<?php the_permalink(); ?>\" rel=\"bookmark\"><?php the_title(); ?></a></h1>\n        <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. \n        \t$image_id = get_post_thumbnail_id();\n        \t$thumb_url = wp_get_attachment_image_src($image_id,'thumbnail', true);\n\t\t\t$medium_url = wp_get_attachment_image_src($image_id,'medium', true);\n\t\t\t$large_url = wp_get_attachment_image_src($image_id,'large', true);\n\t\t?>\n\n        \t<div class=\"post-image\">\n        \t\t<img data-src='<480:<?php echo $thumb_url[0]; ?>, <768:<?php echo $medium_url[0]; ?>, >768:<?php echo $large_url[0]; ?>' />\n\t\t\t</div>\n\t\t\t<noscript><?php the_post_thumbnail('thumbnail'); ?></noscript>\n\t    <?php } ?> \n    </header>\n\t<section class=\"post-content\">\n\n\t\t<?php \n\t\tif ( false != get_theme_mod( 'casper_read_more_link')) {\n\t\t\t$read_more = get_theme_mod( 'casper_read_more_link');\n\t\t} else {\n\t\t\t$read_more = __( '&hellip;&nbsp;<span class=\"meta-nav\">&rarr;</span>', 'casper' );\n\t\t}\n\t\tif ( has_excerpt() || false != get_theme_mod( 'casper_auto_excerpt') ) {\n\t\t\tthe_excerpt();\n\t\t} else {\n\t\t\tthe_content( $read_more );\n\t\t}\n\t\t?>\n\t    <?php\n\t\t\twp_link_pages( array(\n\t\t\t\t'before' => '<div class=\"page-links\">' . __( 'Pages:', 'casper' ),\n\t\t\t\t'after'  => '</div>',\n\t\t\t) );\n\t\t?>\n\t\t<div class=\"clear\">&nbsp;</div>\n\t</section>\n</article><!-- #post-## -->"
  },
  {
    "path": "css/admin.css",
    "content": "/* Big cover image on the home page */\n#headimg {\n  position: relative;\n  width: 100%;\n  height: 60%;\n  min-height: 250px;\n  text-align: center;\n  color: #fff;\n  background: #303538;\n  background-size: cover;\n  border-bottom: #EBF2F6 1px solid;\n  /* Yo-logo. Yolo-go. Upload one in ghost/settings/ */\n  /* The details of your blog. Defined in ghost/settings/ */\n}\n#headimg img {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1;\n}\n#headimg .blog-logo {\n  text-decoration: none;\n  color: white;\n}\n#headimg .blog-logo img {\n  display: block;\n  max-height: 120px;\n  width: auto;\n  margin: 0 auto;\n  line-height: 0;\n}\n#headimg h1.displaying-header-text {\n  margin: 10px 0 10px 0;\n  font-size: 4rem;\n  letter-spacing: -1px;\n  font-weight: bold;\n  font-family: 'Open Sans', sans-serif;\n  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);\n  position: relative;\n  z-index: 2;\n}\n#headimg #desc {\n  margin: 0;\n  font-size: 1.6rem;\n  line-height: 1.5em;\n  font-weight: 300;\n  font-family: 'Noto Serif', serif;\n  letter-spacing: 0;\n  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n  position: relative;\n  z-index: 2;\n}\n"
  },
  {
    "path": "css/custom-editor-style.css",
    "content": ""
  },
  {
    "path": "css/rtl.css",
    "content": "/* ==========================================================================\n   Table of Contents\n   ========================================================================== */\n/*\n\n    1.  fonts\n    2.  General\n    3.  Utilities\n    4.  General\n    5.  Single Post\n    6.  Third Party Elements\n    7.  Pagination\n    8.  Footer\n    9.  Media Queries (Tablet)\n    10. Media Queries (Mobile)\n\n*/\n/* ==========================================================================\n   1. fonts\n   ========================================================================== */\n@font-face {\n  font-family: 'GESSTwoMedium';\n  src: url('fonts/ge-ss-med.eot');\n  src: url('fonts/ge-ss-med.eot') format('embedded-opentype'), url('fonts/ge-ss-med.woff') format('woff'), url('fonts/ge-ss-med.ttf') format('truetype'), url('fonts/ge-ss-med.svg#GESSTwoMedium') format('svg');\n}\n/* ==========================================================================\n   2. General - Setting up some base styles\n   ========================================================================== */\nhtml {\n  direction: rtl;\n}\nbody {\n  font-family: 'Segoe UI', tahoma, sans-serif;\n  font-size: 2rem;\n  line-height: 1.6em;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n  font-family: 'GESSTwoMedium', sans-serif;\n}\nh1 {\n  letter-spacing: 0px;\n  text-indent: 0px;\n}\nh2 {\n  letter-spacing: 0px;\n  text-indent: 0px;\n}\ndl dt {\n  float: right;\n  clear: right;\n  text-align: left;\n}\ndl dd {\n  margin-left: 0;\n  margin-right: 200px;\n}\nblockquote {\n  margin: 1.6em -2.2em 1.6em 0;\n  padding: 0 1.6em 0 0;\n  border-right: #4a4a4a 0.4em solid;\n  border-left: 0;\n}\nblockquote small {\n  margin: 0.8em 1.5em 0.8em 0;\n}\ntable th,\ntable td {\n  text-align: right;\n}\n/* ==========================================================================\n   WP styles\n   ========================================================================== */\n/*--------------------------------------------------------------\n3.0 Elements\n--------------------------------------------------------------*/\nul,\nol {\n  margin: 0 3em 1.5em 0;\n}\nli > ul,\nli > ol {\n  margin-bottom: 0;\n  margin-left: 0;\n  margin-right: 1.5em;\n}\n/*--------------------------------------------------------------\n4.0 Forms\n--------------------------------------------------------------*/\ntextarea {\n  padding-right: 0;\n  padding-left: 3px;\n  width: 98%;\n}\n/*--------------------------------------------------------------\n5.0 Navigation\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n5.2 Menus\n--------------------------------------------------------------*/\n.main-navigation {\n  font-family: 'GESSTwoMedium', tahoma, sans-serif;\n}\n.main-navigation ul {\n  float: left;\n}\n.main-navigation li {\n  float: right;\n}\n.main-navigation ul ul {\n  left: auto;\n  right: 0;\n}\n.main-navigation ul ul ul {\n  left: auto;\n  right: 100%;\n  top: 0;\n}\n/* Small menu */\n.menu-toggle {\n  right: auto;\n  left: 0;\n}\n.comment-navigation .nav-previous,\n.paging-navigation .nav-previous,\n.post-navigation .nav-previous {\n  float: right;\n  width: 50%;\n}\n.comment-navigation .nav-next,\n.paging-navigation .nav-next,\n.post-navigation .nav-next {\n  float: left;\n  text-align: right;\n  width: 50%;\n}\n/*--------------------------------------------------------------\n6.0 Accessibility\n--------------------------------------------------------------*/\n.screen-reader-text:hover,\n.screen-reader-text:active,\n.screen-reader-text:focus {\n  left: auto;\n  right: 5px;\n}\n/*--------------------------------------------------------------\n7.0 Alignments\n--------------------------------------------------------------*/\n.alignleft {\n  display: inline;\n  float: left;\n  margin-right: 1.5em;\n}\n.alignright {\n  display: inline;\n  float: right;\n  margin-left: 1.5em;\n}\n.aligncenter {\n  clear: both;\n  display: block;\n  margin: 0 auto;\n}\n/*--------------------------------------------------------------\n8.0 Clearings\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n9.0 Widgets\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.0 Content\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.1 Posts and pages\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.2 Asides\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.3 Comments\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n11.0 Infinite scroll\n--------------------------------------------------------------*/\n/* ==========================================================================\n   4. General - The main styles for the the theme\n   ========================================================================== */\n/* The details of your blog. Defined in ghost/settings/ */\n.blog-title,\n.blog-description {\n  letter-spacing: 0px;\n  font-family: 'GESSTwoMedium', tahoma, sans-serif;\n}\n.post-meta {\n  font-family: 'GESSTwoMedium', tahoma, sans-serif;\n  word-break: initial;\n}\n.user-meta {\n  padding: 0.3rem 100px 0 40px;\n}\n.user-image {\n  left: auto;\n  right: 0;\n}\n.publish-meta {\n  right: auto;\n  left: 0;\n  text-align: left;\n}\n/* ==========================================================================\n   5. Single Post - When you click on an individual post\n   ========================================================================== */\n/* Create some space to the right for the share links */\n.post-footer .author {\n  margin-right: 0;\n  margin-left: 180px;\n}\n/* Drop the share links in the space to the right.\n   Doing it like this means it's easier for the author bio\n   to be flexible at smaller screen sizes while the share\n   links remain at a fixed width the whole time */\n.post-footer .share {\n  right: auto;\n  left: 0;\n}\n.post-footer .share a {\n  margin: 1.4rem 1.6rem 1.6rem 0;\n}\n/* ==========================================================================\n   6. Third Party Elements - Embeds from other services\n   ========================================================================== */\n/* Github */\n.form-allowed-tags {\n  float: left;\n  font-family: 'Segoe UI', tahoma, sans-serif;\n}\n.form-submit #submit {\n  float: right;\n  font-family: 'GESSTwoMedium', tahoma, sans-serif;\n}\n/* Main widget wrapper */\n.widget-area {\n  font-family: 'Segoe UI', tahoma, sans-serif;\n}\n.widget-area aside {\n  float: right;\n}\n#main > header.page-header {\n  font-family: 'Segoe UI', tahoma, sans-serif;\n}\n/* ==========================================================================\n   7. Pagination - Tools to let you flick between pages\n   ========================================================================== */\n/* The main wrapper for our pagination links */\n.pagination {\n  font-family: 'Segoe UI', tahoma, sans-serif;\n}\n.older-posts {\n  right: auto;\n  left: 0;\n}\n.newer-posts {\n  left: auto;\n  right: 0 ;\n}\n/* ==========================================================================\n   8. Footer - The bottom of every page\n   ========================================================================== */\n.site-footer {\n  font-family: 'Segoe UI', tahoma, sans-serif;\n}\n/* ==========================================================================\n   9. Media Queries - Smaller than 900px\n   ========================================================================== */\n@media only screen and (max-width: 900px) {\n  blockquote {\n    margin-right: 0;\n  }\n  .blog-title {\n    letter-spacing: 0px;\n  }\n  h1 {\n    text-indent: 0;\n  }\n}\n/* ==========================================================================\n   10. Media Queries - Smaller than 500px\n   ========================================================================== */\n@media only screen and (max-width: 500px) {\n  h1,\n  h2 {\n    letter-spacing: 0px;\n  }\n}\n/* ==========================================================================\n   End of file. Media queries should be the last thing here. Do not add stuff\n   below this point, or it will probably fuck everything up.\n   ========================================================================== */\n"
  },
  {
    "path": "css/style.css",
    "content": "/*\n  Theme Name:       Casper\n  Theme URI:        https://github.com/lacymorrow/casper\n  Author:           Lacy Morrow\n  Author URI:       http://lacymorrow.com\n  Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n  Version:          1.1.5\n  License:          GNU General Public License v2.0\n  License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n  Text Domain:      casper\n  Domain Path:      /languages/\n  Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n  GitHub Theme URI: https://github.com/lacymorrow/casper\n  GitHub Branch:    master\n  Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n*/\n/* ==========================================================================\n   Table of Contents\n   ========================================================================== */\n/*\n\n    0.  Includes\n    1.  Icons\n    2.  General\n    3.  Utilities\n    4.  General\n    5.  Single Post\n    6.  Third Party Elements\n    7.  Pagination\n    8.  Footer\n    9.  Media Queries (Tablet)\n    10. Media Queries (Mobile)\n\n*/\n/* ==========================================================================\n   0. Includes - Ground zero\n   ========================================================================== */\n/*! normalize.css v2.1.3 | MIT License | git.io/normalize */\n/* ==========================================================================\n   HTML5 display definitions\n   ========================================================================== */\n/**\n * Correct `block` display not defined in IE 8/9.\n */\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary\n{\n    display: block;\n}\n/**\n * Correct `inline-block` display not defined in IE 8/9.\n */\naudio,\ncanvas,\nvideo\n{\n    display: inline-block;\n}\n/**\n * Prevent modern browsers from displaying `audio` without controls.\n * Remove excess height in iOS 5 devices.\n */\naudio:not([controls])\n{\n    display: none;\n\n    height: 0;\n}\n/**\n * Address `[hidden]` styling not present in IE 8/9.\n * Hide the `template` element in IE, Safari, and Firefox < 22.\n */\n[hidden],\ntemplate\n{\n    display: none;\n}\n/* ==========================================================================\n   Base\n   ========================================================================== */\n/**\n * 1. Set default font family to sans-serif.\n * 2. Prevent iOS text size adjust after orientation change, without disabling\n *    user zoom.\n */\nhtml\n{\n    font-family: sans-serif;\n    /* 1 */\n\n        -ms-text-size-adjust: 100%;\n    /* 2 */\n    -webkit-text-size-adjust: 100%;\n    /* 2 */\n}\n/**\n * Remove default margin.\n */\nbody\n{\n    margin: 0;\n}\n/* ==========================================================================\n   Links\n   ========================================================================== */\n/**\n * Remove the gray background color from active links in IE 10.\n */\na\n{\n    background: transparent;\n}\n/**\n * Address `outline` inconsistency between Chrome and other browsers.\n */\na:focus\n{\n    outline: thin dotted;\n}\n/**\n * Improve readability when focused and also mouse hovered in all browsers.\n */\na:active,\na:hover\n{\n    outline: 0;\n}\n/* ==========================================================================\n   Typography\n   ========================================================================== */\n/**\n * Address variable `h1` font-size and margin within `section` and `article`\n * contexts in Firefox 4+, Safari 5, and Chrome.\n */\nh1\n{\n    font-size: 2em;\n\n    margin: .67em 0;\n}\n/**\n * Address styling not present in IE 8/9, Safari 5, and Chrome.\n */\nabbr[title]\n{\n    border-bottom: 1px dotted;\n}\n/**\n * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n */\nb,\nstrong\n{\n    font-weight: bold;\n}\n/**\n * Address styling not present in Safari 5 and Chrome.\n */\ndfn\n{\n    font-style: italic;\n}\n/**\n * Address differences between Firefox and other browsers.\n */\nhr\n{\n    -moz-box-sizing: content-box;\n         box-sizing: content-box;\n    height: 0;\n}\n/**\n * Address styling not present in IE 8/9.\n */\nmark\n{\n    color: #000;\n    background: #ff0;\n}\n/**\n * Correct font family set oddly in Safari 5 and Chrome.\n */\ncode,\nkbd,\npre,\nsamp\n{\n    font-family: monospace, serif;\n    font-size: 1em;\n}\n/**\n * Improve readability of pre-formatted text in all browsers.\n */\npre\n{\n    white-space: pre-wrap;\n}\n/**\n * Set consistent quote types.\n */\nq\n{\n    quotes: '\\201C' '\\201D' '\\2018' '\\2019';\n}\n/**\n * Address inconsistent and variable font size in all browsers.\n */\nsmall\n{\n    font-size: 80%;\n}\n/**\n * Prevent `sub` and `sup` affecting `line-height` in all browsers.\n */\nsub,\nsup\n{\n    font-size: 75%;\n    line-height: 0;\n\n    position: relative;\n\n    vertical-align: baseline;\n}\nsup\n{\n    top: -.5em;\n}\nsub\n{\n    bottom: -.25em;\n}\n/* ==========================================================================\n   Embedded content\n   ========================================================================== */\n/**\n * Remove border when inside `a` element in IE 8/9.\n */\nimg\n{\n    border: 0;\n}\n/**\n * Correct overflow displayed oddly in IE 9.\n */\nsvg:not(:root)\n{\n    overflow: hidden;\n}\n/* ==========================================================================\n   Figures\n   ========================================================================== */\n/**\n * Address margin not present in IE 8/9 and Safari 5.\n */\nfigure\n{\n    margin: 0;\n}\n/* ==========================================================================\n   Forms\n   ========================================================================== */\n/**\n * Define consistent border, margin, and padding.\n */\nfieldset\n{\n    margin: 0 2px;\n    padding: .35em .625em .75em;\n\n    border: 1px solid #c0c0c0;\n}\n/**\n * 1. Correct `color` not being inherited in IE 8/9.\n * 2. Remove padding so people aren't caught out if they zero out fieldsets.\n */\nlegend\n{\n    /* 1 */\n    padding: 0;\n\n    border: 0;\n    /* 2 */\n}\n/**\n * 1. Correct font family not being inherited in all browsers.\n * 2. Correct font size not being inherited in all browsers.\n * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n */\nbutton,\ninput,\nselect,\ntextarea\n{\n    font-family: inherit;\n    /* 1 */\n    font-size: 100%;\n    /* 2 */\n\n    margin: 0;\n    /* 3 */\n}\n/**\n * Address Firefox 4+ setting `line-height` on `input` using `!important` in\n * the UA stylesheet.\n */\nbutton,\ninput\n{\n    line-height: normal;\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 Chrome, Safari 5+, and IE 8+.\n * Correct `select` style inheritance in Firefox 4+ and Opera.\n */\nbutton,\nselect\n{\n    text-transform: none;\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 */\nbutton,\nhtml input[type='button'],\ninput[type='reset'],\ninput[type='submit']\n{\n    /* 2 */\n    cursor: pointer;\n\n    -webkit-appearance: button;\n    /* 3 */\n}\n/**\n * Re-set default cursor for disabled elements.\n */\nbutton[disabled],\nhtml input[disabled]\n{\n    cursor: default;\n}\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 */\ninput[type='checkbox'],\ninput[type='radio']\n{\n    box-sizing: border-box;\n    /* 1 */\n    padding: 0;\n    /* 2 */\n}\n/**\n * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n *    (include `-moz` to future-proof).\n */\ninput[type='search']\n{\n    -webkit-box-sizing: content-box;\n    /* 1 */\n       -moz-box-sizing: content-box;\n    /* 2 */\n            box-sizing: content-box;\n\n    -webkit-appearance: textfield;\n}\n/**\n * Remove inner padding and search cancel button in Safari 5 and Chrome\n * on OS X.\n */\ninput[type='search']::-webkit-search-cancel-button,\ninput[type='search']::-webkit-search-decoration\n{\n    -webkit-appearance: none;\n}\n/**\n * Remove inner padding and border in Firefox 4+.\n */\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner\n{\n    padding: 0;\n\n    border: 0;\n}\n/**\n * 1. Remove default vertical scrollbar in IE 8/9.\n * 2. Improve readability and alignment in all browsers.\n */\ntextarea\n{\n    overflow: auto;\n    /* 1 */\n\n    vertical-align: top;\n    /* 2 */\n}\n/* ==========================================================================\n   Tables\n   ========================================================================== */\n/**\n * Remove most spacing between table cells.\n */\ntable\n{\n    border-spacing: 0;\n    border-collapse: collapse;\n}\n/* ==========================================================================\n   1. Icons - Sets up the icon font and respective classes\n   ========================================================================== */\n/* Import the font file with the icons in it */\n/*!\n *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face\n{\n    font-family: 'icons';\n    font-weight: normal;\n    font-style: normal;\n\n    src: url('fonts/fa.eot?v=4.2.0');\n    src: url('fonts/fa.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('fonts/fa.woff?v=4.2.0') format('woff'), url('fonts/fa.ttf?v=4.2.0') format('truetype'), url('fonts/fa.svg?v=4.2.0#fontawesomeregular') format('svg');\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg\n{\n    font-size: 1.33333333em;\n    line-height: .75em;\n\n    vertical-align: -15%;\n}\n.fa-2x\n{\n    font-size: 2em;\n}\n.fa-3x\n{\n    font-size: 3em;\n}\n.fa-4x\n{\n    font-size: 4em;\n}\n.fa-5x\n{\n    font-size: 5em;\n}\n.fa-fw\n{\n    width: 1.28571429em;\n\n    text-align: center;\n}\n.fa-ul\n{\n    margin-left: 2.14285714em;\n    padding-left: 0;\n\n    list-style-type: none;\n}\n.fa-ul > li\n{\n    position: relative;\n}\n.fa-li\n{\n    position: absolute;\n    top: .14285714em;\n    left: -2.14285714em;\n\n    width: 2.14285714em;\n\n    text-align: center;\n}\n.fa-li.fa-lg\n{\n    left: -1.85714286em;\n}\n.fa-border\n{\n    padding: .2em .25em .15em;\n\n    border: solid .08em #eee;\n    border-radius: .1em;\n}\n.pull-right\n{\n    float: right;\n}\n.pull-left\n{\n    float: left;\n}\n.fa.pull-left\n{\n    margin-right: .3em;\n}\n.fa.pull-right\n{\n    margin-left: .3em;\n}\n.fa-spin\n{\n    -webkit-animation: fa-spin 2s infinite linear;\n            animation: fa-spin 2s infinite linear;\n}\n@-webkit-keyframes fa-spin\n{\n    0%\n    {\n        -webkit-transform: rotate(0deg);\n                transform: rotate(0deg);\n    }\n    100%\n    {\n        -webkit-transform: rotate(359deg);\n                transform: rotate(359deg);\n    }\n}\n@keyframes fa-spin\n{\n    0%\n    {\n        -webkit-transform: rotate(0deg);\n                transform: rotate(0deg);\n    }\n    100%\n    {\n        -webkit-transform: rotate(359deg);\n                transform: rotate(359deg);\n    }\n}\n.fa-rotate-90\n{\n    -webkit-transform: rotate(90deg);\n        -ms-transform: rotate(90deg);\n            transform: rotate(90deg);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n}\n.fa-rotate-180\n{\n    -webkit-transform: rotate(180deg);\n        -ms-transform: rotate(180deg);\n            transform: rotate(180deg);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n}\n.fa-rotate-270\n{\n    -webkit-transform: rotate(270deg);\n        -ms-transform: rotate(270deg);\n            transform: rotate(270deg);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n}\n.fa-flip-horizontal\n{\n    -webkit-transform: scale(-1, 1);\n        -ms-transform: scale(-1, 1);\n            transform: scale(-1, 1);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n}\n.fa-flip-vertical\n{\n    -webkit-transform: scale(1, -1);\n        -ms-transform: scale(1, -1);\n            transform: scale(1, -1);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical\n{\n    filter: none;\n}\n.fa-stack\n{\n    line-height: 2em;\n\n    position: relative;\n\n    display: inline-block;\n\n    width: 2em;\n    height: 2em;\n\n    vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x\n{\n    position: absolute;\n    left: 0;\n\n    width: 100%;\n\n    text-align: center;\n}\n.fa-stack-1x\n{\n    line-height: inherit;\n}\n.fa-stack-2x\n{\n    font-size: 2em;\n}\n.fa-inverse\n{\n    color: #fff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.icon-glass:before\n{\n    content: '\\f000';\n}\n.icon-music:before\n{\n    content: '\\f001';\n}\n.icon-search:before\n{\n    content: '\\f002';\n}\n.icon-envelope-o:before\n{\n    content: '\\f003';\n}\n.icon-heart:before\n{\n    content: '\\f004';\n}\n.icon-star:before\n{\n    content: '\\f005';\n}\n.icon-star-o:before\n{\n    content: '\\f006';\n}\n.icon-user:before\n{\n    content: '\\f007';\n}\n.icon-film:before\n{\n    content: '\\f008';\n}\n.icon-th-large:before\n{\n    content: '\\f009';\n}\n.icon-th:before\n{\n    content: '\\f00a';\n}\n.icon-th-list:before\n{\n    content: '\\f00b';\n}\n.icon-check:before\n{\n    content: '\\f00c';\n}\n.icon-remove:before,\n.icon-close:before,\n.icon-times:before\n{\n    content: '\\f00d';\n}\n.icon-search-plus:before\n{\n    content: '\\f00e';\n}\n.icon-search-minus:before\n{\n    content: '\\f010';\n}\n.icon-power-off:before\n{\n    content: '\\f011';\n}\n.icon-signal:before\n{\n    content: '\\f012';\n}\n.icon-gear:before,\n.icon-cog:before\n{\n    content: '\\f013';\n}\n.icon-trash-o:before\n{\n    content: '\\f014';\n}\n.icon-home:before\n{\n    content: '\\f015';\n}\n.icon-file-o:before\n{\n    content: '\\f016';\n}\n.icon-clock-o:before\n{\n    content: '\\f017';\n}\n.icon-road:before\n{\n    content: '\\f018';\n}\n.icon-download:before\n{\n    content: '\\f019';\n}\n.icon-arrow-circle-o-down:before\n{\n    content: '\\f01a';\n}\n.icon-arrow-circle-o-up:before\n{\n    content: '\\f01b';\n}\n.icon-inbox:before\n{\n    content: '\\f01c';\n}\n.icon-play-circle-o:before\n{\n    content: '\\f01d';\n}\n.icon-rotate-right:before,\n.icon-repeat:before\n{\n    content: '\\f01e';\n}\n.icon-refresh:before\n{\n    content: '\\f021';\n}\n.icon-list-alt:before\n{\n    content: '\\f022';\n}\n.icon-lock:before\n{\n    content: '\\f023';\n}\n.icon-flag:before\n{\n    content: '\\f024';\n}\n.icon-headphones:before\n{\n    content: '\\f025';\n}\n.icon-volume-off:before\n{\n    content: '\\f026';\n}\n.icon-volume-down:before\n{\n    content: '\\f027';\n}\n.icon-volume-up:before\n{\n    content: '\\f028';\n}\n.icon-qrcode:before\n{\n    content: '\\f029';\n}\n.icon-barcode:before\n{\n    content: '\\f02a';\n}\n.icon-tag:before\n{\n    content: '\\f02b';\n}\n.icon-tags:before\n{\n    content: '\\f02c';\n}\n.icon-book:before\n{\n    content: '\\f02d';\n}\n.icon-bookmark:before\n{\n    content: '\\f02e';\n}\n.icon-print:before\n{\n    content: '\\f02f';\n}\n.icon-camera:before\n{\n    content: '\\f030';\n}\n.icon-font:before\n{\n    content: '\\f031';\n}\n.icon-bold:before\n{\n    content: '\\f032';\n}\n.icon-italic:before\n{\n    content: '\\f033';\n}\n.icon-text-height:before\n{\n    content: '\\f034';\n}\n.icon-text-width:before\n{\n    content: '\\f035';\n}\n.icon-align-left:before\n{\n    content: '\\f036';\n}\n.icon-align-center:before\n{\n    content: '\\f037';\n}\n.icon-align-right:before\n{\n    content: '\\f038';\n}\n.icon-align-justify:before\n{\n    content: '\\f039';\n}\n.icon-list:before\n{\n    content: '\\f03a';\n}\n.icon-dedent:before,\n.icon-outdent:before\n{\n    content: '\\f03b';\n}\n.icon-indent:before\n{\n    content: '\\f03c';\n}\n.icon-video-camera:before\n{\n    content: '\\f03d';\n}\n.icon-photo:before,\n.icon-image:before,\n.icon-picture-o:before\n{\n    content: '\\f03e';\n}\n.icon-pencil:before\n{\n    content: '\\f040';\n}\n.icon-map-marker:before\n{\n    content: '\\f041';\n}\n.icon-adjust:before\n{\n    content: '\\f042';\n}\n.icon-tint:before\n{\n    content: '\\f043';\n}\n.icon-edit:before,\n.icon-pencil-square-o:before\n{\n    content: '\\f044';\n}\n.icon-share-square-o:before\n{\n    content: '\\f045';\n}\n.icon-check-square-o:before\n{\n    content: '\\f046';\n}\n.icon-arrows:before\n{\n    content: '\\f047';\n}\n.icon-step-backward:before\n{\n    content: '\\f048';\n}\n.icon-fast-backward:before\n{\n    content: '\\f049';\n}\n.icon-backward:before\n{\n    content: '\\f04a';\n}\n.icon-play:before\n{\n    content: '\\f04b';\n}\n.icon-pause:before\n{\n    content: '\\f04c';\n}\n.icon-stop:before\n{\n    content: '\\f04d';\n}\n.icon-forward:before\n{\n    content: '\\f04e';\n}\n.icon-fast-forward:before\n{\n    content: '\\f050';\n}\n.icon-step-forward:before\n{\n    content: '\\f051';\n}\n.icon-eject:before\n{\n    content: '\\f052';\n}\n.icon-chevron-left:before\n{\n    content: '\\f053';\n}\n.icon-chevron-right:before\n{\n    content: '\\f054';\n}\n.icon-plus-circle:before\n{\n    content: '\\f055';\n}\n.icon-minus-circle:before\n{\n    content: '\\f056';\n}\n.icon-times-circle:before\n{\n    content: '\\f057';\n}\n.icon-check-circle:before\n{\n    content: '\\f058';\n}\n.icon-question-circle:before\n{\n    content: '\\f059';\n}\n.icon-info-circle:before\n{\n    content: '\\f05a';\n}\n.icon-crosshairs:before\n{\n    content: '\\f05b';\n}\n.icon-times-circle-o:before\n{\n    content: '\\f05c';\n}\n.icon-check-circle-o:before\n{\n    content: '\\f05d';\n}\n.icon-ban:before\n{\n    content: '\\f05e';\n}\n.icon-arrow-left:before\n{\n    content: '\\f060';\n}\n.icon-arrow-right:before\n{\n    content: '\\f061';\n}\n.icon-arrow-up:before\n{\n    content: '\\f062';\n}\n.icon-arrow-down:before\n{\n    content: '\\f063';\n}\n.icon-mail-forward:before,\n.icon-share:before\n{\n    content: '\\f064';\n}\n.icon-expand:before\n{\n    content: '\\f065';\n}\n.icon-compress:before\n{\n    content: '\\f066';\n}\n.icon-plus:before\n{\n    content: '\\f067';\n}\n.icon-minus:before\n{\n    content: '\\f068';\n}\n.icon-asterisk:before\n{\n    content: '\\f069';\n}\n.icon-exclamation-circle:before\n{\n    content: '\\f06a';\n}\n.icon-gift:before\n{\n    content: '\\f06b';\n}\n.icon-leaf:before\n{\n    content: '\\f06c';\n}\n.icon-fire:before\n{\n    content: '\\f06d';\n}\n.icon-eye:before\n{\n    content: '\\f06e';\n}\n.icon-eye-slash:before\n{\n    content: '\\f070';\n}\n.icon-warning:before,\n.icon-exclamation-triangle:before\n{\n    content: '\\f071';\n}\n.icon-plane:before\n{\n    content: '\\f072';\n}\n.icon-calendar:before\n{\n    content: '\\f073';\n}\n.icon-random:before\n{\n    content: '\\f074';\n}\n.icon-comment:before\n{\n    content: '\\f075';\n}\n.icon-magnet:before\n{\n    content: '\\f076';\n}\n.icon-chevron-up:before\n{\n    content: '\\f077';\n}\n.icon-chevron-down:before\n{\n    content: '\\f078';\n}\n.icon-retweet:before\n{\n    content: '\\f079';\n}\n.icon-shopping-cart:before\n{\n    content: '\\f07a';\n}\n.icon-folder:before\n{\n    content: '\\f07b';\n}\n.icon-folder-open:before\n{\n    content: '\\f07c';\n}\n.icon-arrows-v:before\n{\n    content: '\\f07d';\n}\n.icon-arrows-h:before\n{\n    content: '\\f07e';\n}\n.icon-bar-chart-o:before,\n.icon-bar-chart:before\n{\n    content: '\\f080';\n}\n.icon-twitter-square:before\n{\n    content: '\\f081';\n}\n.icon-facebook-square:before\n{\n    content: '\\f082';\n}\n.icon-camera-retro:before\n{\n    content: '\\f083';\n}\n.icon-key:before\n{\n    content: '\\f084';\n}\n.icon-gears:before,\n.icon-cogs:before\n{\n    content: '\\f085';\n}\n.icon-comments:before\n{\n    content: '\\f086';\n}\n.icon-thumbs-o-up:before\n{\n    content: '\\f087';\n}\n.icon-thumbs-o-down:before\n{\n    content: '\\f088';\n}\n.icon-star-half:before\n{\n    content: '\\f089';\n}\n.icon-heart-o:before\n{\n    content: '\\f08a';\n}\n.icon-sign-out:before\n{\n    content: '\\f08b';\n}\n.icon-linkedin-square:before\n{\n    content: '\\f08c';\n}\n.icon-thumb-tack:before\n{\n    content: '\\f08d';\n}\n.icon-external-link:before\n{\n    content: '\\f08e';\n}\n.icon-sign-in:before\n{\n    content: '\\f090';\n}\n.icon-trophy:before\n{\n    content: '\\f091';\n}\n.icon-github-square:before\n{\n    content: '\\f092';\n}\n.icon-upload:before\n{\n    content: '\\f093';\n}\n.icon-lemon-o:before\n{\n    content: '\\f094';\n}\n.icon-phone:before\n{\n    content: '\\f095';\n}\n.icon-square-o:before\n{\n    content: '\\f096';\n}\n.icon-bookmark-o:before\n{\n    content: '\\f097';\n}\n.icon-phone-square:before\n{\n    content: '\\f098';\n}\n.icon-twitter:before\n{\n    content: '\\f099';\n}\n.icon-facebook:before\n{\n    content: '\\f09a';\n}\n.icon-github:before\n{\n    content: '\\f09b';\n}\n.icon-unlock:before\n{\n    content: '\\f09c';\n}\n.icon-credit-card:before\n{\n    content: '\\f09d';\n}\n.icon-feed:before,\n.icon-rss:before\n{\n    content: '\\f09e';\n}\n.icon-hdd-o:before\n{\n    content: '\\f0a0';\n}\n.icon-bullhorn:before\n{\n    content: '\\f0a1';\n}\n.icon-bell:before\n{\n    content: '\\f0f3';\n}\n.icon-certificate:before\n{\n    content: '\\f0a3';\n}\n.icon-hand-o-right:before\n{\n    content: '\\f0a4';\n}\n.icon-hand-o-left:before\n{\n    content: '\\f0a5';\n}\n.icon-hand-o-up:before\n{\n    content: '\\f0a6';\n}\n.icon-hand-o-down:before\n{\n    content: '\\f0a7';\n}\n.icon-arrow-circle-left:before\n{\n    content: '\\f0a8';\n}\n.icon-arrow-circle-right:before\n{\n    content: '\\f0a9';\n}\n.icon-arrow-circle-up:before\n{\n    content: '\\f0aa';\n}\n.icon-arrow-circle-down:before\n{\n    content: '\\f0ab';\n}\n.icon-globe:before\n{\n    content: '\\f0ac';\n}\n.icon-wrench:before\n{\n    content: '\\f0ad';\n}\n.icon-tasks:before\n{\n    content: '\\f0ae';\n}\n.icon-filter:before\n{\n    content: '\\f0b0';\n}\n.icon-briefcase:before\n{\n    content: '\\f0b1';\n}\n.icon-arrows-alt:before\n{\n    content: '\\f0b2';\n}\n.icon-group:before,\n.icon-users:before\n{\n    content: '\\f0c0';\n}\n.icon-chain:before,\n.icon-link:before\n{\n    content: '\\f0c1';\n}\n.icon-cloud:before\n{\n    content: '\\f0c2';\n}\n.icon-flask:before\n{\n    content: '\\f0c3';\n}\n.icon-cut:before,\n.icon-scissors:before\n{\n    content: '\\f0c4';\n}\n.icon-copy:before,\n.icon-files-o:before\n{\n    content: '\\f0c5';\n}\n.icon-paperclip:before\n{\n    content: '\\f0c6';\n}\n.icon-save:before,\n.icon-floppy-o:before\n{\n    content: '\\f0c7';\n}\n.icon-square:before\n{\n    content: '\\f0c8';\n}\n.icon-navicon:before,\n.icon-reorder:before,\n.icon-bars:before\n{\n    content: '\\f0c9';\n}\n.icon-list-ul:before\n{\n    content: '\\f0ca';\n}\n.icon-list-ol:before\n{\n    content: '\\f0cb';\n}\n.icon-strikethrough:before\n{\n    content: '\\f0cc';\n}\n.icon-underline:before\n{\n    content: '\\f0cd';\n}\n.icon-table:before\n{\n    content: '\\f0ce';\n}\n.icon-magic:before\n{\n    content: '\\f0d0';\n}\n.icon-truck:before\n{\n    content: '\\f0d1';\n}\n.icon-pinterest:before\n{\n    content: '\\f0d2';\n}\n.icon-pinterest-square:before\n{\n    content: '\\f0d3';\n}\n.icon-google-plus-square:before\n{\n    content: '\\f0d4';\n}\n.icon-google-plus:before\n{\n    content: '\\f0d5';\n}\n.icon-money:before\n{\n    content: '\\f0d6';\n}\n.icon-caret-down:before\n{\n    content: '\\f0d7';\n}\n.icon-caret-up:before\n{\n    content: '\\f0d8';\n}\n.icon-caret-left:before\n{\n    content: '\\f0d9';\n}\n.icon-caret-right:before\n{\n    content: '\\f0da';\n}\n.icon-columns:before\n{\n    content: '\\f0db';\n}\n.icon-unsorted:before,\n.icon-sort:before\n{\n    content: '\\f0dc';\n}\n.icon-sort-down:before,\n.icon-sort-desc:before\n{\n    content: '\\f0dd';\n}\n.icon-sort-up:before,\n.icon-sort-asc:before\n{\n    content: '\\f0de';\n}\n.icon-envelope:before\n{\n    content: '\\f0e0';\n}\n.icon-linkedin:before\n{\n    content: '\\f0e1';\n}\n.icon-rotate-left:before,\n.icon-undo:before\n{\n    content: '\\f0e2';\n}\n.icon-legal:before,\n.icon-gavel:before\n{\n    content: '\\f0e3';\n}\n.icon-dashboard:before,\n.icon-tachometer:before\n{\n    content: '\\f0e4';\n}\n.icon-comment-o:before\n{\n    content: '\\f0e5';\n}\n.icon-comments-o:before\n{\n    content: '\\f0e6';\n}\n.icon-flash:before,\n.icon-bolt:before\n{\n    content: '\\f0e7';\n}\n.icon-sitemap:before\n{\n    content: '\\f0e8';\n}\n.icon-umbrella:before\n{\n    content: '\\f0e9';\n}\n.icon-paste:before,\n.icon-clipboard:before\n{\n    content: '\\f0ea';\n}\n.icon-lightbulb-o:before\n{\n    content: '\\f0eb';\n}\n.icon-exchange:before\n{\n    content: '\\f0ec';\n}\n.icon-cloud-download:before\n{\n    content: '\\f0ed';\n}\n.icon-cloud-upload:before\n{\n    content: '\\f0ee';\n}\n.icon-user-md:before\n{\n    content: '\\f0f0';\n}\n.icon-stethoscope:before\n{\n    content: '\\f0f1';\n}\n.icon-suitcase:before\n{\n    content: '\\f0f2';\n}\n.icon-bell-o:before\n{\n    content: '\\f0a2';\n}\n.icon-coffee:before\n{\n    content: '\\f0f4';\n}\n.icon-cutlery:before\n{\n    content: '\\f0f5';\n}\n.icon-file-text-o:before\n{\n    content: '\\f0f6';\n}\n.icon-building-o:before\n{\n    content: '\\f0f7';\n}\n.icon-hospital-o:before\n{\n    content: '\\f0f8';\n}\n.icon-ambulance:before\n{\n    content: '\\f0f9';\n}\n.icon-medkit:before\n{\n    content: '\\f0fa';\n}\n.icon-fighter-jet:before\n{\n    content: '\\f0fb';\n}\n.icon-beer:before\n{\n    content: '\\f0fc';\n}\n.icon-h-square:before\n{\n    content: '\\f0fd';\n}\n.icon-plus-square:before\n{\n    content: '\\f0fe';\n}\n.icon-angle-double-left:before\n{\n    content: '\\f100';\n}\n.icon-angle-double-right:before\n{\n    content: '\\f101';\n}\n.icon-angle-double-up:before\n{\n    content: '\\f102';\n}\n.icon-angle-double-down:before\n{\n    content: '\\f103';\n}\n.icon-angle-left:before\n{\n    content: '\\f104';\n}\n.icon-angle-right:before\n{\n    content: '\\f105';\n}\n.icon-angle-up:before\n{\n    content: '\\f106';\n}\n.icon-angle-down:before\n{\n    content: '\\f107';\n}\n.icon-desktop:before\n{\n    content: '\\f108';\n}\n.icon-laptop:before\n{\n    content: '\\f109';\n}\n.icon-tablet:before\n{\n    content: '\\f10a';\n}\n.icon-mobile-phone:before,\n.icon-mobile:before\n{\n    content: '\\f10b';\n}\n.icon-circle-o:before\n{\n    content: '\\f10c';\n}\n.icon-quote-left:before\n{\n    content: '\\f10d';\n}\n.icon-quote-right:before\n{\n    content: '\\f10e';\n}\n.icon-spinner:before\n{\n    content: '\\f110';\n}\n.icon-circle:before\n{\n    content: '\\f111';\n}\n.icon-mail-reply:before,\n.icon-reply:before\n{\n    content: '\\f112';\n}\n.icon-github-alt:before\n{\n    content: '\\f113';\n}\n.icon-folder-o:before\n{\n    content: '\\f114';\n}\n.icon-folder-open-o:before\n{\n    content: '\\f115';\n}\n.icon-smile-o:before\n{\n    content: '\\f118';\n}\n.icon-frown-o:before\n{\n    content: '\\f119';\n}\n.icon-meh-o:before\n{\n    content: '\\f11a';\n}\n.icon-gamepad:before\n{\n    content: '\\f11b';\n}\n.icon-keyboard-o:before\n{\n    content: '\\f11c';\n}\n.icon-flag-o:before\n{\n    content: '\\f11d';\n}\n.icon-flag-checkered:before\n{\n    content: '\\f11e';\n}\n.icon-terminal:before\n{\n    content: '\\f120';\n}\n.icon-code:before\n{\n    content: '\\f121';\n}\n.icon-mail-reply-all:before,\n.icon-reply-all:before\n{\n    content: '\\f122';\n}\n.icon-star-half-empty:before,\n.icon-star-half-full:before,\n.icon-star-half-o:before\n{\n    content: '\\f123';\n}\n.icon-location-arrow:before\n{\n    content: '\\f124';\n}\n.icon-crop:before\n{\n    content: '\\f125';\n}\n.icon-code-fork:before\n{\n    content: '\\f126';\n}\n.icon-unlink:before,\n.icon-chain-broken:before\n{\n    content: '\\f127';\n}\n.icon-question:before\n{\n    content: '\\f128';\n}\n.icon-info:before\n{\n    content: '\\f129';\n}\n.icon-exclamation:before\n{\n    content: '\\f12a';\n}\n.icon-superscript:before\n{\n    content: '\\f12b';\n}\n.icon-subscript:before\n{\n    content: '\\f12c';\n}\n.icon-eraser:before\n{\n    content: '\\f12d';\n}\n.icon-puzzle-piece:before\n{\n    content: '\\f12e';\n}\n.icon-microphone:before\n{\n    content: '\\f130';\n}\n.icon-microphone-slash:before\n{\n    content: '\\f131';\n}\n.icon-shield:before\n{\n    content: '\\f132';\n}\n.icon-calendar-o:before\n{\n    content: '\\f133';\n}\n.icon-fire-extinguisher:before\n{\n    content: '\\f134';\n}\n.icon-rocket:before\n{\n    content: '\\f135';\n}\n.icon-maxcdn:before\n{\n    content: '\\f136';\n}\n.icon-chevron-circle-left:before\n{\n    content: '\\f137';\n}\n.icon-chevron-circle-right:before\n{\n    content: '\\f138';\n}\n.icon-chevron-circle-up:before\n{\n    content: '\\f139';\n}\n.icon-chevron-circle-down:before\n{\n    content: '\\f13a';\n}\n.icon-html5:before\n{\n    content: '\\f13b';\n}\n.icon-css3:before\n{\n    content: '\\f13c';\n}\n.icon-anchor:before\n{\n    content: '\\f13d';\n}\n.icon-unlock-alt:before\n{\n    content: '\\f13e';\n}\n.icon-bullseye:before\n{\n    content: '\\f140';\n}\n.icon-ellipsis-h:before\n{\n    content: '\\f141';\n}\n.icon-ellipsis-v:before\n{\n    content: '\\f142';\n}\n.icon-feed-square:before,\n.icon-rss-square:before\n{\n    content: '\\f143';\n}\n.icon-play-circle:before\n{\n    content: '\\f144';\n}\n.icon-ticket:before\n{\n    content: '\\f145';\n}\n.icon-minus-square:before\n{\n    content: '\\f146';\n}\n.icon-minus-square-o:before\n{\n    content: '\\f147';\n}\n.icon-level-up:before\n{\n    content: '\\f148';\n}\n.icon-level-down:before\n{\n    content: '\\f149';\n}\n.icon-check-square:before\n{\n    content: '\\f14a';\n}\n.icon-pencil-square:before\n{\n    content: '\\f14b';\n}\n.icon-external-link-square:before\n{\n    content: '\\f14c';\n}\n.icon-share-square:before\n{\n    content: '\\f14d';\n}\n.icon-compass:before\n{\n    content: '\\f14e';\n}\n.icon-toggle-down:before,\n.icon-caret-square-o-down:before\n{\n    content: '\\f150';\n}\n.icon-toggle-up:before,\n.icon-caret-square-o-up:before\n{\n    content: '\\f151';\n}\n.icon-toggle-right:before,\n.icon-caret-square-o-right:before\n{\n    content: '\\f152';\n}\n.icon-euro:before,\n.icon-eur:before\n{\n    content: '\\f153';\n}\n.icon-gbp:before\n{\n    content: '\\f154';\n}\n.icon-dollar:before,\n.icon-usd:before\n{\n    content: '\\f155';\n}\n.icon-rupee:before,\n.icon-inr:before\n{\n    content: '\\f156';\n}\n.icon-cny:before,\n.icon-rmb:before,\n.icon-yen:before,\n.icon-jpy:before\n{\n    content: '\\f157';\n}\n.icon-ruble:before,\n.icon-rouble:before,\n.icon-rub:before\n{\n    content: '\\f158';\n}\n.icon-won:before,\n.icon-krw:before\n{\n    content: '\\f159';\n}\n.icon-bitcoin:before,\n.icon-btc:before\n{\n    content: '\\f15a';\n}\n.icon-file:before\n{\n    content: '\\f15b';\n}\n.icon-file-text:before\n{\n    content: '\\f15c';\n}\n.icon-sort-alpha-asc:before\n{\n    content: '\\f15d';\n}\n.icon-sort-alpha-desc:before\n{\n    content: '\\f15e';\n}\n.icon-sort-amount-asc:before\n{\n    content: '\\f160';\n}\n.icon-sort-amount-desc:before\n{\n    content: '\\f161';\n}\n.icon-sort-numeric-asc:before\n{\n    content: '\\f162';\n}\n.icon-sort-numeric-desc:before\n{\n    content: '\\f163';\n}\n.icon-thumbs-up:before\n{\n    content: '\\f164';\n}\n.icon-thumbs-down:before\n{\n    content: '\\f165';\n}\n.icon-youtube-square:before\n{\n    content: '\\f166';\n}\n.icon-youtube:before\n{\n    content: '\\f167';\n}\n.icon-xing:before\n{\n    content: '\\f168';\n}\n.icon-xing-square:before\n{\n    content: '\\f169';\n}\n.icon-youtube-play:before\n{\n    content: '\\f16a';\n}\n.icon-dropbox:before\n{\n    content: '\\f16b';\n}\n.icon-stack-overflow:before\n{\n    content: '\\f16c';\n}\n.icon-instagram:before\n{\n    content: '\\f16d';\n}\n.icon-flickr:before\n{\n    content: '\\f16e';\n}\n.icon-adn:before\n{\n    content: '\\f170';\n}\n.icon-bitbucket:before\n{\n    content: '\\f171';\n}\n.icon-bitbucket-square:before\n{\n    content: '\\f172';\n}\n.icon-tumblr:before\n{\n    content: '\\f173';\n}\n.icon-tumblr-square:before\n{\n    content: '\\f174';\n}\n.icon-long-arrow-down:before\n{\n    content: '\\f175';\n}\n.icon-long-arrow-up:before\n{\n    content: '\\f176';\n}\n.icon-long-arrow-left:before\n{\n    content: '\\f177';\n}\n.icon-long-arrow-right:before\n{\n    content: '\\f178';\n}\n.icon-apple:before\n{\n    content: '\\f179';\n}\n.icon-windows:before\n{\n    content: '\\f17a';\n}\n.icon-android:before\n{\n    content: '\\f17b';\n}\n.icon-linux:before\n{\n    content: '\\f17c';\n}\n.icon-dribbble:before\n{\n    content: '\\f17d';\n}\n.icon-skype:before\n{\n    content: '\\f17e';\n}\n.icon-foursquare:before\n{\n    content: '\\f180';\n}\n.icon-trello:before\n{\n    content: '\\f181';\n}\n.icon-female:before\n{\n    content: '\\f182';\n}\n.icon-male:before\n{\n    content: '\\f183';\n}\n.icon-gittip:before\n{\n    content: '\\f184';\n}\n.icon-sun-o:before\n{\n    content: '\\f185';\n}\n.icon-moon-o:before\n{\n    content: '\\f186';\n}\n.icon-archive:before\n{\n    content: '\\f187';\n}\n.icon-bug:before\n{\n    content: '\\f188';\n}\n.icon-vk:before\n{\n    content: '\\f189';\n}\n.icon-weibo:before\n{\n    content: '\\f18a';\n}\n.icon-renren:before\n{\n    content: '\\f18b';\n}\n.icon-pagelines:before\n{\n    content: '\\f18c';\n}\n.icon-stack-exchange:before\n{\n    content: '\\f18d';\n}\n.icon-arrow-circle-o-right:before\n{\n    content: '\\f18e';\n}\n.icon-arrow-circle-o-left:before\n{\n    content: '\\f190';\n}\n.icon-toggle-left:before,\n.icon-caret-square-o-left:before\n{\n    content: '\\f191';\n}\n.icon-dot-circle-o:before\n{\n    content: '\\f192';\n}\n.icon-wheelchair:before\n{\n    content: '\\f193';\n}\n.icon-vimeo-square:before\n{\n    content: '\\f194';\n}\n.icon-turkish-lira:before,\n.icon-try:before\n{\n    content: '\\f195';\n}\n.icon-plus-square-o:before\n{\n    content: '\\f196';\n}\n.icon-space-shuttle:before\n{\n    content: '\\f197';\n}\n.icon-slack:before\n{\n    content: '\\f198';\n}\n.icon-envelope-square:before\n{\n    content: '\\f199';\n}\n.icon-wordpress:before\n{\n    content: '\\f19a';\n}\n.icon-openid:before\n{\n    content: '\\f19b';\n}\n.icon-institution:before,\n.icon-bank:before,\n.icon-university:before\n{\n    content: '\\f19c';\n}\n.icon-mortar-board:before,\n.icon-graduation-cap:before\n{\n    content: '\\f19d';\n}\n.icon-yahoo:before\n{\n    content: '\\f19e';\n}\n.icon-google:before\n{\n    content: '\\f1a0';\n}\n.icon-reddit:before\n{\n    content: '\\f1a1';\n}\n.icon-reddit-square:before\n{\n    content: '\\f1a2';\n}\n.icon-stumbleupon-circle:before\n{\n    content: '\\f1a3';\n}\n.icon-stumbleupon:before\n{\n    content: '\\f1a4';\n}\n.icon-delicious:before\n{\n    content: '\\f1a5';\n}\n.icon-digg:before\n{\n    content: '\\f1a6';\n}\n.icon-pied-piper:before\n{\n    content: '\\f1a7';\n}\n.icon-pied-piper-alt:before\n{\n    content: '\\f1a8';\n}\n.icon-drupal:before\n{\n    content: '\\f1a9';\n}\n.icon-joomla:before\n{\n    content: '\\f1aa';\n}\n.icon-language:before\n{\n    content: '\\f1ab';\n}\n.icon-fax:before\n{\n    content: '\\f1ac';\n}\n.icon-building:before\n{\n    content: '\\f1ad';\n}\n.icon-child:before\n{\n    content: '\\f1ae';\n}\n.icon-paw:before\n{\n    content: '\\f1b0';\n}\n.icon-spoon:before\n{\n    content: '\\f1b1';\n}\n.icon-cube:before\n{\n    content: '\\f1b2';\n}\n.icon-cubes:before\n{\n    content: '\\f1b3';\n}\n.icon-behance:before\n{\n    content: '\\f1b4';\n}\n.icon-behance-square:before\n{\n    content: '\\f1b5';\n}\n.icon-steam:before\n{\n    content: '\\f1b6';\n}\n.icon-steam-square:before\n{\n    content: '\\f1b7';\n}\n.icon-recycle:before\n{\n    content: '\\f1b8';\n}\n.icon-automobile:before,\n.icon-car:before\n{\n    content: '\\f1b9';\n}\n.icon-cab:before,\n.icon-taxi:before\n{\n    content: '\\f1ba';\n}\n.icon-tree:before\n{\n    content: '\\f1bb';\n}\n.icon-spotify:before\n{\n    content: '\\f1bc';\n}\n.icon-deviantart:before\n{\n    content: '\\f1bd';\n}\n.icon-soundcloud:before\n{\n    content: '\\f1be';\n}\n.icon-database:before\n{\n    content: '\\f1c0';\n}\n.icon-file-pdf-o:before\n{\n    content: '\\f1c1';\n}\n.icon-file-word-o:before\n{\n    content: '\\f1c2';\n}\n.icon-file-excel-o:before\n{\n    content: '\\f1c3';\n}\n.icon-file-powerpoint-o:before\n{\n    content: '\\f1c4';\n}\n.icon-file-photo-o:before,\n.icon-file-picture-o:before,\n.icon-file-image-o:before\n{\n    content: '\\f1c5';\n}\n.icon-file-zip-o:before,\n.icon-file-archive-o:before\n{\n    content: '\\f1c6';\n}\n.icon-file-sound-o:before,\n.icon-file-audio-o:before\n{\n    content: '\\f1c7';\n}\n.icon-file-movie-o:before,\n.icon-file-video-o:before\n{\n    content: '\\f1c8';\n}\n.icon-file-code-o:before\n{\n    content: '\\f1c9';\n}\n.icon-vine:before\n{\n    content: '\\f1ca';\n}\n.icon-codepen:before\n{\n    content: '\\f1cb';\n}\n.icon-jsfiddle:before\n{\n    content: '\\f1cc';\n}\n.icon-life-bouy:before,\n.icon-life-buoy:before,\n.icon-life-saver:before,\n.icon-support:before,\n.icon-life-ring:before\n{\n    content: '\\f1cd';\n}\n.icon-circle-o-notch:before\n{\n    content: '\\f1ce';\n}\n.icon-ra:before,\n.icon-rebel:before\n{\n    content: '\\f1d0';\n}\n.icon-ge:before,\n.icon-empire:before\n{\n    content: '\\f1d1';\n}\n.icon-git-square:before\n{\n    content: '\\f1d2';\n}\n.icon-git:before\n{\n    content: '\\f1d3';\n}\n.icon-hacker-news:before\n{\n    content: '\\f1d4';\n}\n.icon-tencent-weibo:before\n{\n    content: '\\f1d5';\n}\n.icon-qq:before\n{\n    content: '\\f1d6';\n}\n.icon-wechat:before,\n.icon-weixin:before\n{\n    content: '\\f1d7';\n}\n.icon-send:before,\n.icon-paper-plane:before\n{\n    content: '\\f1d8';\n}\n.icon-send-o:before,\n.icon-paper-plane-o:before\n{\n    content: '\\f1d9';\n}\n.icon-history:before\n{\n    content: '\\f1da';\n}\n.icon-circle-thin:before\n{\n    content: '\\f1db';\n}\n.icon-header:before\n{\n    content: '\\f1dc';\n}\n.icon-paragraph:before\n{\n    content: '\\f1dd';\n}\n.icon-sliders:before\n{\n    content: '\\f1de';\n}\n.icon-share-alt:before\n{\n    content: '\\f1e0';\n}\n.icon-share-alt-square:before\n{\n    content: '\\f1e1';\n}\n.icon-bomb:before\n{\n    content: '\\f1e2';\n}\n.icon-soccer-ball-o:before,\n.icon-futbol-o:before\n{\n    content: '\\f1e3';\n}\n.icon-tty:before\n{\n    content: '\\f1e4';\n}\n.icon-binoculars:before\n{\n    content: '\\f1e5';\n}\n.icon-plug:before\n{\n    content: '\\f1e6';\n}\n.icon-slideshare:before\n{\n    content: '\\f1e7';\n}\n.icon-twitch:before\n{\n    content: '\\f1e8';\n}\n.icon-yelp:before\n{\n    content: '\\f1e9';\n}\n.icon-newspaper-o:before\n{\n    content: '\\f1ea';\n}\n.icon-wifi:before\n{\n    content: '\\f1eb';\n}\n.icon-calculator:before\n{\n    content: '\\f1ec';\n}\n.icon-paypal:before\n{\n    content: '\\f1ed';\n}\n.icon-google-wallet:before\n{\n    content: '\\f1ee';\n}\n.icon-cc-visa:before\n{\n    content: '\\f1f0';\n}\n.icon-cc-mastercard:before\n{\n    content: '\\f1f1';\n}\n.icon-cc-discover:before\n{\n    content: '\\f1f2';\n}\n.icon-cc-amex:before\n{\n    content: '\\f1f3';\n}\n.icon-cc-paypal:before\n{\n    content: '\\f1f4';\n}\n.icon-cc-stripe:before\n{\n    content: '\\f1f5';\n}\n.icon-bell-slash:before\n{\n    content: '\\f1f6';\n}\n.icon-bell-slash-o:before\n{\n    content: '\\f1f7';\n}\n.icon-trash:before\n{\n    content: '\\f1f8';\n}\n.icon-copyright:before\n{\n    content: '\\f1f9';\n}\n.icon-at:before\n{\n    content: '\\f1fa';\n}\n.icon-eyedropper:before\n{\n    content: '\\f1fb';\n}\n.icon-paint-brush:before\n{\n    content: '\\f1fc';\n}\n.icon-birthday-cake:before\n{\n    content: '\\f1fd';\n}\n.icon-area-chart:before\n{\n    content: '\\f1fe';\n}\n.icon-pie-chart:before\n{\n    content: '\\f200';\n}\n.icon-line-chart:before\n{\n    content: '\\f201';\n}\n.icon-lastfm:before\n{\n    content: '\\f202';\n}\n.icon-lastfm-square:before\n{\n    content: '\\f203';\n}\n.icon-toggle-off:before\n{\n    content: '\\f204';\n}\n.icon-toggle-on:before\n{\n    content: '\\f205';\n}\n.icon-bicycle:before\n{\n    content: '\\f206';\n}\n.icon-bus:before\n{\n    content: '\\f207';\n}\n.icon-ioxhost:before\n{\n    content: '\\f208';\n}\n.icon-angellist:before\n{\n    content: '\\f209';\n}\n.icon-cc:before\n{\n    content: '\\f20a';\n}\n.icon-shekel:before,\n.icon-sheqel:before,\n.icon-ils:before\n{\n    content: '\\f20b';\n}\n.icon-meanpath:before\n{\n    content: '\\f20c';\n}\n.icon-glass:before,\n.icon-music:before,\n.icon-search:before,\n.icon-envelope-o:before,\n.icon-heart:before,\n.icon-star:before,\n.icon-star-o:before,\n.icon-user:before,\n.icon-film:before,\n.icon-th-large:before,\n.icon-th:before,\n.icon-th-list:before,\n.icon-check:before,\n.icon-remove:before,\n.icon-close:before,\n.icon-times:before,\n.icon-search-plus:before,\n.icon-search-minus:before,\n.icon-power-off:before,\n.icon-signal:before,\n.icon-gear:before,\n.icon-cog:before,\n.icon-trash-o:before,\n.icon-home:before,\n.icon-file-o:before,\n.icon-clock-o:before,\n.icon-road:before,\n.icon-download:before,\n.icon-arrow-circle-o-down:before,\n.icon-arrow-circle-o-up:before,\n.icon-inbox:before,\n.icon-play-circle-o:before,\n.icon-rotate-right:before,\n.icon-repeat:before,\n.icon-refresh:before,\n.icon-list-alt:before,\n.icon-lock:before,\n.icon-flag:before,\n.icon-headphones:before,\n.icon-volume-off:before,\n.icon-volume-down:before,\n.icon-volume-up:before,\n.icon-qrcode:before,\n.icon-barcode:before,\n.icon-tag:before,\n.icon-tags:before,\n.icon-book:before,\n.icon-bookmark:before,\n.icon-print:before,\n.icon-camera:before,\n.icon-font:before,\n.icon-bold:before,\n.icon-italic:before,\n.icon-text-height:before,\n.icon-text-width:before,\n.icon-align-left:before,\n.icon-align-center:before,\n.icon-align-right:before,\n.icon-align-justify:before,\n.icon-list:before,\n.icon-dedent:before,\n.icon-outdent:before,\n.icon-indent:before,\n.icon-video-camera:before,\n.icon-photo:before,\n.icon-image:before,\n.icon-picture-o:before,\n.icon-pencil:before,\n.icon-map-marker:before,\n.icon-adjust:before,\n.icon-tint:before,\n.icon-edit:before,\n.icon-pencil-square-o:before,\n.icon-share-square-o:before,\n.icon-check-square-o:before,\n.icon-arrows:before,\n.icon-step-backward:before,\n.icon-fast-backward:before,\n.icon-backward:before,\n.icon-play:before,\n.icon-pause:before,\n.icon-stop:before,\n.icon-forward:before,\n.icon-fast-forward:before,\n.icon-step-forward:before,\n.icon-eject:before,\n.icon-chevron-left:before,\n.icon-chevron-right:before,\n.icon-plus-circle:before,\n.icon-minus-circle:before,\n.icon-times-circle:before,\n.icon-check-circle:before,\n.icon-question-circle:before,\n.icon-info-circle:before,\n.icon-crosshairs:before,\n.icon-times-circle-o:before,\n.icon-check-circle-o:before,\n.icon-ban:before,\n.icon-arrow-left:before,\n.icon-arrow-right:before,\n.icon-arrow-up:before,\n.icon-arrow-down:before,\n.icon-mail-forward:before,\n.icon-share:before,\n.icon-expand:before,\n.icon-compress:before,\n.icon-plus:before,\n.icon-minus:before,\n.icon-asterisk:before,\n.icon-exclamation-circle:before,\n.icon-gift:before,\n.icon-leaf:before,\n.icon-fire:before,\n.icon-eye:before,\n.icon-eye-slash:before,\n.icon-warning:before,\n.icon-exclamation-triangle:before,\n.icon-plane:before,\n.icon-calendar:before,\n.icon-random:before,\n.icon-comment:before,\n.icon-magnet:before,\n.icon-chevron-up:before,\n.icon-chevron-down:before,\n.icon-retweet:before,\n.icon-shopping-cart:before,\n.icon-folder:before,\n.icon-folder-open:before,\n.icon-arrows-v:before,\n.icon-arrows-h:before,\n.icon-bar-chart-o:before,\n.icon-bar-chart:before,\n.icon-twitter-square:before,\n.icon-facebook-square:before,\n.icon-camera-retro:before,\n.icon-key:before,\n.icon-gears:before,\n.icon-cogs:before,\n.icon-comments:before,\n.icon-thumbs-o-up:before,\n.icon-thumbs-o-down:before,\n.icon-star-half:before,\n.icon-heart-o:before,\n.icon-sign-out:before,\n.icon-linkedin-square:before,\n.icon-thumb-tack:before,\n.icon-external-link:before,\n.icon-sign-in:before,\n.icon-trophy:before,\n.icon-github-square:before,\n.icon-upload:before,\n.icon-lemon-o:before,\n.icon-phone:before,\n.icon-square-o:before,\n.icon-bookmark-o:before,\n.icon-phone-square:before,\n.icon-twitter:before,\n.icon-facebook:before,\n.icon-github:before,\n.icon-unlock:before,\n.icon-credit-card:before,\n.icon-feed:before,\n.icon-rss:before,\n.icon-hdd-o:before,\n.icon-bullhorn:before,\n.icon-bell:before,\n.icon-certificate:before,\n.icon-hand-o-right:before,\n.icon-hand-o-left:before,\n.icon-hand-o-up:before,\n.icon-hand-o-down:before,\n.icon-arrow-circle-left:before,\n.icon-arrow-circle-right:before,\n.icon-arrow-circle-up:before,\n.icon-arrow-circle-down:before,\n.icon-globe:before,\n.icon-wrench:before,\n.icon-tasks:before,\n.icon-filter:before,\n.icon-briefcase:before,\n.icon-arrows-alt:before,\n.icon-group:before,\n.icon-users:before,\n.icon-chain:before,\n.icon-link:before,\n.icon-cloud:before,\n.icon-flask:before,\n.icon-cut:before,\n.icon-scissors:before,\n.icon-copy:before,\n.icon-files-o:before,\n.icon-paperclip:before,\n.icon-save:before,\n.icon-floppy-o:before,\n.icon-square:before,\n.icon-navicon:before,\n.icon-reorder:before,\n.icon-bars:before,\n.icon-list-ul:before,\n.icon-list-ol:before,\n.icon-strikethrough:before,\n.icon-underline:before,\n.icon-table:before,\n.icon-magic:before,\n.icon-truck:before,\n.icon-pinterest:before,\n.icon-pinterest-square:before,\n.icon-google-plus-square:before,\n.icon-google-plus:before,\n.icon-money:before,\n.icon-caret-down:before,\n.icon-caret-up:before,\n.icon-caret-left:before,\n.icon-caret-right:before,\n.icon-columns:before,\n.icon-unsorted:before,\n.icon-sort:before,\n.icon-sort-down:before,\n.icon-sort-desc:before,\n.icon-sort-up:before,\n.icon-sort-asc:before,\n.icon-envelope:before,\n.icon-linkedin:before,\n.icon-rotate-left:before,\n.icon-undo:before,\n.icon-legal:before,\n.icon-gavel:before,\n.icon-dashboard:before,\n.icon-tachometer:before,\n.icon-comment-o:before,\n.icon-comments-o:before,\n.icon-flash:before,\n.icon-bolt:before,\n.icon-sitemap:before,\n.icon-umbrella:before,\n.icon-paste:before,\n.icon-clipboard:before,\n.icon-lightbulb-o:before,\n.icon-exchange:before,\n.icon-cloud-download:before,\n.icon-cloud-upload:before,\n.icon-user-md:before,\n.icon-stethoscope:before,\n.icon-suitcase:before,\n.icon-bell-o:before,\n.icon-coffee:before,\n.icon-cutlery:before,\n.icon-file-text-o:before,\n.icon-building-o:before,\n.icon-hospital-o:before,\n.icon-ambulance:before,\n.icon-medkit:before,\n.icon-fighter-jet:before,\n.icon-beer:before,\n.icon-h-square:before,\n.icon-plus-square:before,\n.icon-angle-double-left:before,\n.icon-angle-double-right:before,\n.icon-angle-double-up:before,\n.icon-angle-double-down:before,\n.icon-angle-left:before,\n.icon-angle-right:before,\n.icon-angle-up:before,\n.icon-angle-down:before,\n.icon-desktop:before,\n.icon-laptop:before,\n.icon-tablet:before,\n.icon-mobile-phone:before,\n.icon-mobile:before,\n.icon-circle-o:before,\n.icon-quote-left:before,\n.icon-quote-right:before,\n.icon-spinner:before,\n.icon-circle:before,\n.icon-mail-reply:before,\n.icon-reply:before,\n.icon-github-alt:before,\n.icon-folder-o:before,\n.icon-folder-open-o:before,\n.icon-smile-o:before,\n.icon-frown-o:before,\n.icon-meh-o:before,\n.icon-gamepad:before,\n.icon-keyboard-o:before,\n.icon-flag-o:before,\n.icon-flag-checkered:before,\n.icon-terminal:before,\n.icon-code:before,\n.icon-mail-reply-all:before,\n.icon-reply-all:before,\n.icon-star-half-empty:before,\n.icon-star-half-full:before,\n.icon-star-half-o:before,\n.icon-location-arrow:before,\n.icon-crop:before,\n.icon-code-fork:before,\n.icon-unlink:before,\n.icon-chain-broken:before,\n.icon-question:before,\n.icon-info:before,\n.icon-exclamation:before,\n.icon-superscript:before,\n.icon-subscript:before,\n.icon-eraser:before,\n.icon-puzzle-piece:before,\n.icon-microphone:before,\n.icon-microphone-slash:before,\n.icon-shield:before,\n.icon-calendar-o:before,\n.icon-fire-extinguisher:before,\n.icon-rocket:before,\n.icon-maxcdn:before,\n.icon-chevron-circle-left:before,\n.icon-chevron-circle-right:before,\n.icon-chevron-circle-up:before,\n.icon-chevron-circle-down:before,\n.icon-html5:before,\n.icon-css3:before,\n.icon-anchor:before,\n.icon-unlock-alt:before,\n.icon-bullseye:before,\n.icon-ellipsis-h:before,\n.icon-ellipsis-v:before,\n.icon-feed-square:before,\n.icon-rss-square:before,\n.icon-play-circle:before,\n.icon-ticket:before,\n.icon-minus-square:before,\n.icon-minus-square-o:before,\n.icon-level-up:before,\n.icon-level-down:before,\n.icon-check-square:before,\n.icon-pencil-square:before,\n.icon-external-link-square:before,\n.icon-share-square:before,\n.icon-compass:before,\n.icon-toggle-down:before,\n.icon-caret-square-o-down:before,\n.icon-toggle-up:before,\n.icon-caret-square-o-up:before,\n.icon-toggle-right:before,\n.icon-caret-square-o-right:before,\n.icon-euro:before,\n.icon-eur:before,\n.icon-gbp:before,\n.icon-dollar:before,\n.icon-usd:before,\n.icon-rupee:before,\n.icon-inr:before,\n.icon-cny:before,\n.icon-rmb:before,\n.icon-yen:before,\n.icon-jpy:before,\n.icon-ruble:before,\n.icon-rouble:before,\n.icon-rub:before,\n.icon-won:before,\n.icon-krw:before,\n.icon-bitcoin:before,\n.icon-btc:before,\n.icon-file:before,\n.icon-file-text:before,\n.icon-sort-alpha-asc:before,\n.icon-sort-alpha-desc:before,\n.icon-sort-amount-asc:before,\n.icon-sort-amount-desc:before,\n.icon-sort-numeric-asc:before,\n.icon-sort-numeric-desc:before,\n.icon-thumbs-up:before,\n.icon-thumbs-down:before,\n.icon-youtube-square:before,\n.icon-youtube:before,\n.icon-xing:before,\n.icon-xing-square:before,\n.icon-youtube-play:before,\n.icon-dropbox:before,\n.icon-stack-overflow:before,\n.icon-instagram:before,\n.icon-flickr:before,\n.icon-adn:before,\n.icon-bitbucket:before,\n.icon-bitbucket-square:before,\n.icon-tumblr:before,\n.icon-tumblr-square:before,\n.icon-long-arrow-down:before,\n.icon-long-arrow-up:before,\n.icon-long-arrow-left:before,\n.icon-long-arrow-right:before,\n.icon-apple:before,\n.icon-windows:before,\n.icon-android:before,\n.icon-linux:before,\n.icon-dribbble:before,\n.icon-skype:before,\n.icon-foursquare:before,\n.icon-trello:before,\n.icon-female:before,\n.icon-male:before,\n.icon-gittip:before,\n.icon-sun-o:before,\n.icon-moon-o:before,\n.icon-archive:before,\n.icon-bug:before,\n.icon-vk:before,\n.icon-weibo:before,\n.icon-renren:before,\n.icon-pagelines:before,\n.icon-stack-exchange:before,\n.icon-arrow-circle-o-right:before,\n.icon-arrow-circle-o-left:before,\n.icon-toggle-left:before,\n.icon-caret-square-o-left:before,\n.icon-dot-circle-o:before,\n.icon-wheelchair:before,\n.icon-vimeo-square:before,\n.icon-turkish-lira:before,\n.icon-try:before,\n.icon-plus-square-o:before,\n.icon-space-shuttle:before,\n.icon-slack:before,\n.icon-envelope-square:before,\n.icon-wordpress:before,\n.icon-openid:before,\n.icon-institution:before,\n.icon-bank:before,\n.icon-university:before,\n.icon-mortar-board:before,\n.icon-graduation-cap:before,\n.icon-yahoo:before,\n.icon-google:before,\n.icon-reddit:before,\n.icon-reddit-square:before,\n.icon-stumbleupon-circle:before,\n.icon-stumbleupon:before,\n.icon-delicious:before,\n.icon-digg:before,\n.icon-pied-piper:before,\n.icon-pied-piper-alt:before,\n.icon-drupal:before,\n.icon-joomla:before,\n.icon-language:before,\n.icon-fax:before,\n.icon-building:before,\n.icon-child:before,\n.icon-paw:before,\n.icon-spoon:before,\n.icon-cube:before,\n.icon-cubes:before,\n.icon-behance:before,\n.icon-behance-square:before,\n.icon-steam:before,\n.icon-steam-square:before,\n.icon-recycle:before,\n.icon-automobile:before,\n.icon-car:before,\n.icon-cab:before,\n.icon-taxi:before,\n.icon-tree:before,\n.icon-spotify:before,\n.icon-deviantart:before,\n.icon-soundcloud:before,\n.icon-database:before,\n.icon-file-pdf-o:before,\n.icon-file-word-o:before,\n.icon-file-excel-o:before,\n.icon-file-powerpoint-o:before,\n.icon-file-photo-o:before,\n.icon-file-picture-o:before,\n.icon-file-image-o:before,\n.icon-file-zip-o:before,\n.icon-file-archive-o:before,\n.icon-file-sound-o:before,\n.icon-file-audio-o:before,\n.icon-file-movie-o:before,\n.icon-file-video-o:before,\n.icon-file-code-o:before,\n.icon-vine:before,\n.icon-codepen:before,\n.icon-jsfiddle:before,\n.icon-life-bouy:before,\n.icon-life-buoy:before,\n.icon-life-saver:before,\n.icon-support:before,\n.icon-life-ring:before,\n.icon-circle-o-notch:before,\n.icon-ra:before,\n.icon-rebel:before,\n.icon-ge:before,\n.icon-empire:before,\n.icon-git-square:before,\n.icon-git:before,\n.icon-hacker-news:before,\n.icon-tencent-weibo:before,\n.icon-qq:before,\n.icon-wechat:before,\n.icon-weixin:before,\n.icon-send:before,\n.icon-paper-plane:before,\n.icon-send-o:before,\n.icon-paper-plane-o:before,\n.icon-history:before,\n.icon-circle-thin:before,\n.icon-header:before,\n.icon-paragraph:before,\n.icon-sliders:before,\n.icon-share-alt:before,\n.icon-share-alt-square:before,\n.icon-bomb:before,\n.icon-soccer-ball-o:before,\n.icon-futbol-o:before,\n.icon-tty:before,\n.icon-binoculars:before,\n.icon-plug:before,\n.icon-slideshare:before,\n.icon-twitch:before,\n.icon-yelp:before,\n.icon-newspaper-o:before,\n.icon-wifi:before,\n.icon-calculator:before,\n.icon-paypal:before,\n.icon-google-wallet:before,\n.icon-cc-visa:before,\n.icon-cc-mastercard:before,\n.icon-cc-discover:before,\n.icon-cc-amex:before,\n.icon-cc-paypal:before,\n.icon-cc-stripe:before,\n.icon-bell-slash:before,\n.icon-bell-slash-o:before,\n.icon-trash:before,\n.icon-copyright:before,\n.icon-at:before,\n.icon-eyedropper:before,\n.icon-paint-brush:before,\n.icon-birthday-cake:before,\n.icon-area-chart:before,\n.icon-pie-chart:before,\n.icon-line-chart:before,\n.icon-lastfm:before,\n.icon-lastfm-square:before,\n.icon-toggle-off:before,\n.icon-toggle-on:before,\n.icon-bicycle:before,\n.icon-bus:before,\n.icon-ioxhost:before,\n.icon-angellist:before,\n.icon-cc:before,\n.icon-shekel:before,\n.icon-sheqel:before,\n.icon-ils:before,\n.icon-meanpath:before\n{\n    font: normal normal normal 14px/1 icons;\n    font-size: inherit;\n\n    display: inline-block;\n\n    text-rendering: auto;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n/* ==========================================================================\n   2. General - Setting up some base styles\n   ========================================================================== */\nhtml\n{\n    font-size: 62.5%;\n\n    height: 100%;\n    max-height: 100%;\n}\nbody\n{\n    font-family: 'Noto Serif', serif;\n    font-size: 2rem;\n    line-height: 1.6em;\n\n    overflow-x: none;\n\n    height: 100%;\n    max-height: 100%;\n\n    color: #3a4145;\n}\n::-moz-selection\n{\n    color: #222;\n    background: #d6edff;\n    text-shadow: none;\n}\n::selection\n{\n    color: #222;\n    background: #d6edff;\n    text-shadow: none;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n{\n    font-family: 'Open Sans', sans-serif;\n    line-height: 1;\n\n    margin-top: 0;\n\n    text-rendering: optimizeLegibility;\n}\nh1\n{\n    font-size: 5rem;\n    line-height: 1.2em;\n\n    text-indent: -3px;\n    letter-spacing: -2px;\n}\nh2\n{\n    font-size: 4rem;\n    line-height: 1.2em;\n\n    text-indent: -2px;\n    letter-spacing: -1px;\n}\nh3\n{\n    font-size: 3.5rem;\n}\nh4\n{\n    font-size: 3rem;\n}\nh5\n{\n    font-size: 2.5rem;\n}\nh6\n{\n    font-size: 2rem;\n}\na\n{\n    transition: color ease .3s;\n\n    color: #4a4a4a;\n}\na:hover\n{\n    color: #57a3e8;\n}\nh1 a,\nh2 a,\nh3 a,\nh4 a,\nh5 a,\nh6 a\n{\n    color: #50585d;\n}\np,\nul,\nol,\ndl\n{\n    margin: 1.6em 0;\n}\nol ol,\nul ul,\nul ol,\nol ul\n{\n    margin: .4em 0;\n}\ndl dt\n{\n    font-weight: bold;\n\n    float: left;\n    clear: left;\n    overflow: hidden;\n\n    width: 180px;\n    margin-bottom: 1em;\n\n    text-align: right;\n    white-space: nowrap;\n    text-overflow: ellipsis;\n}\ndl dd\n{\n    margin-bottom: 1em;\n    margin-left: 200px;\n}\nhr\n{\n    display: block;\n\n    height: 1px;\n    margin: 3.2em 0;\n    padding: 0;\n\n    border: 0;\n    border-top: 1px solid #efefef;\n}\nblockquote\n{\n    -moz-box-sizing: border-box;\n         box-sizing: border-box;\n    margin: 1.6em 0 1.6em -2.2em;\n    padding: 0 0 0 1.6em;\n\n    border-left: #4a4a4a .4em solid;\n}\nblockquote p\n{\n    font-style: italic;\n\n    margin: .8em 0;\n}\nblockquote small\n{\n    font-size: .9em;\n\n    display: inline-block;\n\n    margin: .8em 0 .8em 1.5em;\n\n    color: #ccc;\n}\nblockquote small:before\n{\n    content: '\\2014 \\00A0';\n}\nblockquote cite\n{\n    font-weight: bold;\n}\nblockquote cite a\n{\n    font-weight: normal;\n}\nmark\n{\n    background-color: #ffc336;\n}\ncode,\ntt\n{\n    font-family: Inconsolata, monospace, sans-serif;\n    font-size: .85em;\n\n    padding: 1px 3px;\n\n    white-space: pre-wrap;\n\n    border: 1px solid #e3edf3;\n    border-radius: 2px;\n    background: #f7fafb;\n}\npre\n{\n    font-family: Inconsolata, monospace, sans-serif;\n    font-size: .9em;\n\n    overflow: auto;\n\n    -moz-box-sizing: border-box;\n         box-sizing: border-box;\n    width: 100%;\n    margin: 1.6em 0;\n    padding: 10px;\n\n    white-space: pre;\n\n    border: 1px solid #e3edf3;\n    border-radius: 3px;\n    background: #f7fafb;\n}\npre code,\ntt\n{\n    font-size: inherit;\n\n    padding: 0;\n\n    white-space: -moz-pre-wrap;\n    white-space:      pre-wrap;\n\n    border: none;\n    background: transparent;\n}\nkbd\n{\n    font-size: .9em;\n    font-weight: bold;\n\n    display: inline-block;\n\n    margin-bottom: .4em;\n    padding: 1px 8px;\n\n    color: #666;\n    border: #ccc 1px solid;\n    border-radius: 4px;\n    background: #f4f4f4;\n    box-shadow: 0 1px 0 rgba(0, 0, 0, .2), 0 1px 0 0 #fff inset;\n    text-shadow: #fff 0 1px 0;\n}\ntable\n{\n    -moz-box-sizing: border-box;\n         box-sizing: border-box;\n    width: 100%;\n    max-width: 100%;\n    margin: 1.6em 0;\n\n    background-color: transparent;\n}\ntable th,\ntable td\n{\n    line-height: 20px;\n\n    padding: 8px;\n\n    text-align: left;\n    vertical-align: top;\n\n    border-top: 1px solid #efefef;\n}\ntable th\n{\n    color: #000;\n}\ntable caption + thead tr:first-child th,\ntable caption + thead tr:first-child td,\ntable colgroup + thead tr:first-child th,\ntable colgroup + thead tr:first-child td,\ntable thead:first-child tr:first-child th,\ntable thead:first-child tr:first-child td\n{\n    border-top: 0;\n}\ntable tbody + tbody\n{\n    border-top: 2px solid #efefef;\n}\ntable table table\n{\n    background-color: #fff;\n}\ntable tbody > tr:nth-child(odd) > td,\ntable tbody > tr:nth-child(odd) > th\n{\n    background-color: #f6f6f6;\n}\ntable.plain tbody > tr:nth-child(odd) > td,\ntable.plain tbody > tr:nth-child(odd) > th\n{\n    background: transparent;\n}\niframe,\n.fluid-width-video-wrapper\n{\n    display: block;\n\n    margin: 1.6em 0;\n}\n/* When a video is inside the fitvids wrapper, drop the\nmargin on the iframe, cause it breaks stuff. */\n.fluid-width-video-wrapper iframe\n{\n    margin: 0;\n}\n/* ==========================================================================\n   3. Utilities - These things get used a lot\n   ========================================================================== */\n/* Hides shit */\n.hidden\n{\n    display: none;\n    visibility: hidden;\n\n    text-indent: -9999px;\n}\n/* Creates a responsive wrapper that makes our content scale nicely */\n.inner\n{\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding-bottom: 1em;\n}\n/* Centres vertically yo. (IE8+) */\n.vertical-row\n{\n    display: table-row;\n}\n.vertical\n{\n    display: table-cell;\n\n    vertical-align: middle;\n}\n.clear\n{\n    clear: both;\n\n    height: 0;\n    margin: 0;\n    padding: 0;\n}\n.wrapword\n{\n    white-space: -moz-pre-wrap !important;\n    /* Mozilla, since 1999 */\n    white-space: -pre-wrap;\n    /* Opera 4-6 */\n    white-space:   -o-pre-wrap;\n    /* Opera 7 */\n    white-space:      pre-wrap;\n    white-space: normal;\n    /* css-3 */\n    word-wrap: break-word;\n    /* Internet Explorer 5.5+ */\n    word-break: break-all;\n}\n/* ==========================================================================\n   WP styles\n   ========================================================================== */\n/*--------------------------------------------------------------\n3.0 Elements\n--------------------------------------------------------------*/\nhr\n{\n    height: 1px;\n    margin-bottom: 1.5em;\n\n    border: 0;\n    background-color: #ccc;\n}\nul,\nol\n{\n    margin: 0 0 1.5em 3em;\n}\nul\n{\n    list-style: disc;\n}\nol\n{\n    list-style: decimal;\n}\nli > ul,\nli > ol\n{\n    margin-bottom: 0;\n    margin-left: 1.5em;\n}\ndt\n{\n    font-weight: bold;\n}\ndd\n{\n    margin: 0 1.5em 1.5em;\n}\nimg\n{\n    /* Make sure images are scaled correctly. */\n    max-width: 100%;\n    height: auto;\n    /* Adhere to container width. */\n}\nfigure\n{\n    margin: 0;\n}\ntable\n{\n    width: 100%;\n    margin: 0 0 1.5em;\n}\nth\n{\n    font-weight: bold;\n}\n/*--------------------------------------------------------------\n4.0 Forms\n--------------------------------------------------------------*/\nbutton,\ninput,\nselect,\ntextarea\n{\n    font-size: 100%;\n    /* Corrects font size not being inherited in all browsers */\n\n    margin: 0;\n    /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */\n\n    vertical-align: baseline;\n    /* Improves appearance and consistency in all browsers */\n\n    *vertical-align: middle;\n    /* Improves appearance and consistency in IE6/IE7 */\n}\nbutton,\ninput[type='button'],\ninput[type='reset'],\ninput[type='submit']\n{\n    /* Corrects inability to style clickable 'input' types in iOS */\n    font-size: 12px;\n    font-size: 1.2rem;\n    line-height: 1;\n\n    padding: .6em 1em .4em;\n\n    cursor: pointer;\n\n    color: rgba(0, 0, 0, .8);\n    border: 1px solid #ccc;\n    border-color: #ccc #ccc #bbb #ccc;\n    border-radius: 3px;\n    background: #e6e6e6;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 15px 17px rgba(255, 255, 255, .5), inset 0 -5px 12px rgba(0, 0, 0, .05);\n    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);\n    /* Improves usability and consistency of cursor style between image-type 'input' and others */\n\n    -webkit-appearance: button;\n}\nbutton:hover,\ninput[type='button']:hover,\ninput[type='reset']:hover,\ninput[type='submit']:hover\n{\n    border-color: #ccc #bbb #aaa #bbb;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), inset 0 15px 17px rgba(255, 255, 255, .8), inset 0 -5px 12px rgba(0, 0, 0, .02);\n}\nbutton:focus,\ninput[type='button']:focus,\ninput[type='reset']:focus,\ninput[type='submit']:focus,\nbutton:active,\ninput[type='button']:active,\ninput[type='reset']:active,\ninput[type='submit']:active\n{\n    border-color: #aaa #bbb #bbb #bbb;\n    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .5), inset 0 2px 5px rgba(0, 0, 0, .15);\n}\ninput[type='checkbox'],\ninput[type='radio']\n{\n    padding: 0;\n    /* Addresses excess padding in IE8/9 */\n}\ninput[type='search']\n{\n    /* Addresses appearance set to searchfield in S5, Chrome */\n    -webkit-box-sizing: content-box;\n    /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */\n       -moz-box-sizing: content-box;\n            box-sizing: content-box;\n\n    -webkit-appearance: textfield;\n}\ninput[type='search']::-webkit-search-decoration\n{\n    /* Corrects inner padding displayed oddly in S5, Chrome on OSX */\n    -webkit-appearance: none;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner\n{\n    padding: 0;\n    /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */\n\n    border: 0;\n}\ninput[type='text'],\ninput[type='email'],\ninput[type='url'],\ninput[type='password'],\ninput[type='search'],\ntextarea\n{\n    color: #666;\n    border: 1px solid #ccc;\n    border-radius: 3px;\n}\ninput[type='text']:focus,\ninput[type='email']:focus,\ninput[type='url']:focus,\ninput[type='password']:focus,\ninput[type='search']:focus,\ntextarea:focus\n{\n    color: #111;\n}\ninput[type='text'],\ninput[type='email'],\ninput[type='url'],\ninput[type='password'],\ninput[type='search']\n{\n    padding: 3px;\n}\ntextarea\n{\n    overflow: auto;\n    /* Improves readability and alignment in all browsers */\n\n    width: 98%;\n    /* Removes default vertical scrollbar in IE6/7/8/9 */\n    padding-left: 3px;\n\n    vertical-align: top;\n}\n/*--------------------------------------------------------------\n5.0 Navigation\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n5.2 Menus\n--------------------------------------------------------------*/\n.main-navigation\n{\n    font-family: 'Open Sans', sans-serif;\n\n    width: 100%;\n    padding: 5px 0;\n\n    color: white;\n}\n.main-navigation > div\n{\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding: 0;\n}\n.main-navigation ul\n{\n    font-size: 1.2rem;\n\n    float: right;\n\n    margin: 0 4rem;\n    padding: 0;\n\n    list-style: none;\n}\n.main-navigation li\n{\n    position: relative;\n\n    float: left;\n}\n.main-navigation a\n{\n    display: block;\n\n    padding: 12px 20px;\n\n    -webkit-transition: color .3s ease, background .3s ease;\n       -moz-transition: color .3s ease, background .3s ease;\n            transition: color .3s ease, background .3s ease;\n    text-decoration: none;\n\n    color: white;\n    background-color: rgba(0, 0, 0, 0);\n}\n.main-navigation a:hover\n{\n    color: white;\n    background-color: rgba(0, 0, 0, .4);\n}\n.main-navigation ul ul\n{\n    position: absolute;\n    z-index: 99999;\n    top: 100%;\n    left: 0;\n\n    display: none;\n\n    width: 100%;\n    margin: 0;\n}\n.main-navigation ul ul ul\n{\n    top: 0;\n    left: 100%;\n}\n.main-navigation ul li:hover > ul\n{\n    display: block;\n}\n/* Small menu */\n.menu-toggle\n{\n    font-size: 0;\n\n    position: absolute;\n    top: 0;\n    right: 0;\n\n    display: none;\n    overflow: hidden;\n\n    width: 48px;\n    height: 48px;\n    margin: 0;\n\n    cursor: pointer;\n    text-align: center;\n}\n.menu-toggle a\n{\n    padding: 5px;\n}\n.menu-toggle a:before\n{\n    font-size: 3rem;\n}\n@media screen and (max-width: 600px)\n{\n    .menu-toggle,\n    .main-navigation.toggled .nav-menu\n    {\n        display: block;\n    }\n    .main-navigation ul\n    {\n        font-size: 1.8rem;\n\n        display: none;\n\n        margin: 0;\n\n        background-color: rgba(0, 0, 0, .4);\n    }\n    .main-navigation li\n    {\n        float: none;\n\n        width: 100%;\n        margin: 0 auto;\n\n        border-bottom: 1px solid #444;\n    }\n}\n.site-main .comment-navigation,\n.site-main .paging-navigation,\n.site-main .post-navigation\n{\n    overflow: hidden;\n\n    margin: 0 0 1.5em;\n}\n.comment-navigation .nav-previous,\n.paging-navigation .nav-previous,\n.post-navigation .nav-previous\n{\n    float: left;\n\n    width: 50%;\n}\n.comment-navigation .nav-next,\n.paging-navigation .nav-next,\n.post-navigation .nav-next\n{\n    float: right;\n\n    width: 50%;\n\n    text-align: right;\n}\n/*--------------------------------------------------------------\n6.0 Accessibility\n--------------------------------------------------------------*/\n/* Text meant only for screen readers */\n.screen-reader-text\n{\n    position: absolute !important;\n\n    clip: rect(1px, 1px, 1px, 1px);\n}\n.screen-reader-text:hover,\n.screen-reader-text:active,\n.screen-reader-text:focus\n{\n    font-size: 14px;\n    font-weight: bold;\n    line-height: normal;\n\n    z-index: 100000;\n    top: 5px;\n    left: 5px;\n\n    display: block;\n    clip: auto !important;\n\n    width: auto;\n    height: auto;\n    padding: 15px 23px 14px;\n\n    text-decoration: none;\n\n    color: #21759b;\n    border-radius: 3px;\n    background-color: #f1f1f1;\n    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);\n    /* Above WP toolbar */\n}\n/*--------------------------------------------------------------\n7.0 Alignments\n--------------------------------------------------------------*/\n.alignleft\n{\n    display: inline;\n    float: left;\n\n    margin-right: 1.5em;\n}\n.alignright\n{\n    display: inline;\n    float: right;\n\n    margin-left: 1.5em;\n}\n.aligncenter\n{\n    display: block;\n    clear: both;\n\n    margin: 0 auto;\n}\n/*--------------------------------------------------------------\n8.0 Clearings\n--------------------------------------------------------------*/\n.clear:before,\n.clear:after,\n.entry-content:before,\n.entry-content:after,\n.comment-content:before,\n.comment-content:after,\n.site-header:before,\n.site-header:after,\n.site-content:before,\n.site-content:after,\n.site-footer:before,\n.site-footer:after\n{\n    display: table;\n\n    content: '';\n}\n.clear:after,\n.entry-content:after,\n.comment-content:after,\n.site-header:after,\n.site-content:after,\n.site-footer:after\n{\n    clear: both;\n}\n/*--------------------------------------------------------------\n9.0 Widgets\n--------------------------------------------------------------*/\n.widget\n{\n    margin: 0 0 1.5em;\n}\n/* Make sure select elements fit in widgets */\n.widget select\n{\n    max-width: 100%;\n}\n/* Search widget */\n.widget_search .search-submit\n{\n    display: none;\n}\n/* Main widget wrapper */\n.widget-area\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    padding-bottom: 4rem;\n\n    color: #9eabb3;\n}\n.widget-area *\n{\n    box-sizing: border-box;\n}\n.widget-area h1\n{\n    font-size: 2.5rem;\n}\n.widget-area aside\n{\n    float: left;\n    overflow: hidden;\n\n    width: 50%;\n    height: 300px;\n    padding: 2rem 1rem;\n}\n.search-submit\n{\n    display: inline-block;\n\n    padding: 15px;\n\n    transition: border ease .3s;\n    text-decoration: none;\n\n    border: #ebf2f6 2px solid;\n    border-width: 3px;\n    border-radius: 30px;\n    background: none;\n}\n.search-submit:hover,\n.form-submit #submit:hover\n{\n    border-color: #9eabb3;\n}\n/*--------------------------------------------------------------\n10.0 Content\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.1 Posts and pages\n--------------------------------------------------------------*/\n.sticky\n{\n    content: '';\n}\n.hentry\n{\n    margin: 0 0 1.5em;\n}\n.byline,\n.updated\n{\n    display: none;\n}\n.single .byline,\n.group-blog .byline\n{\n    display: inline;\n}\n.page-content,\n.entry-content,\n.entry-summary\n{\n    margin: 1.5em 0 0;\n}\n.page-links\n{\n    clear: both;\n\n    margin: 0 0 1.5em;\n}\n.post-image:after\n{\n    display: block;\n    clear: both;\n\n    content: ' ';\n}\n/*--------------------------------------------------------------\n10.2 Asides\n--------------------------------------------------------------*/\n.blog .format-aside .entry-title,\n.archive .format-aside .entry-title\n{\n    display: none;\n}\n/*--------------------------------------------------------------\n10.3 Comments\n--------------------------------------------------------------*/\n.comment-content a\n{\n    word-wrap: break-word;\n}\n.bypostauthor\n{\n    content: '';\n}\n/*--------------------------------------------------------------\n11.0 Infinite scroll\n--------------------------------------------------------------*/\n/* Globally hidden elements when Infinite Scroll is supported and in use. */\n.infinite-scroll .paging-navigation,\n.infinite-scroll.neverending .site-footer\n{\n    /* Theme Footer (when set to scrolling) */\n    display: none;\n}\n/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */\n.infinity-end.neverending .site-footer\n{\n    display: block;\n}\n.wp-caption\n{\n    max-width: 100%;\n    margin-bottom: 1.5em;\n\n    border: 1px solid #ccc;\n}\n.wp-caption img[class*='wp-image-']\n{\n    display: block;\n\n    max-width: 98%;\n    margin: 1.2% auto 0;\n}\n.wp-caption-text\n{\n    text-align: center;\n}\n.wp-caption .wp-caption-text\n{\n    margin: .8075em 0;\n}\n.site-main .gallery\n{\n    margin-bottom: 1.5em;\n}\n.gallery-caption\n{\n    content: '';\n}\n.site-main .gallery a img\n{\n    max-width: 90%;\n    height: auto;\n\n    border: none;\n}\n.site-main .gallery dd,\n.site-main .gallery figcaption\n{\n    margin: 0;\n}\n/* Make sure embeds and iframes fit their containers */\nembed,\niframe,\nobject\n{\n    max-width: 100%;\n}\n/* ==========================================================================\n   4. General - The main styles for the the theme\n   ========================================================================== */\n/* Big cover image on the home page */\n.site-head\n{\n    position: relative;\n\n    display: table;\n\n    width: 100%;\n    height: 60%;\n    margin-bottom: 5rem;\n\n    text-align: center;\n\n    color: #fff;\n    border-bottom: #ebf2f6 1px solid;\n    background: #303538 no-repeat center center;\n    background-size: cover;\n}\n.site-head:after\n{\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n\n    display: block;\n\n    width: 7px;\n    height: 7px;\n    margin-left: -5px;\n\n    content: '';\n\n    border: #e7eef2 1px solid;\n    -webkit-border-radius: 100%;\n       -moz-border-radius: 100%;\n            border-radius: 100%;\n    background: #fff;\n    box-shadow: #fff 0 0 0 5px;\n}\nbody.home .site-head:after\n{\n    z-index: -3;\n}\n/* Yo-logo. Yolo-go. Upload one in ghost/settings/ */\n.blog-logo\n{\n    text-decoration: none;\n\n    color: white;\n}\n.blog-logo img\n{\n    line-height: 0;\n\n    display: block;\n\n    width: auto;\n    max-height: 120px;\n    margin: 0 auto;\n}\n/* The details of your blog. Defined in ghost/settings/ */\n.blog-title\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 5rem;\n    font-weight: bold;\n\n    margin: 10px 0 10px 0;\n\n    letter-spacing: -1px;\n\n    text-shadow: 0 1px 6px rgba(0, 0, 0, .1);\n}\n.blog-description\n{\n    font-family: 'Noto Serif', serif;\n    font-size: 1.8rem;\n    font-weight: 300;\n    line-height: 1.5em;\n\n    margin: 0;\n\n    letter-spacing: 0;\n\n    text-shadow: 0 1px 3px rgba(0, 0, 0, .15);\n}\n/* Every post, on every page, gets this style on its <article> tag */\n.post-wrap\n{\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n\n    word-break: break-word;\n    hyphens: auto;\n}\n/* Add a little circle in the middle of the border-bottom on our .post\n   just for the lolz and stylepoints. */\n.circle-in-border\n{\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n\n    display: block;\n\n    width: 7px;\n    height: 7px;\n    margin-left: -5px;\n\n    content: '';\n\n    border: #e7eef2 1px solid;\n    -webkit-border-radius: 100%;\n       -moz-border-radius: 100%;\n            border-radius: 100%;\n    background: #fff;\n    box-shadow: #fff 0 0 0 5px;\n}\n.error-404 article\n{\n    margin-bottom: 20px;\n    padding-top: 20px;\n\n    border-top: #ebf2f6 1px solid;\n}\n.hentry\n{\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n\n    word-break: break-word;\n    hyphens: auto;\n\n    border-bottom: #ebf2f6 1px solid;\n}\n/* Add a little circle in the middle of the border-bottom on our .post\n   just for the lolz and stylepoints. */\n.hentry:after\n{\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n\n    display: block;\n\n    width: 7px;\n    height: 7px;\n    margin-left: -5px;\n\n    content: '';\n\n    border: #e7eef2 1px solid;\n    -webkit-border-radius: 100%;\n       -moz-border-radius: 100%;\n            border-radius: 100%;\n    background: #fff;\n    box-shadow: #fff 0 0 0 5px;\n}\n.post-title\n{\n    margin: 0;\n}\n.post-title a\n{\n    text-decoration: none;\n}\n.post-excerpt p\n{\n    font-size: .9em;\n    line-height: 1.6em;\n\n    margin: 1.6rem 0 0 0;\n}\n.post-meta\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.5rem;\n\n    display: inline-block;\n\n    margin: 0 0 5px 0;\n\n    color: #9eabb3;\n}\n.post-meta a\n{\n    text-decoration: none;\n\n    color: #9eabb3;\n}\n.post-meta a:hover\n{\n    text-decoration: underline;\n}\n.user-meta\n{\n    position: relative;\n\n    min-height: 77px;\n    padding: .3rem 40px 0 100px;\n}\n.user-image\n{\n    position: absolute;\n    top: 0;\n    left: 0;\n}\n.user-name\n{\n    font-weight: bold;\n\n    display: block;\n}\n.user-bio\n{\n    font-size: 1.4rem;\n    line-height: 1.5em;\n\n    display: block;\n\n    max-width: 440px;\n}\n.publish-meta\n{\n    position: absolute;\n    top: 0;\n    right: 0;\n\n    padding: 4.3rem 0 4rem 0;\n\n    text-align: right;\n}\n.publish-heading\n{\n    font-weight: bold;\n\n    display: block;\n}\n.publish-date\n{\n    font-size: 1.4rem;\n    line-height: 1.5em;\n\n    display: block;\n}\n/* ==========================================================================\n   5. Single Post - When you click on an individual post\n   ========================================================================== */\n/* Tweak the .post wrapper style */\n.post-template .post\n{\n    margin-top: 0;\n    padding-bottom: 0;\n\n    border-bottom: none;\n}\n/* Kill that stylish little circle that was on the border, too */\n.post-template .post:after\n{\n    display: none;\n}\n/* Insert some mad padding up in the header for better spacing */\n.post-template .post-header\n{\n    padding: 60px 0;\n\n    text-align: center;\n}\n.post-header img\n{\n    display: block;\n\n    max-width: 100%;\n    height: auto;\n    margin: 0 auto;\n    padding-top: 1rem;\n\n    transition: opacity ease .6s;\n\n    opacity: 0;\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';\n        filter: alpha(opacity=0);\n}\n.post-template .blog-title\n{\n    display: inline-block;\n\n    padding: 2.5rem 0;\n}\n/* Keep large images within the bounds of the post-width */\n.post-content img\n{\n    display: block;\n\n    max-width: 100%;\n    height: auto;\n    margin: 0 auto;\n    padding: 1em;\n}\n.post-content img.wp-smiley\n{\n    display: inline;\n\n    padding: 0;\n}\n.post-content .wp-caption img\n{\n    padding: 0;\n}\n/* The author credit area after the post */\n.post-footer\n{\n    position: relative;\n\n    margin: 4rem 0 0 0;\n    padding: 4rem 0 0 0;\n\n    border-top: #ebf2f6 1px solid;\n}\n.post-footer h4\n{\n    font-size: 1.8rem;\n\n    margin: 0;\n}\n.post-footer p\n{\n    font-size: 1.4rem;\n    line-height: 1.6em;\n\n    margin: 1rem 0;\n}\n/* Create some space to the right for the share links */\n.post-footer .author\n{\n    margin: 0 1rem 3rem 1rem;\n}\n.post-footer .author a\n{\n    text-decoration: none;\n}\n/* Drop the share links in the space to the right.\n   Doing it like this means it's easier for the author bio\n   to be flexible at smaller screen sizes while the share\n   links remain at a fixed width the whole time */\n.post-footer .share\n{\n    position: absolute;\n    top: 4rem;\n    right: 0;\n\n    width: 140px;\n}\n.post-footer .share a\n{\n    font-size: 1.8rem;\n\n    display: inline;\n\n    margin: 1.4rem 0 1.6rem 1.6rem;\n\n    text-decoration: none;\n\n    color: #bbc7cc;\n}\n.post-footer .share a:hover\n{\n    color: #50585d;\n}\n.avatar\n{\n    display: block;\n    float: left;\n\n    margin-right: 1em;\n    padding: 5px;\n\n    border-radius: 50%;\n    box-shadow: 0 1px 1px rgba(0, 0, 0, .3);\n}\n/* ==========================================================================\n   5.1 Comments\n   ========================================================================== */\n.comment-list,\n.children\n{\n    margin: 0;\n    padding: 0;\n\n    list-style-type: none;\n}\n.comment,\n.pingback\n{\n    margin-bottom: 1.5em;\n    padding: 1em 1.5em;\n\n    border: 1px solid #ccc;\n}\n.children .comment,\n.pingback\n{\n    margin-bottom: .75em;\n    padding: .5em .75em;\n}\n.reply a\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    line-height: 1;\n\n    display: inline-block;\n\n    max-width: 35%;\n    padding: 15px;\n\n    cursor: pointer;\n    transition: border ease .3s;\n    white-space: -moz-pre-wrap !important;\n    /* Mozilla, since 1999 */\n    white-space: -pre-wrap;\n    /* Opera 4-6 */\n    white-space:   -o-pre-wrap;\n    /* Opera 7 */\n    white-space:      pre-wrap;\n    white-space: normal;\n    text-decoration: none;\n    /* css-3 */\n    word-wrap: break-word;\n    /* Internet Explorer 5.5+ */\n    word-break: break-all;\n\n    color: #9eabb3;\n    border: #ebf2f6 2px solid;\n    border-width: 3px;\n    border-radius: 3px;\n    background: none;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 15px 17px rgba(255, 255, 255, .5), inset 0 -5px 12px rgba(0, 0, 0, .05);\n    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);\n    /* Improves usability and consistency of cursor style between image-type 'input' and others */\n\n    -webkit-appearance: button;\n    /* Corrects inability to style clickable 'input' types in iOS */\n}\n.reply a:hover\n{\n    border-color: #9eabb3;\n}\n.children,\n.comment-respond\n{\n    margin-top: 1.5em;\n}\n.comment-form\n{\n    overflow: hidden;\n}\n/* ==========================================================================\n   6. Third Party Elements - Embeds from other services\n   ========================================================================== */\n/* Github */\n.gist table\n{\n    font-size: 1.4rem;\n\n    margin: 0;\n}\n.gist .line-number\n{\n    font-size: 1.1rem;\n\n    min-width: 25px;\n}\n/* Social links */\n.social-icons\n{\n    margin-top: 15px;\n}\n.social-icons a\n{\n    font-size: 1.3em;\n\n    margin: 0 5px;\n\n    text-decoration: none;\n\n    color: white;\n}\n.blog-title a:hover,\n.social-icons a:hover\n{\n    color: #57a3e8;\n}\n/* Comments */\n.comments-area\n{\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    padding-bottom: 4rem;\n}\n.comment-form-comment label\n{\n    display: inline-block;\n\n    width: 100%;\n}\n.form-allowed-tags\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    float: right;\n\n    width: 60%;\n    margin: -1rem;\n\n    color: #9eabb3;\n}\n.comment-subscription-form\n{\n    clear: both;\n\n    margin-top: 1rem;\n}\n.form-submit #submit\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    display: inline-block;\n    float: left;\n\n    max-width: 35%;\n    margin-top: 1em;\n    padding: 15px;\n\n    transition: border ease .3s;\n    white-space: -moz-pre-wrap !important;\n    /* Mozilla, since 1999 */\n    white-space: -pre-wrap;\n    /* Opera 4-6 */\n    white-space:   -o-pre-wrap;\n    /* Opera 7 */\n    white-space:      pre-wrap;\n    white-space: normal;\n    text-decoration: none;\n    /* css-3 */\n    word-wrap: break-word;\n    /* Internet Explorer 5.5+ */\n    word-break: break-all;\n\n    color: #9eabb3;\n    border: #ebf2f6 2px solid;\n    border-width: 3px;\n    background: none;\n}\n#main > header.page-header\n{\n    font-family: 'Open Sans', sans-serif;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding: 0;\n\n    text-align: center;\n\n    color: #9eabb3;\n}\n#main > header.page-header > h1\n{\n    font-size: 1.3rem;\n    font-weight: normal;\n    line-height: normal;\n\n    margin: 0 4rem;\n    padding: 0;\n\n    text-indent: 0;\n    letter-spacing: normal;\n}\n/* ==========================================================================\n   7. Pagination - Tools to let you flick between pages\n   ========================================================================== */\n/* The main wrapper for our pagination links */\n.pagination\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n\n    text-align: center;\n\n    color: #9eabb3;\n}\n.pagination a\n{\n    color: #9eabb3;\n}\n/* Push the previous/next links out to the left/right */\n.older-posts,\n.newer-posts\n{\n    position: absolute;\n\n    display: inline-block;\n\n    padding: 0 15px;\n\n    transition: border ease .3s;\n    text-decoration: none;\n\n    border: #ebf2f6 2px solid;\n    border-radius: 30px;\n}\n.older-posts:hover,\n.newer-posts:hover\n{\n    border-color: #9eabb3;\n}\n.older-posts\n{\n    right: 0;\n}\n.page-number\n{\n    display: inline-block;\n\n    padding: 2px 0;\n}\n.newer-posts\n{\n    left: 0;\n}\n/* ==========================================================================\n   8. Footer - The bottom of every page\n   ========================================================================== */\n.site-footer\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    line-height: 1.7em;\n\n    position: relative;\n\n    margin: 0;\n    padding: 4rem 0;\n\n    text-align: center;\n\n    color: #bbc7cc;\n    border-top: #ebf2f6 1px solid;\n    background: #f7fafb;\n}\n.site-footer a\n{\n    text-decoration: underline;\n\n    color: #bbc7cc;\n}\n.site-footer a:hover\n{\n    color: #50585d;\n}\n/* The subscribe icon on the footer */\n.subscribe\n{\n    line-height: 2.4rem;\n\n    position: absolute;\n    top: -14px;\n    left: 50%;\n\n    width: 28px;\n    height: 28px;\n    margin-left: -15px;\n\n    transition: box-shadow .5s;\n    text-align: center;\n\n    border: #ebf2f6 1px solid;\n    border-radius: 50px;\n    background: #fff;\n}\n/* The RSS icon, inserted via icon font */\n.subscribe:before\n{\n    font-size: 10px;\n    font-weight: bold;\n\n    position: absolute;\n    top: 9px;\n    left: 9px;\n\n    transition: color .5s ease;\n\n    color: #d2dee3;\n}\n/* Add a box shadow to on hover */\n.subscribe:hover\n{\n    transition: box-shadow .25s;\n\n    box-shadow: rgba(0, 0, 0, .05) 0 0 0 3px;\n}\n.subscribe:hover:before\n{\n    color: #50585d;\n}\n/* CSS tooltip saying \"Subscribe!\" - initially hidden */\n.tooltip\n{\n    font-size: 1.1rem;\n    line-height: 1em;\n\n    position: absolute;\n    top: -23px;\n    left: -21px;\n\n    display: inline-block;\n\n    padding: 4px 8px 5px 8px;\n\n    transition: opacity .3s ease, top .3s ease;\n    text-align: center;\n\n    opacity: 0;\n    color: rgba(255, 255, 255, .9);\n    border-radius: 20px;\n    background: #50585d;\n    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);\n}\n/* The little chiclet arrow under the tooltip, pointing down */\n.tooltip:after\n{\n    position: absolute;\n    z-index: 220;\n    bottom: -4px;\n    left: 50%;\n\n    display: block;\n\n    width: 0;\n    margin-left: -5px;\n\n    content: '';\n\n    border-width: 5px 5px 0 5px;\n    border-style: solid;\n    border-color: #50585d transparent;\n}\n/* On hover, show the tooltip! */\n.subscribe:hover .tooltip\n{\n    top: -33px;\n\n    opacity: 1;\n}\n/* ==========================================================================\n   9. Media Queries - Smaller than 900px\n   ========================================================================== */\n@media only screen and (max-width: 900px)\n{\n    blockquote\n    {\n        margin-left: 0;\n    }\n    .site-head\n    {\n        -webkit-box-sizing: border-box;\n           -moz-box-sizing: border-box;\n                box-sizing: border-box;\n        height: auto;\n        min-height: 240px;\n        padding: 15% 0;\n    }\n    .blog-title\n    {\n        font-size: 4rem;\n\n        letter-spacing: -1px;\n    }\n    .blog-description\n    {\n        font-size: 1.7rem;\n        line-height: 1.5em;\n    }\n    .post\n    {\n        font-size: .9em;\n        line-height: 1.6em;\n    }\n    .post-template .post\n    {\n        padding-bottom: 1rem;\n    }\n    .post-template .post-header\n    {\n        padding: 40px 0;\n    }\n    .widget-area aside\n    {\n        float: none;\n        overflow: hidden;\n\n        width: auto;\n        height: auto;\n        padding: 1em;\n    }\n    h1\n    {\n        font-size: 4.8rem;\n\n        text-indent: -2px;\n    }\n    h2\n    {\n        font-size: 3.8rem;\n    }\n    h3\n    {\n        font-size: 3.3rem;\n    }\n    h4\n    {\n        font-size: 2.8rem;\n    }\n}\n/* ==========================================================================\n   10. Media Queries - Smaller than 500px\n   ========================================================================== */\n@media only screen and (max-width: 500px)\n{\n    .blog-logo img\n    {\n        max-height: 80px;\n    }\n    .inner,\n    .pagination\n    {\n        width: auto;\n        margin-right: 16px;\n        margin-left: 16px;\n    }\n    .post\n    {\n        font-size: .8em;\n        line-height: 1.6em;\n\n        width: auto;\n        margin-right: 16px;\n        margin-left: 16px;\n    }\n    .site-head\n    {\n        padding: 10% 0;\n    }\n    .blog-title\n    {\n        font-size: 3rem;\n    }\n    .blog-description\n    {\n        font-size: 1.5rem;\n    }\n    .main-navigation ul li.menu-item-has-children:hover ~ li\n    {\n        opacity: 0;\n    }\n    .main-navigation ul ul ul\n    {\n        top: 100%;\n        left: 0;\n    }\n    h1,\n    h2\n    {\n        font-size: 3rem;\n        line-height: 1.1em;\n\n        letter-spacing: -1px;\n    }\n    h3\n    {\n        font-size: 2.8rem;\n    }\n    h4\n    {\n        font-size: 2.3rem;\n    }\n    .post-template .post\n    {\n        padding-bottom: 0;\n    }\n    .post-template .post-header\n    {\n        padding: 30px 0;\n    }\n    .post-meta\n    {\n        font-size: 1.3rem;\n    }\n    .post-footer\n    {\n        padding: 4rem 0;\n\n        text-align: center;\n    }\n    .post-footer .author\n    {\n        margin: 0 0 2rem 0;\n        padding: 0 0 1.6rem 0;\n\n        border-bottom: #ebf2f6 1px dashed;\n    }\n    .post-footer .share\n    {\n        position: static;\n\n        width: auto;\n    }\n    .post-footer .share a\n    {\n        margin: 1.4rem .8rem 0 .8rem;\n    }\n    .older-posts,\n    .newer-posts\n    {\n        position: static;\n\n        margin: 10px 0;\n    }\n    .page-number\n    {\n        display: block;\n    }\n    .site-footer\n    {\n        font-size: 1.1rem;\n\n        margin-top: 6rem;\n    }\n}\n/* ==========================================================================\n   End of file. Media queries should be the last thing here. Do not add stuff\n   below this point, or it will probably fuck everything up.\n   ========================================================================== */\n"
  },
  {
    "path": "footer.php",
    "content": "<?php\n/**\n * The template for displaying the footer.\n *\n * Contains the closing of the #content div and all content after\n *\n * @package Casper\n */\n?>\n\t<footer id=\"colophon\" class=\"site-footer\" role=\"contentinfo\">\n\t    <a class=\"subscribe icon-feed\" href=\"<?php bloginfo('rss2_url'); ?>\"><span class=\"tooltip\"><?php _e('Subscribe!', 'casper'); ?></span></a>\n\t\t<div class=\"site-info inner\">\n\t\t    <section class=\"copyright\">\n\t\t    \t<?php if(  false == get_theme_mod( 'casper_custom_footer') ) { ?>\n\t\t    \t\t<?php printf( __( '<a href=\"%1$s\" rel=\"home\">Casper WP</a> by Lacy Morrow', 'casper' ), esc_url( 'https://github.com/lacymorrow/casper' ) ); ?>\n\t\t    \t<?php } else { echo get_theme_mod( 'casper_custom_footer'); } ?>\n\t\t    </section>\n\t\t</div><!-- .site-info -->\n\t</footer><!-- #colophon -->\n</main><!-- /#content -->\n\n<?php wp_footer(); ?>\n</body>\n</html>\n"
  },
  {
    "path": "functions.php",
    "content": "<?php\n/**\n * Casper functions and definitions\n *\n * @package Casper\n */\n\nif ( ! function_exists( 'casper_setup' ) ) :\n/**\n * Sets up theme defaults and registers support for various WordPress features.\n *\n * Note that this function is hooked into the after_setup_theme hook, which\n * runs before the init hook. The init hook is too late for some features, such\n * as indicating support for post thumbnails.\n */\nfunction casper_setup() {\n\t/**\n\t * Set the content width based on the theme's design and stylesheet.\n\t */\n\tif ( ! isset( $content_width ) ) {\n\t\t$content_width = 640; /* pixels */\n\t}\n\n\t/*\n\t * Make theme available for translation.\n\t * Translations can be filed in the /languages/ directory.\n\t * If you're building a theme based on Casper, use a find and replace\n\t * to change 'casper' to the name of your theme in all the template files\n\t */\n\tload_theme_textdomain( 'casper', get_template_directory() . '/languages' );\n\n\t// Add default posts and comments RSS feed links to head.\n\tadd_theme_support( 'automatic-feed-links' );\n\n\t/*\n\t * Enable support for Post Thumbnails on posts and pages.\n\t *\n\t * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails\n\t */\n\tadd_theme_support( 'post-thumbnails' );\n\t\n\t/*\n\t * Let WordPress manage the document title.\n\t * By adding theme support, we declare that this theme does not use a\n\t * hard-coded <title> tag in the document head, and expect WordPress to\n\t * provide it for us.\n\t */\n\tadd_theme_support( 'title-tag' );\n\t\n\n\t// This theme uses wp_nav_menu() in one location.\n\tregister_nav_menus( array(\n\t\t'primary' => __( 'Primary Menu', 'casper' ),\n\t) );\n\n\t// Enable support for Post Formats.\n\tadd_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link' ) );\n\n\n\t// Setup the WordPress core custom background feature.\n\tadd_theme_support( 'custom-background', apply_filters( 'casper_custom_background_args', array(\n\t\t'default-color' => 'ffffff',\n\t\t'default-image' => '',\n\t) ) );\n\n\t// Enable support for HTML5 markup.\n\tadd_theme_support( 'html5', array(\n\t\t'comment-list',\n\t\t'search-form',\n\t\t'comment-form',\n\t\t'gallery',\n\t) );\n\n\tfunction new_excerpt_more( $more ) {\n\t\tif ( false != get_theme_mod( 'casper_read_more_link')) {\n\t\t\treturn ' <a class=\"read-more\" href=\"'. get_permalink( get_the_ID() ) . '\">' . get_theme_mod( 'casper_read_more_link') . '</a>';\n\t\t} else {\n\t\t\treturn ' <a class=\"read-more\" href=\"'. get_permalink( get_the_ID() ) . '\">' . __( '&hellip;&nbsp;<span class=\"meta-nav\">&rarr;</span>', 'casper' ) . '</a>';\n\t\t}\n\t}\n\tadd_filter( 'excerpt_more', 'new_excerpt_more' );\n\n\t// Enable automatic theme updates\n\tadd_filter( 'auto_update_theme', '__return_true' );\n}\nendif; // casper_setup\nadd_action( 'after_setup_theme', 'casper_setup' );\n\nif ( ! function_exists( 'casper_widgets_init' ) ) :\n/**\n * Register widgetized area and update sidebar with default widgets.\n */\nfunction casper_widgets_init() {\n\tregister_sidebar( array(\n\t\t'name'          => __( 'Footer Bar', 'casper' ),\n\t\t'id'            => 'sidebar-1',\n\t\t'before_widget' => '<aside id=\"%1$s\" class=\"widget %2$s\">',\n\t\t'after_widget'  => '</aside>',\n\t\t'before_title'  => '<h1 class=\"widget-title\">',\n\t\t'after_title'   => '</h1>',\n\t) );\n}\nendif; // casper_widgets_init\nadd_action( 'widgets_init', 'casper_widgets_init' );\n\nif ( ! function_exists( 'casper_scripts' ) ) :\n/**\n * Enqueue scripts and styles.\n */\nfunction casper_scripts() {\n\twp_enqueue_style('casper-google-fonts', '//fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic|Open+Sans:700,400');\n\twp_enqueue_style( 'casper-style', get_stylesheet_uri() );\n\twp_enqueue_script( 'casper-index', get_template_directory_uri() . '/js/main.js', array('jquery'), '1.0.0', true );\n\n\tif ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {\n\t\twp_enqueue_script( 'comment-reply' );\n\t}\n}\nendif; // casper_scripts\nadd_action( 'wp_enqueue_scripts', 'casper_scripts' );\n\n/**\n * Implement the Custom Header feature.\n */\nrequire get_template_directory() . '/inc/custom-header.php';\n\n/**\n * Custom template tags for this theme.\n */\nrequire get_template_directory() . '/inc/template-tags.php';\n\n/**\n * Custom functions that act independently of the theme templates.\n */\nrequire get_template_directory() . '/inc/extras.php';\n\n/**\n * Customizer additions.\n */\nrequire get_template_directory() . '/inc/customizer.php';\n\n/**\n * Load Jetpack compatibility file.\n */\nrequire get_template_directory() . '/inc/jetpack.php';\n\nif ( ! function_exists( 'casper_add_editor_styles' ) ) :\n/**\n * Custom Editor Styles\n */\nfunction casper_add_editor_styles() {\n    add_editor_style( 'css/custom-editor-style.css' );\n}\nendif; // casper_add_editor_styles\nadd_action( 'after_setup_theme', 'casper_add_editor_styles' );\n\nif ( ! function_exists( 'casper_customizer_head' ) ) :\n\n\n/**\n * Admin CSS\n */\nfunction casper_admin_css(){\n\twp_enqueue_style ('casper_admin_style', get_template_directory_uri() . '/css/admin.css', array(), false, false);\n}\nadd_action('admin_head', 'casper_admin_css');\n\n\n/**\n * Customizer hook\n */\nfunction casper_customizer_head() {\n   \tif (get_theme_mod( 'casper_custom_meta' )!=false) { echo get_theme_mod( 'casper_custom_meta' ); } ?>\n\n   \t<style type=\"text/css\">\n\t\t<?php if(get_header_textcolor()){ ?>\n\t\t\t.blog-title a, .blog-description, .social-icons a { color: #<?php header_textcolor(); ?>; }\n\t\t<?php } ?>\n\n\t\t<?php if('blank' === get_header_textcolor()) { ?>\n\t\t\t.blog-description { display: none; }\n\t\t<?php } ?>\n\t\t<?php if(false != get_theme_mod( 'casper_header_textcolor' ) && false != get_theme_mod( 'casper_display_header' )){ ?>\n        \tbody:not(.home) .blog-title a, body:not(.home) .blog-description, body:not(.home) .social-icons a {\n        \t\tcolor: <?php echo get_theme_mod( 'casper_header_textcolor' ); ?>;\n        \t}\n        <?php } ?>\n\t\t<?php if(get_theme_mod('casper_header_color')){ ?>\n\t\t    .site-head { background-color: <?php echo get_theme_mod( 'casper_header_color' ); ?>; }\n\t\t<?php } ?>\n        <?php if(false != get_theme_mod( 'casper_display_header' )) { ?>\n        \tbody:not(.home) #masthead{ background: none; }\n        <?php } ?>\n        <?php if(false != get_theme_mod( 'casper_display_header_all' )) { ?>\n        \tbody:not(.home) .site-head:after { display: none; }\n        \tbody:not(.home) #masthead{ height: auto; border: none; }\n        \tbody:not(.home) .blog-title, body:not(.home) .blog-description { display: none; }\n        \tbody:not(.home) .inner { padding-top: 1em; }\n        \tbody:not(.home) .main-navigation { position: relative; }\n        <?php } ?>\n\n\t\t<?php if( get_theme_mod( 'casper_link_color' )) { ?>\n\t\t\tsection a { color: <?php echo get_theme_mod( 'casper_link_color' ); ?>; }\n\t\t<?php } ?>\n\n\t\t<?php if(get_theme_mod( 'casper_hover_color' )) { ?>\n\t\t\ta:hover, body .blog-title a:hover, body .social-icons a:hover { color: <?php echo get_theme_mod( 'casper_hover_color' ); ?>; }\n\t\t<?php } ?>\n\t\t<?php if(!get_theme_mod( 'casper_display_header' )){ ?>\n\t\t\t.main-navigation a { color: <?php echo get_theme_mod( 'casper_home_menu_color' ); ?>; }\n\t\t<?php } ?>\n        <?php if(get_theme_mod( 'casper_menu_color' )){ ?>\n        \t.main-navigation a { color: <?php echo get_theme_mod( 'casper_menu_color' ); ?>; }\n        <?php } ?>\n        <?php if(get_theme_mod( 'casper_home_menu_color' )){ ?>\n        \t.home .main-navigation a { color: <?php echo get_theme_mod( 'casper_home_menu_color' ); ?>; }\n        <?php } ?>\n        <?php if( false != get_theme_mod( 'casper_logo_circle' ) ) { ?>\n\t\t\t.blog-logo img {\n\t\t\t\t-webkit-border-radius: 50%;\n\t\t\t    -moz-border-radius: 50%;\n\t\t\t    border-radius: 50%;\n\t\t\t}\n        <?php } ?>\n        <?php if( false != get_theme_mod( 'casper_logo_frame' ) ) { ?>\n\t\t\t.blog-logo img {\n\t\t\t    border: 3px solid white;\n\t\t\t    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3);\n\t\t\t    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3);\n\t\t\t    box-shadow: 0 1px 1px rgba(0,0,0,0.3);\n\t\t\t}\n        <?php } ?>\n        <?php if( false != get_theme_mod( 'casper_hide_page_header_dot' ) ) { ?>\n\t\t\t.site-head:after {\n\t\t\t    display: none;\n\t\t\t}\n        <?php } ?>\n    </style>\n    <?php\n}\nendif; // casper_customizer_head\nadd_action( 'wp_head', 'casper_customizer_head' );\n?>\n"
  },
  {
    "path": "header.php",
    "content": "<?php\n/**\n * The Header for our theme.\n *\n * Displays all of the <head> section and everything up till <div id=\"content\">\n *\n * @package Casper\n */\n?><!DOCTYPE html>\n<html <?php language_attributes(); ?>>\n<head>\n<meta charset=\"<?php bloginfo( 'charset' ); ?>\">\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n<meta name=\"HandheldFriendly\" content=\"True\" />\n<meta name=\"MobileOptimized\" content=\"320\" />\n\n<link rel=\"profile\" href=\"http://gmpg.org/xfn/11\">\n<link rel=\"pingback\" href=\"<?php bloginfo( 'pingback_url' ); ?>\">\n<?php wp_head(); ?>\n</head>\n\n<body <?php body_class(); ?>>\n\n<header id=\"masthead\" role=\"banner\" class=\"site-head site-header\" <?php if(get_header_image() ) : ?>style=\"background-image: url(<?php esc_url(header_image()); ?>);\"<?php endif ?>>\n    <nav id=\"site-navigation\" class=\"main-navigation\" role=\"navigation\">\n        <div>\n            <h1 class=\"menu-toggle\">\n                <a class=\"icon-bars\" href=\"#\">\n                    <span class=\"hidden\"><?php _e( 'Menu', 'casper' ); ?></span>\n                </a>\n            </h1>\n            <a class=\"skip-link screen-reader-text\" href=\"#content\"><?php _e( 'Skip to content', 'casper' ); ?></a>\n            <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>\n        </div>\n    </nav><!-- #site-navigation -->\n\n    <div class=\"vertical-row\">\n        <div class=\"vertical\">\n            <div class=\"site-head-content inner\">\n                <?php if ( get_theme_mod( 'casper_logo' ) ) : ?>\n                    <a class=\"blog-logo\" href='<?php echo esc_url( home_url( '/' ) ); ?>' rel='home'><img src='<?php echo esc_url( get_theme_mod( 'casper_logo' ) ); ?>' alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></a>\n                <?php endif; ?>\n\n                <div class=\"social-icons\">\n                    <?php if ( false != get_theme_mod( 'casper_social_youtube')) { ?>\n                        <a class=\"icon-youtube\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_youtube') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Youtube', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_tumblr')) { ?>\n                        <a class=\"icon-tumblr\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_tumblr') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Tumblr', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_instagram')) { ?>\n                        <a class=\"icon-instagram\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_instagram') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Instagram', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_google')) { ?>\n                        <a class=\"icon-google-plus\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_google') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Google+', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_facebook')) { ?>\n                        <a class=\"icon-facebook\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_facebook') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Facebook', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_twitter')) { ?>\n                        <a class=\"icon-twitter\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_twitter' ) ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Twitter', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_website')) { ?>\n                        <a class=\"icon-home\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_website') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Home', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_mail')) { ?>\n                        <a class=\"icon-envelope\" target=\"_blank\" href=\"<?php echo esc_url( 'mailto:' . get_theme_mod( 'casper_social_mail') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Email', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_linkedin')) { ?>\n                        <a class=\"icon-linkedin\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_linkedin') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'LinkedIn', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_github')) { ?>\n                        <a class=\"icon-github-alt\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_github') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'GitHub', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_bitbucket')) { ?>\n                        <a class=\"icon-bitbucket\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_bitbucket') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Bitbucket', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_stack_overflow')) { ?>\n                        <a class=\"icon-stack-overflow\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_stack_overflow') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Stack Overflow', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_dribbble')) { ?>\n                        <a class=\"icon-dribbble\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_dribbble') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Dribbble', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_behance')) { ?>\n                        <a class=\"icon-behance\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_behance') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Behance', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_rss')) { ?>\n                        <a class=\"icon-feed\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_rss') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'RSS', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_codepen')) { ?>\n                        <a class=\"icon-codepen\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_codepen') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'CodePen', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_deviantart')) { ?>\n                        <a class=\"icon-deviantart\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_deviantart') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Deviant Art', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_flickr')) { ?>\n                        <a class=\"icon-flickr\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_flickr') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Flickr', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_lastfm')) { ?>\n                        <a class=\"icon-lastfm\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_lastfm') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'LastFM', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_soundcloud')) { ?>\n                        <a class=\"icon-soundcloud\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_soundcloud') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'SoundCloud', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                    <?php if ( false != get_theme_mod( 'casper_social_spotify')) { ?>\n                        <a class=\"icon-spotify\" target=\"_blank\" href=\"<?php echo esc_url( get_theme_mod( 'casper_social_spotify') ); ?>\">\n                            <span class=\"hidden\"><?php _e( 'Spotify', 'casper' ); ?></span>\n                        </a>\n                    <?php } ?>\n                </div>\n                <h1 class=\"blog-title\"><a class=\"blog-logo\" href='<?php echo esc_url( home_url( '/' ) ); ?>' rel='home'><?php bloginfo( 'name' ); ?></a></h1>\n                <h2 class=\"blog-description\"><?php bloginfo( 'description' ); ?></h2>\n            </div>\n        </div>\n    </div>\n</header><!-- #masthead -->\n\n<main id=\"content\" class=\"content\" role=\"main\">\n"
  },
  {
    "path": "inc/custom-header.php",
    "content": "<?php\n/**\n * Sample implementation of the Custom Header feature\n * http://codex.wordpress.org/Custom_Headers\n *\n * You can add an optional custom header image to header.php like so ...\n *\n * @package Casper\n */\n\n/**\n * Setup the WordPress core custom header feature.\n *\n * @uses casper_header_style()\n * @uses casper_admin_header_style()\n * @uses casper_admin_header_image()\n */\nfunction casper_custom_header_setup() {\n\tadd_theme_support( 'custom-header', apply_filters( 'casper_custom_header_args', array(\n\t\t'default-image'          => '',\n\t\t'default-text-color'     => 'ffffff',\n\t\t'width'                  => 1000,\n\t\t'height'                 => 250,\n\t\t'flex-height'            => true,\n\t\t'flex-width'            => true,\n\t\t'wp-head-callback'       => 'casper_header_style',\n\t\t'admin-head-callback'    => 'casper_admin_header_style',\n\t\t'admin-preview-callback' => 'casper_admin_header_image',\n\t) ) );\n}\nadd_action( 'after_setup_theme', 'casper_custom_header_setup' );\n\nif ( ! function_exists( 'casper_header_style' ) ) :\n/**\n * Styles the header image and text displayed on the blog\n *\n * @see casper_custom_header_setup().\n */\nfunction casper_header_style() {\n\t$header_text_color = get_header_textcolor();\n\n\t// If no custom options for text are set, let's bail\n\t// get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value\n\tif ( HEADER_TEXTCOLOR == $header_text_color ) {\n\t\treturn;\n\t}\n\n\t// If we get this far, we have custom styles. Let's do this.\n\t?>\n\t<style type=\"text/css\">\n\t<?php\n\t\t// Has the text been hidden?\n\t\tif ( 'blank' == $header_text_color ) :\n\t?>\n\t\t.site-title,\n\t\t.site-description {\n\t\t\tposition: absolute;\n\t\t\tclip: rect(1px, 1px, 1px, 1px);\n\t\t}\n\t<?php\n\t\t// If the user has set a custom color for the text use that\n\t\telse :\n\t?>\n\t\t.site-title a,\n\t\t.site-description {\n\t\t\tcolor: #<?php echo $header_text_color; ?>;\n\t\t}\n\t<?php endif; ?>\n\t</style>\n\t<?php\n}\nendif; // casper_header_style\n\nif ( ! function_exists( 'casper_admin_header_style' ) ) :\n/**\n * Styles the header image displayed on the Appearance > Header admin panel.\n *\n * @see casper_custom_header_setup().\n */\nfunction casper_admin_header_style() {\n?>\n\t<style type=\"text/css\">\n\t\t.appearance_page_custom-header #headimg {\n\t\t\tborder: none;\n\t\t}\n\t\t#headimg h1,\n\t\t#desc {\n\t\t}\n\t\t#headimg h1 {\n\t\t}\n\t\t#headimg h1 a {\n\t\t}\n\t\t#desc {\n\t\t}\n\t\t#headimg img {\n\t\t}\n\t</style>\n<?php\n}\nendif; // casper_admin_header_style\n\nif ( ! function_exists( 'casper_admin_header_image' ) ) :\n/**\n * Custom header image markup displayed on the Appearance > Header admin panel.\n *\n * @see casper_custom_header_setup().\n */\nfunction casper_admin_header_image() {\n\t$style = sprintf( ' style=\"color:#%s;\"', get_header_textcolor() );\n?>\n\t<div id=\"headimg\">\n\t\t<h1 class=\"displaying-header-text\"><a id=\"name\"<?php echo $style; ?> onclick=\"return false;\" href=\"<?php echo esc_url( home_url( '/' ) ); ?>\"><?php bloginfo( 'name' ); ?></a></h1>\n\t\t<div class=\"displaying-header-text\" id=\"desc\"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>\n\t\t<?php if ( get_header_image() ) : ?>\n\t\t<img src=\"<?php header_image(); ?>\" alt=\"\">\n\t\t<?php endif; ?>\n\t</div>\n<?php\n}\nendif; // casper_admin_header_image\n"
  },
  {
    "path": "inc/customizer.php",
    "content": "<?php\n/**\n * Casper Theme Customizer\n *\n * @package Casper\n */\n\n/**\n * Add postMessage support for site title and description for the Theme Customizer.\n *\n * @param WP_Customize_Manager $wp_customize Theme Customizer object.\n */\nfunction casper_customize_register( $wp_customize ) {\n\t/**\n\t * Adds textarea support to the theme customizer\n\t */\n\tclass Casper_textarea_control extends WP_Customize_Control {\n\t    public $type = 'textarea';\n\n\t    public function render_content() {\n\t        ?>\n\t            <label>\n\t                <span class=\"customize-control-title\"><?php echo esc_html( $this->label ); ?></span>\n\t                <textarea rows=\"5\" style=\"width:100%;\" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>\n\t            </label>\n\t        <?php\n\t    }\n\t}\n\t$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';\n\t$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';\n\t$wp_customize->get_setting( 'background_color' )->transport = 'postMessage';\n\t$wp_customize->get_setting( 'header_textcolor' )->transport = 'refresh';\n\t// Logo Controls\n\t$wp_customize->add_section( 'casper_logo_section' , array(\n\t    'title'       => __( 'Logo', 'casper' ),\n\t    'priority'    => 30,\n\t    'description' => 'Upload a logo to display above the site title on each page',\n\t) );\n\t$wp_customize->add_setting( 'casper_logo'  , array(\n\t    'transport'   => 'refresh',\n\t    'sanitize_callback' => 'casper_sanitize_uri'\n\t) );\n\t$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'casper_logo', array(\n\t    'label'    => __( 'Logo', 'casper' ),\n\t    'section'  => 'casper_logo_section',\n\t    'settings' => 'casper_logo',\n\t) ) );\n\t// Custom Controls\n\t$wp_customize->add_section(\n\t    'casper_custom',\n\t    array(\n\t        'title'     => 'Casper Options',\n\t        'priority'  => 200\n\t    )\n\t);\n\t// Theme header bg color\n\t$wp_customize->add_setting( 'casper_header_color' , array(\n\t    'default'     => '#303538',\n\t    'transport'   => 'postMessage',\n\t    'sanitize_callback' => 'casper_sanitize_color'\n\t) );\n\t$wp_customize->add_control(\n\t    new WP_Customize_Color_Control(\n\t        $wp_customize,\n\t        'header_color',\n\t        array(\n\t            'label'      => __( 'Header Color', 'casper' ),\n\t            'section'    => 'colors',\n\t            'settings'   => 'casper_header_color'\n\t        )\n\t    )\n\t);\n\t// Home head text color\n\t$wp_customize->add_setting( 'casper_header_textcolor' , array(\n\t    'default'     => '#50585D',\n\t    'transport'   => 'postMessage',\n\t    'sanitize_callback' => 'casper_sanitize_color'\n\t) );\n\t$wp_customize->add_control(\n\t    new WP_Customize_Color_Control(\n\t        $wp_customize,\n\t        'casper_header_textcolor',\n\t        array(\n\t            'label'      => __( 'Page Header Text Color', 'casper' ),\n\t            'section'    => 'colors',\n\t            'settings'   => 'casper_header_textcolor',\n\t        )\n\t    )\n\t);\n\t// Theme link color\n\t$wp_customize->add_setting( 'casper_link_color' , array(\n\t    'default'     => '#4a4a4a',\n\t    'transport'   => 'postMessage',\n\t    'sanitize_callback' => 'casper_sanitize_color'\n\t) );\n\t$wp_customize->add_control(\n\t    new WP_Customize_Color_Control(\n\t        $wp_customize,\n\t        'link_color',\n\t        array(\n\t            'label'      => __( 'Link Color', 'casper' ),\n\t            'section'    => 'colors',\n\t            'settings'   => 'casper_link_color'\n\t        )\n\t    )\n\t);\n\t// Theme hover color\n\t$wp_customize->add_setting( 'casper_hover_color' , array(\n\t    'default'     => '#57A3E8',\n\t    'transport'   => 'refresh',\n\t    'sanitize_callback' => 'casper_sanitize_color'\n\t) );\n\t$wp_customize->add_control(\n\t    new WP_Customize_Color_Control(\n\t        $wp_customize,\n\t        'hover_color',\n\t        array(\n\t            'label'      => __( 'Hover Color', 'casper' ),\n\t            'section'    => 'colors',\n\t            'settings'   => 'casper_hover_color'\n\t        )\n\t    )\n\t);\n\t// Home Menu color\n\t$wp_customize->add_setting( 'casper_home_menu_color' , array(\n\t    'default'     => '#ffffff',\n\t    'transport'   => 'refresh',\n\t    'sanitize_callback' => 'casper_sanitize_color'\n\t) );\n\t$wp_customize->add_control(\n\t    new WP_Customize_Color_Control(\n\t        $wp_customize,\n\t        'home_menu_color',\n\t        array(\n\t            'label'      => __( 'Home Menu Color', 'casper' ),\n\t            'section'    => 'colors',\n\t            'settings'   => 'casper_home_menu_color'\n\t        )\n\t    )\n\t);\n\t// Menu color\n\t$wp_customize->add_setting( 'casper_menu_color' , array(\n\t    'default'     => '#50585D',\n\t    'transport'   => 'refresh',\n\t    'sanitize_callback' => 'casper_sanitize_color'\n\t) );\n\t$wp_customize->add_control(\n\t    new WP_Customize_Color_Control(\n\t        $wp_customize,\n\t        'menu_color',\n\t        array(\n\t            'label'      => __( 'Menu Color', 'casper' ),\n\t            'section'    => 'colors',\n\t            'settings'   => 'casper_menu_color'\n\t        )\n\t    )\n\t);\n\n\t// Display header bg on all pages (vs home only)\n\t$wp_customize->add_setting(\n\t    'casper_display_header',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_display_header',\n\t    array(\n\t    \t'priority'\t=> 1,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Only display header background on home page',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Display header on all pages (vs home only)\n\t$wp_customize->add_setting(\n\t    'casper_display_header_all',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_display_header_all',\n\t    array(\n\t    \t'priority'\t=> 2,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Only display header on home page',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Circle logo\n\t$wp_customize->add_setting(\n\t    'casper_logo_circle',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'postMessage',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_logo_circle',\n\t    array(\n\t    \t'priority'\t=> 3,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Make logo circular',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Frame logo\n\t$wp_customize->add_setting(\n\t    'casper_logo_frame',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'postMessage',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_logo_frame',\n\t    array(\n\t    \t'priority'\t=> 4,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Frame logo image',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Casper hide page header dot\n\t$wp_customize->add_setting(\n\t    'casper_hide_page_header_dot',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_hide_page_header_dot',\n\t    array(\n\t    \t'priority'\t=> 5,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Hide header \\'dot\\' on pages',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Automatically limit post summary\n\t$wp_customize->add_setting(\n\t    'casper_auto_excerpt',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_auto_excerpt',\n\t    array(\n\t    \t'priority'\t=> 6,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Auto-limit summary length',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Don't display Categories\n\t$wp_customize->add_setting(\n\t    'casper_hide_categories',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_hide_categories',\n\t    array(\n\t    \t'priority'\t=> 7,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Don\\'t display categories',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Don't display Tags\n\t$wp_customize->add_setting(\n\t    'casper_hide_tags',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_hide_tags',\n\t    array(\n\t    \t'priority'\t=> 8,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Don\\'t display tags',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Don't display Dates\n\t$wp_customize->add_setting(\n\t    'casper_hide_dates',\n\t    array(\n\t        'default'    =>  false,\n\t        'transport'  =>  'refresh',\n\t        'sanitize_callback' => 'casper_sanitize_checkbox'\n\t    )\n\t);\n\t$wp_customize->add_control(\n\t    'casper_hide_dates',\n\t    array(\n\t    \t'priority'\t=> 9,\n\t        'section'   => 'casper_custom',\n\t        'label'     => 'Don\\'t display dates',\n\t        'type'      => 'checkbox'\n\t    )\n\t);\n\t// Custom meta\n\t$wp_customize->add_setting( 'casper_custom_meta' , array( 'sanitize_callback' => 'casper_sanitize_meta' ));\n\n\t$wp_customize->add_control(\n\t    new Casper_textarea_control(\n\t        $wp_customize,\n\t        'casper_custom_meta',\n\t        array(\n\t            'label' => 'Custom meta tags',\n\t            'section' => 'casper_custom',\n\t            'settings' => 'casper_custom_meta'\n\t        )\n\t    )\n\t);\n\n\t// Custom read more link\n\t$wp_customize->add_setting( 'casper_read_more_link' , array( 'sanitize_callback' => 'casper_sanitize_text' ));\n\n\t$wp_customize->add_control(\n\t    new Casper_textarea_control(\n\t        $wp_customize,\n\t        'casper_read_more_link',\n\t        array(\n\t            'label' => '\\'Read More\\' link',\n\t            'section' => 'casper_custom',\n\t            'settings' => 'casper_read_more_link'\n\t        )\n\t    )\n\t);\n\n\t// Custom footer\n\t$wp_customize->add_setting( 'casper_custom_footer' , array( 'sanitize_callback' => 'casper_sanitize_footer' ));\n\n\t$wp_customize->add_control(\n\t    new Casper_textarea_control(\n\t        $wp_customize,\n\t        'casper_custom_footer',\n\t        array(\n\t            'label' => 'Custom footer',\n\t            'section' => 'casper_custom',\n\t            'settings' => 'casper_custom_footer'\n\t        )\n\t    )\n\t);\n\n\t/* ==========================================================================\n    Social Icons\n    ========================================================================== */\n\n\t$wp_customize->add_section(\n\t    'casper_social',\n\t    array(\n\t        'title'     => 'Social URLs',\n\t        'priority'  => 199\n\t    )\n\t);\n\t$wp_customize->add_setting('casper_social_behance', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_behance', array('section' => 'casper_social', 'label' => 'Behance', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_bitbucket', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_bitbucket', array('section' => 'casper_social', 'label' => 'Bitbucket', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_codepen', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_codepen', array('section' => 'casper_social', 'label' => 'CodePen', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_deviantart', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_deviantart', array('section' => 'casper_social', 'label' => 'Deviant Art', 'type' => 'text'));\t$wp_customize->add_setting('casper_social_dribbble', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_dribbble', array('section' => 'casper_social', 'label' => 'Dribbble', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_facebook', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_facebook', array('section' => 'casper_social', 'label' => 'Facebook', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_flickr', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_flickr', array('section' => 'casper_social', 'label' => 'Flickr', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_github', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_github', array('section' => 'casper_social', 'label' => 'GitHub', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_google', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_google', array('section' => 'casper_social', 'label' => 'Google+', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_instagram', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_instagram', array('section' => 'casper_social', 'label' => 'Instagram', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_lastfm', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_lastfm', array('section' => 'casper_social', 'label' => 'LastFM', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_linkedin', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_linkedin', array('section' => 'casper_social', 'label' => 'LinkedIn', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_mail', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_email'));\n\t$wp_customize->add_control('casper_social_mail', array('section' => 'casper_social', 'label' => 'Email', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_rss', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_rss', array('section' => 'casper_social', 'label' => 'RSS', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_soundcloud', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_soundcloud', array('section' => 'casper_social', 'label' => 'SoundCloud', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_stack_overflow', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_stack_overflow', array('section' => 'casper_social', 'label' => 'Stack Overflow', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_spotify', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_spotify', array('section' => 'casper_social', 'label' => 'Spotify', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_tumblr', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_tumblr', array('section' => 'casper_social', 'label' => 'Tumblr', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_twitter', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_twitter', array('section' => 'casper_social', 'label' => 'Twitter', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_website', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_website', array('section' => 'casper_social', 'label' => 'Website', 'type' => 'text'));\n\t$wp_customize->add_setting('casper_social_youtube', array('transport' => 'refresh', 'sanitize_callback' => 'casper_sanitize_uri'));\n\t$wp_customize->add_control('casper_social_youtube', array('section' => 'casper_social', 'label' => 'Youtube', 'type' => 'text'));\n}\nadd_action( 'customize_register', 'casper_customize_register' );\n\n/**\n * Binds JS handlers to make Theme Customizer preview reload changes asynchronously.\n */\nfunction casper_customize_preview_js() {\n\twp_enqueue_script( 'casper_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'jquery', 'customize-preview' ), '20130508', true );\n}\nadd_action( 'customize_preview_init', 'casper_customize_preview_js' );\n\n/**\n * Sanitize color\n */\nfunction casper_sanitize_color($content){\n\t$content = str_replace('#', '', $content);\n\tif (ctype_xdigit($content)) {\n\t    return '#' . $content;\n\t}\n\treturn '';\n}\n\n/**\n * Sanitize checkbox\n */\nfunction casper_sanitize_checkbox($content){\n\tif('selected' === $content || 'checked' === $content || 'true' === $content || true === $content){\n\t\treturn $content;\n\t}\n\treturn '';\n}\n\n/**\n * Sanitize URIs\n */\nfunction casper_sanitize_uri($uri){\n\tif('' === $uri){\n\t\treturn '';\n\t}\n\treturn esc_url_raw($uri);\n}\n\n/**\n * Sanitize Text\n */\nfunction casper_sanitize_text($str){\n\tif('' === $str){\n\t\treturn '';\n\t}\n\treturn sanitize_text_field( $str);\n}\n\n/**\n * Sanitize email/uri\n */\nfunction casper_sanitize_email($uri){\n\tif('' === $uri){\n\t\treturn '';\n\t}\n\tif (substr( $uri, 0, 4 ) != 'http' && strpos($uri, '@') === false) {\n\t\t$uri = 'mailto:' . $uri;\n\t}\n\treturn sanitize_email($uri);\n}\n\n/**\n * Sanitize meta\n */\nfunction casper_sanitize_meta($content){\n\t$allowed = array('meta' => array());\n\tif('' === $content){\n\t\treturn '';\n\t}\n\treturn wp_kses($content, $allowed);\n}\n\n/**\n * Sanitize footer\n */\nfunction casper_sanitize_footer($content){\n\tif('' === $content){\n\t\treturn '';\n\t}\n\tif ( current_user_can('unfiltered_html') )\n\t\treturn wp_kses($content, wp_kses_allowed_html('post'));\n\telse\n\t\treturn stripslashes( wp_filter_post_kses( addslashes($content) ) );\n}\n"
  },
  {
    "path": "inc/extras.php",
    "content": "<?php\n/**\n * Custom functions that act independently of the theme templates\n *\n * Eventually, some of the functionality here could be replaced by core features\n *\n * @package Casper\n */\n\n/**\n * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.\n *\n * @param array $args Configuration arguments.\n * @return array\n */\nfunction casper_page_menu_args( $args ) {\n\t$args['show_home'] = true;\n\treturn $args;\n}\nadd_filter( 'wp_page_menu_args', 'casper_page_menu_args' );\n\n/**\n * Adds custom classes to the array of body classes.\n *\n * @param array $classes Classes for the body element.\n * @return array\n */\nfunction casper_body_classes( $classes ) {\n\t// Adds a class of group-blog to blogs with more than 1 published author.\n\tif ( is_multi_author() ) {\n\t\t$classes[] = 'group-blog';\n\t}\n\n\treturn $classes;\n}\nadd_filter( 'body_class', 'casper_body_classes' );\n\n/**\n * Filters wp_title to print a neat <title> tag based on what is being viewed.\n *\n * @param string $title Default title text for current view.\n * @param string $sep Optional separator.\n * @return string The filtered title.\n */\nfunction casper_wp_title( $title, $sep ) {\n\tif ( is_feed() ) {\n\t\treturn $title;\n\t}\n\t\n\tglobal $page, $paged;\n\n\t// Add the blog name\n\t$title .= get_bloginfo( 'name', 'display' );\n\n\t// Add the blog description for the home/front page.\n\t$site_description = get_bloginfo( 'description', 'display' );\n\tif ( $site_description && ( is_home() || is_front_page() ) ) {\n\t\t$title .= \" $sep $site_description\";\n\t}\n\n\t// Add a page number if necessary:\n\tif ( $paged >= 2 || $page >= 2 ) {\n\t\t$title .= \" $sep \" . sprintf( __( 'Page %s', 'casper' ), max( $paged, $page ) );\n\t}\n\n\treturn $title;\n}\nadd_filter( 'wp_title', 'casper_wp_title', 10, 2 );\n\n/**\n * Sets the authordata global when viewing an author archive.\n *\n * This provides backwards compatibility with\n * http://core.trac.wordpress.org/changeset/25574\n *\n * It removes the need to call the_post() and rewind_posts() in an author\n * template to print information about the author.\n *\n * @global WP_Query $wp_query WordPress Query object.\n * @return void\n */\nfunction casper_setup_author() {\n\tglobal $wp_query;\n\n\tif ( $wp_query->is_author() && isset( $wp_query->post ) ) {\n\t\t$GLOBALS['authordata'] = get_userdata( $wp_query->post->post_author );\n\t}\n}\nadd_action( 'wp', 'casper_setup_author' );\n\n"
  },
  {
    "path": "inc/jetpack.php",
    "content": "<?php\n/**\n * Jetpack Compatibility File\n * See: http://jetpack.me/\n *\n * @package Casper\n */\n\n/**\n * Add theme support for Infinite Scroll.\n * See: http://jetpack.me/support/infinite-scroll/\n */\nfunction casper_jetpack_setup() {\n\tadd_theme_support( 'infinite-scroll', array(\n\t\t'container' => 'main',\n\t\t'footer'    => 'page',\n\t) );\n}\nadd_action( 'after_setup_theme', 'casper_jetpack_setup' );\n"
  },
  {
    "path": "inc/template-tags.php",
    "content": "<?php\n/**\n * Custom template tags for this theme.\n *\n * Eventually, some of the functionality here could be replaced by core features.\n *\n * @package Casper\n */\n\nif ( ! function_exists( 'casper_paging_nav' ) ) :\n/**\n * Display navigation to next/previous set of posts when applicable.\n *\n * @return void\n */\nfunction casper_paging_nav() {\n\t// Don't print empty markup if there's only one page.\n\tif ( $GLOBALS['wp_query']->max_num_pages < 2 ) {\n\t\treturn;\n\t}\n\tglobal $wp_query;\n\t$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;\n\t?>\n\t<nav class=\"pagination navigation paging-navigation\" role=\"navigation\">\n\t\t<div class=\"nav-links\">\n\t\t\t<?php if ( get_next_posts_link() ) : ?>\n\t\t\t<div class=\"older-posts\"><?php next_posts_link( __( 'Older Posts <span class=\"meta-nav\">&rarr;</span>', 'casper' ) ); ?></div>\n\t\t\t<?php endif; ?>\n\t\t\t\t<div class=\"page-number\"><?php printf( __( 'Page', 'casper' ).' %1$s '.__( 'of', 'casper' ).' %2$s', $paged, $wp_query->max_num_pages ); ?></div>\n\t\t\t<?php if ( get_previous_posts_link() ) : ?>\n\t\t\t<div class=\"newer-posts\"><?php previous_posts_link( __( '<span class=\"meta-nav\">&larr;</span> Newer Posts', 'casper' ) ); ?></div>\n\t\t\t<?php endif; ?>\n\n\t\t</div><!-- .nav-links -->\n\t</nav><!-- .navigation -->\n\t<?php\n}\nendif;\n\nif ( ! function_exists( 'casper_post_nav' ) ) :\n/**\n * Display navigation to next/previous post when applicable.\n *\n * @return void\n */\nfunction casper_post_nav() {\n\t// Don't print empty markup if there's nowhere to navigate.\n\t$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );\n\t$next     = get_adjacent_post( false, '', false );\n\n\tif ( ! $next && ! $previous ) {\n\t\treturn;\n\t}\n\tglobal $wp_query;\n\t$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;\n\t?>\n\t<nav class=\"pagination navigation post-navigation\" role=\"navigation\">\n\t\t<div class=\"nav-links\">\n\t\t\t<?php\n\t\t\t\tprevious_post_link( '<div class=\"older-posts\">%link</div>', _x( '%title <span class=\"meta-nav\">&rarr;</span>', 'Previous post link', 'casper' ) ); ?>\n\t\t\t\t<div class=\"page-number\">&bull;</div>\n\t\t\t\t<?php next_post_link(     '<div class=\"newer-posts\">%link</div>',     _x( '<span class=\"meta-nav\">&larr;</span> %title', 'Next post link',     'casper' ) );\n\t\t\t?>\n\t\t</div><!-- .nav-links -->\n\t</nav><!-- .navigation -->\n\t<?php\n}\nendif;\n\nif ( ! function_exists( 'casper_posted_on' ) ) :\n/**\n * Prints HTML with meta information for the current post-date/time and author.\n */\nfunction casper_posted_on() {\n\t$time_string = '<time class=\"entry-date published\" datetime=\"%1$s\">%2$s</time>';\n\tif ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {\n\t\t//$time_string .= '<time class=\"updated\" datetime=\"%3$s\">%4$s</time>';\n\t}\n\n\t$time_string = sprintf( $time_string,\n\t\tesc_attr( get_the_date( 'c' ) ),\n\t\tesc_html( get_the_date() ),\n\t\tesc_attr( get_the_modified_date( 'c' ) ),\n\t\tesc_html( get_the_modified_date() )\n\t);\n\n\tprintf( __( '<span class=\"posted-on\">%1$s</span><span class=\"byline\"> by %2$s</span>', 'casper' ),\n\t\tsprintf( '<a href=\"%1$s\" rel=\"bookmark\">%2$s</a>',\n\t\t\tesc_url( get_permalink() ),\n\t\t\t$time_string\n\t\t),\n\t\tsprintf( '<span class=\"author vcard\"><a class=\"url fn n\" href=\"%1$s\">%2$s</a></span>',\n\t\t\tesc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),\n\t\t\tesc_html( get_the_author() )\n\t\t)\n\t);\n}\nendif;\n\n/**\n * Returns true if a blog has more than 1 category.\n */\nfunction casper_categorized_blog() {\n\tif ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) {\n\t\t// Create an array of all the categories that are attached to posts.\n\t\t$all_the_cool_cats = get_categories( array(\n\t\t\t'hide_empty' => 1,\n\t\t) );\n\n\t\t// Count the number of categories that are attached to the posts.\n\t\t$all_the_cool_cats = count( $all_the_cool_cats );\n\n\t\tset_transient( 'all_the_cool_cats', $all_the_cool_cats );\n\t}\n\n\tif ( '1' != $all_the_cool_cats ) {\n\t\t// This blog has more than 1 category so casper_categorized_blog should return true.\n\t\treturn true;\n\t} else {\n\t\t// This blog has only 1 category so casper_categorized_blog should return false.\n\t\treturn false;\n\t}\n}\n\n/**\n * Flush out the transients used in casper_categorized_blog.\n */\nfunction casper_category_transient_flusher() {\n\t// Like, beat it. Dig?\n\tdelete_transient( 'all_the_cool_cats' );\n}\nadd_action( 'edit_category', 'casper_category_transient_flusher' );\nadd_action( 'save_post',     'casper_category_transient_flusher' );\n"
  },
  {
    "path": "index.php",
    "content": "<?php\n/**\n * The main template file.\n *\n * This is the most generic template file in a WordPress theme\n * and one of the two required files for a theme (the other being style.css).\n * It is used to display a page when nothing more specific matches a query.\n * E.g., it puts together the home page when no home.php file exists.\n * Learn more: http://codex.wordpress.org/Template_Hierarchy\n *\n * @package Casper\n */\n\nget_header(); ?>\n\n\n\t\t<?php if ( have_posts() ) : ?>\n\n\t\t\t<?php /* Start the Loop */ ?>\n\t\t\t<?php while ( have_posts() ) : the_post(); ?>\n\n\t\t\t\t<?php\n\t\t\t\t\t/* Include the Post-Format-specific template for the content.\n\t\t\t\t\t * If you want to override this in a child theme, then include a file\n\t\t\t\t\t * called content-___.php (where ___ is the Post Format name) and that will be used instead.\n\t\t\t\t\t */\n\t\t\t\t\tget_template_part( 'content', get_post_format() );\n\t\t\t\t?>\n\n\t\t\t<?php endwhile; ?>\n\n\t\t\t<?php casper_paging_nav(); ?>\n\n\n\t\t<?php else : ?>\n\n\t\t\t<?php get_template_part( 'content', 'none' ); ?>\n\n\t\t<?php endif; ?>\n\n\n<?php get_sidebar(); ?>\n<?php get_footer(); ?>\n"
  },
  {
    "path": "js/customizer.js",
    "content": "/**\n * Theme Customizer enhancements for a better user experience.\n *\n * Contains handlers to make Theme Customizer preview reload changes asynchronously.\n */\n\n( function( $ ) {\n\n    // Blog title and description.\n    wp.customize( 'blogname', function( value ) {\n        value.bind( function( to ) {\n            $( '.blog-title a' ).text( to );\n        } );\n    } );\n    wp.customize( 'blogdescription', function( value ) {\n        value.bind( function( to ) {\n            $( '.blog-description' ).text( to );\n        } );\n    } );\n    /*\n\n    // Header text color\n    wp.customize( 'header_textcolor', function( value ) {\n        value.bind( function( to ) {\n            if ( 'blank' === to || '' === to || false === to) {\n                $( 'header .blog-title a, header .blog-description, .social-icons a' ).css( {\n                    'color' : 'inherit'\n                } );\n            } else {\n                $( 'header .blog-title a, header .blog-description, .social-icons a' ).css( {\n                    'color': to\n                } );\n            }\n        } );\n    } );\n    // Hover color\n    wp.customize( 'casper_hover_color', function( value ) {\n        value.bind( function( to ) {\n            $( 'a:hover, header .blog-title a:hover, header .social-icons a:hover' ).css( 'color', to );\n        } );\n    });\n    // Home Menu color\n    wp.customize( 'casper_home_menu_color', function( value ) {\n        value.bind( function( to ) {\n            $( '.main-navigation a' ).css( 'color', to );\n        } );\n    });\n    // Menu color\n    wp.customize( 'casper_menu_color', function( value ) {\n        value.bind( function( to ) {\n            $( '.main-navigation a' ).css( 'color', to );\n        } );\n    });\n    */\n\n    // Other Page Header text color\n    wp.customize( 'casper_header_textcolor', function( value ) {\n        value.bind( function( to ) {\n            if ( 'blank' === to || '' === to || false === to ) {\n                $( ' header .blog-title a,  header .blog-description,  .social-icons a' ).css( {\n                    'color': 'inherit'\n                } );\n            } else {\n                $( ' header .blog-title a,  header .blog-description,  .social-icons a' ).css( {\n                    'color': to\n                } );\n            }\n        } );\n    } );\n\n    // Header Color\n    wp.customize( 'casper_header_color', function( value ) {\n        value.bind( function( to ) {\n            $( '.site-head' ).css( 'background-color', to );\n        } );\n    });\n\n    // Link color\n    wp.customize( 'casper_link_color', function( value ) {\n        value.bind( function( to ) {\n            $( 'section a' ).css( 'color', to );\n        } );\n    });\n\n    // Circle logo\n    wp.customize( 'casper_logo_circle', function( value ) {\n        value.bind( function( to ) {\n            if ( '' === to ) {\n                $( '.blog-logo img' ).css( { '-webkit-border-radius': '0',\n                                            '-moz-border-radius': '0',\n                                            'border-radius': '0'\n                } );\n            } else {\n                $( '.blog-logo img' ).css( { '-webkit-border-radius': '50%',\n                                            '-moz-border-radius': '50%',\n                                            'border-radius': '50%'\n                } );\n            }\n        } );\n    });\n\n    // Logo frame\n    wp.customize( 'casper_logo_frame', function( value ) {\n        value.bind( function( to ) {\n            if ( '' === to ) {\n                $( '.blog-logo img' ).css( { 'border': 'none',\n                                            '-webkit-box-shadow': 'none',\n                                            '-moz-box-shadow': 'none',\n                                            'box-shadow': 'none'\n                } );\n            } else {\n                $( '.blog-logo img' ).css( { 'border': '3px solid white',\n                                            '-webkit-box-shadow': '0 1px 1px rgba(0,0,0,0.3)',\n                                            '-moz-box-shadow': '0 1px 1px rgba(0,0,0,0.3)',\n                                            'box-shadow': '0 1px 1px rgba(0,0,0,0.3);} )'\n                } );\n            }\n        });\n    });\n\n    // Footer info\n    wp.customize( 'casper_custom_footer', function( value ) {\n        value.bind( function( to ) {\n            if ( '' === to ) {\n                $( '.copyright' ).html( '<a href=\"https://github.com/lacymorrow/casper/\" rel=\"home\">Casper</a> by Lacy Morrow' );\n            } else {\n                $( '.copyright' ).html( to );\n            }\n        } );\n    });\n} )( jQuery );\n"
  },
  {
    "path": "js/main.js",
    "content": "/* jshint ignore: start */\n/*! Casper 19-03-2019 */\n\n!function(w,t){\"use strict\";var e=function(){t(\".post-content\").fitVids(),t(w).load(function(){!function(){var t,e,i,a,n,o,r,s,d,c,l,u,m,h,f,g=w.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,p=document.getElementsByTagName(\"body\")[0].getElementsByTagName(\"img\"),v=w.devicePixelRatio&&1.2<=w.devicePixelRatio?1:0;if(0!==p.length)for(r=p[0].hasAttribute?function(t,e){return t.hasAttribute(e)}:function(t,e){return null!==t.getAttribute(e)},n=0;n<p.length;n++)if(c=p[n],s=v&&r(c,\"data-src2x\")?\"data-src2x\":\"data-src\",l=v&&r(c,\"data-src-base2x\")?\"data-src-base2x\":\"data-src-base\",c.onload=function(){this.style.opacity=\"1\"},r(c,s))for(t=r(c,l)?c.getAttribute(l):\"\",o=c.getAttribute(s).split(\",\"),e=0;e<o.length;e++)if(d=(a=o[e].replace(\":\",\"||\").split(\"||\"))[0],i=a[1],-1!==d.indexOf(\"<\")?(u=d.split(\"<\"),o[e-1]?(h=o[e-1].split(/:(.+)/)[0].split(\"<\"),g<=u[1]&&g>h[1]):g<=u[1]):(u=d.split(\">\"),o[e+1]?(m=o[e+1].split(/:(.+)/)[0].split(\">\"),g>=u[1]&&g<m[1]):g>=u[1])){f=1==(-1!==i.indexOf(\"//\")?1:0)?i:t+i,c.src!==f&&c.setAttribute(\"src\",f);break}}()})};t(document).ready(function(){e()})}(window,jQuery),function(n){\"use strict\";var o,r,s,d;n.fn.fitVids=function(t){var i={customSelector:null};if(!document.getElementById(\"fit-vids-style\")){var e=document.createElement(\"div\"),a=document.getElementsByTagName(\"base\")[0]||document.getElementsByTagName(\"script\")[0];e.className=\"fit-vids-style\",e.id=\"fit-vids-style\",e.style.display=\"none\",e.innerHTML=\"&shy;<style>.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}</style>\",a.parentNode.insertBefore(e,a)}return t&&n.extend(i,t),this.each(function(){var t=['iframe[src*=\"player.vimeo.com\"]','iframe[src*=\"youtube.com\"]','iframe[src*=\"youtube-nocookie.com\"]','iframe[src*=\"kickstarter.com\"][src*=\"video.html\"]',\"object\",\"embed\"];i.customSelector&&t.push(i.customSelector);var e=n(this).find(t.join(\",\"));(e=e.not(\"object object\")).each(function(){var t=n(this);\"embed\"===this.tagName.toLowerCase()&&t.parent(\"object\").length||t.parent(\".fluid-width-video-wrapper\").length||(o=\"object\"===this.tagName.toLowerCase()||t.attr(\"height\")&&!isNaN(parseInt(t.attr(\"height\"),10))?parseInt(t.attr(\"height\"),10):t.height(),r=isNaN(parseInt(t.attr(\"width\"),10))?t.width():parseInt(t.attr(\"width\"),10),s=o/r,t.attr(\"id\")||(d=\"fitvid\"+Math.floor(999999*Math.random()),t.attr(\"id\",d)),t.wrap('<div class=\"fluid-width-video-wrapper\"></div>').parent(\".fluid-width-video-wrapper\").css(\"padding-top\",100*s+\"%\"),t.removeAttr(\"height\").removeAttr(\"width\"))})})}}(window.jQuery||window.Zepto),function(){var t,e,i;(t=document.getElementById(\"site-navigation\"))&&void 0!==(e=t.getElementsByTagName(\"h1\")[0])&&(void 0!==(i=t.getElementsByTagName(\"ul\")[0])?(-1===i.className.indexOf(\"nav-menu\")&&(i.className+=\" nav-menu\"),e.onclick=function(){-1!==t.className.indexOf(\"toggled\")?t.className=t.className.replace(\" toggled\",\"\"):t.className+=\" toggled\"}):e.style.display=\"none\")}(),function(){var t=-1<navigator.userAgent.toLowerCase().indexOf(\"webkit\"),e=-1<navigator.userAgent.toLowerCase().indexOf(\"opera\"),i=-1<navigator.userAgent.toLowerCase().indexOf(\"msie\");if((t||e||i)&&void 0!==document.getElementById){var a=window.addEventListener?\"addEventListener\":\"attachEvent\";window[a](\"hashchange\",function(){var t=document.getElementById(location.hash.substring(1));t&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1)}}();"
  },
  {
    "path": "languages/casper.pot",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Casper 1.1.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2014-10-15 23:17-0700\\n\"\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=CHARSET\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\\n\"\n\n#: 404.php:15\nmsgid \"Oops! That page can&rsquo;t be found.\"\nmsgstr \"\"\n\n#: 404.php:20\nmsgid \"\"\n\"We tried searching for what you were looking for, but didn&apos;t find \"\n\"anything. Please use the search form below.\"\nmsgstr \"\"\n\n#: archive.php:27\n#, php-format\nmsgid \"Author: %s\"\nmsgstr \"\"\n\n#: archive.php:30\n#, php-format\nmsgid \"Day: %s\"\nmsgstr \"\"\n\n#: archive.php:33\n#, php-format\nmsgid \"Month: %s\"\nmsgstr \"\"\n\n#: archive.php:33\nmsgctxt \"monthly archives date format\"\nmsgid \"F Y\"\nmsgstr \"\"\n\n#: archive.php:36\n#, php-format\nmsgid \"Year: %s\"\nmsgstr \"\"\n\n#: archive.php:36\nmsgctxt \"yearly archives date format\"\nmsgid \"Y\"\nmsgstr \"\"\n\n#: archive.php:39\nmsgid \"Asides\"\nmsgstr \"\"\n\n#: archive.php:42\nmsgid \"Galleries\"\nmsgstr \"\"\n\n#: archive.php:45\nmsgid \"Images\"\nmsgstr \"\"\n\n#: archive.php:48\nmsgid \"Videos\"\nmsgstr \"\"\n\n#: archive.php:51\nmsgid \"Quotes\"\nmsgstr \"\"\n\n#: archive.php:54\nmsgid \"Links\"\nmsgstr \"\"\n\n#: archive.php:57\nmsgid \"Statuses\"\nmsgstr \"\"\n\n#: archive.php:60\nmsgid \"Audios\"\nmsgstr \"\"\n\n#: archive.php:63\nmsgid \"Chats\"\nmsgstr \"\"\n\n#: archive.php:66\nmsgid \"Archives\"\nmsgstr \"\"\n\n#: comments.php:28\n#, php-format\nmsgctxt \"comments title\"\nmsgid \"One thought on &ldquo;%2$s&rdquo;\"\nmsgid_plural \"%1$s thoughts on &ldquo;%2$s&rdquo;\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: comments.php:35 comments.php:52\nmsgid \"Comment navigation\"\nmsgstr \"\"\n\n#: comments.php:36 comments.php:53\nmsgid \"&larr; Older Comments\"\nmsgstr \"\"\n\n#: comments.php:37 comments.php:54\nmsgid \"Newer Comments &rarr;\"\nmsgstr \"\"\n\n#: comments.php:64\nmsgid \"Comments are closed.\"\nmsgstr \"\"\n\n#. //codex.wordpress.org/Template_Hierarchy\n#. *\n#. * @package Casper\n#.\n#: content-none.php:13\nmsgid \"Nothing Found\"\nmsgstr \"\"\n\n#: content-none.php:19\n#, php-format\nmsgid \"\"\n\"Ready to publish your first post? <a href=\\\"%1$s\\\">Get started here</a>.\"\nmsgstr \"\"\n\n#: content-none.php:23\nmsgid \"\"\n\"Sorry, but nothing matched your search terms. Please try again with some \"\n\"different keywords.\"\nmsgstr \"\"\n\n#: content-none.php:28\nmsgid \"\"\n\"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps \"\n\"searching can help.\"\nmsgstr \"\"\n\n#: content-page.php:10 content-page.php:13 content-single.php:8\n#: content-single.php:11 content.php:10\nmsgid \", \"\nmsgstr \"\"\n\n#: content-page.php:18 content-single.php:16\n#, php-format\nmsgid \"\"\n\"This entry was tagged %2$s. Bookmark the <a href=\\\"%3$s\\\" rel=\\\"bookmark\"\n\"\\\">permalink</a>.\"\nmsgstr \"\"\n\n#: content-page.php:20 content-single.php:18\n#, php-format\nmsgid \"Bookmark the <a href=\\\"%3$s\\\" rel=\\\"bookmark\\\">permalink</a>.\"\nmsgstr \"\"\n\n#: content-page.php:26 content-single.php:24\n#, php-format\nmsgid \"\"\n\"This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\\\"%3$s\\\" \"\n\"rel=\\\"bookmark\\\">permalink</a>.\"\nmsgstr \"\"\n\n#: content-page.php:28 content-single.php:26\n#, php-format\nmsgid \"\"\n\"This entry was posted in %1$s. Bookmark the <a href=\\\"%3$s\\\" rel=\\\"bookmark\"\n\"\\\">permalink</a>.\"\nmsgstr \"\"\n\n#: content-page.php:42 content-single.php:40\nmsgid \" | \"\nmsgstr \"\"\n\n#: content-page.php:45 content-single.php:43\nmsgid \" in \"\nmsgstr \"\"\n\n#: content-page.php:47 content-single.php:45 content.php:22\nmsgid \"Edit&rarr;\"\nmsgstr \"\"\n\n#: content-page.php:67\nmsgid \"Edit\"\nmsgstr \"\"\n\n#: content-single.php:68\nmsgid \"&hellip;&nbsp<span class=\\\"meta-nav\\\">&rarr;</span>\"\nmsgstr \"\"\n\n#: content-single.php:71 content.php:56\nmsgid \"Pages:\"\nmsgstr \"\"\n\n#: content.php:20\nmsgid \" on \"\nmsgstr \"\"\n\n#: content.php:46 functions.php:69\nmsgid \"&hellip;&nbsp;<span class=\\\"meta-nav\\\">&rarr;</span>\"\nmsgstr \"\"\n\n#: footer.php:11\nmsgid \"Subscribe!\"\nmsgstr \"\"\n\n#: footer.php:15\n#, php-format\nmsgid \"<a href=\\\"%1$s\\\" rel=\\\"home\\\">Casper WP</a> by Lacy Morrow\"\nmsgstr \"\"\n\n#: functions.php:44\nmsgid \"Primary Menu\"\nmsgstr \"\"\n\n#: functions.php:86\nmsgid \"Footer Bar\"\nmsgstr \"\"\n\n#: header.php:32\nmsgid \"Menu\"\nmsgstr \"\"\n\n#: header.php:35\nmsgid \"Skip to content\"\nmsgstr \"\"\n\n#: header.php:50\nmsgid \"Youtube\"\nmsgstr \"\"\n\n#: header.php:55\nmsgid \"Tumblr\"\nmsgstr \"\"\n\n#: header.php:60\nmsgid \"Instagram\"\nmsgstr \"\"\n\n#: header.php:65\nmsgid \"Google+\"\nmsgstr \"\"\n\n#: header.php:70\nmsgid \"Facebook\"\nmsgstr \"\"\n\n#: header.php:75\nmsgid \"Twitter\"\nmsgstr \"\"\n\n#: header.php:80\nmsgid \"Home\"\nmsgstr \"\"\n\n#: header.php:85\nmsgid \"Email\"\nmsgstr \"\"\n\n#: header.php:90\nmsgid \"LinkedIn\"\nmsgstr \"\"\n\n#: header.php:95\nmsgid \"GitHub\"\nmsgstr \"\"\n\n#: header.php:100\nmsgid \"Bitbucket\"\nmsgstr \"\"\n\n#: header.php:105\nmsgid \"Stack Overflow\"\nmsgstr \"\"\n\n#: header.php:110\nmsgid \"Dribbble\"\nmsgstr \"\"\n\n#: header.php:115\nmsgid \"Behance\"\nmsgstr \"\"\n\n#: header.php:120\nmsgid \"RSS\"\nmsgstr \"\"\n\n#: header.php:125\nmsgid \"CodePen\"\nmsgstr \"\"\n\n#: header.php:130\nmsgid \"Deviant Art\"\nmsgstr \"\"\n\n#: header.php:135\nmsgid \"Flickr\"\nmsgstr \"\"\n\n#: header.php:140\nmsgid \"LastFM\"\nmsgstr \"\"\n\n#: header.php:145\nmsgid \"SoundCloud\"\nmsgstr \"\"\n\n#: header.php:150\nmsgid \"Spotify\"\nmsgstr \"\"\n\n#: search.php:16\n#, php-format\nmsgid \"Search Results for: %s\"\nmsgstr \"\"\n\n#: inc/customizer.php:35 inc/customizer.php:43\nmsgid \"Logo\"\nmsgstr \"\"\n\n#: inc/customizer.php:65\nmsgid \"Header Color\"\nmsgstr \"\"\n\n#: inc/customizer.php:81\nmsgid \"Page Header Text Color\"\nmsgstr \"\"\n\n#: inc/customizer.php:97\nmsgid \"Link Color\"\nmsgstr \"\"\n\n#: inc/customizer.php:113\nmsgid \"Hover Color\"\nmsgstr \"\"\n\n#: inc/customizer.php:129\nmsgid \"Home Menu Color\"\nmsgstr \"\"\n\n#: inc/customizer.php:145\nmsgid \"Menu Color\"\nmsgstr \"\"\n\n#: inc/extras.php:63\n#, php-format\nmsgid \"Page %s\"\nmsgstr \"\"\n\n#: inc/template-tags.php:27\nmsgid \"Older Posts <span class=\\\"meta-nav\\\">&rarr;</span>\"\nmsgstr \"\"\n\n#: inc/template-tags.php:29\nmsgid \"Page\"\nmsgstr \"\"\n\n#: inc/template-tags.php:29\nmsgid \"of\"\nmsgstr \"\"\n\n#: inc/template-tags.php:31\nmsgid \"<span class=\\\"meta-nav\\\">&larr;</span> Newer Posts\"\nmsgstr \"\"\n\n#: inc/template-tags.php:60\nmsgctxt \"Previous post link\"\nmsgid \"%title <span class=\\\"meta-nav\\\">&rarr;</span>\"\nmsgstr \"\"\n\n#: inc/template-tags.php:62\nmsgctxt \"Next post link\"\nmsgid \"<span class=\\\"meta-nav\\\">&larr;</span> %title\"\nmsgstr \"\"\n\n#: inc/template-tags.php:87\n#, php-format\nmsgid \"\"\n\"<span class=\\\"posted-on\\\">%1$s</span><span class=\\\"byline\\\"> by %2$s</span>\"\nmsgstr \"\"\n"
  },
  {
    "path": "languages/readme.txt",
    "content": "Place your theme language files in this directory.\n\nPlease visit the following links to learn more about translating WordPress themes:\n\nhttp://codex.wordpress.org/Translating_WordPress\nhttp://codex.wordpress.org/Function_Reference/load_theme_textdomain\n"
  },
  {
    "path": "license.txt",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users.  This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it.  (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.)  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have.  You must make sure that they, too, receive or can get the\nsource code.  And you must show them these terms so they know their\nrights.\n\n  We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n  Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware.  If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary.  To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                    GNU GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License.  The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage.  (Hereinafter, translation is included without limitation in\nthe term \"modification\".)  Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n  1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n  2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) You must cause the modified files to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    b) You must cause any work that you distribute or publish, that in\n    whole or in part contains or is derived from the Program or any\n    part thereof, to be licensed as a whole at no charge to all third\n    parties under the terms of this License.\n\n    c) If the modified program normally reads commands interactively\n    when run, you must cause it, when started running for such\n    interactive use in the most ordinary way, to print or display an\n    announcement including an appropriate copyright notice and a\n    notice that there is no warranty (or else, saying that you provide\n    a warranty) and that users may redistribute the program under\n    these conditions, and telling the user how to view a copy of this\n    License.  (Exception: if the Program itself is interactive but\n    does not normally print such an announcement, your work based on\n    the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n    a) Accompany it with the complete corresponding machine-readable\n    source code, which must be distributed under the terms of Sections\n    1 and 2 above on a medium customarily used for software interchange; or,\n\n    b) Accompany it with a written offer, valid for at least three\n    years, to give any third party, for a charge no more than your\n    cost of physically performing source distribution, a complete\n    machine-readable copy of the corresponding source code, to be\n    distributed under the terms of Sections 1 and 2 above on a medium\n    customarily used for software interchange; or,\n\n    c) Accompany it with the information you received as to the offer\n    to distribute corresponding source code.  (This alternative is\n    allowed only for noncommercial distribution and only if you\n    received the program in object code or executable form with such\n    an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it.  For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable.  However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n  4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License.  Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n  5. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n  6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n  7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n  8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded.  In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n  9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation.  If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n  10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission.  For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this.  Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n                            NO WARRANTY\n\n  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation; either version 2 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License along\n    with this program; if not, write to the Free Software Foundation, Inc.,\n    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n    Gnomovision version 69, Copyright (C) year name of author\n    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n  `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n  <signature of Ty Coon>, 1 April 1989\n  Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs.  If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License."
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"Casper\",\n  \"version\": \"1.1.5\",\n  \"author\": \"Lacy Morrow <me@lacymorrow.com>\",\n  \"contributors\": [\n    {\n      \"name\": \"Lacy Morrow\",\n      \"email\": \"me@lacymorrow.com\"\n    }\n  ],\n  \"description\": \"A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\",\n  \"homepage\": \"https://github.com/lacymorrow/casper\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/lacymorrow/casper\"\n  },\n  \"devDependencies\": {\n    \"grunt\": \"^1.0.3\",\n    \"grunt-autoprefixer\": \"^3.0.4\",\n    \"grunt-checktextdomain\": \"^1.0.1\",\n    \"grunt-contrib-concat\": \"^1.0.1\",\n    \"grunt-contrib-csslint\": \"^2.0.0\",\n    \"grunt-contrib-cssmin\": \"^2.2.1\",\n    \"grunt-contrib-jshint\": \"^1.1.0\",\n    \"grunt-contrib-less\": \"^2.0.0\",\n    \"grunt-contrib-uglify\": \"^3.3.0\",\n    \"grunt-contrib-watch\": \"^1.1.0\",\n    \"grunt-csscomb\": \"^3.1.1\",\n    \"grunt-pot\": \"^0.3.0\",\n    \"image-type\": \"^3.0.0\",\n    \"load-grunt-tasks\": \"^4.0.0\",\n    \"tempfile\": \"^2.0.0\",\n    \"time-grunt\": \"^1.4.0\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/lacymorrow/casper/issues\"\n  },\n  \"license\": \"GPL\"\n}\n"
  },
  {
    "path": "page.php",
    "content": "<?php\n/**\n * The template for displaying all pages.\n *\n * This is the template that displays all pages by default.\n * Please note that this is the WordPress construct of pages\n * and that other 'pages' on your WordPress site will use a\n * different template.\n *\n * @package Casper\n */\n\nget_header(); ?>\n\n\n\t\t\t<?php while ( have_posts() ) : the_post(); ?>\n\n\t\t\t\t<?php get_template_part( 'content', 'page' ); ?>\n\n\t\t\t\t<?php\n\t\t\t\t\t// If comments are open or we have at least one comment, load up the comment template\n\t\t\t\t\tif ( comments_open() || '0' != get_comments_number() ) :\n\t\t\t\t\t\tcomments_template();\n\t\t\t\t\tendif;\n\t\t\t\t?>\n\n\t\t\t<?php endwhile; // end of the loop. ?>\n\n\n<?php get_sidebar(); ?>\n<?php get_footer(); ?>\n"
  },
  {
    "path": "readme.md",
    "content": "\n[![Casper](https://raw.githubusercontent.com/lacymorrow/casper/master/img/casper.png \"Casper\")](http://lacymorrow.com/projects/casper/)\n\n> A Ghost-like 👻 WordPress theme\n\n[![WordPress](https://img.shields.io/wordpress/v/akismet.svg)]() [![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)\n\nCasper *(for WordPress)* is a simple yet beautiful theme for bloggers.\n\nInspired by the [Ghost](http://ghost.org) blogging platform, Casper is a [WordPress](http://wordpress.org) port of the [default theme by the same name](https://github.com/TryGhost/Casper). The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework.\n\n\n## Features\n* Search feature   🔦\n* Comments section   🙊\n* Customizer integration   🌈\n* Social icons pre-included   🐾\n* Responsive site and images   🐛 \n\n\n[![screenshot](https://raw.githubusercontent.com/lacymorrow/casper/master/screenshot.png \"screenshot\")](http://lacymorrow.com/projects/casper/)\n\n### [Demo](https://casper.lacymorrow.com)\n\n### [Download Casper from the WordPress.org Theme Directory](http://wordpress.org/themes/casper)\n\n\n## Table of Contents\n\n- [Usage](#usage)\n- [Editing](#editing-casper)\n- [Building](#building-casper)\n    - [With Grunt](#using-grunt-to-build-the-package)\n    - [Grunt Tasks](#grunt-tasks)\n    - [i18n](#i18n-internationalization)\n- [Development](#development)\n- [Roadmap](#roadmap)\n- [License](#license)\n\n\n## Usage\n\nDownload the [zip](https://github.com/lacymorrow/casper/archive/master.zip) package of the theme and install either automatically through the WordPress Dashboard > Appearance tab, or by uploading the `casper` folder to your WordPress/wp-content/themes directory.\n\nThe `style.css` file in the theme directory is minified. A human-readable version of is located at `css/style.css`.\n\n\n## Editing Casper\n\nThe recommended way to edit the Casper theme is to use the [Casper child theme](https://github.com/lacymorrow/casper-child). This will ensure that none of your changes will be lost when you update Casper. Install and activate the child theme and make changes as you would normally. Any file included in the theme will override a Casper theme file (exceptions being `functions.php` and `style.css`).\n\nIf you want to make changes to the core theme, or want to contribute, read below on how to build the package.\n\n\n## Building Casper\n\nCasper is open-source and simple to develop and extend.\n\n\n#### Using Grunt to build the package\n\n```bash\n# Clone and install dependencies\n\n$ git clone https://github.com/lacymorrow/casper.git\n$ cd casper\n$ npm install -g grunt-cli\n$ npm install\n\n\n# Build the distribution\n\n$ grunt\n```\n_or `grunt watch` to continuously build._\n\n##### Grunt Tasks\n\n * Compile `src/css/style.less` and other LESS and CSS files in `src/css/`\n * Any CSS is combed, linted, prefixed, then compiled with `css/style.css`\n * `css/style.css` is minified into `style.css`\n * Images in `src/img/` are compressed and copied to `img`\n * Theme JavaScript and other js files in `src/js/` are linted, minified, and combined into `js/main.js`\n\n##### i18n (_internationalization_)\n\nTo generate a `.pot` language file you must have xgettext installed. On OSX using homebrew run `brew install gettext && brew link gettext --force` to install. Run `grunt i18n` to generate language files.\n\n\n## Getting Involved\n\nWant to report a bug, request a feature, or help me build this project? The more the merrier!  🐞\n\nMany thanks to the [Ghost](http://ghost.org) & [WordPress](http://wordpress.org) teams, as well as the [Underscores \\_s](http://underscores.me/) contributers, and [kvendrik](https://github.com/kvendrik/responsive-images.js).  ☄️\n\nBuilt using all of the above.  ⛄️\n\n\n## 🏎  Roadmap\n * Update Casper WP to match the updated Ghost version - _Casper 2!_\n * Implement an update mechanism to pull changes from the Ghost project to keep the development in sync\n\n\n## License\n\n[GPL v2.0](http://www.gnu.org/licenses/gpl-2.0.html) © [Lacy Morrow](http://lacymorrow.com)\n\nAll assets licensed under a GPL-compatible license.\n"
  },
  {
    "path": "readme.txt",
    "content": "** Casper **\nA Ghost-like WordPress theme\n\nCasper (for WordPress) is a simple yet beautiful theme for bloggers.\n\nInspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile.\n\n\n# Usage\n\nDownload the zip package of the theme and install either automatically through the WordPress Dashboard > Appearance tab, or by uploading the casper-wp folder to your WordPress/wp-content/themes directory.\n\n# Using Grunt to build the package\n\nA gruntfile.js is included. `cd` into the theme directory and run `npm install` to install Grunt and all dependencies locally. Run `grunt` to build or `grunt watch` to continuously build.\n\n# Tasks\n\nCompile src/css/style.less and other LESS and CSS files in src/css/\nAny CSS is combed, linted, prefixed, then compiled with css/style.css\ncss/style.css is minified into style.css\nImages in src/img/ are compressed and copied to img\nTheme JavaScript and other js files in src/js/ are linted, minified, and combined into js/main.js\nGetting Involved\n\nWant to report a bug, request a feature, or help me build this project? The more the merrier!\n\nMany thanks to the Ghost & WordPress teams, as well as the Underscores _s contributers, and kvendrik. Built using all of the above.\n\n# License\n\nCasper Logo is Public Domain\nresponsive-img.js is open source\nUnderscores _s is licensed under GPLv2 or later\nFont Awesome is fully open source and is GPL compatible\nPHP 4 and PHP 5 are distributed under the PHP License v3.01, copyright (c) the PHP Group\n\nCasper WordPress Theme, Copyright 2014 LacyMorrow.com\nCasper is distributed under the terms of the GNU GPL\n"
  },
  {
    "path": "rtl.css",
    "content": "@font-face{font-family:GESSTwoMedium;src:url(fonts/ge-ss-med.eot);src:url(fonts/ge-ss-med.eot) format('embedded-opentype'),url(fonts/ge-ss-med.woff) format('woff'),url(fonts/ge-ss-med.ttf) format('truetype'),url(fonts/ge-ss-med.svg#GESSTwoMedium) format('svg')}html{direction:rtl}body{font-family:'Segoe UI',tahoma,sans-serif;font-size:2rem;line-height:1.6em}h1,h2,h3,h4,h5,h6{font-family:GESSTwoMedium,sans-serif}h1{letter-spacing:0;text-indent:0}h2{letter-spacing:0;text-indent:0}dl dt{float:right;clear:right;text-align:left}dl dd{margin-left:0;margin-right:200px}blockquote{margin:1.6em -2.2em 1.6em 0;padding:0 1.6em 0 0;border-right:#4a4a4a .4em solid;border-left:0}blockquote small{margin:.8em 1.5em .8em 0}table td,table th{text-align:right}ol,ul{margin:0 3em 1.5em 0}li>ol,li>ul{margin-bottom:0;margin-left:0;margin-right:1.5em}textarea{padding-right:0;padding-left:3px;width:98%}.main-navigation{font-family:GESSTwoMedium,tahoma,sans-serif}.main-navigation ul{float:left}.main-navigation li{float:right}.main-navigation ul ul{left:auto;right:0}.main-navigation ul ul ul{left:auto;right:100%;top:0}.menu-toggle{right:auto;left:0}.comment-navigation .nav-previous,.paging-navigation .nav-previous,.post-navigation .nav-previous{float:right;width:50%}.comment-navigation .nav-next,.paging-navigation .nav-next,.post-navigation .nav-next{float:left;text-align:right;width:50%}.screen-reader-text:active,.screen-reader-text:focus,.screen-reader-text:hover{left:auto;right:5px}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin:0 auto}.blog-description,.blog-title{letter-spacing:0;font-family:GESSTwoMedium,tahoma,sans-serif}.post-meta{font-family:GESSTwoMedium,tahoma,sans-serif;word-break:initial}.user-meta{padding:.3rem 100px 0 40px}.user-image{left:auto;right:0}.publish-meta{right:auto;left:0;text-align:left}.post-footer .author{margin-right:0;margin-left:180px}.post-footer .share{right:auto;left:0}.post-footer .share a{margin:1.4rem 1.6rem 1.6rem 0}.form-allowed-tags{float:left;font-family:'Segoe UI',tahoma,sans-serif}.form-submit #submit{float:right;font-family:GESSTwoMedium,tahoma,sans-serif}.widget-area{font-family:'Segoe UI',tahoma,sans-serif}.widget-area aside{float:right}#main>header.page-header{font-family:'Segoe UI',tahoma,sans-serif}.pagination{font-family:'Segoe UI',tahoma,sans-serif}.older-posts{right:auto;left:0}.newer-posts{left:auto;right:0}.site-footer{font-family:'Segoe UI',tahoma,sans-serif}@media only screen and (max-width:900px){blockquote{margin-right:0}.blog-title{letter-spacing:0}h1{text-indent:0}}@media only screen and (max-width:500px){h1,h2{letter-spacing:0}}"
  },
  {
    "path": "search.php",
    "content": "<?php\n/**\n * The template for displaying Search Results pages.\n *\n * @package Casper\n */\n\nget_header(); ?>\n\n\t<section id=\"primary\" class=\"content-area\">\n\t\t<main id=\"main\" class=\"site-main\" role=\"main\">\n\n\t\t<?php if ( have_posts() ) : ?>\n\n\t\t\t<header class=\"page-header\">\n\t\t\t\t<h1 class=\"page-title\"><?php printf( __( 'Search Results for: %s', 'casper' ), '<span>' . get_search_query() . '</span>' ); ?></h1>\n\t\t\t</header><!-- .page-header -->\n\n\t\t\t<?php /* Start the Loop */ ?>\n\t\t\t<?php while ( have_posts() ) : the_post(); ?>\n\n\t\t\t\t<?php get_template_part( 'content', 'search' ); ?>\n\n\t\t\t<?php endwhile; ?>\n\n\t\t\t<?php casper_paging_nav(); ?>\n\n\t\t<?php else : ?>\n\n\t\t\t<?php get_template_part( 'content', 'none' ); ?>\n\n\t\t<?php endif; ?>\n\n\t\t</main><!-- #main -->\n\t</section><!-- #primary -->\n\n<?php get_sidebar(); ?>\n<?php get_footer(); ?>\n"
  },
  {
    "path": "sidebar.php",
    "content": "<?php\n/**\n * The Sidebar containing the main widget areas.\n *\n * @package Casper\n */\n?>\n\t<div id=\"secondary\" class=\"widget-area\" role=\"complementary\">\n\t\t<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : \n\t\t\t// Put default widgets here\n\t\tendif; // end sidebar widget area ?>\n\t\t<div class=\"clear\">&nbsp;</div>\n\t</div><!-- #secondary -->\n"
  },
  {
    "path": "single.php",
    "content": "<?php\n/**\n * The Template for displaying all single posts.\n *\n * @package Casper\n */\n\nget_header(); ?>\n\n\n\t\t<?php while ( have_posts() ) : the_post(); ?>\n\n\t\t\t<?php get_template_part( 'content', 'single' ); ?>\n\n\t\t\t<?php casper_post_nav(); ?>\n\n\t\t\t<?php\n\t\t\t\t// If comments are open or we have at least one comment, load up the comment template\n\t\t\t\tif ( comments_open() || '0' != get_comments_number() ) :\n\t\t\t\t\tcomments_template();\n\t\t\t\tendif;\n\t\t\t?>\n\n\t\t<?php endwhile; // end of the loop. ?>\n\n\n<?php get_sidebar(); ?>\n<?php get_footer(); ?>"
  },
  {
    "path": "src/js/casper.js",
    "content": "/**\n * Main JS file for Casper behaviours\n */\n\n/*globals jQuery, document */\n(function( window, $ ) {\n    'use strict';\n\n    /*\n    // @name: Responsive-img.js\n    // @version: 1.1\n    //\n    // Copyright 2013-2014 Koen Vendrik, http://kvendrik.com\n    // Licensed under the MIT license\n    */\n    var makeImagesResponsive = function() {\n        var e = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth,\n            t = document.getElementsByTagName( 'body' )[0].getElementsByTagName( 'img' ),\n            r = window.devicePixelRatio ? window.devicePixelRatio >= 1.2 ? 1 : 0 : 0,\n            a, b, c, d, g, f, h, i, l, m, n, o, p, s, u, v, w, y, E, S;\n        if ( 0 === t.length ) {\n            return;\n        }\n        n = t[0].hasAttribute ? function( e, t ) {\n            return e.hasAttribute( t );\n        } : function( e, t ) {\n            return null !== e.getAttribute( t );\n        };\n        for ( i = 0; i < t.length; i++ ) {\n            s = t[i],\n            o = r && n( s, 'data-src2x' ) ? 'data-src2x' : 'data-src',\n            u = r && n( s, 'data-src-base2x' ) ? 'data-src-base2x' : 'data-src-base';\n            s.onload = function() {\n                this.style.opacity = '1';\n            };\n            if ( ! n( s, o ) ) {\n continue;\n }\n            a = n( s, u ) ? s.getAttribute( u ) : '',\n            f = s.getAttribute( o ),\n            l = f.split( ',' );\n            for ( c = 0; c < l.length; c++ ) {\n                h = l[c].replace( ':', '||' ).split( '||' ),\n                p = h[0],\n                d = h[1];\n                if ( p.indexOf( '<' ) !== -1 ) {\n                    v = p.split( '<' );\n                    if ( l[c - 1] ) {\n                        g = l[c - 1].split( /:(.+)/ ),\n                        y = g[0].split( '<' );\n                        m = e <= v[1] && e > y[1];\n                    } else {\n                        m = e <= v[1];\n                    }\n                } else {\n                    v = p.split( '>' );\n                    if ( l[c + 1] ) {\n                        b = l[c + 1].split( /:(.+)/ ),\n                        w = b[0].split( '>' );\n                        m = e >= v[1] && e < w[1];\n                    } else {\n                        m = e >= v[1];\n                    }\n                }\n                if ( m ) {\n                    E = d.indexOf( '//' ) !== -1 ? 1 : 0;\n                    1 === E ? S = d : S = a + d;\n                    s.src !== S && s.setAttribute( 'src', S );\n                    break;\n                }\n            }\n        }\n    };\n\n    var init = function() {\n        $( '.post-content' ).fitVids();\n        $( window ).load(function() {\n            makeImagesResponsive();\n        });\n    };\n\n    $( document ).ready(function() {\n        init();\n    });\n\n    return {\n    };\n\n}( window, jQuery ) );\n"
  },
  {
    "path": "src/js/jquery.fitvids.js",
    "content": "/*!\n* FitVids 1.0.3\n*\n* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com\n* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/\n* Released under the WTFPL license - http://sam.zoy.org/wtfpl/\n*\n* Date: Thu Sept 01 18:00:00 2011 -0500\n*/\n(function( $ ) {\n\n  'use strict';\n\n  var height, width, aspectRatio, videoID;\n\n  $.fn.fitVids = function( options ) {\n    var settings = {\n      customSelector: null\n    };\n\n    if ( ! document.getElementById( 'fit-vids-style' ) ) {\n\n      var div = document.createElement( 'div' ),\n          ref = document.getElementsByTagName( 'base' )[0] || document.getElementsByTagName( 'script' )[0],\n          cssStyles = '&shy;<style>.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}</style>';\n\n      div.className = 'fit-vids-style';\n      div.id = 'fit-vids-style';\n      div.style.display = 'none';\n      div.innerHTML = cssStyles;\n\n      ref.parentNode.insertBefore( div, ref );\n\n    }\n\n    if ( options ) {\n      $.extend( settings, options );\n    }\n\n    return this.each(function() {\n      var selectors = [\n        'iframe[src*=\"player.vimeo.com\"]',\n        'iframe[src*=\"youtube.com\"]',\n        'iframe[src*=\"youtube-nocookie.com\"]',\n        'iframe[src*=\"kickstarter.com\"][src*=\"video.html\"]',\n        'object',\n        'embed'\n      ];\n\n      if ( settings.customSelector ) {\n        selectors.push( settings.customSelector );\n      }\n\n      var $allVideos = $( this ).find( selectors.join( ',' ) );\n      $allVideos = $allVideos.not( 'object object' ); // SwfObj conflict patch\n\n      $allVideos.each(function() {\n        var $this = $( this );\n        if ( 'embed' === this.tagName.toLowerCase() && $this.parent( 'object' ).length || $this.parent( '.fluid-width-video-wrapper' ).length ) {\n return;\n }\n        height = ( this.tagName.toLowerCase() === 'object' || ( $this.attr( 'height' ) && ! isNaN( parseInt( $this.attr( 'height' ), 10 ) ) ) ) ? parseInt( $this.attr( 'height' ), 10 ) : $this.height(),\n        width = ! isNaN( parseInt( $this.attr( 'width' ), 10 ) ) ? parseInt( $this.attr( 'width' ), 10 ) : $this.width(),\n        aspectRatio = height / width;\n        if ( ! $this.attr( 'id' ) ) {\n          videoID = 'fitvid' + Math.floor( Math.random() * 999999 );\n          $this.attr( 'id', videoID );\n        }\n        $this.wrap( '<div class=\"fluid-width-video-wrapper\"></div>' ).parent( '.fluid-width-video-wrapper' ).css( 'padding-top', ( aspectRatio * 100 ) + '%' );\n        $this.removeAttr( 'height' ).removeAttr( 'width' );\n      });\n    });\n  };\n// Works with either jQuery or Zepto\n})( window.jQuery || window.Zepto );\n"
  },
  {
    "path": "src/js/navigation.js",
    "content": "/**\n * navigation.js\n *\n * Handles toggling the navigation menu for small screens.\n */\n( function() {\n\tvar container, button, menu;\n\n\tcontainer = document.getElementById( 'site-navigation' );\n\tif ( ! container ) {\n\t\treturn; \n\t}\n\n\tbutton = container.getElementsByTagName( 'h1' )[0];\n\tif ( 'undefined' === typeof button ) {\n\t\treturn;\n\t}\n\n\tmenu = container.getElementsByTagName( 'ul' )[0];\n\n\t// Hide menu toggle button if menu is empty and return early.\n\tif ( 'undefined' === typeof menu ) {\n\t\tbutton.style.display = 'none';\n\t\treturn;\n\t}\n\n\tif ( -1 === menu.className.indexOf( 'nav-menu' ) ) {\n\t\tmenu.className += ' nav-menu';\n\t}\n\n\tbutton.onclick = function() {\n\t\tif ( -1 !== container.className.indexOf( 'toggled' ) ) {\n\t\t\tcontainer.className = container.className.replace( ' toggled', '' );\n\t\t} else {\n\t\t\tcontainer.className += ' toggled';\n\t\t}\n\t};\n} )();\n"
  },
  {
    "path": "src/js/skip-link-focus-fix.js",
    "content": "( function() {\n\tvar is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,\n\t    is_opera  = navigator.userAgent.toLowerCase().indexOf( 'opera' )  > -1,\n\t    is_ie     = navigator.userAgent.toLowerCase().indexOf( 'msie' )   > -1;\n\n\tif ( ( is_webkit || is_opera || is_ie ) && 'undefined' !== typeof( document.getElementById ) ) {\n\t\tvar eventMethod = ( window.addEventListener ) ? 'addEventListener' : 'attachEvent';\n\t\twindow[ eventMethod ]( 'hashchange', function() {\n\t\t\tvar element = document.getElementById( location.hash.substring( 1 ) );\n\n\t\t\tif ( element ) {\n\t\t\t\tif ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {\n\t\t\t\t\telement.tabIndex = -1;\n\t\t\t\t}\n\n\t\t\t\telement.focus();\n\t\t\t}\n\t\t}, false );\n\t}\n})();\n"
  },
  {
    "path": "src/less/admin.less",
    "content": "\n/* Big cover image on the home page */\n#headimg {\n    position: relative;\n    width: 100%;\n    height: 60%;\n    min-height: 250px;\n    text-align: center;\n    color: #fff;\n    background: #303538;\n    background-size: cover;\n    border-bottom: #EBF2F6 1px solid;\n    img {\n        position: absolute;\n        top: 0;\n        left: 0;\n        z-index: 1;\n    }\n\n    /* Yo-logo. Yolo-go. Upload one in ghost/settings/ */\n    .blog-logo {\n        text-decoration: none;\n        color: white;\n    }\n    .blog-logo img {\n        display: block;\n        max-height: 120px;\n        width: auto;\n        margin: 0 auto;\n        line-height: 0;\n    }\n\n    /* The details of your blog. Defined in ghost/settings/ */\n    h1.displaying-header-text {\n        margin: 10px 0 10px 0;\n        font-size: 4rem;\n        letter-spacing: -1px;\n        font-weight: bold;\n        font-family: 'Open Sans', sans-serif;\n        text-shadow: 0 1px 6px rgba(0,0,0,0.1);\n        position: relative;\n        z-index: 2;\n    }\n\n    #desc {\n        margin: 0;\n        font-size: 1.6rem;\n        line-height: 1.5em;\n        font-weight: 300;\n        font-family: 'Noto Serif', serif;\n        letter-spacing: 0;\n        text-shadow: 0 1px 3px rgba(0,0,0,0.15);\n        position: relative;\n        z-index: 2;\n    }\n}\n"
  },
  {
    "path": "src/less/fa.css",
    "content": "/*!\n *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n  font-family: 'icons';\n  src: url('fonts/fa.eot?v=4.2.0');\n  src: url('fonts/fa.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('fonts/fa.woff?v=4.2.0') format('woff'), url('fonts/fa.ttf?v=4.2.0') format('truetype'), url('fonts/fa.svg?v=4.2.0#fontawesomeregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n  font-size: 1.33333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.fa-2x {\n  font-size: 2em;\n}\n.fa-3x {\n  font-size: 3em;\n}\n.fa-4x {\n  font-size: 4em;\n}\n.fa-5x {\n  font-size: 5em;\n}\n.fa-fw {\n  width: 1.28571429em;\n  text-align: center;\n}\n.fa-ul {\n  padding-left: 0;\n  margin-left: 2.14285714em;\n  list-style-type: none;\n}\n.fa-ul > li {\n  position: relative;\n}\n.fa-li {\n  position: absolute;\n  left: -2.14285714em;\n  width: 2.14285714em;\n  top: 0.14285714em;\n  text-align: center;\n}\n.fa-li.fa-lg {\n  left: -1.85714286em;\n}\n.fa-border {\n  padding: .2em .25em .15em;\n  border: solid 0.08em #eeeeee;\n  border-radius: .1em;\n}\n.pull-right {\n  float: right;\n}\n.pull-left {\n  float: left;\n}\n.fa.pull-left {\n  margin-right: .3em;\n}\n.fa.pull-right {\n  margin-left: .3em;\n}\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n  animation: fa-spin 2s infinite linear;\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n.fa-rotate-90 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.fa-rotate-180 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.fa-rotate-270 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n  filter: none;\n}\n.fa-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.fa-stack-1x {\n  line-height: inherit;\n}\n.fa-stack-2x {\n  font-size: 2em;\n}\n.fa-inverse {\n  color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.icon-glass:before {\n  content: \"\\f000\";\n}\n.icon-music:before {\n  content: \"\\f001\";\n}\n.icon-search:before {\n  content: \"\\f002\";\n}\n.icon-envelope-o:before {\n  content: \"\\f003\";\n}\n.icon-heart:before {\n  content: \"\\f004\";\n}\n.icon-star:before {\n  content: \"\\f005\";\n}\n.icon-star-o:before {\n  content: \"\\f006\";\n}\n.icon-user:before {\n  content: \"\\f007\";\n}\n.icon-film:before {\n  content: \"\\f008\";\n}\n.icon-th-large:before {\n  content: \"\\f009\";\n}\n.icon-th:before {\n  content: \"\\f00a\";\n}\n.icon-th-list:before {\n  content: \"\\f00b\";\n}\n.icon-check:before {\n  content: \"\\f00c\";\n}\n.icon-remove:before,\n.icon-close:before,\n.icon-times:before {\n  content: \"\\f00d\";\n}\n.icon-search-plus:before {\n  content: \"\\f00e\";\n}\n.icon-search-minus:before {\n  content: \"\\f010\";\n}\n.icon-power-off:before {\n  content: \"\\f011\";\n}\n.icon-signal:before {\n  content: \"\\f012\";\n}\n.icon-gear:before,\n.icon-cog:before {\n  content: \"\\f013\";\n}\n.icon-trash-o:before {\n  content: \"\\f014\";\n}\n.icon-home:before {\n  content: \"\\f015\";\n}\n.icon-file-o:before {\n  content: \"\\f016\";\n}\n.icon-clock-o:before {\n  content: \"\\f017\";\n}\n.icon-road:before {\n  content: \"\\f018\";\n}\n.icon-download:before {\n  content: \"\\f019\";\n}\n.icon-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.icon-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.icon-inbox:before {\n  content: \"\\f01c\";\n}\n.icon-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.icon-rotate-right:before,\n.icon-repeat:before {\n  content: \"\\f01e\";\n}\n.icon-refresh:before {\n  content: \"\\f021\";\n}\n.icon-list-alt:before {\n  content: \"\\f022\";\n}\n.icon-lock:before {\n  content: \"\\f023\";\n}\n.icon-flag:before {\n  content: \"\\f024\";\n}\n.icon-headphones:before {\n  content: \"\\f025\";\n}\n.icon-volume-off:before {\n  content: \"\\f026\";\n}\n.icon-volume-down:before {\n  content: \"\\f027\";\n}\n.icon-volume-up:before {\n  content: \"\\f028\";\n}\n.icon-qrcode:before {\n  content: \"\\f029\";\n}\n.icon-barcode:before {\n  content: \"\\f02a\";\n}\n.icon-tag:before {\n  content: \"\\f02b\";\n}\n.icon-tags:before {\n  content: \"\\f02c\";\n}\n.icon-book:before {\n  content: \"\\f02d\";\n}\n.icon-bookmark:before {\n  content: \"\\f02e\";\n}\n.icon-print:before {\n  content: \"\\f02f\";\n}\n.icon-camera:before {\n  content: \"\\f030\";\n}\n.icon-font:before {\n  content: \"\\f031\";\n}\n.icon-bold:before {\n  content: \"\\f032\";\n}\n.icon-italic:before {\n  content: \"\\f033\";\n}\n.icon-text-height:before {\n  content: \"\\f034\";\n}\n.icon-text-width:before {\n  content: \"\\f035\";\n}\n.icon-align-left:before {\n  content: \"\\f036\";\n}\n.icon-align-center:before {\n  content: \"\\f037\";\n}\n.icon-align-right:before {\n  content: \"\\f038\";\n}\n.icon-align-justify:before {\n  content: \"\\f039\";\n}\n.icon-list:before {\n  content: \"\\f03a\";\n}\n.icon-dedent:before,\n.icon-outdent:before {\n  content: \"\\f03b\";\n}\n.icon-indent:before {\n  content: \"\\f03c\";\n}\n.icon-video-camera:before {\n  content: \"\\f03d\";\n}\n.icon-photo:before,\n.icon-image:before,\n.icon-picture-o:before {\n  content: \"\\f03e\";\n}\n.icon-pencil:before {\n  content: \"\\f040\";\n}\n.icon-map-marker:before {\n  content: \"\\f041\";\n}\n.icon-adjust:before {\n  content: \"\\f042\";\n}\n.icon-tint:before {\n  content: \"\\f043\";\n}\n.icon-edit:before,\n.icon-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.icon-share-square-o:before {\n  content: \"\\f045\";\n}\n.icon-check-square-o:before {\n  content: \"\\f046\";\n}\n.icon-arrows:before {\n  content: \"\\f047\";\n}\n.icon-step-backward:before {\n  content: \"\\f048\";\n}\n.icon-fast-backward:before {\n  content: \"\\f049\";\n}\n.icon-backward:before {\n  content: \"\\f04a\";\n}\n.icon-play:before {\n  content: \"\\f04b\";\n}\n.icon-pause:before {\n  content: \"\\f04c\";\n}\n.icon-stop:before {\n  content: \"\\f04d\";\n}\n.icon-forward:before {\n  content: \"\\f04e\";\n}\n.icon-fast-forward:before {\n  content: \"\\f050\";\n}\n.icon-step-forward:before {\n  content: \"\\f051\";\n}\n.icon-eject:before {\n  content: \"\\f052\";\n}\n.icon-chevron-left:before {\n  content: \"\\f053\";\n}\n.icon-chevron-right:before {\n  content: \"\\f054\";\n}\n.icon-plus-circle:before {\n  content: \"\\f055\";\n}\n.icon-minus-circle:before {\n  content: \"\\f056\";\n}\n.icon-times-circle:before {\n  content: \"\\f057\";\n}\n.icon-check-circle:before {\n  content: \"\\f058\";\n}\n.icon-question-circle:before {\n  content: \"\\f059\";\n}\n.icon-info-circle:before {\n  content: \"\\f05a\";\n}\n.icon-crosshairs:before {\n  content: \"\\f05b\";\n}\n.icon-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.icon-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.icon-ban:before {\n  content: \"\\f05e\";\n}\n.icon-arrow-left:before {\n  content: \"\\f060\";\n}\n.icon-arrow-right:before {\n  content: \"\\f061\";\n}\n.icon-arrow-up:before {\n  content: \"\\f062\";\n}\n.icon-arrow-down:before {\n  content: \"\\f063\";\n}\n.icon-mail-forward:before,\n.icon-share:before {\n  content: \"\\f064\";\n}\n.icon-expand:before {\n  content: \"\\f065\";\n}\n.icon-compress:before {\n  content: \"\\f066\";\n}\n.icon-plus:before {\n  content: \"\\f067\";\n}\n.icon-minus:before {\n  content: \"\\f068\";\n}\n.icon-asterisk:before {\n  content: \"\\f069\";\n}\n.icon-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.icon-gift:before {\n  content: \"\\f06b\";\n}\n.icon-leaf:before {\n  content: \"\\f06c\";\n}\n.icon-fire:before {\n  content: \"\\f06d\";\n}\n.icon-eye:before {\n  content: \"\\f06e\";\n}\n.icon-eye-slash:before {\n  content: \"\\f070\";\n}\n.icon-warning:before,\n.icon-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.icon-plane:before {\n  content: \"\\f072\";\n}\n.icon-calendar:before {\n  content: \"\\f073\";\n}\n.icon-random:before {\n  content: \"\\f074\";\n}\n.icon-comment:before {\n  content: \"\\f075\";\n}\n.icon-magnet:before {\n  content: \"\\f076\";\n}\n.icon-chevron-up:before {\n  content: \"\\f077\";\n}\n.icon-chevron-down:before {\n  content: \"\\f078\";\n}\n.icon-retweet:before {\n  content: \"\\f079\";\n}\n.icon-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.icon-folder:before {\n  content: \"\\f07b\";\n}\n.icon-folder-open:before {\n  content: \"\\f07c\";\n}\n.icon-arrows-v:before {\n  content: \"\\f07d\";\n}\n.icon-arrows-h:before {\n  content: \"\\f07e\";\n}\n.icon-bar-chart-o:before,\n.icon-bar-chart:before {\n  content: \"\\f080\";\n}\n.icon-twitter-square:before {\n  content: \"\\f081\";\n}\n.icon-facebook-square:before {\n  content: \"\\f082\";\n}\n.icon-camera-retro:before {\n  content: \"\\f083\";\n}\n.icon-key:before {\n  content: \"\\f084\";\n}\n.icon-gears:before,\n.icon-cogs:before {\n  content: \"\\f085\";\n}\n.icon-comments:before {\n  content: \"\\f086\";\n}\n.icon-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.icon-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.icon-star-half:before {\n  content: \"\\f089\";\n}\n.icon-heart-o:before {\n  content: \"\\f08a\";\n}\n.icon-sign-out:before {\n  content: \"\\f08b\";\n}\n.icon-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.icon-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.icon-external-link:before {\n  content: \"\\f08e\";\n}\n.icon-sign-in:before {\n  content: \"\\f090\";\n}\n.icon-trophy:before {\n  content: \"\\f091\";\n}\n.icon-github-square:before {\n  content: \"\\f092\";\n}\n.icon-upload:before {\n  content: \"\\f093\";\n}\n.icon-lemon-o:before {\n  content: \"\\f094\";\n}\n.icon-phone:before {\n  content: \"\\f095\";\n}\n.icon-square-o:before {\n  content: \"\\f096\";\n}\n.icon-bookmark-o:before {\n  content: \"\\f097\";\n}\n.icon-phone-square:before {\n  content: \"\\f098\";\n}\n.icon-twitter:before {\n  content: \"\\f099\";\n}\n.icon-facebook:before {\n  content: \"\\f09a\";\n}\n.icon-github:before {\n  content: \"\\f09b\";\n}\n.icon-unlock:before {\n  content: \"\\f09c\";\n}\n.icon-credit-card:before {\n  content: \"\\f09d\";\n}\n.icon-feed:before,\n.icon-rss:before {\n  content: \"\\f09e\";\n}\n.icon-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.icon-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.icon-bell:before {\n  content: \"\\f0f3\";\n}\n.icon-certificate:before {\n  content: \"\\f0a3\";\n}\n.icon-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.icon-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.icon-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.icon-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.icon-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.icon-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.icon-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.icon-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.icon-globe:before {\n  content: \"\\f0ac\";\n}\n.icon-wrench:before {\n  content: \"\\f0ad\";\n}\n.icon-tasks:before {\n  content: \"\\f0ae\";\n}\n.icon-filter:before {\n  content: \"\\f0b0\";\n}\n.icon-briefcase:before {\n  content: \"\\f0b1\";\n}\n.icon-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.icon-group:before,\n.icon-users:before {\n  content: \"\\f0c0\";\n}\n.icon-chain:before,\n.icon-link:before {\n  content: \"\\f0c1\";\n}\n.icon-cloud:before {\n  content: \"\\f0c2\";\n}\n.icon-flask:before {\n  content: \"\\f0c3\";\n}\n.icon-cut:before,\n.icon-scissors:before {\n  content: \"\\f0c4\";\n}\n.icon-copy:before,\n.icon-files-o:before {\n  content: \"\\f0c5\";\n}\n.icon-paperclip:before {\n  content: \"\\f0c6\";\n}\n.icon-save:before,\n.icon-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.icon-square:before {\n  content: \"\\f0c8\";\n}\n.icon-navicon:before,\n.icon-reorder:before,\n.icon-bars:before {\n  content: \"\\f0c9\";\n}\n.icon-list-ul:before {\n  content: \"\\f0ca\";\n}\n.icon-list-ol:before {\n  content: \"\\f0cb\";\n}\n.icon-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.icon-underline:before {\n  content: \"\\f0cd\";\n}\n.icon-table:before {\n  content: \"\\f0ce\";\n}\n.icon-magic:before {\n  content: \"\\f0d0\";\n}\n.icon-truck:before {\n  content: \"\\f0d1\";\n}\n.icon-pinterest:before {\n  content: \"\\f0d2\";\n}\n.icon-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.icon-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.icon-google-plus:before {\n  content: \"\\f0d5\";\n}\n.icon-money:before {\n  content: \"\\f0d6\";\n}\n.icon-caret-down:before {\n  content: \"\\f0d7\";\n}\n.icon-caret-up:before {\n  content: \"\\f0d8\";\n}\n.icon-caret-left:before {\n  content: \"\\f0d9\";\n}\n.icon-caret-right:before {\n  content: \"\\f0da\";\n}\n.icon-columns:before {\n  content: \"\\f0db\";\n}\n.icon-unsorted:before,\n.icon-sort:before {\n  content: \"\\f0dc\";\n}\n.icon-sort-down:before,\n.icon-sort-desc:before {\n  content: \"\\f0dd\";\n}\n.icon-sort-up:before,\n.icon-sort-asc:before {\n  content: \"\\f0de\";\n}\n.icon-envelope:before {\n  content: \"\\f0e0\";\n}\n.icon-linkedin:before {\n  content: \"\\f0e1\";\n}\n.icon-rotate-left:before,\n.icon-undo:before {\n  content: \"\\f0e2\";\n}\n.icon-legal:before,\n.icon-gavel:before {\n  content: \"\\f0e3\";\n}\n.icon-dashboard:before,\n.icon-tachometer:before {\n  content: \"\\f0e4\";\n}\n.icon-comment-o:before {\n  content: \"\\f0e5\";\n}\n.icon-comments-o:before {\n  content: \"\\f0e6\";\n}\n.icon-flash:before,\n.icon-bolt:before {\n  content: \"\\f0e7\";\n}\n.icon-sitemap:before {\n  content: \"\\f0e8\";\n}\n.icon-umbrella:before {\n  content: \"\\f0e9\";\n}\n.icon-paste:before,\n.icon-clipboard:before {\n  content: \"\\f0ea\";\n}\n.icon-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.icon-exchange:before {\n  content: \"\\f0ec\";\n}\n.icon-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.icon-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.icon-user-md:before {\n  content: \"\\f0f0\";\n}\n.icon-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.icon-suitcase:before {\n  content: \"\\f0f2\";\n}\n.icon-bell-o:before {\n  content: \"\\f0a2\";\n}\n.icon-coffee:before {\n  content: \"\\f0f4\";\n}\n.icon-cutlery:before {\n  content: \"\\f0f5\";\n}\n.icon-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.icon-building-o:before {\n  content: \"\\f0f7\";\n}\n.icon-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.icon-ambulance:before {\n  content: \"\\f0f9\";\n}\n.icon-medkit:before {\n  content: \"\\f0fa\";\n}\n.icon-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.icon-beer:before {\n  content: \"\\f0fc\";\n}\n.icon-h-square:before {\n  content: \"\\f0fd\";\n}\n.icon-plus-square:before {\n  content: \"\\f0fe\";\n}\n.icon-angle-double-left:before {\n  content: \"\\f100\";\n}\n.icon-angle-double-right:before {\n  content: \"\\f101\";\n}\n.icon-angle-double-up:before {\n  content: \"\\f102\";\n}\n.icon-angle-double-down:before {\n  content: \"\\f103\";\n}\n.icon-angle-left:before {\n  content: \"\\f104\";\n}\n.icon-angle-right:before {\n  content: \"\\f105\";\n}\n.icon-angle-up:before {\n  content: \"\\f106\";\n}\n.icon-angle-down:before {\n  content: \"\\f107\";\n}\n.icon-desktop:before {\n  content: \"\\f108\";\n}\n.icon-laptop:before {\n  content: \"\\f109\";\n}\n.icon-tablet:before {\n  content: \"\\f10a\";\n}\n.icon-mobile-phone:before,\n.icon-mobile:before {\n  content: \"\\f10b\";\n}\n.icon-circle-o:before {\n  content: \"\\f10c\";\n}\n.icon-quote-left:before {\n  content: \"\\f10d\";\n}\n.icon-quote-right:before {\n  content: \"\\f10e\";\n}\n.icon-spinner:before {\n  content: \"\\f110\";\n}\n.icon-circle:before {\n  content: \"\\f111\";\n}\n.icon-mail-reply:before,\n.icon-reply:before {\n  content: \"\\f112\";\n}\n.icon-github-alt:before {\n  content: \"\\f113\";\n}\n.icon-folder-o:before {\n  content: \"\\f114\";\n}\n.icon-folder-open-o:before {\n  content: \"\\f115\";\n}\n.icon-smile-o:before {\n  content: \"\\f118\";\n}\n.icon-frown-o:before {\n  content: \"\\f119\";\n}\n.icon-meh-o:before {\n  content: \"\\f11a\";\n}\n.icon-gamepad:before {\n  content: \"\\f11b\";\n}\n.icon-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.icon-flag-o:before {\n  content: \"\\f11d\";\n}\n.icon-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.icon-terminal:before {\n  content: \"\\f120\";\n}\n.icon-code:before {\n  content: \"\\f121\";\n}\n.icon-mail-reply-all:before,\n.icon-reply-all:before {\n  content: \"\\f122\";\n}\n.icon-star-half-empty:before,\n.icon-star-half-full:before,\n.icon-star-half-o:before {\n  content: \"\\f123\";\n}\n.icon-location-arrow:before {\n  content: \"\\f124\";\n}\n.icon-crop:before {\n  content: \"\\f125\";\n}\n.icon-code-fork:before {\n  content: \"\\f126\";\n}\n.icon-unlink:before,\n.icon-chain-broken:before {\n  content: \"\\f127\";\n}\n.icon-question:before {\n  content: \"\\f128\";\n}\n.icon-info:before {\n  content: \"\\f129\";\n}\n.icon-exclamation:before {\n  content: \"\\f12a\";\n}\n.icon-superscript:before {\n  content: \"\\f12b\";\n}\n.icon-subscript:before {\n  content: \"\\f12c\";\n}\n.icon-eraser:before {\n  content: \"\\f12d\";\n}\n.icon-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.icon-microphone:before {\n  content: \"\\f130\";\n}\n.icon-microphone-slash:before {\n  content: \"\\f131\";\n}\n.icon-shield:before {\n  content: \"\\f132\";\n}\n.icon-calendar-o:before {\n  content: \"\\f133\";\n}\n.icon-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.icon-rocket:before {\n  content: \"\\f135\";\n}\n.icon-maxcdn:before {\n  content: \"\\f136\";\n}\n.icon-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.icon-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.icon-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.icon-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.icon-html5:before {\n  content: \"\\f13b\";\n}\n.icon-css3:before {\n  content: \"\\f13c\";\n}\n.icon-anchor:before {\n  content: \"\\f13d\";\n}\n.icon-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.icon-bullseye:before {\n  content: \"\\f140\";\n}\n.icon-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.icon-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.icon-feed-square:before,\n.icon-rss-square:before {\n  content: \"\\f143\";\n}\n.icon-play-circle:before {\n  content: \"\\f144\";\n}\n.icon-ticket:before {\n  content: \"\\f145\";\n}\n.icon-minus-square:before {\n  content: \"\\f146\";\n}\n.icon-minus-square-o:before {\n  content: \"\\f147\";\n}\n.icon-level-up:before {\n  content: \"\\f148\";\n}\n.icon-level-down:before {\n  content: \"\\f149\";\n}\n.icon-check-square:before {\n  content: \"\\f14a\";\n}\n.icon-pencil-square:before {\n  content: \"\\f14b\";\n}\n.icon-external-link-square:before {\n  content: \"\\f14c\";\n}\n.icon-share-square:before {\n  content: \"\\f14d\";\n}\n.icon-compass:before {\n  content: \"\\f14e\";\n}\n.icon-toggle-down:before,\n.icon-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.icon-toggle-up:before,\n.icon-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.icon-toggle-right:before,\n.icon-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.icon-euro:before,\n.icon-eur:before {\n  content: \"\\f153\";\n}\n.icon-gbp:before {\n  content: \"\\f154\";\n}\n.icon-dollar:before,\n.icon-usd:before {\n  content: \"\\f155\";\n}\n.icon-rupee:before,\n.icon-inr:before {\n  content: \"\\f156\";\n}\n.icon-cny:before,\n.icon-rmb:before,\n.icon-yen:before,\n.icon-jpy:before {\n  content: \"\\f157\";\n}\n.icon-ruble:before,\n.icon-rouble:before,\n.icon-rub:before {\n  content: \"\\f158\";\n}\n.icon-won:before,\n.icon-krw:before {\n  content: \"\\f159\";\n}\n.icon-bitcoin:before,\n.icon-btc:before {\n  content: \"\\f15a\";\n}\n.icon-file:before {\n  content: \"\\f15b\";\n}\n.icon-file-text:before {\n  content: \"\\f15c\";\n}\n.icon-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.icon-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.icon-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.icon-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.icon-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.icon-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.icon-thumbs-up:before {\n  content: \"\\f164\";\n}\n.icon-thumbs-down:before {\n  content: \"\\f165\";\n}\n.icon-youtube-square:before {\n  content: \"\\f166\";\n}\n.icon-youtube:before {\n  content: \"\\f167\";\n}\n.icon-xing:before {\n  content: \"\\f168\";\n}\n.icon-xing-square:before {\n  content: \"\\f169\";\n}\n.icon-youtube-play:before {\n  content: \"\\f16a\";\n}\n.icon-dropbox:before {\n  content: \"\\f16b\";\n}\n.icon-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.icon-instagram:before {\n  content: \"\\f16d\";\n}\n.icon-flickr:before {\n  content: \"\\f16e\";\n}\n.icon-adn:before {\n  content: \"\\f170\";\n}\n.icon-bitbucket:before {\n  content: \"\\f171\";\n}\n.icon-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.icon-tumblr:before {\n  content: \"\\f173\";\n}\n.icon-tumblr-square:before {\n  content: \"\\f174\";\n}\n.icon-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.icon-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.icon-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.icon-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.icon-apple:before {\n  content: \"\\f179\";\n}\n.icon-windows:before {\n  content: \"\\f17a\";\n}\n.icon-android:before {\n  content: \"\\f17b\";\n}\n.icon-linux:before {\n  content: \"\\f17c\";\n}\n.icon-dribbble:before {\n  content: \"\\f17d\";\n}\n.icon-skype:before {\n  content: \"\\f17e\";\n}\n.icon-foursquare:before {\n  content: \"\\f180\";\n}\n.icon-trello:before {\n  content: \"\\f181\";\n}\n.icon-female:before {\n  content: \"\\f182\";\n}\n.icon-male:before {\n  content: \"\\f183\";\n}\n.icon-gittip:before {\n  content: \"\\f184\";\n}\n.icon-sun-o:before {\n  content: \"\\f185\";\n}\n.icon-moon-o:before {\n  content: \"\\f186\";\n}\n.icon-archive:before {\n  content: \"\\f187\";\n}\n.icon-bug:before {\n  content: \"\\f188\";\n}\n.icon-vk:before {\n  content: \"\\f189\";\n}\n.icon-weibo:before {\n  content: \"\\f18a\";\n}\n.icon-renren:before {\n  content: \"\\f18b\";\n}\n.icon-pagelines:before {\n  content: \"\\f18c\";\n}\n.icon-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.icon-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.icon-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.icon-toggle-left:before,\n.icon-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.icon-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.icon-wheelchair:before {\n  content: \"\\f193\";\n}\n.icon-vimeo-square:before {\n  content: \"\\f194\";\n}\n.icon-turkish-lira:before,\n.icon-try:before {\n  content: \"\\f195\";\n}\n.icon-plus-square-o:before {\n  content: \"\\f196\";\n}\n.icon-space-shuttle:before {\n  content: \"\\f197\";\n}\n.icon-slack:before {\n  content: \"\\f198\";\n}\n.icon-envelope-square:before {\n  content: \"\\f199\";\n}\n.icon-wordpress:before {\n  content: \"\\f19a\";\n}\n.icon-openid:before {\n  content: \"\\f19b\";\n}\n.icon-institution:before,\n.icon-bank:before,\n.icon-university:before {\n  content: \"\\f19c\";\n}\n.icon-mortar-board:before,\n.icon-graduation-cap:before {\n  content: \"\\f19d\";\n}\n.icon-yahoo:before {\n  content: \"\\f19e\";\n}\n.icon-google:before {\n  content: \"\\f1a0\";\n}\n.icon-reddit:before {\n  content: \"\\f1a1\";\n}\n.icon-reddit-square:before {\n  content: \"\\f1a2\";\n}\n.icon-stumbleupon-circle:before {\n  content: \"\\f1a3\";\n}\n.icon-stumbleupon:before {\n  content: \"\\f1a4\";\n}\n.icon-delicious:before {\n  content: \"\\f1a5\";\n}\n.icon-digg:before {\n  content: \"\\f1a6\";\n}\n.icon-pied-piper:before {\n  content: \"\\f1a7\";\n}\n.icon-pied-piper-alt:before {\n  content: \"\\f1a8\";\n}\n.icon-drupal:before {\n  content: \"\\f1a9\";\n}\n.icon-joomla:before {\n  content: \"\\f1aa\";\n}\n.icon-language:before {\n  content: \"\\f1ab\";\n}\n.icon-fax:before {\n  content: \"\\f1ac\";\n}\n.icon-building:before {\n  content: \"\\f1ad\";\n}\n.icon-child:before {\n  content: \"\\f1ae\";\n}\n.icon-paw:before {\n  content: \"\\f1b0\";\n}\n.icon-spoon:before {\n  content: \"\\f1b1\";\n}\n.icon-cube:before {\n  content: \"\\f1b2\";\n}\n.icon-cubes:before {\n  content: \"\\f1b3\";\n}\n.icon-behance:before {\n  content: \"\\f1b4\";\n}\n.icon-behance-square:before {\n  content: \"\\f1b5\";\n}\n.icon-steam:before {\n  content: \"\\f1b6\";\n}\n.icon-steam-square:before {\n  content: \"\\f1b7\";\n}\n.icon-recycle:before {\n  content: \"\\f1b8\";\n}\n.icon-automobile:before,\n.icon-car:before {\n  content: \"\\f1b9\";\n}\n.icon-cab:before,\n.icon-taxi:before {\n  content: \"\\f1ba\";\n}\n.icon-tree:before {\n  content: \"\\f1bb\";\n}\n.icon-spotify:before {\n  content: \"\\f1bc\";\n}\n.icon-deviantart:before {\n  content: \"\\f1bd\";\n}\n.icon-soundcloud:before {\n  content: \"\\f1be\";\n}\n.icon-database:before {\n  content: \"\\f1c0\";\n}\n.icon-file-pdf-o:before {\n  content: \"\\f1c1\";\n}\n.icon-file-word-o:before {\n  content: \"\\f1c2\";\n}\n.icon-file-excel-o:before {\n  content: \"\\f1c3\";\n}\n.icon-file-powerpoint-o:before {\n  content: \"\\f1c4\";\n}\n.icon-file-photo-o:before,\n.icon-file-picture-o:before,\n.icon-file-image-o:before {\n  content: \"\\f1c5\";\n}\n.icon-file-zip-o:before,\n.icon-file-archive-o:before {\n  content: \"\\f1c6\";\n}\n.icon-file-sound-o:before,\n.icon-file-audio-o:before {\n  content: \"\\f1c7\";\n}\n.icon-file-movie-o:before,\n.icon-file-video-o:before {\n  content: \"\\f1c8\";\n}\n.icon-file-code-o:before {\n  content: \"\\f1c9\";\n}\n.icon-vine:before {\n  content: \"\\f1ca\";\n}\n.icon-codepen:before {\n  content: \"\\f1cb\";\n}\n.icon-jsfiddle:before {\n  content: \"\\f1cc\";\n}\n.icon-life-bouy:before,\n.icon-life-buoy:before,\n.icon-life-saver:before,\n.icon-support:before,\n.icon-life-ring:before {\n  content: \"\\f1cd\";\n}\n.icon-circle-o-notch:before {\n  content: \"\\f1ce\";\n}\n.icon-ra:before,\n.icon-rebel:before {\n  content: \"\\f1d0\";\n}\n.icon-ge:before,\n.icon-empire:before {\n  content: \"\\f1d1\";\n}\n.icon-git-square:before {\n  content: \"\\f1d2\";\n}\n.icon-git:before {\n  content: \"\\f1d3\";\n}\n.icon-hacker-news:before {\n  content: \"\\f1d4\";\n}\n.icon-tencent-weibo:before {\n  content: \"\\f1d5\";\n}\n.icon-qq:before {\n  content: \"\\f1d6\";\n}\n.icon-wechat:before,\n.icon-weixin:before {\n  content: \"\\f1d7\";\n}\n.icon-send:before,\n.icon-paper-plane:before {\n  content: \"\\f1d8\";\n}\n.icon-send-o:before,\n.icon-paper-plane-o:before {\n  content: \"\\f1d9\";\n}\n.icon-history:before {\n  content: \"\\f1da\";\n}\n.icon-circle-thin:before {\n  content: \"\\f1db\";\n}\n.icon-header:before {\n  content: \"\\f1dc\";\n}\n.icon-paragraph:before {\n  content: \"\\f1dd\";\n}\n.icon-sliders:before {\n  content: \"\\f1de\";\n}\n.icon-share-alt:before {\n  content: \"\\f1e0\";\n}\n.icon-share-alt-square:before {\n  content: \"\\f1e1\";\n}\n.icon-bomb:before {\n  content: \"\\f1e2\";\n}\n.icon-soccer-ball-o:before,\n.icon-futbol-o:before {\n  content: \"\\f1e3\";\n}\n.icon-tty:before {\n  content: \"\\f1e4\";\n}\n.icon-binoculars:before {\n  content: \"\\f1e5\";\n}\n.icon-plug:before {\n  content: \"\\f1e6\";\n}\n.icon-slideshare:before {\n  content: \"\\f1e7\";\n}\n.icon-twitch:before {\n  content: \"\\f1e8\";\n}\n.icon-yelp:before {\n  content: \"\\f1e9\";\n}\n.icon-newspaper-o:before {\n  content: \"\\f1ea\";\n}\n.icon-wifi:before {\n  content: \"\\f1eb\";\n}\n.icon-calculator:before {\n  content: \"\\f1ec\";\n}\n.icon-paypal:before {\n  content: \"\\f1ed\";\n}\n.icon-google-wallet:before {\n  content: \"\\f1ee\";\n}\n.icon-cc-visa:before {\n  content: \"\\f1f0\";\n}\n.icon-cc-mastercard:before {\n  content: \"\\f1f1\";\n}\n.icon-cc-discover:before {\n  content: \"\\f1f2\";\n}\n.icon-cc-amex:before {\n  content: \"\\f1f3\";\n}\n.icon-cc-paypal:before {\n  content: \"\\f1f4\";\n}\n.icon-cc-stripe:before {\n  content: \"\\f1f5\";\n}\n.icon-bell-slash:before {\n  content: \"\\f1f6\";\n}\n.icon-bell-slash-o:before {\n  content: \"\\f1f7\";\n}\n.icon-trash:before {\n  content: \"\\f1f8\";\n}\n.icon-copyright:before {\n  content: \"\\f1f9\";\n}\n.icon-at:before {\n  content: \"\\f1fa\";\n}\n.icon-eyedropper:before {\n  content: \"\\f1fb\";\n}\n.icon-paint-brush:before {\n  content: \"\\f1fc\";\n}\n.icon-birthday-cake:before {\n  content: \"\\f1fd\";\n}\n.icon-area-chart:before {\n  content: \"\\f1fe\";\n}\n.icon-pie-chart:before {\n  content: \"\\f200\";\n}\n.icon-line-chart:before {\n  content: \"\\f201\";\n}\n.icon-lastfm:before {\n  content: \"\\f202\";\n}\n.icon-lastfm-square:before {\n  content: \"\\f203\";\n}\n.icon-toggle-off:before {\n  content: \"\\f204\";\n}\n.icon-toggle-on:before {\n  content: \"\\f205\";\n}\n.icon-bicycle:before {\n  content: \"\\f206\";\n}\n.icon-bus:before {\n  content: \"\\f207\";\n}\n.icon-ioxhost:before {\n  content: \"\\f208\";\n}\n.icon-angellist:before {\n  content: \"\\f209\";\n}\n.icon-cc:before {\n  content: \"\\f20a\";\n}\n.icon-shekel:before,\n.icon-sheqel:before,\n.icon-ils:before {\n  content: \"\\f20b\";\n}\n.icon-meanpath:before {\n  content: \"\\f20c\";\n}\n.icon-glass:before,\n.icon-music:before,\n.icon-search:before,\n.icon-envelope-o:before,\n.icon-heart:before,\n.icon-star:before,\n.icon-star-o:before,\n.icon-user:before,\n.icon-film:before,\n.icon-th-large:before,\n.icon-th:before,\n.icon-th-list:before,\n.icon-check:before,\n.icon-remove:before,\n.icon-close:before,\n.icon-times:before,\n.icon-search-plus:before,\n.icon-search-minus:before,\n.icon-power-off:before,\n.icon-signal:before,\n.icon-gear:before,\n.icon-cog:before,\n.icon-trash-o:before,\n.icon-home:before,\n.icon-file-o:before,\n.icon-clock-o:before,\n.icon-road:before,\n.icon-download:before,\n.icon-arrow-circle-o-down:before,\n.icon-arrow-circle-o-up:before,\n.icon-inbox:before,\n.icon-play-circle-o:before,\n.icon-rotate-right:before,\n.icon-repeat:before,\n.icon-refresh:before,\n.icon-list-alt:before,\n.icon-lock:before,\n.icon-flag:before,\n.icon-headphones:before,\n.icon-volume-off:before,\n.icon-volume-down:before,\n.icon-volume-up:before,\n.icon-qrcode:before,\n.icon-barcode:before,\n.icon-tag:before,\n.icon-tags:before,\n.icon-book:before,\n.icon-bookmark:before,\n.icon-print:before,\n.icon-camera:before,\n.icon-font:before,\n.icon-bold:before,\n.icon-italic:before,\n.icon-text-height:before,\n.icon-text-width:before,\n.icon-align-left:before,\n.icon-align-center:before,\n.icon-align-right:before,\n.icon-align-justify:before,\n.icon-list:before,\n.icon-dedent:before,\n.icon-outdent:before,\n.icon-indent:before,\n.icon-video-camera:before,\n.icon-photo:before,\n.icon-image:before,\n.icon-picture-o:before,\n.icon-pencil:before,\n.icon-map-marker:before,\n.icon-adjust:before,\n.icon-tint:before,\n.icon-edit:before,\n.icon-pencil-square-o:before,\n.icon-share-square-o:before,\n.icon-check-square-o:before,\n.icon-arrows:before,\n.icon-step-backward:before,\n.icon-fast-backward:before,\n.icon-backward:before,\n.icon-play:before,\n.icon-pause:before,\n.icon-stop:before,\n.icon-forward:before,\n.icon-fast-forward:before,\n.icon-step-forward:before,\n.icon-eject:before,\n.icon-chevron-left:before,\n.icon-chevron-right:before,\n.icon-plus-circle:before,\n.icon-minus-circle:before,\n.icon-times-circle:before,\n.icon-check-circle:before,\n.icon-question-circle:before,\n.icon-info-circle:before,\n.icon-crosshairs:before,\n.icon-times-circle-o:before,\n.icon-check-circle-o:before,\n.icon-ban:before,\n.icon-arrow-left:before,\n.icon-arrow-right:before,\n.icon-arrow-up:before,\n.icon-arrow-down:before,\n.icon-mail-forward:before,\n.icon-share:before,\n.icon-expand:before,\n.icon-compress:before,\n.icon-plus:before,\n.icon-minus:before,\n.icon-asterisk:before,\n.icon-exclamation-circle:before,\n.icon-gift:before,\n.icon-leaf:before,\n.icon-fire:before,\n.icon-eye:before,\n.icon-eye-slash:before,\n.icon-warning:before,\n.icon-exclamation-triangle:before,\n.icon-plane:before,\n.icon-calendar:before,\n.icon-random:before,\n.icon-comment:before,\n.icon-magnet:before,\n.icon-chevron-up:before,\n.icon-chevron-down:before,\n.icon-retweet:before,\n.icon-shopping-cart:before,\n.icon-folder:before,\n.icon-folder-open:before,\n.icon-arrows-v:before,\n.icon-arrows-h:before,\n.icon-bar-chart-o:before,\n.icon-bar-chart:before,\n.icon-twitter-square:before,\n.icon-facebook-square:before,\n.icon-camera-retro:before,\n.icon-key:before,\n.icon-gears:before,\n.icon-cogs:before,\n.icon-comments:before,\n.icon-thumbs-o-up:before,\n.icon-thumbs-o-down:before,\n.icon-star-half:before,\n.icon-heart-o:before,\n.icon-sign-out:before,\n.icon-linkedin-square:before,\n.icon-thumb-tack:before,\n.icon-external-link:before,\n.icon-sign-in:before,\n.icon-trophy:before,\n.icon-github-square:before,\n.icon-upload:before,\n.icon-lemon-o:before,\n.icon-phone:before,\n.icon-square-o:before,\n.icon-bookmark-o:before,\n.icon-phone-square:before,\n.icon-twitter:before,\n.icon-facebook:before,\n.icon-github:before,\n.icon-unlock:before,\n.icon-credit-card:before,\n.icon-feed:before,\n.icon-rss:before,\n.icon-hdd-o:before,\n.icon-bullhorn:before,\n.icon-bell:before,\n.icon-certificate:before,\n.icon-hand-o-right:before,\n.icon-hand-o-left:before,\n.icon-hand-o-up:before,\n.icon-hand-o-down:before,\n.icon-arrow-circle-left:before,\n.icon-arrow-circle-right:before,\n.icon-arrow-circle-up:before,\n.icon-arrow-circle-down:before,\n.icon-globe:before,\n.icon-wrench:before,\n.icon-tasks:before,\n.icon-filter:before,\n.icon-briefcase:before,\n.icon-arrows-alt:before,\n.icon-group:before,\n.icon-users:before,\n.icon-chain:before,\n.icon-link:before,\n.icon-cloud:before,\n.icon-flask:before,\n.icon-cut:before,\n.icon-scissors:before,\n.icon-copy:before,\n.icon-files-o:before,\n.icon-paperclip:before,\n.icon-save:before,\n.icon-floppy-o:before,\n.icon-square:before,\n.icon-navicon:before,\n.icon-reorder:before,\n.icon-bars:before,\n.icon-list-ul:before,\n.icon-list-ol:before,\n.icon-strikethrough:before,\n.icon-underline:before,\n.icon-table:before,\n.icon-magic:before,\n.icon-truck:before,\n.icon-pinterest:before,\n.icon-pinterest-square:before,\n.icon-google-plus-square:before,\n.icon-google-plus:before,\n.icon-money:before,\n.icon-caret-down:before,\n.icon-caret-up:before,\n.icon-caret-left:before,\n.icon-caret-right:before,\n.icon-columns:before,\n.icon-unsorted:before,\n.icon-sort:before,\n.icon-sort-down:before,\n.icon-sort-desc:before,\n.icon-sort-up:before,\n.icon-sort-asc:before,\n.icon-envelope:before,\n.icon-linkedin:before,\n.icon-rotate-left:before,\n.icon-undo:before,\n.icon-legal:before,\n.icon-gavel:before,\n.icon-dashboard:before,\n.icon-tachometer:before,\n.icon-comment-o:before,\n.icon-comments-o:before,\n.icon-flash:before,\n.icon-bolt:before,\n.icon-sitemap:before,\n.icon-umbrella:before,\n.icon-paste:before,\n.icon-clipboard:before,\n.icon-lightbulb-o:before,\n.icon-exchange:before,\n.icon-cloud-download:before,\n.icon-cloud-upload:before,\n.icon-user-md:before,\n.icon-stethoscope:before,\n.icon-suitcase:before,\n.icon-bell-o:before,\n.icon-coffee:before,\n.icon-cutlery:before,\n.icon-file-text-o:before,\n.icon-building-o:before,\n.icon-hospital-o:before,\n.icon-ambulance:before,\n.icon-medkit:before,\n.icon-fighter-jet:before,\n.icon-beer:before,\n.icon-h-square:before,\n.icon-plus-square:before,\n.icon-angle-double-left:before,\n.icon-angle-double-right:before,\n.icon-angle-double-up:before,\n.icon-angle-double-down:before,\n.icon-angle-left:before,\n.icon-angle-right:before,\n.icon-angle-up:before,\n.icon-angle-down:before,\n.icon-desktop:before,\n.icon-laptop:before,\n.icon-tablet:before,\n.icon-mobile-phone:before,\n.icon-mobile:before,\n.icon-circle-o:before,\n.icon-quote-left:before,\n.icon-quote-right:before,\n.icon-spinner:before,\n.icon-circle:before,\n.icon-mail-reply:before,\n.icon-reply:before,\n.icon-github-alt:before,\n.icon-folder-o:before,\n.icon-folder-open-o:before,\n.icon-smile-o:before,\n.icon-frown-o:before,\n.icon-meh-o:before,\n.icon-gamepad:before,\n.icon-keyboard-o:before,\n.icon-flag-o:before,\n.icon-flag-checkered:before,\n.icon-terminal:before,\n.icon-code:before,\n.icon-mail-reply-all:before,\n.icon-reply-all:before,\n.icon-star-half-empty:before,\n.icon-star-half-full:before,\n.icon-star-half-o:before,\n.icon-location-arrow:before,\n.icon-crop:before,\n.icon-code-fork:before,\n.icon-unlink:before,\n.icon-chain-broken:before,\n.icon-question:before,\n.icon-info:before,\n.icon-exclamation:before,\n.icon-superscript:before,\n.icon-subscript:before,\n.icon-eraser:before,\n.icon-puzzle-piece:before,\n.icon-microphone:before,\n.icon-microphone-slash:before,\n.icon-shield:before,\n.icon-calendar-o:before,\n.icon-fire-extinguisher:before,\n.icon-rocket:before,\n.icon-maxcdn:before,\n.icon-chevron-circle-left:before,\n.icon-chevron-circle-right:before,\n.icon-chevron-circle-up:before,\n.icon-chevron-circle-down:before,\n.icon-html5:before,\n.icon-css3:before,\n.icon-anchor:before,\n.icon-unlock-alt:before,\n.icon-bullseye:before,\n.icon-ellipsis-h:before,\n.icon-ellipsis-v:before,\n.icon-feed-square:before,\n.icon-rss-square:before,\n.icon-play-circle:before,\n.icon-ticket:before,\n.icon-minus-square:before,\n.icon-minus-square-o:before,\n.icon-level-up:before,\n.icon-level-down:before,\n.icon-check-square:before,\n.icon-pencil-square:before,\n.icon-external-link-square:before,\n.icon-share-square:before,\n.icon-compass:before,\n.icon-toggle-down:before,\n.icon-caret-square-o-down:before,\n.icon-toggle-up:before,\n.icon-caret-square-o-up:before,\n.icon-toggle-right:before,\n.icon-caret-square-o-right:before,\n.icon-euro:before,\n.icon-eur:before,\n.icon-gbp:before,\n.icon-dollar:before,\n.icon-usd:before,\n.icon-rupee:before,\n.icon-inr:before,\n.icon-cny:before,\n.icon-rmb:before,\n.icon-yen:before,\n.icon-jpy:before,\n.icon-ruble:before,\n.icon-rouble:before,\n.icon-rub:before,\n.icon-won:before,\n.icon-krw:before,\n.icon-bitcoin:before,\n.icon-btc:before,\n.icon-file:before,\n.icon-file-text:before,\n.icon-sort-alpha-asc:before,\n.icon-sort-alpha-desc:before,\n.icon-sort-amount-asc:before,\n.icon-sort-amount-desc:before,\n.icon-sort-numeric-asc:before,\n.icon-sort-numeric-desc:before,\n.icon-thumbs-up:before,\n.icon-thumbs-down:before,\n.icon-youtube-square:before,\n.icon-youtube:before,\n.icon-xing:before,\n.icon-xing-square:before,\n.icon-youtube-play:before,\n.icon-dropbox:before,\n.icon-stack-overflow:before,\n.icon-instagram:before,\n.icon-flickr:before,\n.icon-adn:before,\n.icon-bitbucket:before,\n.icon-bitbucket-square:before,\n.icon-tumblr:before,\n.icon-tumblr-square:before,\n.icon-long-arrow-down:before,\n.icon-long-arrow-up:before,\n.icon-long-arrow-left:before,\n.icon-long-arrow-right:before,\n.icon-apple:before,\n.icon-windows:before,\n.icon-android:before,\n.icon-linux:before,\n.icon-dribbble:before,\n.icon-skype:before,\n.icon-foursquare:before,\n.icon-trello:before,\n.icon-female:before,\n.icon-male:before,\n.icon-gittip:before,\n.icon-sun-o:before,\n.icon-moon-o:before,\n.icon-archive:before,\n.icon-bug:before,\n.icon-vk:before,\n.icon-weibo:before,\n.icon-renren:before,\n.icon-pagelines:before,\n.icon-stack-exchange:before,\n.icon-arrow-circle-o-right:before,\n.icon-arrow-circle-o-left:before,\n.icon-toggle-left:before,\n.icon-caret-square-o-left:before,\n.icon-dot-circle-o:before,\n.icon-wheelchair:before,\n.icon-vimeo-square:before,\n.icon-turkish-lira:before,\n.icon-try:before,\n.icon-plus-square-o:before,\n.icon-space-shuttle:before,\n.icon-slack:before,\n.icon-envelope-square:before,\n.icon-wordpress:before,\n.icon-openid:before,\n.icon-institution:before,\n.icon-bank:before,\n.icon-university:before,\n.icon-mortar-board:before,\n.icon-graduation-cap:before,\n.icon-yahoo:before,\n.icon-google:before,\n.icon-reddit:before,\n.icon-reddit-square:before,\n.icon-stumbleupon-circle:before,\n.icon-stumbleupon:before,\n.icon-delicious:before,\n.icon-digg:before,\n.icon-pied-piper:before,\n.icon-pied-piper-alt:before,\n.icon-drupal:before,\n.icon-joomla:before,\n.icon-language:before,\n.icon-fax:before,\n.icon-building:before,\n.icon-child:before,\n.icon-paw:before,\n.icon-spoon:before,\n.icon-cube:before,\n.icon-cubes:before,\n.icon-behance:before,\n.icon-behance-square:before,\n.icon-steam:before,\n.icon-steam-square:before,\n.icon-recycle:before,\n.icon-automobile:before,\n.icon-car:before,\n.icon-cab:before,\n.icon-taxi:before,\n.icon-tree:before,\n.icon-spotify:before,\n.icon-deviantart:before,\n.icon-soundcloud:before,\n.icon-database:before,\n.icon-file-pdf-o:before,\n.icon-file-word-o:before,\n.icon-file-excel-o:before,\n.icon-file-powerpoint-o:before,\n.icon-file-photo-o:before,\n.icon-file-picture-o:before,\n.icon-file-image-o:before,\n.icon-file-zip-o:before,\n.icon-file-archive-o:before,\n.icon-file-sound-o:before,\n.icon-file-audio-o:before,\n.icon-file-movie-o:before,\n.icon-file-video-o:before,\n.icon-file-code-o:before,\n.icon-vine:before,\n.icon-codepen:before,\n.icon-jsfiddle:before,\n.icon-life-bouy:before,\n.icon-life-buoy:before,\n.icon-life-saver:before,\n.icon-support:before,\n.icon-life-ring:before,\n.icon-circle-o-notch:before,\n.icon-ra:before,\n.icon-rebel:before,\n.icon-ge:before,\n.icon-empire:before,\n.icon-git-square:before,\n.icon-git:before,\n.icon-hacker-news:before,\n.icon-tencent-weibo:before,\n.icon-qq:before,\n.icon-wechat:before,\n.icon-weixin:before,\n.icon-send:before,\n.icon-paper-plane:before,\n.icon-send-o:before,\n.icon-paper-plane-o:before,\n.icon-history:before,\n.icon-circle-thin:before,\n.icon-header:before,\n.icon-paragraph:before,\n.icon-sliders:before,\n.icon-share-alt:before,\n.icon-share-alt-square:before,\n.icon-bomb:before,\n.icon-soccer-ball-o:before,\n.icon-futbol-o:before,\n.icon-tty:before,\n.icon-binoculars:before,\n.icon-plug:before,\n.icon-slideshare:before,\n.icon-twitch:before,\n.icon-yelp:before,\n.icon-newspaper-o:before,\n.icon-wifi:before,\n.icon-calculator:before,\n.icon-paypal:before,\n.icon-google-wallet:before,\n.icon-cc-visa:before,\n.icon-cc-mastercard:before,\n.icon-cc-discover:before,\n.icon-cc-amex:before,\n.icon-cc-paypal:before,\n.icon-cc-stripe:before,\n.icon-bell-slash:before,\n.icon-bell-slash-o:before,\n.icon-trash:before,\n.icon-copyright:before,\n.icon-at:before,\n.icon-eyedropper:before,\n.icon-paint-brush:before,\n.icon-birthday-cake:before,\n.icon-area-chart:before,\n.icon-pie-chart:before,\n.icon-line-chart:before,\n.icon-lastfm:before,\n.icon-lastfm-square:before,\n.icon-toggle-off:before,\n.icon-toggle-on:before,\n.icon-bicycle:before,\n.icon-bus:before,\n.icon-ioxhost:before,\n.icon-angellist:before,\n.icon-cc:before,\n.icon-shekel:before,\n.icon-sheqel:before,\n.icon-ils:before,\n.icon-meanpath:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 icons;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n"
  },
  {
    "path": "src/less/normalize.css",
    "content": "/*! normalize.css v2.1.3 | MIT License | git.io/normalize */\n\n/* ==========================================================================\n   HTML5 display definitions\n   ========================================================================== */\n\n/**\n * Correct `block` display not defined in IE 8/9.\n */\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary {\n    display: block;\n}\n\n/**\n * Correct `inline-block` display not defined in IE 8/9.\n */\n\naudio,\ncanvas,\nvideo {\n    display: inline-block;\n}\n\n/**\n * Prevent modern browsers from displaying `audio` without controls.\n * Remove excess height in iOS 5 devices.\n */\n\naudio:not([controls]) {\n    display: none;\n    height: 0;\n}\n\n/**\n * Address `[hidden]` styling not present in IE 8/9.\n * Hide the `template` element in IE, Safari, and Firefox < 22.\n */\n\n[hidden],\ntemplate {\n    display: none;\n}\n\n/* ==========================================================================\n   Base\n   ========================================================================== */\n\n/**\n * 1. Set default font family to sans-serif.\n * 2. Prevent iOS text size adjust after orientation change, without disabling\n *    user zoom.\n */\n\nhtml {\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\nbody {\n    margin: 0;\n}\n\n/* ==========================================================================\n   Links\n   ========================================================================== */\n\n/**\n * Remove the gray background color from active links in IE 10.\n */\n\na {\n    background: transparent;\n}\n\n/**\n * Address `outline` inconsistency between Chrome and other browsers.\n */\n\na:focus {\n    outline: thin dotted;\n}\n\n/**\n * Improve readability when focused and also mouse hovered in all browsers.\n */\n\na:active,\na:hover {\n    outline: 0;\n}\n\n/* ==========================================================================\n   Typography\n   ========================================================================== */\n\n/**\n * Address variable `h1` font-size and margin within `section` and `article`\n * contexts in Firefox 4+, Safari 5, and Chrome.\n */\n\nh1 {\n    font-size: 2em;\n    margin: 0.67em 0;\n}\n\n/**\n * Address styling not present in IE 8/9, Safari 5, and Chrome.\n */\n\nabbr[title] {\n    border-bottom: 1px dotted;\n}\n\n/**\n * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n */\n\nb,\nstrong {\n    font-weight: bold;\n}\n\n/**\n * Address styling not present in Safari 5 and Chrome.\n */\n\ndfn {\n    font-style: italic;\n}\n\n/**\n * Address differences between Firefox and other browsers.\n */\n\nhr {\n    -moz-box-sizing: content-box;\n    box-sizing: content-box;\n    height: 0;\n}\n\n/**\n * Address styling not present in IE 8/9.\n */\n\nmark {\n    background: #ff0;\n    color: #000;\n}\n\n/**\n * Correct font family set oddly in Safari 5 and Chrome.\n */\n\ncode,\nkbd,\npre,\nsamp {\n    font-family: monospace, serif;\n    font-size: 1em;\n}\n\n/**\n * Improve readability of pre-formatted text in all browsers.\n */\n\npre {\n    white-space: pre-wrap;\n}\n\n/**\n * Set consistent quote types.\n */\n\nq {\n    quotes: \"\\201C\" \"\\201D\" \"\\2018\" \"\\2019\";\n}\n\n/**\n * Address inconsistent and variable font size in all browsers.\n */\n\nsmall {\n    font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` affecting `line-height` in all browsers.\n */\n\nsub,\nsup {\n    font-size: 75%;\n    line-height: 0;\n    position: relative;\n    vertical-align: baseline;\n}\n\nsup {\n    top: -0.5em;\n}\n\nsub {\n    bottom: -0.25em;\n}\n\n/* ==========================================================================\n   Embedded content\n   ========================================================================== */\n\n/**\n * Remove border when inside `a` element in IE 8/9.\n */\n\nimg {\n    border: 0;\n}\n\n/**\n * Correct overflow displayed oddly in IE 9.\n */\n\nsvg:not(:root) {\n    overflow: hidden;\n}\n\n/* ==========================================================================\n   Figures\n   ========================================================================== */\n\n/**\n * Address margin not present in IE 8/9 and Safari 5.\n */\n\nfigure {\n    margin: 0;\n}\n\n/* ==========================================================================\n   Forms\n   ========================================================================== */\n\n/**\n * Define consistent border, margin, and padding.\n */\n\nfieldset {\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.\n * 2. Remove padding so people aren't caught out if they zero out fieldsets.\n */\n\nlegend {\n    border: 0; /* 1 */\n    padding: 0; /* 2 */\n}\n\n/**\n * 1. Correct font family not being inherited in all browsers.\n * 2. Correct font size not being inherited in all browsers.\n * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n */\n\nbutton,\ninput,\nselect,\ntextarea {\n    font-family: inherit; /* 1 */\n    font-size: 100%; /* 2 */\n    margin: 0; /* 3 */\n}\n\n/**\n * Address Firefox 4+ setting `line-height` on `input` using `!important` in\n * the UA stylesheet.\n */\n\nbutton,\ninput {\n    line-height: normal;\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 Chrome, Safari 5+, and IE 8+.\n * Correct `select` style inheritance in Firefox 4+ and Opera.\n */\n\nbutton,\nselect {\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\nbutton,\nhtml input[type=\"button\"], /* 1 */\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n    -webkit-appearance: button; /* 2 */\n    cursor: pointer; /* 3 */\n}\n\n/**\n * Re-set default cursor for disabled elements.\n */\n\nbutton[disabled],\nhtml input[disabled] {\n    cursor: default;\n}\n\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\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n    box-sizing: border-box; /* 1 */\n    padding: 0; /* 2 */\n}\n\n/**\n * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n *    (include `-moz` to future-proof).\n */\n\ninput[type=\"search\"] {\n    -webkit-appearance: textfield; /* 1 */\n    -moz-box-sizing: content-box;\n    -webkit-box-sizing: content-box; /* 2 */\n    box-sizing: content-box;\n}\n\n/**\n * Remove inner padding and search cancel button in Safari 5 and Chrome\n * on OS X.\n */\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n    -webkit-appearance: none;\n}\n\n/**\n * Remove inner padding and border in Firefox 4+.\n */\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n    border: 0;\n    padding: 0;\n}\n\n/**\n * 1. Remove default vertical scrollbar in IE 8/9.\n * 2. Improve readability and alignment in all browsers.\n */\n\ntextarea {\n    overflow: auto; /* 1 */\n    vertical-align: top; /* 2 */\n}\n\n/* ==========================================================================\n   Tables\n   ========================================================================== */\n\n/**\n * Remove most spacing between table cells.\n */\n\ntable {\n    border-collapse: collapse;\n    border-spacing: 0;\n}"
  },
  {
    "path": "src/less/rtl.less",
    "content": "/* ==========================================================================\n   Table of Contents\n   ========================================================================== */\n\n/*\n\n    1.  fonts\n    2.  General\n    3.  Utilities\n    4.  General\n    5.  Single Post\n    6.  Third Party Elements\n    7.  Pagination\n    8.  Footer\n    9.  Media Queries (Tablet)\n    10. Media Queries (Mobile)\n\n*/\n\n\n\n/* ==========================================================================\n   1. fonts\n   ========================================================================== */\n\n\n@font-face {\n    font-family: 'GESSTwoMedium';\n    src: url('fonts/ge-ss-med.eot');\n    src: url('fonts/ge-ss-med.eot') format('embedded-opentype'),\n         url('fonts/ge-ss-med.woff') format('woff'),\n         url('fonts/ge-ss-med.ttf') format('truetype'),\n         url('fonts/ge-ss-med.svg#GESSTwoMedium') format('svg');\n}\n\n\n/* ==========================================================================\n   2. General - Setting up some base styles\n   ========================================================================== */\n\nhtml {\n    direction: rtl;\n}\n\nbody {\n    font-family: 'Segoe UI',tahoma,sans-serif;\n    font-size: 2.0rem;\n    line-height: 1.6em;\n} \n\n\nh1, h2, h3,\nh4, h5, h6 {\n    font-family: 'GESSTwoMedium', sans-serif;\n}\n\nh1 {\n    letter-spacing: 0px;\n    text-indent: 0px;\n}\n\nh2 {\n    letter-spacing: 0px;\n    text-indent: 0px;\n}\n\ndl dt {\n    float: right;\n    clear: right;\n    text-align: left;\n}\n\ndl dd {\n    margin-left: 0;\n    margin-right: 200px;\n}\n\n\nblockquote {\n    margin: 1.6em -2.2em 1.6em 0;\n    padding: 0 1.6em 0 0;\n    border-right: #4a4a4a 0.4em solid;\n    border-left: 0;\n}\n\n\nblockquote small {\n    margin: 0.8em 1.5em 0.8em 0;\n}\n\n\ntable th,\ntable td {\n    text-align: right;\n}\n\n\n/* ==========================================================================\n   WP styles\n   ========================================================================== */\n\n/*--------------------------------------------------------------\n3.0 Elements\n--------------------------------------------------------------*/\n\nul, ol {\n    margin: 0 3em 1.5em 0;\n}\n\nli > ul,\nli > ol {\n    margin-bottom: 0;\n    margin-left: 0;\n    margin-right: 1.5em;\n}\n\n\n/*--------------------------------------------------------------\n4.0 Forms\n--------------------------------------------------------------*/\n\ntextarea {\n    padding-right: 0;\n    padding-left: 3px;\n    width: 98%;\n}\n\n/*--------------------------------------------------------------\n5.0 Navigation\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n5.2 Menus\n--------------------------------------------------------------*/\n.main-navigation {\n    font-family: 'GESSTwoMedium',tahoma,sans-serif;\n}\n\n.main-navigation ul {\n    float: left;\n}\n.main-navigation li {\n    float: right;\n}\n\n.main-navigation ul ul {\n    left: auto;\n    right: 0;\n}\n\n.main-navigation ul ul ul {\n    left: auto;\n    right: 100%;\n    top: 0;\n}\n\n/* Small menu */\n.menu-toggle {\n    right: auto;\n    left: 0;\n}\n\n\n.comment-navigation .nav-previous,\n.paging-navigation .nav-previous,\n.post-navigation .nav-previous {\n    float: right;\n    width: 50%;\n}\n.comment-navigation .nav-next,\n.paging-navigation .nav-next,\n.post-navigation .nav-next {\n    float: left;\n    text-align: right;\n    width: 50%;\n}\n\n\n/*--------------------------------------------------------------\n6.0 Accessibility\n--------------------------------------------------------------*/\n\n.screen-reader-text:hover,\n.screen-reader-text:active,\n.screen-reader-text:focus {\n    left: auto;\n    right: 5px;\n}\n\n/*--------------------------------------------------------------\n7.0 Alignments\n--------------------------------------------------------------*/\n.alignleft {\n    display: inline;\n    float: left;\n    margin-right: 1.5em;\n}\n.alignright {\n    display: inline;\n    float: right;\n    margin-left: 1.5em;\n}\n.aligncenter {\n    clear: both;\n    display: block;\n    margin: 0 auto;\n}\n\n/*--------------------------------------------------------------\n8.0 Clearings\n--------------------------------------------------------------*/\n\n\n/*--------------------------------------------------------------\n9.0 Widgets\n--------------------------------------------------------------*/\n\n\n/*--------------------------------------------------------------\n10.0 Content\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.1 Posts and pages\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n10.2 Asides\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n10.3 Comments\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n11.0 Infinite scroll\n--------------------------------------------------------------*/\n\n/* ==========================================================================\n   4. General - The main styles for the the theme\n   ========================================================================== */\n\n\n/* The details of your blog. Defined in ghost/settings/ */\n.blog-title  , .blog-description{\n    letter-spacing: 0px;\n    font-family: 'GESSTwoMedium',tahoma,sans-serif;\n}\n\n.post-meta {\n    font-family: 'GESSTwoMedium',tahoma,sans-serif;\n    word-break: initial;\n}\n\n\n.user-meta {\n    padding: 0.3rem 100px 0 40px;\n}\n\n.user-image {\n    left: auto;\n    right: 0;\n}\n\n.publish-meta {\n    right: auto;\n    left: 0;\n    text-align: left;\n}\n\n\n/* ==========================================================================\n   5. Single Post - When you click on an individual post\n   ========================================================================== */\n\n/* Create some space to the right for the share links */\n.post-footer .author {\n    margin-right: 0;\n    margin-left: 180px;\n}\n\n/* Drop the share links in the space to the right.\n   Doing it like this means it's easier for the author bio\n   to be flexible at smaller screen sizes while the share\n   links remain at a fixed width the whole time */\n.post-footer .share {\n    right: auto;\n    left: 0;\n}\n\n.post-footer .share a {\n    margin: 1.4rem 1.6rem 1.6rem 0;\n}\n\n\n/* ==========================================================================\n   6. Third Party Elements - Embeds from other services\n   ========================================================================== */\n\n/* Github */\n\n.form-allowed-tags {\n    float: left;\n    font-family: 'Segoe UI',tahoma,sans-serif;\n}\n\n.form-submit #submit{\n    float: right;\n    font-family: 'GESSTwoMedium',tahoma,sans-serif;\n}\n\n/* Main widget wrapper */\n.widget-area {\n    font-family: 'Segoe UI',tahoma,sans-serif;\n}\n\n.widget-area aside {\n    float: right;\n}\n\n#main > header.page-header {\n    font-family: 'Segoe UI',tahoma,sans-serif;\n}\n\n\n\n/* ==========================================================================\n   7. Pagination - Tools to let you flick between pages\n   ========================================================================== */\n\n/* The main wrapper for our pagination links */\n.pagination {\n    font-family: 'Segoe UI',tahoma,sans-serif;\n}\n\n.older-posts {\n    right: auto;\n    left: 0;\n}\n\n.newer-posts {\n    left: auto;\n    right:0 ;\n}\n\n\n/* ==========================================================================\n   8. Footer - The bottom of every page\n   ========================================================================== */\n\n.site-footer {\n    font-family: 'Segoe UI',tahoma,sans-serif;\n}\n\n\n\n/* ==========================================================================\n   9. Media Queries - Smaller than 900px\n   ========================================================================== */\n\n@media only screen and (max-width: 900px) {\n\n    blockquote {\n        margin-right: 0;\n    }\n    .blog-title {\n        letter-spacing: 0px;\n    }\n\n\n    h1 {\n        text-indent: 0;\n    }\n\n}\n\n/* ==========================================================================\n   10. Media Queries - Smaller than 500px\n   ========================================================================== */\n\n\n@media only screen and (max-width: 500px) {\n\n    h1, h2 {\n        letter-spacing: 0px;\n    }\n\n}\n\n/* ==========================================================================\n   End of file. Media queries should be the last thing here. Do not add stuff\n   below this point, or it will probably fuck everything up.\n   ========================================================================== */"
  },
  {
    "path": "src/less/style.less",
    "content": "/*\n  Theme Name:       Casper\n  Theme URI:        https://github.com/lacymorrow/casper\n  Author:           Lacy Morrow\n  Author URI:       http://lacymorrow.com\n  Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n  Version:          1.1.5\n  License:          GNU General Public License v2.0\n  License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n  Text Domain:      casper\n  Domain Path:      /languages/\n  Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n  GitHub Theme URI: https://github.com/lacymorrow/casper\n  GitHub Branch:    master\n  Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n*/\n\n\n/* ==========================================================================\n   Table of Contents\n   ========================================================================== */\n\n/*\n\n    0.  Includes\n    1.  Icons\n    2.  General\n    3.  Utilities\n    4.  General\n    5.  Single Post\n    6.  Third Party Elements\n    7.  Pagination\n    8.  Footer\n    9.  Media Queries (Tablet)\n    10. Media Queries (Mobile)\n\n*/\n\n/* ==========================================================================\n   0. Includes - Ground zero\n   ========================================================================== */\n\n// @import url(css/normalize.css);\n@import (less) \"normalize.css\";\n\n\n/* ==========================================================================\n   1. Icons - Sets up the icon font and respective classes\n   ========================================================================== */\n\n/* Import the font file with the icons in it */\n// @import url(css/fa.css);\n@import (less) \"fa.css\";\n\n\n\n/* ==========================================================================\n   2. General - Setting up some base styles\n   ========================================================================== */\n\nhtml {\n    height: 100%;\n    max-height: 100%;\n    font-size: 62.5%;\n}\n\nbody {\n    height: 100%;\n    max-height: 100%;\n    font-family: 'Noto Serif', serif;\n    font-size: 2.0rem;\n    line-height: 1.6em;\n    color: #3A4145;\n    overflow-x: none;\n}\n\n::-moz-selection {\n    color: #222;\n    background: #D6EDFF;\n    text-shadow: none;\n}\n\n::selection {\n    color: #222;\n    background: #D6EDFF;\n    text-shadow: none;\n}\n\nh1, h2, h3,\nh4, h5, h6 {\n    text-rendering: optimizeLegibility;\n    line-height: 1;\n    margin-top: 0;\n    font-family: 'Open Sans', sans-serif;\n}\n\nh1 {\n    font-size: 5rem;\n    line-height: 1.2em;\n    letter-spacing: -2px;\n    text-indent: -3px;\n}\n\nh2 {\n    font-size: 4rem;\n    line-height: 1.2em;\n    letter-spacing: -1px;\n    text-indent: -2px;\n}\n\nh3 {\n    font-size: 3.5rem;\n}\n\nh4 {\n    font-size: 3rem;\n}\n\nh5 {\n    font-size: 2.5rem;\n}\n\nh6 {\n    font-size: 2rem;\n}\n\na {\n    color: #4a4a4a;\n    transition: color ease 0.3s;\n    &:hover {\n        color: #57A3E8;\n    }\n}\n\nh1 a, h2 a, h3 a,\nh4 a, h5 a, h6 a {\n    color: #50585D;\n}\n\n\np, ul, ol, dl {\n    margin: 1.6em 0;\n}\n\nol ol, ul ul,\nul ol, ol ul {\n    margin: 0.4em 0;\n}\n\ndl dt {\n    float: left;\n    width: 180px;\n    overflow: hidden;\n    clear: left;\n    text-align: right;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    font-weight: bold;\n    margin-bottom: 1em\n}\n\ndl dd {\n    margin-left: 200px;\n    margin-bottom: 1em\n}\n\nhr {\n    display: block;\n    height: 1px;\n    border: 0;\n    border-top: 1px solid #efefef;\n    margin: 3.2em 0;\n    padding: 0;\n}\n\nblockquote {\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    margin: 1.6em 0 1.6em -2.2em;\n    padding: 0 0 0 1.6em;\n    border-left: #4a4a4a 0.4em solid;\n    p {\n        margin: 0.8em 0;\n        font-style: italic;\n    }\n    small {\n        display: inline-block;\n        margin: 0.8em 0 0.8em 1.5em;\n        font-size:0.9em;\n        color: #ccc;\n        &:before { content: '\\2014 \\00A0'; }\n    }\n    cite {\n        font-weight:bold;\n        a { font-weight: normal; }\n    }\n}\n\nmark {\n    background-color: #ffc336;\n}\n\ncode, tt {\n    padding: 1px 3px;\n    font-family: Inconsolata, monospace, sans-serif;\n    font-size: 0.85em;\n    white-space: pre-wrap;\n    border: 1px solid #E3EDF3;\n    background: #F7FAFB;\n    border-radius: 2px;\n}\n\npre {\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    margin: 1.6em 0;\n    border: 1px solid #E3EDF3;\n    width: 100%;\n    padding: 10px;\n    font-family: Inconsolata, monospace, sans-serif;\n    font-size: 0.9em;\n    white-space: pre;\n    overflow: auto;\n    background: #F7FAFB;\n    border-radius: 3px;\n}\n\npre code, tt {\n    font-size: inherit;\n    white-space: -moz-pre-wrap;\n    white-space: pre-wrap;\n    background: transparent;\n    border: none;\n    padding: 0;\n}\n\nkbd {\n    display: inline-block;\n    margin-bottom: 0.4em;\n    padding: 1px 8px;\n    border: #ccc 1px solid;\n    color: #666;\n    text-shadow: #fff 0 1px 0;\n    font-size: 0.9em;\n    font-weight: bold;\n    background: #f4f4f4;\n    border-radius: 4px;\n    box-shadow:\n        0 1px 0 rgba(0, 0, 0, 0.2),\n        0 1px 0 0 #fff inset;\n}\n\ntable {\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    margin: 1.6em 0;\n    width:100%;\n    max-width: 100%;\n    background-color: transparent;\n}\n\ntable th,\ntable td {\n    padding: 8px;\n    line-height: 20px;\n    text-align: left;\n    vertical-align: top;\n    border-top: 1px solid #efefef;\n}\n\ntable th { color: #000; }\n\ntable caption + thead tr:first-child th,\ntable caption + thead tr:first-child td,\ntable colgroup + thead tr:first-child th,\ntable colgroup + thead tr:first-child td,\ntable thead:first-child tr:first-child th,\ntable thead:first-child tr:first-child td {\n    border-top: 0;\n}\n\ntable tbody + tbody { border-top: 2px solid #efefef; }\n\ntable table table { background-color: #fff; }\n\ntable tbody > tr:nth-child(odd) > td,\ntable tbody > tr:nth-child(odd) > th {\n    background-color: #f6f6f6;\n}\n\ntable.plain tbody > tr:nth-child(odd) > td,\ntable.plain tbody > tr:nth-child(odd) > th {\n   background: transparent;\n}\n\niframe, .fluid-width-video-wrapper {\n    display: block;\n    margin: 1.6em 0;\n}\n\n/* When a video is inside the fitvids wrapper, drop the\nmargin on the iframe, cause it breaks stuff. */\n.fluid-width-video-wrapper iframe {\n    margin: 0;\n}\n\n\n/* ==========================================================================\n   3. Utilities - These things get used a lot\n   ========================================================================== */\n\n/* Hides shit */\n.hidden {\n    text-indent: -9999px;\n    visibility: hidden;\n    display: none;\n}\n\n/* Creates a responsive wrapper that makes our content scale nicely */\n.inner {\n    position: relative;\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding-bottom: 1em;\n}\n\n/* Centres vertically yo. (IE8+) */\n.vertical-row {\n    display: table-row;\n}\n\n.vertical {\n    display: table-cell;\n    vertical-align: middle;\n}\n\n.clear {\n    clear: both;\n    height: 0;\n    padding: 0;\n    margin: 0;\n}\n\n.wrapword {\n    white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */\n    white-space: -pre-wrap;      /* Opera 4-6 */\n    white-space: -o-pre-wrap;    /* Opera 7 */\n    white-space: pre-wrap;       /* css-3 */\n    word-wrap: break-word;       /* Internet Explorer 5.5+ */\n    word-break: break-all;\n    white-space: normal;\n}\n\n\n/* ==========================================================================\n   WP styles\n   ========================================================================== */\n\n/*--------------------------------------------------------------\n3.0 Elements\n--------------------------------------------------------------*/\nhr {\n    background-color: #ccc;\n    border: 0;\n    height: 1px;\n    margin-bottom: 1.5em;\n}\nul, ol {\n    margin: 0 0 1.5em 3em;\n}\nul {\n    list-style: disc;\n}\nol {\n    list-style: decimal;\n}\nli > ul,\nli > ol {\n    margin-bottom: 0;\n    margin-left: 1.5em;\n}\ndt {\n    font-weight: bold;\n}\ndd {\n    margin: 0 1.5em 1.5em;\n}\nimg {\n    height: auto; /* Make sure images are scaled correctly. */\n    max-width: 100%; /* Adhere to container width. */\n}\nfigure {\n    margin: 0;\n}\ntable {\n    margin: 0 0 1.5em;\n    width: 100%;\n}\nth {\n    font-weight: bold;\n}\n\n/*--------------------------------------------------------------\n4.0 Forms\n--------------------------------------------------------------*/\nbutton,\ninput,\nselect,\ntextarea {\n    font-size: 100%; /* Corrects font size not being inherited in all browsers */\n    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */\n    vertical-align: baseline; /* Improves appearance and consistency in all browsers */\n    *vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */\n}\nbutton,\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n    border: 1px solid #ccc;\n    border-color: #ccc #ccc #bbb #ccc;\n    border-radius: 3px;\n    background: #e6e6e6;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);\n    color: rgba(0, 0, 0, .8);\n    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */\n    -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */\n    font-size: 12px;\n    font-size: 1.2rem;\n    line-height: 1;\n    padding: .6em 1em .4em;\n    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);\n}\nbutton:hover,\ninput[type=\"button\"]:hover,\ninput[type=\"reset\"]:hover,\ninput[type=\"submit\"]:hover {\n    border-color: #ccc #bbb #aaa #bbb;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);\n}\nbutton:focus,\ninput[type=\"button\"]:focus,\ninput[type=\"reset\"]:focus,\ninput[type=\"submit\"]:focus,\nbutton:active,\ninput[type=\"button\"]:active,\ninput[type=\"reset\"]:active,\ninput[type=\"submit\"]:active {\n    border-color: #aaa #bbb #bbb #bbb;\n    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n    padding: 0; /* Addresses excess padding in IE8/9 */\n}\ninput[type=\"search\"] {\n    -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */\n    -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */\n    -moz-box-sizing:    content-box;\n    box-sizing:         content-box;\n}\ninput[type=\"search\"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */\n    -webkit-appearance: none;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */\n    border: 0;\n    padding: 0;\n}\ninput[type=\"text\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ninput[type=\"search\"],\ntextarea {\n    color: #666;\n    border: 1px solid #ccc;\n    border-radius: 3px;\n}\ninput[type=\"text\"]:focus,\ninput[type=\"email\"]:focus,\ninput[type=\"url\"]:focus,\ninput[type=\"password\"]:focus,\ninput[type=\"search\"]:focus,\ntextarea:focus {\n    color: #111;\n}\ninput[type=\"text\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ninput[type=\"search\"] {\n    padding: 3px;\n}\ntextarea {\n    overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */\n    padding-left: 3px;\n    vertical-align: top; /* Improves readability and alignment in all browsers */\n    width: 98%;\n}\n\n/*--------------------------------------------------------------\n5.0 Navigation\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n5.2 Menus\n--------------------------------------------------------------*/\n.main-navigation {\n    padding: 5px 0;\n    color: white;\n    width: 100%;\n    font-family: 'Open Sans', sans-serif;\n}\n.main-navigation>div {\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding: 0;\n}\n.main-navigation ul {\n    list-style: none;\n    margin: 0 4rem;\n    padding: 0;\n    float: right;\n    font-size: 1.2rem;\n}\n.main-navigation li {\n    float: left;\n    position: relative;\n}\n.main-navigation a {\n    display: block;\n    text-decoration: none;\n    color: white;\n    padding: 12px 20px;\n    background-color: rgba(0,0,0,0);\n    -webkit-transition:  color 0.3s ease, background 0.3s ease;\n    -moz-transition:  color 0.3s ease, background 0.3s ease;\n    transition:  color 0.3s ease, background 0.3s ease;\n}\n.main-navigation a:hover {\n    background-color: rgba(0,0,0,0.4);\n    color: white;\n}\n.main-navigation ul ul {\n    display: none;\n    left: 0;\n    position: absolute;\n    top: 100%;\n    z-index: 99999;\n    margin: 0;\n    width: 100%;\n}\n.main-navigation ul ul ul {\n    left: 100%;\n    top: 0;\n}\n.main-navigation ul li:hover > ul {\n    display: block;\n}\n.main-navigation .current_page_item a,\n.main-navigation .current-menu-item a {\n}\n/* Small menu */\n.menu-toggle {\n    cursor: pointer;\n    font-size: 0;\n    height: 48px;\n    margin: 0;\n    overflow: hidden;\n    position: absolute;\n    top: 0;\n    right: 0;\n    text-align: center;\n    width: 48px;\n    display: none;\n}\n.menu-toggle a {\n    padding: 5px;\n}\n.menu-toggle a:before {\n    font-size: 3rem;\n}\n@media screen and (max-width: 600px) {\n    .menu-toggle,\n    .main-navigation.toggled .nav-menu {\n        display: block;\n    }\n\n    .main-navigation ul {\n        display: none;\n        margin: 0;\n        font-size: 1.8rem;\n        background-color: rgba(0,0,0,0.4);\n    }\n    .main-navigation li {\n        float: none;\n        margin: 0 auto;\n        width: 100%;\n        border-bottom: 1px solid #444;\n    }\n}\n.site-main .comment-navigation,\n.site-main .paging-navigation,\n.site-main .post-navigation {\n    margin: 0 0 1.5em;\n    overflow: hidden;\n}\n.comment-navigation .nav-previous,\n.paging-navigation .nav-previous,\n.post-navigation .nav-previous {\n    float: left;\n    width: 50%;\n}\n.comment-navigation .nav-next,\n.paging-navigation .nav-next,\n.post-navigation .nav-next {\n    float: right;\n    text-align: right;\n    width: 50%;\n}\n\n/*--------------------------------------------------------------\n6.0 Accessibility\n--------------------------------------------------------------*/\n/* Text meant only for screen readers */\n.screen-reader-text {\n    clip: rect(1px, 1px, 1px, 1px);\n    position: absolute !important;\n}\n\n.screen-reader-text:hover,\n.screen-reader-text:active,\n.screen-reader-text:focus {\n    background-color: #f1f1f1;\n    border-radius: 3px;\n    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n    clip: auto !important;\n    color: #21759b;\n    display: block;\n    font-size: 14px;\n    font-weight: bold;\n    height: auto;\n    left: 5px;\n    line-height: normal;\n    padding: 15px 23px 14px;\n    text-decoration: none;\n    top: 5px;\n    width: auto;\n    z-index: 100000; /* Above WP toolbar */\n}\n\n/*--------------------------------------------------------------\n7.0 Alignments\n--------------------------------------------------------------*/\n.alignleft {\n    display: inline;\n    float: left;\n    margin-right: 1.5em;\n}\n.alignright {\n    display: inline;\n    float: right;\n    margin-left: 1.5em;\n}\n.aligncenter {\n    clear: both;\n    display: block;\n    margin: 0 auto;\n}\n\n/*--------------------------------------------------------------\n8.0 Clearings\n--------------------------------------------------------------*/\n.clear:before,\n.clear:after,\n.entry-content:before,\n.entry-content:after,\n.comment-content:before,\n.comment-content:after,\n.site-header:before,\n.site-header:after,\n.site-content:before,\n.site-content:after,\n.site-footer:before,\n.site-footer:after {\n    content: '';\n    display: table;\n}\n\n.clear:after,\n.entry-content:after,\n.comment-content:after,\n.site-header:after,\n.site-content:after,\n.site-footer:after {\n    clear: both;\n}\n\n/*--------------------------------------------------------------\n9.0 Widgets\n--------------------------------------------------------------*/\n.widget {\n    margin: 0 0 1.5em;\n}\n\n/* Make sure select elements fit in widgets */\n.widget select {\n    max-width: 100%;\n}\n\n/* Search widget */\n.widget_search .search-submit {\n    display: none;\n}\n\n/* Main widget wrapper */\n.widget-area {\n    * {\n        box-sizing: border-box;\n    }\n    width:80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    padding-bottom: 4rem;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    color: #9EABB3;\n}\n\n.widget-area h1 {\n    font-size: 2.5rem;\n}\n\n.widget-area aside {\n    float: left;\n    width: 50%;\n    height: 300px;\n    padding: 2rem 1rem;\n    overflow: hidden;\n}\n\n.search-submit {\n    border-width: 3px;\n    background: none;\n    display: inline-block;\n    padding: 15px;\n    border: #EBF2F6 2px solid;\n    text-decoration: none;\n    border-radius: 30px;\n    transition: border ease 0.3s;\n}\n\n.search-submit:hover, .form-submit #submit:hover {\n    border-color: #9EABB3;\n}\n\n/*--------------------------------------------------------------\n10.0 Content\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.1 Posts and pages\n--------------------------------------------------------------*/\n.sticky {\n    content: \"\";\n}\n.hentry {\n    margin: 0 0 1.5em;\n}\n.byline,\n.updated {\n    display: none;\n}\n.single .byline,\n.group-blog .byline {\n    display: inline;\n}\n.page-content,\n.entry-content,\n.entry-summary {\n    margin: 1.5em 0 0;\n}\n.page-links {\n    clear: both;\n    margin: 0 0 1.5em;\n}\n.post-image:after {\n    content: ' ';\n    display: block;\n    clear: both;\n}\n\n/*--------------------------------------------------------------\n10.2 Asides\n--------------------------------------------------------------*/\n.blog .format-aside .entry-title,\n.archive .format-aside .entry-title {\n    display: none;\n}\n\n/*--------------------------------------------------------------\n10.3 Comments\n--------------------------------------------------------------*/\n.comment-content a {\n    word-wrap: break-word;\n}\n.bypostauthor {\n    content: '';\n}\n\n/*--------------------------------------------------------------\n11.0 Infinite scroll\n--------------------------------------------------------------*/\n/* Globally hidden elements when Infinite Scroll is supported and in use. */\n.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */\n.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */\n    display: none;\n}\n/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */\n.infinity-end.neverending .site-footer {\n    display: block;\n}\n\n.wp-caption {\n    border: 1px solid #ccc;\n    margin-bottom: 1.5em;\n    max-width: 100%;\n}\n.wp-caption img[class*=\"wp-image-\"] {\n    display: block;\n    margin: 1.2% auto 0;\n    max-width: 98%;\n}\n.wp-caption-text {\n    text-align: center;\n}\n.wp-caption .wp-caption-text {\n    margin: 0.8075em 0;\n}\n.site-main .gallery {\n    margin-bottom: 1.5em;\n}\n.gallery-caption {\n    content: '';\n}\n.site-main .gallery a img {\n    border: none;\n    height: auto;\n    max-width: 90%;\n}\n.site-main .gallery dd,\n.site-main .gallery figcaption {\n    margin: 0;\n}\n.site-main .gallery-columns-4 .gallery-item {\n}\n.site-main .gallery-columns-4 .gallery-item img {\n}\n/* Make sure embeds and iframes fit their containers */\nembed,\niframe,\nobject {\n    max-width: 100%;\n}\n\n/* ==========================================================================\n   4. General - The main styles for the the theme\n   ========================================================================== */\n\n\n\n/* Big cover image on the home page */\n.site-head {\n    position: relative;\n    display: table;\n    width: 100%;\n    height: 60%;\n    margin-bottom: 5rem;\n    text-align: center;\n    color: #fff;\n    background: #303538 no-repeat center center;\n    background-size: cover;\n    border-bottom: #EBF2F6 1px solid;\n}\n\n.site-head:after {\n    display: block;\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border: #E7EEF2 1px solid;\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n    margin-left: -5px;\n    background: #fff;\n    -webkit-border-radius: 100%;\n    -moz-border-radius: 100%;\n    border-radius: 100%;\n    box-shadow: #fff 0 0 0 5px;\n}\nbody.home .site-head:after {\n    z-index: -3;\n}\n\n/* Yo-logo. Yolo-go. Upload one in ghost/settings/ */\n.blog-logo {\n    text-decoration: none;\n    color: white;\n}\n.blog-logo img {\n    display: block;\n    max-height: 120px;\n    width: auto;\n    margin: 0 auto;\n    line-height: 0;\n}\n\n/* The details of your blog. Defined in ghost/settings/ */\n.blog-title {\n    margin: 10px 0 10px 0;\n    font-size: 5rem;\n    letter-spacing: -1px;\n    font-weight: bold;\n    font-family: 'Open Sans', sans-serif;\n    text-shadow: 0 1px 6px rgba(0,0,0,0.1);\n}\n\n.blog-description {\n    margin: 0;\n    font-size: 1.8rem;\n    line-height: 1.5em;\n    font-weight: 300;\n    font-family: 'Noto Serif', serif;\n    letter-spacing: 0;\n    text-shadow: 0 1px 3px rgba(0,0,0,0.15);\n}\n\n/* Every post, on every page, gets this style on its <article> tag */\n.post-wrap {\n    position: relative;\n    width:80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    word-break: break-word;\n    hyphens: auto;\n}\n\n/* Add a little circle in the middle of the border-bottom on our .post\n   just for the lolz and stylepoints. */\n.circle-in-border {\n    display: block;\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border: #E7EEF2 1px solid;\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n    margin-left: -5px;\n    background: #fff;\n    -webkit-border-radius: 100%;\n    -moz-border-radius: 100%;\n    border-radius: 100%;\n    box-shadow: #fff 0 0 0 5px;\n}\n\n.error-404 {\n    article {\n        border-top: #EBF2F6 1px solid;\n        margin-bottom: 20px;\n        padding-top: 20px;\n    }\n}\n\n.hentry{\n    .post-wrap();\n    border-bottom: #EBF2F6 1px solid;\n}\n\n/* Add a little circle in the middle of the border-bottom on our .post\n   just for the lolz and stylepoints. */\n\n.hentry:after {\n    .circle-in-border();\n}\n\n.post-title {\n    margin:0;\n}\n\n.post-title a {\n    text-decoration: none;\n}\n\n.post-excerpt p {\n    margin: 1.6rem 0 0 0;\n    font-size: 0.9em;\n    line-height: 1.6em;\n}\n\n.post-meta {\n    display: inline-block;\n    margin: 0 0 5px 0;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.5rem;\n    color: #9EABB3;\n}\n\n.post-meta a {\n    color: #9EABB3;\n    text-decoration: none;\n}\n\n.post-meta a:hover {\n    text-decoration: underline;\n}\n\n.user-meta {\n    position: relative;\n    padding: 0.3rem 40px 0 100px;\n    min-height: 77px;\n}\n\n.user-image {\n    position: absolute;\n    top: 0;\n    left: 0;\n}\n\n.user-name {\n    display: block;\n    font-weight: bold;\n}\n\n.user-bio {\n    display: block;\n    max-width: 440px;\n    font-size: 1.4rem;\n    line-height: 1.5em;\n}\n\n.publish-meta {\n    position: absolute;\n    top: 0;\n    right: 0;\n    padding: 4.3rem 0 4rem 0;\n    text-align: right;\n}\n\n.publish-heading {\n    display: block;\n    font-weight: bold;\n}\n\n.publish-date {\n    display: block;\n    font-size: 1.4rem;\n    line-height: 1.5em;\n}\n\n/* ==========================================================================\n   5. Single Post - When you click on an individual post\n   ========================================================================== */\n\n/* Tweak the .post wrapper style */\n.post-template .post {\n    margin-top: 0;\n    border-bottom: none;\n    padding-bottom: 0;\n}\n\n/* Kill that stylish little circle that was on the border, too */\n.post-template .post:after {\n    display: none;\n}\n\n/* Insert some mad padding up in the header for better spacing */\n.post-template .post-header {\n    padding: 60px 0;\n    text-align: center;\n}\n\n.post-header img {\n    padding-top: 1rem;\n    display: block;\n    max-width: 100%;\n    margin: 0 auto;\n    height: auto;\n    -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n    filter: alpha(opacity=0);\n    opacity: 0;\n    transition: opacity ease 0.6s;\n}\n\n.post-template .blog-title {\n    display: inline-block;\n    padding: 2.5rem 0;\n}\n\n/* Keep large images within the bounds of the post-width */\n.post-content {\n    img {\n        display: block;\n        max-width: 100%;\n        margin: 0 auto;\n        height: auto;\n        padding: 1em;\n        &.wp-smiley {\n            display: inline;\n            padding: 0;\n        }\n    }\n    .wp-caption img {\n        padding: 0;\n    }\n}\n\n/* The author credit area after the post */\n.post-footer {\n    position: relative;\n    margin: 4rem 0 0 0;\n    padding: 4rem 0 0 0;\n    border-top: #EBF2F6 1px solid;\n}\n\n.post-footer h4 {\n    font-size: 1.8rem;\n    margin: 0;\n}\n\n.post-footer p {\n    margin: 1rem 0;\n    font-size: 1.4rem;\n    line-height: 1.6em;\n}\n\n/* Create some space to the right for the share links */\n.post-footer .author {\n    margin: 0 1rem 3rem 1rem;\n}\n\n.post-footer .author a{\n    text-decoration: none;\n}\n\n\n/* Drop the share links in the space to the right.\n   Doing it like this means it's easier for the author bio\n   to be flexible at smaller screen sizes while the share\n   links remain at a fixed width the whole time */\n.post-footer .share {\n    position: absolute;\n    top: 4rem;\n    right: 0;\n    width: 140px;\n}\n\n.post-footer .share a {\n    font-size: 1.8rem;\n    display: inline;\n    margin: 1.4rem 0 1.6rem 1.6rem;\n    color: #BBC7CC;\n    text-decoration: none;\n}\n\n.post-footer .share a:hover {\n    color: #50585D;\n}\n\n.avatar {\n    float: left;\n    border-radius: 50%;\n    padding: 5px;\n    box-shadow: 0 1px 1px rgba(0,0,0,0.3);\n    margin-right: 1em;\n    display: block;\n}\n\n/* ==========================================================================\n   5.1 Comments\n   ========================================================================== */\n.comment-list,\n.children {\n   list-style-type: none;\n   margin: 0;\n   padding: 0;\n}\n\n.comment,\n.pingback {\n    border: 1px solid #ccc;\n    margin-bottom: 1.5em;\n    padding: 1em 1.5em;\n}\n\n.children .comment,\n.pingback {\n    margin-bottom: 0.75em;\n    padding: 0.5em 0.75em;\n}\n\n.reply a {\n    .wrapword;\n    max-width: 35%;\n    border-radius: 3px;\n    border-width: 3px;\n    background: none;\n    display: inline-block;\n    padding: 15px;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);\n    border: #EBF2F6 2px solid;\n    text-decoration: none;\n    transition: border ease 0.3s;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    line-height: 1;\n    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);\n    color: #9EABB3;\n    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */\n    -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */\n}\n\n.reply a:hover {\n    border-color: #9EABB3;\n}\n\n.children,\n.comment-respond {\n    margin-top: 1.5em;\n}\n\n.comment-form {\n    overflow: hidden;\n}\n\n/* ==========================================================================\n   6. Third Party Elements - Embeds from other services\n   ========================================================================== */\n\n/* Github */\n\n.gist table {\n    margin: 0;\n    font-size: 1.4rem;\n}\n\n.gist .line-number {\n    min-width: 25px;\n    font-size: 1.1rem;\n}\n\n/* Social links */\n.social-icons {\n    margin-top: 15px;\n}\n.social-icons a {\n    text-decoration: none;\n    font-size: 1.3em;\n    margin: 0 5px;\n    color: white;\n}\n.blog-title a:hover, .social-icons a:hover {\n    color: #57A3E8;\n}\n/* Comments */\n.comments-area {\n    width:80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    padding-bottom: 4rem;\n}\n\n.comment-form-comment label{\n    width: 100%;\n    display: inline-block;\n}\n\n.form-allowed-tags {\n    width:60%;\n    float: right;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    color: #9EABB3;\n    margin: -1rem;\n}\n\n.comment-subscription-form {\n    clear: both;\n    margin-top: 1rem;\n}\n\n.form-submit #submit{\n    .wrapword;\n    float: left;\n    max-width: 35%;\n    border-width: 3px;\n    background: none;\n    display: inline-block;\n    padding: 15px;\n    margin-top: 1em;\n    border: #EBF2F6 2px solid;\n    text-decoration: none;\n    transition: border ease 0.3s;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    color: #9EABB3;\n}\n\n#main > header.page-header {\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding: 0;\n    font-family: 'Open Sans', sans-serif;\n    color: #9EABB3;\n    text-align: center;\n    & > h1 {\n        font-size: 1.3rem;\n        font-weight: normal;\n        line-height: normal;\n        text-indent: 0;\n        letter-spacing: normal;\n        margin: 0 4rem;\n        padding: 0;\n    }\n}\n/* ==========================================================================\n   7. Pagination - Tools to let you flick between pages\n   ========================================================================== */\n\n/* The main wrapper for our pagination links */\n.pagination {\n    position: relative;\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    color: #9EABB3;\n    text-align: center;\n    a {\n        color: #9EABB3;\n    }\n}\n/* Push the previous/next links out to the left/right */\n.older-posts,\n.newer-posts {\n    position: absolute;\n    display: inline-block;\n    padding: 0 15px;\n    border: #EBF2F6 2px solid;\n    text-decoration: none;\n    border-radius: 30px;\n    transition: border ease 0.3s;\n    &:hover {\n        border-color: #9EABB3;\n    }\n}\n\n.older-posts {\n    right: 0;\n}\n\n.page-number {\n    display: inline-block;\n    padding: 2px 0;\n}\n\n.newer-posts {\n    left: 0;\n}\n\n\n/* ==========================================================================\n   8. Footer - The bottom of every page\n   ========================================================================== */\n\n.site-footer {\n    position: relative;\n    margin: 0;\n    padding: 4rem 0;\n    border-top: #EBF2F6 1px solid;\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    line-height: 1.7em;\n    color: #BBC7CC;\n    text-align: center;\n    background: #F7FAFB;\n}\n\n.site-footer a {\n    color: #BBC7CC;\n    text-decoration: underline;\n}\n\n.site-footer a:hover {\n    color: #50585D;\n}\n\n/* The subscribe icon on the footer */\n.subscribe {\n    width: 28px;\n    height: 28px;\n    position: absolute;\n    top: -14px;\n    left: 50%;\n    margin-left: -15px;\n    border: #EBF2F6 1px solid;\n    text-align: center;\n    line-height: 2.4rem;\n    border-radius: 50px;\n    background: #fff;\n    transition: box-shadow 0.5s;\n}\n\n/* The RSS icon, inserted via icon font */\n.subscribe:before {\n    color: #D2DEE3;\n    font-size: 10px;\n    position: absolute;\n    top: 9px;\n    left: 9px;\n    font-weight: bold;\n    transition: color 0.5s ease;\n}\n\n/* Add a box shadow to on hover */\n.subscribe:hover {\n    box-shadow: rgba(0,0,0,0.05) 0 0 0 3px;\n    transition: box-shadow 0.25s;\n}\n\n.subscribe:hover:before {\n    color: #50585D;\n}\n\n/* CSS tooltip saying \"Subscribe!\" - initially hidden */\n.tooltip {\n    opacity:0;\n    display: inline-block;\n    padding: 4px 8px 5px 8px;\n    position:absolute;\n    top: -23px;\n    left: -21px;\n    color: rgba(255,255,255,0.9);\n    font-size: 1.1rem;\n    line-height: 1em;\n    text-align: center;\n    background: #50585D;\n    border-radius:20px;\n    box-shadow: 0 1px 4px rgba(0,0,0,0.1);\n    transition: opacity 0.3s ease, top 0.3s ease;\n}\n\n/* The little chiclet arrow under the tooltip, pointing down */\n.tooltip:after {\n    content:\"\";\n    border-width:5px 5px 0 5px;\n    border-style:solid;\n    border-color: #50585D transparent;\n    display:block;\n    position:absolute;\n    bottom:-4px;\n    left:50%;\n    margin-left:-5px;\n    z-index: 220;\n    width:0;\n}\n\n/* On hover, show the tooltip! */\n.subscribe:hover .tooltip {\n    opacity: 1;\n    top: -33px;\n}\n\n\n/* ==========================================================================\n   9. Media Queries - Smaller than 900px\n   ========================================================================== */\n\n@media only screen and (max-width: 900px) {\n\n    blockquote {\n        margin-left: 0;\n    }\n\n    .site-head {\n        -webkit-box-sizing: border-box;\n        -moz-box-sizing: border-box;\n        box-sizing: border-box;\n        height: auto;\n        min-height: 240px;\n        padding: 15% 0;\n    }\n    .blog-title {\n        font-size: 4rem;\n        letter-spacing: -1px;\n    }\n\n    .blog-description {\n        font-size: 1.7rem;\n        line-height: 1.5em;\n    }\n\n    .post {\n        font-size: 0.9em;\n        line-height: 1.6em;\n    }\n\n    .post-template .post {\n        padding-bottom: 1rem;\n    }\n\n    .post-template .post-header {\n        padding: 40px 0;\n    }\n\n    .widget-area aside {\n        float: none;\n        width: auto;\n        height: auto;\n        padding: 1em;\n        overflow: hidden;\n    }\n\n    h1 {\n        font-size: 4.8rem;\n        text-indent: -2px;\n    }\n\n    h2 {\n        font-size: 3.8rem;\n    }\n\n    h3 {\n        font-size: 3.3rem;\n    }\n\n    h4 {\n        font-size: 2.8rem;\n    }\n\n}\n\n/* ==========================================================================\n   10. Media Queries - Smaller than 500px\n   ========================================================================== */\n\n\n@media only screen and (max-width: 500px) {\n\n    .blog-logo img {\n        max-height: 80px;\n    }\n\n    .inner,\n    .pagination {\n        width: auto;\n        margin-left: 16px;\n        margin-right: 16px;\n    }\n\n    .post {\n        width:auto;\n        margin-left: 16px;\n        margin-right: 16px;\n        font-size: 0.8em;\n        line-height: 1.6em;\n    }\n\n    .site-head {\n        padding: 10% 0;\n    }\n\n    .blog-title {\n        font-size: 3rem;\n    }\n\n    .blog-description {\n        font-size: 1.5rem;\n    }\n\n    .main-navigation ul li.menu-item-has-children:hover ~ li{\n        opacity: 0;\n    }\n\n    .main-navigation ul ul ul {\n        top: 100%;\n        left: 0;\n    }\n\n\n    h1, h2 {\n        font-size: 3rem;\n        line-height: 1.1em;\n        letter-spacing: -1px;\n    }\n\n    h3 {\n        font-size: 2.8rem;\n    }\n\n    h4 {\n        font-size: 2.3rem;\n    }\n\n    .post-template .post {\n        padding-bottom: 0;\n    }\n\n    .post-template .post-header {\n        padding: 30px 0;\n    }\n\n    .post-meta {\n        font-size: 1.3rem;\n    }\n\n    .post-footer {\n        padding: 4rem 0;\n        text-align: center;\n    }\n\n    .post-footer .author {\n        margin: 0 0 2rem 0;\n        padding: 0 0 1.6rem 0;\n        border-bottom: #EBF2F6 1px dashed;\n    }\n\n    .post-footer .share {\n        position: static;\n        width: auto;\n    }\n\n    .post-footer .share a {\n        margin: 1.4rem 0.8rem 0 0.8rem;\n    }\n\n    .older-posts,\n    .newer-posts {\n        position: static;\n        margin: 10px 0;\n    }\n\n    .page-number {\n        display: block;\n    }\n\n    .site-footer {\n        margin-top: 6rem;\n        font-size: 1.1rem;\n    }\n\n}\n\n/* ==========================================================================\n   End of file. Media queries should be the last thing here. Do not add stuff\n   below this point, or it will probably fuck everything up.\n   ========================================================================== */\n"
  },
  {
    "path": "style.css",
    "content": "/*\n  Theme Name:       Casper\n  Theme URI:        https://github.com/lacymorrow/casper\n  Author:           Lacy Morrow\n  Author URI:       http://lacymorrow.com\n  Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n  Version:          1.1.5\n  License:          GNU General Public License v2.0\n  License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n  Text Domain:      casper\n  Domain Path:      /languages/\n  Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n  GitHub Theme URI: https://github.com/lacymorrow/casper\n  GitHub Branch:    master\n  Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n*/\n/* ==========================================================================\n   Table of Contents\n   ========================================================================== */\n/*\n\n    0.  Includes\n    1.  Icons\n    2.  General\n    3.  Utilities\n    4.  General\n    5.  Single Post\n    6.  Third Party Elements\n    7.  Pagination\n    8.  Footer\n    9.  Media Queries (Tablet)\n    10. Media Queries (Mobile)\n\n*/\n/* ==========================================================================\n   0. Includes - Ground zero\n   ========================================================================== */\n/*! normalize.css v2.1.3 | MIT License | git.io/normalize */\n/* ==========================================================================\n   HTML5 display definitions\n   ========================================================================== */\n/**\n * Correct `block` display not defined in IE 8/9.\n */\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary\n{\n    display: block;\n}\n/**\n * Correct `inline-block` display not defined in IE 8/9.\n */\naudio,\ncanvas,\nvideo\n{\n    display: inline-block;\n}\n/**\n * Prevent modern browsers from displaying `audio` without controls.\n * Remove excess height in iOS 5 devices.\n */\naudio:not([controls])\n{\n    display: none;\n\n    height: 0;\n}\n/**\n * Address `[hidden]` styling not present in IE 8/9.\n * Hide the `template` element in IE, Safari, and Firefox < 22.\n */\n[hidden],\ntemplate\n{\n    display: none;\n}\n/* ==========================================================================\n   Base\n   ========================================================================== */\n/**\n * 1. Set default font family to sans-serif.\n * 2. Prevent iOS text size adjust after orientation change, without disabling\n *    user zoom.\n */\nhtml\n{\n    font-family: sans-serif;\n    /* 1 */\n\n        -ms-text-size-adjust: 100%;\n    /* 2 */\n    -webkit-text-size-adjust: 100%;\n    /* 2 */\n}\n/**\n * Remove default margin.\n */\nbody\n{\n    margin: 0;\n}\n/* ==========================================================================\n   Links\n   ========================================================================== */\n/**\n * Remove the gray background color from active links in IE 10.\n */\na\n{\n    background: transparent;\n}\n/**\n * Address `outline` inconsistency between Chrome and other browsers.\n */\na:focus\n{\n    outline: thin dotted;\n}\n/**\n * Improve readability when focused and also mouse hovered in all browsers.\n */\na:active,\na:hover\n{\n    outline: 0;\n}\n/* ==========================================================================\n   Typography\n   ========================================================================== */\n/**\n * Address variable `h1` font-size and margin within `section` and `article`\n * contexts in Firefox 4+, Safari 5, and Chrome.\n */\nh1\n{\n    font-size: 2em;\n\n    margin: .67em 0;\n}\n/**\n * Address styling not present in IE 8/9, Safari 5, and Chrome.\n */\nabbr[title]\n{\n    border-bottom: 1px dotted;\n}\n/**\n * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n */\nb,\nstrong\n{\n    font-weight: bold;\n}\n/**\n * Address styling not present in Safari 5 and Chrome.\n */\ndfn\n{\n    font-style: italic;\n}\n/**\n * Address differences between Firefox and other browsers.\n */\nhr\n{\n    box-sizing: content-box;\n    height: 0;\n}\n/**\n * Address styling not present in IE 8/9.\n */\nmark\n{\n    color: #000;\n    background: #ff0;\n}\n/**\n * Correct font family set oddly in Safari 5 and Chrome.\n */\ncode,\nkbd,\npre,\nsamp\n{\n    font-family: monospace, serif;\n    font-size: 1em;\n}\n/**\n * Improve readability of pre-formatted text in all browsers.\n */\npre\n{\n    white-space: pre-wrap;\n}\n/**\n * Set consistent quote types.\n */\nq\n{\n    quotes: '\\201C' '\\201D' '\\2018' '\\2019';\n}\n/**\n * Address inconsistent and variable font size in all browsers.\n */\nsmall\n{\n    font-size: 80%;\n}\n/**\n * Prevent `sub` and `sup` affecting `line-height` in all browsers.\n */\nsub,\nsup\n{\n    font-size: 75%;\n    line-height: 0;\n\n    position: relative;\n\n    vertical-align: baseline;\n}\nsup\n{\n    top: -.5em;\n}\nsub\n{\n    bottom: -.25em;\n}\n/* ==========================================================================\n   Embedded content\n   ========================================================================== */\n/**\n * Remove border when inside `a` element in IE 8/9.\n */\nimg\n{\n    border: 0;\n}\n/**\n * Correct overflow displayed oddly in IE 9.\n */\nsvg:not(:root)\n{\n    overflow: hidden;\n}\n/* ==========================================================================\n   Figures\n   ========================================================================== */\n/**\n * Address margin not present in IE 8/9 and Safari 5.\n */\nfigure\n{\n    margin: 0;\n}\n/* ==========================================================================\n   Forms\n   ========================================================================== */\n/**\n * Define consistent border, margin, and padding.\n */\nfieldset\n{\n    margin: 0 2px;\n    padding: .35em .625em .75em;\n\n    border: 1px solid #c0c0c0;\n}\n/**\n * 1. Correct `color` not being inherited in IE 8/9.\n * 2. Remove padding so people aren't caught out if they zero out fieldsets.\n */\nlegend\n{\n    /* 1 */\n    padding: 0;\n\n    border: 0;\n    /* 2 */\n}\n/**\n * 1. Correct font family not being inherited in all browsers.\n * 2. Correct font size not being inherited in all browsers.\n * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n */\nbutton,\ninput,\nselect,\ntextarea\n{\n    font-family: inherit;\n    /* 1 */\n    font-size: 100%;\n    /* 2 */\n\n    margin: 0;\n    /* 3 */\n}\n/**\n * Address Firefox 4+ setting `line-height` on `input` using `!important` in\n * the UA stylesheet.\n */\nbutton,\ninput\n{\n    line-height: normal;\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 Chrome, Safari 5+, and IE 8+.\n * Correct `select` style inheritance in Firefox 4+ and Opera.\n */\nbutton,\nselect\n{\n    text-transform: none;\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 */\nbutton,\nhtml input[type='button'],\ninput[type='reset'],\ninput[type='submit']\n{\n    /* 2 */\n    cursor: pointer;\n\n    -webkit-appearance: button;\n    /* 3 */\n}\n/**\n * Re-set default cursor for disabled elements.\n */\nbutton[disabled],\nhtml input[disabled]\n{\n    cursor: default;\n}\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 */\ninput[type='checkbox'],\ninput[type='radio']\n{\n    box-sizing: border-box;\n    /* 1 */\n    padding: 0;\n    /* 2 */\n}\n/**\n * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n *    (include `-moz` to future-proof).\n */\ninput[type='search']\n{\n    /* 1 */\n    /* 2 */\n    box-sizing: content-box;\n\n    -webkit-appearance: textfield;\n}\n/**\n * Remove inner padding and search cancel button in Safari 5 and Chrome\n * on OS X.\n */\ninput[type='search']::-webkit-search-cancel-button,\ninput[type='search']::-webkit-search-decoration\n{\n    -webkit-appearance: none;\n}\n/**\n * Remove inner padding and border in Firefox 4+.\n */\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner\n{\n    padding: 0;\n\n    border: 0;\n}\n/**\n * 1. Remove default vertical scrollbar in IE 8/9.\n * 2. Improve readability and alignment in all browsers.\n */\ntextarea\n{\n    overflow: auto;\n    /* 1 */\n\n    vertical-align: top;\n    /* 2 */\n}\n/* ==========================================================================\n   Tables\n   ========================================================================== */\n/**\n * Remove most spacing between table cells.\n */\ntable\n{\n    border-spacing: 0;\n    border-collapse: collapse;\n}\n/* ==========================================================================\n   1. Icons - Sets up the icon font and respective classes\n   ========================================================================== */\n/* Import the font file with the icons in it */\n/*!\n *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face\n{\n    font-family: 'icons';\n    font-weight: normal;\n    font-style: normal;\n\n    src: url('fonts/fa.eot?v=4.2.0');\n    src: url('fonts/fa.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('fonts/fa.woff?v=4.2.0') format('woff'), url('fonts/fa.ttf?v=4.2.0') format('truetype'), url('fonts/fa.svg?v=4.2.0#fontawesomeregular') format('svg');\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg\n{\n    font-size: 1.33333333em;\n    line-height: .75em;\n\n    vertical-align: -15%;\n}\n.fa-2x\n{\n    font-size: 2em;\n}\n.fa-3x\n{\n    font-size: 3em;\n}\n.fa-4x\n{\n    font-size: 4em;\n}\n.fa-5x\n{\n    font-size: 5em;\n}\n.fa-fw\n{\n    width: 1.28571429em;\n\n    text-align: center;\n}\n.fa-ul\n{\n    margin-left: 2.14285714em;\n    padding-left: 0;\n\n    list-style-type: none;\n}\n.fa-ul > li\n{\n    position: relative;\n}\n.fa-li\n{\n    position: absolute;\n    top: .14285714em;\n    left: -2.14285714em;\n\n    width: 2.14285714em;\n\n    text-align: center;\n}\n.fa-li.fa-lg\n{\n    left: -1.85714286em;\n}\n.fa-border\n{\n    padding: .2em .25em .15em;\n\n    border: solid .08em #eee;\n    border-radius: .1em;\n}\n.pull-right\n{\n    float: right;\n}\n.pull-left\n{\n    float: left;\n}\n.fa.pull-left\n{\n    margin-right: .3em;\n}\n.fa.pull-right\n{\n    margin-left: .3em;\n}\n.fa-spin\n{\n    animation: fa-spin 2s infinite linear;\n}\n@keyframes fa-spin\n{\n    0%\n    {\n        transform: rotate(0deg);\n    }\n    100%\n    {\n        transform: rotate(359deg);\n    }\n}\n.fa-rotate-90\n{\n    -ms-transform: rotate(90deg);\n        transform: rotate(90deg);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n}\n.fa-rotate-180\n{\n    -ms-transform: rotate(180deg);\n        transform: rotate(180deg);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n}\n.fa-rotate-270\n{\n    -ms-transform: rotate(270deg);\n        transform: rotate(270deg);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n}\n.fa-flip-horizontal\n{\n    -ms-transform: scale(-1, 1);\n        transform: scale(-1, 1);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n}\n.fa-flip-vertical\n{\n    -ms-transform: scale(1, -1);\n        transform: scale(1, -1);\n\n    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical\n{\n    filter: none;\n}\n.fa-stack\n{\n    line-height: 2em;\n\n    position: relative;\n\n    display: inline-block;\n\n    width: 2em;\n    height: 2em;\n\n    vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x\n{\n    position: absolute;\n    left: 0;\n\n    width: 100%;\n\n    text-align: center;\n}\n.fa-stack-1x\n{\n    line-height: inherit;\n}\n.fa-stack-2x\n{\n    font-size: 2em;\n}\n.fa-inverse\n{\n    color: #fff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.icon-glass:before\n{\n    content: '\\f000';\n}\n.icon-music:before\n{\n    content: '\\f001';\n}\n.icon-search:before\n{\n    content: '\\f002';\n}\n.icon-envelope-o:before\n{\n    content: '\\f003';\n}\n.icon-heart:before\n{\n    content: '\\f004';\n}\n.icon-star:before\n{\n    content: '\\f005';\n}\n.icon-star-o:before\n{\n    content: '\\f006';\n}\n.icon-user:before\n{\n    content: '\\f007';\n}\n.icon-film:before\n{\n    content: '\\f008';\n}\n.icon-th-large:before\n{\n    content: '\\f009';\n}\n.icon-th:before\n{\n    content: '\\f00a';\n}\n.icon-th-list:before\n{\n    content: '\\f00b';\n}\n.icon-check:before\n{\n    content: '\\f00c';\n}\n.icon-remove:before,\n.icon-close:before,\n.icon-times:before\n{\n    content: '\\f00d';\n}\n.icon-search-plus:before\n{\n    content: '\\f00e';\n}\n.icon-search-minus:before\n{\n    content: '\\f010';\n}\n.icon-power-off:before\n{\n    content: '\\f011';\n}\n.icon-signal:before\n{\n    content: '\\f012';\n}\n.icon-gear:before,\n.icon-cog:before\n{\n    content: '\\f013';\n}\n.icon-trash-o:before\n{\n    content: '\\f014';\n}\n.icon-home:before\n{\n    content: '\\f015';\n}\n.icon-file-o:before\n{\n    content: '\\f016';\n}\n.icon-clock-o:before\n{\n    content: '\\f017';\n}\n.icon-road:before\n{\n    content: '\\f018';\n}\n.icon-download:before\n{\n    content: '\\f019';\n}\n.icon-arrow-circle-o-down:before\n{\n    content: '\\f01a';\n}\n.icon-arrow-circle-o-up:before\n{\n    content: '\\f01b';\n}\n.icon-inbox:before\n{\n    content: '\\f01c';\n}\n.icon-play-circle-o:before\n{\n    content: '\\f01d';\n}\n.icon-rotate-right:before,\n.icon-repeat:before\n{\n    content: '\\f01e';\n}\n.icon-refresh:before\n{\n    content: '\\f021';\n}\n.icon-list-alt:before\n{\n    content: '\\f022';\n}\n.icon-lock:before\n{\n    content: '\\f023';\n}\n.icon-flag:before\n{\n    content: '\\f024';\n}\n.icon-headphones:before\n{\n    content: '\\f025';\n}\n.icon-volume-off:before\n{\n    content: '\\f026';\n}\n.icon-volume-down:before\n{\n    content: '\\f027';\n}\n.icon-volume-up:before\n{\n    content: '\\f028';\n}\n.icon-qrcode:before\n{\n    content: '\\f029';\n}\n.icon-barcode:before\n{\n    content: '\\f02a';\n}\n.icon-tag:before\n{\n    content: '\\f02b';\n}\n.icon-tags:before\n{\n    content: '\\f02c';\n}\n.icon-book:before\n{\n    content: '\\f02d';\n}\n.icon-bookmark:before\n{\n    content: '\\f02e';\n}\n.icon-print:before\n{\n    content: '\\f02f';\n}\n.icon-camera:before\n{\n    content: '\\f030';\n}\n.icon-font:before\n{\n    content: '\\f031';\n}\n.icon-bold:before\n{\n    content: '\\f032';\n}\n.icon-italic:before\n{\n    content: '\\f033';\n}\n.icon-text-height:before\n{\n    content: '\\f034';\n}\n.icon-text-width:before\n{\n    content: '\\f035';\n}\n.icon-align-left:before\n{\n    content: '\\f036';\n}\n.icon-align-center:before\n{\n    content: '\\f037';\n}\n.icon-align-right:before\n{\n    content: '\\f038';\n}\n.icon-align-justify:before\n{\n    content: '\\f039';\n}\n.icon-list:before\n{\n    content: '\\f03a';\n}\n.icon-dedent:before,\n.icon-outdent:before\n{\n    content: '\\f03b';\n}\n.icon-indent:before\n{\n    content: '\\f03c';\n}\n.icon-video-camera:before\n{\n    content: '\\f03d';\n}\n.icon-photo:before,\n.icon-image:before,\n.icon-picture-o:before\n{\n    content: '\\f03e';\n}\n.icon-pencil:before\n{\n    content: '\\f040';\n}\n.icon-map-marker:before\n{\n    content: '\\f041';\n}\n.icon-adjust:before\n{\n    content: '\\f042';\n}\n.icon-tint:before\n{\n    content: '\\f043';\n}\n.icon-edit:before,\n.icon-pencil-square-o:before\n{\n    content: '\\f044';\n}\n.icon-share-square-o:before\n{\n    content: '\\f045';\n}\n.icon-check-square-o:before\n{\n    content: '\\f046';\n}\n.icon-arrows:before\n{\n    content: '\\f047';\n}\n.icon-step-backward:before\n{\n    content: '\\f048';\n}\n.icon-fast-backward:before\n{\n    content: '\\f049';\n}\n.icon-backward:before\n{\n    content: '\\f04a';\n}\n.icon-play:before\n{\n    content: '\\f04b';\n}\n.icon-pause:before\n{\n    content: '\\f04c';\n}\n.icon-stop:before\n{\n    content: '\\f04d';\n}\n.icon-forward:before\n{\n    content: '\\f04e';\n}\n.icon-fast-forward:before\n{\n    content: '\\f050';\n}\n.icon-step-forward:before\n{\n    content: '\\f051';\n}\n.icon-eject:before\n{\n    content: '\\f052';\n}\n.icon-chevron-left:before\n{\n    content: '\\f053';\n}\n.icon-chevron-right:before\n{\n    content: '\\f054';\n}\n.icon-plus-circle:before\n{\n    content: '\\f055';\n}\n.icon-minus-circle:before\n{\n    content: '\\f056';\n}\n.icon-times-circle:before\n{\n    content: '\\f057';\n}\n.icon-check-circle:before\n{\n    content: '\\f058';\n}\n.icon-question-circle:before\n{\n    content: '\\f059';\n}\n.icon-info-circle:before\n{\n    content: '\\f05a';\n}\n.icon-crosshairs:before\n{\n    content: '\\f05b';\n}\n.icon-times-circle-o:before\n{\n    content: '\\f05c';\n}\n.icon-check-circle-o:before\n{\n    content: '\\f05d';\n}\n.icon-ban:before\n{\n    content: '\\f05e';\n}\n.icon-arrow-left:before\n{\n    content: '\\f060';\n}\n.icon-arrow-right:before\n{\n    content: '\\f061';\n}\n.icon-arrow-up:before\n{\n    content: '\\f062';\n}\n.icon-arrow-down:before\n{\n    content: '\\f063';\n}\n.icon-mail-forward:before,\n.icon-share:before\n{\n    content: '\\f064';\n}\n.icon-expand:before\n{\n    content: '\\f065';\n}\n.icon-compress:before\n{\n    content: '\\f066';\n}\n.icon-plus:before\n{\n    content: '\\f067';\n}\n.icon-minus:before\n{\n    content: '\\f068';\n}\n.icon-asterisk:before\n{\n    content: '\\f069';\n}\n.icon-exclamation-circle:before\n{\n    content: '\\f06a';\n}\n.icon-gift:before\n{\n    content: '\\f06b';\n}\n.icon-leaf:before\n{\n    content: '\\f06c';\n}\n.icon-fire:before\n{\n    content: '\\f06d';\n}\n.icon-eye:before\n{\n    content: '\\f06e';\n}\n.icon-eye-slash:before\n{\n    content: '\\f070';\n}\n.icon-warning:before,\n.icon-exclamation-triangle:before\n{\n    content: '\\f071';\n}\n.icon-plane:before\n{\n    content: '\\f072';\n}\n.icon-calendar:before\n{\n    content: '\\f073';\n}\n.icon-random:before\n{\n    content: '\\f074';\n}\n.icon-comment:before\n{\n    content: '\\f075';\n}\n.icon-magnet:before\n{\n    content: '\\f076';\n}\n.icon-chevron-up:before\n{\n    content: '\\f077';\n}\n.icon-chevron-down:before\n{\n    content: '\\f078';\n}\n.icon-retweet:before\n{\n    content: '\\f079';\n}\n.icon-shopping-cart:before\n{\n    content: '\\f07a';\n}\n.icon-folder:before\n{\n    content: '\\f07b';\n}\n.icon-folder-open:before\n{\n    content: '\\f07c';\n}\n.icon-arrows-v:before\n{\n    content: '\\f07d';\n}\n.icon-arrows-h:before\n{\n    content: '\\f07e';\n}\n.icon-bar-chart-o:before,\n.icon-bar-chart:before\n{\n    content: '\\f080';\n}\n.icon-twitter-square:before\n{\n    content: '\\f081';\n}\n.icon-facebook-square:before\n{\n    content: '\\f082';\n}\n.icon-camera-retro:before\n{\n    content: '\\f083';\n}\n.icon-key:before\n{\n    content: '\\f084';\n}\n.icon-gears:before,\n.icon-cogs:before\n{\n    content: '\\f085';\n}\n.icon-comments:before\n{\n    content: '\\f086';\n}\n.icon-thumbs-o-up:before\n{\n    content: '\\f087';\n}\n.icon-thumbs-o-down:before\n{\n    content: '\\f088';\n}\n.icon-star-half:before\n{\n    content: '\\f089';\n}\n.icon-heart-o:before\n{\n    content: '\\f08a';\n}\n.icon-sign-out:before\n{\n    content: '\\f08b';\n}\n.icon-linkedin-square:before\n{\n    content: '\\f08c';\n}\n.icon-thumb-tack:before\n{\n    content: '\\f08d';\n}\n.icon-external-link:before\n{\n    content: '\\f08e';\n}\n.icon-sign-in:before\n{\n    content: '\\f090';\n}\n.icon-trophy:before\n{\n    content: '\\f091';\n}\n.icon-github-square:before\n{\n    content: '\\f092';\n}\n.icon-upload:before\n{\n    content: '\\f093';\n}\n.icon-lemon-o:before\n{\n    content: '\\f094';\n}\n.icon-phone:before\n{\n    content: '\\f095';\n}\n.icon-square-o:before\n{\n    content: '\\f096';\n}\n.icon-bookmark-o:before\n{\n    content: '\\f097';\n}\n.icon-phone-square:before\n{\n    content: '\\f098';\n}\n.icon-twitter:before\n{\n    content: '\\f099';\n}\n.icon-facebook:before\n{\n    content: '\\f09a';\n}\n.icon-github:before\n{\n    content: '\\f09b';\n}\n.icon-unlock:before\n{\n    content: '\\f09c';\n}\n.icon-credit-card:before\n{\n    content: '\\f09d';\n}\n.icon-feed:before,\n.icon-rss:before\n{\n    content: '\\f09e';\n}\n.icon-hdd-o:before\n{\n    content: '\\f0a0';\n}\n.icon-bullhorn:before\n{\n    content: '\\f0a1';\n}\n.icon-bell:before\n{\n    content: '\\f0f3';\n}\n.icon-certificate:before\n{\n    content: '\\f0a3';\n}\n.icon-hand-o-right:before\n{\n    content: '\\f0a4';\n}\n.icon-hand-o-left:before\n{\n    content: '\\f0a5';\n}\n.icon-hand-o-up:before\n{\n    content: '\\f0a6';\n}\n.icon-hand-o-down:before\n{\n    content: '\\f0a7';\n}\n.icon-arrow-circle-left:before\n{\n    content: '\\f0a8';\n}\n.icon-arrow-circle-right:before\n{\n    content: '\\f0a9';\n}\n.icon-arrow-circle-up:before\n{\n    content: '\\f0aa';\n}\n.icon-arrow-circle-down:before\n{\n    content: '\\f0ab';\n}\n.icon-globe:before\n{\n    content: '\\f0ac';\n}\n.icon-wrench:before\n{\n    content: '\\f0ad';\n}\n.icon-tasks:before\n{\n    content: '\\f0ae';\n}\n.icon-filter:before\n{\n    content: '\\f0b0';\n}\n.icon-briefcase:before\n{\n    content: '\\f0b1';\n}\n.icon-arrows-alt:before\n{\n    content: '\\f0b2';\n}\n.icon-group:before,\n.icon-users:before\n{\n    content: '\\f0c0';\n}\n.icon-chain:before,\n.icon-link:before\n{\n    content: '\\f0c1';\n}\n.icon-cloud:before\n{\n    content: '\\f0c2';\n}\n.icon-flask:before\n{\n    content: '\\f0c3';\n}\n.icon-cut:before,\n.icon-scissors:before\n{\n    content: '\\f0c4';\n}\n.icon-copy:before,\n.icon-files-o:before\n{\n    content: '\\f0c5';\n}\n.icon-paperclip:before\n{\n    content: '\\f0c6';\n}\n.icon-save:before,\n.icon-floppy-o:before\n{\n    content: '\\f0c7';\n}\n.icon-square:before\n{\n    content: '\\f0c8';\n}\n.icon-navicon:before,\n.icon-reorder:before,\n.icon-bars:before\n{\n    content: '\\f0c9';\n}\n.icon-list-ul:before\n{\n    content: '\\f0ca';\n}\n.icon-list-ol:before\n{\n    content: '\\f0cb';\n}\n.icon-strikethrough:before\n{\n    content: '\\f0cc';\n}\n.icon-underline:before\n{\n    content: '\\f0cd';\n}\n.icon-table:before\n{\n    content: '\\f0ce';\n}\n.icon-magic:before\n{\n    content: '\\f0d0';\n}\n.icon-truck:before\n{\n    content: '\\f0d1';\n}\n.icon-pinterest:before\n{\n    content: '\\f0d2';\n}\n.icon-pinterest-square:before\n{\n    content: '\\f0d3';\n}\n.icon-google-plus-square:before\n{\n    content: '\\f0d4';\n}\n.icon-google-plus:before\n{\n    content: '\\f0d5';\n}\n.icon-money:before\n{\n    content: '\\f0d6';\n}\n.icon-caret-down:before\n{\n    content: '\\f0d7';\n}\n.icon-caret-up:before\n{\n    content: '\\f0d8';\n}\n.icon-caret-left:before\n{\n    content: '\\f0d9';\n}\n.icon-caret-right:before\n{\n    content: '\\f0da';\n}\n.icon-columns:before\n{\n    content: '\\f0db';\n}\n.icon-unsorted:before,\n.icon-sort:before\n{\n    content: '\\f0dc';\n}\n.icon-sort-down:before,\n.icon-sort-desc:before\n{\n    content: '\\f0dd';\n}\n.icon-sort-up:before,\n.icon-sort-asc:before\n{\n    content: '\\f0de';\n}\n.icon-envelope:before\n{\n    content: '\\f0e0';\n}\n.icon-linkedin:before\n{\n    content: '\\f0e1';\n}\n.icon-rotate-left:before,\n.icon-undo:before\n{\n    content: '\\f0e2';\n}\n.icon-legal:before,\n.icon-gavel:before\n{\n    content: '\\f0e3';\n}\n.icon-dashboard:before,\n.icon-tachometer:before\n{\n    content: '\\f0e4';\n}\n.icon-comment-o:before\n{\n    content: '\\f0e5';\n}\n.icon-comments-o:before\n{\n    content: '\\f0e6';\n}\n.icon-flash:before,\n.icon-bolt:before\n{\n    content: '\\f0e7';\n}\n.icon-sitemap:before\n{\n    content: '\\f0e8';\n}\n.icon-umbrella:before\n{\n    content: '\\f0e9';\n}\n.icon-paste:before,\n.icon-clipboard:before\n{\n    content: '\\f0ea';\n}\n.icon-lightbulb-o:before\n{\n    content: '\\f0eb';\n}\n.icon-exchange:before\n{\n    content: '\\f0ec';\n}\n.icon-cloud-download:before\n{\n    content: '\\f0ed';\n}\n.icon-cloud-upload:before\n{\n    content: '\\f0ee';\n}\n.icon-user-md:before\n{\n    content: '\\f0f0';\n}\n.icon-stethoscope:before\n{\n    content: '\\f0f1';\n}\n.icon-suitcase:before\n{\n    content: '\\f0f2';\n}\n.icon-bell-o:before\n{\n    content: '\\f0a2';\n}\n.icon-coffee:before\n{\n    content: '\\f0f4';\n}\n.icon-cutlery:before\n{\n    content: '\\f0f5';\n}\n.icon-file-text-o:before\n{\n    content: '\\f0f6';\n}\n.icon-building-o:before\n{\n    content: '\\f0f7';\n}\n.icon-hospital-o:before\n{\n    content: '\\f0f8';\n}\n.icon-ambulance:before\n{\n    content: '\\f0f9';\n}\n.icon-medkit:before\n{\n    content: '\\f0fa';\n}\n.icon-fighter-jet:before\n{\n    content: '\\f0fb';\n}\n.icon-beer:before\n{\n    content: '\\f0fc';\n}\n.icon-h-square:before\n{\n    content: '\\f0fd';\n}\n.icon-plus-square:before\n{\n    content: '\\f0fe';\n}\n.icon-angle-double-left:before\n{\n    content: '\\f100';\n}\n.icon-angle-double-right:before\n{\n    content: '\\f101';\n}\n.icon-angle-double-up:before\n{\n    content: '\\f102';\n}\n.icon-angle-double-down:before\n{\n    content: '\\f103';\n}\n.icon-angle-left:before\n{\n    content: '\\f104';\n}\n.icon-angle-right:before\n{\n    content: '\\f105';\n}\n.icon-angle-up:before\n{\n    content: '\\f106';\n}\n.icon-angle-down:before\n{\n    content: '\\f107';\n}\n.icon-desktop:before\n{\n    content: '\\f108';\n}\n.icon-laptop:before\n{\n    content: '\\f109';\n}\n.icon-tablet:before\n{\n    content: '\\f10a';\n}\n.icon-mobile-phone:before,\n.icon-mobile:before\n{\n    content: '\\f10b';\n}\n.icon-circle-o:before\n{\n    content: '\\f10c';\n}\n.icon-quote-left:before\n{\n    content: '\\f10d';\n}\n.icon-quote-right:before\n{\n    content: '\\f10e';\n}\n.icon-spinner:before\n{\n    content: '\\f110';\n}\n.icon-circle:before\n{\n    content: '\\f111';\n}\n.icon-mail-reply:before,\n.icon-reply:before\n{\n    content: '\\f112';\n}\n.icon-github-alt:before\n{\n    content: '\\f113';\n}\n.icon-folder-o:before\n{\n    content: '\\f114';\n}\n.icon-folder-open-o:before\n{\n    content: '\\f115';\n}\n.icon-smile-o:before\n{\n    content: '\\f118';\n}\n.icon-frown-o:before\n{\n    content: '\\f119';\n}\n.icon-meh-o:before\n{\n    content: '\\f11a';\n}\n.icon-gamepad:before\n{\n    content: '\\f11b';\n}\n.icon-keyboard-o:before\n{\n    content: '\\f11c';\n}\n.icon-flag-o:before\n{\n    content: '\\f11d';\n}\n.icon-flag-checkered:before\n{\n    content: '\\f11e';\n}\n.icon-terminal:before\n{\n    content: '\\f120';\n}\n.icon-code:before\n{\n    content: '\\f121';\n}\n.icon-mail-reply-all:before,\n.icon-reply-all:before\n{\n    content: '\\f122';\n}\n.icon-star-half-empty:before,\n.icon-star-half-full:before,\n.icon-star-half-o:before\n{\n    content: '\\f123';\n}\n.icon-location-arrow:before\n{\n    content: '\\f124';\n}\n.icon-crop:before\n{\n    content: '\\f125';\n}\n.icon-code-fork:before\n{\n    content: '\\f126';\n}\n.icon-unlink:before,\n.icon-chain-broken:before\n{\n    content: '\\f127';\n}\n.icon-question:before\n{\n    content: '\\f128';\n}\n.icon-info:before\n{\n    content: '\\f129';\n}\n.icon-exclamation:before\n{\n    content: '\\f12a';\n}\n.icon-superscript:before\n{\n    content: '\\f12b';\n}\n.icon-subscript:before\n{\n    content: '\\f12c';\n}\n.icon-eraser:before\n{\n    content: '\\f12d';\n}\n.icon-puzzle-piece:before\n{\n    content: '\\f12e';\n}\n.icon-microphone:before\n{\n    content: '\\f130';\n}\n.icon-microphone-slash:before\n{\n    content: '\\f131';\n}\n.icon-shield:before\n{\n    content: '\\f132';\n}\n.icon-calendar-o:before\n{\n    content: '\\f133';\n}\n.icon-fire-extinguisher:before\n{\n    content: '\\f134';\n}\n.icon-rocket:before\n{\n    content: '\\f135';\n}\n.icon-maxcdn:before\n{\n    content: '\\f136';\n}\n.icon-chevron-circle-left:before\n{\n    content: '\\f137';\n}\n.icon-chevron-circle-right:before\n{\n    content: '\\f138';\n}\n.icon-chevron-circle-up:before\n{\n    content: '\\f139';\n}\n.icon-chevron-circle-down:before\n{\n    content: '\\f13a';\n}\n.icon-html5:before\n{\n    content: '\\f13b';\n}\n.icon-css3:before\n{\n    content: '\\f13c';\n}\n.icon-anchor:before\n{\n    content: '\\f13d';\n}\n.icon-unlock-alt:before\n{\n    content: '\\f13e';\n}\n.icon-bullseye:before\n{\n    content: '\\f140';\n}\n.icon-ellipsis-h:before\n{\n    content: '\\f141';\n}\n.icon-ellipsis-v:before\n{\n    content: '\\f142';\n}\n.icon-feed-square:before,\n.icon-rss-square:before\n{\n    content: '\\f143';\n}\n.icon-play-circle:before\n{\n    content: '\\f144';\n}\n.icon-ticket:before\n{\n    content: '\\f145';\n}\n.icon-minus-square:before\n{\n    content: '\\f146';\n}\n.icon-minus-square-o:before\n{\n    content: '\\f147';\n}\n.icon-level-up:before\n{\n    content: '\\f148';\n}\n.icon-level-down:before\n{\n    content: '\\f149';\n}\n.icon-check-square:before\n{\n    content: '\\f14a';\n}\n.icon-pencil-square:before\n{\n    content: '\\f14b';\n}\n.icon-external-link-square:before\n{\n    content: '\\f14c';\n}\n.icon-share-square:before\n{\n    content: '\\f14d';\n}\n.icon-compass:before\n{\n    content: '\\f14e';\n}\n.icon-toggle-down:before,\n.icon-caret-square-o-down:before\n{\n    content: '\\f150';\n}\n.icon-toggle-up:before,\n.icon-caret-square-o-up:before\n{\n    content: '\\f151';\n}\n.icon-toggle-right:before,\n.icon-caret-square-o-right:before\n{\n    content: '\\f152';\n}\n.icon-euro:before,\n.icon-eur:before\n{\n    content: '\\f153';\n}\n.icon-gbp:before\n{\n    content: '\\f154';\n}\n.icon-dollar:before,\n.icon-usd:before\n{\n    content: '\\f155';\n}\n.icon-rupee:before,\n.icon-inr:before\n{\n    content: '\\f156';\n}\n.icon-cny:before,\n.icon-rmb:before,\n.icon-yen:before,\n.icon-jpy:before\n{\n    content: '\\f157';\n}\n.icon-ruble:before,\n.icon-rouble:before,\n.icon-rub:before\n{\n    content: '\\f158';\n}\n.icon-won:before,\n.icon-krw:before\n{\n    content: '\\f159';\n}\n.icon-bitcoin:before,\n.icon-btc:before\n{\n    content: '\\f15a';\n}\n.icon-file:before\n{\n    content: '\\f15b';\n}\n.icon-file-text:before\n{\n    content: '\\f15c';\n}\n.icon-sort-alpha-asc:before\n{\n    content: '\\f15d';\n}\n.icon-sort-alpha-desc:before\n{\n    content: '\\f15e';\n}\n.icon-sort-amount-asc:before\n{\n    content: '\\f160';\n}\n.icon-sort-amount-desc:before\n{\n    content: '\\f161';\n}\n.icon-sort-numeric-asc:before\n{\n    content: '\\f162';\n}\n.icon-sort-numeric-desc:before\n{\n    content: '\\f163';\n}\n.icon-thumbs-up:before\n{\n    content: '\\f164';\n}\n.icon-thumbs-down:before\n{\n    content: '\\f165';\n}\n.icon-youtube-square:before\n{\n    content: '\\f166';\n}\n.icon-youtube:before\n{\n    content: '\\f167';\n}\n.icon-xing:before\n{\n    content: '\\f168';\n}\n.icon-xing-square:before\n{\n    content: '\\f169';\n}\n.icon-youtube-play:before\n{\n    content: '\\f16a';\n}\n.icon-dropbox:before\n{\n    content: '\\f16b';\n}\n.icon-stack-overflow:before\n{\n    content: '\\f16c';\n}\n.icon-instagram:before\n{\n    content: '\\f16d';\n}\n.icon-flickr:before\n{\n    content: '\\f16e';\n}\n.icon-adn:before\n{\n    content: '\\f170';\n}\n.icon-bitbucket:before\n{\n    content: '\\f171';\n}\n.icon-bitbucket-square:before\n{\n    content: '\\f172';\n}\n.icon-tumblr:before\n{\n    content: '\\f173';\n}\n.icon-tumblr-square:before\n{\n    content: '\\f174';\n}\n.icon-long-arrow-down:before\n{\n    content: '\\f175';\n}\n.icon-long-arrow-up:before\n{\n    content: '\\f176';\n}\n.icon-long-arrow-left:before\n{\n    content: '\\f177';\n}\n.icon-long-arrow-right:before\n{\n    content: '\\f178';\n}\n.icon-apple:before\n{\n    content: '\\f179';\n}\n.icon-windows:before\n{\n    content: '\\f17a';\n}\n.icon-android:before\n{\n    content: '\\f17b';\n}\n.icon-linux:before\n{\n    content: '\\f17c';\n}\n.icon-dribbble:before\n{\n    content: '\\f17d';\n}\n.icon-skype:before\n{\n    content: '\\f17e';\n}\n.icon-foursquare:before\n{\n    content: '\\f180';\n}\n.icon-trello:before\n{\n    content: '\\f181';\n}\n.icon-female:before\n{\n    content: '\\f182';\n}\n.icon-male:before\n{\n    content: '\\f183';\n}\n.icon-gittip:before\n{\n    content: '\\f184';\n}\n.icon-sun-o:before\n{\n    content: '\\f185';\n}\n.icon-moon-o:before\n{\n    content: '\\f186';\n}\n.icon-archive:before\n{\n    content: '\\f187';\n}\n.icon-bug:before\n{\n    content: '\\f188';\n}\n.icon-vk:before\n{\n    content: '\\f189';\n}\n.icon-weibo:before\n{\n    content: '\\f18a';\n}\n.icon-renren:before\n{\n    content: '\\f18b';\n}\n.icon-pagelines:before\n{\n    content: '\\f18c';\n}\n.icon-stack-exchange:before\n{\n    content: '\\f18d';\n}\n.icon-arrow-circle-o-right:before\n{\n    content: '\\f18e';\n}\n.icon-arrow-circle-o-left:before\n{\n    content: '\\f190';\n}\n.icon-toggle-left:before,\n.icon-caret-square-o-left:before\n{\n    content: '\\f191';\n}\n.icon-dot-circle-o:before\n{\n    content: '\\f192';\n}\n.icon-wheelchair:before\n{\n    content: '\\f193';\n}\n.icon-vimeo-square:before\n{\n    content: '\\f194';\n}\n.icon-turkish-lira:before,\n.icon-try:before\n{\n    content: '\\f195';\n}\n.icon-plus-square-o:before\n{\n    content: '\\f196';\n}\n.icon-space-shuttle:before\n{\n    content: '\\f197';\n}\n.icon-slack:before\n{\n    content: '\\f198';\n}\n.icon-envelope-square:before\n{\n    content: '\\f199';\n}\n.icon-wordpress:before\n{\n    content: '\\f19a';\n}\n.icon-openid:before\n{\n    content: '\\f19b';\n}\n.icon-institution:before,\n.icon-bank:before,\n.icon-university:before\n{\n    content: '\\f19c';\n}\n.icon-mortar-board:before,\n.icon-graduation-cap:before\n{\n    content: '\\f19d';\n}\n.icon-yahoo:before\n{\n    content: '\\f19e';\n}\n.icon-google:before\n{\n    content: '\\f1a0';\n}\n.icon-reddit:before\n{\n    content: '\\f1a1';\n}\n.icon-reddit-square:before\n{\n    content: '\\f1a2';\n}\n.icon-stumbleupon-circle:before\n{\n    content: '\\f1a3';\n}\n.icon-stumbleupon:before\n{\n    content: '\\f1a4';\n}\n.icon-delicious:before\n{\n    content: '\\f1a5';\n}\n.icon-digg:before\n{\n    content: '\\f1a6';\n}\n.icon-pied-piper:before\n{\n    content: '\\f1a7';\n}\n.icon-pied-piper-alt:before\n{\n    content: '\\f1a8';\n}\n.icon-drupal:before\n{\n    content: '\\f1a9';\n}\n.icon-joomla:before\n{\n    content: '\\f1aa';\n}\n.icon-language:before\n{\n    content: '\\f1ab';\n}\n.icon-fax:before\n{\n    content: '\\f1ac';\n}\n.icon-building:before\n{\n    content: '\\f1ad';\n}\n.icon-child:before\n{\n    content: '\\f1ae';\n}\n.icon-paw:before\n{\n    content: '\\f1b0';\n}\n.icon-spoon:before\n{\n    content: '\\f1b1';\n}\n.icon-cube:before\n{\n    content: '\\f1b2';\n}\n.icon-cubes:before\n{\n    content: '\\f1b3';\n}\n.icon-behance:before\n{\n    content: '\\f1b4';\n}\n.icon-behance-square:before\n{\n    content: '\\f1b5';\n}\n.icon-steam:before\n{\n    content: '\\f1b6';\n}\n.icon-steam-square:before\n{\n    content: '\\f1b7';\n}\n.icon-recycle:before\n{\n    content: '\\f1b8';\n}\n.icon-automobile:before,\n.icon-car:before\n{\n    content: '\\f1b9';\n}\n.icon-cab:before,\n.icon-taxi:before\n{\n    content: '\\f1ba';\n}\n.icon-tree:before\n{\n    content: '\\f1bb';\n}\n.icon-spotify:before\n{\n    content: '\\f1bc';\n}\n.icon-deviantart:before\n{\n    content: '\\f1bd';\n}\n.icon-soundcloud:before\n{\n    content: '\\f1be';\n}\n.icon-database:before\n{\n    content: '\\f1c0';\n}\n.icon-file-pdf-o:before\n{\n    content: '\\f1c1';\n}\n.icon-file-word-o:before\n{\n    content: '\\f1c2';\n}\n.icon-file-excel-o:before\n{\n    content: '\\f1c3';\n}\n.icon-file-powerpoint-o:before\n{\n    content: '\\f1c4';\n}\n.icon-file-photo-o:before,\n.icon-file-picture-o:before,\n.icon-file-image-o:before\n{\n    content: '\\f1c5';\n}\n.icon-file-zip-o:before,\n.icon-file-archive-o:before\n{\n    content: '\\f1c6';\n}\n.icon-file-sound-o:before,\n.icon-file-audio-o:before\n{\n    content: '\\f1c7';\n}\n.icon-file-movie-o:before,\n.icon-file-video-o:before\n{\n    content: '\\f1c8';\n}\n.icon-file-code-o:before\n{\n    content: '\\f1c9';\n}\n.icon-vine:before\n{\n    content: '\\f1ca';\n}\n.icon-codepen:before\n{\n    content: '\\f1cb';\n}\n.icon-jsfiddle:before\n{\n    content: '\\f1cc';\n}\n.icon-life-bouy:before,\n.icon-life-buoy:before,\n.icon-life-saver:before,\n.icon-support:before,\n.icon-life-ring:before\n{\n    content: '\\f1cd';\n}\n.icon-circle-o-notch:before\n{\n    content: '\\f1ce';\n}\n.icon-ra:before,\n.icon-rebel:before\n{\n    content: '\\f1d0';\n}\n.icon-ge:before,\n.icon-empire:before\n{\n    content: '\\f1d1';\n}\n.icon-git-square:before\n{\n    content: '\\f1d2';\n}\n.icon-git:before\n{\n    content: '\\f1d3';\n}\n.icon-hacker-news:before\n{\n    content: '\\f1d4';\n}\n.icon-tencent-weibo:before\n{\n    content: '\\f1d5';\n}\n.icon-qq:before\n{\n    content: '\\f1d6';\n}\n.icon-wechat:before,\n.icon-weixin:before\n{\n    content: '\\f1d7';\n}\n.icon-send:before,\n.icon-paper-plane:before\n{\n    content: '\\f1d8';\n}\n.icon-send-o:before,\n.icon-paper-plane-o:before\n{\n    content: '\\f1d9';\n}\n.icon-history:before\n{\n    content: '\\f1da';\n}\n.icon-circle-thin:before\n{\n    content: '\\f1db';\n}\n.icon-header:before\n{\n    content: '\\f1dc';\n}\n.icon-paragraph:before\n{\n    content: '\\f1dd';\n}\n.icon-sliders:before\n{\n    content: '\\f1de';\n}\n.icon-share-alt:before\n{\n    content: '\\f1e0';\n}\n.icon-share-alt-square:before\n{\n    content: '\\f1e1';\n}\n.icon-bomb:before\n{\n    content: '\\f1e2';\n}\n.icon-soccer-ball-o:before,\n.icon-futbol-o:before\n{\n    content: '\\f1e3';\n}\n.icon-tty:before\n{\n    content: '\\f1e4';\n}\n.icon-binoculars:before\n{\n    content: '\\f1e5';\n}\n.icon-plug:before\n{\n    content: '\\f1e6';\n}\n.icon-slideshare:before\n{\n    content: '\\f1e7';\n}\n.icon-twitch:before\n{\n    content: '\\f1e8';\n}\n.icon-yelp:before\n{\n    content: '\\f1e9';\n}\n.icon-newspaper-o:before\n{\n    content: '\\f1ea';\n}\n.icon-wifi:before\n{\n    content: '\\f1eb';\n}\n.icon-calculator:before\n{\n    content: '\\f1ec';\n}\n.icon-paypal:before\n{\n    content: '\\f1ed';\n}\n.icon-google-wallet:before\n{\n    content: '\\f1ee';\n}\n.icon-cc-visa:before\n{\n    content: '\\f1f0';\n}\n.icon-cc-mastercard:before\n{\n    content: '\\f1f1';\n}\n.icon-cc-discover:before\n{\n    content: '\\f1f2';\n}\n.icon-cc-amex:before\n{\n    content: '\\f1f3';\n}\n.icon-cc-paypal:before\n{\n    content: '\\f1f4';\n}\n.icon-cc-stripe:before\n{\n    content: '\\f1f5';\n}\n.icon-bell-slash:before\n{\n    content: '\\f1f6';\n}\n.icon-bell-slash-o:before\n{\n    content: '\\f1f7';\n}\n.icon-trash:before\n{\n    content: '\\f1f8';\n}\n.icon-copyright:before\n{\n    content: '\\f1f9';\n}\n.icon-at:before\n{\n    content: '\\f1fa';\n}\n.icon-eyedropper:before\n{\n    content: '\\f1fb';\n}\n.icon-paint-brush:before\n{\n    content: '\\f1fc';\n}\n.icon-birthday-cake:before\n{\n    content: '\\f1fd';\n}\n.icon-area-chart:before\n{\n    content: '\\f1fe';\n}\n.icon-pie-chart:before\n{\n    content: '\\f200';\n}\n.icon-line-chart:before\n{\n    content: '\\f201';\n}\n.icon-lastfm:before\n{\n    content: '\\f202';\n}\n.icon-lastfm-square:before\n{\n    content: '\\f203';\n}\n.icon-toggle-off:before\n{\n    content: '\\f204';\n}\n.icon-toggle-on:before\n{\n    content: '\\f205';\n}\n.icon-bicycle:before\n{\n    content: '\\f206';\n}\n.icon-bus:before\n{\n    content: '\\f207';\n}\n.icon-ioxhost:before\n{\n    content: '\\f208';\n}\n.icon-angellist:before\n{\n    content: '\\f209';\n}\n.icon-cc:before\n{\n    content: '\\f20a';\n}\n.icon-shekel:before,\n.icon-sheqel:before,\n.icon-ils:before\n{\n    content: '\\f20b';\n}\n.icon-meanpath:before\n{\n    content: '\\f20c';\n}\n.icon-glass:before,\n.icon-music:before,\n.icon-search:before,\n.icon-envelope-o:before,\n.icon-heart:before,\n.icon-star:before,\n.icon-star-o:before,\n.icon-user:before,\n.icon-film:before,\n.icon-th-large:before,\n.icon-th:before,\n.icon-th-list:before,\n.icon-check:before,\n.icon-remove:before,\n.icon-close:before,\n.icon-times:before,\n.icon-search-plus:before,\n.icon-search-minus:before,\n.icon-power-off:before,\n.icon-signal:before,\n.icon-gear:before,\n.icon-cog:before,\n.icon-trash-o:before,\n.icon-home:before,\n.icon-file-o:before,\n.icon-clock-o:before,\n.icon-road:before,\n.icon-download:before,\n.icon-arrow-circle-o-down:before,\n.icon-arrow-circle-o-up:before,\n.icon-inbox:before,\n.icon-play-circle-o:before,\n.icon-rotate-right:before,\n.icon-repeat:before,\n.icon-refresh:before,\n.icon-list-alt:before,\n.icon-lock:before,\n.icon-flag:before,\n.icon-headphones:before,\n.icon-volume-off:before,\n.icon-volume-down:before,\n.icon-volume-up:before,\n.icon-qrcode:before,\n.icon-barcode:before,\n.icon-tag:before,\n.icon-tags:before,\n.icon-book:before,\n.icon-bookmark:before,\n.icon-print:before,\n.icon-camera:before,\n.icon-font:before,\n.icon-bold:before,\n.icon-italic:before,\n.icon-text-height:before,\n.icon-text-width:before,\n.icon-align-left:before,\n.icon-align-center:before,\n.icon-align-right:before,\n.icon-align-justify:before,\n.icon-list:before,\n.icon-dedent:before,\n.icon-outdent:before,\n.icon-indent:before,\n.icon-video-camera:before,\n.icon-photo:before,\n.icon-image:before,\n.icon-picture-o:before,\n.icon-pencil:before,\n.icon-map-marker:before,\n.icon-adjust:before,\n.icon-tint:before,\n.icon-edit:before,\n.icon-pencil-square-o:before,\n.icon-share-square-o:before,\n.icon-check-square-o:before,\n.icon-arrows:before,\n.icon-step-backward:before,\n.icon-fast-backward:before,\n.icon-backward:before,\n.icon-play:before,\n.icon-pause:before,\n.icon-stop:before,\n.icon-forward:before,\n.icon-fast-forward:before,\n.icon-step-forward:before,\n.icon-eject:before,\n.icon-chevron-left:before,\n.icon-chevron-right:before,\n.icon-plus-circle:before,\n.icon-minus-circle:before,\n.icon-times-circle:before,\n.icon-check-circle:before,\n.icon-question-circle:before,\n.icon-info-circle:before,\n.icon-crosshairs:before,\n.icon-times-circle-o:before,\n.icon-check-circle-o:before,\n.icon-ban:before,\n.icon-arrow-left:before,\n.icon-arrow-right:before,\n.icon-arrow-up:before,\n.icon-arrow-down:before,\n.icon-mail-forward:before,\n.icon-share:before,\n.icon-expand:before,\n.icon-compress:before,\n.icon-plus:before,\n.icon-minus:before,\n.icon-asterisk:before,\n.icon-exclamation-circle:before,\n.icon-gift:before,\n.icon-leaf:before,\n.icon-fire:before,\n.icon-eye:before,\n.icon-eye-slash:before,\n.icon-warning:before,\n.icon-exclamation-triangle:before,\n.icon-plane:before,\n.icon-calendar:before,\n.icon-random:before,\n.icon-comment:before,\n.icon-magnet:before,\n.icon-chevron-up:before,\n.icon-chevron-down:before,\n.icon-retweet:before,\n.icon-shopping-cart:before,\n.icon-folder:before,\n.icon-folder-open:before,\n.icon-arrows-v:before,\n.icon-arrows-h:before,\n.icon-bar-chart-o:before,\n.icon-bar-chart:before,\n.icon-twitter-square:before,\n.icon-facebook-square:before,\n.icon-camera-retro:before,\n.icon-key:before,\n.icon-gears:before,\n.icon-cogs:before,\n.icon-comments:before,\n.icon-thumbs-o-up:before,\n.icon-thumbs-o-down:before,\n.icon-star-half:before,\n.icon-heart-o:before,\n.icon-sign-out:before,\n.icon-linkedin-square:before,\n.icon-thumb-tack:before,\n.icon-external-link:before,\n.icon-sign-in:before,\n.icon-trophy:before,\n.icon-github-square:before,\n.icon-upload:before,\n.icon-lemon-o:before,\n.icon-phone:before,\n.icon-square-o:before,\n.icon-bookmark-o:before,\n.icon-phone-square:before,\n.icon-twitter:before,\n.icon-facebook:before,\n.icon-github:before,\n.icon-unlock:before,\n.icon-credit-card:before,\n.icon-feed:before,\n.icon-rss:before,\n.icon-hdd-o:before,\n.icon-bullhorn:before,\n.icon-bell:before,\n.icon-certificate:before,\n.icon-hand-o-right:before,\n.icon-hand-o-left:before,\n.icon-hand-o-up:before,\n.icon-hand-o-down:before,\n.icon-arrow-circle-left:before,\n.icon-arrow-circle-right:before,\n.icon-arrow-circle-up:before,\n.icon-arrow-circle-down:before,\n.icon-globe:before,\n.icon-wrench:before,\n.icon-tasks:before,\n.icon-filter:before,\n.icon-briefcase:before,\n.icon-arrows-alt:before,\n.icon-group:before,\n.icon-users:before,\n.icon-chain:before,\n.icon-link:before,\n.icon-cloud:before,\n.icon-flask:before,\n.icon-cut:before,\n.icon-scissors:before,\n.icon-copy:before,\n.icon-files-o:before,\n.icon-paperclip:before,\n.icon-save:before,\n.icon-floppy-o:before,\n.icon-square:before,\n.icon-navicon:before,\n.icon-reorder:before,\n.icon-bars:before,\n.icon-list-ul:before,\n.icon-list-ol:before,\n.icon-strikethrough:before,\n.icon-underline:before,\n.icon-table:before,\n.icon-magic:before,\n.icon-truck:before,\n.icon-pinterest:before,\n.icon-pinterest-square:before,\n.icon-google-plus-square:before,\n.icon-google-plus:before,\n.icon-money:before,\n.icon-caret-down:before,\n.icon-caret-up:before,\n.icon-caret-left:before,\n.icon-caret-right:before,\n.icon-columns:before,\n.icon-unsorted:before,\n.icon-sort:before,\n.icon-sort-down:before,\n.icon-sort-desc:before,\n.icon-sort-up:before,\n.icon-sort-asc:before,\n.icon-envelope:before,\n.icon-linkedin:before,\n.icon-rotate-left:before,\n.icon-undo:before,\n.icon-legal:before,\n.icon-gavel:before,\n.icon-dashboard:before,\n.icon-tachometer:before,\n.icon-comment-o:before,\n.icon-comments-o:before,\n.icon-flash:before,\n.icon-bolt:before,\n.icon-sitemap:before,\n.icon-umbrella:before,\n.icon-paste:before,\n.icon-clipboard:before,\n.icon-lightbulb-o:before,\n.icon-exchange:before,\n.icon-cloud-download:before,\n.icon-cloud-upload:before,\n.icon-user-md:before,\n.icon-stethoscope:before,\n.icon-suitcase:before,\n.icon-bell-o:before,\n.icon-coffee:before,\n.icon-cutlery:before,\n.icon-file-text-o:before,\n.icon-building-o:before,\n.icon-hospital-o:before,\n.icon-ambulance:before,\n.icon-medkit:before,\n.icon-fighter-jet:before,\n.icon-beer:before,\n.icon-h-square:before,\n.icon-plus-square:before,\n.icon-angle-double-left:before,\n.icon-angle-double-right:before,\n.icon-angle-double-up:before,\n.icon-angle-double-down:before,\n.icon-angle-left:before,\n.icon-angle-right:before,\n.icon-angle-up:before,\n.icon-angle-down:before,\n.icon-desktop:before,\n.icon-laptop:before,\n.icon-tablet:before,\n.icon-mobile-phone:before,\n.icon-mobile:before,\n.icon-circle-o:before,\n.icon-quote-left:before,\n.icon-quote-right:before,\n.icon-spinner:before,\n.icon-circle:before,\n.icon-mail-reply:before,\n.icon-reply:before,\n.icon-github-alt:before,\n.icon-folder-o:before,\n.icon-folder-open-o:before,\n.icon-smile-o:before,\n.icon-frown-o:before,\n.icon-meh-o:before,\n.icon-gamepad:before,\n.icon-keyboard-o:before,\n.icon-flag-o:before,\n.icon-flag-checkered:before,\n.icon-terminal:before,\n.icon-code:before,\n.icon-mail-reply-all:before,\n.icon-reply-all:before,\n.icon-star-half-empty:before,\n.icon-star-half-full:before,\n.icon-star-half-o:before,\n.icon-location-arrow:before,\n.icon-crop:before,\n.icon-code-fork:before,\n.icon-unlink:before,\n.icon-chain-broken:before,\n.icon-question:before,\n.icon-info:before,\n.icon-exclamation:before,\n.icon-superscript:before,\n.icon-subscript:before,\n.icon-eraser:before,\n.icon-puzzle-piece:before,\n.icon-microphone:before,\n.icon-microphone-slash:before,\n.icon-shield:before,\n.icon-calendar-o:before,\n.icon-fire-extinguisher:before,\n.icon-rocket:before,\n.icon-maxcdn:before,\n.icon-chevron-circle-left:before,\n.icon-chevron-circle-right:before,\n.icon-chevron-circle-up:before,\n.icon-chevron-circle-down:before,\n.icon-html5:before,\n.icon-css3:before,\n.icon-anchor:before,\n.icon-unlock-alt:before,\n.icon-bullseye:before,\n.icon-ellipsis-h:before,\n.icon-ellipsis-v:before,\n.icon-feed-square:before,\n.icon-rss-square:before,\n.icon-play-circle:before,\n.icon-ticket:before,\n.icon-minus-square:before,\n.icon-minus-square-o:before,\n.icon-level-up:before,\n.icon-level-down:before,\n.icon-check-square:before,\n.icon-pencil-square:before,\n.icon-external-link-square:before,\n.icon-share-square:before,\n.icon-compass:before,\n.icon-toggle-down:before,\n.icon-caret-square-o-down:before,\n.icon-toggle-up:before,\n.icon-caret-square-o-up:before,\n.icon-toggle-right:before,\n.icon-caret-square-o-right:before,\n.icon-euro:before,\n.icon-eur:before,\n.icon-gbp:before,\n.icon-dollar:before,\n.icon-usd:before,\n.icon-rupee:before,\n.icon-inr:before,\n.icon-cny:before,\n.icon-rmb:before,\n.icon-yen:before,\n.icon-jpy:before,\n.icon-ruble:before,\n.icon-rouble:before,\n.icon-rub:before,\n.icon-won:before,\n.icon-krw:before,\n.icon-bitcoin:before,\n.icon-btc:before,\n.icon-file:before,\n.icon-file-text:before,\n.icon-sort-alpha-asc:before,\n.icon-sort-alpha-desc:before,\n.icon-sort-amount-asc:before,\n.icon-sort-amount-desc:before,\n.icon-sort-numeric-asc:before,\n.icon-sort-numeric-desc:before,\n.icon-thumbs-up:before,\n.icon-thumbs-down:before,\n.icon-youtube-square:before,\n.icon-youtube:before,\n.icon-xing:before,\n.icon-xing-square:before,\n.icon-youtube-play:before,\n.icon-dropbox:before,\n.icon-stack-overflow:before,\n.icon-instagram:before,\n.icon-flickr:before,\n.icon-adn:before,\n.icon-bitbucket:before,\n.icon-bitbucket-square:before,\n.icon-tumblr:before,\n.icon-tumblr-square:before,\n.icon-long-arrow-down:before,\n.icon-long-arrow-up:before,\n.icon-long-arrow-left:before,\n.icon-long-arrow-right:before,\n.icon-apple:before,\n.icon-windows:before,\n.icon-android:before,\n.icon-linux:before,\n.icon-dribbble:before,\n.icon-skype:before,\n.icon-foursquare:before,\n.icon-trello:before,\n.icon-female:before,\n.icon-male:before,\n.icon-gittip:before,\n.icon-sun-o:before,\n.icon-moon-o:before,\n.icon-archive:before,\n.icon-bug:before,\n.icon-vk:before,\n.icon-weibo:before,\n.icon-renren:before,\n.icon-pagelines:before,\n.icon-stack-exchange:before,\n.icon-arrow-circle-o-right:before,\n.icon-arrow-circle-o-left:before,\n.icon-toggle-left:before,\n.icon-caret-square-o-left:before,\n.icon-dot-circle-o:before,\n.icon-wheelchair:before,\n.icon-vimeo-square:before,\n.icon-turkish-lira:before,\n.icon-try:before,\n.icon-plus-square-o:before,\n.icon-space-shuttle:before,\n.icon-slack:before,\n.icon-envelope-square:before,\n.icon-wordpress:before,\n.icon-openid:before,\n.icon-institution:before,\n.icon-bank:before,\n.icon-university:before,\n.icon-mortar-board:before,\n.icon-graduation-cap:before,\n.icon-yahoo:before,\n.icon-google:before,\n.icon-reddit:before,\n.icon-reddit-square:before,\n.icon-stumbleupon-circle:before,\n.icon-stumbleupon:before,\n.icon-delicious:before,\n.icon-digg:before,\n.icon-pied-piper:before,\n.icon-pied-piper-alt:before,\n.icon-drupal:before,\n.icon-joomla:before,\n.icon-language:before,\n.icon-fax:before,\n.icon-building:before,\n.icon-child:before,\n.icon-paw:before,\n.icon-spoon:before,\n.icon-cube:before,\n.icon-cubes:before,\n.icon-behance:before,\n.icon-behance-square:before,\n.icon-steam:before,\n.icon-steam-square:before,\n.icon-recycle:before,\n.icon-automobile:before,\n.icon-car:before,\n.icon-cab:before,\n.icon-taxi:before,\n.icon-tree:before,\n.icon-spotify:before,\n.icon-deviantart:before,\n.icon-soundcloud:before,\n.icon-database:before,\n.icon-file-pdf-o:before,\n.icon-file-word-o:before,\n.icon-file-excel-o:before,\n.icon-file-powerpoint-o:before,\n.icon-file-photo-o:before,\n.icon-file-picture-o:before,\n.icon-file-image-o:before,\n.icon-file-zip-o:before,\n.icon-file-archive-o:before,\n.icon-file-sound-o:before,\n.icon-file-audio-o:before,\n.icon-file-movie-o:before,\n.icon-file-video-o:before,\n.icon-file-code-o:before,\n.icon-vine:before,\n.icon-codepen:before,\n.icon-jsfiddle:before,\n.icon-life-bouy:before,\n.icon-life-buoy:before,\n.icon-life-saver:before,\n.icon-support:before,\n.icon-life-ring:before,\n.icon-circle-o-notch:before,\n.icon-ra:before,\n.icon-rebel:before,\n.icon-ge:before,\n.icon-empire:before,\n.icon-git-square:before,\n.icon-git:before,\n.icon-hacker-news:before,\n.icon-tencent-weibo:before,\n.icon-qq:before,\n.icon-wechat:before,\n.icon-weixin:before,\n.icon-send:before,\n.icon-paper-plane:before,\n.icon-send-o:before,\n.icon-paper-plane-o:before,\n.icon-history:before,\n.icon-circle-thin:before,\n.icon-header:before,\n.icon-paragraph:before,\n.icon-sliders:before,\n.icon-share-alt:before,\n.icon-share-alt-square:before,\n.icon-bomb:before,\n.icon-soccer-ball-o:before,\n.icon-futbol-o:before,\n.icon-tty:before,\n.icon-binoculars:before,\n.icon-plug:before,\n.icon-slideshare:before,\n.icon-twitch:before,\n.icon-yelp:before,\n.icon-newspaper-o:before,\n.icon-wifi:before,\n.icon-calculator:before,\n.icon-paypal:before,\n.icon-google-wallet:before,\n.icon-cc-visa:before,\n.icon-cc-mastercard:before,\n.icon-cc-discover:before,\n.icon-cc-amex:before,\n.icon-cc-paypal:before,\n.icon-cc-stripe:before,\n.icon-bell-slash:before,\n.icon-bell-slash-o:before,\n.icon-trash:before,\n.icon-copyright:before,\n.icon-at:before,\n.icon-eyedropper:before,\n.icon-paint-brush:before,\n.icon-birthday-cake:before,\n.icon-area-chart:before,\n.icon-pie-chart:before,\n.icon-line-chart:before,\n.icon-lastfm:before,\n.icon-lastfm-square:before,\n.icon-toggle-off:before,\n.icon-toggle-on:before,\n.icon-bicycle:before,\n.icon-bus:before,\n.icon-ioxhost:before,\n.icon-angellist:before,\n.icon-cc:before,\n.icon-shekel:before,\n.icon-sheqel:before,\n.icon-ils:before,\n.icon-meanpath:before\n{\n    font: normal normal normal 14px/1 icons;\n    font-size: inherit;\n\n    display: inline-block;\n\n    text-rendering: auto;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n/* ==========================================================================\n   2. General - Setting up some base styles\n   ========================================================================== */\nhtml\n{\n    font-size: 62.5%;\n\n    height: 100%;\n    max-height: 100%;\n}\nbody\n{\n    font-family: 'Noto Serif', serif;\n    font-size: 2rem;\n    line-height: 1.6em;\n\n    overflow-x: none;\n\n    height: 100%;\n    max-height: 100%;\n\n    color: #3a4145;\n}\n::-moz-selection\n{\n    color: #222;\n    background: #d6edff;\n    text-shadow: none;\n}\n::selection\n{\n    color: #222;\n    background: #d6edff;\n    text-shadow: none;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n{\n    font-family: 'Open Sans', sans-serif;\n    line-height: 1;\n\n    margin-top: 0;\n\n    text-rendering: optimizeLegibility;\n}\nh1\n{\n    font-size: 5rem;\n    line-height: 1.2em;\n\n    text-indent: -3px;\n    letter-spacing: -2px;\n}\nh2\n{\n    font-size: 4rem;\n    line-height: 1.2em;\n\n    text-indent: -2px;\n    letter-spacing: -1px;\n}\nh3\n{\n    font-size: 3.5rem;\n}\nh4\n{\n    font-size: 3rem;\n}\nh5\n{\n    font-size: 2.5rem;\n}\nh6\n{\n    font-size: 2rem;\n}\na\n{\n    transition: color ease .3s;\n\n    color: #4a4a4a;\n}\na:hover\n{\n    color: #57a3e8;\n}\nh1 a,\nh2 a,\nh3 a,\nh4 a,\nh5 a,\nh6 a\n{\n    color: #50585d;\n}\np,\nul,\nol,\ndl\n{\n    margin: 1.6em 0;\n}\nol ol,\nul ul,\nul ol,\nol ul\n{\n    margin: .4em 0;\n}\ndl dt\n{\n    font-weight: bold;\n\n    float: left;\n    clear: left;\n    overflow: hidden;\n\n    width: 180px;\n    margin-bottom: 1em;\n\n    text-align: right;\n    white-space: nowrap;\n    text-overflow: ellipsis;\n}\ndl dd\n{\n    margin-bottom: 1em;\n    margin-left: 200px;\n}\nhr\n{\n    display: block;\n\n    height: 1px;\n    margin: 3.2em 0;\n    padding: 0;\n\n    border: 0;\n    border-top: 1px solid #efefef;\n}\nblockquote\n{\n    box-sizing: border-box;\n    margin: 1.6em 0 1.6em -2.2em;\n    padding: 0 0 0 1.6em;\n\n    border-left: #4a4a4a .4em solid;\n}\nblockquote p\n{\n    font-style: italic;\n\n    margin: .8em 0;\n}\nblockquote small\n{\n    font-size: .9em;\n\n    display: inline-block;\n\n    margin: .8em 0 .8em 1.5em;\n\n    color: #ccc;\n}\nblockquote small:before\n{\n    content: '\\2014 \\00A0';\n}\nblockquote cite\n{\n    font-weight: bold;\n}\nblockquote cite a\n{\n    font-weight: normal;\n}\nmark\n{\n    background-color: #ffc336;\n}\ncode,\ntt\n{\n    font-family: Inconsolata, monospace, sans-serif;\n    font-size: .85em;\n\n    padding: 1px 3px;\n\n    white-space: pre-wrap;\n\n    border: 1px solid #e3edf3;\n    border-radius: 2px;\n    background: #f7fafb;\n}\npre\n{\n    font-family: Inconsolata, monospace, sans-serif;\n    font-size: .9em;\n\n    overflow: auto;\n    box-sizing: border-box;\n    width: 100%;\n    margin: 1.6em 0;\n    padding: 10px;\n\n    white-space: pre;\n\n    border: 1px solid #e3edf3;\n    border-radius: 3px;\n    background: #f7fafb;\n}\npre code,\ntt\n{\n    font-size: inherit;\n\n    padding: 0;\n\n    white-space: -moz-pre-wrap;\n    white-space:      pre-wrap;\n\n    border: none;\n    background: transparent;\n}\nkbd\n{\n    font-size: .9em;\n    font-weight: bold;\n\n    display: inline-block;\n\n    margin-bottom: .4em;\n    padding: 1px 8px;\n\n    color: #666;\n    border: #ccc 1px solid;\n    border-radius: 4px;\n    background: #f4f4f4;\n    box-shadow: 0 1px 0 rgba(0, 0, 0, .2), 0 1px 0 0 #fff inset;\n    text-shadow: #fff 0 1px 0;\n}\ntable\n{\n    box-sizing: border-box;\n    width: 100%;\n    max-width: 100%;\n    margin: 1.6em 0;\n\n    background-color: transparent;\n}\ntable th,\ntable td\n{\n    line-height: 20px;\n\n    padding: 8px;\n\n    text-align: left;\n    vertical-align: top;\n\n    border-top: 1px solid #efefef;\n}\ntable th\n{\n    color: #000;\n}\ntable caption + thead tr:first-child th,\ntable caption + thead tr:first-child td,\ntable colgroup + thead tr:first-child th,\ntable colgroup + thead tr:first-child td,\ntable thead:first-child tr:first-child th,\ntable thead:first-child tr:first-child td\n{\n    border-top: 0;\n}\ntable tbody + tbody\n{\n    border-top: 2px solid #efefef;\n}\ntable table table\n{\n    background-color: #fff;\n}\ntable tbody > tr:nth-child(odd) > td,\ntable tbody > tr:nth-child(odd) > th\n{\n    background-color: #f6f6f6;\n}\ntable.plain tbody > tr:nth-child(odd) > td,\ntable.plain tbody > tr:nth-child(odd) > th\n{\n    background: transparent;\n}\niframe,\n.fluid-width-video-wrapper\n{\n    display: block;\n\n    margin: 1.6em 0;\n}\n/* When a video is inside the fitvids wrapper, drop the\nmargin on the iframe, cause it breaks stuff. */\n.fluid-width-video-wrapper iframe\n{\n    margin: 0;\n}\n/* ==========================================================================\n   3. Utilities - These things get used a lot\n   ========================================================================== */\n/* Hides shit */\n.hidden\n{\n    display: none;\n    visibility: hidden;\n\n    text-indent: -9999px;\n}\n/* Creates a responsive wrapper that makes our content scale nicely */\n.inner\n{\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding-bottom: 1em;\n}\n/* Centres vertically yo. (IE8+) */\n.vertical-row\n{\n    display: table-row;\n}\n.vertical\n{\n    display: table-cell;\n\n    vertical-align: middle;\n}\n.clear\n{\n    clear: both;\n\n    height: 0;\n    margin: 0;\n    padding: 0;\n}\n.wrapword\n{\n    white-space: -moz-pre-wrap !important;\n    /* Mozilla, since 1999 */\n    white-space: -pre-wrap;\n    /* Opera 4-6 */\n    white-space:   -o-pre-wrap;\n    /* Opera 7 */\n    white-space:      pre-wrap;\n    white-space: normal;\n    /* css-3 */\n    word-wrap: break-word;\n    /* Internet Explorer 5.5+ */\n    word-break: break-all;\n}\n/* ==========================================================================\n   WP styles\n   ========================================================================== */\n/*--------------------------------------------------------------\n3.0 Elements\n--------------------------------------------------------------*/\nhr\n{\n    height: 1px;\n    margin-bottom: 1.5em;\n\n    border: 0;\n    background-color: #ccc;\n}\nul,\nol\n{\n    margin: 0 0 1.5em 3em;\n}\nul\n{\n    list-style: disc;\n}\nol\n{\n    list-style: decimal;\n}\nli > ul,\nli > ol\n{\n    margin-bottom: 0;\n    margin-left: 1.5em;\n}\ndt\n{\n    font-weight: bold;\n}\ndd\n{\n    margin: 0 1.5em 1.5em;\n}\nimg\n{\n    /* Make sure images are scaled correctly. */\n    max-width: 100%;\n    height: auto;\n    /* Adhere to container width. */\n}\nfigure\n{\n    margin: 0;\n}\ntable\n{\n    width: 100%;\n    margin: 0 0 1.5em;\n}\nth\n{\n    font-weight: bold;\n}\n/*--------------------------------------------------------------\n4.0 Forms\n--------------------------------------------------------------*/\nbutton,\ninput,\nselect,\ntextarea\n{\n    font-size: 100%;\n    /* Corrects font size not being inherited in all browsers */\n\n    margin: 0;\n    /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */\n\n    vertical-align: baseline;\n    /* Improves appearance and consistency in all browsers */\n\n    *vertical-align: middle;\n    /* Improves appearance and consistency in IE6/IE7 */\n}\nbutton,\ninput[type='button'],\ninput[type='reset'],\ninput[type='submit']\n{\n    /* Corrects inability to style clickable 'input' types in iOS */\n    font-size: 12px;\n    font-size: 1.2rem;\n    line-height: 1;\n\n    padding: .6em 1em .4em;\n\n    cursor: pointer;\n\n    color: rgba(0, 0, 0, .8);\n    border: 1px solid #ccc;\n    border-color: #ccc #ccc #bbb #ccc;\n    border-radius: 3px;\n    background: #e6e6e6;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 15px 17px rgba(255, 255, 255, .5), inset 0 -5px 12px rgba(0, 0, 0, .05);\n    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);\n    /* Improves usability and consistency of cursor style between image-type 'input' and others */\n\n    -webkit-appearance: button;\n}\nbutton:hover,\ninput[type='button']:hover,\ninput[type='reset']:hover,\ninput[type='submit']:hover\n{\n    border-color: #ccc #bbb #aaa #bbb;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), inset 0 15px 17px rgba(255, 255, 255, .8), inset 0 -5px 12px rgba(0, 0, 0, .02);\n}\nbutton:focus,\ninput[type='button']:focus,\ninput[type='reset']:focus,\ninput[type='submit']:focus,\nbutton:active,\ninput[type='button']:active,\ninput[type='reset']:active,\ninput[type='submit']:active\n{\n    border-color: #aaa #bbb #bbb #bbb;\n    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .5), inset 0 2px 5px rgba(0, 0, 0, .15);\n}\ninput[type='checkbox'],\ninput[type='radio']\n{\n    padding: 0;\n    /* Addresses excess padding in IE8/9 */\n}\ninput[type='search']\n{\n    /* Addresses appearance set to searchfield in S5, Chrome */\n    /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */\n    box-sizing: content-box;\n\n    -webkit-appearance: textfield;\n}\ninput[type='search']::-webkit-search-decoration\n{\n    /* Corrects inner padding displayed oddly in S5, Chrome on OSX */\n    -webkit-appearance: none;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner\n{\n    padding: 0;\n    /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */\n\n    border: 0;\n}\ninput[type='text'],\ninput[type='email'],\ninput[type='url'],\ninput[type='password'],\ninput[type='search'],\ntextarea\n{\n    color: #666;\n    border: 1px solid #ccc;\n    border-radius: 3px;\n}\ninput[type='text']:focus,\ninput[type='email']:focus,\ninput[type='url']:focus,\ninput[type='password']:focus,\ninput[type='search']:focus,\ntextarea:focus\n{\n    color: #111;\n}\ninput[type='text'],\ninput[type='email'],\ninput[type='url'],\ninput[type='password'],\ninput[type='search']\n{\n    padding: 3px;\n}\ntextarea\n{\n    overflow: auto;\n    /* Improves readability and alignment in all browsers */\n\n    width: 98%;\n    /* Removes default vertical scrollbar in IE6/7/8/9 */\n    padding-left: 3px;\n\n    vertical-align: top;\n}\n/*--------------------------------------------------------------\n5.0 Navigation\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n5.2 Menus\n--------------------------------------------------------------*/\n.main-navigation\n{\n    font-family: 'Open Sans', sans-serif;\n\n    width: 100%;\n    padding: 5px 0;\n\n    color: white;\n}\n.main-navigation > div\n{\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding: 0;\n}\n.main-navigation ul\n{\n    font-size: 1.2rem;\n\n    float: right;\n\n    margin: 0 4rem;\n    padding: 0;\n\n    list-style: none;\n}\n.main-navigation li\n{\n    position: relative;\n\n    float: left;\n}\n.main-navigation a\n{\n    display: block;\n\n    padding: 12px 20px;\n    transition: color .3s ease, background .3s ease;\n    text-decoration: none;\n\n    color: white;\n    background-color: rgba(0, 0, 0, 0);\n}\n.main-navigation a:hover\n{\n    color: white;\n    background-color: rgba(0, 0, 0, .4);\n}\n.main-navigation ul ul\n{\n    position: absolute;\n    z-index: 99999;\n    top: 100%;\n    left: 0;\n\n    display: none;\n\n    width: 100%;\n    margin: 0;\n}\n.main-navigation ul ul ul\n{\n    top: 0;\n    left: 100%;\n}\n.main-navigation ul li:hover > ul\n{\n    display: block;\n}\n/* Small menu */\n.menu-toggle\n{\n    font-size: 0;\n\n    position: absolute;\n    top: 0;\n    right: 0;\n\n    display: none;\n    overflow: hidden;\n\n    width: 48px;\n    height: 48px;\n    margin: 0;\n\n    cursor: pointer;\n    text-align: center;\n}\n.menu-toggle a\n{\n    padding: 5px;\n}\n.menu-toggle a:before\n{\n    font-size: 3rem;\n}\n@media screen and (max-width: 600px)\n{\n    .menu-toggle,\n    .main-navigation.toggled .nav-menu\n    {\n        display: block;\n    }\n    .main-navigation ul\n    {\n        font-size: 1.8rem;\n\n        display: none;\n\n        margin: 0;\n\n        background-color: rgba(0, 0, 0, .4);\n    }\n    .main-navigation li\n    {\n        float: none;\n\n        width: 100%;\n        margin: 0 auto;\n\n        border-bottom: 1px solid #444;\n    }\n}\n.site-main .comment-navigation,\n.site-main .paging-navigation,\n.site-main .post-navigation\n{\n    overflow: hidden;\n\n    margin: 0 0 1.5em;\n}\n.comment-navigation .nav-previous,\n.paging-navigation .nav-previous,\n.post-navigation .nav-previous\n{\n    float: left;\n\n    width: 50%;\n}\n.comment-navigation .nav-next,\n.paging-navigation .nav-next,\n.post-navigation .nav-next\n{\n    float: right;\n\n    width: 50%;\n\n    text-align: right;\n}\n/*--------------------------------------------------------------\n6.0 Accessibility\n--------------------------------------------------------------*/\n/* Text meant only for screen readers */\n.screen-reader-text\n{\n    position: absolute !important;\n\n    clip: rect(1px, 1px, 1px, 1px);\n}\n.screen-reader-text:hover,\n.screen-reader-text:active,\n.screen-reader-text:focus\n{\n    font-size: 14px;\n    font-weight: bold;\n    line-height: normal;\n\n    z-index: 100000;\n    top: 5px;\n    left: 5px;\n\n    display: block;\n    clip: auto !important;\n\n    width: auto;\n    height: auto;\n    padding: 15px 23px 14px;\n\n    text-decoration: none;\n\n    color: #21759b;\n    border-radius: 3px;\n    background-color: #f1f1f1;\n    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);\n    /* Above WP toolbar */\n}\n/*--------------------------------------------------------------\n7.0 Alignments\n--------------------------------------------------------------*/\n.alignleft\n{\n    display: inline;\n    float: left;\n\n    margin-right: 1.5em;\n}\n.alignright\n{\n    display: inline;\n    float: right;\n\n    margin-left: 1.5em;\n}\n.aligncenter\n{\n    display: block;\n    clear: both;\n\n    margin: 0 auto;\n}\n/*--------------------------------------------------------------\n8.0 Clearings\n--------------------------------------------------------------*/\n.clear:before,\n.clear:after,\n.entry-content:before,\n.entry-content:after,\n.comment-content:before,\n.comment-content:after,\n.site-header:before,\n.site-header:after,\n.site-content:before,\n.site-content:after,\n.site-footer:before,\n.site-footer:after\n{\n    display: table;\n\n    content: '';\n}\n.clear:after,\n.entry-content:after,\n.comment-content:after,\n.site-header:after,\n.site-content:after,\n.site-footer:after\n{\n    clear: both;\n}\n/*--------------------------------------------------------------\n9.0 Widgets\n--------------------------------------------------------------*/\n.widget\n{\n    margin: 0 0 1.5em;\n}\n/* Make sure select elements fit in widgets */\n.widget select\n{\n    max-width: 100%;\n}\n/* Search widget */\n.widget_search .search-submit\n{\n    display: none;\n}\n/* Main widget wrapper */\n.widget-area\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    padding-bottom: 4rem;\n\n    color: #9eabb3;\n}\n.widget-area *\n{\n    box-sizing: border-box;\n}\n.widget-area h1\n{\n    font-size: 2.5rem;\n}\n.widget-area aside\n{\n    float: left;\n    overflow: hidden;\n\n    width: 50%;\n    height: 300px;\n    padding: 2rem 1rem;\n}\n.search-submit\n{\n    display: inline-block;\n\n    padding: 15px;\n\n    transition: border ease .3s;\n    text-decoration: none;\n\n    border: #ebf2f6 2px solid;\n    border-width: 3px;\n    border-radius: 30px;\n    background: none;\n}\n.search-submit:hover,\n.form-submit #submit:hover\n{\n    border-color: #9eabb3;\n}\n/*--------------------------------------------------------------\n10.0 Content\n--------------------------------------------------------------*/\n/*--------------------------------------------------------------\n10.1 Posts and pages\n--------------------------------------------------------------*/\n.sticky\n{\n    content: '';\n}\n.hentry\n{\n    margin: 0 0 1.5em;\n}\n.byline,\n.updated\n{\n    display: none;\n}\n.single .byline,\n.group-blog .byline\n{\n    display: inline;\n}\n.page-content,\n.entry-content,\n.entry-summary\n{\n    margin: 1.5em 0 0;\n}\n.page-links\n{\n    clear: both;\n\n    margin: 0 0 1.5em;\n}\n.post-image:after\n{\n    display: block;\n    clear: both;\n\n    content: ' ';\n}\n/*--------------------------------------------------------------\n10.2 Asides\n--------------------------------------------------------------*/\n.blog .format-aside .entry-title,\n.archive .format-aside .entry-title\n{\n    display: none;\n}\n/*--------------------------------------------------------------\n10.3 Comments\n--------------------------------------------------------------*/\n.comment-content a\n{\n    word-wrap: break-word;\n}\n.bypostauthor\n{\n    content: '';\n}\n/*--------------------------------------------------------------\n11.0 Infinite scroll\n--------------------------------------------------------------*/\n/* Globally hidden elements when Infinite Scroll is supported and in use. */\n.infinite-scroll .paging-navigation,\n.infinite-scroll.neverending .site-footer\n{\n    /* Theme Footer (when set to scrolling) */\n    display: none;\n}\n/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */\n.infinity-end.neverending .site-footer\n{\n    display: block;\n}\n.wp-caption\n{\n    max-width: 100%;\n    margin-bottom: 1.5em;\n\n    border: 1px solid #ccc;\n}\n.wp-caption img[class*='wp-image-']\n{\n    display: block;\n\n    max-width: 98%;\n    margin: 1.2% auto 0;\n}\n.wp-caption-text\n{\n    text-align: center;\n}\n.wp-caption .wp-caption-text\n{\n    margin: .8075em 0;\n}\n.site-main .gallery\n{\n    margin-bottom: 1.5em;\n}\n.gallery-caption\n{\n    content: '';\n}\n.site-main .gallery a img\n{\n    max-width: 90%;\n    height: auto;\n\n    border: none;\n}\n.site-main .gallery dd,\n.site-main .gallery figcaption\n{\n    margin: 0;\n}\n/* Make sure embeds and iframes fit their containers */\nembed,\niframe,\nobject\n{\n    max-width: 100%;\n}\n/* ==========================================================================\n   4. General - The main styles for the the theme\n   ========================================================================== */\n/* Big cover image on the home page */\n.site-head\n{\n    position: relative;\n\n    display: table;\n\n    width: 100%;\n    height: 60%;\n    margin-bottom: 5rem;\n\n    text-align: center;\n\n    color: #fff;\n    border-bottom: #ebf2f6 1px solid;\n    background: #303538 no-repeat center center;\n    background-size: cover;\n}\n.site-head:after\n{\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n\n    display: block;\n\n    width: 7px;\n    height: 7px;\n    margin-left: -5px;\n\n    content: '';\n\n    border: #e7eef2 1px solid;\n    border-radius: 100%;\n    background: #fff;\n    box-shadow: #fff 0 0 0 5px;\n}\nbody.home .site-head:after\n{\n    z-index: -3;\n}\n/* Yo-logo. Yolo-go. Upload one in ghost/settings/ */\n.blog-logo\n{\n    text-decoration: none;\n\n    color: white;\n}\n.blog-logo img\n{\n    line-height: 0;\n\n    display: block;\n\n    width: auto;\n    max-height: 120px;\n    margin: 0 auto;\n}\n/* The details of your blog. Defined in ghost/settings/ */\n.blog-title\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 5rem;\n    font-weight: bold;\n\n    margin: 10px 0 10px 0;\n\n    letter-spacing: -1px;\n\n    text-shadow: 0 1px 6px rgba(0, 0, 0, .1);\n}\n.blog-description\n{\n    font-family: 'Noto Serif', serif;\n    font-size: 1.8rem;\n    font-weight: 300;\n    line-height: 1.5em;\n\n    margin: 0;\n\n    letter-spacing: 0;\n\n    text-shadow: 0 1px 3px rgba(0, 0, 0, .15);\n}\n/* Every post, on every page, gets this style on its <article> tag */\n.post-wrap\n{\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n\n    word-break: break-word;\n    -webkit-hyphens: auto;\n       -moz-hyphens: auto;\n        -ms-hyphens: auto;\n            hyphens: auto;\n}\n/* Add a little circle in the middle of the border-bottom on our .post\n   just for the lolz and stylepoints. */\n.circle-in-border\n{\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n\n    display: block;\n\n    width: 7px;\n    height: 7px;\n    margin-left: -5px;\n\n    content: '';\n\n    border: #e7eef2 1px solid;\n    border-radius: 100%;\n    background: #fff;\n    box-shadow: #fff 0 0 0 5px;\n}\n.error-404 article\n{\n    margin-bottom: 20px;\n    padding-top: 20px;\n\n    border-top: #ebf2f6 1px solid;\n}\n.hentry\n{\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n\n    word-break: break-word;\n    -webkit-hyphens: auto;\n       -moz-hyphens: auto;\n        -ms-hyphens: auto;\n            hyphens: auto;\n\n    border-bottom: #ebf2f6 1px solid;\n}\n/* Add a little circle in the middle of the border-bottom on our .post\n   just for the lolz and stylepoints. */\n.hentry:after\n{\n    position: absolute;\n    bottom: -5px;\n    left: 50%;\n\n    display: block;\n\n    width: 7px;\n    height: 7px;\n    margin-left: -5px;\n\n    content: '';\n\n    border: #e7eef2 1px solid;\n    border-radius: 100%;\n    background: #fff;\n    box-shadow: #fff 0 0 0 5px;\n}\n.post-title\n{\n    margin: 0;\n}\n.post-title a\n{\n    text-decoration: none;\n}\n.post-excerpt p\n{\n    font-size: .9em;\n    line-height: 1.6em;\n\n    margin: 1.6rem 0 0 0;\n}\n.post-meta\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.5rem;\n\n    display: inline-block;\n\n    margin: 0 0 5px 0;\n\n    color: #9eabb3;\n}\n.post-meta a\n{\n    text-decoration: none;\n\n    color: #9eabb3;\n}\n.post-meta a:hover\n{\n    text-decoration: underline;\n}\n.user-meta\n{\n    position: relative;\n\n    min-height: 77px;\n    padding: .3rem 40px 0 100px;\n}\n.user-image\n{\n    position: absolute;\n    top: 0;\n    left: 0;\n}\n.user-name\n{\n    font-weight: bold;\n\n    display: block;\n}\n.user-bio\n{\n    font-size: 1.4rem;\n    line-height: 1.5em;\n\n    display: block;\n\n    max-width: 440px;\n}\n.publish-meta\n{\n    position: absolute;\n    top: 0;\n    right: 0;\n\n    padding: 4.3rem 0 4rem 0;\n\n    text-align: right;\n}\n.publish-heading\n{\n    font-weight: bold;\n\n    display: block;\n}\n.publish-date\n{\n    font-size: 1.4rem;\n    line-height: 1.5em;\n\n    display: block;\n}\n/* ==========================================================================\n   5. Single Post - When you click on an individual post\n   ========================================================================== */\n/* Tweak the .post wrapper style */\n.post-template .post\n{\n    margin-top: 0;\n    padding-bottom: 0;\n\n    border-bottom: none;\n}\n/* Kill that stylish little circle that was on the border, too */\n.post-template .post:after\n{\n    display: none;\n}\n/* Insert some mad padding up in the header for better spacing */\n.post-template .post-header\n{\n    padding: 60px 0;\n\n    text-align: center;\n}\n.post-header img\n{\n    display: block;\n\n    max-width: 100%;\n    height: auto;\n    margin: 0 auto;\n    padding-top: 1rem;\n\n    transition: opacity ease .6s;\n\n    opacity: 0;\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';\n        filter: alpha(opacity=0);\n}\n.post-template .blog-title\n{\n    display: inline-block;\n\n    padding: 2.5rem 0;\n}\n/* Keep large images within the bounds of the post-width */\n.post-content img\n{\n    display: block;\n\n    max-width: 100%;\n    height: auto;\n    margin: 0 auto;\n    padding: 1em;\n}\n.post-content img.wp-smiley\n{\n    display: inline;\n\n    padding: 0;\n}\n.post-content .wp-caption img\n{\n    padding: 0;\n}\n/* The author credit area after the post */\n.post-footer\n{\n    position: relative;\n\n    margin: 4rem 0 0 0;\n    padding: 4rem 0 0 0;\n\n    border-top: #ebf2f6 1px solid;\n}\n.post-footer h4\n{\n    font-size: 1.8rem;\n\n    margin: 0;\n}\n.post-footer p\n{\n    font-size: 1.4rem;\n    line-height: 1.6em;\n\n    margin: 1rem 0;\n}\n/* Create some space to the right for the share links */\n.post-footer .author\n{\n    margin: 0 1rem 3rem 1rem;\n}\n.post-footer .author a\n{\n    text-decoration: none;\n}\n/* Drop the share links in the space to the right.\n   Doing it like this means it's easier for the author bio\n   to be flexible at smaller screen sizes while the share\n   links remain at a fixed width the whole time */\n.post-footer .share\n{\n    position: absolute;\n    top: 4rem;\n    right: 0;\n\n    width: 140px;\n}\n.post-footer .share a\n{\n    font-size: 1.8rem;\n\n    display: inline;\n\n    margin: 1.4rem 0 1.6rem 1.6rem;\n\n    text-decoration: none;\n\n    color: #bbc7cc;\n}\n.post-footer .share a:hover\n{\n    color: #50585d;\n}\n.avatar\n{\n    display: block;\n    float: left;\n\n    margin-right: 1em;\n    padding: 5px;\n\n    border-radius: 50%;\n    box-shadow: 0 1px 1px rgba(0, 0, 0, .3);\n}\n/* ==========================================================================\n   5.1 Comments\n   ========================================================================== */\n.comment-list,\n.children\n{\n    margin: 0;\n    padding: 0;\n\n    list-style-type: none;\n}\n.comment,\n.pingback\n{\n    margin-bottom: 1.5em;\n    padding: 1em 1.5em;\n\n    border: 1px solid #ccc;\n}\n.children .comment,\n.pingback\n{\n    margin-bottom: .75em;\n    padding: .5em .75em;\n}\n.reply a\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    line-height: 1;\n\n    display: inline-block;\n\n    max-width: 35%;\n    padding: 15px;\n\n    cursor: pointer;\n    transition: border ease .3s;\n    white-space: -moz-pre-wrap !important;\n    /* Mozilla, since 1999 */\n    white-space: -pre-wrap;\n    /* Opera 4-6 */\n    white-space:   -o-pre-wrap;\n    /* Opera 7 */\n    white-space:      pre-wrap;\n    white-space: normal;\n    text-decoration: none;\n    /* css-3 */\n    word-wrap: break-word;\n    /* Internet Explorer 5.5+ */\n    word-break: break-all;\n\n    color: #9eabb3;\n    border: #ebf2f6 2px solid;\n    border-width: 3px;\n    border-radius: 3px;\n    background: none;\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 15px 17px rgba(255, 255, 255, .5), inset 0 -5px 12px rgba(0, 0, 0, .05);\n    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);\n    /* Improves usability and consistency of cursor style between image-type 'input' and others */\n\n    -webkit-appearance: button;\n    /* Corrects inability to style clickable 'input' types in iOS */\n}\n.reply a:hover\n{\n    border-color: #9eabb3;\n}\n.children,\n.comment-respond\n{\n    margin-top: 1.5em;\n}\n.comment-form\n{\n    overflow: hidden;\n}\n/* ==========================================================================\n   6. Third Party Elements - Embeds from other services\n   ========================================================================== */\n/* Github */\n.gist table\n{\n    font-size: 1.4rem;\n\n    margin: 0;\n}\n.gist .line-number\n{\n    font-size: 1.1rem;\n\n    min-width: 25px;\n}\n/* Social links */\n.social-icons\n{\n    margin-top: 15px;\n}\n.social-icons a\n{\n    font-size: 1.3em;\n\n    margin: 0 5px;\n\n    text-decoration: none;\n\n    color: white;\n}\n.blog-title a:hover,\n.social-icons a:hover\n{\n    color: #57a3e8;\n}\n/* Comments */\n.comments-area\n{\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n    padding-bottom: 4rem;\n}\n.comment-form-comment label\n{\n    display: inline-block;\n\n    width: 100%;\n}\n.form-allowed-tags\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    float: right;\n\n    width: 60%;\n    margin: -1rem;\n\n    color: #9eabb3;\n}\n.comment-subscription-form\n{\n    clear: both;\n\n    margin-top: 1rem;\n}\n.form-submit #submit\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    display: inline-block;\n    float: left;\n\n    max-width: 35%;\n    margin-top: 1em;\n    padding: 15px;\n\n    transition: border ease .3s;\n    white-space: -moz-pre-wrap !important;\n    /* Mozilla, since 1999 */\n    white-space: -pre-wrap;\n    /* Opera 4-6 */\n    white-space:   -o-pre-wrap;\n    /* Opera 7 */\n    white-space:      pre-wrap;\n    white-space: normal;\n    text-decoration: none;\n    /* css-3 */\n    word-wrap: break-word;\n    /* Internet Explorer 5.5+ */\n    word-break: break-all;\n\n    color: #9eabb3;\n    border: #ebf2f6 2px solid;\n    border-width: 3px;\n    background: none;\n}\n#main > header.page-header\n{\n    font-family: 'Open Sans', sans-serif;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 0 auto;\n    padding: 0;\n\n    text-align: center;\n\n    color: #9eabb3;\n}\n#main > header.page-header > h1\n{\n    font-size: 1.3rem;\n    font-weight: normal;\n    line-height: normal;\n\n    margin: 0 4rem;\n    padding: 0;\n\n    text-indent: 0;\n    letter-spacing: normal;\n}\n/* ==========================================================================\n   7. Pagination - Tools to let you flick between pages\n   ========================================================================== */\n/* The main wrapper for our pagination links */\n.pagination\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n\n    position: relative;\n\n    width: 80%;\n    max-width: 700px;\n    margin: 4rem auto;\n\n    text-align: center;\n\n    color: #9eabb3;\n}\n.pagination a\n{\n    color: #9eabb3;\n}\n/* Push the previous/next links out to the left/right */\n.older-posts,\n.newer-posts\n{\n    position: absolute;\n\n    display: inline-block;\n\n    padding: 0 15px;\n\n    transition: border ease .3s;\n    text-decoration: none;\n\n    border: #ebf2f6 2px solid;\n    border-radius: 30px;\n}\n.older-posts:hover,\n.newer-posts:hover\n{\n    border-color: #9eabb3;\n}\n.older-posts\n{\n    right: 0;\n}\n.page-number\n{\n    display: inline-block;\n\n    padding: 2px 0;\n}\n.newer-posts\n{\n    left: 0;\n}\n/* ==========================================================================\n   8. Footer - The bottom of every page\n   ========================================================================== */\n.site-footer\n{\n    font-family: 'Open Sans', sans-serif;\n    font-size: 1.3rem;\n    line-height: 1.7em;\n\n    position: relative;\n\n    margin: 0;\n    padding: 4rem 0;\n\n    text-align: center;\n\n    color: #bbc7cc;\n    border-top: #ebf2f6 1px solid;\n    background: #f7fafb;\n}\n.site-footer a\n{\n    text-decoration: underline;\n\n    color: #bbc7cc;\n}\n.site-footer a:hover\n{\n    color: #50585d;\n}\n/* The subscribe icon on the footer */\n.subscribe\n{\n    line-height: 2.4rem;\n\n    position: absolute;\n    top: -14px;\n    left: 50%;\n\n    width: 28px;\n    height: 28px;\n    margin-left: -15px;\n\n    transition: box-shadow .5s;\n    text-align: center;\n\n    border: #ebf2f6 1px solid;\n    border-radius: 50px;\n    background: #fff;\n}\n/* The RSS icon, inserted via icon font */\n.subscribe:before\n{\n    font-size: 10px;\n    font-weight: bold;\n\n    position: absolute;\n    top: 9px;\n    left: 9px;\n\n    transition: color .5s ease;\n\n    color: #d2dee3;\n}\n/* Add a box shadow to on hover */\n.subscribe:hover\n{\n    transition: box-shadow .25s;\n\n    box-shadow: rgba(0, 0, 0, .05) 0 0 0 3px;\n}\n.subscribe:hover:before\n{\n    color: #50585d;\n}\n/* CSS tooltip saying \"Subscribe!\" - initially hidden */\n.tooltip\n{\n    font-size: 1.1rem;\n    line-height: 1em;\n\n    position: absolute;\n    top: -23px;\n    left: -21px;\n\n    display: inline-block;\n\n    padding: 4px 8px 5px 8px;\n\n    transition: opacity .3s ease, top .3s ease;\n    text-align: center;\n\n    opacity: 0;\n    color: rgba(255, 255, 255, .9);\n    border-radius: 20px;\n    background: #50585d;\n    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);\n}\n/* The little chiclet arrow under the tooltip, pointing down */\n.tooltip:after\n{\n    position: absolute;\n    z-index: 220;\n    bottom: -4px;\n    left: 50%;\n\n    display: block;\n\n    width: 0;\n    margin-left: -5px;\n\n    content: '';\n\n    border-width: 5px 5px 0 5px;\n    border-style: solid;\n    border-color: #50585d transparent;\n}\n/* On hover, show the tooltip! */\n.subscribe:hover .tooltip\n{\n    top: -33px;\n\n    opacity: 1;\n}\n/* ==========================================================================\n   9. Media Queries - Smaller than 900px\n   ========================================================================== */\n@media only screen and (max-width: 900px)\n{\n    blockquote\n    {\n        margin-left: 0;\n    }\n    .site-head\n    {\n        box-sizing: border-box;\n        height: auto;\n        min-height: 240px;\n        padding: 15% 0;\n    }\n    .blog-title\n    {\n        font-size: 4rem;\n\n        letter-spacing: -1px;\n    }\n    .blog-description\n    {\n        font-size: 1.7rem;\n        line-height: 1.5em;\n    }\n    .post\n    {\n        font-size: .9em;\n        line-height: 1.6em;\n    }\n    .post-template .post\n    {\n        padding-bottom: 1rem;\n    }\n    .post-template .post-header\n    {\n        padding: 40px 0;\n    }\n    .widget-area aside\n    {\n        float: none;\n        overflow: hidden;\n\n        width: auto;\n        height: auto;\n        padding: 1em;\n    }\n    h1\n    {\n        font-size: 4.8rem;\n\n        text-indent: -2px;\n    }\n    h2\n    {\n        font-size: 3.8rem;\n    }\n    h3\n    {\n        font-size: 3.3rem;\n    }\n    h4\n    {\n        font-size: 2.8rem;\n    }\n}\n/* ==========================================================================\n   10. Media Queries - Smaller than 500px\n   ========================================================================== */\n@media only screen and (max-width: 500px)\n{\n    .blog-logo img\n    {\n        max-height: 80px;\n    }\n    .inner,\n    .pagination\n    {\n        width: auto;\n        margin-right: 16px;\n        margin-left: 16px;\n    }\n    .post\n    {\n        font-size: .8em;\n        line-height: 1.6em;\n\n        width: auto;\n        margin-right: 16px;\n        margin-left: 16px;\n    }\n    .site-head\n    {\n        padding: 10% 0;\n    }\n    .blog-title\n    {\n        font-size: 3rem;\n    }\n    .blog-description\n    {\n        font-size: 1.5rem;\n    }\n    .main-navigation ul li.menu-item-has-children:hover ~ li\n    {\n        opacity: 0;\n    }\n    .main-navigation ul ul ul\n    {\n        top: 100%;\n        left: 0;\n    }\n    h1,\n    h2\n    {\n        font-size: 3rem;\n        line-height: 1.1em;\n\n        letter-spacing: -1px;\n    }\n    h3\n    {\n        font-size: 2.8rem;\n    }\n    h4\n    {\n        font-size: 2.3rem;\n    }\n    .post-template .post\n    {\n        padding-bottom: 0;\n    }\n    .post-template .post-header\n    {\n        padding: 30px 0;\n    }\n    .post-meta\n    {\n        font-size: 1.3rem;\n    }\n    .post-footer\n    {\n        padding: 4rem 0;\n\n        text-align: center;\n    }\n    .post-footer .author\n    {\n        margin: 0 0 2rem 0;\n        padding: 0 0 1.6rem 0;\n\n        border-bottom: #ebf2f6 1px dashed;\n    }\n    .post-footer .share\n    {\n        position: static;\n\n        width: auto;\n    }\n    .post-footer .share a\n    {\n        margin: 1.4rem .8rem 0 .8rem;\n    }\n    .older-posts,\n    .newer-posts\n    {\n        position: static;\n\n        margin: 10px 0;\n    }\n    .page-number\n    {\n        display: block;\n    }\n    .site-footer\n    {\n        font-size: 1.1rem;\n\n        margin-top: 6rem;\n    }\n}\n/* ==========================================================================\n   End of file. Media queries should be the last thing here. Do not add stuff\n   below this point, or it will probably fuck everything up.\n   ========================================================================== */\n"
  }
]