/*
 * layout
 */

/* display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }
.hider, .invisible { visibility: hidden; }
.visible { visibility: visible; }
.transparent { opacity: 0; }
.translucent { opacity: 0.7; }

/* flex */
.flex { display: flex; }
.fgrow { flex-grow: 1; }
.fgrow2 { flex-grow: 2; }
.fwrap { flex-wrap: wrap; }
.row { flex-direction: row; }
.col { flex-direction: column; }
.vcent { align-items: center; }
.vstart { align-items: start; }
.rowrev { flex-direction: row-reverse; }
.colrev { flex-direction: column-reverse; }
.jceven { justify-content: space-around; }
.jcbetween { justify-content: space-between; }
.jccenter { justify-content: center; }

/* dimensions */
.full { width: 100%; height: 100%; }
.fullv { width: 100vw; height: 100vh; }
.w1v { width: 100vw; }
.h1v { height: 100vh; }
.fulldef {
    width: 100% !important;
    height: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
}
.galimg img {
    max-width: 100px;
    max-height: 100px;
}
.minigalimg img {
    max-width: 40px;
    max-height: 40px;
}
.hmaxtrans { transition: max-height 1s; }
.hminit { max-height: initial !important; }
.hm0 { max-height: 0px !important; }
.hmaxmax { max-height: 8000px !important; }
.wm0 { max-width: 0px !important; }
.hm20p { max-height: 20px !important; }
.wm20p { max-width: 20px !important; }
.hm50p { max-height: 50px !important; }
.hm100p { max-height: 100px !important; }
.wm100p { max-width: 100px !important; }
.hm150p { max-height: 150px !important; }
.wm150p { max-width: 150px !important; }
.hm200p { max-height: 200px !important; }
.wm200p { max-width: 200px !important; }
.hm300p { max-height: 300px; }
.wm300p { max-width: 300px; }
.hm400p { max-height: 400px; }
.wm400p { max-width: 400px; }
.hm1 { max-height: 100%; }
.wm1 { max-width: 100%; }
.hm1-2 { max-height: 50%; }
.wm1-2 { max-width: 50%; }
.wm1-2i { max-width: 50% !important; }
.hm1-3 { max-height: 33%; }
.wm1-3 { max-width: 33%; }
.hm2-3 { max-height: 66%; }
.wm2-3 { max-width: 66%; }
.hm1-4 { max-height: 25%; }
.wm1-4 { max-width: 25%; }
.hm3-4 { max-height: 75%; }
.wm3-4 { max-width: 75%; }
.hmin1 { min-height: 100%; }
.wmin1 { min-width: 100%; }
.hmin1-2 { min-height: 50%; }
.wmin1-2 { min-width: 50%; }
.hmin200p { min-height: 200px; }
.hmin400p { min-height: 400px; }
.wmin200p { min-width: 200px; }
.wmin400p { min-width: 400px; }
.h10p { height: 10px; }
.h15p { height: 15px; }
.h30p { height: 30px; }
.h40p { height: 40px; }
.h50p { height: 50px; }
.h60p { height: 60px; }
.h70p { height: 70px; }
.h80p { height: 80px; }
.h100p { height: 100px; }
.h120p { height: 120px; }
.h170p { height: 170px; }
.h200p { height: 200px; }
.h250p { height: 250px; }
.h300p { height: 300px; }
.h400p { height: 400px; }
.h500p { height: 500px; }
.h600p { height: 600px; }
.h700p { height: 700px; }
.h800p { height: 800px; }
.w15p { width: 15px; }
.w30p { width: 30px; }
.w40p { width: 40px; }
.w50p { width: 50px; }
.w50pi { width: 50px !important; }
.w80p { width: 80px; }
.w100p { width: 100px; }
.w100pi { width: 100px !important; }
.w130p { width: 130px; }
.w160p { width: 160px; }
.w195p { width: 195px; }
.w200p { width: 200px; }
.w300p { width: 300px; }
.w350p { width: 350px; }
.w400p { width: 400px; }
.w500p { width: 500px; }
.w600p { width: 600px; }
.w700p { width: 700px; }
.w800p { width: 800px; }
.h1 { height: 100%; }
.h1-2 { height: 50%; }
.h1-3 { height: 33%; }
.h2-3 { height: 66%; }
.h1-4 { height: 25%; }
.h3-4 { height: 75%; }
.h1-5 { height: 20%; }
.h2-5 { height: 40%; }
.h3-5 { height: 60%; }
.h4-5 { height: 80%; }
.h1-10 { height: 10%; }
.h3-10 { height: 30%; }
.h7-10 { height: 70%; }
.h9-10 { height: 90%; }
.h1-20 { height: 5%; }
.h3-20 { height: 15%; }
.h7-20 { height: 35%; }
.h9-20 { height: 45%; }
.h11-20 { height: 55%; }
.h13-20 { height: 65%; }
.h17-20 { height: 85%; }
.h19-20 { height: 95%; }
.w1 { width: 100%; }
.w1-2 { width: 50%; }
.w1-3 { width: 33%; }
.w2-3 { width: 66%; }
.w1-4 { width: 25%; }
.w3-4 { width: 75%; }
.w1-5 { width: 20%; }
.w2-5 { width: 40%; }
.w3-5 { width: 60%; }
.w4-5 { width: 80%; }
.w1-10 { width: 10%; }
.w3-10 { width: 30%; }
.w7-10 { width: 70%; }
.w9-10 { width: 90%; }
.w1-20 { width: 5%; }
.w3-20 { width: 15%; }
.w7-20 { width: 35%; }
.w9-20 { width: 45%; }
.w11-20 { width: 55%; }
.w13-20 { width: 65%; }
.w17-20 { width: 85%; }
.w19-20 { width: 95%; }
.w98 { width: 98%; }

