/* Vertical Accordion Style */
.va-container {
    position: relative;
    margin: 40px auto 0 auto;
}

.va-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.va-slice {
    position: absolute;
    width: 100%;
    left: 0px;
    overflow: hidden;
}

.va-title {
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    margin-right: 27px;
    color: #fff;
    text-shadow: 0px 0px 1px white;
    margin-bottom: 20px;
    margin-left: 0;
}
.va-title:nth-child(3n){
    margin-right: 0;
}
.va-content {
    display: none;
    margin-left: 25px;
}

.va-nav span {
    width: 40px;
    height: 25px;
    background: transparent url(../images/prev.png) no-repeat center center;
    position: absolute;
    top: -35px;
    left: 50%;
    margin-left: -20px;
    text-indent: -9000px;
    opacity: 0.7;
    cursor: pointer;
    display: none;
    z-index: 100;
}

.va-nav span.va-nav-next {
    background-image: url(../images/next.png);
    top: auto;
    bottom: -35px;
}

.va-nav span:hover {
    opacity: 1.0;
}