/*
Theme Name: Personal Liberty 2014
Theme URI: http://underscores.me/
Author: Dennis Calvert
Author URI: http://underscores.me/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: personal-liberty-2014
Domain Path: /languages/
Tags:


 Personal Liberty 2014 is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*, *:before, *:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
    -webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
    -moz-box-sizing: border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
    box-sizing: border-box;
}

body {
    background: #333;
}

#page {
    background-color: #eee;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

caption, th, td {
    font-weight: normal;
    text-align: left;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}

blockquote, q {
    quotes: "" "";
}

a {
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {
    outline: 0;
}

a img {
    border: 0;
}


.poll-img {
    margin: auto;
    width: 100%;
}

.total-respondents {
    text-align: center;
    margin: 15px;
}

.percent {    
    position: absolute;
    height: 100%;
    background-color: #08f;
}

.question {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #333;
    font-family: roboto;
}


.response {
    background-color: #ddd;
    padding: 15px 25px;
    border-radius: 5px;
}

.results {
    width: 100%;
    padding: 0;
    position: relative;
    height: 15px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.4) inset;
    background-color: #999;
}
/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto Regular'), local('Roboto-Regular'), url(http://themes.googleusercontent.com/static/fonts/roboto/v11/2UX7WLTfW3W8TclTUvlFyQ.woff) format('woff');
}

body, button, input, select, textarea {
    color: #222;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
}

h3 {
    font-size: 1.2em;
    background-color: #444;
    color: #fff;
}

h3 span {
    color: rgb(204, 204, 204);
    padding-bottom: 5px;
    font-size: 0.7em;
    display: block;
}

h5 {
    font-size: 2em;
    color: #444;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 1.5em;
}

b, strong {
    font-weight: bold;
}

dfn, cite, em, i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code, kbd, tt, var {
    font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark, ins {
    background: #fff9c0;
    text-decoration: none;
}

sup, sub {
    font-size: 65%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom:7px;
}

sub {
    top: .5ex;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul, ol {
    margin: 0 0 1.5em 0;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

li {
    margin-bottom: 1em;
}

li > ul, li > ol {
    margin-left: 1em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    /*height: auto;  Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

.single img {
    height: auto;
}

.single .entry-content img {
    width: 100%;
}

figure {
    margin: 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

th {
    font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button, input, select, textarea {
    font-size: 100%; /* Corrects font size not being inherited in all browsers */
    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    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);
    color: rgba(0, 0, 0, .8);
    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    padding: .6em 1em .4em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
    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);
}

button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"], input[type="radio"] {
    padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
    -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner, input::-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/ */
    border: 0;
    padding: 0;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus {
    color: #111;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"] {
    padding: 3px;
}

textarea {
    overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
    padding-left: 3px;
    vertical-align: top; /* Improves readability and alignment in all browsers */
    width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
@media screen and (min-width:800px) {
    #menu-footer li {
        display: inline;
        padding: 10px 20px;
    }
}

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a, a:visited {
    color: royalblue;
    transition: color 0.2s ease;
}

a:hover, a:focus, a:active {
    color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

#utilites {
    float: right;
    text-align: right;
    margin: 10px 0 10px 0;
}

#utilites li {
    float: right;
    margin: 0 0 0 40px;
    position: relative;
}

#utilites .icon {
    position: absolute;
    width: 17px;
    height: 17px;
    fill: #eee;
    top: 5px;
    left: -12px;
}

.pointer {
    background: url(http://plimages.blob.core.windows.net/images/social-arrow-large.png) no-repeat;
    background-position: 0px -5px;
    padding-left: 5px;
}

.social-counter {
    background-color: #fff;
    color: #000;
    padding: 1px 2px;
    border-radius: 1px;
}

.main-navigation {
    clear: right;
    float: right;
    margin-bottom: 5px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
    margin: 0 5px;
    border-right: 1px solid #555;
    padding-right: 10px;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 1.5em;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul ul li {
}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
    left: auto;
}

.main-navigation ul ul li:hover > ul {
    left: 100%;
}

.main-navigation .current_page_item a, .main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
    display: none;
}

