body {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
}

#leadockForm {
    position: absolute; 
    top: 655px; 
    left: 160px; 
    width: 380px; 
    height: 150px; 
    background: none; 
    overflow: hidden;
}

#gallery {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%; 
    height: 100%;
    overflow: hidden;
    margin-left: auto; 
    margin-right: auto;
}

#galleryInnerContainer {
    position: relative; 
    width: 100%; 
    height: 100%;
    overflow: hidden;
}

.galleryImage {
    position: absolute; 
    top: 0px; 
    left: 0px; 
    width: 100%; 
    height: 100%; 
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    background-repeat:  no-repeat;
    background-position: top right;
    background-attachment: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.galleryArrow {
    position: absolute; 
    top: 0px; 
    width: 50px; 
    height: 100%;
    vertical-align: middle;
    padding-top: calc(50% - 108px);
    cursor: pointer;
    border: 0px solid blue;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    background-repeat:  no-repeat;
    background-position: center center;
    background-attachment: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.galleryArrow img {
    width: 50px;
    opacity: 0.5;
}

.galleryArrow img:hover {
    opacity: 1;
}

