
 
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
 
/* Clearfix Solo IE8 e superiori */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
 
/* Basic */
body {
    background: #fff;
}
nav {
    background: #294672;
    font-size: 0; /* Hackfix per rimuovere spazio tra elementi inline-block */
    font-weight: normal;
    border-bottom: 1px solid #294672;
}
nav ul {
    margin: 0 auto;
    width: 100%;
    text-align:center;
}
nav li {
    display:inline-block;
}
nav a {
    font-size: 15px;
    padding:10px 35px;
    display:block;
    float:left;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    text-transform:normal;
}
nav li a {
    border-right: 1px solid #ffffff;
}
nav li:last-child a {
    border-right: 0;
}
nav a:hover, nav a:active {
    background-color: #ffffff;
}
nav a#pull {
    display: none;
        color:#294672;
}
 
/* Per schermi inferiori a 800px */
@media screen and (max-width: 800px) {
    
        nav {
        border-bottom: 0;
    }
    nav ul {
        display: none;
        height: auto;
    }
    nav li {
        width: 50%;
        float: left;
        position: relative;
    }
    nav a#pull {
        display: block;
        background-color: #e3e3e3;
        width: 100%;
        position: relative;
    }
    nav a#pull:after {
        content:"";
        width: 30px;
        height: 30px;
        display: inline-block;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    
    nav li a {
        text-align: left;
        border-bottom: 1px solid #294672;
        border-right: 1px solid #ffffff;
    }
    nav a {
        text-align: left;
        width: 100%;
        text-indent: 0px;
    }
}
 
/* Per schermi inferiori a 480px */
@media only screen and (max-width : 480px) {
    nav {
        border-bottom: 0;
    }
    nav ul {
        display: none;
        height: auto;
    }
    nav li {
        width: 100%;
        float: left;
        position: relative;
    }
    nav a#pull {
        display: block;
        background-color: #e3e3e3;
        width: 100%;
        position: relative;
    }
    nav a#pull:after {
        content:"";
        width: 30px;
        height: 30px;
        display: inline-block;
        position: absolute;
        right: 5px;
        top: 10px;
    }
}
 

 
