﻿body {
}


/* Vertical Style the tab */
.tabv {
    float: left;
   
    background-color:transparent;
    width: 125px;
    height: 100%;
}

    /* Style the buttons inside the tab */
    .tabv button {
        display: block;
        background-color:transparent;
        color: black;
        padding: 8px 12px;
        width:125px;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        font-size: 14px;
    }

        /* Change background color of buttons on hover */
        .tabv button:hover {
            background-color: #ddd;
        }

        /* Create an active/current "tab button" class */
        .tabv button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontentv {
    float: left;
    padding: 4px 4px;
        
    height:100%
   
}