/* position */
.abs { position: absolute !important; }
.fixed { position: fixed !important; }
.relative { position: relative !important; }
.high { z-index: 100 !important; }
.higher { z-index: 200 !important; }
.highest { z-index: 300 !important; }
.above { z-index: 1000 !important; }
.abover { z-index: 2000 !important; }
.mosthigh { z-index: 99999 !important; }
.mosthigher { z-index: 999999 !important; }
.low { z-index: -100 !important; }
.lower { z-index: -200 !important; }
.lowest { z-index: -300 !important; }
.below { z-index: -1000 !important; }
.right { float: right; }
.left { float: left; }
.clearnode { clear: both; }
.justified { text-align: justify; }
.centered { text-align: center; }
.righted { text-align: right; }
.lefted { text-align: left; }
.automarg,
.centered > div:not(.inline-block) {
    margin-left: auto;
    margin-right: auto;
}
.vtop { vertical-align: top; }
.vsub { vertical-align: sub; }
.vmiddle { vertical-align: middle; }
.vbottom { vertical-align: bottom; }
.up5 { margin-top: -5px; }
.down5 { margin-top: 5px; }
.left5 { margin-left: -5px; }
.right5 { margin-right: -5px; }
.up10 { margin-top: -10px; }
.down10 { margin-top: 10px; }
.left10 { margin-left: -10px; }
.right10 { margin-right: -10px; }
.up15 { margin-top: -15px; }
.down15 { margin-top: 15px; }
.left15 { margin-left: -15px; }
.right15 { margin-right: -15px; }
.up20 { margin-top: -20px; }
.down20 { margin-top: 20px; }
.left20 { margin-left: -20px; }
.right20 { margin-right: -20px; }
.up25 { margin-top: -25px; }
.down25 { margin-top: 25px; }
.left25 { margin-left: -25px; }
.right25 { margin-right: -25px; }
.up30 { margin-top: -30px; }
.down30 { margin-top: 30px; }
.left30 { margin-left: -30px; }
.right30 { margin-right: -30px; }
.up40 { margin-top: -40px; }
.down40 { margin-top: 40px; }
.left40 { margin-left: -40px; }
.right40 { margin-right: -40px; }
.up50 { margin-top: -50px; }
.down50 { margin-top: 50px; }
.left50 { margin-left: -50px; }
.right50 { margin-right: -50px; }

