﻿a
{
    cursor: pointer;
    color: #2172a1;
    text-decoration: none;
    font-size: 13px;
    border: none;
}

    a:hover
    {
        text-decoration: underline;
    }

h1
{
    color: #2b323a;
    height: 40px;
    font-size: 20px;
    padding: 0;
    margin: 25px 0 0 5px;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2
{
    color: #4f4f4f;
    font-size: 22px;
    padding: 14px 0;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}

h3
{
    color: #4f4f4f;
    min-height: 40px;
    font-size: 18px;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    padding: 8px 0 0 5px;
    margin: 20px 0 10px 0;
}

h4
{
    color: #6d6d6d;
    font-size: 15px;
    padding: 8px 0 0 0;
    margin: 0 0 10px 0;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}

h5
{
    color: #4f4f4f;
    font-size: 13px;
    padding: 8px 0 0 0;
    margin: 0 0 10px 0;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}

    h5 span
    {
        color: #2172a1;
        font-size: 14px;
    }

p
{
    color: #4f4f4f;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}

small
{
    font-size: 11px !important;
    color: #6d6d6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway';
}

span
{
    display: inline-block;
    max-width: 100%;
}

.placeholder
{
    font-weight: lighter;
    color: #6d6d6d;
    font-size: 14px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}

/*******************************************************INIZIO TEXTBOX*/
input[type="text"], input[type="password"]
{
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: dotted 1px;
    border-bottom-color: rgba(12, 12, 12, 0.30);
    background: transparent;
    color: #696969;
    font-size: 13px;
    word-spacing: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
}

    input[type="text"] ~ span, input[type="password"] ~ span
    {
        position: absolute;
        left: 10px;
        width: 100%;
        pointer-events: none;
        top: 20px;
        font-size: 12px;
        color: #2172a1;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    input[type="text"]:not(.Bottom) ~ span, input[type="password"]:not(.Bottom) ~ span
    {
        -webkit-transition: 0.2s ease all;
        -o-transition: 0.2s ease all;
        transition: 0.2s ease all;
    }

    input[type="text"]:focus ~ span, input[type="password"]:focus ~ span
    {
        top: 5px !important;
        font-size: 11px !important;
        color: #a8a8a8;
    }

    input[type="text"] ~ span:after, input[type="password"] ~ span:after
    {
        visibility: visible;
        width: 90%;
        left: 0;
    }

    input[type="text"].Top ~ span, input[type="password"].Top ~ span
    {
        top: 5px;
        font-size: 11px !important;
        color: #a8a8a8;
    }

.titoloHtmlArea
{
    top: 0px !important;
    font-size: 10px !important;
    color: #a8a8a8;
    text-transform: uppercase;
    position: absolute;
}

/*******************************************************FINE TEXTBOX*/

/*******************************************************INIZIO CHECKBOX*/
input[type="checkbox"]:not(ie8)
{
    position: relative;
    margin: 0;
    padding: 0;
}

    input[type="checkbox"]:not(ie8):not(ie8) ~ span
    {
        position: relative;
        padding-left: 20px;
        margin-left: 12px;
        display: inline-block;
        cursor: pointer;
        vertical-align: text-top;
        font-size: 12px;
        color: #2172a1;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    input[type="checkbox"]:not(ie8) ~ span:before
    {
        content: "";
        position: absolute;
        left: -10px;
        z-index: 1;
        width: 16px;
        height: 16px;
        border: 1px solid #313534;
    }

input[type="checkbox"]:not(ie8), input[type="checkbox"]
{
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
}

    input[type="checkbox"]:not(ie8) label
    {
        padding: 0;
        margin: 0;
    }

    input[type="checkbox"] ~ span:before
    {
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    input[type="checkbox"]:checked ~ span:before
    {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        height: 10px;
        border-color: #4f4f4f;
        border-top-style: none;
        border-right-style: none;
    }
/*******************************************************FINE CHECKBOX*/

/*******************************************************INIZIO DDL*/
.DDL
{
    width: 100%;
    overflow: hidden;
}

    .DDL i
    {
        position: absolute;
        right: 5px;
        line-height: 40px;
        background-color: #ffffff;
    }

    .DDL select
    {
        padding: 10px 0 0 5px;
        height: 40px;
        border: none;
        border-bottom: dotted 2px #2172a1;
        border-color: #195a80;
        background: none repeat scroll 0% 0% transparent;
        color: #696969;
        font-size: 14px;
        box-shadow: none;
        text-transform: none;
        margin: 0;
        display: block;
        width: 120%;
        border-radius: 0px;
        transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
        -webkit-appearance: none;
    }

        .DDL select :not(.static) ~ span
        {
            -webkit-transition: 0.2s ease all;
            -o-transition: 0.2s ease all;
            transition: 0.2s ease all;
        }

        .DDL select ~ span
        {
            position: absolute;
            left: 10px;
            bottom: 0px;
            width: 100%;
            pointer-events: none;
            top: 5px;
            font-size: 11px !important;
            color: #a8a8a8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .DDL select :focus ~ span:after
        {
            visibility: visible;
            width: 90%;
            left: 0;
        }

        .DDL select ~ span:after
        {
            content: '';
            position: absolute;
            bottom: 0;
            left: 45%;
            height: 1px;
            width: 10px;
            visibility: hidden;
            background-color: #7a7a7a;
            -webkit-transition: 0.2s ease all;
            -o-transition: 0.2s ease all;
            transition: 0.2s ease all;
        }

        .DDL select :focus ~ span
        {
            top: 5px;
            margin-bottom: 0px;
            opacity: 0.5;
        }

/*******************************************************FINE DDL*/

/*******************************************************INIZIO TXTAREA*/
textarea
{
    padding: 4px 0;
    height: auto;
    border: dotted 2px #2172a1;
    border-top: none;
    background: transparent;
    color: #313534;
    font-size: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    overflow: auto;
    margin: 20px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    padding: 5px;
}

    textarea ~ span
    {
        position: absolute;
        left: 10px;
        bottom: 0px;
        width: 100%;
        pointer-events: none;
        top: 5px;
        font-size: 12px;
        color: #2172a1;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    textarea:not(.Bottom) ~ span
    {
        -webkit-transition: 0.2s ease all;
        -o-transition: 0.2s ease all;
        transition: 0.2s ease all;
    }

    textarea:focus ~ span
    {
        top: 0px !important;
        font-size: 12px !important;
        color: #a8a8a8;
    }

        textarea:focus ~ span:after
        {
            visibility: visible;
            width: 90%;
            left: 0;
            background-color: transparent;
        }

    textarea ~ span:after
    {
        content: '';
        position: absolute;
        bottom: 0;
        left: 45%;
        height: 2px;
        width: 10px;
        visibility: hidden;
        background-color: #7a7a7a;
        -webkit-transition: 0.2s ease all;
        -o-transition: 0.2s ease all;
    }

    textarea.Top ~ span
    {
        top: 5px;
        margin-bottom: 0px;
        font-size: 12px;
        opacity: 0.5;
        color: #a8a8a8;
    }
/*******************************************************FINE TXTAREA*/

/*******************************************************INIZIO TAB*/
.nav
{
    margin: 0;
    padding: 0;
    list-style: outside none none;
}

    .nav::before
    {
        content: " ";
        display: table;
    }

    .nav::after
    {
        clear: both;
        content: " ";
        display: table;
    }

    .nav > li
    {
        position: relative;
        display: block;
    }

        .nav > li > a
        {
            position: relative;
            display: block;
            padding: 10px 30px;
        }

            .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
        {
            border-width: medium medium 3px;
            border-style: none none solid;
            border-color: -moz-use-text-color -moz-use-text-color transparent;
            -moz-border-top-colors: none;
            -moz-border-bottom-colors: none;
            -moz-border-left-colors: none;
            border-image: none;
            opacity: 0.60;
            font-family: "Raleway";
            letter-spacing: 1px;
            font-weight: 700;
            font-size: 12PX;
            text-transform: uppercase;
            border-radius: 2px 2px 0px 0px;
            -webkit-animation: slide-up 0.3s ease-out;
            color: #4f4f4f;
            text-align: center;
            line-height: 26px;
        }

            .nav-tabs > li > a i
            {
                font-size: 17px;
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover
        {
            border-width: medium medium 3px;
            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;
            color: #2172a1;
            background-color: transparent;
            cursor: default;
            opacity: 1;
            background-color: #f2f2f2;
        }

.tab-content > .tab-pane
{
    display: none;
}

.tab-content > .active
{
    display: block;
    -moz-animation: fadeInUp 0.4s;
    -ms-animation: fadeInUp 0.4s;
    -o-animation: fadeInUp 0.4s;
    animation: fadeInUp 0.4s;
}
/*******************************************************FINE TAB*/

/*******************************************************INIZIO MODAL*/
.fade
{
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in
    {
        opacity: 1;
    }

.modal
{
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog
    {
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
    }

    .modal.in .modal-dialog
    {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal
{
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog
{
    position: relative;
    width: 60%;
    min-height: 40%;
    margin: 20px auto;
}

.modal-content
{
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
    padding: 0;
}

.modal-backdrop
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade
    {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .modal-backdrop.in
    {
        opacity: .5;
        filter: alpha(opacity=50);
    }

.modal-header
{
    padding: 15px;
}

    .modal-header .close
    {
        margin-top: -2px;
    }

.modal-body
{
    position: relative;
    padding: 15px 15px 20px 15px;
}

.modal-footer
{
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-scrollbar-measure
{
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.close
{
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
}

    .close:hover, .close:focus
    {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: .5;
        filter: alpha(opacity=50);
    }

button.close
{
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open
{
    overflow: hidden;
}
/*******************************************************FINE MODAL*/






