* {
    --content-width: 1225px;
    --content-padding: 70px;
    --content-h-margin: 95px;
}

html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
}

body {
    font-family: "Source Sans Pro", "Helvetica Neue","Helvetica","Arial",sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

#root_container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    overflow: auto;

    #root {
        position: absolute;
        width: var(--content-width);
        margin: auto;
        left: 0;
        right: 0;
        padding: 0 var(--content-padding);
        min-height: 100%;

        #developer_url {
            #developer_icon {
                height: 34px;
                margin-left: 8px;
                margin-top: 20px;
            }
        }

        #banner_title {
            background-image: linear-gradient(rgb(136, 136, 136), rgb(113, 113, 113) 49.9%, rgb(94, 94, 94) 50%, rgb(120, 120, 120));
            border-radius: 4px;
            box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
            font-size: 22px;
            color: #fff;
            padding: 6px 16px;
        }

        #main {
            display: flex;
            margin-top: 20px;
            #sidebar {
                min-width: 229px;
                .table_item_container {
                    display: flex;
                    align-items: center;
                }
                .table_fold {
                    cursor: pointer;
                    width: 16px;
                    height: 16px;
                }
                .table_fold.unfold {
                    background-image: url('/developer/documentation/asserts/16px.png');
                    background-repeat: no-repeat;
                    background-position: -16px -0px;
                }
                .table_fold.fold {
                    background-image: url('/developer/documentation/asserts/16px.png');
                    background-repeat: no-repeat;
                }
                .table_item {
                    cursor: pointer;
                    text-decoration: none;
                    color: #000;
                }
                .table_item:hover {
                    text-decoration: underline;
                }
                .table_block_list {
                    margin-left: 10px;
                }
                .table_block_list.fold {
                    display: none;
                }
            }

            #content {
                flex-grow: 1;
                #content_path {
                    display: flex;
                    margin-bottom: 8px;

                    .breadcrumb {
                        color: #000;
                    }

                    .breadcrumb.sep {
                        color: rgba(0, 0, 0, 0.45);
                        margin: 0 8px;
                    }

                    .breadcrumb:last-child {
                        font-weight: bold;
                    }

                    a.breadcrumb {
                        text-decoration: none;
                    }

                    a.breadcrumb:hover {
                        text-decoration: underline;
                    }
                }

                #content_page {
                    width: 980px;
                }
            }
        }
    }
}

#footer {
    margin: 18px auto;
    text-align: center;
    padding-bottom: 36px;

    a {
        text-decoration: none;
    }

    #copyrights {
        color: #76797c;
        font-size: 12px;
        p {
            display: inline;
            padding-right: 0.75em;
        }
    }

    .piped {
        zoom: 1;
        display: inline;
        list-style: none outside;
        margin: 0;
        padding: 0;

        li {
            display: inline;
            float: none;

            a {
                color: #555;
                text-decoration: none;

                border-left: 1px solid #ccc;
                padding: 0 0 0 .75em;
                margin-left: .75em;
            }
        }

        li:first-child a {
            border-left: 0;
            margin-left: 0;
        }

        a:hover {
            color: #333;
            text-decoration: underline;
        }
    }
}