/*##############################################################################
                     STYLE DES TABLEAUX DE LISTING
##############################################################################*/


/* Style général du tableau */
.table-listing{
  width: 100%;
  border-collapse: separate;
  border-bottom: 1px dashed #999999;
  margin-bottom: 12px;
}

/* Style du titre des colonne */
.table-listing th{
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  color: #ffffff;
  background-color: #1e6291;
  padding: 4px;
}

/* Style général des lignes */
.table-listing td{
  text-align: left;
  color: #333333;
  padding: 2px;
}

/* Style des lignes impaires du tableau */
.table-listing tr.impaire{
  background-color: #ffffff;
}

/* Style des lignes paires du tableau */
.table-listing tr.paire{
  background-color: #ececec;
}