#mobile-navigation {
    background-color: #333;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    -ms-transform: translateX(-100vw);
    -webkit-transform: translateX(-1000px);
    transform: translateX(-100vw);
    transition: all 0.2s ease;
}

#mobile-navigation a {
    color: #fff;
    color: #fff;
    padding: 20px 15px 15px;
    display: block;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

#mobile-navigation a:hover {
    background-color: #444;
}

.slide-in {
    -ms-transform: translateY(0px) !important;
    -webkit-transform: translateY(0px) !important;
    transform: translateY(0px) !important;
    display: block !important;
}

.fade {
    opacity: .2 !important;
}

@media screen and (max-width: 755px) {
    .menu-toggle, .main-navigation.toggled .nav-menu {
        display: block;
        position: absolute;
        top: 12px;
        right: 6px;
        color: #fff;
        background-color: transparent;
        border: 0;
    }

    .menu-toggle span {
        display: block;
        background-color: #fff;
        height: 4px;
        width: 100%;
        margin: 4px 0;
    }

    #mobile-navigation li {
        border-bottom: 1px solid #444;
        border-top: 1px solid #000;
        margin: 0;
    }


    .main-navigation ul, #utilites {
        display: none;
    }

    .toggle-mobile-nav {
        left: -290px;
        position: relative;
    }

    .toggle-mobile-nav #mobile-navigation {
        display: block;
    }

    #scroll-to-top {
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
}

@media screen and (min-width:700px) {
    #mobile-navigation {
        display: none !important;
    }
}

.site-main .comment-navigation, .site-main .paging-navigation, .site-main .post-navigation {
    margin: 1.5em 0;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding: 15px 0;
}

.comment-navigation .nav-previous, .paging-navigation .nav-previous, .post-navigation .nav-previous {
    float: left;
    width: 50%;
    border-right: 1px solid #ccc;
}

.comment-navigation .nav-next, .paging-navigation .nav-next, .post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
    content: '';
    display: table;
}

.clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

/* Make sure select elements fit in widgets */
.widget select {
    max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
    display: none;
}

.widget ul, .widget li {
    margin-bottom: 0;
}

.widget a {
    color: #262626;
    display: block;
    font-size: 0.75em;    
    padding: 10px;
}

.widget h3 a, h3 span {
    padding: 10px;
    color: #fff;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

#lockedAD {
}

@media screen and (min-width:1025px) {
    .locked {
        position: fixed !important;
        top: 120px !important;
    }
}

.article-poll {
    position: relative;
}

#SQPoll {
    width: 100%;
    height: 145px;
    padding: 5px 0;
    box-shadow: 0 15px 10px #666;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 0 0 30px 30px;
    min-height: 133px;
    transition: all 0.2s ease;
}

.polls {
    background-color: #fff;
}

.polls a {
    font-size: 1em;
    border-bottom: 1px solid #ccc;
}

.polls a:hover {
    background-color: #ddd;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
#content {
    padding: 90px 10px 20px 10px;
}

.single #content, .page #content {
    background-color: #fff;
}

#main {
    position: relative;
}
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}

.hentry {
    margin: 0 0 1.5em;
}

.byline, .updated {
    display: none;
}

.single .byline, .group-blog .byline {
    display: inline;
}

.page-content, .entry-content, .entry-summary {
    font-size: 18px;
    margin: 1.5em 0 0;
}

.entry-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.entry-content ol {
    list-style-type: decimal;
    margin-left: 20px;
}

.page-links, .wp-post-image {
    clear: both;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title, .archive .format-aside .entry-title {
    display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
#disqus_thread {
    margin: auto;
    width: 90%;
}

.comment-content a {
    word-wrap: break-word;
}

#dsq-indicator-north {
    left: 0 !important;
    max-width: 100% !important;
    top: 111px !important;
}

