/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,400italic);

/* normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
/* line 11, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
/* line 30, ../sass/_normalize.scss */
audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 43, ../sass/_normalize.scss */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
/* line 53, ../sass/_normalize.scss */
[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 68, ../sass/_normalize.scss */
html {
    font-size: 100%;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
/* line 79, ../sass/_normalize.scss */
html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
/* line 91, ../sass/_normalize.scss */
body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 103, ../sass/_normalize.scss */
a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 111, ../sass/_normalize.scss */
a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
/* line 126, ../sass/_normalize.scss */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* line 131, ../sass/_normalize.scss */
h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

/* line 136, ../sass/_normalize.scss */
h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

/* line 141, ../sass/_normalize.scss */
h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

/* line 146, ../sass/_normalize.scss */
h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

/* line 151, ../sass/_normalize.scss */
h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
/* line 160, ../sass/_normalize.scss */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
/* line 168, ../sass/_normalize.scss */
b,
strong {
    font-weight: bold;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
    margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 181, ../sass/_normalize.scss */
dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
/* line 190, ../sass/_normalize.scss */
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
/* line 200, ../sass/_normalize.scss */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */
/* line 209, ../sass/_normalize.scss */
p,
pre {
    margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
/* line 218, ../sass/_normalize.scss */
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 231, ../sass/_normalize.scss */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
/* line 241, ../sass/_normalize.scss */
q {
    quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
/* line 249, ../sass/_normalize.scss */
q:before,
q:after {
    content: '';
    content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 259, ../sass/_normalize.scss */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 267, ../sass/_normalize.scss */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

/* line 275, ../sass/_normalize.scss */
sup {
    top: -0.5em;
}

/* line 279, ../sass/_normalize.scss */
sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
/* line 291, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
    margin: 1em 0;
}

/* line 298, ../sass/_normalize.scss */
dd {
    margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
/* line 306, ../sass/_normalize.scss */
menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
/* line 316, ../sass/_normalize.scss */
nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
/* line 331, ../sass/_normalize.scss */
img {
    border: 0;
    /* 1 */
    -ms-interpolation-mode: bicubic;
    /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 340, ../sass/_normalize.scss */
svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
/* line 352, ../sass/_normalize.scss */
figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
/* line 364, ../sass/_normalize.scss */
form {
    margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
/* line 372, ../sass/_normalize.scss */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 384, ../sass/_normalize.scss */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    white-space: normal;
    /* 2 */
    *margin-left: -7px;
    /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
/* line 398, ../sass/_normalize.scss */
button,
input,
select,
textarea {
    font-size: 100%;
    /* 1 */
    margin: 0;
    /* 2 */
    vertical-align: baseline;
    /* 3 */
    *vertical-align: middle;
    /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 413, ../sass/_normalize.scss */
button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 425, ../sass/_normalize.scss */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 440, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
    *overflow: visible;
    /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 453, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 465, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
    *height: 13px;
    /* 3 */
    *width: 13px;
    /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 479, ../sass/_normalize.scss */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 491, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
/* line 500, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 511, ../sass/_normalize.scss */
textarea {
    overflow: auto;
    /* 1 */
    vertical-align: top;
    /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 524, ../sass/_normalize.scss */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/* line 13, ../sass/_base.scss */
html,
button,
input,
select,
textarea {
    color: #222;
}

/* line 21, ../sass/_base.scss */
html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
/* line 32, ../sass/_base.scss */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

/* line 37, ../sass/_base.scss */
::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
/* line 46, ../sass/_base.scss */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
/* line 60, ../sass/_base.scss */
audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
/* line 71, ../sass/_base.scss */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
/* line 81, ../sass/_base.scss */
textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
/* line 89, ../sass/_base.scss */
.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

@media (min-width: 768px) {

    /* line 3, ../sass/_sitewide.scss */
    .main .col--two-thirds {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 60%;
        margin-left: 0%;
        margin-right: 0%;
        border-right: 1px solid #eaeaea;
        padding-right: 20px;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .main .col--two-thirds:before,
    .main .col--two-thirds:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .main .col--two-thirds:after {
        clear: both;
    }
}

@media (min-width: 768px) {

    /* line 12, ../sass/_sitewide.scss */
    .main .col--one-third {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 40%;
        margin-left: 0%;
        margin-right: 0%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .main .col--one-third:before,
    .main .col--one-third:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .main .col--one-third:after {
        clear: both;
    }
}

/*Looks like the classes used in site*/
/* line 2, ../sass/_modules.scss */
.container {
    margin: 40px auto 10px;
    width: 100%;
    text-align: center;
}

/* line 7, ../sass/_modules.scss */
.container .pagination {
    margin: 15px 0;
}

/* line 10, ../sass/_modules.scss */
.pagination {
    padding: 8px;
    border-radius: 3px;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

/* line 15, ../sass/_modules.scss */
.pagination>a,
.pagination>span {
    background: #f1f1f1;
    border-radius: 2px;
    float: left;
    margin-left: 5px;
    padding: 6px 10px;
    min-width: 17px;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    color: green;
    text-align: center;
    text-decoration: none;
}

/* line 28, ../sass/_modules.scss */
.pagination #none {
    border: none;
    color: black;
    background-color: transparent;
    border-radius: 0px;
    text-shadow: none;
}

/* line 36, ../sass/_modules.scss */
.pagination :first-child {
    margin-left: 0;
}

/* line 38, ../sass/_modules.scss */
.pagination>a {
    text-decoration: none;
    background-clip: padding-box;
    border-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

/* line 45, ../sass/_modules.scss */
.pagination>a:hover {
    background: green;
    color: #ffffff;
}

/* line 51, ../sass/_modules.scss */
.pagination>span:not(#none),
.pagination>a:active {
    color: white;
    background-color: green;
    border-color: black rgba(0, 0, 0, 0.65) rgba(0, 0, 0, 0.6);
}

/* line 59, ../sass/_modules.scss */
.pagination .prev,
.pagination .next {
    font-family: Noteworthy, Arial, sans-serif;
    font-size: 14px;
}

/* line 1, ../sass/_components.articles.scss */
.article {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* line 6, ../sass/_components.articles.scss */
.article:first-child {
    border: none;
    padding-top: 0;
}

@media (min-width: 1000px) {

    /* line 1, ../sass/_components.articles.scss */
    .article {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .article:before,
    .article:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .article:after {
        clear: both;
    }

    /* line 50, ../sass/jeet/_grid.scss */
    .article:nth-child(2n) {
        margin-right: 0%;
        float: right;
    }

    /* line 54, ../sass/jeet/_grid.scss */
    .article:nth-child(2n + 1) {
        clear: both;
    }

    /* line 14, ../sass/_components.articles.scss */
    .article:nth-of-type(2) {
        border: none;
        padding-top: 0;
    }
}

/* line 20, ../sass/_components.articles.scss */
.article--full {
    clear: none;
    float: none;
    margin: 0;
    width: 100%;
}

/* line 27, ../sass/_components.articles.scss */
.article__thumbnail {
    display: block;
}

/* line 30, ../sass/_components.articles.scss */
.article__thumbnail img {
    transition: all .3s ease;
    width: 100%;
}

/* line 34, ../sass/_components.articles.scss */
.article__thumbnail img:hover {
    -webkit-filter: grayscale(100%);
}

/* line 40, ../sass/_components.articles.scss */
.article__heading {
    *zoom: 1;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 87.125%;
    margin-left: 0%;
    margin-right: 3%;
    color: #404040;
    font: 700 20px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin: 0 0 8px;
    overflow: hidden;
    width: 100%;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__heading:before,
.article__heading:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__heading:after {
    clear: both;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__heading:before,
.article__heading:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__heading:after {
    clear: both;
}

/* line 58, ../sass/jeet/_grid.scss */
.article__heading:last-child {
    margin-right: 0%;
}

/* line 49, ../sass/_components.articles.scss */
.article__heading a {
    color: #404040;
    font: 700 20px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
    text-decoration: none;
    transition: color .5s;
}

/* line 55, ../sass/_components.articles.scss */
.article__heading a:hover {
    color: green;
}

/* line 60, ../sass/_components.articles.scss */
.article__heading--single {
    font: 700 30px/36px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 64, ../sass/_components.articles.scss */
.article__heading--split-section {
    *zoom: 1;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    width: 100%;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__heading--split-section:before,
.article__heading--split-section:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__heading--split-section:after {
    clear: both;
}

/* line 71, ../sass/_components.articles.scss */
.article__category {
    *zoom: 1;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 9.875%;
    margin-left: 0%;
    margin-right: 3%;
    margin-right: 0;
    margin-top: 10px;
    position: relative;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__category:before,
.article__category:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__category:after {
    clear: both;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__category:before,
.article__category:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__category:after {
    clear: both;
}

/* line 58, ../sass/jeet/_grid.scss */
.article__category:last-child {
    margin-right: 0%;
}

/* line 78, ../sass/_components.articles.scss */
.article__category img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

/* line 86, ../sass/_components.articles.scss */
.article__meta {
    *zoom: 1;
    clear: both;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    height: 60px;
    overflow: hidden;
    padding: 10px 0 0;
    text-transform: uppercase;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__meta:before,
.article__meta:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__meta:after {
    clear: both;
}

/* line 95, ../sass/_components.articles.scss */
.article__meta--single {
    height: auto;
    padding: 14px 0 10px;
}

/* line 100, ../sass/_components.articles.scss */
.article__meta__timestamp {
    color: #999999;
    float: left;
    padding-top: 14px;
}

/* line 105, ../sass/_components.articles.scss */
.article__meta__timestamp--single {
    padding-top: 0;
}

/* line 109, ../sass/_components.articles.scss */
.article__meta__category {
    color: #999999;
    float: right;
    text-decoration: none;
    transition: color .5s;
    padding-top: 15px;

}

/* line 115, ../sass/_components.articles.scss */
.article__meta__category img {
    width: 60px;
}

/* line 119, ../sass/_components.articles.scss */
.article__meta__category:hover {
    color: green;
}

/* line 125, ../sass/_components.articles.scss */
.article__excerpt {
    *zoom: 1;
    color: #999999;
    clear: both;
    font: 400 14px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__excerpt:before,
.article__excerpt:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__excerpt:after {
    clear: both;
}

/* line 132, ../sass/_components.articles.scss */
.article__readmore {
    *zoom: 1;
}

/* line 344, ../sass/jeet/_grid.scss */
.article__readmore:before,
.article__readmore:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.article__readmore:after {
    clear: both;
}

/* line 136, ../sass/_components.articles.scss */
.article__content {
    clear: both;
    color: #404040;
}

/* line 140, ../sass/_components.articles.scss */
.article__content h1 {
    color: #404040;
    font: 700 20px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 145, ../sass/_components.articles.scss */
.article__content p {
    font: 400 16px/24px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 151, ../sass/_components.articles.scss */
.main {
    position: relative;
}

/* line 155, ../sass/_components.articles.scss */
.category__title {
    border-bottom: 1px solid #eaeaea;
    color: #404040;
    font: 700 20px/26px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-bottom: 10px;
    padding: 10px 0;
    text-transform: uppercase;
}

/* line 1, ../sass/_components.buttons.scss */
.btn {
    border-radius: 6px;
    display: inline-block;
    font: 700 12px/26px "Lato", "Helvetica Neue", "Helvetica", Arial;
    padding: 0 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .5s;
}

/* line 11, ../sass/_components.buttons.scss */
.btn--read-more {
    border: 2px solid #999999;
    color: #999999;
    float: right;
}

/* line 16, ../sass/_components.buttons.scss */
.btn--read-more:hover {
    border: 2px solid green;
    color: green;
}

/* line 22, ../sass/_components.buttons.scss */
.btn--hollow {
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* line 26, ../sass/_components.buttons.scss */
.btn--hollow:hover {
    border: 2px solid green;
    color: green;
}

/* line 32, ../sass/_components.buttons.scss */
.btn--grey {
    background: #404040;
    border: 0 none;
    border-radius: 4px;
    color: #ffffff;
    drop-shadow: none;
    float: right;
    font: 700 12px/26px "Lato", "Helvetica Neue", "Helvetica", Arial;
    -webkit-appearance: none;
}

/* line 42, ../sass/_components.buttons.scss */
.btn--grey:hover {
    background: green;
}

/* line 2, ../sass/_components.classified.scss */
.classified__heading {
    border-bottom: 1px solid #eaeaea;
    color: #404040;
    font: 700 20px/26px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-bottom: 10px;
    padding: 10px 0;
    text-transform: uppercase;
}

/* line 10, ../sass/_components.classified.scss */
.classified__heading--single {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    border-bottom: none;
}

/* line 344, ../sass/jeet/_grid.scss */
.classified__heading--single:before,
.classified__heading--single:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.classified__heading--single:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.classified__heading--single:nth-child(6n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.classified__heading--single:nth-child(6n + 1) {
    clear: both;
}

/* line 15, ../sass/_components.classified.scss */
.classified__meta {
    border-bottom: 1px solid #eaeaea;
    clear: both;
    overflow: hidden;
}

/* line 20, ../sass/_components.classified.scss */
.classified__meta__price {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 14.16667%;
    margin-left: 0%;
    margin-right: 3%;
    color: #404040;
    font: 700 16px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
    float: right;
    margin: 25px 0 0;
    text-align: right;
}

/* line 344, ../sass/jeet/_grid.scss */
.classified__meta__price:before,
.classified__meta__price:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.classified__meta__price:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.classified__meta__price:nth-child(6n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.classified__meta__price:nth-child(6n + 1) {
    clear: both;
}

/* line 29, ../sass/_components.classified.scss */
.classified__meta__item {
    color: #999999;
    font: 400 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    padding: 10px 0;
    text-transform: uppercase;
}

@media (min-width: 768px) {

    /* line 29, ../sass/_components.classified.scss */
    .classified__meta__item {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .classified__meta__item:before,
    .classified__meta__item:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .classified__meta__item:after {
        clear: both;
    }

    /* line 50, ../sass/jeet/_grid.scss */
    .classified__meta__item:nth-child(2n) {
        margin-right: 0%;
        float: right;
    }

    /* line 54, ../sass/jeet/_grid.scss */
    .classified__meta__item:nth-child(2n + 1) {
        clear: both;
    }
}

/* line 39, ../sass/_components.classified.scss */
.classified__meta__item span {
    color: #404040;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

@media (min-width: 768px) {

    /* line 44, ../sass/_components.classified.scss */
    .classified__meta__item:last-child {
        text-align: right;
    }
}

/* line 51, ../sass/_components.classified.scss */
.classified__item {
    clear: both;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 10px;
}

/* line 57, ../sass/_components.classified.scss */
.classified__item:nth-child(odd) {
    background: #eaeaea;
}

/* line 61, ../sass/_components.classified.scss */
.classified__item__section {
    clear: both;
    overflow: hidden;
}

/* line 66, ../sass/_components.classified.scss */
.classified__item__title {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    color: green;
    font: 700 16px/22px "Lato", "Helvetica Neue", "Helvetica", Arial;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .4s;
}

/* line 344, ../sass/jeet/_grid.scss */
.classified__item__title:before,
.classified__item__title:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.classified__item__title:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.classified__item__title:nth-child(6n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.classified__item__title:nth-child(6n + 1) {
    clear: both;
}

/* line 74, ../sass/_components.classified.scss */
.classified__item__title:hover {
    color: #666;
}

/* line 79, ../sass/_components.classified.scss */
.classified__item__description {
    color: #404040;
    font: 400 14px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 84, ../sass/_components.classified.scss */
.classified__item__price {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 14.16667%;
    margin-left: 0%;
    margin-right: 3%;
    color: #404040;
    font: 700 16px/22px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin: 0;
    float: right;
    text-align: right;
}

/* line 344, ../sass/jeet/_grid.scss */
.classified__item__price:before,
.classified__item__price:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.classified__item__price:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.classified__item__price:nth-child(6n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.classified__item__price:nth-child(6n + 1) {
    clear: both;
}

/* line 93, ../sass/_components.classified.scss */
.classified__item__btn {
    text-align: center;
    line-height: 25px;
}

/* line 99, ../sass/_components.classified.scss */
.classified__content {
    color: #404040;
    margin-top: 20px;
    font: 400 14px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 105, ../sass/_components.classified.scss */
.classified__reply {
    background: #f5f5f5;
    margin: 20px 0;
    padding: 20px 10px;
}

/* line 110, ../sass/_components.classified.scss */
.classified__reply__heading {
    color: #404040;
    font: 700 14px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* line 1, ../sass/_components.contact.scss */
.contact {
    padding: 20px 0;
}

/* line 4, ../sass/_components.contact.scss */
.contact p {
    color: #404040;
    font: 400 16px/24px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 10, ../sass/_components.contact.scss */
.advertise p {
    color: #404040;
    font: 400 16px/24px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 15, ../sass/_components.contact.scss */
.inline-link {
    color: green;
    text-decoration: none;
}

/* line 19, ../sass/_components.contact.scss */
.inline-link:hover {
    text-decoration: underline;
}

/* line 1, ../sass/_components.header.scss */
.header {
    margin: 20px 0;
}

/* line 4, ../sass/_components.header.scss */
.header__branding-with-ad {
    overflow: hidden;
    padding: 10px 0 20px;
}

/* line 8, ../sass/_components.header.scss */
.header__branding-with-ad__logo {
    display: inline-block;
    float: left;
    width: 200px;
    vertical-align: middle;
}

/* line 14, ../sass/_components.header.scss */
.header__branding-with-ad__logo img {
    width: 100%;
}

/* line 19, ../sass/_components.header.scss */
.header__branding-with-ad__ad-surround {
    display: inline-block;
    float: right;
    vertical-align: middle;
    width: 100%;
}

@media (min-width: 768px) {

    /* line 19, ../sass/_components.header.scss */
    .header__branding-with-ad__ad-surround {
        width: 728px;
    }
}

/* line 29, ../sass/_components.header.scss */
.header__branding-with-ad__ad-surround img {
    float: right;
    max-width: 100%;
}

/* line 33, ../sass/_components.header.scss */
.header__navigation-bar {
    background: #515151;
    display: none;
}

@media (min-width: 768px) {

    /* line 33, ../sass/_components.header.scss */
    .header__navigation-bar {
        display: block;
    }
}

/* line 42, ../sass/_components.header.scss */
.header__navigation {
    margin: 20px 0;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* line 48, ../sass/_components.header.scss */
.header__navigation a {
    color: #fff;
    display: block;
    font: 700 14px/14px "Lato", "Helvetica Neue", "Helvetica", Arial;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 768px) {

    /* line 42, ../sass/_components.header.scss */
    .header__navigation {
        padding: 0;
    }

    /* line 61, ../sass/_components.header.scss */
    .header__navigation a {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 16.66667%;
        margin-left: 0%;
        margin-right: 0%;
        border-bottom: 2px solid transparent;
        background: transparent;
        color: #ffffff;
        display: inline-block;
        font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
        padding: 20px 10px;
        position: relative;
        text-decoration: none;
        text-align: center;
        transition: all .5s;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .header__navigation a:before,
    .header__navigation a:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .header__navigation a:after {
        clear: both;
    }

    /* line 139, ../sass/jeet/_grid.scss */
    .header__navigation a:nth-child(6n) {
        float: right;
    }

    /* line 142, ../sass/jeet/_grid.scss */
    .header__navigation a:nth-child(6n + 1) {
        clear: both;
    }

    /* line 74, ../sass/_components.header.scss */
    .header__navigation a:hover {
        border-bottom: 2px solid #ffffff;
        color: #ffffff;
    }

    /* line 80, ../sass/_components.header.scss */
    .header__navigation a:after {
        background: #ffffff;
        content: "";
        display: inline-block;
        height: 10px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
    }

    /* line 92, ../sass/_components.header.scss */
    .header__navigation a:last-of-type:after {
        display: none;
    }

    /* line 97, ../sass/_components.header.scss */
    .header__navigation a:nth-child(6):after {
        display: none;
    }

    /* line 103, ../sass/_components.header.scss */
    .header__navigation__seperator {
        background: white;
        display: block;
        height: 1px;
        position: absolute;
        top: 50%;
        width: 100%;
    }
}

@media (min-width: 1170px) {

    /* line 114, ../sass/_components.header.scss */
    .header__navigation a {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 9.09091%;
        margin-left: 0%;
        margin-right: 0%;
        text-align: center;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .header__navigation a:before,
    .header__navigation a:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .header__navigation a:after {
        clear: both;
    }

    /* line 139, ../sass/jeet/_grid.scss */
    .header__navigation a:nth-child(11n) {
        float: right;
    }

    /* line 142, ../sass/jeet/_grid.scss */
    .header__navigation a:nth-child(11n + 1) {
        clear: both;
    }

    /* line 148, ../sass/jeet/_grid.scss */
    .header__navigation a:nth-child(6n) {
        float: left;
    }

    /* line 151, ../sass/jeet/_grid.scss */
    .header__navigation a:nth-child(6n + 1) {
        clear: none;
    }

    /* line 120, ../sass/_components.header.scss */
    .header__navigation a:nth-child(6):after {
        display: block;
    }

    /* line 125, ../sass/_components.header.scss */
    .header__navigation__seperator {
        display: none;
    }
}

/* line 151, ../sass/_components.header.scss */
.menu-toggle {
    position: relative;
    display: block;
    margin: auto;
    height: 15px;
    position: relative;
    width: 70px;
    cursor: pointer;
}

@media (min-width: 768px) {

    /* line 151, ../sass/_components.header.scss */
    .menu-toggle {
        display: none;
    }
}

/* line 164, ../sass/_components.header.scss */
.menu-toggle .bars {
    display: block;
    width: 24px;
    height: 3px;
    background: #404040;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1.5px;
    transition: all .2s linear;
}

/* line 172, ../sass/_components.header.scss */
.menu-toggle .bars:before,
.menu-toggle .bars:after {
    display: block;
    width: 24px;
    height: 3px;
    background: #404040;
    border-radius: 2px;
    content: "";
    position: absolute;
    transition: .2s linear;
}

/* line 181, ../sass/_components.header.scss */
.menu-toggle .bars:before {
    top: -6px;
}

/* line 182, ../sass/_components.header.scss */
.menu-toggle .bars:after {
    bottom: -6px;
}

/* line 185, ../sass/_components.header.scss */
.menu-toggle .text {
    color: #404040;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-left: 30px;
    top: -4px;
    text-transform: uppercase;
    position: relative;
    vertical-align: middle;
}

/* line 197, ../sass/_components.header.scss */
.active .bars {
    background-color: transparent;
    transition: all .2s linear;
}

/* line 201, ../sass/_components.header.scss */
.active .bars:before {
    top: 0;
    transform: rotate(45deg);
}

/* line 206, ../sass/_components.header.scss */
.active .bars:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* line 1, ../sass/_components.footer.scss */
.footer {
    background: #404040;
    width: 100%;
}

/* line 5, ../sass/_components.footer.scss */
.footer__navigation-bar {
    background: #303030;
    display: none;
}

@media (min-width: 768px) {

    /* line 5, ../sass/_components.footer.scss */
    .footer__navigation-bar {
        display: block;
    }
}

/* line 14, ../sass/_components.footer.scss */
.footer__navigation {
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {

    /* line 14, ../sass/_components.footer.scss */
    .footer__navigation {
        display: block;
    }

    /* line 23, ../sass/_components.footer.scss */
    .footer__navigation a {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 16.66667%;
        margin-left: 0%;
        margin-right: 0%;
        border-bottom: 2px solid transparent;
        background: transparent;
        color: #ffffff;
        display: inline-block;
        font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
        padding: 20px 10px;
        position: relative;
        text-decoration: none;
        text-align: center;
        transition: all .5s;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .footer__navigation a:before,
    .footer__navigation a:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .footer__navigation a:after {
        clear: both;
    }

    /* line 139, ../sass/jeet/_grid.scss */
    .footer__navigation a:nth-child(6n) {
        float: right;
    }

    /* line 142, ../sass/jeet/_grid.scss */
    .footer__navigation a:nth-child(6n + 1) {
        clear: both;
    }

    /* line 36, ../sass/_components.footer.scss */
    .footer__navigation a:hover {
        border-bottom: 2px solid #ffffff;
        color: #ffffff;
    }

    /* line 42, ../sass/_components.footer.scss */
    .footer__navigation a:after {
        background: #ffffff;
        content: "";
        display: inline-block;
        height: 10px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
    }

    /* line 54, ../sass/_components.footer.scss */
    .footer__navigation a:last-of-type:after {
        display: none;
    }

    /* line 59, ../sass/_components.footer.scss */
    .footer__navigation a:nth-child(6):after {
        display: none;
    }

    /* line 65, ../sass/_components.footer.scss */
    .footer__navigation__seperator {
        background: white;
        display: block;
        height: 1px;
        position: absolute;
        top: 50%;
        width: 100%;
    }
}

@media (min-width: 1170px) {

    /* line 76, ../sass/_components.footer.scss */
    .footer__navigation a {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 9.09091%;
        margin-left: 0%;
        margin-right: 0%;
        text-align: center;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .footer__navigation a:before,
    .footer__navigation a:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .footer__navigation a:after {
        clear: both;
    }

    /* line 139, ../sass/jeet/_grid.scss */
    .footer__navigation a:nth-child(11n) {
        float: right;
    }

    /* line 142, ../sass/jeet/_grid.scss */
    .footer__navigation a:nth-child(11n + 1) {
        clear: both;
    }

    /* line 148, ../sass/jeet/_grid.scss */
    .footer__navigation a:nth-child(6n) {
        float: left;
    }

    /* line 151, ../sass/jeet/_grid.scss */
    .footer__navigation a:nth-child(6n + 1) {
        clear: none;
    }

    /* line 82, ../sass/_components.footer.scss */
    .footer__navigation a:nth-child(6):after {
        display: block;
    }

    /* line 87, ../sass/_components.footer.scss */
    .footer__navigation__seperator {
        display: none;
    }
}

/* line 92, ../sass/_components.footer.scss */
.footer__about-link {
    padding: 10px 0 20px;
    text-align: center;
}

/* line 96, ../sass/_components.footer.scss */
.footer__about-link a {
    color: #fff;
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

/* line 103, ../sass/_components.footer.scss */
.footer__about-link a:hover {
    text-decoration: underline;
}

/* line 107, ../sass/_components.footer.scss */
.footer__about-link a:after {
    background: #cccccc;
    content: "";
    display: inline-block;
    height: 10px;
    position: absolute;
    right: 0;
    top: 8px;
    width: 1px;
}

/* line 121, ../sass/_components.footer.scss */
.footer__articles__item {
    overflow: hidden;
    padding: 10px;
}

/* line 126, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__spacer {
    background: #303030;
    min-height: 112px;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* line 133, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__thumbnail {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    display: inline-block;
    height: 70px;
    overflow: hidden;
    width: 70px;
}

/* line 344, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__thumbnail:before,
.footer__articles__item .footer-articles-item__thumbnail:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__thumbnail:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__thumbnail:nth-child(3n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__thumbnail:nth-child(3n + 1) {
    clear: both;
}

/* line 140, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__thumbnail img {
    height: 100%;
}

/* line 145, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    margin-right: 0;
}

/* line 344, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__content:before,
.footer__articles__item .footer-articles-item__content:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__content:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__content:nth-child(3n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.footer__articles__item .footer-articles-item__content:nth-child(3n + 1) {
    clear: both;
}

/* line 149, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__title {
    color: white;
    font: 700 14px/16px "Lato", "Helvetica Neue", "Helvetica", Arial;
    text-transform: uppercase;
    text-decoration: none;
}

/* line 155, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__title h5 {
    margin: 0;
}

/* line 160, ../sass/_components.footer.scss */
.footer__articles__item .footer-articles-item__meta {
    border-top: 1px solid #666;
    clear: both;
    color: #eaeaea;
    margin-top: 5px;
    padding-top: 8px;
    font: 300 10px/5px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 172, ../sass/_components.footer.scss */
.copyright {
    color: #cccccc;
    font: 300 12px/12px "Lato";
    padding: 0 10px;
}

/* line 1, ../sass/_components.form.scss */
.form {
    position: relative;
}

/* line 4, ../sass/_components.form.scss */
.form__row {
    clear: both;
    display: block;
    overflow: hidden;
    padding: 6px 0;
}

/* line 10, ../sass/_components.form.scss */
.form__row label {
    color: #f7f7f7;
    display: block;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* line 18, ../sass/_components.form.scss */
.form__row input[type="text"],
.form__row input[type="email"],
.form__row textarea {
    border: 1px solid #cccccc;
    display: block;
    font: 300 12px/26px "Lato", "Helvetica Neue", "Helvetica", Arial;
    text-indent: 10px;
    width: 100%;
}

/* line 27, ../sass/_components.form.scss */
.form__row input[type="text"]:focus,
.form__row input[type="email"]:focus,
.form__row textarea:focus {
    border: 1px solid #404040;
    outline: none;
}

/* line 32, ../sass/_components.form.scss */
.form__row textarea {
    height: 120px;
    padding: 10px;
    text-indent: 0;
}

/* line 40, ../sass/_components.form.scss */
.form__classifieds__info {
    color: #f7f7f7;
    font: 400 14px/22px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 48, ../sass/_components.form.scss */
form .error {
    color: red;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-top: 5px;
    text-transform: uppercase;
}

/* line 2, ../sass/_components.gig.scss */
.gig__heading {
    border-bottom: 1px solid #eaeaea;
    color: #404040;
    font: 700 20px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-bottom: 10px;
    padding: 10px;
    text-transform: uppercase;
}

/* line 11, ../sass/_components.gig.scss */
.gig__content {
    color: #404040;
    font: 400 16px/20px "Lato", "Helvetica Neue", "Helvetica", Arial;
    padding: 20px 0 30px;
}

/* line 17, ../sass/_components.gig.scss */
.gig__table-heading {
    background: #404040;
    color: #ffffff;
    font: 700 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    overflow: hidden;
    padding: 20px 10px;
    text-transform: uppercase;
}

/* line 25, ../sass/_components.gig.scss */
.gig__table-heading__item {
    *zoom: 1;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
}

/* line 344, ../sass/jeet/_grid.scss */
.gig__table-heading__item:before,
.gig__table-heading__item:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.gig__table-heading__item:after {
    clear: both;
}

/* line 344, ../sass/jeet/_grid.scss */
.gig__table-heading__item:before,
.gig__table-heading__item:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.gig__table-heading__item:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.gig__table-heading__item:nth-child(3n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.gig__table-heading__item:nth-child(3n + 1) {
    clear: both;
}

@media (min-width: 500px) {

    /* line 25, ../sass/_components.gig.scss */
    .gig__table-heading__item {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 22.75%;
        margin-left: 0%;
        margin-right: 3%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .gig__table-heading__item:before,
    .gig__table-heading__item:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .gig__table-heading__item:after {
        clear: both;
    }

    /* line 40, ../sass/jeet/_grid.scss */
    .gig__table-heading__item:nth-child(3n) {
        margin-right: 3%;
        float: left;
    }

    /* line 44, ../sass/jeet/_grid.scss */
    .gig__table-heading__item:nth-child(3n + 1) {
        clear: none;
    }

    /* line 50, ../sass/jeet/_grid.scss */
    .gig__table-heading__item:nth-child(4n) {
        margin-right: 0%;
        float: right;
    }

    /* line 54, ../sass/jeet/_grid.scss */
    .gig__table-heading__item:nth-child(4n + 1) {
        clear: both;
    }
}

/* line 35, ../sass/_components.gig.scss */
.gig__item {
    clear: both;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 20px 10px;
}

/* line 41, ../sass/_components.gig.scss */
.gig__item:nth-child(odd) {
    background: #eaeaea;
}

/* line 45, ../sass/_components.gig.scss */
.gig__item__sub-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    color: #404040;
    font: 400 14px/18px "Lato", "Helvetica Neue", "Helvetica", Arial;
}

/* line 344, ../sass/jeet/_grid.scss */
.gig__item__sub-item:before,
.gig__item__sub-item:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.gig__item__sub-item:after {
    clear: both;
}

/* line 50, ../sass/jeet/_grid.scss */
.gig__item__sub-item:nth-child(3n) {
    margin-right: 0%;
    float: right;
}

/* line 54, ../sass/jeet/_grid.scss */
.gig__item__sub-item:nth-child(3n + 1) {
    clear: both;
}

/* line 50, ../sass/_components.gig.scss */
.gig__item__sub-item:nth-child(4) {
    margin-top: 10px;
    width: 100%;
}

@media (min-width: 500px) {

    /* line 45, ../sass/_components.gig.scss */
    .gig__item__sub-item {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 22.75%;
        margin-left: 0%;
        margin-right: 3%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .gig__item__sub-item:before,
    .gig__item__sub-item:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .gig__item__sub-item:after {
        clear: both;
    }

    /* line 40, ../sass/jeet/_grid.scss */
    .gig__item__sub-item:nth-child(3n) {
        margin-right: 3%;
        float: left;
    }

    /* line 44, ../sass/jeet/_grid.scss */
    .gig__item__sub-item:nth-child(3n + 1) {
        clear: none;
    }

    /* line 50, ../sass/jeet/_grid.scss */
    .gig__item__sub-item:nth-child(4n) {
        margin-right: 0%;
        float: right;
    }

    /* line 54, ../sass/jeet/_grid.scss */
    .gig__item__sub-item:nth-child(4n + 1) {
        clear: both;
    }

    /* line 58, ../sass/_components.gig.scss */
    .gig__item__sub-item:nth-child(4) {
        margin-top: 0;
        width: 22.75%;
    }
}

/* line 66, ../sass/_components.gig.scss */
.gig__item__title a {
    color: green;
    text-decoration: none;
}

/* line 72, ../sass/_components.gig.scss */
.gig__item__btn {
    text-align: center;
    line-height: 25px;
}

/* line 1, ../sass/_components.related.scss */
.related {
    overflow: hidden;
    padding-bottom: 40px;
}

/* line 5, ../sass/_components.related.scss */
.related__heading {
    border-bottom: 1px solid #eaeaea;
    color: #404040;
    font: 700 16px/16px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* line 14, ../sass/_components.related.scss */
.related__articles__item {
    margin-bottom: 10px;
}

@media (min-width: 450px) {

    /* line 14, ../sass/_components.related.scss */
    .related__articles__item {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .related__articles__item:before,
    .related__articles__item:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .related__articles__item:after {
        clear: both;
    }

    /* line 50, ../sass/jeet/_grid.scss */
    .related__articles__item:nth-child(2n) {
        margin-right: 0%;
        float: right;
    }

    /* line 54, ../sass/jeet/_grid.scss */
    .related__articles__item:nth-child(2n + 1) {
        clear: both;
    }

    /* line 20, ../sass/_components.related.scss */
    .related__articles__item:nth-child(3) {
        display: none;
    }
}

@media (min-width: 768px) {

    /* line 14, ../sass/_components.related.scss */
    .related__articles__item {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 31.33333%;
        margin-left: 0%;
        margin-right: 3%;
    }

    /* line 344, ../sass/jeet/_grid.scss */
    .related__articles__item:before,
    .related__articles__item:after {
        content: '';
        display: table;
    }

    /* line 349, ../sass/jeet/_grid.scss */
    .related__articles__item:after {
        clear: both;
    }

    /* line 40, ../sass/jeet/_grid.scss */
    .related__articles__item:nth-child(2n) {
        margin-right: 3%;
        float: left;
    }

    /* line 44, ../sass/jeet/_grid.scss */
    .related__articles__item:nth-child(2n + 1) {
        clear: none;
    }

    /* line 50, ../sass/jeet/_grid.scss */
    .related__articles__item:nth-child(3n) {
        margin-right: 0%;
        float: right;
    }

    /* line 54, ../sass/jeet/_grid.scss */
    .related__articles__item:nth-child(3n + 1) {
        clear: both;
    }

    /* line 28, ../sass/_components.related.scss */
    .related__articles__item:nth-child(3) {
        display: block;
    }
}

/* line 35, ../sass/_components.related.scss */
.related__articles .related-articles-item__thumbnail {
    background-position: center center;
    background-size: cover;
    display: block;
    height: 120px;
    margin-bottom: 10px;
    transition: all .4s;
    width: 100%;
}

/* line 44, ../sass/_components.related.scss */
.related__articles .related-articles-item__thumbnail:hover {
    -webkit-filter: grayscale(100%);
}

@media (min-width: 450px) {

    /* line 35, ../sass/_components.related.scss */
    .related__articles .related-articles-item__thumbnail {
        margin-bottom: 0;
    }
}

/* line 52, ../sass/_components.related.scss */
.related__articles .related-articles-item__heading {
    margin: 10px 0 4px;
}

/* line 55, ../sass/_components.related.scss */
.related__articles .related-articles-item__heading a {
    color: #404040;
    font: 700 14px/18px "Lato", "Helvetica Neue", "Helvetica", Arial;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .4s;
}

/* line 62, ../sass/_components.related.scss */
.related__articles .related-articles-item__heading a:hover {
    color: green;
}

/* line 67, ../sass/_components.related.scss */
.related__articles .related-articles-item__timestamp {
    color: #999999;
    font: 400 12px/12px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin: 4px 0 0;
}

/* line 1, ../sass/_components.sidebar.scss */
.sidebar {
    background: #515151;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* line 8, ../sass/_components.sidebar.scss */
.sidebar h4 {
    color: #ffffff;
    font: 700 16px/16px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin: 0 0 20px;
}

/* line 14, ../sass/_components.sidebar.scss */
.sidebar__search {
    padding-bottom: 20px;
}

/* line 17, ../sass/_components.sidebar.scss */
.sidebar__search label {
    color: #ffffff;
    font: 700 14px/14px "Lato", "Helvetica Neue", "Helvetica", Arial;
    text-transform: uppercase;
}

/* line 22, ../sass/_components.sidebar.scss */
.sidebar__search input[type="search"] {
    background: url('../img/search-icon.png') no-repeat 0 0 #f7f7f7;
    background-position: top 8px right 6px;
    background-size: 16px 20px;
    border: 1px solid #f7f7f7;
    border-radius: 5px;
    display: block;
    font: 300 12px/26px "Lato", "Helvetica Neue", "Helvetica", Arial;
    margin-top: 10px;
    padding: 4px 0;
    position: relative;
    text-indent: 10px;
    width: 100%;
}

/* line 36, ../sass/_components.sidebar.scss */
.sidebar__search input[type="search"]:focus {
    background-color: #fff;
    outline: none;
}

/* line 43, ../sass/_components.sidebar.scss */
.sidebar__ad {
    background: #515151;
    padding: 20px;
    text-align: center;
}

/* line 48, ../sass/_components.sidebar.scss */
.sidebar__ad img {
    display: inline-block;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
}

/* line 56, ../sass/_components.sidebar.scss */
.sidebar__twitter {
    padding-top: 40px;
}

/* line 60, ../sass/_components.sidebar.scss */
.sidebar .fb-page {
    width: 100%;
}

/* line 63, ../sass/_components.sidebar.scss */
.sidebar .fb-page span {
    width: 100% !important;
}

/* line 1, ../sass/_components.wrapper.scss */
.wrapper {
    *zoom: 1;
    width: auto;
    max-width: 1200px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* line 344, ../sass/jeet/_grid.scss */
.wrapper:before,
.wrapper:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.wrapper:after {
    clear: both;
}

/* line 3, ../sass/_trumps.scss */
#twitter-feed {
    margin-left: 0;
    margin: 0 auto !important;
}

/* line 7, ../sass/_trumps.scss */
#twitter-widget-0 {
    width: 100% !important;
}

/* line 11, ../sass/_trumps.scss */
.footer_nav {
    height: 30px;
    width: 30px;
}

/* line 16, ../sass/_trumps.scss */
.footer_nav a {
    display: block;
    height: 100%;
    width: 100%;
}

/* line 21, ../sass/_trumps.scss */
.footer_nav a img {
    height: 100%;
    width: 100%;
}

/* line 28, ../sass/_trumps.scss */
.clearfix {
    *zoom: 1;
    clear: both;
}

/* line 344, ../sass/jeet/_grid.scss */
.clearfix:before,
.clearfix:after {
    content: '';
    display: table;
}

/* line 349, ../sass/jeet/_grid.scss */
.clearfix:after {
    clear: both;
}

/* line 37, ../sass/_trumps.scss */
* {
    box-sizing: border-box;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
/* line 9, ../sass/_helpers.scss */
.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

/* line 17, ../sass/_helpers.scss */
.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
/* line 28, ../sass/_helpers.scss */
.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
/* line 37, ../sass/_helpers.scss */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
/* line 53, ../sass/_helpers.scss */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
/* line 67, ../sass/_helpers.scss */
.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/* line 83, ../sass/_helpers.scss */
.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

/* line 89, ../sass/_helpers.scss */
.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
/* line 98, ../sass/_helpers.scss */
.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {

    /* line 108, ../sass/_helpers.scss */
    * {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* line 115, ../sass/_helpers.scss */
    a,
    a:visited {
        text-decoration: underline;
    }

    /* line 120, ../sass/_helpers.scss */
    a[href]:after {
        content: " ("attr(href) ")";
    }

    /* line 124, ../sass/_helpers.scss */
    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    /*
   * Don't show links for images, or javascript/internal links
   */
    /* line 132, ../sass/_helpers.scss */
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    /* line 138, ../sass/_helpers.scss */
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /* line 144, ../sass/_helpers.scss */
    thead {
        display: table-header-group;
        /* h5bp.com/t */
    }

    /* line 148, ../sass/_helpers.scss */
    tr,
    img {
        page-break-inside: avoid;
    }

    /* line 153, ../sass/_helpers.scss */
    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    /* line 161, ../sass/_helpers.scss */
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    /* line 168, ../sass/_helpers.scss */
    h2,
    h3 {
        page-break-after: avoid;
    }
}
