@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/******************************************************************************/
/* Body                                                                       */
/******************************************************************************/

body {
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    color:#000000;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    body {
        font-size:14px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    body {
        font-size:13px;
    }
}

@media only screen and (max-width:479px) {
    body {
        font-size:12px;
    }
}

/******************************************************************************/
/* Header                                                                     */
/******************************************************************************/

header {
    position:fixed;
    width:100%;
    height:100px;
    padding:0px 5px 0px 5px;
    box-sizing:border-box;
    background-color:#FFFFFF;
    z-index:20000;
}

header > div {
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:space-between;
    align-items:stretch;
    max-width:1200px;
    margin:0px auto 0px auto;
}

header > div > h1 {
    width:149px;
    height:100px;
    font-size:0em;
    text-indent:-8000px;
    background-image:url(/source/layout/komtick_logo.png);
    background-repeat:no-repeat;
    background-position:left top;
    background-size:contain;
}

header > div > h1 > a {
    display:block;
    width:100%;
    height:100%;
}

header > div > nav {
}

header > div > nav > div {
    display:none;
    width:32px;
    height:32px;
    padding-top:15px;
    font-size:32px;
    color:#000000;
    cursor:pointer;
}

header > div > nav > div > p {
    font-size:0em;
    text-indent:-8000px;
}

@media only screen and (min-width:480px) and (max-width:767px) {
    header > div > nav > div {
        display:block;
        margin-top:-1px;
    }
}

@media only screen and (max-width:479px) {
    header > div > nav > div {
        display:block;
        margin-top:-6px;
    }
}

@media only screen and (min-width:768px) {
    header > div > nav > ul {
        display:flex;
        flex-direction:row;
        flex-wrap:nowrap;
        justify-content:flex-end;
        align-items:stretch;
    }

    header > div > nav > ul > li {
        position:relative;
        line-height:50px;
    }

    header > div > nav > ul > li > a {
        padding:15px;
        font-size:1.2em;
        color:#000000;
        text-decoration:none;
    }

    header > div > nav > ul > li >  a > sup {
        font-size:0.7em;
        color:#A52526;
        font-weight:bold;
        vertical-align:top;
    }

    header > div > nav > ul > li > a:hover, header > div > nav > ul > li > a.Active {
        color:#A52526;
    }

    header > div > nav > ul > li > ul {
        position:absolute;
        display:none;
        width:100%;
        min-width:200px;
        padding-top:2px;
        background-color:#777777;
    }

    header > div > nav > ul > li:last-of-type > ul {
        right:0;
        min-width:100%;
    }

    header > div > nav > ul > li:hover > ul {
        display:block;
    }

    header > div > nav > ul > li > ul > li {
        line-height:normal;
        background-color:#FFFFFF;
    }

    header > div > nav > ul > li > ul > li:hover {
        background-color:#F3F3F3;
    }

    header > div > nav > ul > li > ul > li > a {
        display:block;
        padding:10px 20px 10px 20px;
        font-size:1em;
        color:#000000;
        text-decoration:none;
        border-bottom:1px solid #E6E6E6;
    }

    header > div > nav > ul > li > ul > li > a > sup {
        font-size:0.7em;
        color:#A52526;
        font-weight:bold;
        vertical-align:top;
    }
}

@media only screen and (max-width:767px) {
    header > div > nav > ul {
        display:none;
        position:fixed;
        width:100%;
        top:65px;
        left:0px;
        padding-bottom:1px;
        background-color:#777777;
        z-index:200;
    }

    header > div > nav > ul > li {
        margin:1px 1px 0px 1px;
    }

    header > div > nav > ul > li > a {
        display:block;
        padding:15px;
        font-size:2em;
        color:#000000;
        text-decoration:none;
        background-color:#FFFFFF;
        border-bottom:1px solid #E6E6E6;
    }

    header > div > nav > ul > li >  a > sup {
        font-size:0.7em;
        color:#A52526;
        font-weight:bold;
        vertical-align:top;
    }

    header > div > nav > ul > li > a:hover {
        background-color:#F3F3F3;
    }

    header > div > nav > ul > li > ul > li > a {
        display:block;
        padding:15px 15px 15px 30px;
        font-size:2em;
        color:#000000;
        text-decoration:none;
        background-color:#FFFFFF;
        border-bottom:1px solid #E6E6E6;
    }

    header > div > nav > ul > li > ul > li > a > sup {
        font-size:0.7em;
        color:#A52526;
        font-weight:bold;
        vertical-align:top;
    }

    header > div > nav > ul > li > ul > li > a:hover {
        background-color:#F3F3F3;
    }
}