/* absolute / fixed */
.all0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.all10 {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
}
.all20p {
    top: 20%;
    right: 20%;
    bottom: 20%;
    left: 20%;
}
.ctr {
    top: 10px;
    right: 10px;
}
.ctl {
    top: 10px;
    left: 10px;
}
.cbr {
    bottom: 10px;
    right: 10px;
}
.cbl {
    bottom: 10px;
    left: 10px;
}
.tophalf {
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50%;
}
.bottomhalf {
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 50%;
}
.lefthalf {
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 50%;
}
.righthalf {
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50%;
}
.t0i { top: 0px !important; }
.b0i { bottom: 0px !important; }
.l0i { left: 0px !important; }
.r0i { right: 0px !important; }
.t0, .top0 { top: 0px; }
.b0, .bottom0 { bottom: 0px; }
.l0, .left0 { left: 0px; }
.r0, .right0 { right: 0px; }
.t5, .top5 { top: 5px; }
.b5, .bottom5 { bottom: 5px; }
.l5, .left5 { left: 5px; }
.r5, .right5 { right: 5px; }
.t10, .top10 { top: 10px; }
.b10, .bottom10 { bottom: 10px; }
.l10, .left10 { left: 10px; }
.r10, .right10 { right: 10px; }
.t15, .top15 { top: 15px; }
.b15, .bottom15 { bottom: 15px; }
.l15, .left15 { left: 15px; }
.r15, .right15 { right: 15px; }
.t20, .top20 { top: 20px; }
.b20, .bottom20 { bottom: 20px; }
.l20, .left20 { left: 20px; }
.r20, .right20 { right: 20px; }
.t50, .top50 { top: 50px; }
.b50, .bottom50 { bottom: 50px; }
.l50, .left50 { left: 50px; }
.r50, .right50 { right: 50px; }
.t100, .top100 { top: 100px; }
.b100, .bottom100 { bottom: 100px; }
.l100, .left100 { left: 100px; }
.r100, .right100 { right: 100px; }
.t200, .top200 { top: 200px; }
.b200, .bottom200 { bottom: 200px; }
.l200, .left200 { left: 200px; }
.r200, .right200 { right: 200px; }

/* size */
.bigish { font-size: 110%; }
.big { font-size: 120%; }
.bigger { font-size: 140%; }
.biggest { font-size: 180%; }
.biggerer { font-size: 200%; }
.biggerest { font-size: 230%; }
.biggerester { font-size: 300%; }
.gigantic { font-size: 400%; }
.slightlysmall { font-size: 95%; }
.smallish { font-size: 90%; }
.smallisher { font-size: 85%; }
.small { font-size: 80%; }
.smaller { font-size: 60%; }
.smallest { font-size: 40%; }
.smallerest { font-size: 30%; }
.tiny { font-size: 25%; }
.fs30 { font-size: 30px }
.fs50 { font-size: 50px }
.fs70p { font-size: 70% }
.fs75p { font-size: 75% }

.bigbutts button { font-size: 120%; }
.biggerbutts button { font-size: 140%; }
.biggestbutts button { font-size: 180%; }

/* appearance */
.m0 { margin: 0px !important; }
.m5 { margin: 5px; }
.m10 { margin: 10px; }
.m15 { margin: 15px; }
.m20 { margin: 20px; }
.m30 { margin: 30px; }
.mv5 {
    margin-top: 5px;
    margin-bottom: 5px;
}
.mv10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mh5 {
    margin-right: 5px;
    margin-left: 5px;
}
.mh10 {
    margin-right: 10px;
    margin-left: 10px;
}
.mh20 {
    margin-right: 20px;
    margin-left: 20px;
}
.mh40 {
    margin-right: 40px;
    margin-left: 40px;
}
.mt5 { margin-top: 5px; }
.mr5 { margin-right: 5px; }
.mb5 { margin-bottom: 5px; }
.ml5 { margin-left: 5px; }
.mt10 { margin-top: 10px; }
.mr10 { margin-right: 10px; }
.mb10 { margin-bottom: 10px; }
.ml10 { margin-left: 10px; }
.mt15 { margin-top: 15px; }
.mr15 { margin-right: 15px; }
.mb15 { margin-bottom: 15px; }
.ml15 { margin-left: 15px; }
.mt20 { margin-top: 20px; }
.mr20 { margin-right: 20px; }
.mb20 { margin-bottom: 20px; }
.ml20 { margin-left: 20px; }
.mt40 { margin-top: 40px; }
.mt100 { margin-top: 100px; }
.mr100 { margin-right: 100px; }
.mb100 { margin-bottom: 100px; }
.ml100 { margin-left: 100px; }
.mt160 { margin-top: 160px; }
.mr160 { margin-right: 160px; }
.mb160 { margin-bottom: 160px; }
.ml160 { margin-left: 160px; }

