﻿/* Simple scalable breadcrumb by Veerle Pieters - http://red-team-design.com/css3-breadcrumbs/
------------------------------------------------------------------*/
#crumbs {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/*#crumbsXXX {
    height: 2.3em;
    border: 1px solid #dedede;
}

#crumbs li {
    float: left;
    line-height: 2.3em;
    color: #777;
    padding-left: .75em;
}

    #crumbs li a {
        background:url(images/crumbs.gif) no-repeat right center;
        display: block;
        padding: 0 15px 0 0;
    }

        #crumbs li a:link,
        #crumbs li a:visited {
            color: #777;
            text-decoration: none;
        }

        #crumbs li a:hover,
        #crumbs li a:focus {
            color: #A97613;
        }*/

#crumbs {
    /*background: #eee;*/
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #e5e5e5 #ccc;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,.2);
    overflow: hidden;
    width: 100%;
}

    #crumbs li {
        float: left;
        margin: 1px 0;
        padding: 1px 0 0 1px;
        line-height: 1.4em;
    }

    #crumbs a {
        padding: .7em 1em .7em 2em;
        float: left;
        text-decoration: none;
        color: #444;
        position: relative;
        text-shadow: 0 1px 0 rgba(255,255,255,.5);
        background-color: #ddd;
        background-image: linear-gradient(to right, #f5f5f5, #ddd);
    }

    #crumbs li:first-child a {
        padding-left: 1em;
        border-radius: 5px 0 0 5px;
    }

    #crumbs a:hover {
        background: #fff;
    }

    #crumbs a::after,
    #crumbs a::before {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -1.5em;
        border-top: 1.5em solid transparent;
        border-bottom: 1.5em solid transparent;
        border-left: 1em solid;
        right: -1em;
    }

    #crumbs a::after {
        z-index: 2;
        border-left-color: #ddd;
    }

    #crumbs a::before {
        border-left-color: #ccc;
        right: -1.1em;
        z-index: 1;
    }

    #crumbs a:hover::after {
        border-left-color: #fff;
        padding-left: 1px;
    }

    #crumbs .current,
    #crumbs .current:hover {
        font-weight: bold;
        background: none;
    }

        #crumbs .current::after,
        #crumbs .current::before {
            content: normal;
        }


    #crumbs li:last-child {
        padding: 12px 0 0 20px;
    }
