body {
    font-family: 'Roboto Slab', serif;
}

.breadcrumb {
    list-style: none;
    overflow: hidden;
    font: 18px Helvetica, Arial, Sans-Serif;
    margin: 10px;
    padding: 0;
}
.breadcrumb li {
    float: left;
}
.breadcrumb li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px 10px 65px;
    background: brown;
    background: #333;
    position: relative;
    display: block;
    float: left;
}
.breadcrumb li a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #333;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}
.breadcrumb li a:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}
.breadcrumb li:first-child a {
    padding-left: 10px;
}
.breadcrumb li:nth-child(2) a       { background:        #555; }
.breadcrumb li:nth-child(2) a:after { border-left-color: #555; }
.breadcrumb li:nth-child(3) a       { background:        #777; }
.breadcrumb li:nth-child(3) a:after { border-left-color: #777; }
.breadcrumb li:nth-child(4) a       { background:        #999; }
.breadcrumb li:nth-child(4) a:after { border-left-color: #999; }
.breadcrumb li:last-child a {
    background: #999 !important;
    color: black;
    pointer-events: none;
    cursor: default;
}
.breadcrumb li:last-child a:after { border-left-color: #999; }
.breadcrumb li a:hover { background: #999; }
.breadcrumb li a:hover:after { border-left-color: #999 !important; }
