/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/*! normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
    /* for IE */

    zoom : 1;
}

.clearfix:before,
.clearfix:after {
    content : "";
    display : table;
}

.clearfix:after {
    clear : both;
}

/*********************
TOOLS
*********************/
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */
.image-replacement {
    text-indent : 100%;
    white-space : nowrap;
    overflow    : hidden;
}

.screen-reader-text {
    position : absolute;
    left     : -9999px;
}

/*********************
COLOURS

The Palette:

Pink: #e51293
Brown: #cd988b
Red: #f52f3d
Orange: #d29000
Green: #abac00

Grey: #a0a0a4
Dark Grey: #505050
Background Yellow: #fffde9



*********************/

::selection {
    background : #33ded4; /* Safari */
}

::-moz-selection {
    background : #33ded4; /* Firefox */
}

/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
        and place your fonts inside the
        library/fonts folder. For more information
        on embedding fonts, go to:
        http://www.fontsquirrel.com/
        Be sure to remove the comment brackets.
*/
@font-face {
    font-family : 'FranklinGothic';
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot');
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/franklingothicstd_condensed-webfont.woff') format('woff'), url('../fonts/franklingothicstd_condensed-webfont.ttf') format('truetype'), url('../fonts/franklingothicstd_condensed-webfont.svg#FranklinGothic') format('svg');
    font-weight : normal;
    font-style  : normal;
}
@font-face {
    font-family : 'FranklinGothicYF';
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot');
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/franklingothicstd_condensed-webfont.woff') format('woff'), url('../fonts/franklingothicstd_condensed-webfont.ttf') format('truetype'), url('../fonts/franklingothicstd_condensed-webfont.svg#FranklinGothicYF') format('svg');
    font-weight : normal;
    font-style  : normal;
}



/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
    font-family : Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
    font-style  : italic;
}

/* text alignment */
.text-left {
    text-align : left;
}

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

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

/* alerts & notices */
.alert {
    margin  : 10px;
    padding : 5px 18px;
    border  : 1px solid;
}

.help {
    border-color : #E8DC59;
    background   : #EBE16F;
}

.info {
    border-color : #BFE4F4;
    background   : #D5EDF8;
}

.error {
    border-color : #F8CDCE;
    background   : #FBE3E4;
}

.success {
    border-color : #DEEAAE;
    background   : #E6EFC2;
}

/*********************
BUTTONS
*********************/
.button,
.button:visited {
    border           : 0;
    padding          : 8px 12px;
    color            : #FFFFFF;
    display          : inline-block;
    font-size        : 11px;
    font-weight      : bold;
    text-decoration  : none;
    /*text-shadow: 0 1px rgba(0, 0, 0, 0.75);*/
    cursor           : pointer;
    margin-bottom    : 20px;
    background-color : #A1A1A3;
    font-family      : "Arial", Helvetica Neue, Helvetica, sans-serif;
    text-transform   : uppercase;
}

.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
    color            : #FFFFFF;
    border           : 0;
    background-color : #505050;
}

.button:active,
.button:visited:active {
    background-color : #505050;
}

/*
BASE (MOBILE) SIZE
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
        and place your fonts inside the
        library/fonts folder. For more information
        on embedding fonts, go to:
        http://www.fontsquirrel.com/
        Be sure to remove the comment brackets.
*/
@font-face {
    font-family : 'FranklinGothic';
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot');
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/franklingothicstd_condensed-webfont.woff') format('woff'), url('../fonts/franklingothicstd_condensed-webfont.ttf') format('truetype'), url('../fonts/franklingothicstd_condensed-webfont.svg#FranklinGothic') format('svg');
    font-weight : normal;
    font-style  : normal;
}
@font-face {
    font-family : 'FranklinGothicYF';
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot');
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/franklingothicstd_condensed-webfont.woff') format('woff'), url('../fonts/franklingothicstd_condensed-webfont.ttf') format('truetype'), url('../fonts/franklingothicstd_condensed-webfont.svg#FranklinGothicYF') format('svg');
    font-weight : normal;
    font-style  : normal;
}



/*********************
GENERAL STYLES
*********************/
body {
    font-family      : "Arial", Helvetica Neue, Helvetica, sans-serif;
    font-size        : 14px;
    line-height      : 1.5;
    color            : #231F20;
    background-color : #ECECED;
}

.addthis_toolbox {
    float      : right;
    margin-top : 20px;
    width      : 140px;
}

.pdf-reader {
    float  : left;
    margin : 20px 0;
    height : 400px;
    border : 1px solid #000000;
    width  : 100%;
}

form#searchform {
    float      : right;
    margin-top : 10px;
}

/*.home #content,
.single #content,
.blog #content,
.parent-pageid-240 #content,
.parent-pageid-65 #content,
.post-type-archive-projects #content,
.post-type-archive-publications #content
{
    margin-top: -30px;
}*/

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
    background : #FFFDE9;
    width      : 90%;
    margin     : 0 auto;
}

/*
No Grid? Say Whaaaat?
There's really no need for all that
extraneous grid css since floating
columns wouldn't really fit on such a
small screen, so let's only bring it in
when we're ready for it.
*/
/*********************
LINK STYLES
*********************/
a,
a:visited {
    color : #231F20;
    /* on hover */

    /* on click */

    /* mobile tap color */

}

a:hover,
a:visited:hover,
a:focus,
a:visited:focus {
    color : #3B3536;
}

