/*!

menu verticale utilizzato nelle home
*/
        body {
          font-family: "Lato", sans-serif;
        }
        .sidenav {
          height: 100%;
          width: 180px; /* larghezza menu */
          position: fixed;
          z-index: 1;
          top: 10;
          left: 0;
          background-color: #D2DDE9;
          overflow-x: hidden;
          padding-top: 20px;
        }
        .sidenav a {
          padding: 6px 8px 6px 16px;
          text-decoration: none;
          font-size: 13px; /* dimensione font menu */
          color: #818181;
          display: block;
        }
        .sidenav a:hover {
          color: #07478C;
        }
        .main {
          margin-left: 180px; /* Same as the width of the sidenav */
          margin-top: 20px; /* Same as the width of the sidenav */
          font-size: 13px; /* Increased text to enable scrolling */
          padding: 0px 10px;
        }
        @media screen and (max-height: 450px) {
          .sidenav {padding-top: 15px;}
          .sidenav a {font-size: 18px;}
        }      
