<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /*-webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

statuspanel[type="overLink"] { display: none !important }

/*::-webkit-scrollbar {
    width: 12px;
}*/

/* Track */
/*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}*/

/* Handle */
/*::-webkit-scrollbar-thumb {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #5aa5ff; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.25); 
}*/

/*::-webkit-scrollbar-thumb:window-inactive {
    background: #5aa5ff; 
}*/

body {
  font: normal 100% Verdana;
  color: white;
  bgcolor="#000000" style="margin: 0 !important;
  //overflow:hidden;
  overflow-y: scroll;
  overflow-x: hidden;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: black;
  text-decoration: none;
}

p{
  padding-top: 10px;
}

.menutext{
	font-family: 'WebFont', infinium_guardianregular; 
	font-size: 5vw;
	position: absolute; 
	max-width: 10vw; 
	left: 5vw; bottom: 0; 
	transform: translateX(-50%) translateY(-100%) rotate(270deg); 
	//cursor:pointer;
}

.galleryphotos img{
width: 24%;
}

.content {
  cursor:default;
  min-height:100%;
}

.content strong { 
    font-weight: 600;
}

.content h3 {
  font-size: 24px;
  font-size: 1.65rem;
  padding-top: 20px;
}

.content ul{
  list-style-type: disc;
  padding-left:20px;
}

.content ul li{
  padding-top:10px;
}

.content ul ul{
  list-style-type: circle;
  padding-left:20px;
}

.content ul ul li{
  padding-top:10px;
}

ul.ListFAQ{
	list-style: none !important;
	list-style-type: none !important;
}

ul.ListFAQ li.ListQ:before{
	content: "+" !important;
	margin-right: 5px !important;
}

ul.ListFAQ li.ListQOpen:before{
	content: "-" !important;
	margin-right: 12px !important;
}

ul.ListFAQ li ul{
	list-style-type: disc;
}

ul.ListFAQ li.ListQ{
	font-weight: bold;
}

ul.ListFAQ li.ListQOpen{
	font-weight: bold;
}