.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
    display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley, .entry-content img.wp-smiley, .comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed, iframe, object {
    max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

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

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.caption {
    text-align: right;
    font-size: 0.7em;
    margin-top: -6px;
    margin-bottom: 6px;
    background-color: rgba(0,0,0,1);
    z-index: 99999;
    color: #fff;
    padding: 5px;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
}
*/

/*-----------------------------------------------------------------
VIDEO    
-----------------------------------------------------------------*/
.PLMGvideo {
    background-color: #000;
}

.PLMGvideo .wp-post-image {
    width: 100%;
}

.PLMGvideo a:nth-child(2) {
    padding: 0;
    line-height: 0;
    transition: opacity .4s ease;
}

.PLMGvideo a:nth-child(2):hover {
    opacity: .5;
}

.PLMGvideo-poster-wrapper {
    position: relative;
}

.play-button {
    position: absolute;
    margin: auto;
    text-align: center;
    width: 100%;
    padding-top: 40px;
}

/*-----------------------------------------------------------------
HEADING
-----------------------------------------------------------------*/

#masthead {
    background-color: rgb(30,30,30);
    border-bottom: 1px solid #fff;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transform: translateZ(0);
}

#masthead, #masthead a {
    color: #ddd;
    text-decoration: none;
}

#masthead a {
    border-radius: 4px;
    padding: 2px 5px;
    font-size: .8em;
    transition: background-color 0.2s ease;
}

#site-navigation a:hover {
    background-color: #555;
}

.site-branding {
    float: left;
    margin: 2px 0 0 0;
    position: relative;
}

#tagline {
    position: absolute;
    top: 62px;
    width: 196px;
    left: 19px;
    font-size: .55em;
}

#logo-reg {
    position: absolute;
    top: -3px;
    right: 0px;
    font-size: 1em;
}
/*-----------------------------------------------------------------
ENTRY CONTENT
-----------------------------------------------------------------*/
.entry-content {
    clear: both;
    font-family: Georgia;
}

.entry-title {
    border-bottom: 1px solid #aaa;
    margin-bottom: 5px;
    color: rgb(30,30,30);
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3em;
    padding: 20px 0;
}

.entry-meta {
    font-size: .8em;
}

.article-single h2 {
    font-size: 1.5em;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
    color: #888;
}
/*-----------------------------------------------------------------
TEASER
-----------------------------------------------------------------*/

#tetris {
    position: relative;
}

.teaser {
    background-color: #fcfcfc;
    overflow: hidden;
    box-shadow: 0px 0px 0px rgba(0,0,0,.7);
    border-radius: 2px;
    min-height: 140px;
    text-align: center;
    will-change: box-shadow;
    transition: box-shadow 0.1s ease-out;
}

.teaser .cat-links {
    display: block;
    font-size: .8em;
    margin-bottom: 10px;
}

.teaser .entry-footer {
    width: 100%;
}

.teaser-header {
    padding: 20px 20px 5px 20px;
    text-align: left;
}

.teaser-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #222;
    line-height: 1.1em;
}

.teaser-title a {
    color: #444;
    padding: 0;
}

.teaser-title a:hover {
    color: #08f;
}

#featured-teaser img {
    height: auto;
}

@media screen and (min-width:600px) {
    .teaser:hover {
        background-color: #fff !important;
        box-shadow: 0 1px 10px rgba(0,0,0,.8);
    }

    .teaser footer {
        background-color: rgba(10,0,10,.1);
        line-height: 0;
        position: absolute;
        bottom: 0;
    }

    #featured-teaser {
        width: 100%;
        background-color: #fff;
        padding: 0;
        position: relative;
        margin-bottom: 20px;
    }

    #featured-teaser .entry-content, #featured-teaser .entry-footer {
        line-height: 0;
    }

    #featured-teaser .entry-content {
        text-align: center;
    }

    #featured-teaser header {
        font-size: 1em;
    }

    #featured-teaser h2 {
        font-size: 2em;
        padding: 15px;
    }

    #featured-teaser p {
        font-size: .8em;
    }

    #featured-teaser img {
        margin: 0;
    }

    #featured-teaser footer {
        bottom: 0;
    }

    #featured-teaser #copy {
        bottom: 30px;
        background-color: rgba(255,255,255,.8);
        display: block;
        width: 100%;
    }

    #copy p {
        line-height: 1.2em;
        margin: 0;
        padding: 10px;
    }
}

