.breadcrumbs {
  display: inline-block;
  border: 1px solid #ccc;
  font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
  font-size: 13px;

  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
      -ms-border-radius: 4px;
       -o-border-radius: 4px;
          border-radius: 4px;

  background: #f5f5f5;
  background: -webkit-linear-gradient(top, #fff 0%, #efefef 100%);
  background:    -moz-linear-gradient(top, #fff 0%, #efefef 100%);
  background:     -ms-linear-gradient(top, #fff 0%, #efefef 100%);
  background:      -o-linear-gradient(top, #fff 0%, #efefef 100%);
  background:         linear-gradient(top, #fff 0%, #efefef 100%);
}

.breadcrumbs:after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

* html .breadcrumbs {
  zoom: 1;
}

*:first-child + html .breadcrumbs {
  zoom: 1;
}

.breadcrumbs ul {
  list-style-type: none;
}

.breadcrumbs ul, .breadcrumbs ul li {
  padding: 0;
  margin: 0;
  display: inline;
}

.breadcrumbs ul li:first-child a, .breadcrumbs ul li:first-child span {
  padding-left: 1em;

  -webkit-border-top-left-radius: 4px;
      -moz-border-radius-topleft: 4px;
      -ms-border-top-left-radius: 4px;
       -o-border-top-left-radius: 4px;
          border-top-left-radius: 4px;

  -webkit-border-bottom-left-radius: 4px;
      -moz-border-radius-bottomleft: 4px;
      -ms-border-bottom-left-radius: 4px;
       -o-border-bottom-left-radius: 4px;
          border-bottom-left-radius: 4px;
}

.breadcrumbs ul li:last-child a, .breadcrumbs ul li:last-child span {
  -webkit-border-top-right-radius: 4px;
      -moz-border-radius-topright: 4px;
      -ms-border-top-right-radius: 4px;
       -o-border-top-right-radius: 4px;
          border-top-right-radius: 4px;

  -webkit-border-bottom-right-radius: 4px;
      -moz-border-radius-bottomright: 4px;
      -ms-border-bottom-right-radius: 4px;
       -o-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
}

.breadcrumbs a, .breadcrumbs span {
  color: #444;
  display: block;
  float: left;
  position: relative;
  line-height: 2em;
  padding: 0 1em 0 1.5em;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);

  background: #efefef;
  background: -webkit-linear-gradient(top, #f0f0f0 0%, #efefef 100%);
  background:    -moz-linear-gradient(top, #f0f0f0 0%, #efefef 100%);
  background:     -ms-linear-gradient(top, #f0f0f0 0%, #efefef 100%);
  background:      -o-linear-gradient(top, #f0f0f0 0%, #efefef 100%);
  background:         linear-gradient(top, #f0f0f0 0%, #efefef 100%);
}

.breadcrumbs a:after, .breadcrumbs span:after {
  content: '';
  display: block;
  z-index: 1;
  height: 2em;
  width: 2em;
  border-right: 2px solid #ccc;
  border-top: 2px solid #ccc;
  position: absolute;
  right: 0;
  top: 0;

  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

  background: #efefef;
  background: -webkit-linear-gradient(left top, #f0f0f0 0%, #efefef 100%);
  background:    -moz-linear-gradient(left top, #f0f0f0 0%, #efefef 100%);
  background:     -ms-linear-gradient(left top, #f0f0f0 0%, #efefef 100%);
  background:      -o-linear-gradient(left top, #f0f0f0 0%, #efefef 100%);
  background:         linear-gradient(left top, #f0f0f0 0%, #efefef 100%);

  -webkit-transform: translateX(1em) rotate(45deg) scale(0.577) skew(15deg, 15deg);
     -moz-transform: translateX(1em) rotate(45deg) scale(0.577) skewX(15deg) skewY(15deg);
      -ms-transform: translateX(1em) rotate(45deg) scale(0.577) skew(15deg, 15deg);
       -o-transform: translateX(1em) rotate(45deg) scale(0.577) skew(15deg, 15deg);
          transform: translateX(1em) rotate(45deg) scale(0.577) skew(15deg, 15deg);
}

.breadcrumbs a:hover, .breadcrumbs span:hover {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);

  background: #7f7f7f;
  background: -webkit-linear-gradient(top, #ccc 0%, #aaa 100%);
  background:    -moz-linear-gradient(top, #ccc 0%, #aaa 100%);
  background:     -ms-linear-gradient(top, #ccc 0%, #aaa 100%);
  background:      -o-linear-gradient(top, #ccc 0%, #aaa 100%);
  background:         linear-gradient(top, #ccc 0%, #aaa 100%);
}

.breadcrumbs a:hover:after, .breadcrumbs span:hover:after {
  border-color: #bbb;

  background: #7f7f7f;
  background: -webkit-linear-gradient(left top, #ccc 0%, #aaa 100%);
  background:    -moz-linear-gradient(left top, #ccc 0%, #aaa 100%);
  background:     -ms-linear-gradient(left top, #ccc 0%, #aaa 100%);
  background:      -o-linear-gradient(left top, #ccc 0%, #aaa 100%);
  background:         linear-gradient(left top, #ccc 0%, #aaa 100%);
}

.breadcrumbs a:active, .breadcrumbs span:active {
  background: #616161;
  background: -webkit-linear-gradient(top, #767676 0%, #4d4d4d 100%);
  background:    -moz-linear-gradient(top, #767676 0%, #4d4d4d 100%);
  background:     -ms-linear-gradient(top, #767676 0%, #4d4d4d 100%);
  background:      -o-linear-gradient(top, #767676 0%, #4d4d4d 100%);
  background:         linear-gradient(top, #767676 0%, #4d4d4d 100%);

  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
      -ms-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
       -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.breadcrumbs a:active:after, .breadcrumbs span:active:after {
  background: #616161;
  background: -webkit-linear-gradient(left top, #767676 0%, #4d4d4d 100%);
  background:    -moz-linear-gradient(left top, #767676 0%, #4d4d4d 100%);
  background:     -ms-linear-gradient(left top, #767676 0%, #4d4d4d 100%);
  background:      -o-linear-gradient(left top, #767676 0%, #4d4d4d 100%);
  background:         linear-gradient(left top, #767676 0%, #4d4d4d 100%);

  -webkit-box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.3);
      -ms-box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.3);
       -o-box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumbs .current, .breadcrumbs .current:hover, .breadcrumbs .current:active {
  background: inherit;
  color: #666;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);

  -webkit-border-top-right-radius: 4px;
      -moz-border-radius-topright: 4px;
      -ms-border-top-right-radius: 4px;
       -o-border-top-right-radius: 4px;
          border-top-right-radius: 4px;

  -webkit-border-bottom-right-radius: 4px;
      -moz-border-radius-bottomright: 4px;
      -ms-border-bottom-right-radius: 4px;
       -o-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;

  -webkit-box-shadow: none;
     -moz-box-shadow: none;
      -ms-box-shadow: none;
       -o-box-shadow: none;
          box-shadow: none;
}

.breadcrumbs .current:after, .breadcrumbs .current:hover:after, .breadcrumbs .current:active:after {
  content: normal;
}
