/*!
 * seo-tabs.css - v@version@
 * Lightweight SEO friendly tab control written in pure JavaScript
 * https://github.com/john-doherty/seo-tabs
 * @author John Doherty <www.johndoherty.info>
 * @license MIT
 */
[data-seo-tabs="true"] {
    margin: 10px 0 !important;
}

[data-seo-tabs="true"] [data-tabtop="true"] {
    margin: 0;
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-bottom: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

[data-seo-tabs="true"] [data-tabtop="true"][data-active="true"] {
    background: #fff;
    color: #ff9900;
    font-weight: 400;
}

[data-seo-tabs="true"] [data-tabtop="true"]:not([data-active="true"]):hover {
    background: #cccccc33;
}

[data-seo-tabs="true"] [data-tabbox="true"] {
    display: none;
    white-space: normal;
    overflow: auto;
    clear: both;
    padding: 20px;
    margin: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

[data-seo-tabs="true"] [data-tabbox="true"][data-active="true"] {
    display: block;
}