@import url("https://fonts.googleapis.com/css?family=Raleway|Exo+2|Lato|Open+Sans");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");

/* -------------------------------------------------------------

versioning:
version 0.0.4: september 2024, daniel peter
version 0.0.3: august 2017, daniel peter
version 0.0.2: november 2015, daniel peter

------------------------------------------------------------- */

/* -------------------------------------------------------------

reset

------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
header, nav, footer, section,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
pathline, parallax,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0; 
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  outline: 0;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

html {
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  /* font-size: 62.5%; */
  /* Keeps page centered in all browsers regardless of content height */
  overflow-y: scroll; 
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -webkit-text-size-adjust: 100%; 
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -ms-text-size-adjust: 100%;
  height: 100%;
}

body {
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, sans-serif,'Open Sans','Raleway','Lato','Exo 2','HelveticaNeue-Light','Helvetica Neue Light';
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------

clearing

------------------------------------------------------------- */

.container:after,
#header-menu:after,
.entry-container:after,
.entry-header:after,
.widget:after,
#supplementary:after,
.site-info:after,
.featued-content-wrap:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* You can also use a <br class="clear" /> to clear columns */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* -------------------------------------------------------------

structure

------------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

body {
	background: #ffffff;

	/*font-size: 14px;*/
	color: #000000;

  -webkit-text-size-adjust:100%;
  -moz-text-size-adjust:100%;
  -ms-text-size-adjust:100%;

  height: 100%;
}

h1, h2, h3 {
	margin-bottom: 15px;
	/*text-transform: lowercase;*/
  /*font-family: 'Open Sans','Raleway', sans-serif;*/
	font-weight: normal;
	color: #556499;
}

h1 {
	font-size: 197%;
}

h2 {
	font-size: 120%;
}

h3 {
	font-size: 100%;
}

p, ol, ul {
	margin-bottom: 1.5em;
	line-height: 1.5em;
}

blockquote {
	padding: 0 3em;
	background: no-repeat 1em 0;
	font-style: italic;
}

a:link {
	text-decoration: none;
	color: #263672;
}

a:hover, a:active {
	text-decoration: none;
	color: #999999;
}

a:visited {
	/*color: #8B985F;*/
}

img {
  display: block;
	border: none;
  width: 100%;
}

img.left {
	float: left;
	margin: 0 15px 0 0;
}

img.right {
	float: right;
	margin: 0 0 0 15px;
}

img.middle {
  margin: auto;
	vertical-align: middle;
}

img.circle {
  /* round corners */
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 50%;
}

img.size-60 {
  width: 60%;
}

img.size-45 {
  width: 45%;
}

img.size-30 {
  width: 30%;
}

video {
  width: 100%;
  max-width: 480px;
  height: auto; /* 496px */
}

/* -------------------------------------------------------------

Header

------------------------------------------------------------- */
header {
  display: block;
	width: 100%;
  position: relative;
}

.parallax {
  scroll-behavior: smooth; /* Firefox */

  /* based on: http://keithclark.co.uk/articles/pure-css-parallax-websites 
               full viewport height
  */
  -webkit-perspective: 1px; /* Chrome, Safari, Opera */
  -moz-perspective: 1px;
  perspective: 1px;

  -webkit-perspective-origin: 100% 50%; /* Chrome, Safari, Opera */
  -moz-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%;

  overflow-x: hidden;
  overflow-y: auto; /* auto; */

  height: 250px; /* 140px; 100vh */
  width: 100%;
}

.parallax_layer{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 250px; /* 140px; */
  overflow: hidden;
}

.parallax_layer_back{
  /* for effect with Safari */
  position: fixed;

  -webkit-transform: translateZ(-1px) scale(2); /* Chrome, Safari, Opera */
  -moz-transform: translateZ(-1px) scale(2);
  -ms-transform: translateZ(-1px) scale(2); /* IE 9 */
  transform: translateZ(-1px) scale(2);

  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;

  z-index: -10;
}

.parallax_layer_front{
  -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0); /* IE 9 */
  transform: translateZ(0);

  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;

  z-index: -1;
}

.img_background {
  height: 280px; /* 150px;*/
  width: 100vw;
  /*min-width: 950px;*/

  background: #222; /* #ffffff; */
  background-position: top left;
  background-repeat: no-repeat;
  background-attachment: fixed; /* for some effect also with non-Safari */
}

.img1 {
	/* background-image: url(images/img01.jpg); */
  background-image: url(images/moon_banner.mp4);
  background-size: max(1000px,100vw);
}

.img2 {
  /* background-image: url(images/img02.jpg); */
  background-image: url(images/banner_earth1.jpg);
  background-size: max(1070px,100vw);
}

.img3 {
	/* background-image: url(images/img03.jpg); */
  background-image: url(images/banner_mars1.jpg);
  background-size: max(1070px,100vw);
}