#tertiary h3 a, .article-poll h3 span, .article-poll h3 a {
    border: 0;
    padding-left: 80px;
}

#tertiary h3 a:hover {
    color: #08f;
}

.blog-icon {
    position: absolute;
    top: 7px;
    left: 10px;
    max-width: 60px;
}

.description {
    margin: 0px;
    padding: 10px 5px 10px 80px;
    color: #222;
    line-height: 1;
    font-size: 0.8em;
    background-color: #fff;
    background-color: #aaa;
    min-height: 36px;
}

.headline {
    padding: 6px 5px 0 95px;
    position: relative;
    list-style-type: none;
    border-bottom: 1px solid #ccc;
    min-height: 95px;
}

.headline img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 75px;
    height: auto;
}
/*-----------------------------------------------------------------
SVG
-----------------------------------------------------------------*/
.icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    fill: #999;
}

.sharing .icon {
    fill: #fff;
    height: 20px;
    padding: 3px;
    width: 25%;
    transition: padding 0.3s ease;
}

.sharing .icon:hover {
    padding: 1px;
}

.single .sharing .icon {
    height: 36px;
    padding: 7px;
    width: 25%;
}

.single .sharing .icon:hover {
    padding: 3px;
}

.sharing .icon-facebook {
    background-color: #4c66a4;
}

.sharing .icon-twitter {
    background-color: #55acee;
}

.sharing .icon-google-plus {
    background-color: #dd4b39;
}

.sharing .icon-pinterest {
    background-color: #ab171e;
}

#share-count {
    font-size: 2em;
    line-height: 1em;
    color: red;
}

#share-count span {
    color: #333;
    font-size: .5em;
    margin-left: -5px;
}

#pageViews {
    display: block;
}

@media screen and (max-width:600px) {
    .byline {
        display: block !important;
    }
}

@media screen and (min-width:600px) {
    #pageViews {
        display: inline-block;
        float: left;
    }
}
/*-----------------------------------------------------------------
Footer
-----------------------------------------------------------------*/
.site-footer {
    background-color: #222;
    padding: 50px;
    text-align: center;
    color: #999;
}

.site-footer a {
    color: #fff;
}

#back-to-top {
    background-color: #000;
    color: #fff;
    width: 25%;
    padding: 20px;
    margin-bottom: 25px;
}

/*-----------------------------------------------------------------
SIGNUP POPUP WINDOW & Book Preview
-----------------------------------------------------------------*/
#signup-pop, #book-preview {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    top: 0;
}

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.pop-content {
    max-width: 500px;
    margin: 0 auto;
    background-color: #eee;
    padding: 5px;
    margin-top: 75px;
    position: relative;
}

.pop-content .icon {
    position: absolute;
    right: 8px;
    top: 14px;
    width: 37px;
    height: 37px;
    fill: #aaa;
    border: 0;
    background-color: #555;
    padding: 3px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    transition: padding 0.2s ease;
}

.pop-content .icon:hover {
    cursor: pointer;
    background-color: #222;
    padding: 1px;
}

.pop-content p {
    font-size: 12px;
    text-align: left;
    margin-bottom: 5px;
}

.pop-content li {
    margin: 5px;
    font-size: .9em;
    list-style-type: disc;
    margin-left: 35px;
}

@media screen and (min-width:800px) {
    .pop-content {
        border-radius: 5px;
        margin-top: 0;
        padding: 5px;
        top: 25%;
    }

    .pop-content p {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

/*Sign up boxes*/
.sign-up {
    overflow: visible !important;
}

#su-kicker {
    background-color: #F39600;
    text-shadow: 0 0 2px #444;
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
    padding: 5px;
}

.sign-up {
    background-color: #fff;
    padding: 10px 10px 0 10px;
    position: relative;
}

.sign-up strong, .sign-up em {
    font-size: 1em;
}

.sign-up img {
    position: absolute;
    top: 138px;
    right: -31px;
    max-width: 100%;
}

.sign-up p {
    font-size: .9em;
    line-height: 1.25em;
    text-align: left;
    margin-bottom: 10px;
}

#signup-frame {
    width: 50%;
    height: 105px;
}

