/* Breadcrumbs Styles */ 
.mehruseo-breadcrumbs { 
    overflow: hidden; 
    font-family: sans-serif; 
    margin-bottom: 1.5em; 
} 
.mehruseo-breadcrumbs ol { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-wrap: wrap; 
} 
.mehruseo-breadcrumbs li { 
    display: block; 
    position: relative; 
    margin-right: 12px; 
    background-color: #0073aa; 
    line-height: 24px; 
    padding: 0 8px 0 16px; 
    font-size: 0.85em;
} 
.mehruseo-breadcrumbs li a { 
    display: block; 
    color: #fff; 
    text-decoration: none; 
    padding: 0; 
    background-color: transparent; 
} 
.mehruseo-breadcrumbs li a:hover { 
    background-color: #0085ba; 
} 
.mehruseo-breadcrumbs li::before { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: -12px; 
    width: 0; 
    height: 0; 
    border-style: solid; 
    border-width: 12px 0 12px 12px; 
    border-color: transparent transparent transparent white; 
} 
.mehruseo-breadcrumbs li::after { 
    content: ""; 
    position: absolute; 
    top: 0; 
    right: -12px; 
    width: 0; 
    height: 0; 
    border-style: solid; 
    border-width: 12px 0 12px 12px; 
    border-color: transparent transparent transparent #0073aa; 
} 
.mehruseo-breadcrumbs li a:hover::after { 
    border-left-color: #0085ba; 
} 
.mehruseo-breadcrumbs li:first-child { 
    padding-left: 15px; 
    border-radius: 4px 0 0 4px; 
} 
.mehruseo-breadcrumbs li:first-child::before { 
    display: none; 
} 
.mehruseo-breadcrumbs li:last-child { 
    background-color: #f5f5f5; 
    color: red; 
    font-weight: bold; 
    border-radius: 0 4px 4px 0; 
} 
.mehruseo-breadcrumbs li:last-child::after { 
    display: none; 
} 

/* Table of Contents Styles */ 
.mehruseo-toc { 
    background-color: #f9f9f9; 
    border: 1px solid #d9534f; 
    padding: 15px; 
    margin-bottom: 2em; 
    width: auto; 
    display: block; 
    clear: both;
    min-width: 250px; 
} 
.mehruseo-toc h3 { 
    background-color: #f2dede; 
    color: #a94442; 
    padding: 10px 15px; 
    margin: -15px -15px 10px -15px; 
    font-size: 1.1em; 
    font-weight: bold; 
} 
.mehruseo-toc ul { 
    margin: 0; 
    padding-left: 20px; 
} 
.mehruseo-toc ul ul { 
    margin-left: 15px; 
} 
.mehruseo-toc li { 
    margin-bottom: 0.5em; 
} 
.mehruseo-toc a { 
    color: #1e8a1e; 
    text-decoration: none; 
} 
.mehruseo-toc a:hover { 
    text-decoration: underline; 
}