a:link,
a:visited:link {
    /*
                  this highlights links on iPhones/iPads.
                  so it basically works like the :hover selector
                  for mobile devices.
    */

    -webkit-tap-highlight-color : rgba(0, 0, 0, 0);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-family: "FranklinGothicYF", "FranklinGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-rendering : optimizelegibility;
    font-weight    : 500;
    text-transform : uppercase;
    font-style     : normal;
    line-height    : 1.4em;
    /*
          if you're going to use webfonts, be sure to check your weights
          http://css-tricks.com/watch-your-font-weight/
    */

    /* removing text decoration from all headline links */

}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
    text-decoration : none;
}

h1,
.h1 {
    font-size   : 2.5em;
    line-height : 1.333em;
}

h2,
.h2 {
    font-size     : 1.75em;
    line-height   : 1.4em;
    margin-bottom : 0.375em;
}

h3,
.h3 {
    font-size      : 1.125em;
    margin         : 0;
    padding        : 0;
    font-style     : normal; /* fathima added */
    line-height    : 1.25em;
    padding-bottom : 5px;
}

.heading3-container {
    width      : 100%;
    border-top : 1px solid #000000;
}

.heading3 {
    float            : left;
    background-color : #000000;
    width            : 251px;
    padding          : 15px 0 3px 10px;
}

h4,
.h4 {
    font-size : 1.1em;
}

h5,
.h5 {
    font-size      : 0.846em;
    line-height    : 2.09em;
    text-transform : uppercase;
    letter-spacing : 2px;
}

#main h2 {
    border-bottom : 2px solid #6F6E66;
}

#main .post h2,
#main .events h2 {
    border : none;
}

.item-list .post {
    border-bottom : 1px dotted black;
}

.item-list .post h2 {
    font-size : 14px;
}

/*********************
TYPOGRAPHY SYTLES
*********************/
p {
    font-size  : 13px;
    font-style : normal; /* fathima added */
}

/* Added indent for bullets */
section ul,
section ol {

    list-style-type : none;
    padding         : 0 7px 0 3px;

    margin          : 10px;
}

/* Finished Adding indent for bullets */

section ol li {
    list-style   : inside decimal;
    font-size    : 13px;
    text-indent  : -1.2em;
    padding-left : 10px;

}

section ul li {

    list-style  : inside disc;
    font-size   : 13px;
    text-indent : -1em;
}

/*********************
HEADER SYTLES
*********************/
.header {
    background-color : #FFFDE9;
}

#logo {
    background-image : url('../images/logo.png');
    float            : left;
    padding          : 0;
    margin           : 0;
    width            : 206px;
    height           : 151px;
    text-indent      : -9999px;
    clear            : both;
}