#signup-legal {
    font-size: 0.7em;
    line-height: 1em;
    color: #444;
    width: 40%;
    padding: 10px 0px 5px 20px;
}

#open-book-preview {
    margin: 0 0 9px 8px;
    font-size: .8em;
    background-color: #fff;
    border: 0;
    color: #08f;
}

.header-signup {
    display: none;
}

@media screen and (max-width:600px) {
    .single .header-signup {
        display: block !important;
        margin-top: -15px;
    }
}
/*--------------------------------------------------------------
Search Tools
--------------------------------------------------------------*/

#search-desktop input {
    padding: 0 0 0 5px;
    font-size: .9em;
    width: 300px;
    transition: padding 0.2s ease;
}

#search-desktop input:focus {
    padding: 10px;
}

#search-close {
    padding: 1px;
    top: 2px;
    position: relative;
    display: none;
}

.search-submit {
    padding: 3px 1px;
}

#search-desktop #search-toggle {
    background-color: #fff;
    padding: 4px;
}

#search-desktop .icon {
    fill: #222;
    padding: 2px;
    transition: padding 0.2s ease;
}

#search-desktop .icon:hover {
    padding: 0;
}

/*-----------------------------------------------------------------
Strictly Mobile
-----------------------------------------------------------------*/
@media screen and (max-width:600px) {

    .home #content {
        padding: 90px 0 0;
    }

    .teaser {
        border-bottom: 40px solid #eee;
        border-radius: 0;
    }

    .teaser img {
        width: 100%;
        height: auto;
    }

    .teaser .entry-footer {
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 0;
        font-size: 0;
        margin-top: -20px;
    }

    .no-mob {
        display: none;
    }

    .widget {
        margin: auto;
    }

    #tertiary .widget {
        max-width: 100%;
    }
}

@media screen and (max-width:800px) {
    #tertiary {
        max-width: 600px;
        margin: auto;
    }
}
/*-----------------------------------------------------------------
Anything larger than a phone
-----------------------------------------------------------------*/
@media screen and (min-width:600px) {

    #masthead-inner, #content {
        margin: auto;
        max-width: 935px;
    }

    #content {
        display: -moz-box;
        display: flex;
        flex-flow: row wrap;
        webkit-flex-flow: row wrap;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    #primary {
        align-self: stretch;
        flex: 0 1 50%;
        order: 0;
        min-width: 600px;
        min-height: auto;
    }

    #secondary, #tertiary {
        align-self: stretch;
        flex: 0 1 25%;
        min-width: 300px;
        min-height: auto;
    }

    #tetris .teaser img {
        width: 100%;
        height: auto;
    }

    .teaser {
        border: 1px solid #aaa;
        display: inline-block;
        position: absolute;
        width: 49%;
        line-height: 0;
    }

    .teaser:nth-of-type(2n+1) {
        left: 0;
    }

    .teaser:nth-of-type(2n) {
        right: 0;
    }

    #main .paging-navigation {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .search #main .paging-navigation {
        position: relative;
    }

    .entry-meta {
        text-align: right;
    }

    .cat-links a {
        line-height: 1.5em;
    }

    /*Sharing*/
    .single .sharing {
        float: right;
        width: 50%;
    }

    .sharing a {
        opacity: .3;
        transition: opacity 0.5s ease;
    }

    .sharing a:hover {
        opacity: 1 !important;
    }

    .single .sharing a {
        opacity: 1;
    }

    .transparent .sharing a {
        opacity: .7;
    }

    #author-avatar {
        float: left;
        margin-right: 20px;
    }

    #author-info {
        float: left;
        width: 79%;
    }

    #author-info p {
        color: #444;
        font-weight: normal;
        font-size: .9em;
        line-height: 1.1em;
    }
}