ul.ListFAQ li.ListA{
	font-weight: default;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50px;
}
.cd-header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50px;
  background-color: white;
  //background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 0 0 0 5%;
}
.cd-header #cd-logo img {
	position: absolute;
	display: block;
	height: 100%;
}
@media only screen and (min-width: 900px) {
  .cd-header {
	max-width: 900px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
    height: 70px;
  }
  .cd-header-menu {
    height: 70px;
  }
  
  .cd-header #cd-logo {
  margin: 0 0 0 0;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 128px;
  height: 100%;
  background: url("../img/cd-icon-menu2.svg") no-repeat center center;
  background-size: 128px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #000000;
  border-top: 1px solid #453c3d;
  color: #f8f8f8;
}
@media only screen and (min-width: 900px) {
  .cd-main-nav {
	margin-right: 0%;
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #01307a;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 60%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 40%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 900px;
  text-align: left;
  font-size: 24px;
  font-size: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}

.cd-fixed-bg.cd-Sentry-0 {
  background-color:black;
  background-image: url("../img/Sentry/cd-background-0.JPG");
  background-size: auto 85%;
  background-position: center top;
}

@media only screen and (min-width: 600px) {
	.cd-fixed-bg.cd-Sentry-0 {
		background-size: auto 85%;
	}
}

.cd-fixed-bg.cd-Sentry-1 {
  background-image: url("../img/Sentry/cd-background-1.JPG");
}
.cd-fixed-bg.cd-Sentry-2 {
  background-image: url("../img/Sentry/cd-background-2.JPG");
}
.cd-fixed-bg.cd-Sentry-3 {
  background-image: url("../img/Sentry/cd-background-3.JPG");
}
.cd-fixed-bg.cd-Sentry-4 {
  background-image: url("../img/Sentry/cd-background-4.JPG");
}
.cd-fixed-bg.cd-Sentry-5 {
  background-image: url("../img/Sentry/cd-background-5.JPG");
}

.cd-fixed-bg.cd-Sentry2-0 {
  background-color:black;
  background-image: url("../img/Sentry2/cd-background-0.JPG");
  background-size: cover;
  background-position: center 15%;
}

@media only screen and (min-width: 600px) {
	.cd-fixed-bg.cd-Sentry2-0 {
		background-size: cover;
	}
}

.cd-fixed-bg.cd-Sentry2-1 {
  background-image: url("../img/Sentry2/cd-background-1.JPG");
}
.cd-fixed-bg.cd-Sentry2-2 {
  background-image: url("../img/Sentry2/cd-background-2.JPG");
}
.cd-fixed-bg.cd-Sentry2-3 {
  background-image: url("../img/Sentry2/cd-background-3.JPG");
}
.cd-fixed-bg.cd-Sentry2-4 {
  background-image: url("../img/Sentry2/cd-background-4.JPG");
}
.cd-fixed-bg.cd-Sentry2-5 {
  background-image: url("../img/Sentry2/cd-background-5.JPG");
}

.cd-fixed-bg.cd-Zefir-1 {
  background-image: url("../img/Zefir/cd-background-1.png"); /* fallback */
  background-image: url("../img/Zefir/cd-background-1.png"), linear-gradient(#245598, #3b6bb3); /* W3C */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 1rem;
}
.cd-fixed-bg.cd-Zefir-1 h2,
.cd-fixed-bg.cd-Zefir-1 h2 span {
  font-size: inherit; /* Make sure they use the containerâs font-size */
}
@media only screen and (min-width: 900px) {
  .cd-fixed-bg.cd-Zefir-1 {
    font-size: 1.75rem;
  }
}
.cd-fixed-bg.cd-Zefir-2 {
  background-image: url("../img/Zefir/cd-background-2.JPG");
}
.cd-fixed-bg.cd-Zefir-3 {
  background-image: url("../img/Zefir/cd-background-3.JPG");
}
.cd-fixed-bg.cd-Zefir-4 {
  background-image: url("../img/Zefir/cd-background-4.JPG");
}
.cd-fixed-bg.cd-Zefir-5 {
  background-image: url("../img/Zefir/cd-background-5.JPG");
}

.cd-fixed-bg.cd-Machines-1 {
  background-image: url("../img/Machines/cd-background-1.JPG"); /* fallback */
  background-image: url("../img/Machines/cd-background-1.JPG"), linear-gradient(#245598, #3b6bb3); /* W3C */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.cd-fixed-bg.cd-Machines-2 {
  background-image: url("../img/Machines/cd-background-2.JPG");
}
.cd-fixed-bg.cd-Machines-3 {
  background-image: url("../img/Machines/cd-background-3.JPG");
}
.cd-fixed-bg.cd-Machines-4 {
  background-image: url("../img/Machines/cd-background-4.JPG");
}
.cd-fixed-bg.cd-Machines-5 {
  background-image: url("../img/Machines/cd-background-5.JPG");
}

@media only screen and (min-width: 900px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 900px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 32px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #ffffff;
  color: #000000;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #ffffff;
  color: #000000;
}
@media only screen and (min-width: 900px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}

.showbox{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-shrink: 1;
	max-width: 100%;
	float:left;
	justify-content: space-around;
	align-content: stretch;
}
.showboxitem {
	flex-grow: 1;
	width: 50%;
}

@media (max-width: 900px) {
	.showbox{
		flex-direction: column;
	}
	.showboxitem {
		width: 100%;
	}
}

.configure{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-shrink: 1;
	max-width: 900px;
	float:left;
	justify-content: space-around;
	align-content: stretch;
	font-size: 80%;
}
.configureitem {
	flex-grow: 1;
	width: 50%;
}

.configureform{
	display: flex;
	flex-direction: column;
}

.configureformitem {
	flex-grow: 1;
	float:left;
}

@media (max-width: 800px) {
.configure{
	width: 100%;
	flex-direction: column;
}
.configureform{
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
}
.configureitem {
	width: 100%;
	height: 50%;
}
}

.pagecenter{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: 900px;
  width:90%;
}

.pageitem{
    position: absolute;
    bottom: 0;
}

#container {
    position : relative;
    width    : 100%;
    height   : 800px;
    overflow : hidden;
}

@charset "utf-8";
/* TechAndAll.com - FREE NEWSLETTER FORM*/

.news-letter {
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  position: relative;
  margin: 20px auto;
  width: 250px;
  padding: 33px 25px 29px;
  background: white;
  border-bottom: 1px solid #c4c4c4;
  max-width: 450px;
  width: 95%;
  
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);  
}

.news-letter:before, .news-letter:after {
  height: 10px;
  background: inherit;
  border-bottom: 1px solid #d2d2d2;
  border-radius: 4px;
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;

}

.news-letter:after {
  bottom: 3px;
  border-color: #dcdcdc;
}

.news-letter-title {
    background: none repeat scroll 0 0 #FFFFFF; /* newsletter background  */
    color: #AAAAAA;
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 10px;
    padding: 0;
    text-align: center;
    text-shadow: 0 1px rgba(255, 255, 255, 0.75);
  background: #fff;
}

.news-letter-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px; /* top header bar height */
  background: #4099ff;  /* top header bar color */
  border-radius: 5px 5px 0 0;
 
}