.print-logo, .print-text {
    display : none
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function, this is so we can
easily just write on group of styles for
the navs on the site and our css is cleaner
and moe scalable.
*/

nav {
    float : right;
}

.nav {
    border        : 1px solid #CCCCCC;
    border-bottom : 0;
    /* end .menu li */

    /* highlight current page */

    /* end current highlighters */

}

.nav li {
    /*
                  so you really have to rethink your dropdowns for mobile.
                  you don't want to have it expand too much because the
                  screen is so small. How you manage your menu should
                  depend on the project. Here's some great info on it:
                  http://www.alistapart.com/articles/organizing-mobile/
    */

}

.nav li a {
    display         : block;
    text-decoration : none;
    padding         : 9px;
    border-bottom   : 1px solid #CCCCCC;
    font-family: "FranklinGothicYF", "FranklinGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;

    text-transform  : uppercase;
    /*
                          remember this is for mobile ONLY, so there's no need
                          to even declare hover styles here, you can do it in
                          the style.less file where it's relevant. We want to
                          keep this file as small as possible!
    */

}

.nav li ul.sub-menu li a,
.nav li ul.children li a {
    padding-left : 30px;
}

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* end .hentry */
.single-title {
    font-size : 25px;
}

.single-header {
    padding-bottom : 20px;
    border-bottom  : 2px solid #6F6E66;
}

.single-header p.meta {
    margin-top : 10px;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.meta {
    color : #000000;
}

.listing-content {
    float : left;
    width : 440px;
}

/* post content */
.post-content {
    /*
                          image alignment on a screen this size may be
                          a bit difficult. It's set to start aligning
                          and floating images at the next breakpoint,
                          but it's up to you. Feel free to change it up.
    */

}

.post-content dd {
    margin-left   : 0;
    font-size     : 0.9em;
    color         : #787878;
    margin-bottom : 1.5em;
}

.post-content img {
    margin    : 0 1.5em 1.5em 0;
    max-width : 100%;
    height    : auto;
    float     : left;
}

.post-content video,
.post-content object {
    max-width : 100%;
    height    : auto;
}

.post-content pre,
.post-content code {
    background : #EEEEEE;
    border     : 1px solid #CECECE;
    padding    : 10px;
}

.post-content ul li {
    margin-bottom : 5px;
}

/* end .post-content */
.wp-caption {
    background : #EEEEEE;
    padding    : 5px;
    /* images inside wp-caption */

}

.wp-caption img {
    margin-bottom : 0;
    width         : 100%;
}

.wp-caption p.wp-caption-text {
    font-size  : 0.85em;
    margin     : 4px 0 7px;
    text-align : center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.page-navigation,
.wp-prev-next {
    margin : 1.1em 0 2.2em;
}

.bones_page_navi {
    /* current page link */

    /* end .bones_page_navi .bpn-current */

    /* common styles for page-navi links */

    /* remove the bg on end links */

    /* previous link */

    /* next page link */

    /* first page link */

    /* last page link */

}

.bones_page_navi li {
    float       : left;
    margin-left : 10px;
}

.bones_page_navi li a {
    padding         : 3px 6px;
    display         : block;
    text-decoration : none;
    position        : relative;
}

.bones_page_navi li a:hover,
.bones_page_navi li a:focus {
    color           : #F01D4F;
    text-decoration : underline;
}

.bones_page_navi li.bpn-current {
    padding       : 3px 6px;
    border-bottom : 2px solid #F01D4F;
    position      : relative;
}

.bones_page_navi li.bpn-current a {
    /* hovering on current page link */

}

.bones_page_navi li.bpn-prev-link,
.bones_page_navi li.bpn-next-link {
    font-weight : 700;
}

.bones_page_navi li.bpn-prev-link a,
.bones_page_navi li.bpn-next-link a {
    padding : 0;
}

.bones_page_navi li.bpn-prev-link a:hover,
.bones_page_navi li.bpn-next-link a:hover,
.bones_page_navi li.bpn-first-page-link a:hover,
.bones_page_navi li.bpn-last-page-link a:hover {
    background : none;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
    float : left;
}

.wp-prev-next .next-link {
    float : right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments {
    /* number of comments span */

}

.commentlist {
    /* general comment classes */

    /* vcard */

    /* end .commentlist .vcard */

    /* comment meta */

    /* comment content */

    /* end .commentlist .comment_content */

    /* comment reply link */

    /* end .commentlist .comment-reply-link */

}

.commentlist li {
    position        : relative;
    clear           : both;
    overflow        : hidden;
    list-style-type : none;
    margin-bottom   : 1.5em;
    padding         : 20px 0;
    border-bottom   : 1px dotted black;
    /* end .commentlist li ul.children */

}

.commentlist li:last-child {
    margin-bottom : 0;
}

.commentlist li ul.children {
    margin : 0;
    /* variations */

    /* change number for different depth */

}

.commentlist li[class*=depth-] {
    margin-top : 1.1em;
}

.commentlist li:not(.depth-1) {
    margin-right   : -10px;
    margin-left    : -10px;
    margin-top     : 0;
    padding-bottom : 0;
}

.commentlist .odd {
    /*background: #eee;*/
}

.commentlist .even {
    /*background: #fefefe;*/
}

.commentlist .vcard {
    /* margin-left: 50px;*/
}

.commentlist .vcard cite.fn {
    font-weight : 700;
    font-style  : normal;
}

.commentlist .vcard time {
    float : right;
}

.commentlist .vcard time a {
    color           : #000000;
    text-decoration : none;
}

.commentlist .vcard time a:hover {
    text-decoration : underline;
}

.commentlist .vcard img.avatar {
    /*position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff;*/
    display : none;
}

.commentlist .comment_content {
    /*margin-left: 50px;*/
}

.commentlist .comment_content p {
    margin      : 0.7335em 0 1.5em;
    /*font-size: 1em;*/
    line-height : 1.5em;
}

.commentlist .comment-reply-link {
    text-decoration : none;
    float           : right;
    background      : #A1A1A3;
    padding         : 3px 5px;
    color           : #FFFFFF;
    margin-bottom   : 10px;
    font-weight     : 700;
    font-size       : 0.9em;
}

.commentlist .comment-reply-link:hover,
.commentlist .comment-reply-link:focus {
    background-color : #505050;
}

/* end .commentlist */
/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.respond-form {
    margin-top     : 10px;
    padding-bottom : 2.2em;
    border-top     : 2px solid #6F6E66;
    border-bottom  : 2px solid #6F6E66;
    padding-top    : 20px;
}

.respond-form form {
    margin : 0.75em 0;
}

.respond-form form li {
    list-style-type : none;
    /*clear: both;*/
    margin-bottom   : 0.7335em;
}

.respond-form form li label,
.respond-form form li small {
    display : none;
}

.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
    padding     : 3px 6px;
    /*background: #efefef;*/
    border      : 2px solid #CECECE;
    line-height : 1.5em;
    /* form validation */

}

.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
    background : #FFFFFF;
}

.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
    outline            : none;
    border-color       : #FBC2C4;
    background-color   : #F6E7EB;
    -webkit-box-shadow : none;
    -moz-box-shadow    : none;
    -ms-box-shadow     : none;
    box-shadow         : none;
}

.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
    max-width : 400px;
    min-width : 289px;
}

.respond-form form textarea {
    resize : none;
    width  : 97.3%;
    height : 150px;
}

ul#comment-form-elements li {
    float : left;
}

ul#comment-form-elements li:first-child {
    margin-right : 20px;
}

p.comment-box {
    margin : 0;
}

/* comment submit button */
/* comment form title */
#comment-form-title {
    margin : 0;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
    margin : 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
    margin : 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
    /* deep nesting */

}

/*********************
FOOTER STYLES
*********************/
.footer {
    clear            : both;
    background-color : #505050;
}

/* end .footer-links */

/*******************************************************************************
SOAPBOX STYLES BEGIN HERE
*******************************************************************************/

/*********************
 TYPOGRAPHY
 *********************/
