    @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700);

    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    html, body {
        margin: 0; padding: 0;
        font-family: "Open Sans", sans-serif;
        font-size: 12px;
        line-height: 20px;
    }

    body {
      background-repeat: repeat;
      background-size: 40px;
    }

    header {
      height: 240px;
      padding: 50px 40px 0 40px;
      background: #fff url(/css/bkg3.png);
      background-size: 30px;
      color: #fff;
      font-size: 24px;
      line-height: 24px;
      text-align: center;
    }

    header img.logo {
      width: 80%;
      max-width: 700px;
    }

    header .byline {
      margin-top: 25px;
    }

    header.small {
      height: 45px;
      padding: 9px 40px 0 40px;
      background: #fff url(/css/bkg3.png);
      background-size: 30px;
      color: #fff;
      font-size: 18px;
      line-height: 28px;
      text-align: left;
      overflow: hidden;
    }

    header.small a {
      display: inline-block;
      line-height: 28px;
      vertical-align: -7px;
    }

    header.small img.logo {
      width: 150px;
      margin-right: 20px;
    }


    section {
        padding: 60px 40px 0 40px;
        clear: both;
    }

    h1, h2, h3 {
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.5em;
        color: #bbb;
        margin: 0 0 20px 0;
    }
    h1 {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        margin: 0 0 40px 0;
    }
    h2 {
        font-size: 24px;
        line-height: 40px;
        text-align: center;
    }
    h3 {
        font-size: 20px;
        line-height: 20px;
    }

    p {
        text-align: justify;
        margin: 0 0 20px 0;
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    ul.image-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }    
    ul.image-list li {
        padding: 0;
        margin: 0;
        display: block;
        float: left;
        width: 25%; height: 17vw;
        background-size: cover;
        background-position: center;
    }  
    ul.image-list li a {
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
        color: #fff;
        text-shadow: 0px 0px 45px rgba(0, 0, 0, 1);
        background: rgba(255,255,255,0.3);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition:    all 0.5s ease-out;
        -ms-transition:     all 0.5s ease-out;
        -o-transition:      all 0.5s ease-out;
        transition:         all 0.5s ease-out;
    }
    ul.image-list li a:hover {
        background: rgba(255,255,255,0);
    }
    ul.image-list li a h3 {
        position: absolute;
        margin: 0;
        padding: 0;
        bottom: 20px;
        left: 30px;
        font-weight: 400;
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0.1em;
        color: #fff;
    }
    ul.image-list:after {
        content: "";
        clear: both;
    }    

    @media screen and (max-width: 800px) {
      ul.image-list li { width: 100%; height: 67vw; }
    }
    @media screen and (min-width: 800px) and (max-width: 1200px) {
      ul.image-list li { width: 50%; height: 33vw; }
      .columns {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
        -moz-column-gap: 80px;
        -webkit-column-gap: 80px;
        column-gap: 80px;
      }
    }
    /*@media screen and (min-width: 1200px) and (max-width: 1800px) {
      ul.image-list li { width: 33.333%; height: 25vw; }
    }*/
    @media screen and (min-width: 1200px) {
      ul.image-list li { width: 25%; height: 17vw; }
      .columns {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
        -moz-column-gap: 80px;
        -webkit-column-gap: 80px;
        column-gap: 80px;
      }
    }