/******************************************************************************/
/* Main                                                                       */
/******************************************************************************/

section {
    padding:100px 0px 80px 0px;
}

section > div#Header {
    margin-bottom:3em;
    background-color:#454545;
}

section > div#Header > div {
    max-width:1200px;
    margin:0px auto 0px auto;
    padding:15px 5px 15px 5px;
}

section > div#Header > div > h2 {
    font-size:2em;
    line-height:1em;
    color:#FFFFFF;
}

section > div#Header > div > p {
    line-height:1.5em;
    color:#999999;
}

section > div#Header > div > p > span {
    padding:0px 10px 0px 10px;
}

section > div#Header > div > p > a {
    color:inherit;
    text-decoration:none;
}

section > div#Header > div > p > a:hover, section > div#Header > div > p > a.Active {
    color:#FFFFFF;
}

@media only screen and (max-width:767px) {
    section > div#Header > div {
        flex-direction:column;
    }

    section > div#Header > div > h2 {
        padding-top:15px;
        line-height:2em;
    }

    section > div#Header > div > p {
        padding-bottom:25px;
        line-height:1em;
    }
}

section > div#Content {
    position:relative;
    max-width:1180px;
    margin:0px auto 0px auto;
    padding:20px;
    background-color:#FFFFFF;
    z-index:100;
}

section#Start > div#Content {
    background-color:transparent;
}

section#Start > div#Content > div {
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:stretch;
    margin-top:50px;
}

section#Start > div#Content > div > div {
    width:30%;
    padding:20px;
    background-color:#EAEBEC;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    section#Start > div#Content > div > div {
        width:40%;
    }
}

@media only screen and (max-width:767px) {
    section#Start > div#Content > div > div {
        width:100%;
    }
}

section > div#Content div.FlexBox {
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:space-between;
    align-items:stretch;
}

section > div#Content div.FlexBox > div {
    width:47.5%;
}

@media only screen and (max-width:767px) {
    section > div#Content div.FlexBox {
        flex-direction:column;
    }

    section > div#Content div.FlexBox > div {
        width:100%;
    }
}





section > div#Content h3 {
    margin:0px 0px 1em 0px;
    font-size:1.6em;
    font-weight:bold;
}

section#Start > div#Content > div h3 {
    color:#A52526;
}

section > div#Content h4 {
    margin:0px 0px 0.5em 0px;
    font-size:1.4em;
    font-weight:bold;
}

section#Start > div#Content > div h4 {
    color:#FFFFFF;
}

section > div#Content h5 {
    position:relative;
    margin:20px 0px 20px 0px;
    color:#A52526;
    font-size:1.1em;
    font-weight:bold;
    text-align:center;
    text-transform:uppercase;
}

section > div#Content h5:after {
    position:absolute;
    content:'';
    width:100%;
    z-index:0;
    top:50%;
    left:0;
    height:1px;
    background-color:#CCCCCC;
}

section > div#Content h5 > span {
    position:relative;
    display:inline-block;
    padding:0px 15px 0px 15px;
    background-color:#FFFFFF;
    z-index:1;
}

section#Start > div#Content > div h5 {
    color:#FFFFFF;
}

section > div#Content p {
    margin:0px 0px 1em 0px;
    line-height:1.3em;
    font-size:1.1em;
}

section#Start > div#Content > div p {
    color:#000000;
}

section > div#Content p#ForgotYourPasswordRegister {
    margin-top:5px;
    font-size:0.85em;
    text-align:right;
}

section > div#Content p > strong {
    font-weight:bold;
}

section > div#Content p > em {
    font-style:italic;
}

section > div#Content p a {
    color:inherit;
}

section > div#Content ul {
    margin:0px 0px 1em 20px;
    list-style-type:disc;
}

section > div#Content ul > li {
    line-height:1.3em;
    font-size:1.1em;
}

section > div#Content ul > li > strong {
    font-weight:bold;
}

section > div#Content ul > li a {
    color:inherit;
}

section > div#Content a#Back {
    display:block;
    width:15px;
    height:15px;
    position:absolute;
    top:0px;
    right:0px;
    font-size:1.1em;
    color:#000000;
    text-align:center;
    text-decoration:none;
    border:1px solid #000000;
}

section > div#Content div.Offer {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:flex-start;
    align-items:stretch;
}