/* 	To embed your own fonts, use this syntax
      and place your fonts inside the
      library/fonts folder. For more information
      on embedding fonts, go to:
      http://www.fontsquirrel.com/
      Be sure to remove the comment brackets.
*/
@font-face {
    font-family : 'FranklinGothic';
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot');
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/franklingothicstd_condensed-webfont.woff') format('woff'), url('../fonts/franklingothicstd_condensed-webfont.ttf') format('truetype'), url('../fonts/franklingothicstd_condensed-webfont.svg#FranklinGothic') format('svg');
    font-weight : normal;
    font-style  : normal;
}
@font-face {
    font-family : 'FranklinGothicYF';
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot');
    src         : url('../fonts/franklingothicstd_condensed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/franklingothicstd_condensed-webfont.woff') format('woff'), url('../fonts/franklingothicstd_condensed-webfont.ttf') format('truetype'), url('../fonts/franklingothicstd_condensed-webfont.svg#FranklinGothicYF') format('svg');
    font-weight : normal;
    font-style  : normal;
}



/*********************
GENERAL STYLES
*********************/
img {
    display   : block;
    max-width : 97.5%;
    width     : auto;
}

.related-content img {
    max-width : 100%;
}

.secondary-content img {
    max-width : 290px;
}

/*********************
WORDPRESS BACK-END STYLES
*********************/

#update-nag, .update-nag {
    width : 250px;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/

.home #main .home-page-item img {
    max-width : 100%;
}

.home #main .home-page-item h3 {
    padding : 19px 0 13px 12px;
    margin  : 1px 0;
}

.home-page-item ul a li {
    background : #A1A1A4;
}

.home-page-item ul.we-do-this a li:hover {
    background : #F52F3D;
}

.home-page-item ul.in-these-areas a li:hover {
    background : #D29000;
}

.home-page-item ul.with-these-people a li:hover {
    background : #ABAC00;
}

.home #main .home-page-item ul a li h3 {
    color : white;
}

.home #main .home-page-item ul a {
    text-decoration : none;
}

.flexslider, .flexslider.slides {
    max-height : 350px !important;
    overflow   : hidden !important;
}

.flexslider .flex-control-nav {
    top : 325px !important;
}

span.caption-background {
    width      : 326px;
    height     : 350px;
    background : rgba(0, 0, 0, .5);
    -ms-filter : progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000, endColorstr=#4C000000);
    position   : absolute;
    left       : 326px;
    z-index    : 52;
}

/* blog page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
    width : 1000px;
}

#main {
    padding : 10px 20px;
}

.custom-2col #main,
.single-people #main,
.single #container #main,
.page-id-406 #container #main,
.page-id-550 #container #main,
.page-id-546 #container #main, /*In the News*/
.page-id-548 #container #main, /*Press Releases*/
.archive #container #main {
    width : 630px;
    float : left;
}

.custom-2col .sidebar, .single #container .sidebar, .page #container .sidebar, .archive #container .sidebar {
    width       : 288px;
    padding     : 0 20px 30px 20px;
    float       : right;
    margin-top  : 25px;
    border-left : 2px solid #6F6E66;
    min-height  : 500px;
}

.search #container .sidebar {
    width        : 258px;
    padding      : 0 20px 30px 20px;
    float        : left;
    margin-top   : 25px;
    border-right : 2px solid #6F6E66;
    border-left  : 0;
}

.search #container #main {
    width : 630px;
    float : right;
}

.page-id-406 #container .sidebar,
.page-id-550 #container .sidebar,
    /*In the news*/
.page-id-546 #container .sidebar,
    /*Press releases*/
.page-id-548 #container .sidebar,
.archive #container .sidebar {
    /*margin-top : 55px;*/
    margin-top : 31px;
}

/*
              This is a combination of the 1140 grid and Twitter Boostrap.
              I liked 1140 but Boostrap's grid was way more detailed so
              I merged them together, let's see how this works out.
              If you want to use 1140, the original values are commented
              out on each line.
*/
.onecol {
    width : 5.801104972%;
}

/* 4.85%;  } /* grid_1  */
.twocol {
    width       : 11.364640883%;
    line-height : 12px;
}

/* 13.45%; } /* grid_2  */
.threecol {
    width : 22.928176794%;
}

/* 22.05%; } /* grid_3  */
.fourcol {
    width : 31.491712705%;
}

/* 30.75%; } /* grid_4  */
.fivecol {
    width : 40.055248616%;
}

/* 39.45%; } /* grid_5  */
.sixcol {
    width : 48.618784527%;
}

/* 48%;    } /* grid_6  */
.sevencol {
    width : 57.182320438000005%;
}

/* 56.75%; } /* grid_7  */
.eightcol {
    width : 65.74585634900001%;
}

/* 65.4%;  } /* grid_8  */
.ninecol {
    width : 74.30939226%;
}

/* 74.05%; } /* grid_9  */
.tencol {
    width : 82.87292817100001%;
}

/* 82.7%;  } /* grid_10 */
.elevencol {
    width : 91.436464082%;
}

/* 91.35%; } /* grid_11 */
.twelvecol {
    width : 99.999999993%;
}

/* 100%;   } /* grid_12 */
/* layout & column defaults */
.onecol,
.twocol,
.threecol,
.fourcol,
.fivecol,
.sixcol,
.sevencol,
.eightcol,
.ninecol,
.tencol,
.elevencol,
.twelvecol {
    position    : relative;
    float       : left;
    margin-left : 2.762430939%;
}

.first {
    margin-left : 0;
}

.last {
    float : right;

}

/*********************
HEADER STYLES
*********************/
.header #orientation {
    background-color : #EEEDD9;
    height           : 30px;
}

