#crumbs {
    margin: 20px 0px;
}

#crumbs ul {
    list-style: none;
    display: inline-table;
    padding: 0px;
}
#crumbs ul li {
    display: inline;
}

#crumbs ul li a {
    display: block;
    float: left;
    height: 46px;
    background: #f7d900;
    text-align: center;
    padding: 10px 35px 0 45px;
    position: relative;
    margin: 0 10px 0 0; 

    font-size: 20px;
    text-decoration: none;
    color: #000;
}
#crumbs ul li a:after {
    content: "";  
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 14px solid #f7d900;
    position: absolute; right: -14px; top: 0;
    z-index: 1;
}

#crumbs ul li a:before {
    content: "";  
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 14px solid #fff;
    position: absolute; left: 0; top: 0;
}

#crumbs ul li a.disabled {
    background: #dfdfdf;
    color: #fff;
    cursor: auto;
}

#crumbs ul li a.disabled:after {
    border-left: 14px solid #dfdfdf;
    cursor: auto;
}

#crumbs ul li a.done {
    background: #000;
    color: #fff;
}

#crumbs ul li a.done:after {
    border-left: 14px solid #000;
}


#crumbs ul li:first-child a {
/*
    border-top-left-radius: 10px; 
    border-bottom-left-radius: 10px;
*/
}
#crumbs ul li:first-child a:before {
    display: none; 
}

#crumbs ul li:last-child a {
    padding-right: 80px;
/*  
    border-top-right-radius: 10px; 
    border-bottom-right-radius: 10px;
*/
}
#crumbs ul li:last-child a:after {
    display: none; 
}

#crumbs ul li a:hover {
    background: #000;
    color: #fff;
}
#crumbs ul li a:hover:after {
    border-left-color: #000;
}

#crumbs ul li a.disabled:hover {
    background: #dfdfdf;
    color: #fff;
}
#crumbs ul li a.disabled:hover:after {
    border-left-color: #dfdfdf;
}




#crumbs_buttons {
    margin-top:11px;
}

#crumbs_buttons a.prev {
    display: block;
    float: left;
    height: 36px;
    background: #000;
    text-align: center;
    padding: 8px 20px 0 20px;
    position: relative;
    margin: 0px; 

    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}
#crumbs_buttons a.prev:before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 9px solid #000; 
}

#crumbs_buttons a.next {
    display: block;
    float: left;
    height: 36px;
    background: #f7d900;
    text-align: center;
    padding: 8px 20px 0 20px;
    position: relative;
    margin-left: 10px; 

    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}
#crumbs_buttons a.next:after {
    content: "";  
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 9px solid #f7d900;
    position: absolute; right: -9px; top: 0;
    z-index: 1;
}

#crumbs_buttons a.disabled {
    background: #dfdfdf;
    color: #fff;
    cursor: auto;
}

#crumbs_buttons a.disabled:after {
    border-left: 9px solid #dfdfdf;
    cursor: auto;
}