.pt1-2 { padding-top: 50%; }
.pt100 { padding-top: 100px; }
.pt120 { padding-top: 120px; }
.pt140 { padding-top: 140px; }
.p0 { padding: 0px !important; }
.p1 { padding: 1px; }
.p2 { padding: 2px; }
.p3 { padding: 3px; }
.p4 { padding: 4px; }
.p5 { padding: 5px; }
.p10 { padding: 10px; }
.p20 { padding: 20px; }
.p20i { padding: 20px !important; }
.p30 { padding: 30px; }
.p40 { padding: 40px; }
.p50 { padding: 50px; }
.p60 { padding: 60px; }
.p70 { padding: 70px; }
.p80 { padding: 80px; }
.ph5 {
    padding-right: 5px;
    padding-left: 5px;
}
.ph10 {
    padding-right: 10px;
    padding-left: 10px;
}
.ph20 {
    padding-right: 20px;
    padding-left: 20px;
}
.ph30 {
    padding-right: 30px;
    padding-left: 30px;
}
.ph40 {
    padding-right: 40px;
    padding-left: 40px;
}
.ph50 {
    padding-right: 50px;
    padding-left: 50px;
}
.ph60 {
    padding-right: 60px;
    padding-left: 60px;
}
.pv5 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.pv10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.pv20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.pv30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.pv40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.pv50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pv60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pt5 {
    padding-top: 5px;
}
.pb5 {
    padding-bottom: 5px;
}
.pl5 {
    padding-left: 5px;
}
.pr5 {
    padding-right: 5px;
}
.pt10 {
    padding-top: 10px;
}
.pb10 {
    padding-bottom: 10px;
}
.pl10 {
    padding-left: 10px;
}
.pr10 {
    padding-right: 10px;
}
.pr15 {
    padding-right: 15px;
}
.pt20 {
    padding-top: 20px;
}
.pb20 {
    padding-bottom: 20px;
}
.pl20 {
    padding-left: 20px;
}
.pr20 {
    padding-right: 20px;
}
.pt30 {
    padding-top: 30px;
}
.pb30 {
    padding-bottom: 30px;
}
.pl30 {
    padding-left: 30px;
}
.pr30 {
    padding-right: 30px;
}
.pt40 {
    padding-top: 40px;
}
.pb40 {
    padding-bottom: 40px;
}
.pl40 {
    padding-left: 40px;
}
.pr40 {
    padding-right: 40px;
}
.pt50 {
    padding-top: 50px;
}
.pb50 {
    padding-bottom: 50px;
}
.pl50 {
    padding-left: 50px;
}
.pr50 {
    padding-right: 50px;
}
.pt60 {
    padding-top: 60px;
}
.pb60 {
    padding-bottom: 60px;
}
.pl60 {
    padding-left: 60px;
}
.pr60 {
    padding-right: 60px;
}
.pt70 {
    padding-top: 70px;
}
.pb70 {
    padding-bottom: 70px;
}
.pl70 {
    padding-left: 70px;
}
.pr70 {
    padding-right: 70px;
}
.pt80 {
    padding-top: 80px;
}
.pb80 {
    padding-bottom: 80px;
}
.pl80 {
    padding-left: 80px;
}
.pr80 {
    padding-right: 80px;
}
.lh1-2 {
    line-height: 1.2;
}
.lh1-3 {
    line-height: 1.3;
}
.bold { font-weight: bold; }
.italic { font-style: italic; }
.bordered { border: 1px solid black; }
.noborder { border: 0px !important; }
.bw0 { border-width: 0px ;}
.shadowed { text-shadow: 1px 1px 1px #fff, 2px 2px 2px #111; }
.outlined {
    text-shadow:
        -2px -2px 0 #000,
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000;
}
.glowing {
    -webkit-transition: text-shadow 1s;
    -moz-transition: text-shadow 1s;
    -ms-transition: text-shadow 1s;
    -o-transition: text-shadow 1s;
    transition: text-shadow 1s;
}
.glowing:hover, .glowing.glogo {
    text-shadow:
        -2px -2px 0 gold,
         2px -2px 0 gold,
        -2px  2px 0 gold,
         2px  2px 0 gold;
}
.htop:hover {
    border-top: 1px solid white;
}
.hbottom:hover {
    border-bottom: 1px solid white;
}
.hleft:hover {
    border-left: 1px solid white;
}
.hright:hover {
    border-right: 1px solid white;
}
.hsides:hover {
    border-left: 1px solid white;
    border-right: 1px solid white;
}
.round {
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.rounder {
    border-radius: 15px 15px 15px 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}
.roundest {
    border-radius: 25px 25px 25px 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
}
.blockquote {
    padding: 50px !important;
    text-align: justify;
}
.code {
    font-family: monospace;
    color: green;
    background: black;
    border: 2px dashed green;
    padding: 20px !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* behavior */
.border-box { box-sizing: border-box; }
.wrap { word-wrap: break-word; }
.nowrap { white-space: nowrap; }
.nonowrap { white-space: normal; }
.notouch { pointer-events: none; }
.pointer { cursor: pointer; }
.pointerimp { cursor: pointer !important; }
.scroller { overflow: auto; }
.noflow { overflow: hidden !important; }
.scrollx { overflow-x: auto !important; overflow-y: hidden; }
.scrolly { overflow-y: auto !important; overflow-x: hidden; }
.hoverglow:hover {
    box-shadow: 0px 0px 10px yellow;
    color: yellow;
}

/* required CT classes */
.activetab, .activetab a {
    color: #670002;
}
.backdrop {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10010;
}
.lightbox {
    position: fixed;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background: white;
}
.backdrop-img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.backtilt {
    display: inline-block;
    -webkit-transform: skewX(9deg);
    -moz-transform: skewX(9deg);
    -ms-transform: skewX(9deg);
    -o-transform: skewX(9deg);
}
.squashed {
    transform: scaleY(0.5);
}
.bare {
    padding: 0px !important;
    margin: 0px !important;
}
.basicmodal {
    z-index: 5;
    position: fixed;
    padding: 10px;
    background: white;
    border: 1px solid black;
    top: 50%;
    left: 50%;
    max-height: 400px;
    width: 550px;
    margin-top: -200px;
    margin-left: -275px;
    overflow-y: auto;
}
.basicpopup {
    z-index: 10020;
    position: fixed;
    padding: 10px;
    max-height: 90%;
    max-width: 80%;
    background: white;
    border: 1px solid black;
}
.noframe {
    background: none;
    border: none;
}
.bb {
    box-sizing: border-box;
}
.pink {
    color: pink;
}
.purple {
    color: purple;
}
.blue {
    color: #010068;
}
.blueblue {
    color: blue;
}
.blueback {
    background: blue;
}
.bordered-gray {
    border: 1px solid #ccc;
}
.bottom {
    bottom: 10px;
}
.bottom_out {
    bottom: -150px !important;
}
.toppadded {
    padding-top: 10px;
}
.topmargined {
    margin-top: 10px;
}
.topbordered {
    border-top: 1px solid black;
}
.bottompadded {
    padding-bottom: 10px;
}
.bottommargined {
    margin-bottom: 10px;
}
.bottombordered {
    border-bottom: 1px solid black;
}
.left_out {
    left: -150px !important;
}
.right_out {
    right: -150px !important;
}
.button_row {
    position: fixed;
    text-align: center;
    pointer-events: none;
    -webkit-transition: top 1s, bottom 1s;
    -moz-transition: top 1s, bottom 1s;
    -o-transition: top 1s, bottom 1s;
    transition: top 1s, bottom 1s;
    right: 0px;
    left: 0px;
}
.button_row_side {
    position: fixed;
    text-align: center;
    pointer-events: none;
    -webkit-transition: left 1s, right 1s;
    -moz-transition: left 1s, right 1s;
    -o-transition: left 1s, right 1s;
    transition: left 1s, right 1s;
    top: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.button_row > div, .button_row_side > div, #mobile_search_node {
    margin: 2px;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: auto;
    cursor: pointer;
}
.ibkid div,
.button_row div {
    display: inline-block;
}
.centeredimg img {
    margin-left: auto;
    margin-right: auto;
}
.centeredpopup {
    z-index: 5;
    position: fixed;
    padding: 10px;
    background: white;
    border: 1px solid black;
    top: 50%;
    left: 50%;
    max-height: 400px;
    width: 550px;
    margin-top: -200px;
    margin-left: -275px;
    text-align: center;
    overflow-y: auto;
}
.choice_cell {
    border: 1px solid black;
    margin: 5px;
    padding: 10px;
    cursor: pointer;
}
.lightgrayback,
.choice_cell:hover {
    background: lightgray;
}
.filler {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
}
.fullheight {
    height: 100%;
}
.fullwidth {
    width: 100%;
}
.fwimg img {
    width: 100%;
}
.full-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.yellow {
    color: yellow;
}
.yellowback {
    background: yellow;
}
.green {
    color: green;
}
.greenback {
    background: green;
}
.gray {
    color: gray;
}
.grayback {
    background: gray;
}
.grayback-trans {
    background-color: rgba(100, 100, 100, 0.8);
}
.halfheight {
    height: 50%;
}
.halfwidth {
    width: 50%;
}
.thirdwidth {
    width: 33%;
}
.fourthwidth {
    width: 25%;
}
.leftalign {
    text-align: left;
}
.lfloat {
    float: left;
}
.underline,
.underline a {
    text-decoration: underline;
}
.nodecoration,
.nodecoration a {
    text-decoration: none;
}
.padded {
    padding: 10px;
}
.smallpadded, .padded5 {
    padding: 5px;
}
.subpadded div {
    padding: 10px;
}
.subpadded5 div {
    padding: 5px;
}
.kidvp div {
    padding-bottom: 5px;
}
.kidvp10 div {
    padding-bottom: 10px;
}
.kidvp20 div {
    padding-bottom: 20px;
}
.bpsub > div {
    padding-bottom: 30px;
}
.tabbed {
    padding-left: 20px;
}
.red {
    color: red;
}
.redi {
    color: red !important;
}
.redback {
    background: red;
}
.redbacki {
    background: red !important;
}
.rightround {
    border-radius: 0px 15px 15px 0px;
    -moz-border-radius: 0px 15px 15px 0px;
    -webkit-border-radius: 0px 15px 15px 0px;
}
.rpadded {
    padding-right: 5px;
}
.rpaddedsmall {
    padding-right: 2px;
}
.lpaddedsmall {
    padding-left: 2px;
}
.lpadded {
    padding-left: 5px;
}
.rmargined {
    margin-right: 5px;
}
.lmargined {
    margin-left: 5px;
}
.shiftleft {
    margin-left: -18px;
}
.shiftup {
    margin-top: -5px;
}
.shiftright {
    margin-right: -15px;
}
.shiftdown {
    margin-bottom: -15px;
}
.shiftall {
    margin: -15px;
}
.shift5 {
    margin: -5px;
}
.shift10 {
    margin: -10px;
}
.tooltip {
    position: absolute;
    border: 1px solid gray;
    background: white;
    padding: 2px;
}
.top {
    top: 10px;
}
.top_out {
    top: -250px !important;
}
.unlimited {
    max-height: 100% !important;
    max-width: 100% !important;
}
.vcrunch {
    margin-top: -25px;
    margin-bottom: -25px;
}
.h50 {
    height: 50px;
}
.h100 {
    height: 100px;
}
.h20p {
    height: 20%;
}
.w100 {
    width: 100px;
}
.w120 {
    width: 120px;
}
.w280 {
    width: 280px;
}
.w20p {
    width: 20%;
}
.white {
    color: white;
}
.black {
    color: black;
}
.whiteback {
    background: white;
}
.whitebacktrans {
    background: rgba(255, 255, 255, 0.5);
}
.backtrans {
    background: rgba(255, 255, 255, 0.0);
}
a.whitelink, .whitelink a {
    color: white;
}
/* drop classes */
.drop {
  z-index: 10;
  position: fixed;
  max-height: 0px;
  text-align: left;
  overflow: hidden;
  -webkit-transition: max-height 600ms ease-out;
}
.drop-rows div div {
  padding: 5px 15px;
  border-bottom: 1px solid gray;
  background: lightgray;
  cursor: pointer;
}
.drop-rows div div:hover, .drop-selection {
  color: white;
  font-weight: bold;
  background-color: darkgray !important;
}
.drop-open {
    max-height: 200px;
}
/* Slider classes */
.carousel {
    position: absolute;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    background: black;
    transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -webkit-transition: opacity 500ms ease-in-out;
}
.carousel-nostyle {
    background: initial;
}
.carousel-nostyle .carousel-content-container {
    color: initial;
}
.indicator-circle {
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(100, 100, 100, 0.8);
    min-width: 50px;
    min-height: 40px;
    font-size: 150%;
    color: white;
    font-weight: bold;
}
.labeled-circle {
    padding: 15px;
}
.unlabeled-circle {
    width: 15px;
}
.active-circle {
    background-color: rgba(200, 200, 200, 0.8);
}
.bp-left {
    background-position: left;
    background-size: cover;
}
.bp-right {
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}
.bp-right-i {
    background-position: right !important;
    background-size: cover !important;
}
.carousel-content-container {
    position: relative;
    color: white;
}
.carousel-content-image {
    z-index: 100;
    position: absolute;
    top: 0px;
    right: 0px;
}
.carousel-pulse {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40%;
    height: 30%;
}
.carousel-content-teaser {
    z-index: 200;
    padding: 10px;
    width: 56%;
    min-height: 28%;
    white-space: normal;
    position: absolute;
    top: 100px;
    left: 22.5%;
    border-radius: 15px;
}

.cc-teaser-trans {
    background-color: rgba(100, 100, 100, 0.7);
}

.cc-teaser-opaque {
    background-color: rgba(100, 100, 100, 1);
}

.carousel-content-full {
    padding: 10px;
    margin-top: 10px;
    position: absolute;
    top: 30%;
    right: 10px;
    left: 10px;
    bottom: 10px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.25);
    white-space: normal;
    overflow-x: hidden;
    overflow-y: auto;
}
.carousel-content-full>div {
    border: 1px solid gray;
    margin: 5px;
    padding: 5px;
}
.carousel-order-indicator {
    text-align: center;
    position: absolute;
    width: 100%;
}
.slider-btn {
    position: absolute;
    color: white;
    font-size: 1000%;
    font-weight: bold;
    z-index: 1001;
    border-radius: 50%;
    box-shadow: 0px 0px 5px #fff;
    background-color: rgba(200, 200, 200, 0.6);
}
.slider-btn span {
    line-height: 1;
}
.sb-middle {
    top: 50%;
    margin-top: -100px;
}
.sb-top {
    top: 90px;
}
.sb-vertical div {
    transform: rotate(90deg);
}
.sb-bottom {
    bottom: 90px;
}
.sb-bottomer {
    bottom: 10px;
}
.fullbottom {
    left: 10px;
    right: 10px;
    bottom: 10px;
}
.nxt {
    right: 10px;
}
.prv {
    left: 10px;
}

/* required CT ids */
#ctheader {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 105px; /* was 45 before default (but config-specified) border-box */
    padding: 30px;
    border-radius: 0px 0px 7px 7px;
    overflow: hidden;
    z-index: 10000;
}
#ctmain {
    position: absolute;
    top: 100px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}