.header .breadcrumbs {
    float       : left;
    padding     : 6px 0 0 16px;
    font-size   : 13px;
    font-weight : bold;
    width       : 700px;

    /*Added in case user disables page title limit, stops the page title length from breaking the layout*/
    overflow    : hidden;
    height      : 23px;
}

form#searchform {
    margin-top : 0;
    position   : relative;
}

form#searchform input#s {
    border    : 1px solid #AFAFB0;
    height    : 26px;
    font-size : 13px;
    color     : #231F20;
    padding   : 2px 35px 0 10px;
    width     : 205px;
}

#sidebar1 form#searchform input#s {
    border    : 1px solid #AFAFB0;
    height    : 26px;
    font-size : 13px;
    color     : #231F20;
    padding   : 2px 35px 0 10px;
    width     : 242px;
}

form#searchform input#s:focus {
    outline : none;
}

form#searchform input#searchsubmit {
    background : url('../images/search-box.gif') no-repeat top left;
    width      : 24px;
    height     : 24px;
    border     : 0;
    padding    : 0;
    position   : absolute;
    top        : 3px;
    right      : 10px;
}

.single .article-header {
    color : black;
}

.intro-box {
    color : white;
}

.article-header {
    color    : white;
    position : relative;
}

.article-header h2 {
    padding : 0;
    margin  : 0;
}

.article-header p {
    padding : 0;
    margin  : 0;
}

.article-header blockquote {
    padding     : 0;
    margin      : 50px 0 0 0;
    font-weight : bold;
}

.article-header .intro-box {
    float            : left;
    width            : 286px;
    padding          : 20px;
    background-color : #A1A1A4;
    height           : 310px;
}

.article-header img.stripes {
    position : absolute;
    top      : 0;
    left     : 326px;
    z-index  : 50;
    width    : 438px;
    cursor   : hand;
    cursor   : pointer;
}

.article-header img.attachment-full {
    position : absolute;
    top      : 0;
    left     : 326px;
    z-index  : 1;
}

/** Sign up **/

.sign-up {
    float      : right;
    margin-top : 5px;
    color      : #505050;
    position   : relative;
}

.sign-up span {
    font-size : 13px;
}

.sign-up a {
    color            : white;
    width            : 100px;
    background-color : #F52F3D;
    padding          : 8px 26px 8px 8px;
    text-decoration  : none;
    text-transform   : uppercase;
    font-size        : 13px;
    margin-left      : 11px;
}

.sign-up a.signup-up {
    background : url(../images/signup-arrow.png) no-repeat #F52F3D 70px 13px;
}

.sign-up a.signup-down {
    background : url(../images/signup-arrow-up.png) no-repeat #F52F3D 70px 13px;
}

.comment-signup #mc_signup {
    font-size        : 13px;
    background-color : #F52F3D;
    padding          : 20px 20px 0 20px;
    color            : white;
    display          : block;
    position         : inherit;
}

#mc_signup {
    font-size        : 13px;
    background-color : #F52F3D;
    padding          : 20px 20px 0 20px;
    color            : white;
    display          : none;
    position         : absolute;
    z-index          : 60;
    top              : 26px;
}

.mc_signup_submit {
    text-align : right;
}

.mc_merge_var {
    margin-bottom : 10px;
}

.mc_input {
    border : 1px solid #AFAFB0;
    color  : #231F20;
    width  : 205px;
}

.mc_input:focus {
    outline : none;
}

#mc_message {
    margin-bottom : 10px;
}

.mc_error_msg {
    color       : #000000;
    font-size   : 16px;
    font-weight : 700;
    font-size   : 14px !important;
}

.mc_interests_header {
    margin-top : 20px;
}

div.mc_interest {
    margin : 5px 0 10px 0;
}

.single-events .intro-box p {
    font-weight : normal;
}

.intro-box p {
    font-weight : bold;
    margin      : 20px 0;
}

/*********************
NAVIGATION STYLES
*********************/
.nav {
    position      : relative;
    float         : right;
    padding-right : 20px;
    margin-top    : 68px;
    font-size     : 18px;
    border        : 0;
    /* end .menu ul li */

    /* highlight current page */

    /* end current highlighters */

}

.nav li {
    float : left;
    /*
                plan your menus and drop-downs wisely.
    */

    /* showing sub-menus */

}

.nav li a {
    border-bottom : 0;
    /*
                        you can use hover styles here even though this size
                        has the possibility of being a mobile device.
    */

}

.nav li:hover,
.nav li:focus {

    color : white;
}

.nav li#menu-item-3487:hover, .nav li#menu-item-221:hover {
    background-color : #F52F3D;
}

.nav li#menu-item-39:hover,
.nav li#menu-item-39 ul.sub-menu, .nav li#menu-item-39 ul.children,
.nav li#menu-item-43:hover,
.nav li#menu-item-43 ul.sub-menu, .nav li#menu-item-43 ul.children {
    background-color : #D29000
}

.nav li#menu-item-42:hover,
.nav li#menu-item-42 ul.sub-menu, .nav li#menu-item-42 ul.children,
.nav li#menu-item-36:hover {
    background-color : #ABAC00
}

.nav li#menu-item-41:hover,
.nav li#menu-item-41 ul.sub-menu, .nav li#menu-item-41 ul.children {
    background-color : #E51293
}

.nav li:hover a,
.nav li:focus a {
    color : white;
}

.nav li ul.sub-menu,
.nav li ul.children,
#subnav ul {
    width      : 201px;
    display    : none;
    border-top : 0;
    position   : absolute;
    z-index    : 8999;
    /*background-color: #e74197;*/
    padding    : 4px 33px 0 0;
    /* highlight sub-menu current page */

}

