/************************
*   Headband Steps              *
************************/
.breadborder{
  border:1px solid #ddd;
}
table.etapes {
  width:100%;
  overflow:hidden;
  padding:0;
}
.etapes td {
  color: #333;
  text-decoration: none;
  padding:13px 0 12px 55px;
  background:#fff;
  position: relative;
  text-align:center;
  cursor:default;
  font-family: roboto, Arial, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
}
.etapes td.current{
  color: #fff;
  background:#00467f  ;
}
.etapes td:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 30px solid #fff;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 100%;
  z-index: 2;
}
.etapes td.current:after {
  border-left: 30px solid #00467f  ;
}
.etapes td:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 31px solid #ddd;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  margin-left: 1px;
  left: 100%;
  z-index: 1;
}
.etapes td:first-child{
  padding-left: 10px;
}
.etapes td:last-child{
  padding-right: 20px;
}

@-moz-document url-prefix() {
  .etapes td::after, .etapes td.current::after {
    border-left-style: dashed;
  }
}