#ctfooter {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 120px;
    overflow: hidden;
}
#ctfooter img {
    max-height: 120px;
}
.footered #ctmain {
    bottom: 120px;
}
.unheadered #ctheader {
    display: none;
}
.unheadered #ctmain {
    top: 0;
}
.ctlist {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 190px;
    overflow: auto;
}
.ctcontent {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 200px;
    right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}
.ctlist2 {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 240px;
    overflow-x: hidden;
    overflow-y: auto;
}
.ctcontent2 {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 250px;
    right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}
.ctlist3 {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 290px;
    overflow-x: hidden;
    overflow-y: auto;
}
.ctcontent3 {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 300px;
    right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.ctform.stepper > div {
    max-height: 0;
    overflow: hidden;
    transition: 1s max-height;
}

.ctform.stepper > .curstep {
    max-height: 80vh;
}

#top_buttons {
    top: 3px;
}
#bottom_buttons {
    bottom: 30px;
}
#left_buttons {
    left: 10px;
}
#right_buttons {
    right: 10px;
}
#resize_btn, #mobile_menu_btn {
    cursor: pointer;
    position: fixed;
    top: 5px;
    z-index: 10;
}
#resize_btn {
    left: 5px;
}
#mobile_menu_btn {
    right: 5px;
}
#resize_btn div, #mobile_menu_btn div {
    background: rgba(255, 255, 255, 0.75);
}
#mobile_search {
    width: 90%;
}
#mobile_search_node {
    display: block;
    height: 35px;
    margin-right: 65px;
    margin-left: 65px;
}
#mobile_search_node div {
    display: block;
    margin-top: -5px;
}

