* {
        margin: 0;
        padding: 0;
}
body {
        background: url(../images/noise_light-grey.jpg);
        font-family: 'Helvetica Neue', arial, sans-serif;
        font-weight: 200;
}
.detail {
    display: none;
}
h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 4em;
        font-weight: 400;
        margin: 0 0 20px;
        text-align: center;
        text-shadow: 1px 1px 0 #fff, 2px 2px 0 #bbb;
}
h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 2em;
        font-weight: 400;
        margin: 0 0 20px;
        text-align: center;
        text-shadow: 1px 1px 0 #fff, 2px 2px 0 #bbb;
}
h5 {
        font-family: 'Oswald', sans-serif;
        font-size: 3.5em;
        font-weight: 400;
        margin: 0 0 20px;
        text-align: center;
        text-shadow: 1px 1px 0 #fff, 2px 2px 0 #bbb;
}
hr {
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #fff;
        margin: 25px 0;
        clear: both;
}
.centered {
        text-align: center;
}
.wrapper {
        width: 100%;
        padding: 30px 0;
}
.container {
        /*width: 1200px;*/
        width: 100%;
        margin: 0 auto;	
}
ul.grid-nav {
        list-style: none;
        font-size: .85em;
        font-weight: 200;
        text-align: center;
        background: rgba(50,50,50,0.2);
        height: 24px;
        position: relative;
        top: 10px;
}
ul.grid-nav li {
        display: inline-block;
        position: relative;
        top: 2px;
        /*left: 0;*/
}
ul.grid-nav li a {
        display: inline-block;
        /*background: rgba(50,50,50,0.5);*/
        color: #fff;
        padding: 0px 10px;
        text-decoration: none;
        /*border-radius: 4px;*/
        /*-moz-border-radius: 4px;*/
        /*-webkit-border-radius: 4px;*/
        transition: all 0.5s ease;
}
ul.grid-nav li a:hover {
        background: #999;
}
ul.grid-nav li a.active {
        /*background: #333;*/
        color: #333;
}
.grid-container {
        display: none;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        color: #696868;
}
/* ----- Image grids ----- */
ul.rig {
        list-style: none;
        font-size: 0px;
        margin-left: -2.5%; /* should match li left margin */
}
ul.rig li {
        display: inline-block;
        padding: 10px;
        margin: 0 0 2.5% 2.5%;
        background: #fff;
        border: 1px solid #ddd;
        font-size: 16px;
        font-size: 1rem;
        vertical-align: top;
        box-shadow: 0 0 5px #ddd;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
}
ul.rig li img {
        max-width: 100%;
        height: auto;
        margin: 0 0 10px;
}
ul.rig li h3 {
        margin: 0 0 5px;
}
ul.rig li p {
        font-size: .9em;
        line-height: 1.5em;
        color: #999;
}
/* class for 2 columns */
ul.rig.columns-2 li {
        width: 47.5%; /* this value + 2.5 should = 50% */
}
/* class for 3 columns */
ul.rig.columns-3 li {
        width: 30.83%; /* this value + 2.5 should = 33% */
}
/* class for 4 columns */
ul.rig.columns-4 li {
        width: 22.5%; /* this value + 2.5 should = 25% */
}

@media (max-width: 1199px) {
        .container {
                /*width: auto;*/
                padding: 0 10px;
        }
}

@media (max-width: 480px) {
        ul.grid-nav li {
                display: block;
                margin: 0 0 5px;
        }
        ul.grid-nav li a {
                display: block;
        }
        ul.rig {
                margin-left: 0;
        }
        ul.rig li {
                width: 100% !important; /* over-ride all li styles */
                margin: 0 0 20px;
        }
}