/* main menu' div */
        
/* queste sono le scritte del menu' -> storia, manifesto, hackit06_ */
.item_headline{
    display: block;
    width: 120px;
    padding: 3px;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    text-transform:lowercase;
    text-decoration:none;
    color: #222;
    background: #f1f1f1;
    border: 1px solid #666;
    padding: 2px;
    padding-left: 23px;
    margin-bottom: 2px;
    margin-top: 2px;
}

.item_headline:hover {
  cursor: pointer;
  background-color: #ccc;
}

.subitems { 
    width: 95%;
    left: 0px;
    margin-left: 5%;
    padding-bottom: 5px;
    padding-top: 3px;
}

.subitems a { 
  text-transform: lowercase;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  padding: 2px;
  border: 1px solid white;
  color: black;
  width: 120px;
  display: block;
}

.subitems  a:hover,
#selected{ 
  color: #232323;
  border: 1px solid #666;
  text-align: right;
  background-color: #ccc;
}

.visible { display: block; }
.invisible { display: none; }
.hide { display: none; }