.img4 {
	/* background-image: url(images/img04.jpg); */
  background-image: url(images/banner_moon1.jpg);
  background-size: max(1070px,100vw);

}


header h1 {
	width: 250px;
	padding: 40px 0px 0px 680px;
	letter-spacing: -2px;
	font-size: 40px;
	margin-bottom: 0px;
}

header h1 a {
	text-decoration: none;
	color: #ffffff;
}

/* -------------------------------------------------------------

Page

------------------------------------------------------------- */
section {
  display: block;
	width: 100%; /* 950px; */
  /* to have footer at bottom */
  min-height: -moz-calc(100% - 200px); /* Firefox */
  min-height: -webkit-calc(100% - 200px); /* Chrome, Safari */
  min-height: calc(100% - 200px); /* IE9+ and future browsers */
}

/* left column */
#sidebar {
	float: left;
	width: 15%; /* 180px; */
	background: white;
}

/* main middle column */
#content {
	float: left;
	width: 60%; /* 500px; */
	background: white;
}

/* right column */
#contactbar {
	float: left;
	width: 20%; /* 250px; */
	background: white;
  padding-left:15px;
}


.post {
	padding: 0 10px 0 10px;
}

.post h1, .post h2, .post h3 {
}

.post .title {
	padding: 0 0 5px 0;
	background: url(images/img_titleline.gif) repeat-x left bottom;
}

.post .title span {
	padding-right: 30px;
	background:  no-repeat right center;
}

.post .link {
	text-decoration: none;
	color: #333333;	
	font-style: italic;
}


.box {
	padding-top: 5px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;  
}

.box .title {
	height: 33px;
	padding: 10px 0 0 20px;
	background: repeat-x;
	font-size: 18px;
}

.box ul {
	padding: 0 5px 0 5px;
	list-style: none;
}

.box li {
	padding: 5px 0;
	background: url(images/img_boxline.gif) repeat-x;
}

.box li.active {
	background: none;
}

.box h3 {
	font-size: 85%;
	font-weight: bold;
}

.box p {
	line-height: normal;
}

.box a {
	padding-left: 10px;
	background: url(images/img_boxticker.gif) no-repeat 0 5px;
}

/* -------------------------------------------------------------

Pathline

------------------------------------------------------------- */

.pathline {
  position: relative;
  top: 100px;
  width: 100%;
  line-height: 1;

  text-decoration: none;
  /*border-bottom: 1px solid #cccccc;*/

  /*font-family: 'Open Sans','Raleway', sans-serif;*/
  font-size: 150%;

  color: #fff;
  /*background-color: rgba(20, 20, 20, 0.8);*/

  padding-top: 80px;
  padding-bottom: 3px;
  padding-left: 14px;
  padding-right: 14px;

  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


a.path, a.path:link, a.path:visited, a.path:hover {
  font-weight: 900;
	color: #fff;
  /*font-size: 85%;*/
  text-decoration: none;

  display: inline-block;
  overflow: hidden;

  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;

  -webkit-transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  transition-delay: 0.75s;

  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);

  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);

  opacity: 0;
}

.pathline hr {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;

  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);

  opacity: 0.2;
}

a.pathlink, a.pathlink:link, a.pathlink:visited, a.pathlink:hover {
  font-weight: 100;
	color: #fff;
  font-size: 60%;
  text-decoration: none;
}

/* see javascript in <body onload=..> for getting this loaded state */
body.loaded a.path {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);

  -moz-filter: blur(0);
  -webkit-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);

  opacity: 1.0;
}

body.loaded .pathline hr {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);

  opacity: 0.5;
}



/* -------------------------------------------------------------

Footer

------------------------------------------------------------- */
footer {
  display: block;
	width: 100%;
	min-height: 50px;
  opacity: 1;
	background: rgba(60,60,60,0.75) no-repeat center top; /*#595C6D*/
  position: relative;
}

footer p {
	margin: 0;
	padding: 14px 20px;
	line-height: normal;
	font-size: 77%;
	color: #fff;
}

footer a {
  color: #fff;
	/*color: #565736;*/
}

footer a:hover {
	text-decoration: underline;
}

p.legal {
	float: left;
}

p.links {
	float: right;
	margin: 0;
  /* padding-right: 10px; */
}

.color_title {
  color: #000066;
}

.color_descr {
  color: #666666;
}

/* -------------------------------------------------------------

Play

------------------------------------------------------------- */

.playButton {
  background-color: rgb(20,20,20);
  cursor: pointer;
  font-weight: bold;
  font-size: 1.25em;

  opacity: 0.8;
  filter: alpha(opacity=80);

  /* round corners */
  -webkit-border-radius: 1em;
  -khtml-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;

  position: relative;
  top: 50%;
  zoom: 100%; /* old IE, Firefox */
  padding: .5em 1em;
  color: white;
}

