
#breadcrumbs-urhere{
  margin: 0;
  padding: 0;
  list-style: none;
  color: #666633;
}

#breadcrumbs-urhere li{
  float: left;
}

#breadcrumbs-urhere a{
  padding: .2em 1em .2em 2em;
  float: left;
  text-decoration: none;
  color: #666633;
  position: relative;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  background-color: #F0F0E8;
  background-image: linear-gradient(to right, #F0F0E8, #E7E7D8);  
}
#breadcrumbs-urhere li:first-child a{
  padding-left: 1em;
  border-radius: 5px 0 0 5px;
}

#breadcrumbs-urhere a:hover{
  background: #F0F0E8;
  background-image: linear-gradient(to left, #F0F0E8, #E7E7D8);  
}

#breadcrumbs-urhere a::after,
#breadcrumbs-urhere a::before{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1em;   
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid;
  right: -1em;
}

#breadcrumbs-urhere a::after{
  z-index: 2;
  border-left-color: #E7E7D8;  /* arrow */
}

#breadcrumbs-urhere a::before{
  border-left-color:#DDB; /* arrow border */
  right: -1.1em;
  z-index: 1; 
}

#breadcrumbs-urhere a:hover::after{
  border-left-color: #F0F0E8;
}

#breadcrumbs-urhere .current {
  color:#000;
}
#breadcrumbs-urhere a.current::before{
  border-left: none; /* arrow border */
}

