	@import url("bootstrap.min.css");
	@import url("jquery.fullPage.css");
	@import url("magnific-popup.css");
	@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800");
	@import url("ionicons.min.css");


	/* BASIC STYLES */

	html,
	body {
	  width: 100%;
	}

	body {
	  font-size: 16px;
	  line-height: 1.1em;
	  font-family: 'Open Sans', sans-serif;
	  color: #fff;
	  font-weight: 300;
	  background: #262626;
	  -webkit-font-smoothing: antialiased;
	  text-rendering: optimizeLegibility;
	  transition: background 0.5s ease-In-Out 0s;
	  -moz-transition: background 0.5s ease-In-Out 0s;
	  -webkit-transition: background 0.5s ease-In-Out 0s;
	  -o-transition: background 0.5s ease-In-Out 0s;
	  -ms-transition: background 0.5s ease-In-Out 0s;
	}

	body > .backstretch {
	  opacity: 0.2 !important;
	  transition: opacity 0.5s ease-In-Out 0s;
	  -moz-transition: opacity 0.5s ease-In-Out 0s;
	  -webkit-transition: opacity 0.5s ease-In-Out 0s;
	  -o-transition: opacity 0.5s ease-In-Out 0s;
	  -ms-transition: opacity 0.5s ease-In-Out 0s;
	}

	a,
	a:hover,
	a:active,
	a:focus {
	  outline: 0;
	  border: 0;
	  text-decoration: none;
	}

	a {
	  color: inherit;
	  border-bottom: 1px dotted #fff;
	  font-weight: 700;
	  transition: all 0.25s ease-In-Out 0s;
	  -moz-transition: all 0.25s ease-In-Out 0s;
	  -webkit-transition: all 0.25s ease-In-Out 0s;
	  -o-transition: all 0.25s ease-In-Out 0s;
	  -ms-transition: all 0.25s ease-In-Out 0s;
	}

	a:hover {
	  color: #00a7e7;
	  border-bottom: 1px dotted #fff;
	}

	h2 {
	  font-family: "Georgia";
	  font-weight: bold;
	  font-size: 3em;
	}

	h3 {
	  font-family: "Georgia";
	  font-size: 3em;
	  font-weight: bold;
	  display: inline-block;
	  margin-top: 0;
	  margin-bottom: 40px;
	}

	h3::after {
	  content: '';
	  display: block;
	  height: 1px;
	  width: 40px;
	  margin: 8px auto 0;
	  background: #00a7e7;
	}

	strong {
	  font-weight: 700;
	}

	.section {
	  padding-top: 50px;
	  padding-bottom: 50px;
	  opacity: 0;
	  transition: opacity 0.25s ease-In-Out 0s;
	  -moz-transition: opacity 0.25s ease-In-Out 0s;
	  -webkit-transition: opacity 0.25s ease-In-Out 0s;
	  -o-transition: opacity 0.25s ease-In-Out 0s;
	  -ms-transition: opacity 0.25s ease-In-Out 0s;
	}

	.section.active {
	  opacity: 1 !important;
	  transition: opacity 0.25s ease-In-Out 0.25s;
	  -moz-transition: opacity 0.25s ease-In-Out 0.25s;
	  -webkit-transition: opacity 0.25s ease-In-Out 0.25s;
	  -o-transition: opacity 0.25s ease-In-Out 0.25s;
	  -ms-transition: opacity 0.25s ease-In-Out 0.25s;
	}

	.inactive {
	  pointer-events: none;
	  cursor: default;
	}

	.section.active .inactive {
	  pointer-events: auto;
	  cursor: pointer;
	}

	.mfp-bg {
	  background: #fff;
	}

	::-moz-selection {
	  color: #00a7e7;
	  background: transparent;
	}

	::selection {
	  color: #00a7e7;
	  background: transparent;
	}

	/* MENU */

	header {
	  position: fixed;
	  z-index: 2;
	  width: 100%;
	  padding: 30px 100px;
	}

	.logo h1 {
	  display: block;
	  width: 60px;
	  height: 45px;
	  margin: 0;
	  text-indent: -9999px;
	  background: url("../img/logo2.png") no-repeat 0 0 transparent;
	  transition: background 0.5s ease-In-Out 0s;
	  -moz-transition: background 0.5s ease-In-Out 0s;
	  -webkit-transition: background 0.5s ease-In-Out 0s;
	  -o-transition: background 0.5s ease-In-Out 0s;
	  -ms-transition: background 0.5s ease-In-Out 0s;
	}

	body.fp-viewing-home .logo h1 {
	  background: url("../img/logo.png") no-repeat 0 0 transparent;
	}

	.menu {
	  text-align: right;
	  height: 45px;
	}

	.menu ul {
	  list-style-type: none;
	  padding: 0;
	  margin: 5px 0 0 0;
	}

	.menu li {
	  display: inline-block;
	  padding: 0 15px;
	  position: relative;
	}

	.menu li:last-child {
	  margin-right: 0;
	}

	.menu li::after,
	.menu li::before {
	  content: '';
	  display: block;
	  height: 1px;
	  width: 0;
	  background: #00a7e7;
	  position: absolute;
	  transition: all 0.25s ease-In-Out 0s;
	  -moz-transition: all 0.25s ease-In-Out 0s;
	  -webkit-transition: all 0.25s ease-In-Out 0s;
	  -o-transition: all 0.25s ease-In-Out 0s;
	  -ms-transition: all 0.25s ease-In-Out 0s;
	}

	.mobile .menu li::after,
	.mobile .menu li::before {
	  display: none;
	}

	.menu li::after {
	  top: 0;
	  right: 7.5%;
	  left: auto;
	}

	.menu li::before {
	  bottom: 0;
	  left: 7.5%;
	  right: auto;
	}

	.menu li:hover::after,
	.menu li.active::after {
	  right: auto;
	  left: 7.5%;
	  width: 85%;
	  transition: all 0.25s ease-In-Out 0s;
	  -moz-transition: all 0.25s ease-In-Out 0s;
	  -webkit-transition: all 0.25s ease-In-Out 0s;
	  -o-transition: all 0.25s ease-In-Out 0s;
	  -ms-transition: all 0.25s ease-In-Out 0s;
	}

	.menu li:hover::before,
	.menu li.active::before {
	  left: auto;
	  right: 7.5%;
	  width: 85%;
	  transition: all 0.25s ease-In-Out 0s;
	  -moz-transition: all 0.25s ease-In-Out 0s;
	  -webkit-transition: all 0.25s ease-In-Out 0s;
	  -o-transition: all 0.25s ease-In-Out 0s;
	  -ms-transition: all 0.25s ease-In-Out 0s;
	}

	.menu a,
	.menu a:hover {
	  display: inline-block;
	  height: 34px;
	  line-height: 34px;
	  color: inherit;
	  text-transform: uppercase;
	  letter-spacing: 5px;
	  font-size: 0.6em;
	  font-weight: 300;
	  border-bottom: none;
	}

	/* HOME */

	body.fp-viewing-home {
	  background: #00a7e7;
	}

	body.fp-viewing-home > .backstretch {
	  opacity: 0.2 !important;
	}

	body.fp-viewing-home .scroll {
	  opacity: 1 !important;
	}

	body.fp-viewing-home .menu li::after,
	body.fp-viewing-home .menu li::before {
	  background: #fff;
	}

	.section.home {
	  opacity: 0;
	  padding-top: 0;
	  padding-bottom: 0;
	}

	.mobile .section.home {
	  opacity: 1;
	}

	.mobile .section.home .container {
	  position: relative;
	  top: 50%;
	}

	.home span {
	  font-size: 0.85em;
	  font-weight: 300;
	  text-transform: uppercase;
	  letter-spacing: 10px;
	}

	.home .scroll {
	  position: absolute;
	  bottom: 50px;
	  left: 50%;
	  transform: translateX(-50%);
	  display: block;
	  margin: 0 auto;
	  text-align: center;
	  opacity: 0;
	}

	.home .scroll a,
	.home .scroll a:hover {
	  display: block;
	  width: 40px;
	  color: inherit;
	  font-size: 2.5em;
	  border-bottom: none;
	}

	.home .scroll i {
	  position: relative;
	  top: 0;
	  transition: top 0.25s ease-In-Out 0s;
	  -moz-transition: top 0.25s ease-In-Out 0s;
	  -webkit-transition: top 0.25s ease-In-Out 0s;
	  -o-transition: top 0.25s ease-In-Out 0s;
	  -ms-transition: top 0.25s ease-In-Out 0s;
	}

	.home .scroll:hover i {
	  top: 15px;
	}

	/* ABOUT */

	.about p.info {
	  font-size: 0.85em;
	  line-height: 24px;
	  padding: 30px 0 0 0;
	  text-align: justify;
	  letter-spacing: 1px;
	}

	.about span.label {
	  font-size: 0.85em;
	  font-weight: 300;
	  text-transform: uppercase;
	  letter-spacing: 10px;
	  display: block;
	}

	.about .countdown {
	  font-size: 40px;
	  line-height: 40px;
	  padding-top: 20px;
	  letter-spacing: 2px;
	  font-weight: 700;
	  display: inline-block;
	}

	.about .date > span {
	  display: block;
	  width: 100%;
	  text-align: right;
	  font-size: 0.85em;
	  text-transform: uppercase;
	  letter-spacing: 5px;
	  padding-top: 20px;
	}

	/* SERVICES */

	.services .icon {
	  text-align: center;
	  padding: 35px 15px 0;
	}

	.services .icon i {
	  color: #00a7e7;
	  font-size: 2.5em;
	}

	.services .icon i::after {
	  content: '';
	  display: block;
	  width: 30px;
	  height: 1px;
	  background: #fff;
	  margin: 20px auto 0;
	}

	.services .icon p {
	  font-size: 0.85em;
	  margin-top: 20px;
	  line-height: 24px;
	  letter-spacing: 1px;
	}

	.services .image {
	  position: relative;
	  padding: 15px;
	  border: 2px solid #fff;
	  cursor: pointer;
	  display: block;
	  margin: 20px 0;
	}

	.services .image-box {
	  content: '';
	  display: block;
	  width: 100%;
	  height: 120px;
	}

	.services .mask {
	  content: '';
	  display: block;
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  top: 0;
	  left: 0;
	  overflow: hidden;
	  border: 15px solid transparent;
	}

	.services .mask::before {
	  content: '';
	  display: block;
	  background: #fff;
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  left: 0;
	  top: 0;
	  opacity: 0;
	  transition: opacity 0.75s ease-In-Out 0s;
	  -moz-transition: opacity 0.75s ease-In-Out 0s;
	  -webkit-transition: opacity 0.75s ease-In-Out 0s;
	  -o-transition: opacity 0.75s ease-In-Out 0s;
	  -ms-transition: opacity 0.75s ease-In-Out 0s;
	}

	.services .mask::after {
	  content: '';
	  display: block;
	  background: #fff;
	  width: 1000px;
	  height: 1000px;
	  position: absolute;
	  left: 150%;
	  top: -250px;
	  opacity: 0.5;
	  transform: rotate(25deg);
	  transition: opacity 0.35s ease-In-Out 0s;
	  -moz-transition: opacity 0.35s ease-In-Out 0s;
	  -webkit-transition: opacity 0.35s ease-In-Out 0s;
	  -o-transition: opacity 0.35s ease-In-Out 0s;
	  -ms-transition: opacity 0.35s ease-In-Out 0s;
	}

	.services .image:hover .mask::before {
	  opacity: 0.5;
	}

	.services .image:hover .mask::after {
	  left: 0;
	  opacity: 0;
	  transition: all 0.55s ease-In-Out 0s;
	  -moz-transition: all 0.55s ease-In-Out 0s;
	  -webkit-transition: all 0.55s ease-In-Out 0s;
	  -o-transition: all 0.55s ease-In-Out 0s;
	  -ms-transition: all 0.55s ease-In-Out 0s;
	}

	/* CONTACT */

	.contact.section {
	  padding-bottom: 0;
	}

	.contact p.info {
	  font-size: 0.85em;
	  line-height: 24px;
	  padding: 0;
	  text-align: justify;
	  letter-spacing: 1px;
	}

	.contact .icons ul {
	  list-style-type: none;
	  margin: 0;
	  padding: 0;
	}

	.contact .icons li {
	  margin-bottom: 30px;
	}

	.contact .icons i {
	  display: inline-block;
	  margin-right: 10px;
	  width: 25px;
	  color: #00a7e7;
	  text-align: center;
	  font-size: 1.4em;
	  line-height: 24px;
	}

	.contact .icons span {
	  display: inline-block;
	  vertical-align: top;
	  font-size: 0.85em;
	  letter-spacing: 1px;
	  line-height: 24px;
	}

	.contact .subscribe p {
	  line-height: 24px;
	  font-size: 0.85em;
	  letter-spacing: 1px;
	  text-align: justify;
	}

	.contact input {
	  outline: none;
	  text-decoration: none;
	  display: block;
	  background: transparent;
	  border: 0;
	  resize: none;
	  width: 100%;
	  font-size: 0.8em;
	  font-weight: 400;
	  line-height: 1.2em;
	  letter-spacing: 1px;
	  padding: 10px 10px;
	  position: relative;
	  border: 1px dashed #fff;
	  margin-top: 20px;
	}

	.contact label {
	  display: block;
	  font-size: 0.6em;
	  font-weight: 300;
	  letter-spacing: 5px;
	  padding: 10px 0;
	  text-transform: uppercase;
	}

	.contact button {
	  display: inline-block;
	  background: none;
	  margin: 20px 0;
	  border: 2px solid #fff;
	  color: #fff;
	  padding: 10px 20px;
	  font-size: 0.6em;
	  text-transform: uppercase;
	  letter-spacing: 5px;
	  font-weight: 400;
	}

	.contact .button-mask {
	  display: block;
	  width: 0;
	  height: 80px;
	  position: absolute;
	  overflow: hidden;
	  transition: width 0.20s linear 0s;
	  -moz-transition: width 0.20s linear 0s;
	  -webkit-transition: width 0.20s linear 0s;
	  -o-transition: width 0.20s linear 0s;
	  -ms-transition: width 0.20s linear 0s;
	}

	.contact .button-mask.active {
	  width: 110px;
	}

	.contact .button-mask > button {
	  position: absolute;
	  color: #00a7e7;
	  overflow: hidden;
	  border: 2px solid #00a7e7;
	}

	.contact .subscribe-message {
	  padding: 0 0 0 20px;
	  color: #00a7e7;
	  font-size: 0.8em;
	  font-weight: 700;
	  letter-spacing: 1px;
	}

	/* FOOTER */

	.contact footer {
	  padding: 50px 100px 30px;
	}

	.contact .socials {
	  font-size: 1.2em;
	}

	.contact .socials ul {
	  padding: 0;
	  margin: 0;
	  height: 40px;
	  line-height: 40px;
	  list-style-type: none;
	}

	.contact .socials li {
	  display: inline-block;
	}

	.contact .copyright {
/*	  font-size: 0.6em;*/
	  text-transform: uppercase;
	  letter-spacing: 5px;
	  text-align: right;
	}

	.contact .copyright p {
	  line-height: 40px;
	  margin: 0;
	}

	.contact .socials a {
	  display: block;
	  width: 35px;
	  text-align: center;
	  height: 40px;
	}

	.contact a {
	  color: inherit;
	  border-bottom: none;
	}

	.contact a:hover {
	  color: #00a7e7;
	}

	/* RESPONSIVE */

	@media (min-width: 1500px) {

	  .section {
	    opacity: 0.1;
	  }

	  .services .image-box {
	    height: 150px;
	  }
	}

	@media (max-width: 1200px) {

	  header {
	    /* padding: 30px 15px !important; */
	    padding: 50px !important;
	  }

	  .contact footer {
	    padding: 50px 15px 30px;
	  }
	}

	@media (max-width: 767px) {

	  body {
	    overflow-x: hidden;
	  }

	  h2,
	  h3 {
	    font-size: 2em;
	  }

	  header {
	    /* padding: 30px 10px !important; */
	    padding: 30px 0 50px 0 !important;
	    position: relative;
	  }

	  .section {
	    opacity: 1;
	  }

	  .inactive {
	    pointer-events: auto;
	    cursor: pointer;
	  }

	  .logo h1 {
	    margin: 0 auto 30px;
	    background: url("../img/logo2-2x.png") no-repeat 0 0 transparent;
	    background-size: 60px 45px;
	  }

	  body.fp-viewing-home .logo h1 {
	    background: url("../img/logo-2x.png") no-repeat 0 0 transparent;
	    background-size: 60px 45px;
	  }

	  .menu {
	    text-align: center;
	  }

	  .menu li {
	    margin-bottom: 10px;
	    padding: 0 15px;
	  }

	  .scroll {
	    display: none !important;
	  }

	  .services .image-box {
	    height: 160px;
	  }

	  .services .icon {
	    height: 234px;
	    padding: 50px 15px 0;
	  }

	  .contact footer {
	    padding: 30px 10px 30px;
	  }

	  .contact .socials ul,
	  .contact .copyright {
	    text-align: center;
	  }

	}

	/* mystyles */

	body {
	  color: #fff;
	  background: #fff;
	}

	body > .backstretch,
	body.fp-viewing-home > .backstretch {
	  opacity: 0 !important;
	}

	.menu,
	.menu a {
	  color: #fff;
	  font-weight: bold !important;
	}

	.logo h1,
	.menu {
	  margin-bottom: 5px;
	  margin-top: 5px;
	}

	.logo h1 {
	  margin-left: .5em;
	}

	header {
	  background: rgba(0, 0, 0, .85);
	  padding: 5px;
	}

	body.fp-viewing-home,
	body.fp-viewing-about,
	body.fp-viewing-services,
	body.fp-viewing-contact {
	  background: #fff;
	  /* background-image: url('../img/bg.jpg'); */
	  background-size: cover;
	  background-position: center;
	}

	/* body.fp-viewing-about {
	  background-image: url('../img/krankenschwester.jpg');
	}

	body.fp-viewing-services {
	  background-image: url('../img/bg3.jpg');
	}

	body.fp-viewing-contact {
	  background-image: url('../img/bg2.jpg');
	} */

	.section.home .container {
	  margin-top: 60%;
	}

	@media (max-width: 767px) {
	  .portrait > body {
	    background-image: none;
	  }

	  .logo h1,
	  .menu {
	    margin-bottom: 0;
	    margin-top: 0;
	  }

	  .logo h1 {
	    margin: 0 auto;
	  }

	  header {
	    padding-bottom: 50px;
	  }

	  #section-home {
	    /* background-image: url('../img/bg.jpg'); */
	    background-size: cover;
	    background-position: 20%;
	  }

	  #section-about {
	    /* background-image: url('../img/krankenschwester.jpg'); */
	    background-size: cover;
	    background-position: center;
	  }

	  #section-services {
	    /* background-image: url('../img/bg3.jpg'); */
	    background-size: cover;
	    background-position: 90%;
	  }

	  #section-contact {
	    /* background-image: url('../img/bg2.jpg'); */
	    background-size: cover;
	    background-position: right;
	  }

	  header {
	    position: fixed;
	    top: 0;
	    left: 0;
	  }

	  div#section-home.section.home.fp-section.fp-table {
	    opacity: 1;
	  }

	  .section.home .container {
	    margin-top: -50%;
	  }

	}

	.section h2,
	.section span.label {
	  display: inline;
	  background: #535353;
	  padding: 4px;
	}

	.section span.label {
	  background: #00a7e7;
	  color: #000;
	  line-height: 2em
	}

	#section-about span.label,
	#section-services span.label {
	  background: #fff;
	}

	.section p.line {
	  display: inline-block;
	  margin: 1em 0;
	  height: 1px;
	  width: 40px;
	  /*	  background: #00a7e7;*/
	  background: #000;
	}

	.home .scroll {
	  background: #535353;
	  padding: 0 0 3px 0;
	}

	.home .scroll:hover i {
	  top: 6px;
	}

	.section p.info {
	  margin-top: 4em;
	  background: #535353;
	  padding: 1em;
	}

	.services p.info {
	  padding: 0;
	  margin: 0;
	  background: #fff;
	  color: #000;
	}

	.services .tiles {
	  margin-top: 3em;
	}

	.icon i {
	  color: #fff !important;
	}

	.services .image {
	  border: 0;
	  /*	  background: rgba(255, 255, 255, .5);*/
	  /*	  background: rgba(0, 167, 231, 1);*/
	  background: #535353;
	}

	.contact-background {
	  background: #535353;
	  margin-left: 0;
	  margin-right: 0;
	  padding: 1em;
	}

	.services .icon i::after {
	  background: #fff;
	  margin: 2px auto 10px;
	}

	.contact .icons i {
	  color: #fff;
	}

	footer i {
	  color: #000;
	}

	.copyright p {
	  color: #000;
	  font-size: 11px;
	  font-weight: 400;
	}

	.contact textarea {
	  outline: none;
	  text-decoration: none;
	  display: block;
	  background: transparent;
	  border: 0;
	  resize: none;
	  width: 100%;
	  font-size: 0.8em;
	  font-weight: 400;
	  line-height: 1.2em;
	  letter-spacing: 1px;
	  padding: 10px 10px;
	  position: relative;
	  border: 1px dashed #fff;
	  margin-top: 20px;
	  height: 170px;
	}

	.contact .button-mask.active {
	  width: 116px;
	}

	.contact .button-mask > button {
	  position: absolute;
	  color: #00a7e7;
	  overflow: hidden;
	  border: 2px solid #00a7e7;
	  border-right: 2px solid #00a7e7;
	}

	.contact .subscribe-message {
	  padding: 0;

	}

	/*Impressum*/

	#impressumcontainer,
	#datenschutzcontainer {
	  width: 100%;
	  height: 100%;
	  background: #fff;
	  position: fixed;
	  top: -120%;
	  left: 0;
	  z-index: 9999999;
	  padding-left: 2em;
	}

	#impressumclose {
	  margin: 20px 20px;
	  color: #000;
	  cursor: pointer;
	  text-align: right;
	}

	#impressumclose h2 {
	  cursor: pointer;
	  font-size: .9em;
	  font-weight: 100;
	  text-transform: uppercase;
	  font-family: 'Open Sans', sans-serif;
	  background: #00a7e7;
	  width: 100px;
	  text-align: center;
	  padding: 2px;
	  position: relative;
	  left: 80%;
	}

	@media (max-width: 767px) {
	  #impressumclose h2 {
	    left: 70%;
	  }
	}

	#impressumcontent,
	#datenschutzcontent {
	  overflow: hidden;
	  width: 100%;
	  height: 90%;
	  margin: 0 auto;
	  color: #000;
	  font-size: .9em;
	  position: absolute;
	  padding-bottom: 200px;
	  line-height: 1.3em;
	}

	#impressumcontent a,
	#datenschutzcontent a,
	#impressumcontent a:hover,
	#datenschutzcontent a:hover,
	#impressumcontent a:visited,
	#datenschutzcontent a:visited {
	  text-decoration: none;
	  color: #00a7e7;
	  font-weight: 400;
	}

	#impressumcontent h1.heading,
	#datenschutzcontent h1.heading {
	  font-size: 1.6em;
	  margin-bottom: 1.4em;
	}

	#impressumcontent b,
	#datenschutzcontent b	{
	  font-weight: 400;
	}

	h1.heading2 {
	  font-size: 1.2em;
	  font-family: 'Open Sans', sans-serif;
	  font-weight: 400;
	}


	/* Styled scrollbars */

	#scroller {
	  position: absolute;
	  z-index: 1;
	  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	  width: 100%;
	  -webkit-transform: translateZ(0);
	  -moz-transform: translateZ(0);
	  -ms-transform: translateZ(0);
	  -o-transform: translateZ(0);
	  transform: translateZ(0);
	  -webkit-touch-callout: none;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	  -webkit-text-size-adjust: none;
	  -moz-text-size-adjust: none;
	  -ms-text-size-adjust: none;
	  -o-text-size-adjust: none;
	  text-size-adjust: none;
	  padding-right: 40px;
	}

	.iScrollVerticalScrollbar.iScrollLoneScrollbar {
	  background: none;
	  border-radius: 2px;
	  right: 4px;
	}

	.imagedesc.iScrollLoneScrollbar {
	  right: 10px !important;
	  overflow: hidden !important;
	}

	.iScrollHorizontalScrollbar {
	  position: absolute;
	  z-index: 9999;
	  height: 4px;
	  left: 2px;
	  right: 2px;
	  bottom: 2px;
	  overflow: hidden;
	}

	.iScrollHorizontalScrollbar.iScrollBothScrollbars {
	  right: 18px;
	}

	.iScrollVerticalScrollbar {
	  position: absolute;
	  z-index: 9999;
	  width: 4px;
	  bottom: 2px;
	  top: 2px;
	  right: 2px;
	  overflow: hidden;
	}

	.iScrollVerticalScrollbar.iScrollBothScrollbars {
	  bottom: 18px;
	}

	.iScrollIndicator {
	  position: absolute;
	  background: #000;
	  border-width: 1px solid #fff;
	  border-radius: 2px;
	}

	#impressumcontainer .iScrollIndicator,
	#datenschutzcontainer .iScrollIndicator {
	  background: #000 !important;
	}

	.iScrollHorizontalScrollbar .iScrollIndicator {
	  height: 100%;
	}

	.iScrollVerticalScrollbar .iScrollIndicator {
	  width: 100%;
	}

	.navbar-header p {
	  margin-top: 1em;
	  line-height: 1.3em;
	  display: inline;
	  width: auto;
	  float: left;
	}

	.navbar-header p span {
	  color: #C5252B;
	}
