.breadcrumbs
{
    height:30px;
}

.breadcrumbs div
{
    background-color:rgba(255, 255, 255, 0.4);
    color:#777;
    height:auto;
    font-size:10pt;
    display:inline;
    padding:5px 20px;
    border-radius:8px;
    position:relative; top:-20px;
    float:right;
    box-sizing:border-box;
}

@media screen and (max-width: 700px)
{
    .breadcrumbs div
    {
        width: 100%;
        border-radius: 0%;
        top:0px;
        padding-bottom:10px;
    }
}

.breadcrumbs a
{
    text-decoration:none;
    color:#256895;
}

.breadcrumbs a:after
{
    content:"»";
    margin-left:15px;
    margin-right:15px;
}

.breadcrumbs a:last-child:after
{
    content:none;
}