/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 25-Apr-2018, 20:19:37
    Author     : Win7VM
*/
/* unindent entire list */
#menu ul {
    margin-left: -2.5em;
}
/* set li as buttons */
#menu li {
    list-style-type: none;
    border: 1px black solid;
    float: left;
    width: 10em;
    background-color: #cccccc;
    text-align: center;
    font-size: 16px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}
/* display anchors as buttons */
#menu a {
    color: black;
    text-decoration: none;
    display: block;
}
/* flash white on anchor hover */
#menu a:hover {
    background-color: white;
}
/* collapse menus */
#menu li ul {
    display: none;
}
/* show submenus on hover */
#menu li:hover > ul {
    display: block;
    margin-left: -2em;
}
.hide
{
    display:none
}