/*-----------------------------------------------------------------
Tablets, Laptops, & Narrow Displays
-----------------------------------------------------------------*/
@media screen and (min-width:600px) and (max-width:900px) {

    #secondary {
        flex: 0 0 100%;
        max-width: 620px;
        margin: 0 auto !important;
    }

    #secondary .widget {
        float: left;
        width: 50%;
    }

    aside.sign-up p {
        max-width: 300px;
    }

    aside.sign-up #upg-book {
        top: 62px;
        right: 42px;
    }
}

@media (min-width:1100px) {
    #content {
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flexbox;
    }
}

@media screen and (min-width: 600px) and (max-width:1367px) {

    #primary {
        max-width: 100%;
    }

    #secondary {
        margin-left: 10px;
    }

    #tertiary {
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -webkit-order: 4;
        order: 4;
        background-color: #fcfcfc;
        border-top: 1px solid #ccc;
        padding-top: 25px;
    }

    .widget * {
        font-size: 16px;
    }

    #tertiary .widget:first-child {
        clear: left;
    }

    #tertiary ul {
        padding: 10px;
    }

    #main {
        margin: auto;
        max-width: 600px;
    }

    .narrow-100 {
        clear: both !important;
        display: block !important;
        float: none !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media screen and (min-width:800px) and (max-width:1367px) {
    #tertiary .widget {
        max-width: 33.3333%;
        display: inline-table;
        width: 33.1%;
        font-size: 0;
        vertical-align: top;
    }
}

@media screen and (min-width: 950px) {
    .site-branding {
        margin-left: 0;
    }

    .main-navigation li:last-child {
        border: 0;
        margin-right: 0;
        padding-right: 0;
    }
}

/*-----------------------------------------------------------------
Glorious Full width
-----------------------------------------------------------------*/
@media screen and (min-width: 1367px) {
    body {
        background-color: #eee;
    }

    #page {
        box-shadow: 0 0 0;
    }

    #masthead {
        margin-bottom: 15px;
    }

    #masthead-inner, #content {
        max-width: 1240px;
    }

    #content {
        flex-flow: row nowrap;
    }

    .single #primary, .page #primary {
        order: 2;
    }

    #secondary {
        margin: 0;
        order: 3;
    }

    #tertiary {
        order: 1;
    }

    .single #tertiary {
        opacity: .8;
        transition: opacity 0.5s ease;
    }

    .single #tertiary:hover {
        opacity: 1;
    }

    #main {
        margin: auto;
        max-width: 600px;
    }

    .article-single {
        margin: 0 15px;
        padding: 10px;
    }

    #tertiary .widget {
        background: #fff;
        padding: 0 0 10px;
        margin: 0 10px;
    }
}

@media screen and (min-width: 1680px) {
    .post-navigation .nav-previous, .post-navigation .nav-next {
        max-width: 10%;
        background-color: #fff;
        box-shadow: 2px 2px 5px rgba(0,0,0,.3);
        position: fixed;
        width: 100%;
        border: 0;
        z-index: 1;
        bottom: 5%;
        font-size: .8em;
        line-height: 1em;
        transition: box-shadow 0.3s ease;
    }

    .post-navigation .nav-previous:hover, .post-navigation .nav-next:hover {
        box-shadow: 3px 3px 15px rgba(0,0,0,.7);
    }

    .post-navigation .nav-previous {
        border-radius: 0 5px 5px 0;
        left: 0;
    }

    .post-navigation .nav-next {
        border-radius: 5px 0 0 5px;
        right: 0;
    }

    .nav-previous a, .nav-next a {
        display: inline-block;
        padding: 20px;
    }
}

@media screen and (min-width: 2200px) {
    .post-navigation .nav-previous, .post-navigation .nav-next {
        font-size: 1em;
        line-height: 1.2em;
    }
}

@media screen and (max-width:600px) {
    .mobile-only {
        display: block;
    }
}

@media print {
    #masthead, #colophon, #secondary, #tertiary, .no-mob, .navigation, #author-avatar, #author-info, .fb-comments, #disqus_thread, .wp-post-image, #contentad26901, #share-count, .sharing, .no-print {
        display: none;
    }

    .entry-title {
        padding: 5px;
        font-size: 20px;
    }
}

.mobile-only {
    display: none;
}