.nav li ul.sub-menu li,
.nav li ul.children li {
    float : right;
    /*
                                if you need to go deeper, go nuts
                                just remember deeper menus suck
                                for usability. k, bai.
    */

}

.nav li ul.sub-menu li a,
.nav li ul.children li a {
    text-transform : none;
    padding-left   : 9px;
    border-right   : 0;
    /*display: inline;*/
    width          : 180px;
    float          : none;
    color          : white;
    font-family    : "Arial", Helvetica Neue, Helvetica, sans-serif;
    font-size      : 14px;
}

.nav li ul.sub-menu li a:hover,
.nav li ul.children li a:hover,
.nav li ul.sub-menu li a:focus,
.nav li ul.children li a:focus {
    background-color : transparent;
    text-decoration  : underline;
}

.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
    border-bottom : 0;
}

.nav li:hover ul {
    top     : auto;
    display : block;
}

.current_page_parent {
    /*background-color: #e74197;*/
    text-decoration : underline;
}

.current-menu-item {
    text-decoration : underline;
}

.current-menu-item a {
    color           : black;
    text-decoration : underline;
}


/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
    font-size : 13px;
}

.sidebar h2, .sidebar h3.sidebar-title {
    margin        : 0 0 15px 0;
    border-bottom : 2px solid #6F6E66;
    float         : left;
    width         : 100%;
}

.sidebar h3.no-margin {
    margin : 0;
}

.related-content h3 {
    margin        : 15px 0 15px 0;
    border-bottom : 2px solid #6F6E66;
}

.sidebar ul.sidebar-links {
    float : left;
    width : 100%;
}

.sidebar ul.sidebar-links a {
    color           : #FFFFFF;
    font-family: "FranklinGothicYF", "FranklinGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform  : uppercase;
    text-decoration : none;
}

.sidebar ul.sidebar-links li {
    background-color : #A1A1A4;
    border-bottom    : 1px solid white;
    padding          : 4px 10px;
}

.sidebar ul.sidebar-links li:hover {
    background-color : #A6AC00;
}

.widgettitle {
    border-bottom : 2px solid #444444;
    margin-bottom : 0.75em;
}

.widget {
    padding : 0 10px;
    margin  : 2.2em 0;
}

.widget ul li {
    margin-bottom : 0.75em;
    /* deep nesting */
}

/* #sidebar1{
     padding-bottom: 30px;
 }*/

#sidebar1 .twelvecol {
    margin-left    : 0;
    padding-bottom : 10px;
    border-bottom  : 1px dotted black;
    margin-bottom  : 20px;
}

#sidebar1 .twelvecol h3 {
    /*margin-bottom : -10px;*/
}

/*  #sidebar1 .twelvecol p.sidebar-excerpt{
   margin: -7px 0 10px;
}*/

/** External Link Styles **/

.external-link {
    padding    : 10px 5px 5px 10px;
    margin     : 0 0 30px 0;
    clear      : both;
    width      : 271px;
    background : url(../images/external-link-icon.png) no-repeat #EF4135 255px 13px;
}

.external-link a {
    color           : white;
    text-decoration : none;
}

/** Twitter Styles **/

h2.twitter-title {
    background : url(../images/twitter-icon.gif) no-repeat;
}

h2.twitter-title a {
    margin-left : 30px;
}

ul#updates a {
    color : #666464;
}

ul#updates li {
    margin-bottom : 15px;
}

/*********************
RELATED CONTENT STYLES
*********************/
.related-content {
    float : left;
    /*margin-top: 20px;*/
    width : 100%;
}

.related-content .first {
    clear : both;
}

#SB_post article.listing {
    padding-bottom : 20px;
}

a.anchor {
    float            : left;
    clear            : both;
    width            : 100%;
    background-color : #A0A0A4;
    text-align       : center;
    color            : white;
    text-decoration  : none;
    padding          : 7px 0;
}

.ui-widget-content, .ui-widget-header {
    border     : 0;
    background : none;
    color      : #231F20;
}

.ui-widget-header {
    float : right;
}

.ui-tabs .listing h3 {
    border : 0;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
    moz-border-radius-topleft      : 0px;
    -webkit-border-top-left-radius : 0px;
    -khtml-border-top-left-radius  : 0px;
    border-top-left-radius         : 0px;
}

.ui-tabs-nav {
    font-size : 13px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
    border-right : 2px solid #6F6E66;
    border-top   : 2px solid #6F6E66;
    border-left  : 2px solid #6F6E66;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background : none;
    border     : 0;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited, .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
    color : #231F20;
}

.ui-tabs .ui-tabs-nav li.ui-state-active a {
    padding          : 5px 11px 5px 11px;
    color            : #FFFFFF;
    background-color : #6F6E66;
    outline          : none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
    background     : #FFFCE9;
    border-right   : 2px solid #6F6E66;
    border-top     : 2px solid #6F6E66;
    border-left    : 2px solid #6F6E66;
    padding-bottom : 2px;

}

/*Make it work - thanks StackOverflow! http://stackoverflow.com/questions/3392920/jquery-ui-tabs-minimal-styling*/
.ui-tabs {
    position : relative; /*padding: .2em;*/
    zoom     : 1;
}

.ui-tabs .ui-tabs-nav {
    margin : -2px -3px 0 0; /*padding: .2em .2em 0;*/
}

