.breadcrumbs > ul > li:last-child > strong {
    color: #fff;
}
.breadcrumbs {
    list-style: none;
    display: inline-block;
    margin:10px 0px;
    font-size:10px;
}
.breadcrumbs .icon {
    font-size: 14px;
}
.breadcrumbs li {
    float: left;
}
.breadcrumbs li a {
    display: block;
    background: #dadada;
    text-decoration: none;
    position: relative;
    height: 24px;
    line-height: 24px;
    padding: 0 10px 0 5px;
    text-align: center;
    margin-right: 18px;
    color: #333;
}
.breadcrumbs li:first-child a {
    padding-left: 15px;
    -moz-border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px 0 0 4px;
}
.breadcrumbs li:first-child a:before {
    border: none;
}
.breadcrumbs li:last-child a {
    padding-right: 15px;
    -moz-border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0;
    border-radius: 0 4px 4px 0;
}
.breadcrumbs li:last-child a:after {
    border: none;
}
.breadcrumbs li a:before,
.breadcrumbs li a:after {
    content: "";
    position: absolute;
    top: 0;
    border: 0 solid #dadada;
    border-width: 12px 10px;
    width: 0;
    height: 0;
}
.breadcrumbs li a:before {
    left: -15px;
    border-left-color: transparent;
}
.breadcrumbs li a:after {
    left: 100%;
    border-color: transparent;
    border-left-color: #dadada;
}

/*.breadcrumbs li:last-child a:hover,*/
.breadcrumbs li:last-child a {
    background-color: #dadada;
    color:#6a737a;
}
.breadcrumbs li:last-child a:before {
    content: "";
    position: absolute;
    top: 0;
    border: 0 solid #dadada;
    border-width: 12px 10px;
    left: -15px;
    border-left-color: transparent;
    width: 0;
    height: 0;
}
.breadcrumbs li a:hover {
    background-color: #45a3ff;
    color:#fff;
}
.breadcrumbs li a:hover:before {
    border-color: #45a3ff;
    border-left-color: transparent;
}
.breadcrumbs li a:hover:after {
    border-left-color: #45a3ff;
}
.breadcrumbs li a:active {
    background-color: #45a3ff;
}
.breadcrumbs li a:active:before {
    border-color: #45a3ff;
    border-left-color: transparent;
}
.breadcrumbs li a:active:after {
    border-left-color: #45a3ff;
}
