/* Global */
*, .pure-g-r [class *="pure-u"] {
  font-family: "NeutraTextTF Demi", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
body {
  color: #555;
}

.pure-form-aligned .pure-control-group label {
  margin-left: -1em;
}

/* Add transition to containers so they can push in and out */
#layout,
#menu,
.pure-menu-link {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

#instructions {
  margin-bottom: 20px;
}

#errors {
  width: 50%;
  border: 1px solid red;
  border-radius: 4px;
  padding: 0.5em 1em;
  margin: 2em 0 0 0;
  box-shadow: inset 0 1px 3px #cee;
  background: #fee;
  color: red;
}

/* --------------------------
 * Element Styles
 * --------------------------
 */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: rgb(75, 75, 75);
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1.125em;
}

a {
    color: #3b8bba; /* block-background-text-normal */
    text-decoration: none;
}

a:visited {
    color: #265778; /* block-normal-text-normal */
}

dt {
    font-weight: bold;
}
dd {
    margin: 0 0 10px 0;
}


/* --------------------------
 * Layout Styles
 * --------------------------
 */

#layout {
    padding-left: 150px; /* left col width "#menu" */
    left: 0;
}


/* Apply the .box class on the immediate parent of any grid element (pure-u-*) to apply some padding. */
.l-box {
    padding: 1.3em;
}

.l-vbox {
    padding: 1.3em 0;
}

.l-hbox {
    padding: 0 1.3em;
}

.l-centered {
    text-align: center;
}



/* --------------------------
 * Header Module Styles
 * --------------------------
*/
.header {
     min-height: 80px;
     margin: 0;
     color: #333;
     padding: 1em;
     text-align: center;
     border-bottom: 1px solid #eee;
     background: #fff;
 }
    .header h1 {
        margin: 0.2em 0;
        font-size: 3em;
        font-weight: 300;
    }
     .header h2 {
        font-weight: 300;
        margin: 0;
        color: #ccc;
    }

aside {
    background: #1f8dd6; /* same color as selected state on site menu */
    padding: 0.3em 1em;
    border-radius: 3px;
    color: #fff;
}
    aside a, aside a:visited {
        color: rgb(169, 226, 255);
    }


 /* --------------------------
  * Content Module Styles
  * --------------------------
 */

/* The content div is placed as a wrapper around all the docs */
.content {
    margin: 0 auto;
    width: 70%;
    margin-bottom:50px;
}
    .content p {
        line-height: 1.6em;
        font-size: 1.125em;
    }

    .content .content-subhead {
        margin: 50px 0 20px 0;
        font-weight: 300;
        color: #888;
    }

    .content .content-spaced {
        line-height: 1.8em;
    }

    /* A code snippet that has been syntax highlighted */
    .content .snippet {
        margin: 1.3em 0 1em;
        padding: 1.3em;
    }

    .content .content-quote {
        font-family: "Georgia", serif;
        color: #666;
        font-style: italic;
        line-height: 1.8em;
        border-left: 5px solid #ddd;
        padding-left: 1.5em;
    }



/* --------------------------
 * Footer Module Styles
 * --------------------------
*/
.legal {
    font-size: 80%;
    border-top: 1px solid #eee;
    padding: 0.5em 0;
    background: rgb(250, 250, 250);
}

    .legal-license,
    .legal-copyright {
        margin: 0;
    }

    .legal-copyright,
    .legal-links {
        text-align: right;
    }

    .legal-links {
        list-style: none;
        margin: 0;
    }

    .legal-logo {
        text-align: center;
    }

/* --------------------------
 * Main Navigation Bar Styles
 * --------------------------
*/

#menu {
    margin-left: -150px; /* "#menu" width */
    width: 150px;
    position: fixed;
    top: 0;
    left: 150px;
    bottom: 0;
    z-index: 1000; /* so the menu or its navicon stays above all content */
    background: #222;
    overflow-y: auto;
    -webkit-overflow-scroll: touch;
}
    #menu a {
        color: #999;
        border: none;
        white-space: normal;
        padding: 0.6em 0 0.6em 0.6em;
    }

    #menu .pure-menu-open {
        background: transparent;
        border: 0;
    }

    #menu .pure-menu ul {
        border: none;
        background: transparent;
    }

    #menu .pure-menu ul,
    #menu .pure-menu .menu-item-divided {
        border-top: 1px solid #333;
    }

        #menu .pure-menu li a:hover,
        #menu .pure-menu li a:focus {
            background: #333;
        }

    .pure-menu-link {
        display: none; /* show this only on small screens */
        top: 0;
        left: 150px; /* "#menu width" */
        background: #000;
        background: rgba(0,0,0,0.7);
        padding: 0.75em 1em;
    }

        .pure-menu-link:hover,
        .pure-menu-link:focus {
            background: #000;
        }

    #menu .pure-menu-heading {
        font-size: 110%;
        color: #fff;
    }
    #menu .pure-menu-heading:hover,
    #menu .pure-menu-heading:focus {
        color: #999;
    }

    #menu .pure-menu-selected {
        background: #1f8dd6;
    }

        #menu .pure-menu-selected a {
            color: #fff;
        }

        #menu li.pure-menu-selected a:hover,
        #menu li.pure-menu-selected a:focus {
            background: none;
        }



/* ---------------------
 * Smaller Module Styles
 * ---------------------
*/