.ui-tabs .ui-tabs-nav li {
    list-style    : none;
    float         : left;
    position      : relative;
    top           : 0px;
    margin        : 0 .2em 1px 0;
    border-bottom : 0 !important;
    padding       : 0;
    white-space   : nowrap;
    font-weight   : bold;
}

.ui-tabs .ui-tabs-nav li a {
    float           : left;
    padding         : .5em 1em;
    text-decoration : none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
    margin-bottom  : 0;
    padding-bottom : 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
    cursor : text;
}

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
    cursor : pointer;
}

.ui-tabs .ui-tabs-panel {
    display      : block;
    border-width : 0; /*padding: 1em 1.4em;*/
    background   : none;
}

.ui-tabs .ui-tabs-hide {
    display : none !important;
}

/*********************
SECONDARY CONTENT STYLES
*********************/

.secondary-content {
    float          : left;
    margin         : 20px 0;
    padding-bottom : 20px;
    border-bottom  : 1px dotted black;
}

.secondary-content a img {
    width : 292px;
}

/*********************
LISTING PAGE STYLES
*********************/

.listing-thumb {
    width  : 150px;
    float  : left;
    margin : 0 20px 20px 0;
}

article.listing {
    border-bottom : 1px dotted black;
}

article.listing p.meta {
    /*margin-bottom: 20px;*/
}

.listing h3 {
    margin-bottom : 5px;

}

.has-thumb .listing h3 {
    padding-left : 170px;
}

.has-thumb .listing .meta {
    padding-left : 170px;
}

.has-thumb .listing .post-content {
    padding-left : 170px;
}

ul.pagination-list {
    float         : left;
    margin-top    : 20px;
    margin-bottom : 40px;
}

ul.pagination-list li {
    float        : left;
    margin-right : 10px;
}

ul.pagination-list li.pagination_current-list a, ul.pagination-list li.page-nav a {
    color : black;
}

ul.pagination-list li a, ul.pagination-list li {
    color : #A0A0A4;
}

/*********************
SINGLE PAGE STYLES
*********************/
.article-header h1 {
    margin-bottom : 5px;
}

.full-border {
    border-top : 1px solid black;
    width      : 960px;
    float      : left;
    margin     : 0 20px;
}

.single-post-content {
    border-top    : 1px solid black;
    border-bottom : 1px solid black;
    padding       : 10px 0;
    margin-top    : 20px;
}

.list-title {
    margin : 15px 0 0 0;
}

/*********************
PEOPLE PAGE STYLES
*********************/

p.meta span {
    display : block;
}

p.meta span.team {
    font-style : italic;
}

/*********************
FILTER STYLES
*********************/

.SB-filters {
    float : left;
    width : 100%;
}

.SB-filters ul li a, #filters-authors a, #Authors-list a, #date-filters a {
    font-family: "FranklinGothicYF", "FranklinGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-rendering  : optimizelegibility;
    font-weight     : 500;
    text-transform  : uppercase;
    font-size       : 16px;
    text-decoration : none;
    margin-left     : 10px;
}

a.filter-dropdown {
    text-decoration : none;
}

#filters-authors {
    background     : url('../images/filter-arrow.png') no-repeat 262px 7px #A0A0A4;
    width          : 100%;
    font-family    : "FranklinGothic";
    text-rendering : optimizelegibility;
    font-weight    : 500;
    text-transform : uppercase;
    font-size      : 16px;
    margin-bottom  : 20px;
    float          : left;
}

#filters-authors span {
    color       : white;
    margin-left : 10px;
}

#Authors-list, #date-filters {
    background-color : #FFFDE9;
    margin-top       : 10px;
}

.SB-filters ul, #Authors-list ul, #date-filters ul {
    margin-bottom : 20px;
}

#filters-authors a {
    color : white;
}

#Authors-list ul li a {
    color : black;
}

#main .sorting {
    padding-bottom : 5px;
    border-bottom  : 2px solid #6F6E66;
}

#main .sorting a {
    text-decoration : none;
}

#main .sorting a:hover {
    color : #A0A0A4;
}

.indent {
    margin-left : 20px;
}

/*********************
SEARCH PAGE STYLES
*********************/

.search .article-header p {
    color : black;
}

.search article {
    border-bottom  : 1px dotted black;
    padding-bottom : 10px;
}

.search article .post-content p {
    margin-bottom : 0;
}

.search-everything-highlight-color {
    display : inline !important;
}

/*********************
BLOG LISTING STYLES
*********************/

h3.blog-titles {
    margin-bottom : 5px;
}

.blog p.meta {
    margin-bottom : 10px;
}

/*********************
404 LISTING STYLES
*********************/

.error404 .article-header h2 {
    color      : black;
    margin-top : 20px;
}

.error404 #main {
    min-height : 500px;
}

.error404 #main ul li {
    list-style-type : none;
}

.error404 #main ul li a {
    text-decoration : none;
}

/*********************
MISC STYLES
*********************/

h2.no-thumb-title {
    color       : black;
    margin-top  : 20px;
    margin-left : 20px;
}

h4.pagination {
    float        : left;
    margin-right : 20px;
    width        : 80px;
}

.social-sharing {
    margin-top : 20px;
}

.social-sharing .fb-like {
    margin-right : 10px;
    float        : left;
}

/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.footer {
    padding-bottom : 20px;
}

.footer h4 {
    margin : 10px 0 4px 0;
}

.footer h4 + h4 {
    margin-top : 0;
}

