body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Arial, SansSerif;
}
#header {
    height: 80px;
    width: 100%;
    background: #ffffff;
    padding: 15px;
    position: fixed;
    border-bottom: 1px solid #dddddd;
}
#main {
    background: #f4f4f4;
    padding: 120px 20px 20px 20px;
}

.logo {
    display: block;
    height: 80px;
    margin-left: 200px;
    float: left;
}
.search {
    float: left;
    margin-top: 15px;
    margin-left: 30px;
    width: 50%;
}
.search-query {
    width: 50%;
    height: 40px;
    font-size: 16px;
    padding: 4px;
}
#search-submit {
    background-color: #f7921e;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    padding: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}
#search-submit:hover {
    border: none;
    background: #e6891e;
    box-shadow: 0px 0px 1px #777;
}
.results-head {
    background: #cccccc;
}
.results-head-cell {
    padding: 4px 10px 4px 15px;
}
.result-cell {
    padding: 4px 15px 4px 20px;
}
.clear {
    clear: both;
}

/* The Modal (background) */
#myModal {
    display: none;
    position: fixed;
    z-index: 2;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
#myModal .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

/* The Close Button */
#myModal .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

#myModal .close:hover,
#myModal .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
#myModal .mySlides {
    display: none;
    text-align: center;
}

/* Next & previous buttons */
#myModal .prev,
#myModal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Position the "next button" to the right */
#myModal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#myModal .prev:hover,
#myModal .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
#myModal .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}