﻿.tabs {
    display: none;
}

    .tabs.initialized {
        display: block;
    }

.tabs > div[data-tab-id] {
    display: none;
    background-color: #EEEEEE;
    padding: 10px;
}

.tabs  > div[data-tab-id].active {
    display: block;
}

.tab-navigation {    
    border-bottom: 1px solid #222222;
}

.tab-navigation > a {
    display: inline-block;
    padding: 5px 10px 5px 10px;
    height: 22px;
    min-width: 10px;  
    line-height: 22px;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    color: #FFFFFF;    
    font-size: 12px;
    background: #333333 no-repeat center center;
    cursor: pointer;
    margin-right: 2px;
}

.tab-navigation > a:hover,
.tab-navigation > a.active
{
    background-color: #39a2b9;
    /*color: #333333;*/
}