.footer #inner-footer {
    width       : 1000px;
    float       : left;
    margin-left : -1px;
}

.footer #inner-footer .twocol {
    margin : 15px 38px 0 0;
}

.footer #inner-footer ul.social {
    padding    : 0;
    float      : left;
    margin-top : -1px;

}

.footer #inner-footer ul.social li {
    float      : left;
    list-style : none;
    width      : 30px;
    height     : 30px;
}

.footer #inner-footer ul.social li a {
    display : block;
    height  : 30px;
}

.fb a {
    background-image    : url('../images/social-media.gif');
    background-repeat   : no-repeat;
    background-position : 0 0;
}

.twitter a {
    background-image    : url('../images/social-media.gif');
    background-repeat   : no-repeat;
    background-position : -30px 0;
}

.fb a:hover {
    background-position : 0 -30px;
}

.twitter a:hover {
    background-position : -30px -30px;
}

.tweet-text {
    margin : 15px 0 0 0;
}

.tweet-meta {
    font-size : 10px;
    margin    : 5px 0 10px 0;
}

.footer #inner-footer p {
    color       : #A1A1A4;
    width       : 100px;
    margin-top  : 54px;
    margin-left : 20px;
    line-height : 16px;
}

.footer #inner-footer p.credit {
    margin : 0 0 0 20px;
}

.footer #inner-footer p.credit a {
    text-decoration : none;
    color           : #A1A1A4;
}

.footer #inner-footer p.credit a:hover {
    text-decoration : underline;
}

.footer #inner-footer h4 a {
    color          : white;
    font-family    : sans-serif;
    font-size      : 11px;
    text-transform : none;
    font-weight    : bold;
}

.footer #inner-footer h4 a:hover {
    text-decoration : underline;
    color           : white;
}

.footer #inner-footer ul {
    padding : 0;
    margin  : 0;
}

.footer #inner-footer ul li {
    margin-bottom : 2px;
}

.footer #inner-footer ul li a {
    color           : white;
    font-size       : 11px;
    text-decoration : none;
    font-family     : "Arial", Helvetica Neue, Helvetica, sans-serif;
}

.footer #inner-footer ul li a:hover {
    text-decoration : underline;
    color           : white;
}

/*******************************************************************************
SOAPBOX STYLES END HERE
*******************************************************************************/

/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
/*@media only screen and (min-width: 481px) {*/
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
    /* end .menu ul */

}

.menu ul {
    /* end .menu ul li */

    /* highlight current page */

    /* end current highlighters */

}

.menu ul li {
    /*
                                plan your menus and drop-downs wisely.
    */

}

.menu ul li a {
    /*
                                        you can use hover styles here even though this size
                                        has the possibility of being a mobile device.
    */

}

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* post content */
.post-content {
    /* at this larger size, we can start to align images */

}

.post-content .alignleft,
.post-content img.alignleft {
    margin-right : 1.5em;
    display      : inline;
    float        : left;
}

.post-content .alignright,
.post-content img.alignright {
    margin-left : 1.5em;
    display     : inline;
    float       : right;
}

.post-content .aligncenter,
.post-content img.aligncenter {
    margin-right : auto;
    margin-left  : auto;
    display      : block;
    clear        : both;
    float: none;
}

/* end .post-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/*}
*/

/*
IPHONE 320PX
*/

@media only screen and (min-width : 320px) {

}

/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width : 768px) {
    /******************************************************************
    Site Name:
    Author:

    Stylesheet: Tablet & Small Desktop Stylesheet

    Here's where you can start getting into the good stuff.
    This size will work on iPads, other tablets, and desktops.
    So you can start working with more styles, background images,
    and other resources. You'll also notice the grid starts to
    come into play. Have fun!

    ******************************************************************/
}

/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width : 1030px) {
    /******************************************************************
    Site Name:
    Author:

    Stylesheet: Desktop Stylesheet

    This is the desktop size. It's larger than an iPad so it will only
    be seen on the Desktop.

    ******************************************************************/
}

/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width : 1240px) {
    /******************************************************************
    Site Name:
    Author:

    Stylesheet: Super Large Monitor Stylesheet

    You can add some advanced styles here if you like. This kicks in
    on larger screens.

    ******************************************************************/
}

/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min--moz-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
    /******************************************************************
    Site Name:
    Author:

    Stylesheet: Retina Screens & Devices Stylesheet

    When handling retina screens you need to make adjustments, especially
    if you're not using font icons. Here you can add them in one neat
    place.

    ******************************************************************/
    /*

    EXAMPLE
    Let's say you have an image and you need to make sure it looks ok
    on retina screens. Let's say we have an icon which dimension are
    24px x 24px. In your regular stylesheets, it would look something
    like this:

    .icon {
          width: 24px;
          height: 24px;
          background: url(img/test.png) no-repeat;
    }

    For retina screens, we have to make some adjustments, so that image
    doesn't look blurry. So, taking into account the image above and the
    dimensions, this is what we would put in our retina stylesheet:

    .icon {
          background: url(img/test@2x.png) no-repeat;
          background-size: 24px 24px;
    }

    So, you would create the same icon, but at double the resolution, meaning
    it would be 48px x 48px. You'd name it the same, but with a @2x at the end
    (this is pretty standard practice). Set the background image so it matches
    the original dimensions and you are good to go.

    */
}

/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
    * {
        background  : transparent !important;
        color       : black !important;
        text-shadow : none !important;
        filter      : none !important;
        -ms-filter  : none !important;
    }
}
