
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d2d4c42d8fab1b3ef97378b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_535c8a259a9a352b249e8128.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e88ea6e1a0a00db63d7d727b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78ef2766c621b78d3c7fc1b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bee8b87f43a7deb942b361d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws81{word-spacing:-35.865600px;}
.ws74{word-spacing:-35.119596px;}
.ws1a{word-spacing:-19.195269px;}
.ws30{word-spacing:-19.051807px;}
.ws50{word-spacing:-18.980076px;}
.ws6d{word-spacing:-18.908344px;}
.ws77{word-spacing:-18.406226px;}
.ws52{word-spacing:-18.191032px;}
.ws2{word-spacing:-17.869106px;}
.ws2f{word-spacing:-17.401989px;}
.ws34{word-spacing:-17.186796px;}
.ws55{word-spacing:-17.043333px;}
.ws5f{word-spacing:-16.828140px;}
.ws78{word-spacing:-16.785101px;}
.ws40{word-spacing:-16.684677px;}
.ws33{word-spacing:-16.541215px;}
.ws14{word-spacing:-16.101832px;}
.ws1f{word-spacing:-16.039096px;}
.ws5{word-spacing:-15.905468px;}
.ws51{word-spacing:-15.823903px;}
.ws2a{word-spacing:-15.752172px;}
.ws3{word-spacing:-15.447286px;}
.ws48{word-spacing:-15.321784px;}
.ws64{word-spacing:-14.963128px;}
.ws73{word-spacing:-14.891397px;}
.ws2c{word-spacing:-14.819666px;}
.ws45{word-spacing:-14.747935px;}
.ws43{word-spacing:-14.604472px;}
.ws5d{word-spacing:-14.102354px;}
.ws1{word-spacing:-14.082230px;}
.ws53{word-spacing:-13.313311px;}
.ws44{word-spacing:-13.026386px;}
.ws5b{word-spacing:-12.954655px;}
.ws5c{word-spacing:-12.882924px;}
.ws29{word-spacing:-12.811192px;}
.ws4a{word-spacing:-12.739461px;}
.ws6a{word-spacing:-12.667730px;}
.ws75{word-spacing:-12.524268px;}
.ws3d{word-spacing:-12.309074px;}
.ws6b{word-spacing:-12.237343px;}
.ws25{word-spacing:-12.165612px;}
.ws27{word-spacing:-12.093880px;}
.ws1e{word-spacing:-12.022149px;}
.ws11{word-spacing:-11.978192px;}
.ws1d{word-spacing:-11.950418px;}
.ws49{word-spacing:-11.878687px;}
.ws37{word-spacing:-11.806956px;}
.ws20{word-spacing:-11.735224px;}
.ws4c{word-spacing:-11.663493px;}
.ws38{word-spacing:-11.591762px;}
.ws26{word-spacing:-11.520031px;}
.ws1b{word-spacing:-11.448300px;}
.wsf{word-spacing:-11.389100px;}
.ws24{word-spacing:-11.376568px;}
.ws47{word-spacing:-11.304837px;}
.ws6c{word-spacing:-11.233106px;}
.wsd{word-spacing:-11.192737px;}
.ws7a{word-spacing:-11.190067px;}
.ws12{word-spacing:-11.127282px;}
.wsa{word-spacing:-10.996373px;}
.ws76{word-spacing:-10.946181px;}
.ws16{word-spacing:-10.930918px;}
.ws3f{word-spacing:-10.874450px;}
.ws4{word-spacing:-10.865464px;}
.ws7e{word-spacing:-10.831411px;}
.ws21{word-spacing:-10.802719px;}
.ws10{word-spacing:-10.800009px;}
.ws7b{word-spacing:-10.759680px;}
.ws7f{word-spacing:-10.730988px;}
.ws6{word-spacing:-10.669100px;}
.ws3e{word-spacing:-10.659256px;}
.ws61{word-spacing:-10.587525px;}
.ws15{word-spacing:-10.472736px;}
.ws6e{word-spacing:-10.444063px;}
.ws19{word-spacing:-10.300600px;}
.ws80{word-spacing:-9.898906px;}
.ws70{word-spacing:-9.870213px;}
.ws13{word-spacing:-9.360008px;}
.ws2e{word-spacing:-9.224632px;}
.ws69{word-spacing:-9.152901px;}
.ws56{word-spacing:-9.081170px;}
.ws4d{word-spacing:-8.937708px;}
.ws54{word-spacing:-8.794245px;}
.ws22{word-spacing:-8.722514px;}
.ws31{word-spacing:-8.650783px;}
.ws8{word-spacing:-8.640007px;}
.ws2d{word-spacing:-8.435589px;}
.ws9{word-spacing:-8.312734px;}
.ws41{word-spacing:-8.292127px;}
.ws2b{word-spacing:-8.076933px;}
.ws57{word-spacing:-7.861740px;}
.ws46{word-spacing:-7.790008px;}
.ws7d{word-spacing:-7.316582px;}
.ws42{word-spacing:-6.785772px;}
.ws3a{word-spacing:-6.714040px;}
.ws6f{word-spacing:-6.283653px;}
.ws36{word-spacing:-5.853266px;}
.ws32{word-spacing:-5.709804px;}
.ws79{word-spacing:-5.638072px;}
.ws3b{word-spacing:-5.566341px;}
.ws4b{word-spacing:-5.494610px;}
.wsb{word-spacing:-5.432732px;}
.ws72{word-spacing:-5.135954px;}
.ws28{word-spacing:-5.064223px;}
.ws68{word-spacing:-4.920760px;}
.ws5e{word-spacing:-4.849029px;}
.ws63{word-spacing:-4.777298px;}
.ws23{word-spacing:-4.490373px;}
.ws59{word-spacing:-4.059986px;}
.ws7c{word-spacing:-3.916524px;}
.ws39{word-spacing:-3.844792px;}
.ws62{word-spacing:-3.557868px;}
.ws3c{word-spacing:-3.486136px;}
.ws7{word-spacing:-2.945457px;}
.ws71{word-spacing:-2.912287px;}
.ws1c{word-spacing:-2.840556px;}
.wse{word-spacing:-2.749093px;}
.ws4f{word-spacing:-2.410168px;}
.wsc{word-spacing:-2.225456px;}
.ws65{word-spacing:-2.123244px;}
.ws66{word-spacing:-0.114770px;}
.ws18{word-spacing:-0.103292px;}
.ws17{word-spacing:0.000000px;}
.ws58{word-spacing:0.028692px;}
.ws67{word-spacing:1.248123px;}
.ws5a{word-spacing:1.463316px;}
.ws4e{word-spacing:26.236270px;}
.ws60{word-spacing:33.983200px;}
.ws35{word-spacing:38.631358px;}
.ws0{word-spacing:46.366650px;}
._1b{margin-left:-9.709486px;}
._0{margin-left:-7.810425px;}
._23{margin-left:-6.706303px;}
._7{margin-left:-5.563641px;}
._5{margin-left:-3.730912px;}
._3{margin-left:-2.324084px;}
._8{margin-left:-1.275919px;}
._4{width:1.832729px;}
._2{width:3.162256px;}
._20{width:15.903823px;}
._11{width:17.738197px;}
._6{width:18.753189px;}
._14{width:20.894456px;}
._f{width:22.517275px;}
._1e{width:24.015593px;}
._b{width:25.953195px;}
._10{width:27.982288px;}
._9{width:29.389115px;}
._16{width:30.700954px;}
._a{width:31.876390px;}
._1c{width:33.660746px;}
._12{width:35.033512px;}
._22{width:36.209897px;}
._c{width:37.636395px;}
._21{width:38.867548px;}
._19{width:40.158709px;}
._15{width:41.593333px;}
._18{width:43.562358px;}
._d{width:46.407311px;}
._1a{width:49.996646px;}
._1d{width:51.072614px;}
._17{width:52.636342px;}
._e{width:54.130954px;}
._13{width:58.509334px;}
._1f{width:59.877602px;}
._1{width:62.111475px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:63.168000px;}
.y62{bottom:115.978500px;}
.y89{bottom:125.110500px;}
.y41{bottom:130.020000px;}
.y61{bottom:142.869000px;}
.y1d{bottom:148.906500px;}
.y88{bottom:152.001000px;}
.y40{bottom:156.910500px;}
.y60{bottom:169.759500px;}
.y1c{bottom:174.129000px;}
.y87{bottom:178.891500px;}
.y3f{bottom:183.801000px;}
.y7f{bottom:187.518000px;}
.y5f{bottom:196.650000px;}
.y1b{bottom:199.350000px;}
.y81{bottom:201.559500px;}
.y86{bottom:205.783500px;}
.y3e{bottom:210.693000px;}
.y5e{bottom:223.542000px;}
.y1a{bottom:224.572500px;}
.y80{bottom:228.451500px;}
.y85{bottom:232.674000px;}
.y3d{bottom:237.583500px;}
.y19{bottom:249.793500px;}
.y5d{bottom:250.432500px;}
.y7e{bottom:255.342000px;}
.y84{bottom:259.564500px;}
.y3c{bottom:264.474000px;}
.y18{bottom:275.016000px;}
.y5c{bottom:277.323000px;}
.y7d{bottom:282.232500px;}
.y83{bottom:286.455000px;}
.y3b{bottom:291.364500px;}
.y17{bottom:300.237000px;}
.y5b{bottom:304.213500px;}
.y7c{bottom:309.123000px;}
.y82{bottom:313.347000px;}
.y3a{bottom:318.256500px;}
.y16{bottom:325.459500px;}
.y5a{bottom:331.105500px;}
.y7b{bottom:336.015000px;}
.y39{bottom:345.147000px;}
.y15{bottom:350.680500px;}
.y59{bottom:357.996000px;}
.y7a{bottom:362.905500px;}
.y38{bottom:372.037500px;}
.y14{bottom:375.903000px;}
.y58{bottom:384.886500px;}
.y79{bottom:389.796000px;}
.y37{bottom:398.928000px;}
.y13{bottom:401.124000px;}
.y57{bottom:411.777000px;}
.y78{bottom:416.686500px;}
.y36{bottom:425.818500px;}
.y12{bottom:426.346500px;}
.y56{bottom:438.667500px;}
.y77{bottom:443.577000px;}
.y11{bottom:451.567500px;}
.y35{bottom:452.710500px;}
.y55{bottom:465.559500px;}
.y76{bottom:470.469000px;}
.y10{bottom:476.790000px;}
.y34{bottom:479.601000px;}
.y54{bottom:492.450000px;}
.y75{bottom:497.359500px;}
.yf{bottom:502.011000px;}
.y33{bottom:506.491500px;}
.y72{bottom:510.208500px;}
.y53{bottom:519.340500px;}
.y74{bottom:524.250000px;}
.ye{bottom:527.233500px;}
.y32{bottom:533.382000px;}
.y52{bottom:546.231000px;}
.y73{bottom:551.140500px;}
.yd{bottom:552.454500px;}
.y31{bottom:560.274000px;}
.y51{bottom:573.123000px;}
.yc{bottom:577.677000px;}
.y71{bottom:578.032500px;}
.y30{bottom:587.164500px;}
.y50{bottom:600.013500px;}
.yb{bottom:602.898000px;}
.y70{bottom:604.923000px;}
.y2f{bottom:614.055000px;}
.y4f{bottom:626.904000px;}
.ya{bottom:628.120500px;}
.y6f{bottom:631.813500px;}
.y2e{bottom:640.945500px;}
.y9{bottom:653.341500px;}
.y4e{bottom:653.794500px;}
.y6e{bottom:658.704000px;}
.y2d{bottom:667.837500px;}
.y8{bottom:678.564000px;}
.y4d{bottom:680.686500px;}
.y6d{bottom:685.596000px;}
.y2c{bottom:694.728000px;}
.y7{bottom:703.785000px;}
.y4c{bottom:707.577000px;}
.y6c{bottom:712.486500px;}
.y2b{bottom:721.618500px;}
.y4b{bottom:734.467500px;}
.y6{bottom:739.026000px;}
.y6b{bottom:739.377000px;}
.y2a{bottom:748.509000px;}
.y4a{bottom:761.358000px;}
.y6a{bottom:766.267500px;}
.y29{bottom:775.401000px;}
.y49{bottom:788.250000px;}
.y69{bottom:793.158000px;}
.y28{bottom:802.291500px;}
.y8a{bottom:806.007000px;}
.y5{bottom:807.739500px;}
.y48{bottom:815.140500px;}
.y68{bottom:820.050000px;}
.y27{bottom:829.182000px;}
.y4{bottom:841.120500px;}
.y47{bottom:842.031000px;}
.y67{bottom:846.940500px;}
.y26{bottom:856.072500px;}
.y46{bottom:868.921500px;}
.y66{bottom:873.831000px;}
.y3{bottom:874.503000px;}
.y25{bottom:882.963000px;}
.y65{bottom:900.721500px;}
.y24{bottom:909.855000px;}
.y45{bottom:913.570500px;}
.y64{bottom:927.613500px;}
.y2{bottom:934.222500px;}
.y23{bottom:936.745500px;}
.y63{bottom:954.504000px;}
.y22{bottom:963.636000px;}
.y1{bottom:980.586000px;}
.y44{bottom:981.394500px;}
.y21{bottom:990.526500px;}
.y43{bottom:1008.285000px;}
.y20{bottom:1017.418500px;}
.y42{bottom:1035.177000px;}
.y1f{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:46.865494px;}
.h5{height:53.798400px;}
.h2{height:64.557900px;}
.h6{height:72.304680px;}
.h1{height:86.782500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x1{left:120.003000px;}
.xb{left:134.338500px;}
.x8{left:151.897500px;}
.x7{left:176.443500px;}
.x2{left:238.173000px;}
.x5{left:248.818500px;}
.x4{left:269.838000px;}
.x3{left:356.434500px;}
.x6{left:423.253500px;}
.x9{left:454.609500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws81{word-spacing:-31.880533pt;}
.ws74{word-spacing:-31.217418pt;}
.ws1a{word-spacing:-17.062461pt;}
.ws30{word-spacing:-16.934939pt;}
.ws50{word-spacing:-16.871178pt;}
.ws6d{word-spacing:-16.807417pt;}
.ws77{word-spacing:-16.361090pt;}
.ws52{word-spacing:-16.169807pt;}
.ws2{word-spacing:-15.883650pt;}
.ws2f{word-spacing:-15.468435pt;}
.ws34{word-spacing:-15.277152pt;}
.ws55{word-spacing:-15.149629pt;}
.ws5f{word-spacing:-14.958346pt;}
.ws78{word-spacing:-14.920090pt;}
.ws40{word-spacing:-14.830824pt;}
.ws33{word-spacing:-14.703302pt;}
.ws14{word-spacing:-14.312739pt;}
.ws1f{word-spacing:-14.256975pt;}
.ws5{word-spacing:-14.138194pt;}
.ws51{word-spacing:-14.065691pt;}
.ws2a{word-spacing:-14.001930pt;}
.ws3{word-spacing:-13.730921pt;}
.ws48{word-spacing:-13.619364pt;}
.ws64{word-spacing:-13.300559pt;}
.ws73{word-spacing:-13.236797pt;}
.ws2c{word-spacing:-13.173036pt;}
.ws45{word-spacing:-13.109275pt;}
.ws43{word-spacing:-12.981753pt;}
.ws5d{word-spacing:-12.535426pt;}
.ws1{word-spacing:-12.517538pt;}
.ws53{word-spacing:-11.834054pt;}
.ws44{word-spacing:-11.579010pt;}
.ws5b{word-spacing:-11.515249pt;}
.ws5c{word-spacing:-11.451488pt;}
.ws29{word-spacing:-11.387727pt;}
.ws4a{word-spacing:-11.323965pt;}
.ws6a{word-spacing:-11.260204pt;}
.ws75{word-spacing:-11.132682pt;}
.ws3d{word-spacing:-10.941399pt;}
.ws6b{word-spacing:-10.877638pt;}
.ws25{word-spacing:-10.813877pt;}
.ws27{word-spacing:-10.750116pt;}
.ws1e{word-spacing:-10.686355pt;}
.ws11{word-spacing:-10.647282pt;}
.ws1d{word-spacing:-10.622594pt;}
.ws49{word-spacing:-10.558833pt;}
.ws37{word-spacing:-10.495072pt;}
.ws20{word-spacing:-10.431311pt;}
.ws4c{word-spacing:-10.367549pt;}
.ws38{word-spacing:-10.303788pt;}
.ws26{word-spacing:-10.240027pt;}
.ws1b{word-spacing:-10.176266pt;}
.wsf{word-spacing:-10.123645pt;}
.ws24{word-spacing:-10.112505pt;}
.ws47{word-spacing:-10.048744pt;}
.ws6c{word-spacing:-9.984983pt;}
.wsd{word-spacing:-9.949099pt;}
.ws7a{word-spacing:-9.946726pt;}
.ws12{word-spacing:-9.890917pt;}
.wsa{word-spacing:-9.774554pt;}
.ws76{word-spacing:-9.729939pt;}
.ws16{word-spacing:-9.716372pt;}
.ws3f{word-spacing:-9.666178pt;}
.ws4{word-spacing:-9.658190pt;}
.ws7e{word-spacing:-9.627921pt;}
.ws21{word-spacing:-9.602417pt;}
.ws10{word-spacing:-9.600008pt;}
.ws7b{word-spacing:-9.564160pt;}
.ws7f{word-spacing:-9.538656pt;}
.ws6{word-spacing:-9.483644pt;}
.ws3e{word-spacing:-9.474895pt;}
.ws61{word-spacing:-9.411133pt;}
.ws15{word-spacing:-9.309099pt;}
.ws6e{word-spacing:-9.283611pt;}
.ws19{word-spacing:-9.156089pt;}
.ws80{word-spacing:-8.799027pt;}
.ws70{word-spacing:-8.773523pt;}
.ws13{word-spacing:-8.320007pt;}
.ws2e{word-spacing:-8.199673pt;}
.ws69{word-spacing:-8.135912pt;}
.ws56{word-spacing:-8.072151pt;}
.ws4d{word-spacing:-7.944629pt;}
.ws54{word-spacing:-7.817107pt;}
.ws22{word-spacing:-7.753346pt;}
.ws31{word-spacing:-7.689585pt;}
.ws8{word-spacing:-7.680006pt;}
.ws2d{word-spacing:-7.498301pt;}
.ws9{word-spacing:-7.389097pt;}
.ws41{word-spacing:-7.370779pt;}
.ws2b{word-spacing:-7.179496pt;}
.ws57{word-spacing:-6.988213pt;}
.ws46{word-spacing:-6.924452pt;}
.ws7d{word-spacing:-6.503629pt;}
.ws42{word-spacing:-6.031797pt;}
.ws3a{word-spacing:-5.968036pt;}
.ws6f{word-spacing:-5.585469pt;}
.ws36{word-spacing:-5.202903pt;}
.ws32{word-spacing:-5.075381pt;}
.ws79{word-spacing:-5.011620pt;}
.ws3b{word-spacing:-4.947859pt;}
.ws4b{word-spacing:-4.884098pt;}
.wsb{word-spacing:-4.829095pt;}
.ws72{word-spacing:-4.565292pt;}
.ws28{word-spacing:-4.501531pt;}
.ws68{word-spacing:-4.374009pt;}
.ws5e{word-spacing:-4.310248pt;}
.ws63{word-spacing:-4.246487pt;}
.ws23{word-spacing:-3.991443pt;}
.ws59{word-spacing:-3.608876pt;}
.ws7c{word-spacing:-3.481354pt;}
.ws39{word-spacing:-3.417593pt;}
.ws62{word-spacing:-3.162549pt;}
.ws3c{word-spacing:-3.098788pt;}
.ws7{word-spacing:-2.618184pt;}
.ws71{word-spacing:-2.588699pt;}
.ws1c{word-spacing:-2.524938pt;}
.wse{word-spacing:-2.443638pt;}
.ws4f{word-spacing:-2.142372pt;}
.wsc{word-spacing:-1.978183pt;}
.ws65{word-spacing:-1.887328pt;}
.ws66{word-spacing:-0.102018pt;}
.ws18{word-spacing:-0.091815pt;}
.ws17{word-spacing:0.000000pt;}
.ws58{word-spacing:0.025504pt;}
.ws67{word-spacing:1.109443pt;}
.ws5a{word-spacing:1.300726pt;}
.ws4e{word-spacing:23.321129pt;}
.ws60{word-spacing:30.207289pt;}
.ws35{word-spacing:34.338985pt;}
.ws0{word-spacing:41.214800pt;}
._1b{margin-left:-8.630654pt;}
._0{margin-left:-6.942600pt;}
._23{margin-left:-5.961158pt;}
._7{margin-left:-4.945459pt;}
._5{margin-left:-3.316366pt;}
._3{margin-left:-2.065853pt;}
._8{margin-left:-1.134150pt;}
._4{width:1.629092pt;}
._2{width:2.810894pt;}
._20{width:14.136731pt;}
._11{width:15.767286pt;}
._6{width:16.669501pt;}
._14{width:18.572850pt;}
._f{width:20.015355pt;}
._1e{width:21.347194pt;}
._b{width:23.069507pt;}
._10{width:24.873145pt;}
._9{width:26.123658pt;}
._16{width:27.289737pt;}
._a{width:28.334569pt;}
._1c{width:29.920663pt;}
._12{width:31.140899pt;}
._22{width:32.186575pt;}
._c{width:33.454573pt;}
._21{width:34.548931pt;}
._19{width:35.696630pt;}
._15{width:36.971852pt;}
._18{width:38.722096pt;}
._d{width:41.250943pt;}
._1a{width:44.441463pt;}
._1d{width:45.397879pt;}
._17{width:46.787859pt;}
._e{width:48.116404pt;}
._13{width:52.008297pt;}
._1f{width:53.224535pt;}
._1{width:55.210200pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:56.149333pt;}
.y62{bottom:103.092000pt;}
.y89{bottom:111.209333pt;}
.y41{bottom:115.573333pt;}
.y61{bottom:126.994667pt;}
.y1d{bottom:132.361333pt;}
.y88{bottom:135.112000pt;}
.y40{bottom:139.476000pt;}
.y60{bottom:150.897333pt;}
.y1c{bottom:154.781333pt;}
.y87{bottom:159.014667pt;}
.y3f{bottom:163.378667pt;}
.y7f{bottom:166.682667pt;}
.y5f{bottom:174.800000pt;}
.y1b{bottom:177.200000pt;}
.y81{bottom:179.164000pt;}
.y86{bottom:182.918667pt;}
.y3e{bottom:187.282667pt;}
.y5e{bottom:198.704000pt;}
.y1a{bottom:199.620000pt;}
.y80{bottom:203.068000pt;}
.y85{bottom:206.821333pt;}
.y3d{bottom:211.185333pt;}
.y19{bottom:222.038667pt;}
.y5d{bottom:222.606667pt;}
.y7e{bottom:226.970667pt;}
.y84{bottom:230.724000pt;}
.y3c{bottom:235.088000pt;}
.y18{bottom:244.458667pt;}
.y5c{bottom:246.509333pt;}
.y7d{bottom:250.873333pt;}
.y83{bottom:254.626667pt;}
.y3b{bottom:258.990667pt;}
.y17{bottom:266.877333pt;}
.y5b{bottom:270.412000pt;}
.y7c{bottom:274.776000pt;}
.y82{bottom:278.530667pt;}
.y3a{bottom:282.894667pt;}
.y16{bottom:289.297333pt;}
.y5a{bottom:294.316000pt;}
.y7b{bottom:298.680000pt;}
.y39{bottom:306.797333pt;}
.y15{bottom:311.716000pt;}
.y59{bottom:318.218667pt;}
.y7a{bottom:322.582667pt;}
.y38{bottom:330.700000pt;}
.y14{bottom:334.136000pt;}
.y58{bottom:342.121333pt;}
.y79{bottom:346.485333pt;}
.y37{bottom:354.602667pt;}
.y13{bottom:356.554667pt;}
.y57{bottom:366.024000pt;}
.y78{bottom:370.388000pt;}
.y36{bottom:378.505333pt;}
.y12{bottom:378.974667pt;}
.y56{bottom:389.926667pt;}
.y77{bottom:394.290667pt;}
.y11{bottom:401.393333pt;}
.y35{bottom:402.409333pt;}
.y55{bottom:413.830667pt;}
.y76{bottom:418.194667pt;}
.y10{bottom:423.813333pt;}
.y34{bottom:426.312000pt;}
.y54{bottom:437.733333pt;}
.y75{bottom:442.097333pt;}
.yf{bottom:446.232000pt;}
.y33{bottom:450.214667pt;}
.y72{bottom:453.518667pt;}
.y53{bottom:461.636000pt;}
.y74{bottom:466.000000pt;}
.ye{bottom:468.652000pt;}
.y32{bottom:474.117333pt;}
.y52{bottom:485.538667pt;}
.y73{bottom:489.902667pt;}
.yd{bottom:491.070667pt;}
.y31{bottom:498.021333pt;}
.y51{bottom:509.442667pt;}
.yc{bottom:513.490667pt;}
.y71{bottom:513.806667pt;}
.y30{bottom:521.924000pt;}
.y50{bottom:533.345333pt;}
.yb{bottom:535.909333pt;}
.y70{bottom:537.709333pt;}
.y2f{bottom:545.826667pt;}
.y4f{bottom:557.248000pt;}
.ya{bottom:558.329333pt;}
.y6f{bottom:561.612000pt;}
.y2e{bottom:569.729333pt;}
.y9{bottom:580.748000pt;}
.y4e{bottom:581.150667pt;}
.y6e{bottom:585.514667pt;}
.y2d{bottom:593.633333pt;}
.y8{bottom:603.168000pt;}
.y4d{bottom:605.054667pt;}
.y6d{bottom:609.418667pt;}
.y2c{bottom:617.536000pt;}
.y7{bottom:625.586667pt;}
.y4c{bottom:628.957333pt;}
.y6c{bottom:633.321333pt;}
.y2b{bottom:641.438667pt;}
.y4b{bottom:652.860000pt;}
.y6{bottom:656.912000pt;}
.y6b{bottom:657.224000pt;}
.y2a{bottom:665.341333pt;}
.y4a{bottom:676.762667pt;}
.y6a{bottom:681.126667pt;}
.y29{bottom:689.245333pt;}
.y49{bottom:700.666667pt;}
.y69{bottom:705.029333pt;}
.y28{bottom:713.148000pt;}
.y8a{bottom:716.450667pt;}
.y5{bottom:717.990667pt;}
.y48{bottom:724.569333pt;}
.y68{bottom:728.933333pt;}
.y27{bottom:737.050667pt;}
.y4{bottom:747.662667pt;}
.y47{bottom:748.472000pt;}
.y67{bottom:752.836000pt;}
.y26{bottom:760.953333pt;}
.y46{bottom:772.374667pt;}
.y66{bottom:776.738667pt;}
.y3{bottom:777.336000pt;}
.y25{bottom:784.856000pt;}
.y65{bottom:800.641333pt;}
.y24{bottom:808.760000pt;}
.y45{bottom:812.062667pt;}
.y64{bottom:824.545333pt;}
.y2{bottom:830.420000pt;}
.y23{bottom:832.662667pt;}
.y63{bottom:848.448000pt;}
.y22{bottom:856.565333pt;}
.y1{bottom:871.632000pt;}
.y44{bottom:872.350667pt;}
.y21{bottom:880.468000pt;}
.y43{bottom:896.253333pt;}
.y20{bottom:904.372000pt;}
.y42{bottom:920.157333pt;}
.y1f{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:41.658217pt;}
.h5{height:47.820800pt;}
.h2{height:57.384800pt;}
.h6{height:64.270827pt;}
.h1{height:77.140000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x1{left:106.669333pt;}
.xb{left:119.412000pt;}
.x8{left:135.020000pt;}
.x7{left:156.838667pt;}
.x2{left:211.709333pt;}
.x5{left:221.172000pt;}
.x4{left:239.856000pt;}
.x3{left:316.830667pt;}
.x6{left:376.225333pt;}
.x9{left:404.097333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  