#breadcrumbs{
  overflow: hidden;
  width: 100%;
}

#breadcrumbs li{
  float: left;
  margin: 0 .5em 0 1em;
}

#breadcrumbs a{
  background: #ddd;
  padding: .7em 1em;
  float: left;
  text-decoration: none;
  color: #444;
  position: relative;
}

#breadcrumbs .current {
  background: #003676;
  color:#fff;
}

#breadcrumbs a::before{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.25em;
  border-width: 1.25em 0 1.25em 1em;
  border-style: solid;
  border-color: #ddd #ddd #ddd transparent;
  left: -1em;
}

#breadcrumbs .current::before{
  border-color: #003676 #003676 #003676 transparent;
}

#breadcrumbs a::after{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.25em;
  border-top: 1.25em solid transparent;
  border-bottom: 1.25em solid transparent;
  border-left: 1em solid #ddd;
  right: -1em;
}

#breadcrumbs .current::after{
  border-left-color: #003676;
}

#breadcrumbs .container{
	display: table;
	width: 100%;
	height: 100px;
}

#breadcrumbs .target{
	display: table-cell;
	vertical-align: bottom;
	text-align: center;
}

#breadcrumbs .normal{
	height: 60px;
}

#breadcrumbs .big{
	height: 90px;
}