body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-family: 'Open Sans', 'Droid Sans', Arial, sans-serif;
}
.header {
    position:fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 7em;
    white-space: nowrap;
    background: #0a0a0a;
}
.headline {
    display: inline-block;
    float: left;
    width: 250px;
    text-align: left;
    color: white;
    margin-left: 25px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.viola {
    color: #cfa0d3;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 4;
}

.visdev {
    color: #ce6286;
    font-size: 0.8em;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 4.3;
}

.links {
    position: relative;
    float:left;
    margin-top: 5px;
    margin-right: 20px;
}

.navigation {
    max-width: 1620px;
    padding-top: 24px;
}

.navitem {

    padding-right: 1.2em;
    float:left;
}

@media (min-width: 410px) {
    .navitem {
        display: block;
    }
    .nav_dropdown {
        display: none;
    }
}

@media (max-width: 409.999px) {
    .navitem {
        display: none;
    }
    .nav_dropdown {
        display: inline-block;
    }
}

.navtitle {
    font-size: 0.8em;
    color: #b7857e;
    text-transform: uppercase;
}

.content {
    max-width: 90%;
    margin: 9em auto 2em auto;
}

.contentbox {

}

.thumbbox {
  position: relative;
    display: inline-block;
    text-align: left;
    margin-bottom: 25px;
    transition: all 1s ease-out;
    overflow: hidden;
}


.thumbbox img{
  filter: grayscale(0%);
}

.thumbbox:hover img{
  filter: grayscale(0%);
}

.thumbbox:hover .thumbtitle{
    background-color: #2b2632;
    padding-left: 20px;
    color: #cfa0d3;
    transition: all .4s ease-out;
}

.thumbspacer {
    display: inline-block;
    text-align: left;
    width: 25px;
}

.thumbtitle {
    padding: 10px 0;
    color: #916963;
    font-size: 1.2em;
    text-transform: uppercase;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: all .4s ease-out;
}

.ptitle {
    margin-top: 18px;
    color: #ce6286;
    font-size: 1.8em;
    text-transform: uppercase;
}

.ctitle {
    margin: 20px 0px 5px 0px;
    color: white;
    font-size: 1.2em;
}

.cdesc {
    margin: 0px 0px 5px 0px;
    max-width: 800px;
    color: white;
    font-size: 0.8em;
}

.cImg {
    max-width: 100%;
    height: auto;
}

.clearFloat {
    clear: both;
}

a:link {
    color: #b7857e;
    text-decoration: none;
}
a:hover {
    color: #916963;
}
a:active {
    color: #916963;
    text-decoration: none;
}
a.pdflink {
    font-size: 12px;
}
a:link.pdflink {
    color: white;
}
a:visited.pdflink {
    color: white;
}
a:hover.pdflink {
    color: gray;
}
a:active.pdflink {
    color: white;
}
a.maillink {
    font-size: 12px;
}

/* dropdown */
/* Style The Dropdown Button */
.dropbtn {
    background-color: #ccceac;
    padding: 0px 5px 5px 10px;
    color: #4f4b3e;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 1.5em;
    border: none;
    border-radius: 10px;
    cursor: pointer;

}

/* The container <div> - needed to position the dropdown content */
.nav_dropdown {
    position: relative;
}

.nav_dropdown:hover .dropbtn {
    color: #ccceac;
    background-color: #4f4b3e;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 100px;
    color: #4f4b3e;
    font-size: 1.5em;
    background-color: #ccceac;
    border: outset;
    border-radius: 10px;
    border-color: #4f4b3e;
    z-index: 101;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 10px;
    display: block;
}

.dropdown-content a {
    padding: 5px 10px 5px 10px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.nav_dropdown:hover .dropdown-content {
    display: block;
}
