/* + CSS utilities {{{ */

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* + }}} */

/* + Overall page dimensions {{{ */

body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    color: #888;
}

.container {
    margin: 10px;
}

p {
    font-size: 16px;
    line-height: 27px;
    margin-top: 0;
    margin-bottom: 20px;
}

strong, b {
    font-weight: 600;
    color: rgb(64, 64, 64);
}

strong.slight, b.slight {
    font-weight: bolder;
    color: inherit;
}

i.title {
    font-weight: bolder;
    font-style: inherit;
    color: #222;
}

.centre_column {
    max-width: 900px;
    min-width: 300px;
    width: calc(100vw - 40px);
    margin: auto;
}

/*.centre_column img {
    width: 100%;
    display: none;
}*/

/* + }}} */

.newsletter_top {
    font-weight: lighter;
    font-style: italic;
    border: 1px solid rgb(179, 179, 179);
    background-color: rgb(230, 230, 230);
    max-width: 220px;
    width: 25%;
    padding: 3px;
    float: right;
    margin-right: 40px;
}

/* + Menu {{{ */

/* + + Left-aligned {{{

 Implemented with float: left
  Pros:
   Whitespace between items is collapsed
  Cons:
   Need to wrap again in an inline-block div to centre it
   Needs clearfix
   Can't use vertical-align on items (effectively stuck with vertical-align: top)
*/

.menu {
    /* Font */
    /*font-family: 'Roboto';*/
    text-transform: uppercase;
    /*font-weight: 400;   Regular */
    font-size: 15px;
    color: rgb(179, 179, 179);

    /* Position */
    margin: 10px 0 0 0;
    padding: 0;

text-align:right;
}


.second-menu {
    margin-top: 0;
}

/* Turn list into a menu */
.menu ul {
    list-style-type: none;
}

/* Site name in top left corner */
.menu .menu-item-home {
    float:left;
}

.menu .current-menu-item a {
    color: rgb(64, 64, 64);
    font-weight: bolder;
    border-bottom: solid 1px rgb(64,64,64);
}

.menu .menu-item-home a {
    color: #ed1e79;
    font-weight: 300;
    font-size: 15px;
    border-bottom: none;
}


.menu li {
    display: block;
    margin: 0 10px 5px 0;
    vertical-align: middle;
    /*float: right;*/
}


@media screen and (min-width:680px) {
    .menu {
        font-size: 15px;
    margin: 20px 0 0 10px;

    }
        .menu .menu-item-home a {
        font-size: 18px;
    }

    .menu li {
        display: inline-block;
        margin: 0 20px 0 0;
    }

}