/* example code blocks */
.example-snippet {
    margin: 2em 0;
    font-size: 85%;
}

/* green call to action button class */
.notice {
    background-color: #61B842;
    color: white;
}

.pure-button {
    font-family: inherit;
}
a.pure-button-primary {
    color: white;
}

.muted {
    color: #ccc;
}

/* --------------------------
 * Responsive Styles
 * --------------------------
*/

@media (max-width: 870px) {

    /* Navigation Push Styles */
    #layout {
        position: relative;
        padding-left: 0;
    }
        #layout.active {
            position: relative;
            left: 150px;
        }
            #layout.active #menu {
                left: 150px;
                width: 150px;
            }

    #menu {
        left: 0;
    }

    .pure-menu-link {
        position: fixed;
        left: 0;
        display: block;
    }

    #layout.active .pure-menu-link {
        left: 150px;
    }
}

@media (max-width: 767px) {

    .content {
        width: 95%;
        font-size: 90%;
    }

    .legal-links {
        padding:1em 0;
    }
    .legal-license,
    .legal-copyright,
    .legal-links,
    .legal-links li {
        text-align: center;
    }

    /* normalize paddings on small screens*/
    .l-hbox {
        padding: 1.3em;
    }
}




/* Login Page */
.login-buttons a {
  display: block;
  margin: 20px 0;
}

#login-password {
  width: 100%;
}

#login-google {
  background: #d34836;
}

#login-facebook {
  background: #3b5998;
}

#topheader {
  background: url("http://lensley.com/wp/wp-content/themes/lensley-2012/assets/images/logo.png") no-repeat black;
  height: 100px;
  margin: 0;
  text-indent: -999em;
}

/*** LENSLEY FONTS ***/
@font-face {
 font-family: 'PFDinDisplayPro Medium';
 src: url('../fonts/webfonts/pfdindisplaypro-med-webfont.eot');
 src: url('../fonts/webfonts/pfdindisplaypro-med-webfont.eot?#iefix') format('embedded-opentype'),
      url('../fonts/webfonts/pfdindisplaypro-med-webfont.woff') format('woff'),
      url('../fonts/webfonts/pfdindisplaypro-med-webfont.ttf') format('truetype'),
      url('../fonts/webfonts/pfdindisplaypro-med-webfont.svg#pf_dindisplay_pro_mediumRg') format('svg');
 font-weight: 400;
 font-style: normal;
}

@font-face {
 font-family: 'PFDinDisplayPro Light';
 src: url('../fonts/webfonts/pfdindisplaypro-light-webfont.eot');
 src: url('../fonts/webfonts/pfdindisplaypro-light-webfont.eot?#iefix') format('embedded-opentype'),
      url('../fonts/webfonts/pfdindisplaypro-light-webfont.woff') format('woff'),
      url('../fonts/webfonts/pfdindisplaypro-light-webfont.ttf') format('truetype'),
      url('../fonts/webfonts/pfdindisplaypro-light-webfont.svg#pf_dindisplay_pro_lightRg') format('svg');
 font-weight: 400;
 font-style: normal;
}

@font-face {
 font-family: 'PFDinDisplayPro Bold';
 src: url('../fonts/webfonts/pfdindisplaypro-bold-webfont.eot');
 src: url('../fonts/webfonts/pfdindisplaypro-bold-webfont.eot?#iefix') format('embedded-opentype'),
      url('../fonts/webfonts/pfdindisplaypro-bold-webfont.woff') format('woff'),
      url('../fonts/webfonts/pfdindisplaypro-bold-webfont.ttf') format('truetype'),
      url('../fonts/webfonts/pfdindisplaypro-bold-webfont.svg#pf_dindisplay_probold') format('svg');
 font-weight: 600;
 font-style: normal;
}

@font-face {
 font-family: 'PFDinDisplayPro Thin';
 src: url('../fonts/webfonts/pfdindisplaypro-thin-webfont.eot');
 src: url('../fonts/webfonts/pfdindisplaypro-thin-webfont.eot?#iefix') format('embedded-opentype'),
      url('../fonts/webfonts/pfdindisplaypro-thin-webfont.woff') format('woff'),
      url('../fonts/webfonts/pfdindisplaypro-thin-webfont.ttf') format('truetype'),
      url('../fonts/webfonts/pfdindisplaypro-thin-webfont.svg#pf_dindisplay_pro_thinregular') format('svg');
 font-weight: 400;
 font-style: normal;
}

@font-face {
 font-family: 'PFDinDisplayPro Regular';
 src: url('../fonts/webfonts/pfdindisplaypro-reg-webfont.eot');
 src: url('../fonts/webfonts/pfdindisplaypro-reg-webfont.eot?#iefix') format('embedded-opentype'),
      url('../fonts/webfonts/pfdindisplaypro-reg-webfont.woff') format('woff'),
      url('../fonts/webfonts/pfdindisplaypro-reg-webfont.ttf') format('truetype'),
      url('../fonts/webfonts/pfdindisplaypro-reg-webfont.svg#pf_dindisplay_proregular') format('svg');
 font-weight: 600;
 font-style: normal;

}

@font-face {
  font-family: "NeutraTextTF Demi";
  src: url('../fonts/Neutra/NeutraTextTF-Demi.otf') format('opentype');
  font-weight: 400;
}
