@import "custom.css";
/* @import "print.css"; */
/*------------------------------------------------------------------------------
[Master stylesheet]

Project:	Master stylesheet for all future projects
Version:	1.8.1.0
Last change:	11.09.2015
Assigned to:	Christian Holmok [Tangram] (t.ch), Marco Koch [Tangram] (t.mk)
Primary use:	Typo3, static websites, Magento
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Reset]

 0.1 Main reset
-------------------------------------------------------------------*/
/* --------------------------------- 0.1 Main reset --------------------------------- */
html {
  box-sizing: border-box;
  overflow-y: -moz-scrollbars-vertical;
  overflow-y: scroll;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: inherit;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
subhead,
summary {
  display: block;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*------------------------------------------------------------------
[Layout]

 1.1 Main elements
 1.2 Float
 1.3 Padding / Margin
 1.4 Width
 1.5 Alignments
 1.6 Unordered lists
 1.7 Ordered lists
 1.8 Borders
 1.9 Positioning
 1.10 Images / backgrounds
 1.11 Links
-------------------------------------------------------------------*/
/* --------------------------------- 1.1 Main elements --------------------------------- */
body {
  font-size: 0.94em;
  counter-reset: step;
}
#wrapper {
  width: 1000px;
}
aside {
  padding: 10px;
}
.clearfloat {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}
/* --------------------------------- 1.2 Float --------------------------------- */
.fl-right {
  float: right;
}
.fl-left {
  float: left;
}
/* --------------------------------- 1.3 Padding / Margin --------------------------------- */
.pad-5 {
  padding: 5px;
}
.pad-10 {
  padding: 10px;
}
.pad-15 {
  padding: 15px;
}
.mar-5 {
  margin: 5px;
}
.mar-10 {
  margin: 10px;
}
.mar-15 {
  margin: 15px;
}
/* --------------------------------- 1.4 Width --------------------------------- */
.wid-10 {
  width: 10%;
}
.wid-20 {
  width: 20%;
}
.wid-30 {
  width: 30%;
}
.wid-40 {
  width: 40%;
}
.wid-50 {
  width: 50%;
}
.wid-60 {
  width: 60%;
}
.wid-70 {
  width: 70%;
}
.wid-80 {
  width: 80%;
}
.wid-90 {
  width: 90%;
}
.wid-100 {
  width: 100%;
}
/* --------------------------------- 1.5 Alignment --------------------------------- */
.ali-r {
  text-align: right;
}
.ali-l {
  text-align: left;
}
.ali-j {
  text-align: justify;
}
.ali-c {
  text-align: center;
}
/* --------------------------------- 1.6 Unordered lists --------------------------------- */
.ul-c {
  list-style-type: circle;
}
.ul-s {
  list-style-type: square;
}
.ul-d {
  list-style-type: disc;
}
/* --------------------------------- 1.7 Ordered lists --------------------------------- */

ol li {
/* 	list-style-type: decimal */
}



/* --------------------------------- 1.8 Borders --------------------------------- */
/* --------------------------------- 1.9 Positioning --------------------------------- */
.pos-center {
  margin: 0 auto;
}
/* --------------------------------- 1.10 Images / backgrounds --------------------------------- */
img {
  max-width: 100%;
  height: auto;
}
/* --------------------------------- 1.11 Links --------------------------------- */
a {
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0.5);
}
a[class*='btn-flat-'] {
  display: inline-block;
  text-align: center;
  margin: 5px;
}
a.btn-flat-s {
  padding: 5px 10px 5px 10px;
  border: none;
  background-color: #5088a5;
  color: white;
  text-decoration: none;
}
a.btn-flat-m {
  padding: 10px 20px 10px 20px;
  border: none;
  background-color: #5088a5;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
}
a.btn-flat-l {
  padding: 10px 30px 10px 30px;
  border: none;
  background-color: #5088a5;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
}
a[class*='btn-3d-'] {
  display: inline-block;
  text-align: center;
  margin: 5px;
  border: 2px solid rgba(0, 0, 0, 0);
}
.btn-3d-s {
  padding: 5px 10px 5px 10px;
  border: none;
  background-color: #5088a5;
  color: white;
  text-decoration: none;
}
a.btn-3d-m {
  padding: 10px 20px 10px 20px;
  border: none;
  background-color: #5088a5;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
}
a.btn-3d-l {
  padding: 10px 30px 10px 30px;
  border: none;
  background-color: #5088a5;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
}
/*------------------------------------------------------------------
[Grid]

 2.1 Main declaration
 2.2 Width
-------------------------------------------------------------------*/
/* --------------------------------- 2.1 Main declaration --------------------------------- */
[class*='col-'] {
  float: left;
  display: inline-block;
}
[class*='col-'] {
  padding-right: 20px;
}
[class*='col-']:last-of-type {
  padding-right: 0;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
}
/* --------------------------------- 2.1 Width --------------------------------- */
.col-1-18 {
  width: 5.5555555555556%;
}
.col-2-18 {
  width: 11.111111111111%;
}
.col-3-18 {
  width: 16.666666666667%;
}
.col-4-18 {
  width: 22.222222222222%;
}
.col-5-18 {
  width: 27.777777777778%;
}
.col-6-18 {
  width: 33.333333333333%;
}
.col-7-18 {
  width: 38.888888888889%;
}
.col-8-18 {
  width: 44.444444444444%;
}
.col-9-18 {
  width: 50%;
}
.col-10-18 {
  width: 55.555555555556%;
}
.col-11-18 {
  width: 61.111111111111%;
}
.col-12-18 {
  width: 66.666666666667%;
}
.col-13-18 {
  width: 72.222222222222%;
}
.col-14-18 {
  width: 77.777777777778%;
}
.col-15-18 {
  width: 83.333333333333%;
}
.col-16-18 {
  width: 88.888888888889%;
}
.col-17-18 {
  width: 94.444444444444%;
}
.col-18-18 {
  width: 100%;
}
/*------------------------------------------------------------------
[Megamenu]

 3.1 Mini navigation
 3.2 Width
-------------------------------------------------------------------*/
/* --------------------------------- 3.1 Mini navigation --------------------------------- */
.mini {
  position: fixed;
  width: 1000px;
  padding: 10px 20px 10px 20px;
  z-index: 3000;
  top: 0;
}
nav {
  width: 100%;
  padding: 10px;
}
nav > ul {
  margin: 0;
  padding: 0;
}
nav > ul li {
  list-style-type: none;
  float: left;
  margin-right: 10px;
  padding-bottom: 5px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
/*
nav > ul li:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav > ul li:hover:before,
nav > ul li:focus:before,
nav > ul li:active:before {
  left: 0;
}
*/
nav > ul li a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0.5);
  -webkit-transition: padding-bottom 600ms;
  transition: padding-bottom 600ms;
}
nav:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}
nav article,
nav section {
  padding: 0;
}
nav article ul,
nav section ul {
  padding: 0;
  margin: 0;
}
nav {
  position: relative;
}
nav ul li {
  position: relative;
  top: 0;
  left: 0;
  z-index: 334;
}
nav ul li > div {
  display: none;
  width: 1000px;
  height: auto;
  background: #dddddd;
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 4400;
  padding: 10px;
  color: black;
  cursor: default;
  -webkit-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
}
nav ul li:hover > div {
  display: block;
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
  opacity: 0.9;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
nav ul li:hover > div ul {
  width: 100%;
}
nav ul li:hover > div ul li {
  width: 100%;
}
nav ul li:hover > div ul li:hover {

}
.boxshadow {
  -webkit-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
}
* {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
/*   transform: translate(0, 0); */
}
h1,
h2,
h3,
h4,
h5,
h6 {

}
h1 {
  font-size: 4rem;
  line-height: 4rem;
}
h2 {
  font-size: 3rem;
  line-height: 3rem;
}
h3 {
  font-size: 2rem;
  line-height: 2rem;
}
h4 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
h5 {
  font-size: 1.3rem;
  line-height: 1.3rem;
}
h6 {
  font-size: 1.1rem;
  line-height: 1.1rem;
}
p {
  line-height: 140%;
  margin-bottom: 10px;
    -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
p::-moz-selection {
  color: white;
  background: #dddddd;
  text-shadow: none;
}
p::selection {
  color: white;
  background: #dddddd;
  text-shadow: none;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {

}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {

}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {

}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {

}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {

}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {

}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) {

}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {

}
/*
iPhone 5 Resolution
Screen Width = 320px (CSS Pixels)
Screen Height = 568px (CSS Pixels)

Screen Width = 640px (Actual Pixels)
Screen Height = 1136px (Actual Pixels)

Device-pixel-ratio: 2
iPhone 4/4S Resolution
Screen Width = 320px (CSS Pixels)
Screen Height = 480px (CSS Pixels)

Screen Width = 640px (Actual Pixels)
Screen Height = 960px (Actual Pixels)

Device-pixel-ratio: 2
iPhone 2G/3G/3GS Resolution
Screen Width = 320px (CSS Pixels)
Screen Height = 480px (CSS Pixels)

Screen Width = 320px (Actual Pixels)
Screen Height = 480px (Actual Pixels)

Device-pixel-ratio: 1
*/

@media print {
	body {
	width:100% !important;
	margin:0 !important;
	padding:0 !important;
	}


	/* Headings */
	h1,h2,h3,h4,h5,h6 { page-break-after:avoid; }
	h1{font-size:19pt;}
	h2{font-size:17pt;}
	h3{font-size:15pt;}
	h4,h5,h6{font-size:14pt;}
		p, h2, h3 { orphans: 3; widows: 3; }

	/* Images */
	img { float: left; margin: 1em 1.5em 1.5em 0; max-width: 100% !important; }
	a img { border: none; }

	/* Links */
	a:link, a:visited { background: transparent; text-decoration: underline; }
	a:link[href^="http://"]:after, a[href^="http://"]:visited:after { content: " (" attr(href) ") "; font-size: 90%; }

	abbr[title]:after { content: " (" attr(title) ")"; }

	/* Don't show linked images  */
	a[href$=".jpg"]:after, a[href$=".jpeg"]:after, a[href$=".gif"]:after, a[href$=".png"]:after { content: " (" attr(href) ") "; display:none; }

	/* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol .. taken from html5boilerplate */
	a[href^="#"]:after, a[href^="javascript:"]:after {content: "";}

	img,tr {page-break-inside: avoid;}

	/* Hide various parts from the site
	#header, #footer, #navigation, #rightSideBar, #leftSideBar
	{display:none;}
	*/

	aside {
		display: none !important
	}

	.col-13-18 {
		width: 100% !important
	}

	footer {
		display: none !important
	}

	.tx-dce-pi1, .fa-question-circle, .cont-info, #search, #sharebox {
		display: none !important
	}
	.onlyprint {
		display: block;
		text-align: center;
		font-size: .9rem;
		width: 100%;
		border-top: 2px solid #606060;
		padding-top: 10px
	}
}

.banner {
  position: absolute;
  left: 202px;
}

.banner img {
  width: 600px;
}