/* some extras for funsies */
.infobubble {
    position: fixed;
    z-index: 999999;
}
.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
}
.overlay:hover, .active_overlay {
    opacity: 1;
}
.margined {
    margin: 5px;
}
button, a, label, input[type='checkbox'], .pointer {
    cursor: pointer;
}

.defpointer {
    cursor: pointer !important;
}

.lister {
    border: 1px solid darkgray;
    margin: 2px;
    padding: 2px;
    cursor: pointer;
}

.keycell {
    float: left;
    width: 180px;
    font-weight: bold;
}

.dropper {
    text-align: center;
    border: 2px dashed black;
}

.dropper label {
    height: 0px;
    display: block;
}

.dropper input {
    height: 100%;
}

.dropper:hover {
    background: grey;
}

/* loading spinner */
/* source: https://css-tricks.com/examples/Loading/ */
.ctswrap {
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}
.ctspinner {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50px;
       -moz-border-radius: 50px;
            border-radius: 50px;
    background: #ccc;
    font: 12px "Lucida Grande", Sans-Serif;
    text-align: center;
    line-height: 100px;
    color: white;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.ctspinner:before {
    z-index: -2;
    content: "";
    position: absolute;
      left: -20px;
       top: -20px;
    bottom: -20px;
     right: -20px;
    -webkit-border-radius: 70px;
       -moz-border-radius: 70px;
            border-radius: 70px;
    background: #eee;
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}
.ctspinner span {
    z-index: -1;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 80px solid rgba(255,255,255,0.7);
    top: -28px;
    left: 0px;
    -webkit-animation: ticktock 5s linear infinite;
    -webkit-transform-origin: 50px 80px;
}
.ctspinner strong {
    overflow: hidden;
    display: block;
    margin: 0 auto;
    -webkit-animation: expand 2.5s linear infinite;
}

@-webkit-keyframes expand {
    0% {
            width: 0;
    }
    100% {
            width: 60px;
    }
}

@-webkit-keyframes ticktock {
    0% {
            -webkit-transform: rotate(0);
    }
    100% {
            -webkit-transform: rotate(360deg);
    }
}

.ct_chat_buttons {
    height: 30px;
    text-align: center;
}

.ct_chat_presence {
    width: 150px;
    height: 150px;
    overflow-x: hidden;
    overflow-y: auto;
}

.ct_chat_spot {
    height: 75px;
    width: 150px;
}

.ct_chat_people {
    width: 150px;
    height: 225px;
}

.ct_chat_channels {
    width: 150px;
    height: 225px;
    overflow-y: auto;
}

.ct_chat_side {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
}

.ct_chat_main {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 150px;
}

.ct_chat_main .chatout {
    width: 402px;
    height: 200px;
    border: 1px solid gray;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 80%;
}
.ct_chat_main .chatin {
    width: 400px;
}

.ct_chat_widget {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 111px;
    height: 17px;
    z-index: 1000;
    overflow: hidden;
    background: white;
    transition: all 1s;
}

.ct_chat_widget > div {
    opacity: 0;
    transition: opacity 1s;
}

.ct_chat_widget.expanded {
    width: 558px;
    height: 257px;
}

.ct_chat_widget.expanded > div {
    opacity: 1;
}

div.mce-fullscreen {
    z-index: 99999;
}

.cal .month button {
    vertical-align: super;
}

.cal .days {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.cal .days > div {
    width: 14.285714285714286%;
    position: relative;
    border: 1px solid darkgray;
}

.cal .days > div:hover {
    background: lightgoldenrodyellow;
}

.cal .days > div:nth-child(n+8) {
    padding-bottom: 14%;
}

.cal .days .today {
    background: lightpink;
}

.cal .days .other {
    color: white;
    background: gray;
}

.cal .days .appointment {
    margin: 1px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid lightblue;
}

.cal .days .appointment:hover {
    background: lightblue;
}

.ct-series-p .ct-bar, .ct-series-p .ct-line, .ct-series-p .ct-point, .ct-series-p .ct-slice-donut {
    stroke: pink;
}

.ctmarquee {
/*    position: relative;
    overflow: hidden;*/
}

.ctmarquee > div {
    position: absolute;
    width: 100%;
    height: 100%;
    -moz-animation: ctmarquee 5s linear infinite alternate;
    -webkit-animation: ctmarquee 5s linear infinite alternate;
    animation: ctmarquee 5s linear infinite alternate;
}

@-moz-keyframes ctmarquee {
    0%   { -moz-transform: translateX(70%); }
    100% { -moz-transform: translateX(0%); }
}
@-webkit-keyframes ctmarquee {
    0%   { -webkit-transform: translateX(70%); }
    100% { -webkit-transform: translateX(0%); }
}
@keyframes ctmarquee {
    0% {
        -moz-transform: translateX(70%); /* Firefox bug fix */
        -webkit-transform: translateX(70%); /* Firefox bug fix */
        transform: translateX(70%);
    }
    100% {
        -moz-transform: translateX(0%); /* Firefox bug fix */
        -webkit-transform: translateX(0%); /* Firefox bug fix */
        transform: translateX(0%);
    }
}

#ctheader.hamburgize #hambo {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 600%;
    display: none;
}

#ctheader.hamburgize  #hambo:before {
    content: '\2630';
}

@media (max-width: 600px) {
    .hamburgize #ctll {
        position: fixed;
        right: -170px;
        bottom: 0;
        width: 170px;
        font-size: 300%;
        background: black;
        transition: right 1s;
    }
    #ctheader.hamburgize.slidin #ctll {
        right: 0;
    }
    #ctheader.hamburgize #hambo {
        display: block;
    }
    .ctlist {
        left: 0;
        width: 20%;
    }
    .ctcontent {
        right: 0;
        left: 20%;
    }
}