section > div#Content div.Offer > div {
    flex-basis:32%;
    margin:0px 2% 15px 0px;
    border:1px solid #CCCCCC;
    box-sizing:border-box;
}


@media only screen and (max-width:767px) {
    section > div#Content div.Offer {
        flex-direction:column;
    }

    section > div#Content div.Offer > div {
        width:100%;
        margin:0px 0px 15px 0px;
    }
}


section > div#Content div.Offer > div:nth-child(3n) {
    margin-right:0px;
}

section > div#Content div.Offer > div > a {
    text-decoration:none;
}

section > div#Content div.Offer > div > a > h6 {
    margin:10px 0px 10px 0px;
    color:#A52526;
    font-size:1.1em;
    font-weight:bold;
    text-align:center;
}

section > div#Content div.Offer > div > a > span:first-of-type {
    display:block;
    color:#000000;
    font-size:15em;
    text-align:center;
}

section > div#Content div.Offer > div > a > span:nth-of-type(2) {
    display:block;
    height:50px;
    margin:0px 10px 0px 10px;
    color:#777777;
    font-size:0.8em;
}


section > div#Content div.Offer > div > a > span:last-of-type {
    display:block;
    color:#FFFFFF;
    line-height:30px;
    font-size:1.1em;
    text-align:center;
    background-color:#A52526;
}

section > div#Content div#Tabs {
    border:none;
}

section > div#Content div#Tabs > ul {
    margin:0px;
    background:#FFFFFF;
    border:none;
    border-bottom:1px solid #F3F3F3;
}

section > div#Content div#Tabs > ul > li.ui-state-active {
    background:#A52526;
    border-color:#A52526;
}

section > div#Content div#Tabs > div {
    padding:10px 0px 0px 0px;
}

section > div#Content div#Tabs > div#Tabs1 {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
}

section > div#Content div#Tabs > div#Tabs1 > div {
    flex-basis:48%;
    margin:0px 0px 15px 0px;
}

@media only screen and (max-width:767px) {
    section > div#Content div#Tabs > div#Tabs1 > div {
        flex-basis:100%;
        margin:0px 15px 15px 0px;
    }

    section > div#Content div#Tabs > div#Tabs1 > div:first-of-type {
        order:1;
    }

    section > div#Content div#Tabs > div#Tabs1 > div:nth-of-type(2) {
        order:3;
    }

    section > div#Content div#Tabs > div#Tabs1 > div:nth-of-type(3) {
        order:2;
    }

    section > div#Content div#Tabs > div#Tabs1 > div:last-of-type {
        order:4;
    }
}

section > div#Content h4.AccordionHeader {
    margin:5px 0px 5px 0px;
    font-size:1.1em;
    font-weight:normal;
    background:#A52526;
    border-color:#A52526;
}

section > div#Content h4.AccordionHeaderCollapsed {
    background:#F3F3F3;
    border-color:#F3F3F3;
}



section > div#Content div.ConstructionSiteDocumentationImage {
    width:100%;
}

section > div#Content div.ConstructionSiteDocumentationImage > img {
    width:100%;
    vertical-align:bottom;
}

section > div#Content div.ConstructionSiteDocumentationImage > p {
    width:100%;
    color:#FFFFFF;
    text-align:center;
    background-color:#A52526;
}



section > div#Content table, div.ui-dialog table {
    width:100%;
    margin:0px 0px 30px 0px;
    border-collapse:collapse;
    border-spacing:0px;
    empty-cells:show;
}

section > div#Content table > colgroup > col.ColWidth20, div.ui-dialog table > colgroup > col.ColWidth20 {
    width:20px;
}

section > div#Content table > thead > tr > th, div.ui-dialog table > thead > tr > th {
    height:25px;
    padding:0px 5px 0px 5px;
    background-color:#454545;
    border:1px solid #EAEBEC;
    text-align:center;
    font-weight:bold;
    line-height:25px;
    color:#FFFFFF;
    text-transform:uppercase;
    letter-spacing:0.08em;
}

section > div#Content table > thead > tr > th.NoWrap, div.ui-dialog table > thead > tr > th.NoWrap {
    white-space:nowrap;
}

section > div#Content table > thead > tr > th > a, div.ui-dialog table > thead > tr > th > a {
    color:inherit;
    text-decoration:none;
}

section > div#Content table > thead > tr > th > span, div.ui-dialog table > thead > tr > th > span {
    display:inline-block;
    margin-left:5px;
}

