/** DEFAULT THEME*/
    /** tabs */
    .froz-tabs-main{float:left; margin:20px 0}
    .froz-tabs-main ul.link-container {
        /* ul that contains link list */
            
        margin: 0 0 0 0;
        padding: 0;
        float:left;
        list-style: none;
        height: 32px; /*--Set height of tabs--*/
        margin-bottom: 1px;
/*      border-bottom: 1px solid #aaa;*/
/*      border-left: 1px solid #ddd;*/
        width: 561px;
    }
    .froz-tabs-main ul.link-container li {
        /* list objects that contain links */
            
        float: left;
        margin: 0;
        padding: 0;
        height: 31px; /*--Subtract 1px from the height of the unordered list--*/
        line-height: 31px; /*--Vertically aligns the text within the tab--*/
        border: 1px solid #ddd;
        border-left: none;
        margin-bottom: -1px; /*--Pull the list item down 1px--*/
        overflow: hidden;
        position: relative;
        background: #f2f2f2;
    }
    .froz-tabs-main ul.link-container li a {
        /* link to contents */
            
        text-decoration: none;
        color: #000033;
        display: block;
        font-size: 1.15em;
        padding: 0 8px;
        border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
        outline: none;
    }
    .froz-tabs-main ul.link-container li a:hover {
        /* all hovered links */
        
        border: 1px solid #003683;
        background: #003355;
        color:#fff;
        text-decoration:none;
        outline:none;
    }
    .froz-tabs-main ul.link-container li.froz-tab-active a, #froz-tabs ul.link-container li.froz-tab-active a:hover  {
        /* active lists and correspondin hovered links */
        
        border: 0;
        color: #000033;
        background: #fff;
        
    }

    /** contents */
    .froz-tabs-main .tab-container {
        /* div that contains tab contents */
            
        border: 1px solid #ddd;
        border-top: none;
        overflow: hidden;
        clear: both;
        float: left; width: 520px;
        background: #fff;
        padding:20px;
        
    }
/** END OF DEFAULT THEME */
.froz-tabs-main ul.link-container li{
    margin: 0;
    border: 1px solid #aaa;       /* border color of tabs */
}

.froz-tabs-main ul.link-container li.froz-tab-active a,
.froz-tabs-main ul.link-container li.froz-tab-active:hover a{
    color: #2a406b;       /* text properties of hovered tab */
    font-weight: normal;       
}

.froz-tabs-main ul.link-container li.froz-tab-active,
.froz-tabs-main ul.link-container li.froz-tab-active:hover{
    height: 30px;       /* height of active tab */
    margin-top: 0px;       /* must be equal to ((height of normal tab) - (height of active tab)) */
    border-bottom: 2px solid #fff;       /* must be the same as background of active tab */
}

