/*Main.CSS*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #1d1d1d;
}

.best-html {
    max-width: 794px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.best-html .header {
    display: flex;
    background: #D4CBC3;
    justify-content: end;
    padding: 30px;
    background-size: contain;
}

.best-html .article>h2{
    color: #0071bc;
    font-size: 14px;
    text-align: left;
    margin-top: 0;
}

.best-html .article {
    padding: 40px 100px;
}

.best-html .footer {
    background: #D4CBC3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
}

.best-html .footer p {
    margin-bottom: 0;
}

.best-html p {
    margin-bottom: 16px;
    text-align: justify;
}

.best-html strong {
    font-weight: 700;
}

.best-html h1 {
    margin-bottom: 0.5em;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #0071bc;
}

.best-html h1 span {
    font-size: 14px;
    position: relative;
    top: -3px;
    margin-left: 0.5em;
}

.best-html h2, .best-html h3 {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    margin: 30px 0 10px;
    color: #0071bc;
}

.best-html :is(a:link, a:visited, a:hover, a:active) {
    color: #0071bc;
    white-space: nowrap;
    text-decoration: none;
}

.best-html ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

.best-html ul li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 0.25em;
}

.best-html ul li:before {
    content: '\2022';
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 19px;
    line-height: 1;
    font-family: Arial, sans-serif;
    color: #0071bc;
}

.best-html img {
    max-width: 100%;
    vertical-align: middle;
}

.best-html .nobr {
    white-space: nowrap;
}

@media (max-width: 793px) {
    .best-html {
        margin: 0;
    }

    .best-html .article {
        padding: 5%;
    }

    .best-html .header {
        padding: 16px;
    }

    .best-html :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
        text-align: left;
    }

    .best-html br:not(.br br) {
        display: none;
    }
}

@media (max-width: 519px) {
    .best-html .footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .best-html .footer p {
        text-align: center;
    }
}

/* bootstrap 4 alpha */
@media print {
    body * {
        font-size: 8pt !important;
        margin: 0 !important;
        max-width: 100%;
    }
    .nurjobansicht {
        display:none;
    }
    #sidebar, #footer {
        display:none;
    }
	.suq p {
		margin: 10px 0 !important;
	}
	.suq ul {
		padding-left: 10px !important;
	}
	.suq li {
		list-style-type: disc;
		padding-left: 0px !important;
	}
}

.hidden-xs-up {
  display: none !important;
}

@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}

.hidden-xl-down {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/* end bootstrap 4 alpha */

.best-html .bbutton {
    background-color: white;
    color: #0C68B0;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #0C68B0;
    transition: background-color 0.4s, color 0.4s;
    min-width: fit-content;
}

.best-html .bbutton span {
    color: #CCD328;
}

.best-html .bbutton:hover {
    background-color: #0C68B0;
    color: white;
    border: 1px solid #0C68B0;
}