﻿@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Italic.ttf");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Lato-light";
    src: url("../fonts/Lato-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PT Sans Caption";
    src: url("../fonts/PT_Sans-Caption-Web-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PT Sans Caption";
    src: url("../fonts/PT_Sans-Caption-Web-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "PT Sans";
    src: url("../fonts/PT_Sans-Web-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PT Sans";
    src: url("../fonts/PT_Sans-Web-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@page {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.bootstrap-dialog-message {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

/* Eric Meyer's CSS Reset */
/**
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;
}
//HTML5 display-role reset for older browsers
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;
}
**/
/* End of Eric Meyer's CSS Reset */
html, body, div, span, object,
form, input, h1, h2, button, label, a, img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-select: none;
    user-select: none;
    font-weight: 100;
    border-radius: 0;
    -webkit-border-radius: 0;
}

    input[type=text] {
        -moz-user-select: text;
        -webkit-user-select: text;
    }

    input[type=button] {
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
    }

    input[type=button-bevel] {
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
    }

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

    input [type=checkbox] {
        -webkit-appearance: checkbox;
    }

    input[type=caret] {
        -webkit-appearance: caret;
    }

    input[type=range]::-ms-tooltip {
        display: none;
    }

table {
    padding: 5px 5px 5px 5px;
}

html, body {
    font-family: "PT Sans Caption", sans-serif;
    font-size: 1em;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

@keyframes fadeInHalf {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@-webkit-keyframes fadeInHalf {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@-moz-keyframes fadeInHalf {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOutHalf {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOutHalf {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

@-moz-keyframes fadeOutHalf {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

canvas {
    padding: 0;
    margin: 0;
    -ms-touch-action: none;
}

hr {
    border-color: #a5a5a5;
    border-width: 1px;
    margin-top: 2px;
    margin-bottom: 2px;
}

label {
    margin: 0;
    padding: 0;
}

.spinner {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -50px; /* half width of the spinner gif */
    margin-top: -50px; /* half height of the spinner gif */
    text-align: center;
    z-index: 1234;
    width: 100px; /* width of the spinner gif */
    height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
    animation-name: fadeIn;
    animation-duration: 0.5s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.5s;
}

.cursorDiv {
    position: fixed;
    z-index: 1235;
    width: 27px; /* width of the cursor png */
    height: 27px; /*hight of the cursor png +2px to fix IE8 issue */
    margin-left: -13px; /* half width of the png */
    margin-top: -13px; /* half height of the png */
    display: none;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.2s;
}

.localFiles {
}

.localFileSlot {
    text-align: center;
    width: 250px;
    height: 30px;
}

.rioAccordion {
    font-family: "PT Sans", sans-serif;
    font-size: 1em;
    color: #666666;
    font-weight: 100;
    font-style: normal;
    color: #333333;
}

.accordion-heading {
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-family: "PT Sans", sans-serif;
    font-size: 0.9em;
    color: #575656;
    border-top: solid;
    border-top-color: #555555;
    border-top-width: 2px;
    background-color: #e7e7e8;
    text-decoration: none;
    cursor: pointer;
}

    .accordion-heading > a {
        color: #333333;
        font-size: 90%;
        text-decoration: none;
    }

#accordionHeadingCollapseTwo {
    border-top: none;
}

/*edit: 190311*/
.lblAccordionHeading {
    cursor: pointer;
}

.accordion-inner {
    background-color: #f8f8f8;
}

.accordion-toggle {
    text-decoration: none;
}

a:hover, a:focus {
    color: #2a6496;
    text-decoration: none;
}

.btAccordionMainMenue {
    display: inline-block;
    padding: 0;
    border: none;
    width: 25%;
    height: 17px;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 64%;
    margin: 8px 3px 8px 3px;
    background-color: #b5b5b5;
    color: white;
    cursor: pointer;
}

.btAccordionMainMenue > button {
    color: #f8f8f8;
}

.btAccordionMainMenue:first-child { margin: 8px 3px 8px 0px !important; }
.btAccordionMainMenue:last-child { margin: 8px 0px 8px 3px !important; }

/*
#collapseThree > collapse.in  {
    height: 400px;
}


#contextMenue {
    height: 23.7em;
    padding-left: 10px;
    padding-right: 10px;
}

#contextMenu > .collapse.width {
    height: auto;
    -webkit-transition: width 0.35s ease;
    -moz-transition: width 0.35s ease;
    -o-transition: width 0.35s ease;
    transition: width 0.35s ease;
}*/

.wrapper {
    width: 100%;
    height: 100%;
    animation-name: fadeIn;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 1s;
    padding: 0;
    margin: 0;
}

.sideBarLeft {
    position: absolute;
    left: 29px;
    top: 29px;
    width: 410px;
    /*
    height: 10px;
	min-height: 100%;
    *height: 100%;
    */
    z-index: 1;
    margin: 0;
    padding: 0;
    background: #f6f6f6; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%,#eeeeee 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%,#eeeeee 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border: 2px solid #555555;
    border-radius: 5px;
}

.dynamicCell {
    padding-left: 10px;
    padding-right: 10px;
}

.sidebarCanvas {
    -ms-touch-action: none;
}

.sidebarCanvasDrag {
    align-self: center;
    -ms-touch-action: none;
    text-align: center;
    display: inline-block;
}

.main {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.mainCanvas {
    animation-name: fadeIn;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 1s;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}



.punchHoleBlock {
    position: absolute;
    left: 180px;
    top: 410px;
    width: 210px;
}

.holeSelector {
    width: 150px;
}

.holeSelectorBody {
    display: none;
    padding: 5px;
    background-color: #ffffff;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.2s;
}

.default {
    font-family: Arial;
    font-weight: normal;
    font-style: normal;
    color: #00FF00;
    font-Size: 11pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.defaultDisabled {
    font-family: "Arial";
    font-weight: normal;
    font-style: normal;
    color: #bdbdbd;
    font-size: 11pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.version {
    font-family: "Arial";
    font-weight: normal;
    font-style: normal;
    color: #AEAEAE;
    font-size: 6pt;
    text-align: left;
    float: left;
    margin: 20px 0px 0px 0px;
    text-indent: 0;
}

.dlg {
    position: fixed;
    left: 50%;
    top: 50%;
    padding: 0 0 0 0;
    text-indent: 0;
    z-index: 4345;
    /*background-color: #f8f8f8;*/
    /*background: #eaeaea; /* Old browsers */
    background: -moz-linear-gradient(top, #f8f8f8 0%, #e4e4e4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#e4e4e4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f8f8f8 0%,#e4e4e4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f8f8f8 0%,#e4e4e4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f8f8f8 0%,#e4e4e4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f8f8f8 0%,#f8f8f8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e4e4e4',GradientType=0 ); /* IE6-9 */
    border: solid;
    border-width: 1px;
    border-color: #7d7d7d;
    box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    -webkit-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    animation-name: fadeIn;
    animation-duration: 0.5s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.5s;
}

.dlgHead {
    width: 100%;
    height: 40px;
    display: block;
    margin: 0 0 0 0;
    padding: 10px 10px 10px 10px;
    text-indent: 0;
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #575656;
    background-color: #ececec;
    font-size: 13pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
    border-top-style: solid;
    border-top-color: #d44244;
}

.dlgHeadline {
    font-family: "PT Sans";
    font-size: 10pt;
    color: #333333;
    font-weight: 100;
    font-style: normal;
    text-align: left;
    margin: 0;
    text-indent: 0
}

.dlgBody {
    padding: 10px 10px 10px 10px;
    height: 290px;
    font-family: "PT Sans";
    font-size: 10pt;
    font-weight: 100;
    font-style: normal;
    color: #575656;
    text-align: left;
    margin: 7px;
    text-indent: 0
}

.dlgFooter {
    text-align: right;
    padding: 10px 10px 10px 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #575656;
    background-color: transparent;
    font-size: 13pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.dlgLabeledButton {
    height: 30px;
    width: 140px;
    font-family: "PT Sans";
    font-style: normal;
    white-space: nowrap;
    color: #575656;
    background: #ffffff;
    font-size: 10pt;
    text-align: center;
    margin: 0 0 0 10px;
    text-indent: 0;
    float: right;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    -moz-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    border-style: none;
}

    .dlgLabeledButton:hover {
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .dlgLabeledButton:active {
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.3);
    }

.dlgSlotButton {
    width: 75%;
    height: 25px;
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #575656;
    font-size: 10pt;
    text-align: center;
    margin: 10px auto 0px auto;
    text-indent: 0;
    cursor: pointer;
    -webkit-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    -moz-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    border-style: none;
}

.dlgRegalTypeButton {
    width: 90%;
    height: 25px;
    font-family: "PT Sans";
    font-style: normal;
    background-color: #ffffff;
    color: #575656;
    font-size: 10pt;
    text-align: center;
    margin: 10px auto 0px auto;
    text-indent: 0;
    cursor: pointer;
    -webkit-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    -moz-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    border-style: none;
}

#dlgClosingBrackets {
    width: 700px;
    height: 480px;
    position: absolute;
    left: 50px;
    top: 50px;
}

#dlgClosingBracketsRadios input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

.brackettype-itemtitle {
    font-weight: bold;
    display: block;
    transform: translateY(-20px);
}

.shortened {
    background-image: url("../images/closingBracketsShortened.png");
    border: solid 2px #00000000;
}


.unshortened {
    background-image: url("../images/closingBracketsUnshortened.png");
    border: solid 2px #00000000;
}


.checked {
    border: solid 2px #818284;
}

.brackettype-cc {
    display: inline-block;
    text-align: left;
    width: 218px;
    height: 218px;
    cursor: pointer;
    margin-left: 30px;
    margin-right: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
}


.brackettype-item:checked {
    border: solid 1px red;
}

.lblClosingBracketsType {
    display: inline-block;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #666666;
    font-size: 9pt;
    transform: translateY(1px);
    vertical-align: bottom;
    cursor: pointer;
}


#dlgInstructionsConfirm {
    font-weight: bold;
}

.regalTypeCellContainer {
}


.regalOptionsTopRow {
    width: 100%;
    height: 30px;
    display: block;
}

.regalOptionsMediumRow {
    width: 100%;
    height: 25px;
    display: block;
}

.regalOptionsBottomRow {
    display: inline-block;
    width: 100%;
    height: 25px;
    display: block;
}

.btRegalType {
    width: 33%;
    text-align: center;
    cursor: pointer;
}

.regalTypeImage {
    width: 90%;
}

.dlgWelcomeImage {
    display: block;
    width: 85%;
    margin: 12px auto 15px auto;
}

.btHelpTextWrapper {
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
    width: 100%;
    color: #a5a5a5;
    text-align: left;
    margin: 15px 0px 0px 0px;
}

.btHelpText {
    cursor: pointer;
    width: 50%;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 70%;
    border: none;
    background: none;
    margin-left: 2px;
}

    .btHelpText:enabled:hover {
        color: #666666;
    }

.playVideoImage {
    margin: 0px 0px 0px 10px;
}

.dlgSlotButton:enabled:hover {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.3);
}

.dlgSlotButton:enabled:active {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.3);
}

.dlgSlotButton:disabled {
    opacity: 0.5;
}

.dlgTitle {
    font-family: "PT Sans";
    font-style: normal;
    color: #333333;
    font-size: 13pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.dialogueBody {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #575656;
    font-size: 11pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
    letter-spacing: 4px;
}

.dlgBkgBlocker {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #000000;
    opacity: 0.5;
    display: none;
    z-index: 2340;
    animation-name: fadeInHalf;
    animation-duration: 0.5s;
    -webkit-animation-name: fadeInHalf;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: fadeInHalf;
    -moz-animation-duration: 0.5s;
}

.sidebarInstruction {
    font-Family: "PT Sans";
    font-Weight: normal;
    font-Style: normal;
    color: #333333;
    font-Size: 8pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
    letter-spacing: 0;
}

.selectorLabel {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #666666;
    font-size: 8pt;
    text-align: center;
    margin: 0;
    text-indent: 0;
}

.selectorLabelBright {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #FFFFFF;
    font-size: 8pt;
    text-align: center;
    margin: 0;
    text-indent: 0;
}

.iconRegaltypeChange {
    margin: 0px 5px 0px 0px;
}

.regalTypeChangeText {
    font-family: "PT Sans";
    font-size: 85%;
    font-style: normal;
    color: #666666;
    margin-right: 40px;
    text-indent: 0;
    white-space: nowrap;
}

.regalChangeBtn {
}

.btRegalTypeChange {
    padding: 0;
    border: none;
    width: 93px;
    height: 17px;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 64%;
    color: white;
    margin: 5px 0px 0px 5px;
    background-color: #b5b5b5;
    cursor: pointer;
    float: right;
}

.measures {
    width: 100%;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #666666;
    font-size: 9pt;
    text-align: left;
    margin: 0 0 0px 0px;
    text-indent: 0;
}

.outerMeasures {
    width: 100%;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #666666;
    font-size: 9pt;
    text-align: left;
    margin: 0 0 0px 60px;
    text-indent: 0;
}

.innerMeasures {
    width: 100%;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 9pt;
    color: #666666;
    text-align: left;
    margin: 0 0 0px 60px;
    text-indent: 0;
}

.cableholeMeasuresBt {
    cursor: pointer;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #666666;
    font-size: 9pt;
    text-align: center;
    margin: 0 0 0 2px;
    text-indent: 0;
}

.labelCableholeMeasuresBtWrapper {
    margin: -25px 0px 0 200px;
    padding-left: 15px;
}

.cbBaseboardCutMeasures {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #666666;
    font-size: 9pt;
    text-align: center;
    float: right;
    margin-right: 49px;
    top: 7px;
}

.selectorTitleBright {
    font-family: "PT Sans";
    font-style: normal;
    color: #FFFFFF;
    font-size: 10pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.selectorTitleDark {
    font-family: "PT Sans";
    font-style: normal;
    color: #666666;
    font-size: 85%;
    text-align: left;
    margin: 0;
    text-indent: 0;
    white-space: nowrap;
}

.popupMenueTitle {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #666666;
    font-size: 12pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
    letter-spacing: 2px;
}

.popupMenueSubTitle {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #666666;
    font-size: 11pt;
    text-align: center;
    margin: 0;
    text-indent: 0;
    letter-spacing: 2px;
}

.mainMenue {
    position: relative;
    width: 100%;
    padding: 0px 10px 0px 10px;
    display: flex;
}

.btMainMenue {
    padding: 0;
    border: none;
    background: none;
    width: 100%;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: white;
    font-size: 80%;
    text-align: left;
    margin: 0px 0px 0px 0px;
}

.btMainMenue:enabled:hover {
    color: #666666;
}


.btOrder {
    /*border: none;
    background-color: #d44244;
    color: #FFFFFF;
    font-weight:normal;
    font-size: 70%;
    text-align: left;
    margin: 10px 0px 0px 0px;
    cursor:pointer;
    float:right;*/
    cursor: pointer;
}

    .btOrder:enabled:hover {
        font-weight: bold;
    }


.summary {
    background-color: #eeeeee;
    width: 195px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #666666;
    text-align: left;
    margin: 0;
    text-indent: 0;
    padding: 10px;
}

.summaryTitle {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #666666;
    font-size: 8pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.summaryPrice {
    display: inline;
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    font-size: 100%;
    float: right;
    padding-right: 5px;
    color: #ffffff;
}

.summaryPriceInfo {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #575656;
    font-size: 90%;
    text-align: left;
    margin: 0;
    text-indent: 0;
    margin-left: 5px;
    width: 100%;
}

.ruleFeedbackValid {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #CCCCCC;
    font-size: 11pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.2s;
}

.ruleFeedbackInvalid {
    display: inline;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #FF0000;
    font-size: 8pt;
    text-align: left;
    vertical-align: top;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.2s;
}

.targetNotAllowedIcon {
    display: inline;
    width: 23px;
    height: 20px;
    margin: 0px 0px 0px 0px;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.2s;
}

.targetNotAllowedContainer {
    position: absolute;
    width: 400px;
    height: auto;
    padding: 5px 5px 5px 5px;
    margin: 0px 0px 0px 0px;
    color: #000000;
    border: 1px #000000 solid;
    box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    -webkit-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.25);
    background: #f0f0f0; /* Old browsers */
    background: -moz-linear-gradient(top, #f0f0f0 0%, #d0d0d0 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#d0d0d0)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f0f0 0%,#d0d0d0 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f0f0f0 0%,#d0d0d0 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f0f0f0 0%,#d0d0d0 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f0f0f0 0%,#d0d0d0 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#d0d0d0',GradientType=0 ); /* IE6-9 */
    animation-name: fadeIn;
    animation-duration: 0.2s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.2s;
}

.contextMenue {
    /*height: 23.7em;*/
}

.contextMenueTitle {
    font-family: "PT Sans";
    font-weight: normal;
    color: #868686;
    font-size: 90%;
    text-align: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    text-indent: 0;
}

.contextMenueSubtitle {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #666666;
    font-size: 90%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
}

.preloaderPercent {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #575656;
    font-size: 12pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
}

.loadingText {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #FFFFFF;
    font-size: 12pt;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
}

.tooltip {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #575656;
    font-size: 12pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
}

.lowerBar {
    width: 100%;
    position: relative;
    left: 0px;
    padding: 10px 15px 0px 15px;
}

.bubble {
    position: absolute;
    /* menu width + margin */
    left: calc(510px + 5vh);
    bottom: 29px;
    height: auto;
    background: white;
    padding: 5px;
    animation-name: fadeIn;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 1s;
}

.bubbleTextArea {
    z-index: 0;
    background: none;
    border: none;
    height: auto;
}

.bubbleText {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #62503E;
    font-size: 8pt;
    text-align: left;
    margin: 0;
    text-indent: 0;
    letter-spacing: 0px;
}

.modal .modal-body {
    overflow-y: hidden;
    /*
        background-color:#d44244;
        max-height:600px;
    */
}

.modal .modal-content {
    overflow-y: auto;
    /*
    background-color:#00FF00;
    */
    max-height: 800px;
}

.clickable_enabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.clickable_disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    /*opacity:0,75;*/
}

.omitSelect {
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    /* No support for these yet, use at own risk */
    -o-user-select: none;
    user-select: none;
}

.menueColumnLbl {
    width:120px;
    padding-bottom: 8px;
}

.menueColumnContent-1 {
    width:auto;
    padding-bottom: 9px;
}

.menueColumnContent-4 {
    width: 50px;
    padding-bottom: 9px;
}

.menuSelectorDrawer {
    padding: 0;
    /*margin-bottom: 13px;*/
    /*margin-top: -2px;*/
}

.menuSelectorDoor {
    padding: 0;
    /*margin-bottom: 75px;
    height: 30px;
    margin-top: -2px;*/
}

.radioGroup {
    padding: 0px 0px 0px 0px;
    margin: 0;
    /*height: 20px;*/
}

    .radioGroup input[type="radio"] {
        display: none;
    }


    .radioGroup .buttonLabel {
        font-family: PT Sans;
        font-size: 60%;
        outline: 1px solid #818284;
        /*border-width: 1px;
        border-style: solid;*/
        border-color: #818284;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        width: 22.5px;
        height: 18px;
        margin-right: 8px;
        padding-top: 3px;
    }

    .radioGroup .buttonLabelSmall {
        display: inline-block;
        font-family: PT Sans;
        font-size: 60%;
        outline: 1px solid #818284;
        /*border-width: 1px;
        border-style: solid;*/
        border-color: #818284;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        width: 22.5px;
        height: 18px;
        margin-right: 10px;
    }

    .radioGroup input[type="radio"]:checked + .buttonLabel {
        border-color: #818284;
        /*edit 190227*/
        outline: 0.4em solid #818284;
        margin-right: 8px;
        /*box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);
        webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);*/
    }

@media only screen and (min-width: 1280px) {
    .radioGroup input[type="radio"]:checked + .buttonLabel {
        outline: 2px solid #818284;
    }
}

.radioGroup input[type="radio"]:disabled + .buttonLabel {
    /*border-style: solid;*/
    color: #b5b5b5;
    outline-color: #b5b5b5;
    margin-right: 8px;
    cursor: not-allowed;
}

.radioGroup input[type="radio"]:checked + .buttonLabelSmall {
    border-color: #818284;
    outline: 0.4em solid #818284;
    /*box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);
        */
}

@media only screen and (min-width: 1280px) {
    .radioGroup input[type="radio"]:checked + .buttonLabelSmall {
        outline: 2px solid #818284;
    }
}

.radioGroup input[type="radio"]:disabled + .buttonLabelSmall {
    border-style: solid;
    color: #818284;
    border-color: #818284;
    cursor: not-allowed;
}

.labeledCheckboxes {
    float: left;
}

.radioGroup .groupTitle {
    font-family: "PT Sans";
    font-size: 100%;
    color: #666666;
}

.groupTitle {
    padding: 0;
    font-family: "PT Sans";
    font-size: 85%;
    color: #666666;
    float: left;
}

input[type="checkbox"] + label {
    vertical-align: text-bottom;
    margin-bottom: 1px;
    margin-left: 0px;
    cursor: pointer;
    position: relative;
    top: 2px;
}

.fillWhite {
    background-color: #FFFFFF;
    color: #666666;
}

.fillNature {
    background-color: #ECD8BD;
    color: #666666;
}

.fillBrown {
    background-color: #6A311E;
    color: #FFFFFF;
}

.fillMud {
    background-color: #8a7971;
    color: #FFFFFF;
}

.fillNoir {
    background-color: #181818;
    color: #FFFFFF;
}

.fillOrange {
    background-color: #faae31;
    color: #FFFFFF;
}

.fillSemiTransparent {
    background-image: url("../images/materialSemiTransparent.png");
    background-size: cover;
}

.fillTransparent {
    background-image: url("../images/materialTransparent.png");
    background-size: cover;
}

.fillBrightGrey {
    background-color: #F1F1F1;
    color: #666666;
    cursor: pointer;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.materialSelector {
    display: inline-block;
    z-index: 99999;
    height: 20px;
}

.materialLabel {
    width: 200px;
}

.materialSelector li {
    display:table-cell;
    list-style: none;
}


.materialSelector li img {
    vertical-align: top;
}

.materialSelector li .selected {
    outline: 2px solid #818284;
}

.materialSelector li :hover {
    /*outline: 1px solid black;*/
}

.materialSelector .btToggle {
    position: relative;
}

.btToggle :hover {
    /*outline: 1px solid black;*/
}

.materialSelector .btToggle img {
    position: absolute;
    top: 0px;
    left: 0px;
}

.materialSelector .materialGrid {
    position:relative;
    display:block;
    top:-20px;
    left:-40px;
}

.btIcon {
    margin: 0px 8px 0px 0px;
    padding: 0;
    display: inline-block;
    padding: 0;
    font-family: PT Sans;
    font-size: 60%;
    outline: 1px solid #818284;
    /*border-width: 1px;
    border-style: solid;*/
    border-color: #818284;
    vertical-align: middle;
    cursor: pointer;
}



.radioGroup input[type="radio"]:checked + .btIcon {
    border-color: #818284;
    outline: 0.4em solid #818284;
    /*border-width: 2px;*/
    /*box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);
    */
}

@media only screen and (min-width: 1280px) {
    .radioGroup input[type="radio"]:checked + .btIcon {
        outline: 2px solid #818284;
    }
}

.radioGroup input[type="radio"]:disabled + .btIcon {
    /*border-style: solid;*/
    color: #818284;
    outline-color: #818284;
    cursor: not-allowed;
    opacity: 0.5;
    /*width:30px;
    height:20px;*/
}



.btClose {
    display: inline;
    background-image: url("../images/iconClose_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    border: none;
    cursor: pointer;
    height: 16px;
    width: 16px;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    margin-top: 2px;
    float: right;
}

    .btClose:enabled:hover {
        background-image: url("../images/iconClose_over.png");
    }

.btTrash {
    display: inline;
    background-image: url("../images/iconTrashbin.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    height: 16px;
    width: 16px;
}

    .btTrash:enabled:hover {
        background-image: url("../images/iconTrashbin_over.png");
    }



.systemBlockRegalArchive {
    position: absolute;
    right: -24px;
    top: 12px;
    width: 170px;
}

.btArchive {
    display: inline;
    background-image: url("../images/archiveBkg.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    height: 120px;
    width: 120px;
    margin: 0 10px 0 0;
    padding: 0 0 0 0;
    background-size: 100% 100%;
    outline: 0;
    /*opacity:0.75;*/
}
    /*prevent blue border on focus*/
    .btArchive:focus {
        outline: 0;
    }

.btTips:focus {
    outline: 0;
}

.btPlay:focus {
    outline: 0;
}

.btUndo:focus {
    outline: 0;
}

.btRedo:focus {
    outline: 0;
}

.lblBtRegalArchive {
    top: 60px;
    width: 71px;
    position: absolute;
    right: 74px;
    color: #000;
    font-family: "PT Sans";
    font-weight: 600;
    font-style: normal;
    font-size: 1.15rem;
    /*color: #2d2d2d;
    background-color: white;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    */
}

.btArchive:hover .lblBtRegalArchive {
    color: #cc5d58;
}



.systemBlock {
    position: absolute;
    right: 76px;
    bottom: 24px;
    width: 220px;
}

.undoRedoPlayTips {
    table-layout: fixed;
    width: 100%;
}


.btTipsOver {
    background-image: url("../images/btTipOver.png");
}

.btPlayOver {
    background-image: url("../images/btPlayOver.png");
}

.btRedoOver {
    background-image: url("../images/btNextOver.png");
}

.btUndoOver {
    background-image: url("../images/btPreviousOver.png");
}

.btTipsUp {
    background-image: url("../images/btTipUp.png");
}

.btPlayUp {
    background-image: url("../images/btPlayUp.png");
}

.btRedoUp {
    background-image: url("../images/btNextUp.png");
}

.btUndoUp {
    background-image: url("../images/btPreviousUp.png");
}


.btUndo {
    display: inline;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    margin: 0 0px 0px 112px;
    padding: 0 0 0 0;
    background-size: 100% 100%;
    opacity: 0.75;
}

.btUndoWrapper:hover .btUndo:enabled {
    background-image: url("../images/btPreviousOver.png");
}

.btUndo.clickable_disabled {
    opacity: 0.5;
    background-image: url("../images/btPreviousUp.png");
}

.lblBack.clickable_disabled {
    opacity: 0.5;
    color: #333;
}

.btRedo {
    display: inline;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    margin: 0 0px 0px 182px;
    padding: 0 0 0 0;
    background-size: 100% 100%;
    opacity: 0.75;
}

.btRedoWrapper:hover .btRedo:enabled {
    background-image: url("../images/btNextOver.png");
}

.btRedo.clickable_disabled {
    opacity: 0.5;
    background-image: url("../images/btNextUp.png");
}

.lblForward.clickable_disabled {
    opacity: 0.5;
    color: #333;
}

.btPlay {
    display: inline;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 53px;
    height: 35px;
    margin: 0px 0px 0px 21px;
    padding: 0 0 0 0;
    background-size: 100% 100%;
    opacity: 0.75;
}

.lblPlay.clickable_disabled {
    opacity: 0.5;
}

.btPlay.clickable_disabled {
    opacity: 0.5;
}

.btTipsWrapper {
    width: 25%;
    z-index: 4;
}

.btPlayWrapper {
    width: 25%;
    position: absolute;
    z-index: 3;
}

.btUndoWrapper {
    width: 25%;
    position: absolute;
    z-index: 2;
}

.btRedoWrapper {
    width: 25%;
    position: absolute;
    z-index: 1;
}

.btTips {
    display: inline;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 53px;
    height: 55px;
    margin: 0px 0px 0px 0;
    padding: 0 0 0 0;
    background-size: 100% 100%;
    opacity: 0.75;
    float: left;
}

.lblTips.clickable_disabled {
    opacity: 0.5;
}

.btTips.clickable_disabled {
    opacity: 0.5;
}

.lblTips {
    margin: 0 0px 0px 10px;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 90%;
    cursor: pointer;
    color: #333;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .lblPlay {
        margin: 17px 0px 0 12px;
    }
}

@media screen and (min-width:0\0) and (min-resolution: 72dpi) {
    .lblPlay {
        margin: 22px 0px 0 12px;
    }
}

.lblPlay {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 90%;
    cursor: pointer;
}

.lblBack {
    margin: 17px 25px 0 110px;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 90%;
    cursor: pointer;
}

.lblForward {
    margin: 17px 0px 0 191px;
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    font-size: 90%;
    cursor: pointer;
}




.bt0x0 {
    display: inline;
    background-image: url("../images/ph0x0_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 17px;
    height: 16px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt0x0:enabled:hover {
        background-image: url("../images/ph0x0_over.png");
    }

.bt1x2 {
    display: inline;
    background-image: url("../images/ph1x2_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 19px;
    height: 29px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt1x2:enabled:hover {
        background-image: url("../images/ph1x2_over.png");
    }

.bt1x3 {
    display: inline;
    background-image: url("../images/ph1x3_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 19px;
    height: 38px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt1x3:enabled:hover {
        background-image: url("../images/ph1x3_over.png");
    }

.bt2x1 {
    display: inline;
    background-image: url("../images/ph2x1_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 17px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt2x1:enabled:hover {
        background-image: url("../images/ph2x1_over.png");
    }

.bt2x2 {
    display: inline;
    background-image: url("../images/ph2x2_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 27px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt2x2:enabled:hover {
        background-image: url("../images/ph2x2_over.png");
    }

.bt2x3 {
    display: inline;
    background-image: url("../images/ph2x3_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 39px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt2x3:enabled:hover {
        background-image: url("../images/ph2x3_over.png");
    }

.bt3x1 {
    display: inline;
    background-image: url("../images/ph3x1_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 17px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt3x1:enabled:hover {
        background-image: url("../images/ph3x1_over.png");
    }

.bt3x2 {
    display: inline;
    background-image: url("../images/ph3x2_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 47px;
    height: 28px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt3x2:enabled:hover {
        background-image: url("../images/ph3x2_over.png");
    }

.bt3x3 {
    display: inline;
    background-image: url("../images/ph3x3_up.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    border: none;
    cursor: pointer;
    width: 47px;
    height: 39px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .bt3x3:enabled:hover {
        background-image: url("../images/ph3x3_over.png");
    }

.tfGroups {
    display: none;
    font-family: "Arial";
    font-weight: normal;
    font-style: normal;
    color: #000000;
    font-size: 8pt;
    position: absolute;
    left: 260px;
    top: 55px;
    width: 200px;
    min-height: 60px;
    height: auto;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.tfDebug {
    display: none;
    font-family: "Arial";
    font-weight: normal;
    font-style: normal;
    color: #000000;
    font-size: 8pt;
    position: absolute;
    left: 260px;
    top: 5px;
    width: 300px;
    min-height: 30px;
    height: auto;
    text-align: left;
    margin: 0;
    text-indent: 0;
}

.materialButton {
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.printWrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 0.5s;
}

.printTitle {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #A6AAAD;
    font-size: 20pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
    line-height: 20pt;
}

.printTitleRed {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #D01F19;
    font-size: 20pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
    line-height: 20pt;
}

.printText {
    font-family: "PT Sans";
    font-weight: normal;
    font-style: normal;
    color: #2D3041;
    font-size: 11pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
    line-height: 17pt;
}

.printTextBold {
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #2D3041;
    font-size: 11pt;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0;
    line-height: 17pt;
}

.catalogue {
    display: none;
    left: 0px;
    top: 0;
    width: 172px;
    height: 100%;
    position: absolute;
    display: none;
    z-index: 1;
    background-color: #666666;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: none;
    overflow: hidden;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    vertical-align: baseline;
    line-height: inherit;
}

.catalogueList {
    left: 0px;
    width: 100%;
    height: 600px;
    display: block;
    background-color: #eaeaea;
    font-family: "PT Sans";
    font-weight: bold;
    font-style: normal;
    color: #666666;
    font-size: 65%;
    text-align: center;
    margin: 0;
    text-indent: 0;
    padding: 10px;
    text-transform: none;
    margin-top: 0px;
    margin: 0;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    vertical-align: baseline;
    line-height: inherit;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.regal_auswahl_item {
    float: left;
    padding-right: 10px;
    padding-bottom: 5px;
    width: 130px;
}

.textarea-datacontent {
    color:#2a6496;
    width: 100%;
    min-height: 200%;
    height: 600px;
    font-size: 10px;
    resize: none;
}