section > div#Content table > thead > tr > th > span > span.ion-arrow-up-b, section > div#Content table > thead > tr > th > span > span.ion-arrow-down-b, div.ui-dialog table > thead > tr > th > span > span.ion-arrow-up-b, div.ui-dialog table > thead > tr > th > span > span.ion-arrow-down-b {
    display:block;
    margin:0px;
    padding:0px;
    font-size:0.7em;
    line-height:0.1em;
    cursor:pointer;
}

section > div#Content table > thead > tr > th > span > span.ion-arrow-up-b::before, section > div#Content table > thead > tr > th > span > span.ion-arrow-down-b::before, div.ui-dialog table > thead > tr > th > span > span.ion-arrow-up-b::before, div.ui-dialog table > thead > tr > th > span > span.ion-arrow-down-b::before {
    line-height:0.6em
}

section > div#Content table > tbody, div.ui-dialog table > tbody {
    background-color:#E6E6E6;
}

section > div#Content table > tbody > tr.RowInvert, div.ui-dialog table > tbody > tr.RowInvert {
    background-color:#FFFFFF;
}

section > div#Content table > tbody > tr:hover, div.ui-dialog table > tbody > tr:hover {
    background-color:#CCCCCC;
}

section > div#Content table > tbody > tr > td, div.ui-dialog table > tbody > tr > td {
    height:20px;
    padding:5px 5px 3px 5px;
    border:1px solid #EAEBEC;
    text-align:left;
    line-height:20px;
    vertical-align:top;
}

section > div#Content table > tbody > tr > td strong, div.ui-dialog table > tbody > tr > td strong {
    font-weight:bold;
}

section > div#Content table > tbody > tr > td a, div.ui-dialog table > tbody > tr > td a {
    color:inherit;
    text-decoration:none;
}

section > div#Content table > tbody > tr > td a.CourseDateParticipantSelf, div.ui-dialog table > tbody > tr > td a.CourseDateParticipantSelf {
    font-size:32px;
    color:#226622;
}

section > div#Content table > tbody > tr > td a.Green, div.ui-dialog table > tbody > tr > td a.Green {
    color:#226622;
}

section > div#Content table > tbody > tr > td a.Yellow, div.ui-dialog table > tbody > tr > td a.Yellow {
    color:#FF9900;
}

section > div#Content table > tbody > tr > td a.Red, div.ui-dialog table > tbody > tr > td a.Red {
    color:#881111;
}

section > div#Content table > tbody > tr > td.AlignCenter, div.ui-dialog table > tbody > tr > td.AlignCenter {
    text-align:center;
}

section > div#Content table > tbody > tr > td.AlignRight, div.ui-dialog table > tbody > tr > td.AlignRight {
    text-align:right;
}

section > div#Content table > tbody > tr > td.AlignMiddle, div.ui-dialog table > tbody > tr > td.AlignMiddle {
    vertical-align:middle;
}

section > div#Content table > tbody > tr > td.Green, div.ui-dialog table > tbody > tr > td.Green {
    color:#226622;
}

section > div#Content table > tbody > tr > td.Red, div.ui-dialog table > tbody > tr > td.Red {
    color:#881111;
}

section > div#Content table > tbody > tr > td.NoWrap, div.ui-dialog table > tbody > tr > td.NoWrap {
    white-space:nowrap;
}

section > div#Content table > tbody > tr > td.ConstructionSiteDocumentationImage, div.ui-dialog table > tbody > tr > td.ConstructionSiteDocumentationImage {
    width:25%;
}

section > div#Content table > tbody > tr > td.ConstructionSiteDocumentationImage > img, div.ui-dialog table > tbody > tr > td.ConstructionSiteDocumentationImage > img {
    width:100%;
}




section > div#Content table > tbody > tr > td.DatesParticipant > span {
    display:inline-block;
    width:calc(100% - 12px);
    padding:2px 6px 2px 6px;
    text-align:center;
    vertical-align:middle;
    font-weight:bold;
    color:#FFFFFF;
}

section > div#Content table > tbody > tr > td.DatesParticipantGreen > span {
    background-color:#226622;
}

section > div#Content table > tbody > tr > td.DatesParticipantYellow > span {
    background-color:#FF9900;
}

section > div#Content table > tbody > tr > td.DatesParticipantRed > span {
    background-color:#881111;
}




section > div#Content form > fieldset {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
}

section > div#Content form > fieldset div.Form {
    flex-basis:24%;
    margin:0px 0px 15px 0px;
}

section > div#Content form > fieldset div.Form.Form20 {
    flex-basis:19%;
}

