
    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_a210aed2d36b5a866cbb3c1d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_84b2a4fa5d6eb9a12d347521.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050000;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_e57484bdbb06fa46ddf01e19.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_9d573c451a5a1a5eb3b61e43.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050000;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_c20bb46ff1d582696ef01951.woff')format("woff");}.ff5{font-family:ff5;line-height:0.858000;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;}
.m2{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);}
.ma{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);}
.m21{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);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m8{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);}
.m26{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);}
.m17{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);}
.m1d{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);}
.m24{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);}
.m27{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);}
.m25{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);}
.m28{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);}
.m22{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);}
.m5{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);}
.m1c{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);}
.m1{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);}
.mc{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);}
.m15{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);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.mb{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);}
.m1b{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);}
.m14{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);}
.m6{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);}
.mf{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);}
.m11{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);}
.m23{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);}
.m10{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);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m1a{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);}
.m12{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);}
.m13{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);}
.m1e{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);}
.m3{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:6.545454px;}
.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;}
}
.ws1e{word-spacing:-53.798280px;}
.ws35{word-spacing:-44.831880px;}
.ws1f{word-spacing:-40.348710px;}
.ws5a{word-spacing:-29.887800px;}
.ws75{word-spacing:-26.899200px;}
.ws1c{word-spacing:-23.910300px;}
.ws52{word-spacing:-19.905275px;}
.ws5d{word-spacing:-19.785724px;}
.ws6a{word-spacing:-19.486846px;}
.ws2f{word-spacing:-18.709763px;}
.ws61{word-spacing:-18.530436px;}
.ws6f{word-spacing:-18.171782px;}
.ws4b{word-spacing:-17.693578px;}
.ws66{word-spacing:-17.574026px;}
.ws62{word-spacing:-17.514251px;}
.ws68{word-spacing:-17.394700px;}
.ws63{word-spacing:-17.275148px;}
.ws44{word-spacing:-17.215373px;}
.ws34{word-spacing:-17.095822px;}
.ws11{word-spacing:-16.796944px;}
.ws2b{word-spacing:-16.378514px;}
.ws4a{word-spacing:-16.258963px;}
.ws2c{word-spacing:-16.079636px;}
.ws4e{word-spacing:-16.019861px;}
.ws27{word-spacing:-15.960085px;}
.ws2d{word-spacing:-15.900310px;}
.ws5f{word-spacing:-15.720983px;}
.ws16{word-spacing:-15.601432px;}
.ws51{word-spacing:-15.541656px;}
.ws3{word-spacing:-15.493939px;}
.ws67{word-spacing:-15.481880px;}
.ws4d{word-spacing:-15.422105px;}
.ws69{word-spacing:-15.302554px;}
.ws25{word-spacing:-15.242778px;}
.ws26{word-spacing:-15.183002px;}
.wse{word-spacing:-15.123227px;}
.ws37{word-spacing:-15.063451px;}
.ws18{word-spacing:-15.003676px;}
.ws1{word-spacing:-14.943900px;}
.ws17{word-spacing:-14.884124px;}
.ws3c{word-spacing:-14.824349px;}
.ws3e{word-spacing:-14.764573px;}
.wsd{word-spacing:-14.704798px;}
.ws2a{word-spacing:-14.645022px;}
.ws10{word-spacing:-14.585246px;}
.ws15{word-spacing:-14.525471px;}
.ws3a{word-spacing:-14.465695px;}
.ws54{word-spacing:-14.346144px;}
.ws24{word-spacing:-14.286368px;}
.ws56{word-spacing:-14.047266px;}
.ws65{word-spacing:-13.987490px;}
.ws40{word-spacing:-13.628837px;}
.ws45{word-spacing:-13.569061px;}
.ws9{word-spacing:-13.449600px;}
.ws64{word-spacing:-13.449510px;}
.ws6{word-spacing:-13.395802px;}
.ws5{word-spacing:-13.342003px;}
.ws58{word-spacing:-13.031081px;}
.ws49{word-spacing:-12.971305px;}
.wsc{word-spacing:-12.911530px;}
.ws14{word-spacing:-12.851754px;}
.ws5c{word-spacing:-12.612652px;}
.ws6c{word-spacing:-12.552876px;}
.ws28{word-spacing:-12.493100px;}
.ws13{word-spacing:-12.433325px;}
.ws3b{word-spacing:-12.373549px;}
.ws19{word-spacing:-12.002971px;}
.ws74{word-spacing:-11.997043px;}
.ws1b{word-spacing:-11.955150px;}
.ws29{word-spacing:-11.955120px;}
.ws73{word-spacing:-11.835648px;}
.ws8{word-spacing:-11.781850px;}
.ws5b{word-spacing:-11.476915px;}
.ws12{word-spacing:-11.357364px;}
.ws59{word-spacing:-11.297588px;}
.ws50{word-spacing:-11.237813px;}
.ws60{word-spacing:-11.058486px;}
.ws6b{word-spacing:-10.640057px;}
.ws78{word-spacing:-10.275494px;}
.ws46{word-spacing:-10.161852px;}
.ws71{word-spacing:-10.042301px;}
.ws4c{word-spacing:-9.683647px;}
.ws55{word-spacing:-9.623872px;}
.ws57{word-spacing:-9.564096px;}
.ws48{word-spacing:-9.444545px;}
.ws22{word-spacing:-9.384769px;}
.ws43{word-spacing:-9.026116px;}
.ws39{word-spacing:-8.966340px;}
.ws70{word-spacing:-8.846789px;}
.ws6e{word-spacing:-8.727238px;}
.ws41{word-spacing:-8.667462px;}
.ws30{word-spacing:-8.189257px;}
.ws32{word-spacing:-8.069706px;}
.ws3f{word-spacing:-7.890379px;}
.ws47{word-spacing:-7.830604px;}
.ws42{word-spacing:-7.711052px;}
.ws7{word-spacing:-7.585574px;}
.ws6d{word-spacing:-7.412174px;}
.ws77{word-spacing:-7.262784px;}
.ws23{word-spacing:-7.173072px;}
.ws21{word-spacing:-6.814418px;}
.wsf{word-spacing:-6.754643px;}
.ws4{word-spacing:-6.348211px;}
.ws76{word-spacing:-6.079219px;}
.ws4f{word-spacing:-5.320028px;}
.ws5e{word-spacing:-4.662497px;}
.ws3d{word-spacing:-3.945190px;}
.ws72{word-spacing:-0.071731px;}
.ws20{word-spacing:0.000000px;}
.ws53{word-spacing:11.314403px;}
.ws31{word-spacing:14.884124px;}
.ws36{word-spacing:15.104340px;}
.ws33{word-spacing:15.183002px;}
.ws2e{word-spacing:17.861069px;}
.ws1d{word-spacing:19.571471px;}
.ws0{word-spacing:20.837864px;}
.ws38{word-spacing:20.873724px;}
.ws2{word-spacing:22.798912px;}
.wsa{word-spacing:26.846707px;}
.ws1a{word-spacing:28.333213px;}
.wsb{word-spacing:71.659469px;}
._3{margin-left:-5.481463px;}
._7{margin-left:-4.423394px;}
._1{margin-left:-3.347448px;}
._0{margin-left:-1.673724px;}
._2{width:1.853058px;}
._f{width:4.728286px;}
._10{width:5.977596px;}
._e{width:8.177357px;}
._a{width:11.716046px;}
._c{width:13.688612px;}
._8{width:14.824363px;}
._6{width:16.617617px;}
._b{width:29.887920px;}
._d{width:31.083262px;}
._5{width:44.114582px;}
._4{width:51.527005px;}
._9{width:71.731200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:37.060800px;}
.fs2{font-size:43.636200px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798280px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:59.775840px;}
.fs7{font-size:65.454540px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y25{bottom:10.630500px;}
.y24{bottom:24.826500px;}
.y23{bottom:39.024000px;}
.y26{bottom:51.024000px;}
.y22{bottom:53.220000px;}
.y21{bottom:57.561000px;}
.y20{bottom:101.911500px;}
.y1{bottom:114.802500px;}
.y1f{bottom:119.844000px;}
.y4f{bottom:125.433000px;}
.y95{bottom:130.039500px;}
.y7b{bottom:136.057500px;}
.y1e{bottom:137.778000px;}
.y4e{bottom:143.365500px;}
.y6d{bottom:143.488500px;}
.y94{bottom:147.972000px;}
.y98{bottom:148.918500px;}
.y7a{bottom:153.991500px;}
.y1d{bottom:155.710500px;}
.yad{bottom:161.298000px;}
.y6c{bottom:161.422500px;}
.y93{bottom:165.904500px;}
.y79{bottom:171.924000px;}
.y4d{bottom:173.253000px;}
.y1c{bottom:173.643000px;}
.yac{bottom:179.230500px;}
.y6b{bottom:179.355000px;}
.y92{bottom:183.837000px;}
.y78{bottom:189.856500px;}
.y4c{bottom:191.187000px;}
.y1b{bottom:191.575500px;}
.y6a{bottom:197.287500px;}
.y91{bottom:201.771000px;}
.y4b{bottom:209.119500px;}
.y1a{bottom:209.508000px;}
.y69{bottom:215.220000px;}
.y77{bottom:218.451000px;}
.y90{bottom:219.703500px;}
.y4a{bottom:227.052000px;}
.y68{bottom:233.152500px;}
.y8f{bottom:237.636000px;}
.y19{bottom:239.397000px;}
.y49{bottom:244.984500px;}
.y67{bottom:251.085000px;}
.y18{bottom:257.329500px;}
.y48{bottom:262.917000px;}
.y8e{bottom:267.523500px;}
.y66{bottom:269.019000px;}
.y17{bottom:275.262000px;}
.y47{bottom:280.849500px;}
.y8d{bottom:285.456000px;}
.y16{bottom:293.194500px;}
.yab{bottom:298.783500px;}
.y8c{bottom:303.390000px;}
.y65{bottom:306.378000px;}
.y46{bottom:310.738500px;}
.y15{bottom:311.127000px;}
.yaa{bottom:316.716000px;}
.y8b{bottom:321.322500px;}
.y45{bottom:328.671000px;}
.y14{bottom:329.059500px;}
.ya9{bottom:334.648500px;}
.y8a{bottom:339.255000px;}
.y44{bottom:346.603500px;}
.y13{bottom:346.993500px;}
.ya8{bottom:352.581000px;}
.y89{bottom:357.187500px;}
.y64{bottom:363.165000px;}
.y43{bottom:364.536000px;}
.y12{bottom:364.926000px;}
.ya7{bottom:370.513500px;}
.y88{bottom:375.120000px;}
.y63{bottom:381.097500px;}
.y42{bottom:382.468500px;}
.y11{bottom:382.858500px;}
.y87{bottom:393.052500px;}
.yb5{bottom:396.042000px;}
.y62{bottom:399.030000px;}
.ya6{bottom:400.402500px;}
.y10{bottom:400.791000px;}
.y86{bottom:410.986500px;}
.y41{bottom:416.902500px;}
.y61{bottom:416.964000px;}
.ya5{bottom:418.335000px;}
.yf{bottom:418.723500px;}
.y85{bottom:428.919000px;}
.yb4{bottom:431.907000px;}
.y60{bottom:434.896500px;}
.ya4{bottom:436.267500px;}
.y97{bottom:440.874000px;}
.y84{bottom:446.851500px;}
.y5f{bottom:452.829000px;}
.ya3{bottom:454.200000px;}
.ye{bottom:456.084000px;}
.y96{bottom:458.806500px;}
.y83{bottom:464.784000px;}
.yb3{bottom:467.773500px;}
.y40{bottom:470.761500px;}
.ya2{bottom:472.132500px;}
.y76{bottom:476.739000px;}
.y82{bottom:482.716500px;}
.y3f{bottom:488.694000px;}
.ya1{bottom:490.065000px;}
.y75{bottom:494.671500px;}
.yb2{bottom:503.638500px;}
.y3e{bottom:506.626500px;}
.ya0{bottom:507.999000px;}
.y74{bottom:512.605500px;}
.yd{bottom:512.871000px;}
.yb1{bottom:518.583000px;}
.y3d{bottom:524.560500px;}
.y9f{bottom:525.931500px;}
.y73{bottom:530.538000px;}
.yb0{bottom:539.503500px;}
.yc{bottom:539.770500px;}
.y3c{bottom:542.493000px;}
.y9e{bottom:543.864000px;}
.y72{bottom:548.470500px;}
.yaf{bottom:554.448000px;}
.yb{bottom:554.713500px;}
.y3b{bottom:560.425500px;}
.y9d{bottom:561.796500px;}
.y71{bottom:566.403000px;}
.ya{bottom:569.658000px;}
.y5e{bottom:572.380500px;}
.y3a{bottom:578.358000px;}
.y9c{bottom:579.729000px;}
.yae{bottom:581.347500px;}
.y70{bottom:584.335500px;}
.y9{bottom:584.602500px;}
.y5d{bottom:590.313000px;}
.y39{bottom:596.290500px;}
.y9b{bottom:597.661500px;}
.y8{bottom:599.545500px;}
.y6f{bottom:602.268000px;}
.y5c{bottom:608.245500px;}
.y38{bottom:614.224500px;}
.y7{bottom:614.490000px;}
.y9a{bottom:615.595500px;}
.y6e{bottom:620.202000px;}
.y5b{bottom:626.179500px;}
.y6{bottom:629.433000px;}
.y37{bottom:632.157000px;}
.y81{bottom:638.134500px;}
.y5a{bottom:644.112000px;}
.y99{bottom:650.028000px;}
.y36{bottom:650.089500px;}
.y80{bottom:656.067000px;}
.y59{bottom:662.044500px;}
.y35{bottom:668.022000px;}
.y7f{bottom:673.999500px;}
.y58{bottom:679.977000px;}
.y34{bottom:685.954500px;}
.y4{bottom:687.715500px;}
.y7e{bottom:691.932000px;}
.y5{bottom:693.139500px;}
.y57{bottom:697.909500px;}
.y33{bottom:703.887000px;}
.y7d{bottom:709.864500px;}
.y56{bottom:715.842000px;}
.y32{bottom:721.821000px;}
.y7c{bottom:727.798500px;}
.y3{bottom:731.052000px;}
.y31{bottom:739.753500px;}
.y55{bottom:745.731000px;}
.y2{bottom:756.457500px;}
.y30{bottom:757.686000px;}
.y54{bottom:763.663500px;}
.y2f{bottom:775.618500px;}
.y53{bottom:781.596000px;}
.y2e{bottom:793.551000px;}
.y52{bottom:799.528500px;}
.y2d{bottom:811.483500px;}
.y51{bottom:817.461000px;}
.y2c{bottom:829.417500px;}
.y2b{bottom:847.350000px;}
.y2a{bottom:865.282500px;}
.y29{bottom:883.215000px;}
.y28{bottom:919.174500px;}
.y50{bottom:919.623000px;}
.y27{bottom:935.613000px;}
.h8{height:30.834586px;}
.h5{height:36.305318px;}
.h9{height:39.786739px;}
.hb{height:44.760169px;}
.h6{height:44.760269px;}
.ha{height:45.818178px;}
.h7{height:49.637990px;}
.h4{height:49.733299px;}
.hd{height:49.733499px;}
.h3{height:57.910850px;}
.h2{height:792.055500px;}
.hc{height:906.858000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.xc{left:59.665500px;}
.x1{left:61.653000px;}
.xd{left:63.780000px;}
.x9{left:76.597500px;}
.xe{left:102.708000px;}
.xa{left:121.300500px;}
.x11{left:125.902500px;}
.xf{left:144.925500px;}
.xb{left:162.999000px;}
.x10{left:166.452000px;}
.x2{left:183.546000px;}
.x3{left:189.747000px;}
.x4{left:343.611000px;}
.x5{left:349.813500px;}
.x6{left:448.285500px;}
.x7{left:458.214000px;}
.x8{left:592.018500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:5.818181pt;}
.ws1e{word-spacing:-47.820693pt;}
.ws35{word-spacing:-39.850560pt;}
.ws1f{word-spacing:-35.865520pt;}
.ws5a{word-spacing:-26.566933pt;}
.ws75{word-spacing:-23.910400pt;}
.ws1c{word-spacing:-21.253600pt;}
.ws52{word-spacing:-17.693578pt;}
.ws5d{word-spacing:-17.587310pt;}
.ws6a{word-spacing:-17.321641pt;}
.ws2f{word-spacing:-16.630900pt;}
.ws61{word-spacing:-16.471499pt;}
.ws6f{word-spacing:-16.152695pt;}
.ws4b{word-spacing:-15.727625pt;}
.ws66{word-spacing:-15.621357pt;}
.ws62{word-spacing:-15.568223pt;}
.ws68{word-spacing:-15.461955pt;}
.ws63{word-spacing:-15.355687pt;}
.ws44{word-spacing:-15.302554pt;}
.ws34{word-spacing:-15.196286pt;}
.ws11{word-spacing:-14.930617pt;}
.ws2b{word-spacing:-14.558679pt;}
.ws4a{word-spacing:-14.452412pt;}
.ws2c{word-spacing:-14.293010pt;}
.ws4e{word-spacing:-14.239876pt;}
.ws27{word-spacing:-14.186742pt;}
.ws2d{word-spacing:-14.133609pt;}
.ws5f{word-spacing:-13.974207pt;}
.ws16{word-spacing:-13.867939pt;}
.ws51{word-spacing:-13.814805pt;}
.ws3{word-spacing:-13.772390pt;}
.ws67{word-spacing:-13.761671pt;}
.ws4d{word-spacing:-13.708538pt;}
.ws69{word-spacing:-13.602270pt;}
.ws25{word-spacing:-13.549136pt;}
.ws26{word-spacing:-13.496002pt;}
.wse{word-spacing:-13.442868pt;}
.ws37{word-spacing:-13.389734pt;}
.ws18{word-spacing:-13.336601pt;}
.ws1{word-spacing:-13.283467pt;}
.ws17{word-spacing:-13.230333pt;}
.ws3c{word-spacing:-13.177199pt;}
.ws3e{word-spacing:-13.124065pt;}
.wsd{word-spacing:-13.070931pt;}
.ws2a{word-spacing:-13.017797pt;}
.ws10{word-spacing:-12.964663pt;}
.ws15{word-spacing:-12.911530pt;}
.ws3a{word-spacing:-12.858396pt;}
.ws54{word-spacing:-12.752128pt;}
.ws24{word-spacing:-12.698994pt;}
.ws56{word-spacing:-12.486459pt;}
.ws65{word-spacing:-12.433325pt;}
.ws40{word-spacing:-12.114522pt;}
.ws45{word-spacing:-12.061388pt;}
.ws9{word-spacing:-11.955200pt;}
.ws64{word-spacing:-11.955120pt;}
.ws6{word-spacing:-11.907379pt;}
.ws5{word-spacing:-11.859558pt;}
.ws58{word-spacing:-11.583183pt;}
.ws49{word-spacing:-11.530049pt;}
.wsc{word-spacing:-11.476915pt;}
.ws14{word-spacing:-11.423781pt;}
.ws5c{word-spacing:-11.211246pt;}
.ws6c{word-spacing:-11.158112pt;}
.ws28{word-spacing:-11.104978pt;}
.ws13{word-spacing:-11.051844pt;}
.ws3b{word-spacing:-10.998710pt;}
.ws19{word-spacing:-10.669307pt;}
.ws74{word-spacing:-10.664038pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws29{word-spacing:-10.626773pt;}
.ws73{word-spacing:-10.520576pt;}
.ws8{word-spacing:-10.472755pt;}
.ws5b{word-spacing:-10.201702pt;}
.ws12{word-spacing:-10.095435pt;}
.ws59{word-spacing:-10.042301pt;}
.ws50{word-spacing:-9.989167pt;}
.ws60{word-spacing:-9.829765pt;}
.ws6b{word-spacing:-9.457828pt;}
.ws78{word-spacing:-9.133773pt;}
.ws46{word-spacing:-9.032757pt;}
.ws71{word-spacing:-8.926490pt;}
.ws4c{word-spacing:-8.607686pt;}
.ws55{word-spacing:-8.554553pt;}
.ws57{word-spacing:-8.501419pt;}
.ws48{word-spacing:-8.395151pt;}
.ws22{word-spacing:-8.342017pt;}
.ws43{word-spacing:-8.023214pt;}
.ws39{word-spacing:-7.970080pt;}
.ws70{word-spacing:-7.863812pt;}
.ws6e{word-spacing:-7.757545pt;}
.ws41{word-spacing:-7.704411pt;}
.ws30{word-spacing:-7.279340pt;}
.ws32{word-spacing:-7.173072pt;}
.ws3f{word-spacing:-7.013670pt;}
.ws47{word-spacing:-6.960537pt;}
.ws42{word-spacing:-6.854269pt;}
.ws7{word-spacing:-6.742733pt;}
.ws6d{word-spacing:-6.588599pt;}
.ws77{word-spacing:-6.455808pt;}
.ws23{word-spacing:-6.376064pt;}
.ws21{word-spacing:-6.057261pt;}
.wsf{word-spacing:-6.004127pt;}
.ws4{word-spacing:-5.642854pt;}
.ws76{word-spacing:-5.403750pt;}
.ws4f{word-spacing:-4.728914pt;}
.ws5e{word-spacing:-4.144442pt;}
.ws3d{word-spacing:-3.506835pt;}
.ws72{word-spacing:-0.063761pt;}
.ws20{word-spacing:0.000000pt;}
.ws53{word-spacing:10.057247pt;}
.ws31{word-spacing:13.230333pt;}
.ws36{word-spacing:13.426080pt;}
.ws33{word-spacing:13.496002pt;}
.ws2e{word-spacing:15.876506pt;}
.ws1d{word-spacing:17.396864pt;}
.ws0{word-spacing:18.522546pt;}
.ws38{word-spacing:18.554421pt;}
.ws2{word-spacing:20.265699pt;}
.wsa{word-spacing:23.863740pt;}
.ws1a{word-spacing:25.185078pt;}
.wsb{word-spacing:63.697306pt;}
._3{margin-left:-4.872412pt;}
._7{margin-left:-3.931906pt;}
._1{margin-left:-2.975509pt;}
._0{margin-left:-1.487755pt;}
._2{width:1.647163pt;}
._f{width:4.202921pt;}
._10{width:5.313419pt;}
._e{width:7.268762pt;}
._a{width:10.414263pt;}
._c{width:12.167655pt;}
._8{width:13.177212pt;}
._6{width:14.771215pt;}
._b{width:26.567040pt;}
._d{width:27.629566pt;}
._5{width:39.212962pt;}
._4{width:45.801782pt;}
._9{width:63.761067pt;}
.fs5{font-size:32.942933pt;}
.fs2{font-size:38.787733pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820693pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.134080pt;}
.fs7{font-size:58.181813pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:9.449333pt;}
.y24{bottom:22.068000pt;}
.y23{bottom:34.688000pt;}
.y26{bottom:45.354667pt;}
.y22{bottom:47.306667pt;}
.y21{bottom:51.165333pt;}
.y20{bottom:90.588000pt;}
.y1{bottom:102.046667pt;}
.y1f{bottom:106.528000pt;}
.y4f{bottom:111.496000pt;}
.y95{bottom:115.590667pt;}
.y7b{bottom:120.940000pt;}
.y1e{bottom:122.469333pt;}
.y4e{bottom:127.436000pt;}
.y6d{bottom:127.545333pt;}
.y94{bottom:131.530667pt;}
.y98{bottom:132.372000pt;}
.y7a{bottom:136.881333pt;}
.y1d{bottom:138.409333pt;}
.yad{bottom:143.376000pt;}
.y6c{bottom:143.486667pt;}
.y93{bottom:147.470667pt;}
.y79{bottom:152.821333pt;}
.y4d{bottom:154.002667pt;}
.y1c{bottom:154.349333pt;}
.yac{bottom:159.316000pt;}
.y6b{bottom:159.426667pt;}
.y92{bottom:163.410667pt;}
.y78{bottom:168.761333pt;}
.y4c{bottom:169.944000pt;}
.y1b{bottom:170.289333pt;}
.y6a{bottom:175.366667pt;}
.y91{bottom:179.352000pt;}
.y4b{bottom:185.884000pt;}
.y1a{bottom:186.229333pt;}
.y69{bottom:191.306667pt;}
.y77{bottom:194.178667pt;}
.y90{bottom:195.292000pt;}
.y4a{bottom:201.824000pt;}
.y68{bottom:207.246667pt;}
.y8f{bottom:211.232000pt;}
.y19{bottom:212.797333pt;}
.y49{bottom:217.764000pt;}
.y67{bottom:223.186667pt;}
.y18{bottom:228.737333pt;}
.y48{bottom:233.704000pt;}
.y8e{bottom:237.798667pt;}
.y66{bottom:239.128000pt;}
.y17{bottom:244.677333pt;}
.y47{bottom:249.644000pt;}
.y8d{bottom:253.738667pt;}
.y16{bottom:260.617333pt;}
.yab{bottom:265.585333pt;}
.y8c{bottom:269.680000pt;}
.y65{bottom:272.336000pt;}
.y46{bottom:276.212000pt;}
.y15{bottom:276.557333pt;}
.yaa{bottom:281.525333pt;}
.y8b{bottom:285.620000pt;}
.y45{bottom:292.152000pt;}
.y14{bottom:292.497333pt;}
.ya9{bottom:297.465333pt;}
.y8a{bottom:301.560000pt;}
.y44{bottom:308.092000pt;}
.y13{bottom:308.438667pt;}
.ya8{bottom:313.405333pt;}
.y89{bottom:317.500000pt;}
.y64{bottom:322.813333pt;}
.y43{bottom:324.032000pt;}
.y12{bottom:324.378667pt;}
.ya7{bottom:329.345333pt;}
.y88{bottom:333.440000pt;}
.y63{bottom:338.753333pt;}
.y42{bottom:339.972000pt;}
.y11{bottom:340.318667pt;}
.y87{bottom:349.380000pt;}
.yb5{bottom:352.037333pt;}
.y62{bottom:354.693333pt;}
.ya6{bottom:355.913333pt;}
.y10{bottom:356.258667pt;}
.y86{bottom:365.321333pt;}
.y41{bottom:370.580000pt;}
.y61{bottom:370.634667pt;}
.ya5{bottom:371.853333pt;}
.yf{bottom:372.198667pt;}
.y85{bottom:381.261333pt;}
.yb4{bottom:383.917333pt;}
.y60{bottom:386.574667pt;}
.ya4{bottom:387.793333pt;}
.y97{bottom:391.888000pt;}
.y84{bottom:397.201333pt;}
.y5f{bottom:402.514667pt;}
.ya3{bottom:403.733333pt;}
.ye{bottom:405.408000pt;}
.y96{bottom:407.828000pt;}
.y83{bottom:413.141333pt;}
.yb3{bottom:415.798667pt;}
.y40{bottom:418.454667pt;}
.ya2{bottom:419.673333pt;}
.y76{bottom:423.768000pt;}
.y82{bottom:429.081333pt;}
.y3f{bottom:434.394667pt;}
.ya1{bottom:435.613333pt;}
.y75{bottom:439.708000pt;}
.yb2{bottom:447.678667pt;}
.y3e{bottom:450.334667pt;}
.ya0{bottom:451.554667pt;}
.y74{bottom:455.649333pt;}
.yd{bottom:455.885333pt;}
.yb1{bottom:460.962667pt;}
.y3d{bottom:466.276000pt;}
.y9f{bottom:467.494667pt;}
.y73{bottom:471.589333pt;}
.yb0{bottom:479.558667pt;}
.yc{bottom:479.796000pt;}
.y3c{bottom:482.216000pt;}
.y9e{bottom:483.434667pt;}
.y72{bottom:487.529333pt;}
.yaf{bottom:492.842667pt;}
.yb{bottom:493.078667pt;}
.y3b{bottom:498.156000pt;}
.y9d{bottom:499.374667pt;}
.y71{bottom:503.469333pt;}
.ya{bottom:506.362667pt;}
.y5e{bottom:508.782667pt;}
.y3a{bottom:514.096000pt;}
.y9c{bottom:515.314667pt;}
.yae{bottom:516.753333pt;}
.y70{bottom:519.409333pt;}
.y9{bottom:519.646667pt;}
.y5d{bottom:524.722667pt;}
.y39{bottom:530.036000pt;}
.y9b{bottom:531.254667pt;}
.y8{bottom:532.929333pt;}
.y6f{bottom:535.349333pt;}
.y5c{bottom:540.662667pt;}
.y38{bottom:545.977333pt;}
.y7{bottom:546.213333pt;}
.y9a{bottom:547.196000pt;}
.y6e{bottom:551.290667pt;}
.y5b{bottom:556.604000pt;}
.y6{bottom:559.496000pt;}
.y37{bottom:561.917333pt;}
.y81{bottom:567.230667pt;}
.y5a{bottom:572.544000pt;}
.y99{bottom:577.802667pt;}
.y36{bottom:577.857333pt;}
.y80{bottom:583.170667pt;}
.y59{bottom:588.484000pt;}
.y35{bottom:593.797333pt;}
.y7f{bottom:599.110667pt;}
.y58{bottom:604.424000pt;}
.y34{bottom:609.737333pt;}
.y4{bottom:611.302667pt;}
.y7e{bottom:615.050667pt;}
.y5{bottom:616.124000pt;}
.y57{bottom:620.364000pt;}
.y33{bottom:625.677333pt;}
.y7d{bottom:630.990667pt;}
.y56{bottom:636.304000pt;}
.y32{bottom:641.618667pt;}
.y7c{bottom:646.932000pt;}
.y3{bottom:649.824000pt;}
.y31{bottom:657.558667pt;}
.y55{bottom:662.872000pt;}
.y2{bottom:672.406667pt;}
.y30{bottom:673.498667pt;}
.y54{bottom:678.812000pt;}
.y2f{bottom:689.438667pt;}
.y53{bottom:694.752000pt;}
.y2e{bottom:705.378667pt;}
.y52{bottom:710.692000pt;}
.y2d{bottom:721.318667pt;}
.y51{bottom:726.632000pt;}
.y2c{bottom:737.260000pt;}
.y2b{bottom:753.200000pt;}
.y2a{bottom:769.140000pt;}
.y29{bottom:785.080000pt;}
.y28{bottom:817.044000pt;}
.y50{bottom:817.442667pt;}
.y27{bottom:831.656000pt;}
.h8{height:27.408521pt;}
.h5{height:32.271394pt;}
.h9{height:35.365990pt;}
.hb{height:39.786817pt;}
.h6{height:39.786906pt;}
.ha{height:40.727269pt;}
.h7{height:44.122658pt;}
.h4{height:44.207377pt;}
.hd{height:44.207555pt;}
.h3{height:51.476311pt;}
.h2{height:704.049333pt;}
.hc{height:806.096000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.xc{left:53.036000pt;}
.x1{left:54.802667pt;}
.xd{left:56.693333pt;}
.x9{left:68.086667pt;}
.xe{left:91.296000pt;}
.xa{left:107.822667pt;}
.x11{left:111.913333pt;}
.xf{left:128.822667pt;}
.xb{left:144.888000pt;}
.x10{left:147.957333pt;}
.x2{left:163.152000pt;}
.x3{left:168.664000pt;}
.x4{left:305.432000pt;}
.x5{left:310.945333pt;}
.x6{left:398.476000pt;}
.x7{left:407.301333pt;}
.x8{left:526.238667pt;}
}




    .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; }
  