/* Style menu CSS       */
/* Createur : J.Geiser  */


dl, dt, dd, ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu dt {
  display : none:
  cursor: pointer;
  text-align: center;
  color             : white;
  text-decoration   : none;
  font-size         : 12px;
  font-family       : Arial;
}

.menu ul {
  border: 1px solid gray;
  width : 140px;
}

.menu li {
  text-align: center;
  background: #fff;
}

.menu li a, .menu dt a {
  color: #000;
  text-decoration: none;
  display : block;
  border: 0 none;
  height: 100%;
  background : #DCE8FB;
}

.menu li a:hover, .menu dt a:hover {
  z-index : 9;
  color : black;
  background: #eee;
}