.playBackground {
  background-color: rgb(0,0,0);

  opacity: 0.0;
  filter: alpha(opacity=0);

  position: absolute;
  top: 0px; left: 0px;
}

/* -------------------------------------------------------------

navigation menu

-------------------------------------------------------------- */

nav {
  display: block;

  position:relative;
  width: 100%;  
  /* height: 50px; */

  float: left;
  overflow: visible;  
  z-index: 10;

  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;

  margin-top:0px;
  margin-bottom:20px;
  margin-left:0px;

  /*
  background-image: -webkit-linear-gradient(#fff, #ddd);
  background-image: -moz-linear-gradient(#fff, #ddd);
  background-image: -ms-linear-gradient(#fff, #ddd);
  background-image: -o-linear-gradient(#fff, #ddd);
  background-image: linear-gradient(#fff, #ddd);
  */
  background-color: #FFF;
  /*border-bottom: 1px solid #cccccc; */

  box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
}

nav ul {
  position:relative;
  float: left;
  width:auto;
  height:auto;      
  display:inline-block;
  padding: 5px;
  margin: 0;
  list-style: none;
}

nav li {
  float: left;
  position:relative;  
  display: inline-block;
  padding: 0px 10px;
  margin: 10px 10px 0px 10px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

nav a {
  display: block;
  padding-top: 0px;
  padding-bottom: 10px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; 
  box-sizing: border-box;

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;  
}

nav a:hover, a:active {
  color: black;
}

nav li:hover {
  background-color: #CCC;
  border-radius: 5px;
  transition:0.3s ease
}

nav li:hover > a {
  /* color:#556499; */
}

/* shows submenus */
nav li:hover > ul#subnav {
  display: block;
  z-index: 99;
}

/* shows menu arrow */
nav li:hover > .arrow-down {
  opacity: 1.0;
  filter: alpha(opacity=100);

  border-top: 5px solid #556499;
}

nav span {
  vertical-align: middle;
}

nav a:link {
  text-decoration: none;
  color: black;
}


/* sub-menu items */
ul#subnav {
  position:absolute;
  width:auto;
  min-width: 200px;
  
  height:auto; 

  /* initally hide */
  display: none;
  z-index: 10;    

  /* using effect to dropdown
  opacity: 0.8;
  filter: alpha(opacity=80);
  max-height: 0;
  overflow: hidden;

  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  */

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  padding: 0;
  
  background-color: rgba(255, 255, 255, 0.95);

  background-image: -webkit-linear-gradient(#fff, #ddd);
  background-image: -moz-linear-gradient(#fff, #ddd);
  background-image: -ms-linear-gradient(#fff, #ddd);
  background-image: -o-linear-gradient(#fff, #ddd);
  background-image: linear-gradient(#fff, #ddd);
  
  /* round corners */
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

ul#subnav li a{
  display:inline-block;
  color:#999;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; 
  box-sizing: border-box;

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;    
}

ul#subnav > li {
  padding: 0;
  margin: 0;
}

ul#subnav li > a {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

ul#subnav li:before {
  content: none;
}

ul#subnav a:active {
  color: #111;
}

ul#subnav li:hover > a {
  color: #333;
  box-shadow: inset 2px 0px #52A792;  
}

ul#subnav li:hover {
  /* background-color: #CCC; */
  background-color: #FFF;
  border-radius: 5px;
  transition:0.3s ease
}

ul.deepnav > li {
  padding: 0;
  margin: 0;
}

/* arrows */
.arrow{
  display: block;
  position: relative;

  top: 5px;
  left: 0px;
  float: left;
  width: 0; 
  height: 0; 

  opacity: 0.0;
  filter: alpha(opacity=0);

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; 
  box-sizing: border-box;

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.arrow up {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;  
  border-bottom: 5px solid #aaa;
}
.arrow down {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;  
  border-top: 5px solid #aaa;
}

.arrow-down {
  display: block;
  position: relative;

  top: -8px;
  left: 0px;
  float: left;
  width: 0; 
  height: 0; 

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;  
  border-top: 5px solid #aaa;

  opacity: 0.5;
  filter: alpha(opacity=0);

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; 
  box-sizing: border-box;

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;    
}

/* menu icon */
#menu-icon {
  /* display: hidden; */
  display: none;
  z-index: 15;

  width: 40px;
  height: 40px;
  background: url(images/img_menu.png) no-repeat center;
  background-size: 40px;

  /* round corners */
  -webkit-border-radius: 4px 4px 0 0;
  -khtml-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}


/* -------------------------------------------------------------

Special spections

------------------------------------------------------------- */

/* comment navigation box */
span.comment {
  color: #666;
  background-color: #ddd;
  display: block;
}

ul#subnav span.comment {
  padding-left: 10px;
}

