﻿/*******************************************************INIZIO TAB*/
.nav
{
    margin: 0;
    padding: 0px;
    list-style:none;
}

    .nav::before
    {
        content: " ";
        display: table;
    }

    .nav::after
    {
        clear: both;
        content: " ";
        display: table;
    }

    .nav > li
    {
     
        position: relative;
        display: block;
        cursor: pointer;
    }

        .nav > li > a
        {
            position: relative;
            display: block;
            padding: 10px 25px;
        }

            .nav > li > a:focus, .nav > li > a:hover
            {
                text-decoration: none;
                background-color: #eee;
            }

.nav-tabs
{
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li
    {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.6;
            border-width: medium medium 2px;
            border-style: none none solid;
            border-color: -moz-use-text-color -moz-use-text-color transparent;
            -moz-border-top-colors: none;
            -moz-border-right-colors: none;
            -moz-border-bottom-colors: none;
            -moz-border-left-colors: none;
            border-image: none;
            letter-spacing: 1px;
            font-weight: 700;
            font-size: 15PX;
            text-transform: uppercase;
            border-radius: 2px 2px 0px 0px;
            -webkit-animation: slide-up 0.3s ease-out;
            color: #2172a1;
        }


        .nav-tabs > li.active > a 
        {
            border-width: medium medium 2px;
            border-style: none none solid;
            border-color: -moz-use-text-color -moz-use-text-color #4f4f4f;
            -moz-border-top-colors: none;
            -moz-border-right-colors: none;
            -moz-border-bottom-colors: none;
            -moz-border-left-colors: none;
            border-image: none;
            background-color: transparent;                    
            background-color: #2172a1;   
            color: #fff;
        }

.tab-content
{
    width: 100%;
}

    .tab-content > .tab-pane
    {
        display: none;
        padding-top: 5px;
    }

    .tab-content > .active
    {        
        padding-top: 15px;
        display: block;
        -moz-animation: fadeInUp 0.4s;
        -ms-animation: fadeInUp 0.4s;
        -o-animation: fadeInUp 0.4s;
        animation: fadeInUp 0.4s;
    }
