@import url("general.css");

/* Content */

.content,
.innerpagebox {
    width             : 100%;
    display           : flex;
    flex-direction    : column;
    justify-content   : start;
    align-items       : center;
    overflow-y        : auto;
    /* min-height     : 300px; */
    gap               : 30px;
}

.content h2 {
    line-height     : 195%;
    text-align      : center;
    width           : 100%;
    font-size       : var(--fcs-FS-h2);
    background-color: var(--fcs-blue);
    color           : whitesmoke;
}

.innerpagebox {
    padding-top: calc(var(--fcs-header-height));
    width      : 99%;
}

.part-title {
    width           : 100%;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    background-color: var(--fcs-blue);
    color           : whitesmoke;
}

.part-title a {
    width           : 30px;
    text-align      : center;
    text-decoration : none;
    margin-right    : 20px;
    background-color: var(--fcs-menue-item);
    border-radius   : 3px;
}

.linkbox {
    margin-top     : -27px;
    width          : 100%;
    display        : flex;
    justify-content: space-evenly;
    align-items    : center;
}

.linkbox a {
    text-align      : center;
    color           : var(--fcs-text-blue);
    text-decoration : none;
    background-color: var(--fcs-menue-bg);
    padding         : 5px;
    border-right    : 1px solid var(--fcs-blue);
    font-size       : .8em;
    width           : 20%
}

.linkbox a:last-of-type {
    width       : 23%;
    border-right: 0;
}

.linkbox a:hover,
.linkbox a:active,
.linkbox a.active {
    background-color: var(--fcs-blue);
    color           : whitesmoke;
}

.content p {
    text-align : justify;
    width      : 80%;
    overflow   : hidden;
    hyphens    : auto;
    line-height: 1.5em;

}

.content img {
    width : 200px;
    height: auto;
}

.formulatable {
    table-layout   : fixed;
    border-collapse: collapse;
    width          : 90%;
    text-align     : left;
}

.formulatable col:first-of-type {
    width: 45%;
}

.formulatable col:last-of-type {
    width: 55%;
}

.formulatable td {
    padding : 5px 8px;
    overflow: hidden;
    border  : 2px solid var(--fcs-menue-item);
    hyphens : auto;
}

.formulatable tbody tr:nth-of-type(odd) {
    background-color: var(--fcs-menue-item);
}

.formulatable tr:nth-of-type(7) td:first-child,
.formulatable tr:nth-of-type(8) td:first-child {
    font-size : smaller;
    text-align: right;
}

span.bold {
    font-weight: bold;
}

img.lg_image {
    width           : 100%;
    height          : auto;
    background-color: whitesmoke;
}