input {
  font-family: inherit;
  color: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.news-letter-input {
  width: 100%;
  height: 40px;
  margin-bottom: 25px;
  padding: 0 15px 2px;
  font-size: 17px;
  background: white;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 -2px #ebebeb;
  box-shadow: inset 0 -2px #ebebeb;
  color: black;
}

.news-letter-input:focus {
  border-color: #c4c4c4;
  outline: none;
  -webkit-box-shadow: inset 0 -2px #c4c4c4;
  box-shadow: inset 0 -2px #c4c4c4;
}

.lt-ie9 .news-letter-input {
  line-height: 48px;
}

.news-letter-button {
  position: relative;
  vertical-align: top;
  width: 100%;
  height: 34px;
  padding: 0;
  font-size: 17px;    
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #4099ff; /* button background  */
  border: 0;
  border-bottom: 2px solid #58a3ff; /* newsletter button shadow */
  border-radius: 5px;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #58a3ff;
  box-shadow: inset 0 -2px #58a3ff;
}

.news-letter-button:active {
  top: 1px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

:-moz-placeholder {
  color: #ccc;
  font-weight: 300;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
  font-weight: 300;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-weight: 300;
}

:-ms-input-placeholder {
  color: #ccc;
  font-weight: 300;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}


body[lang="none"] div.story[lang="pl"] {
	display: block;
	visibility: hidden;
}
body[lang="none"] div.story[lang="en"] {
	display: none;
}
body[lang="none"] div.story[lang="de"] {
	display: none;
}	

body[lang="pl"] div.story[lang="pl"] {
	display: block;
	visibility: visible;
}
body[lang="pl"] div.story[lang="en"] {
	display: none;
}
body[lang="pl"] div.story[lang="de"] {
	display: none;
}	

body[lang="en"] div.story[lang="en"] {
	display: block;
	visibility: visible;
}
body[lang="en"] div.story[lang="pl"] {
	display: none;
}
body[lang="en"] div.story[lang="de"] {
	display: none;
}	

body[lang="de"] div.story[lang="de"] {
	display: block;
	visibility: visible;
}
body[lang="de"] div.story[lang="pl"] {
	display: none;
}
body[lang="de"] div.story[lang="en"] {
	display: none;
}	
	
body[lang="pl"] p.story[lang="pl"] {
	display: inline;
}
body[lang="pl"] p.story[lang="en"] {
	display: none;
}
body[lang="pl"] p.story[lang="de"] {
	display: none;
}

body[lang="en"] p.story[lang="pl"] {
	display: none;
}
body[lang="en"] p.story[lang="en"] {
	display: inline;
}
body[lang="en"] p.story[lang="de"] {
	display: none;
}	

body[lang="de"] p.story[lang="pl"] {
	display: none;
}
body[lang="de"] p.story[lang="en"] {
	display: none;
}
body[lang="de"] p.story[lang="de"] {
	display: inline;
}

.mobile-hidden {
	visibility: collapse;
	display: none;
}

@media only screen and (min-width: 900px) {
	.mobile-hidden {
	visibility: visible;
	display: block;
	}
}</pre></body></html>