/* open-positions box */
.open-positions {
  display: block;
  position: relative;

	padding: 10px 10px 0 10px;

  background-color: #BDC5E0;
  box-shadow: 0px 5px 5px #888888;
}

/* font-awesome */
/* heart */
.fa-heart:before{
  color: red;
  font-size: 1.5rem;
}
/* external link */
.fa-external-link-alt:before{
  padding-left: 2px;
  padding-right: 5px;
}

/* -------------------------------------------------------------

Media query

------------------------------------------------------------- */

/* -- query -- landscape phone and portrait tablet (>= 752px < 960px) */
@media screen and (max-width: 60em) {
  body{
    font-size: 14px;
    width: 100%; /* 950px; */
  }
  section{
    width: 100%;
  }
  #sidebar{
    width: 0px; /* 250px; */
  }
  #content{
    width: 80%; /* 390px; /* 500px; */
  }
  #contactbar {
    width: 20%; /* 200px; */
  }
}

/* -- query -- landscape phone and portrait tablet (>= 592px < 752px) */
@media screen and (min-width: 37em) and (max-width: 47em) {
  body{
    font-size: 14px;
    width: 100%; /* 950px; */
  }
  section{
    width: 100%; /* 950px; */
  }
  #sidebar{
    width: 0px; /* 180px; */
  }
  #content{
    width: 80%; /* 390px; /* 500px; */
  }
  #contactbar {
    width: 20%; /* 200px; */
  }
}

/* --  query -- portrait phone (>= 480px < 592px) */
@media screen and (min-width: 30em) and (max-width: 37em) {
  body{
    font-size: 16px;
    width: 100%;
    margin: 0;
  }
  h1, h2, h3{
    font-size: 18pt;
  }
  section{
    width: 100%;
  }
  #sidebar{
    width: 100%;
  }
  #content{
    padding-top: 15px;
    width: 100%;
  }
  #contactbar {
    width: 80%;
  }
  /* menu bar */
  nav {
    width: 100%;
  }
  /* color box */
  .open-positions {
    top: 0;
  }
}


/* --  query -- portrait phone (< 480px) */
@media screen and (max-width: 30em) {
  body{
    font-size: 16px;
    width: 100%;
    margin: 0;
  }
  h1, h2, h3{
    font-size: 18pt;
  }
  section{
    width: 100%;
  }
  header{
    width: 100%;
  }
  .pathline{
    width: 100%;
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 0px;
    margin-top:0px;
    margin-bottom:0px;
    margin-left:0px;
  }
  #sidebar{
    width: 100%;
  }
  #content{
    padding-top: 35px;
    width: 100%;
  }
  #contactbar {
    width: 80%;
  }
  footer{
    width: 100%;
  }
  /* menu bar */
  nav {
    width: 100%;
    height: 40px;
    float: right;    

    box-shadow: 0px 5px 5px #888888;  
    padding-top: 0px;
    padding-bottom: 5px;
  }
  nav ul {
    display: none;
    position: relative;
    left: 0px;
    top: 0px;
    float: left;
    width:100%;
    height:auto;

    padding-left: 0px;
    padding-right: 0px;
    margin: 0;

    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 5px 5px #888888;

    list-style: none;
  }

  nav:hover ul, nav:focus ul {
    display: inline-block;
  }

  nav li {
    float: left;
    width: 100%;
    position:relative;  
    display: inline-block;

    padding: 10px;
    margin: 0;

    background-color: rgba(220, 220, 220, 0.9);
    border-bottom: 1px solid #aaa;
  }
  nav li:hover, li:focus, li:active {
    background-color: rgba(255, 255, 255, 0.9);
  }
  nav li:hover ul {
    display: inline-block;
  }

  .arrow-down {
    display: none;
  }

  #topnav a:after {
    content: "+";
    left: 4.4em;
  }

  ul#subnav {
    top: 2px;
    left: 100px;
    max-width: 240px;
  }

  #menu-icon {
    display:inline-block;
    position: relative;
    width: 100%;
	}
  #menu-icon:focus {
    background-color: #ccc;
    /* round corners */
    -webkit-border-radius: 4px 4px 0 0;
    -khtml-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }
  #menu-icon:focus + ul {
    display: inline-block;
  }
  /* special box */
  .open-positions {
    top: 0;
  }
}


/* -- print -- */
@media print{ 
  *{
    background:transparent !important;
    color:black !important;
    text-shadow:none !important;
    filter:none !important;
    -ms-filter:none !important
  }
  abbr[title]:after{content: "(" attr(title) ")";}
  pre, blockquote{page-break-inside:avoid;}
  thead{display:table-header-group;}
  tr, img{page-break-inside:avoid;}
  img{max-width:100% !important;}
  p, h2, h3{orphans:3; widows:3;}
  h2, h3{page-break-after:avoid;}
}