.menu li a {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

@media screen and (min-width:800px) {
.menu {
        font-size: 17px;
    }
}


.menu .front_page_menuitem a {
    font-family: 'Roboto';
    font-weight: 400;  /* Light */
    font-size: 15px;
    /*color: rgb(90, 90, 90);*/
    position: relative;
    top: -1px;
}

/* + + }}} */

/* + + Centred {{{

 Implemented with display: inline-block
  Pros:
   Can centre (or left or right-align) simply
   Doesn't need clearfix
   Can use vertical-align on items
  Cons:
   Whitespace between items is not collapsed
*/

.menu_centred {
    /* Font */
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 13pt;
    color: rgb(179, 179, 179);

    /* Position */
    margin: 20px 40px;
    padding: 0;

    text-align: center;
}

/* Turn list into a menu */
.menu_centred {
    list-style-type: none;
}
.menu_centred li {
    display: inline-block;
    margin-right: 40px;
}
.menu_centred li:last-child {
    margin-right: 0;
}

/* + + }}} */

/* + }}} */

/* + Heading styles {{{ */

.authors {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 18px;
    color: rgb(77, 77, 77);

    text-align: center;
    text-transform: uppercase;

    margin-top: 12px;
    margin-bottom: 80px;
}

.summary {
    margin: 60px auto 60px auto;
    max-width: 50em;
    padding: 0 20px;
}

.body_text .summary {
    padding: 0;
}

.summary p, .single-post h1 {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 20px;
    color: rgb(64,64,64);

    /*text-align: center;*/
    line-height: 34px;

    /*margin-top: 80px;*/
    /*margin-bottom: 40px;*/


    /*width: 800px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}



.gallery-section-header {
    margin-bottom: 20px;
}

h3 {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 21pt;
    color: rgb(77, 77, 77);

    margin: 40px 0;
}

.date_subtitle {
    font-family: 'Roboto';
    font-weight: 300; /* Light */
    font-size: 16px;
    line-height: 16px;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.location_subtitle {
    font-family: 'Roboto';
    font-weight: 300; /* Light */
    font-size: 14px;
    line-height: 22px;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

a, a:visited {
    /*font-weight: bolder;*/
    /*color: rgb(30,20,40);*/
    color: #ed1e79;

    /*text-decoration: underline;*/
    text-decoration: none;
    /*text-decoration-color: rgb(128, 128, 128);*/

}
 
a:hover {
    /*color: rgb(0,0,0);*/
    color: #ed1e79;
    /*text-decoration-color: rgb(28, 28, 28);*/
}

h2 a, h2 a:visited {
    color: #000;
    transition: color 2.25s ease-in-out;
}

h2 a:hover {
    color: #ed1e79;
    transition: color 2.25s ease-in-out;
}


/* + Body text {{{

 An 'inner' central column with 40px padding at left and right
*/

/*.body-text*/ .main {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 16px;
    color: rgb(128, 128, 128);
}

/*.body-text*/ .body_text {

    line-height: 27px;
    /*text-align: justify;*/
    padding: 0 20px;
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
}

.main p {

    /* Spacing at left and right */
    margin: 20px 0;
    /*width: 700px;*/

    /* Preserve line breaks */
    /*white-space: pre-wrap;*/
}

/*.body-text*/ .body_text strong {
    font-weight: 400;  /* Regular */
    color: rgb(64, 64, 64);
}

.author-name {
    font-weight: bolder;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
}

/* + }}} */

/* + Images {{{ */

.image {
    display: block;
    max-width: 100%;
    height: auto;

    /* Spacing at top and bottom, horizontal block centering */
    margin: 80px auto;

    /* Spacing at left and right */
    box-sizing: border-box;
    /*padding: 0 40px;*/
    max-height: 100vh;
}

.image.show_caption {
    margin-bottom: 10px;
}

.caption {
    color: rgb(113,113,165);
    padding: 0 0 0 50px;
    margin: 0 30px 20px 0;
    font-style: italic;
    font-size: 14px;
    text-align: center;
}

/*.caption em, .caption i {
    font-weight: 400;
}*/

.tall_image {
    display: block;
    width: auto;
    height: auto;

    max-width: 100%;

    /* Spacing at top and bottom, horizontal block centering */
    margin: 40px auto;

    /* Spacing at left and right */
    box-sizing: border-box;
    padding: 0 40px;
}
/*
    max-height: 100vh;
    width: auto;
    min-height: 200px;
*/

/* + }}} */

/* + Videos {{{ */

.vimeo_embed, .youtube_embed {
    width: 100%;

    /* Spacing at top and bottom */
    margin: 40px 0 40px 0;
}

/* Trick to set video height from width according to a particular aspect ratio
   See https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
.video_aspect_16_9 {
	position: relative;
	padding-bottom: 56.25%;  /* 16:9 */
	padding-top: 0;
	height: 0;
}
.video_aspect_16_9 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* + + Light embeds {{{ */

.vimeo_embed img, .youtube_embed img {
    cursor: pointer;
    -webkit-transition: 0.2s all;
    -moz-transition: 0.2s all;
    transition: 0.2s all;
}

.vimeo_embed .playButton:hover, .youtube_embed .playButton:hover {
    /*-webkit-filter: brightness(75%);*/
    opacity: 1.0;
}

.vimeo_embed .playButton, .youtube_embed .playButton {
    height: 72px;
    width: 72px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    background: url("/wp-content/themes/timmb/images/video_play.png") no-repeat;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity .25s ease-in-out;

}

/* + + }}} */

/* + }}} */

/* + Grid arrangements {{{ */

.grid_row {
    margin: 80px 0;

    display: flex;
    align-items: flex-start;
}

.grid_row + .grid_row {
    margin: 0;
}

.grid_row > .grid_cell {
    /*box-sizing: border-box;*/

    /*flex-grow: to be set inline */
    /*flex-basis: 0;*/

    /*outline: 1px solid red;*/

    margin: 0;
}

.grid_row > .grid_divider {
    box-sizing: border-box;
    width: 40px;
    flex-grow: 0;
    flex-shrink: 0;

    /*outline: 1px solid blue;*/
    margin: 0;
}

/* Remove margins when in grid cells */
.grid_row .image {
    margin: 0;
    padding: 0;

    /* Make images inline so can put them side-by-side */
    display: inline;
}

.grid_row .participant_quotation {
    margin: 0;
    padding: 0;
}

/* + + }}} */

/* + }}} */
/* + }}} */

/* + Numbered images {{{ */

.numbered_images {
    margin-top: 80px;
}
.numbered_images_row {
    text-align: right;
}
.numbered_image {
    width: calc(25% - (120px/4));
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 30px;
}
.numbered_image:last-child {
    margin-right: 0px;
}
.numbered_image img {
    width: 100%;
}
.numbered_image_number {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 12px;
    color: rgb(128, 128, 128);
    font-style: italic;

    margin-top: 6px;
    text-align: right;
}


.numbered_captions {
    text-align: right;
}
/*.numbered_captions_column {
    vertical-align: top;
    width: calc(25% - (120px/4));
    display: inline-block;
    margin-right: 40px;
}
.numbered_captions_column:last-child {
    margin-right: 0;
}*/
.numbered_captions_row {
    vertical-align: top;
    /*width: calc(25% - (120px/4));*/
    /*display: inline-block;*/
    /*margin-right: 40px;*/
}
/*.numbered_captions_column:last-child {
    margin-right: 0;
}*/

.numbered_caption {
    text-align: left;
    margin-bottom: 20px;
    width: calc(25% - 30px);
    display: inline-block;
    margin-right: 40px;
}

.numbered_caption:last-child {
    margin-right: 0;
}

.numbered_caption_number {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15px;
    line-height: 18px;
    color: rgb(51, 51, 51);

    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
    width: 12px;
}

.numbered_caption_details {
    display: inline-block;
    width: calc(100% - 32px);
    /*overflow: hidden;*/
    vertical-align: top;
}

.numbered_caption_name {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15px;
    line-height: 18px;
    color: rgb(51, 51, 51);
}

.numbered_caption_meta {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 13px;
    line-height: 19px;
    color: rgb(128, 128, 128);
    font-style: italic;
    height: 38px;
    /*white-space: nowrap;*/
/*    overflow: hidden;
    text-overflow: ellipsis;
*/}

/* + }}} */

/* + Participant quotations {{{ */

.participant_quotation {
    margin: 0 100px;
}
.participant_quotation .participant_quote {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 20px;
    line-height: 33px;
    color: rgb(102, 102, 102);
    text-align: justify;

}
.participant_quotation .participant_name {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 16px;
    line-height: 18px;
    color: rgb(51, 51, 51);

    text-align: right;
    margin-top: 16px;
}
.participant_quotation .participant_meta {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;  /* Light */
    font-size: 14px;
    line-height: 19px;
    color: rgb(128, 128, 128);

    text-align: right;
}

.participant_caption {
    margin: 0 0 40px 0;
}
.participant_caption .participant_quote {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 20px;
    color: rgb(102, 102, 102);

    line-height: 33px;
}
.participant_caption .participant_name {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 16px;
    line-height: 20px;
    color: rgb(51, 51, 51);

    text-align: right;
    margin-top: 11px;
}
.participant_caption .participant_meta {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;  /* Light */
    font-size: 14px;
    line-height: 19px;
    color: rgb(128, 128, 128);

    text-align: right;
}

/* + }}} */

/* + Blog excerpts {{{ */

.blog_excerpt {
    margin: 80px 0 80px 80px;
}

.blog_excerpt_quotation {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;  /* Light */
    font-size: 22px;
    color: rgb(67, 74, 77);

    line-height: 39px;
}

.blog_excerpt_source {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 17px;
    line-height: 24px;
    color: rgb(128, 128, 128);

    text-align: right;
    margin-top: 5px;
}
.blog_excerpt_source a {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    /*font-size: 17px;*/
    color: rgb(77, 77, 77);
}

/* + }}} */

/* + Page Menu {{{ */

.page-menu-DISABLED {
    text-align: center;
}

.page-menu-DISABLED ul {
    list-style-type: none;
    display: inline;
    padding: 0;
}

.page-menu-DISABLED a {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    /*font-size: 17px;*/
    color: rgb(179,179,179);
    text-transform: uppercase;
}

.page-menu-DISABLED li {
    display: inline-block;
    margin-right: 20px;
}
.page-menu-DISABLED li:last-child {
    display: inline-block; 
    margin-right: 0;
}

/* + }}} */




/* + Exhibitions {{{ */

.exhibitions {
    text-align: center;
    margin-bottom: 40px;
}

.exhibition {
    display: inline-block;
    width: 24%;
    padding: 0 40px;
    margin-bottom: 40px;
    text-align: center;
    vertical-align: top;
}

.exhibition_date {
    font-family: 'Roboto';
    text-transform: uppercase;
    font-weight: 300;  /* Light */
    font-size: 16px;
    color: rgb(153, 153, 153);
}
.exhibition_venue_name {
    font-family: 'Roboto';
    text-transform: uppercase;
    font-weight: 400;  /* Regular */
    font-size: 22px;
    line-height: 26px;
    color: rgb(102, 102, 102);
}
.exhibition_area {
    font-family: 'Roboto';
    text-transform: uppercase;
    font-weight: 300;  /* Light */
    font-size: 14px;
    line-height: 21px;
    color: rgb(153, 153, 153);
}
.exhibition_tickets, .exhibition_gallery {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 16px;
    line-height: 22px;
    color: rgb(77, 77, 77);

    /*text-decoration: none;*/
}

/* + }}} */

/* + Newsletter {{{ */

.newsletter {
    /*text-align: center;*/
    display: flex;
    margin-top: 10px;
    margin-bottom: 20px;
}

.newsletter_note {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 21pt;
    color: rgb(77, 77, 77);

    margin: 40px 0;
}

.newsletter input[type=email] {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15px;
    color: #ed1e79;

    border: none;
    /*border: 1px solid rgb(179, 179, 179);*/
    background-color: rgb(242, 242, 242);
    box-sizing: border-box;

    /*max-width: 437px;*/
    width: 100%;
    /*flex: 1;*/
    padding: 3px 8px;
    /*display: inline-block;*/
}

.newsletter input[type=submit] {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 15px;
    color: rgb(242, 242, 242);

    /*border: 1px solid rgb(170, 247, 206);*/
    border: none;
    background-color: #ed1e79;
    box-sizing: border-box;

    /*width: 82px;*/
    margin-left: 20px;
    /*margin-top: 5px;*/
    padding: 3px 15px;
    /*display: inline-block;*/
    /*flex: 0;*/
}

/* + + Seperate form {{{ */

.newsletter_signup_form {
    display: table;
    margin: 0 auto;
}

.newsletter_signup_form input[type=email] {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15pt;
    color: rgb(153, 153, 153);

    border: 1px solid rgb(179, 179, 179);
    background-color: rgb(230, 230, 230);

    width: 437px;
    padding: 6px 18px;
}

.newsletter_signup_form input[type=submit] {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 15pt;
    color: rgb(242, 242, 242);

    border: 1px solid rgb(170, 247, 206);
    background-color: rgb(72, 82, 77);

    width: 82px;
    margin-left: 20px;
    margin-top: 10px;
    padding: 6px 18px;
}

/* + + }}} */

/* + }}} */

/* + Footer {{{ */

.footer {
    margin-top: 80px;

    padding-top: 80px;
    padding-bottom: 20px;
    background-color: rgb(77, 77, 77);
}

.credits {
    line-height: 24px;
}

.credits_field_name {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15px;
    color: rgb(179, 179, 179);
    max-height: 99999px;
}

dt.credits_field_name {
    display: inline-block;
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    padding-right: 20px;
    text-align: right;
}

.credits_field_value {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 15px;
    color: rgb(230, 230, 230);
}

dd.credits_field_value {
    display: inline-block;
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    padding-left: 20px;
    text-align: left;
    text-transform: uppercase;
}

.funding_and_thanks {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15px;
    line-height: 24px;
    color: rgb(179, 179, 179);

    margin: 40px 0 80px 0;
    /* Avoid zooming text inconsistently in Chrome on mobile viewport */
    max-height: 999999px;
}

@media (min-width: 600px) {
    .funding_and_thanks {
    -moz-column-count: 2;
    -ms-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-gap: 40px;
    -ms-column-gap: 40px;
    -webkit-column-gap: 40px;
    column-gap: 40px;
}
}

.logos {
    margin: 80px 0 80px 0;
    text-align: center;
}

.logos img {
    max-width: 222px;
    max-height: 60px;
    vertical-align: middle;
    margin: 0 20px;
}

.address_name {
    font-family: 'Roboto';
    font-weight: 400;  /* Regular */
    font-size: 15px;
    line-height: 24px;
    color: rgb(230, 230, 230);
    text-transform: uppercase;
}
.address_body {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 12px;
    color: rgb(153, 153, 153);

    line-height: 18px;

    margin-bottom: 16px;
}

.address_email_and_phone {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 15px;
    color: rgb(230, 230, 230);

    line-height: 24px;

    margin-bottom: 16px;
}

.address_email_and_phone a, .address_email_and_phone a:visited, .address_email_and_phone a:hover {
    font-weight: 300;  /* Regular */
    color: rgb(230, 230, 230);
}


.copyright {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 10px;
    line-height: 24px;
    color: rgb(179, 179, 179);
    text-transform: uppercase;
}

.footer .social_buttons {
    /*float: right;*/

    /* Nudge up a bit to align bottom of icons with bottom of copyright text */
    /*position: relative;*/
    /*top: -12px;*/
        vertical-align: middle;

}

.body_text .social_buttons {
    margin: 20px 1px;
}

.footer .social_buttons {
    text-align: right;
    margin: 10px 10px 10px 20px;
}

.social_buttons img {
    height: 19px;
    width: auto;
    margin-left: 0;
    margin-right: 23px;
    opacity: 0.6;
}

.footer .social_buttons img {
    opacity: 1.0;
}

.social_buttons a:first-child img {
    margin-left: 0;
}

.social_buttons a:last-child img {
    margin-right: 0;
}




.footer .newsletter_container {
    width: 100%;
}

.footer .newsletter {
    margin: 10px 10px 30px 0;
    vertical-align: middle;
    line-height: 25px;
/*height: 25px;*/
}

.footer .newsletter label {
    font-size: 12px;
     /*margin: 0 10px 0 0;*/
    color: rgb(221,221,221);
    letter-spacing: 0.03em;
    /*font-weight: 400;*/
}

.footer .newsletter input {
    font-size: 12px;
    /*line-height: 16px;*/
    border-radius: 3px;
    background-color: rgb(77,77,77);
    box-sizing: border-box;
    /*margin-left: 10px;*/

}

.footer .newsletter input[type=submit] {
    border: 1px solid rgb(129,129,129);
    /*width: 4em;*/
    padding: 0 0.8em;
    color: #fff;
}

.footer .newsletter input[type=email] {
    background-color: rgb(129,129,129);
    color: white;
    border: 1px solid rgb(129,129,129);
}

.footer .newsletter input::placeholder {
    color: rgb(221,221,221);
    font-style: italic;
}



@media screen and (min-width:680px) {
    .social_buttons img {
        margin-right: 23px;
    }

    .footer .social_buttons {
        float: right;
        margin-top: 10px;
    }

    .footer .social_buttons img {
        height: 25px;
        padding-right: 10px;
        vertical-align: middle;
    }

    .footer .newsletter_container {
        width: 50%;
    }

    .footer .newsletter {
        margin: 10px 20px 30px 0;
    }

    .footer .newsletter label {
   }

    .footer .newsletter input {

    }

    .footer .newsletter input[type=submit] {
    }

    .footer .newsletter input[type=email] {
    }

    .footer .newsletter input::placeholder {
    }
}




/* + }}} */

/* + Blog post {{{ */

    .single-post {
        margin-top: 80px;
    }

    .single-post header {
        margin: 0 30px;
        padding: 0 20px;
    }



.single-post h2 {
    font-family: 'Roboto';
    font-weight: 200;  /* Thin */
    font-size: 26pt;
    color: rgb(51, 51, 51);

    text-align: center;

    margin-top: 100px;
    margin-bottom: 40px;

    text-transform: uppercase;
}

    .single-post h1 {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 24px;
    /*color: rgb(102, 102, 102);*/
    color: #000; 

    line-height: 36px;

    margin-bottom: 0;

    text-align: left;
    text-transform: uppercase;
}

.single-post .image
{
    margin: 0;
    padding: 0;
}


.archive-post {
    /*clear: both;*/
    margin-top: 80px;
}


 .archive-post-DISABLED h2, .archive-post_DISABLED h2 a {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 21px;
    color: rgb(102, 102, 102);

    text-align: left;
    /*line-height: 36px;*/
    margin-bottom: 20px;
}

.archive-post header
{
    clear:both;
    /*margin-left: 40px;*/
}




.byline {
    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    color: rgb(179,179,179);
    margin: 0 40px 40px 0;
}

.byline address, .byline time {
    font-style: normal;
    display: inline-block;
}

.byline address:after {
    content: ' \2022 ';
}

.archive-post header {
        border-top: solid #cccccc 1px;
}

.archive-post:first-child header {
        border-top: none
}



.archive-post h2 {
    margin-bottom: 9px;
    margin-top: 20px;
    font-size: 21px;
}

.archive-post .byline {
    float: left;
}

.archive-post .byline img {
    display: block;
    /*min-width: 100%;*/
    /*min-height: 100%;*/
    /*-ms-interpolation-mode: bicubic;*/
    width: 200px;
    height: 200px;
    margin-bottom: 10px;

}

.archive-post .more-link {
    display: block;
}

.archive-post section img {
    /*display: none;*/
    margin: 0 0 40px 0;
}

.archive-post section {
    /*margin-left: 240px;*/
}





img {
    margin: 0;
    padding: 0;
}



.top-contact-details {
    margin: 5px 5px;
    display: none;
}

.top-contact-details, .top-contact-details a {
    font-size: 9.5px;
    color: #808092;
    letter-spacing: 0.175px;
    font-weight: inherit;
}

.top-contact-details .email-image {
    position: relative;
    top: 3px;
    left: -0.5px;
}

@media screen and (min-width:680px) {
    .top-contact-details {
        margin: 10px 11px;
        display: inherit;
    }

    .top-contact-details, .top-contact-details a {
        font-size: 11.5px;
    }
}


.bio_banner {
    width: 100%;
    margin-top: 40px;
}

.bio_image {
    position: relative;
    box-sizing: border-box;
    justify-content: center;
    height: 100%;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.bio_image img {
    height: 100%;
}

.banner_text {
    float: left;
    width: 100%;
}


@media screen and (min-width:680px) {
    .bio_banner {
        margin-top: 60px;
    }

    .bio_image {
        float: left;
        width: 40%;
        position: relative;
        padding: 1ex 40px 0 0;
        display: flex;
        justify-content: center;
        height: 100%;
    }

    .bio_image img {
        flex: 0.65;
        height: 100%;
    }

    .banner_text {
        width: 60%;
        float: left;
    }
}



.project-summary-list header {
    margin: 20px 0;
}


.project-summary {
    padding-top: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: solid #cccccc 1px;

    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 16px;
    line-height: normal;
}

.project-summary:target p {
    color: #5f5f73;
}

.project-summary:target .tags {
    color: #808092;
}

.project-summary:target:after {
    content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  bottom: 0;
  /*border: red 2px solid;*/

    background-color: #efeff7;
    border: solid #adadc4 1px;
    padding: 10px;
    border-spacing: 3px;
    z-index: -10;
}

.project-summary .right-column-container {
    width: 100%;
}


.project-summary .right-column img {
    width: 100%;
}

@supports (object-fit: cover) {
    .project-summary .right-column img {
        object-fit: cover;
    }
}

@supports not (object-fit: cover) {
    .project-summary .right-column img {
        height: 100%;
    }
}

.project-summary .left-column-container {
    padding-bottom: 20px;
}


.project-summary p {
    color: #808092;
    font-size: 13px;
    line-height: 1.5em;
}

.project-summary .see-more a {
    color: #ed1e79;
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    position: absolute;
    bottom: 10px;
    margin-bottom: 0;
}



@media screen and (min-width:680px) {
    .project-summary-list header {
        margin: 40px 0;
    }

    .project-summary {
        border-bottom: none;
    }

    .project-summary .right-column-container {
        float: right;
        width: 60%;
    }

    .project-summary .left-column-container {
        margin-right: 60%;
    }

    .project-summary .left-column {
        margin-right: 40px;
        border-top: solid #cccccc 1px;
        padding-top: 1px;
    }


    .project-summary .see-more a {
        bottom: 20px;
    }
}



.vimeo_embed_container {
    margin: 0;
    /*Create space for an absolutely 
    positioned 16:9 video frame to be 
    placed inside this element*/
    position: relative;
    padding-top: 0;
    height: 0;
    padding-bottom: 56.25%;
}

.vimeo_embed_preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





h1, h1 a {
    font-family: 'Roboto';
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: center;

    /*margin-top: 60px;*/

    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}

h3 {
    font-weight: 500;
    font-size: 20px;
    color: rgb(64,64,64);
}



.project-summary h1, .project-summary h1 a {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 19px;
    margin: 10px 0 5px 0;
    text-align: left;
}

.client-details {
    border-collapse: collapse;
}

.client-details td, .client-details th {
    padding: 0;
    margin: 0;
    vertical-align: text-bottom;
}

.client-details th {
    color: #cccccc;
    font-size: 13px;
    font-weight: 300;
    text-align: left;
    text-transform: uppercase;
    margin: 10px 0 5px 0;
    line-height: 19px;
    padding-right: 2ex;
}


.project-summary h2, .project-summary h2 a {
    margin: 0 0 -5px 0;
    color: #808092;
    font-size: 16px;
    font-weight: 200;
}



.project-summary-list .tag-selection-list {
    text-align: center;
}

.project-summary-list .tags, .project-summary-list .tags a {
    padding: 0;
    color: #cccccc;
    font-size: 11px;
    margin: 10px 0 10px 0;
    font-weight: 300;
    /*text-align: left;*/
}

.project-summary-list .tags li {
    display: inline;
}

.project-summary-list .tags li:before {
    content: " ";
}

.project-summary-list .tags li:after {
    content: " \2022";
}

.project-summary-list .tags li:first-child:before {
    content: none;
}

.project-summary-list .tags li:last-child:after {
    content: none;
}

.project-summary-list .tags .selected {
    color: #ed1e79;
}




.body_text ul {
    list-style-type: none;
    padding: 0;
    /*margin: 0 40px;*/
}

ul.spaced-out li {
    margin-bottom: 10px;
}




.sponsor-logos {
    width: 100%;
    text-align: center;
}

.sponsor-logos img {
    margin: 40px 10px 20px 10px;
    vertical-align: middle;
}

.tagline p {
    font-weight: 300;
    letter-spacing: 0.1px;
    text-align: center;
    text-transform: lowercase;
    /*font-style: italic;*/
    font-size: 15px;
    color: #cccccc;
}


.contact-details-table tbody {
    margin: 0;
    padding: 0;
}

.contact-details-table tr td:first-child {
    padding-right: 10px;
    padding-left: 0;
    margin: 0;
    position: relative;
    left: -2px;
}

blockquote {
    font-style: italic;
    margin-left: 0;
}

blockquote p:first-child:before {
    content: '\201c';
}

/*blockquote p:last-child {
    content: none;
}*/


blockquote p:last-of-type:after {
    content: '\201d';
}

blockquote footer {
    /*display: inline;*/
    font-style: normal;
    text-align: right;
}

.page-nav {
    margin-top: 60px;
    text-align: center;
    text-transform: uppercase;
}

.page-nav li {
    display: inline-block;
    margin: 0 20px;
}

.show-hide-toggle {
    cursor: pointer;
}

.show-hide-target {
    /*transition: height 0.5s ease-in-out;*/
    border: 1px solid transparent;
}

.initially-hidden {
    display: none;
}

.single-project .client-details {
    margin-left: auto;
    margin-right: auto;
}



.single-project .client-details th {
    font-size: 20px;
    text-align: right;
}

.single-project .client-details h2 {
    margin-top: 10px;
    /*line-height: 0;*/
    text-align: left;
    font-size: 23px;
}

.single-project .client-details h1 {
    text-align: left;
    margin-bottom: 0;
}

.footer_newsletter_description {
    margin-top: 10px;
    margin-bottom: 0;

    font-family: 'Roboto';
    font-weight: 300;  /* Light */
    font-size: 12px;
    color: rgb(153, 153, 153);

    line-height: 18px;
}



/* NAV BAR */


  .navbar-nav {
    padding-left: 5px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar
  {
    /*color: #eee;*/
    font-weight: 200;
    font-size: 16px;
    text-transform: uppercase;

    background-color: #585858;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    min-height: 0;
  }



  .navbar li a {
    position: relative;
    display: block;
  }

  .navbar li.show-hide-toggle {
    display: none;
  }

  .navbar-default .navbar-nav {
    /*height: 10px;*/
  }

  .navbar-default .navbar-nav li a,
  .navbar-default .navbar-nav li a:focus {
    /*color: #282828;*/
    color: #ccc;
    padding-top: 0.73em;
    padding-bottom: 9px;
    padding-left: 0.5em;
    padding-right: 0.5em;
    outline: none;
    margin: 0;
    background-color: #585858;

  }

    .navbar-default .navbar-nav li:first-child a,
  .navbar-default .navbar-nav li:first-child a:focus {
    font-weight: 300;
    color: #eee;
    padding-right: 0.8em;

  }

  .navbar-default .navbar-nav li a:hover {
    color: #e9e9e9;
  }

  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus
  {
    background-color: #8a8a8e;
    color: #fff;
    outline: solid 1px #ddd;
    outline-offset: 0;
    z-index: 1;
  }
  /* hack for Firefox bug */
  @-moz-document url-prefix()
  {
    .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus
  {

    outline-offset: -1px;
  }
}

 .navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1030;
    height: 40px;
}

.navbar-fixed-top.hidden {
    top: -42px;
    display: none;
}



  /**/

nav.navbar {
  /*overflow: scroll;*/
  margin-bottom: 0;
}


div.my-navbar {
  /*overflow: hidden;*/
  /*white-space: nowrap;*/
  /*display: inline-block;*/
  /*min-width: 27em;*/
  /*overflow: scroll;*/
  /*text-align: right;*/
}

.my-navbar ul {
  /*white-space: nowrap;*/
  /*overflow: scroll;*/
}

.my-navbar li {
  display: inline-block;
}

@media screen and (max-width: 680px) {
.navbar-nav li, .navbar-nav li.show-hide-toggle {
    display: block;
}

.navbar-nav li.show-hide-toggle {
    display: block;
    text-align: right;
    font-weight: 200;
    font-size: 18px;
    line-height: 8px;
    float: right;
}

.collapsed .navbar-nav li:first-child, .collapsed .navbar-nav .show-hide-toggle {
    display: inline-block;
}

  .collapsed .navbar-nav li:not(:first-child) {
    display: none;
    /*transform: scaleY(0);*/
    /*height: 0;*/
    /*transition: height 0.25s ease;*/
}
  .collapsed .navbar-nav li.show-hide-toggle {
    /*float: right;*/
    /*display: block;*/
    transform: inherit;
  }

    .navbar li {
    float: left;
    clear: left;
    width: 100%;
  }

}

@media screen and (max-width: 780px) {
    .navbar {
        font-size: 14px;
    }

.navbar-fixed-top {
    height: 32px;
}

.navbar-fixed-top.hidden {
    top: -42px;
    display: none;
}

  .navbar-default .navbar-nav li a,
  .navbar-default .navbar-nav li a:focus {
    padding-bottom: 6px;
  }



}
