

/* Liste déroulante dynamique
--------------------------------------------------*/

.ajax-list var {
  display : none;
}

* html .ajax-list var {
  float : none;
}


.list-frame {
  position : absolute;
  top: 0;
  left: 0;
  width : 0;
  height : 0;
  display : none;
  background : transparent;
  border: none;
  z-index : 10;
}


.list-panel {
  position : absolute;
  top: 0;
  left: 0;
  float : left;
  overflow : hidden;
  width : auto;
  height : 10px;
  margin : 0;
  padding : 0;
  display : none;
  background : #fff;
  border : 1px solid #A5A5A5;
  border-color : #A5A5A5 #414141 #414141 #A5A5A5;
  border-width : 1px 2px 2px 1px;
  z-index : 100;
}


.list-panel ul {
  display : block;
  overflow : hidden;
  width : auto;
  list-style-type : none;
  margin : 1px;
  padding : 0;
}


.list-panel li {
  display: block;
  overflow: hidden;
  width : auto;
  clear: both;
  color: #696969;
  font-style: italic;
}


.list-panel a:hover,
.list-panel a:focus,
.list-panel a {
  display: block;
  overflow: hidden;
  width : auto;
  text-align : left;
  line-height : 1.6em;
  font-size : 0.9em;
  text-decoration : none;
  color : #000;
  border : 0;
  margin : 0;
  padding : 0;
  padding-left : 5px;
  white-space: nowrap;
  font-style : normal;
}

.list-panel em {
  color : #a5a5a5;
}


.list-panel a:focus,
.list-panel a:hover {
  background : #29789A;
  color : #fff;
}

.list-panel em {
  color : #777;
}

.list-panel a:focus em,
.list-panel a:hover em {
  color : #bbb;
}




