.tabs-left,.tabs-right {
    border-bottom:none;
    padding-top:2px;
}

.tabs-left {
    border-radius:10px 0 0 10px;
    //border-right:2px solid #ddd;
}

.tabs-right {
    border-left:1px solid #ddd;
}

.tabs-left>li,.tabs-right>li {    
    float:none;
    margin-bottom:20px;
}

.tabs-left>li {

    margin-right: -1px;
    -webkit-transition: all 300ms cubic-bezier(0.420, 0.000, 1.000, 1.000);
    -moz-transition: all 300ms cubic-bezier(0.420, 0.000, 1.000, 1.000);
    -o-transition: all 300ms cubic-bezier(0.420, 0.000, 1.000, 1.000);
    transition: all 300ms cubic-bezier(0.420, 0.000, 1.000, 1.000); 
}

.tabs-right>li {
    margin-left:-1px;
}

.tabs-left>li>a,.tabs-left>li>a:focus,.tabs-left>li>a:hover {
    font-family: 'Gotham-Bold';
    font-size: 14px;
    color:white;
    background: #1e1e1e;
    border:2px solid white;
    border-left-color:transparent;
}

.tabs-left>li.active>a,.tabs-left>li.active>a:focus,.tabs-left>li.active>a:hover {
    font-family: 'Gotham-Bold';
    font-size: 14px;
    color:white;
    background: #1e1e1e;
    //background: #bf272d;
    border:2px solid white;
    border-left-color:transparent;
}

.tabs-right>li.active>a,.tabs-right>li.active>a:focus,.tabs-right>li.active>a:hover {
    //border-bottom:1px solid #ddd;
    border-left-color:transparent;
}

.tabs-left>li>a {    
    border-radius:0px 10px 10px 0px;
    margin-right:0;
    display:block;
    background: #bf272d;
    border: none;
}

.tabs-right>li>a {
    //border-radius:0 4px 4px 0;
    margin-right:0;
}

.sideways {
    margin-top:50px;
    border:none;
    position:relative;
}

.sideways>li {
    height:20px;
    width:120px;
    margin-bottom:100px;
}

.sideways>li>a {
    border-bottom:1px solid #ddd;
    border-right-color:transparent;
    text-align:center;
    border-radius:4px 4px 0 0;
}

.sideways>li.active>a,.sideways>li.active>a:focus,.sideways>li.active>a:hover {
    border-bottom-color:transparent;
    border-right-color:#ddd;
    border-left-color:#ddd;
}

.sideways.tabs-left {
    left:-50px;
}

.sideways.tabs-right {
    right:-50px;
}

.sideways.tabs-right>li {
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    -o-transform:rotate(90deg);
    transform:rotate(90deg);
}

.sideways.tabs-left>li {
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    transform:rotate(-90deg);
}