section > div#Content form > fieldset div.Form.Form50 {
    flex-basis:49.3%;
}

section > div#Content form > fieldset div.Form.Form75 {
    flex-basis:74.6%;
}

section > div#Content form > fieldset div.Form.Form100 {
    flex-basis:100%;
}

section > div#Content form > fieldset div.Form > label {
    display:block;
    margin:0px 0px 5px 0px;
    font-size:1.1em;
    font-weight:bold;
    color:#000000;
    text-transform:uppercase;
}

section > div#Content form > fieldset div.Form > label > a {
    color:inherit;
}

section > div#Content form > fieldset div.Form > div, section > div#Content form > fieldset div.Form > div {
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:flex-start;
}

section > div#Content form > fieldset div.Form > div > label {
    width:auto;
    line-height:32px;
    margin:0px 20px 0px 5px;
    font-size:1.1em;
}

section > div#Content form > fieldset div.Form > div > label > a {
    color:inherit;
}


section > div#Content form > fieldset div.Form > div > input, section > div#Content form > fieldset div.Form > div > select, section > div#Content form > fieldset div.Form > div > textarea {
    display:block;
    width:100%;
    height:32px;
    line-height:32px;
    padding:0px 5px 0px 5px;
    font-size:1.1em;
    color:#000000;
    border:1px solid #000000;
    border-radius:3px;
    box-sizing:border-box;
}

section > div#Content form > fieldset div.Form > div > input[type=checkbox], section > div#Content form > fieldset div.Form > div > input[type=radio] {
    width:auto;
    height:26px;
}

section > div#Content form > fieldset div.Form > div > input[type=submit] {
    display:inline-block;
    width:auto;
    height:40px;
    line-height:40px;
    margin:0px 10px 0px 0px;
    padding:0px 10px 0px 10px;
    color:#FFFFFF;
    text-decoration:none;
    background-color:#A52526;
    border:none;
    cursor:pointer;
}

section > div#Content form > fieldset div.Form > div > textarea {
    height:100px;
    line-height:1.2em;
}

section > div#Content form > fieldset div.Form > div > input::-moz-placeholder {
    color:#CCCCCC;
    font-style:italic;
}

section > div#Content form > fieldset div.Form > div > input::-webkit-input-placeholder {
    color:#CCCCCC;
    font-style:italic;
}

section > div#Content form > fieldset div.Form > div > input:-ms-input-placeholder {
    color:#CCCCCC;
    font-style:italic;
}

section > div#Content form > fieldset div.Form > div > textarea::-moz-placeholder {
    color:#CCCCCC;
    font-style:italic;
}

section > div#Content form > fieldset div.Form > div > textarea::-webkit-input-placeholder {
    color:#CCCCCC;
    font-style:italic;
}

section > div#Content form > fieldset div.Form > div > textarea:-ms-input-placeholder {
    color:#CCCCCC;
    font-style:italic;
}





/******************************************************************************/
/* Footer                                                                     */
/******************************************************************************/

footer {
    position:fixed;
    bottom:0px;
    width:100%;
    overflow:hidden;
    background-color:#A52526;
    z-index:20000;
}

footer > div {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:stretch;
    max-width:1200px;
    margin:0px auto 0px auto;
    padding:5px;
}

footer > div > nav {
    order:2;
}

footer > div > nav > ul {
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:flex-end;
    align-items:stretch;
}

footer > div > nav > ul > li {
    margin-right:10px;
    padding-right:10px;
    line-height:20px;
    color:#FFFFFF;
    border-right:1px solid #FFFFFF;
}

footer > div > nav > ul > li:last-child {
    margin-right:0px;
    padding-right:0px;
    border-right:none;
}

footer > div > nav > ul > li a {
    color:inherit;
    text-decoration:none;
}

@media only screen and (max-width:479px) {
    footer > div {
        flex-direction:column;
        flex-wrap:nowrap;
        justify-content:flex-start;
    }

    footer > div > nav {
        order:1;
        margin-bottom:10px;
    }
}

/******************************************************************************/
/* General                                                                    */
/******************************************************************************/

.ClearAfter:after {
    display:block;
    clear:both;
    height:0px;
    content:'.';
    font-size:0em;
    text-indent:-8000px;
}

.Error, .Error > a {
    color:#FF0000;
}

.Done, .Done > a {
    color:#00FF00;
}

.ui-widget-overlay {
    background-color:#000000 !important;
    opacity:0.5 !important;
    filter:Alpha(Opacity=50) !important;
}