
/* page styles */
body {
    margin: 0;
    padding: 0;
    background: #fff;
}
#wrapper {
    width: 600px;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    background: #fff;
    padding: 25px;
    border-top: none;
    text-align: left;
}
.search__div--searchBarTopBackground {
    position: fixed;
    background-color: #fff;
    height: 6em;
    width: 100%;
    padding: 30px 0 0 0;
    z-index: 9999;
}
input.search__input--searchBarTop {
    display: block;
    height: 60px;
    width: 450px;
    margin: 0 auto;
}
#imageSet {
    position: relative;
    left: 160px;
    margin: 100px 0 0 0;
}
img,
iframe {
    margin: 0 0 60px 0;
}
.images__div--rowOne,
.images__div--rowTwo,
.images__div--rowThree,
.images__div--rowFour {
    display: flex;
    flex-direction: column;
}
#search-form {
    display: block;
    height: 2em;
    width: 10em;
    margin: 0 auto;
}

/* image hack used to hide alt text in images...replaces -9999px method, author: Jeff Zeldman*/

.hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (min-width: 1100px) {
    .images__div--rowOne,
    .images__div--rowTwo,
    .images__div--rowThree,
    .images__div--rowFour {
        flex-direction: row;
    }
    img,
    iframe {
        margin: 0 60px 60px 0;
    }
    #imageSet {
        left: -230px;
    }
}

/* lightbox styles */

#lightbox {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    filter: alpha(opacity=70);
    z-index:1;
}
#lightbox p {
    text-align: center;
    color: #fff;
    margin-right: 20px;
    font-size: 12px;
}
#lightbox img {
    position: absolute;
    top: 140px;
    max-width: 600px;
}

/* slideshow styles */

#slideshow {
    position: relative;
    z-index: 100;
    width: 600px;
    height: 350px;
    margin: 0 auto;
    padding: 10px;
    background-color: transparent;
}
#slideshow ul > li {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    list-style: none;
}
.nav__div--nav {
    display: none;
}
.nav__a--prev,
.nav__a--next {
    position: absolute;
    top: 85%;
    background: transparent;
    padding: .25em .5em;
    color: #fff;
    text-decoration: none;
}
.nav__a--next {
    right: -40px;
}
.nav__a--prev {
    left: -40px;
}
.center {
    position: relative;
    top: 520px;
    left: 10px;
    max-width: 600px;
    margin: 0 auto;
}
.white {
    color: #fff;
}


