#exhibitions {
    width: 100%;
}

#exhibitions .exhibition {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 22px;
}

#exhibitions .exhibition .left {
    display: inline-table;
    float: left;
    width: 40%;
    padding-right: 10px;
    box-sizing: border-box;
    font-weight: bold;
}

#exhibitions .exhibition .left a {
    color: black;
    text-decoration: none;
}

#exhibitions .exhibition .left a:hover {
    text-decoration: underline;
}

#exhibitions .exhibition .right {
    display: inline-table;
    float: left;
    width: 40%;
    padding-left: 10px;
    box-sizing: border-box;
}

#exhibitions .exhibition .date {
    display: inline-table;
    float: left;
    width: 20%;
    padding-left: 20px;
    box-sizing: border-box;
}

#gallery {
    max-width: 960px;
    box-sizing: border-box;
    position: relative;
    padding-top: 80px;
}

#galleryNav {
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 100%;
}

#galleryNav #bullets {
    height: auto;
    text-align: center;
    width: 100%;
}

#galleryNav #bullets .bullet {
    width: 8px;
    height: 8px;
    background-color: #d7d7d7;
    display: inline-block;
    margin: 0px;
    padding: 0px;
    margin-left: 15px;
    cursor: pointer;
}

#galleryNav #bullets .bullet.selected {
    background-color: black;
    cursor: default;
}

#galleryNav #bullets div:first-child {
    margin-left: 0px;
}

#gallery #imageCanvas {
    width: 100%;
    position: relative;
}

#gallery #imageCanvas #image {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

#gallery #imageCanvas #image img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: auto;
    margin-left: -32px;
    margin-top: -32px;
}

#gallery #imageCanvas #captions {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    color: #4a4845;
    font-size: 12px;
    padding-top: 10px;
}

#gallery #imageCanvas #caption div {
    display: block;
}

#biography a {
    font-weight: bold;
    margin-top: 70px;
    display: block;
}

@media (max-width:1024px) {
    
    #gallery {
        padding-top: 40px;
    }
    
}

@media (max-width:599px) {
    
    #exhibitions .exhibition .left {
        display: inline-table;
        float: none;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 6px;
    }
    
    #exhibitions .exhibition .right {
        display: inline-table;
        float: none;
        width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
    }
    
}