
    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_ba54e6e488caa70ee7093f62.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_abc837444f1bd1e4fea64bed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.683000;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_88b12c69994dccf5de998b4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908000;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_0d7178b25b4969f9a688a201.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_cf1707d08c211adb92323344.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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:ff6;src:url('chunks/assets/font_d6ce8d3a36ddb0cac018b51b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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:ff7;src:url('chunks/assets/font_e291f06f6796ec4742ea543c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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:ff8;src:url('chunks/assets/font_654e67b73c6245b577570b82.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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:ff9;src:url('chunks/assets/font_1013b5846333a8acc4def4c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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:ffa;src:url('chunks/assets/font_c1dcdc703a76f560c722e0df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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;}
.m4{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);}
.m10{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);}
.m12{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);}
.m3{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);}
.m13{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);}
.m2{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);}
.me{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);}
.m14{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);}
.m8{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);}
.mf{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);}
.m1b{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);}
.m5{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);}
.m16{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);}
.m11{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);}
.m15{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);}
.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);}
.m1d{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);}
.ma{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);}
.md{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);}
.m19{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);}
.m18{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);}
.m6{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);}
.mb{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);}
.m1a{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);}
.m7{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);}
.m1c{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);}
.m17{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);}
.m1e{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);}
.m1f{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);}
.m1{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);}
.mc{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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.356366px;}
.ls1{letter-spacing:14.596376px;}
.ls3{letter-spacing:24.087293px;}
.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;}
}
.ws7d{word-spacing:-56.814593px;}
.ws43{word-spacing:-48.418425px;}
.ws30{word-spacing:-42.637126px;}
.wse{word-spacing:-38.937826px;}
.ws21{word-spacing:-33.453846px;}
.ws27{word-spacing:-32.727300px;}
.ws50{word-spacing:-28.040751px;}
.ws51{word-spacing:-23.000746px;}
.ws0{word-spacing:-19.367325px;}
.ws31{word-spacing:-19.309107px;}
.ws82{word-spacing:-17.803651px;}
.ws29{word-spacing:-17.476378px;}
.ws1f{word-spacing:-17.018196px;}
.ws2f{word-spacing:-16.560014px;}
.ws83{word-spacing:-16.304741px;}
.ws1e{word-spacing:-16.139475px;}
.ws34{word-spacing:-15.774559px;}
.ws28{word-spacing:-15.185467px;}
.ws9{word-spacing:-15.003676px;}
.wsf{word-spacing:-14.824349px;}
.ws5c{word-spacing:-14.596376px;}
.ws2e{word-spacing:-14.400012px;}
.wsb{word-spacing:-14.346144px;}
.ws32{word-spacing:-14.334557px;}
.ws81{word-spacing:-13.810921px;}
.ws23{word-spacing:-13.352738px;}
.ws4e{word-spacing:-13.025465px;}
.ws35{word-spacing:-12.960011px;}
.ws16{word-spacing:-12.911530px;}
.ws4d{word-spacing:-12.829102px;}
.ws93{word-spacing:-12.698192px;}
.ws48{word-spacing:-12.632738px;}
.ws49{word-spacing:-12.567283px;}
.ws2b{word-spacing:-12.436374px;}
.ws20{word-spacing:-12.240010px;}
.ws36{word-spacing:-11.919283px;}
.ws54{word-spacing:-11.912737px;}
.wsd{word-spacing:-11.835569px;}
.ws8f{word-spacing:-11.716373px;}
.ws94{word-spacing:-11.592010px;}
.ws33{word-spacing:-11.454555px;}
.ws8d{word-spacing:-11.389100px;}
.ws64{word-spacing:-11.323646px;}
.ws4f{word-spacing:-11.258191px;}
.ws7{word-spacing:-11.237813px;}
.ws42{word-spacing:-11.192737px;}
.ws3a{word-spacing:-11.127282px;}
.ws25{word-spacing:-11.061827px;}
.ws4c{word-spacing:-10.996373px;}
.ws2d{word-spacing:-10.930918px;}
.ws56{word-spacing:-10.865464px;}
.ws3b{word-spacing:-10.800009px;}
.ws90{word-spacing:-10.741100px;}
.ws5d{word-spacing:-10.734554px;}
.ws2a{word-spacing:-10.669100px;}
.ws38{word-spacing:-10.603645px;}
.ws8e{word-spacing:-10.544736px;}
.ws39{word-spacing:-10.538191px;}
.ws84{word-spacing:-10.479281px;}
.ws2c{word-spacing:-10.472736px;}
.ws70{word-spacing:-10.413827px;}
.ws4a{word-spacing:-10.407281px;}
.wsc{word-spacing:-10.341179px;}
.ws80{word-spacing:-10.282918px;}
.ws10{word-spacing:-10.281403px;}
.ws6e{word-spacing:-10.276372px;}
.ws24{word-spacing:-10.145463px;}
.ws19{word-spacing:-10.102076px;}
.ws66{word-spacing:-10.086554px;}
.ws5{word-spacing:-10.042301px;}
.ws65{word-spacing:-10.021099px;}
.ws1b{word-spacing:-9.982525px;}
.ws77{word-spacing:-9.955645px;}
.ws3c{word-spacing:-9.890190px;}
.ws61{word-spacing:-9.883645px;}
.wsa{word-spacing:-9.862974px;}
.ws6d{word-spacing:-9.759281px;}
.ws6{word-spacing:-9.743423px;}
.ws8a{word-spacing:-9.693826px;}
.ws52{word-spacing:-9.687281px;}
.ws8{word-spacing:-9.623872px;}
.ws78{word-spacing:-9.497462px;}
.ws6c{word-spacing:-9.490917px;}
.ws6f{word-spacing:-9.432008px;}
.ws6a{word-spacing:-9.425462px;}
.ws4b{word-spacing:-9.360008px;}
.ws41{word-spacing:-9.170189px;}
.ws91{word-spacing:-9.163644px;}
.ws3{word-spacing:-9.151644px;}
.ws11{word-spacing:-9.032093px;}
.ws6b{word-spacing:-8.777462px;}
.ws1d{word-spacing:-8.736836px;}
.ws92{word-spacing:-8.515643px;}
.ws17{word-spacing:-8.428360px;}
.ws18{word-spacing:-8.368584px;}
.ws75{word-spacing:-8.247280px;}
.ws67{word-spacing:-8.181825px;}
.ws15{word-spacing:-8.129482px;}
.ws69{word-spacing:-8.116370px;}
.ws7c{word-spacing:-8.057461px;}
.ws7b{word-spacing:-7.985461px;}
.ws76{word-spacing:-7.599279px;}
.ws68{word-spacing:-7.533824px;}
.ws45{word-spacing:-7.003642px;}
.ws73{word-spacing:-6.807278px;}
.ws13{word-spacing:-6.754643px;}
.ws1a{word-spacing:-6.694867px;}
.ws7f{word-spacing:-6.676369px;}
.ws74{word-spacing:-6.355642px;}
.ws26{word-spacing:-6.218187px;}
.ws7e{word-spacing:-6.159278px;}
.ws71{word-spacing:-5.694550px;}
.ws47{word-spacing:-5.563641px;}
.ws79{word-spacing:-5.498186px;}
.ws22{word-spacing:-5.432732px;}
.ws72{word-spacing:-5.308368px;}
.ws5e{word-spacing:-5.236368px;}
.ws7a{word-spacing:-5.177459px;}
.ws60{word-spacing:-4.581822px;}
.ws5f{word-spacing:-4.516367px;}
.ws37{word-spacing:-3.992731px;}
.ws12{word-spacing:-3.706087px;}
.ws14{word-spacing:-3.646312px;}
.ws46{word-spacing:-3.403639px;}
.ws62{word-spacing:-3.141821px;}
.ws44{word-spacing:-2.094547px;}
.ws53{word-spacing:-1.832729px;}
.ws8b{word-spacing:-1.309092px;}
.ws8c{word-spacing:-1.250183px;}
.ws4{word-spacing:-1.195512px;}
.ws3f{word-spacing:-1.112728px;}
.ws40{word-spacing:-1.053819px;}
.ws3d{word-spacing:-1.047274px;}
.ws1{word-spacing:-0.103292px;}
.ws1c{word-spacing:0.000000px;}
.ws3e{word-spacing:1.302547px;}
.ws57{word-spacing:3.600003px;}
.ws89{word-spacing:4.182549px;}
.ws58{word-spacing:4.450913px;}
.ws88{word-spacing:4.647277px;}
.ws55{word-spacing:7.920007px;}
.ws86{word-spacing:9.026189px;}
.ws87{word-spacing:9.818190px;}
.ws85{word-spacing:9.883645px;}
.ws59{word-spacing:20.290926px;}
.ws2{word-spacing:23.312640px;}
.ws5b{word-spacing:24.349111px;}
.ws63{word-spacing:48.418425px;}
.ws5a{word-spacing:118.472826px;}
._20{margin-left:-23.311339px;}
._1{margin-left:-9.709486px;}
._d{margin-left:-7.299354px;}
._5{margin-left:-5.810227px;}
._1c{margin-left:-4.481377px;}
._0{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._6{width:1.936742px;}
._3{width:3.305357px;}
._16{width:5.040004px;}
._10{width:17.476378px;}
._f{width:18.562211px;}
._13{width:20.782456px;}
._8{width:22.726657px;}
._b{width:24.912536px;}
._a{width:26.062162px;}
._7{width:27.305520px;}
._9{width:28.534990px;}
._11{width:29.701156px;}
._e{width:32.712068px;}
._15{width:34.260893px;}
._17{width:35.372380px;}
._1f{width:38.220586px;}
._1e{width:39.963870px;}
._22{width:41.810257px;}
._1d{width:43.038600px;}
._19{width:45.856779px;}
._21{width:48.355717px;}
._2{width:51.542908px;}
._18{width:53.172462px;}
._1a{width:56.972398px;}
._c{width:58.084895px;}
._14{width:59.301868px;}
._12{width:96.836850px;}
._1b{width:153.089434px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y19{bottom:63.168000px;}
.y89{bottom:122.595000px;}
.y88{bottom:145.966500px;}
.y87{bottom:182.788500px;}
.y86{bottom:206.161500px;}
.y85{bottom:229.533000px;}
.y84{bottom:266.355000px;}
.y83{bottom:289.726500px;}
.y82{bottom:326.548500px;}
.y81{bottom:349.921500px;}
.y80{bottom:373.293000px;}
.y7f{bottom:410.115000px;}
.y4b{bottom:423.355500px;}
.y7e{bottom:433.488000px;}
.y4a{bottom:446.728500px;}
.y18{bottom:451.429500px;}
.y7d{bottom:456.859500px;}
.y49{bottom:470.100000px;}
.y17{bottom:472.051500px;}
.y16{bottom:492.675000px;}
.y48{bottom:493.473000px;}
.y7c{bottom:493.681500px;}
.y15{bottom:513.297000px;}
.y7b{bottom:517.053000px;}
.y66{bottom:517.221000px;}
.y14{bottom:533.919000px;}
.y7a{bottom:540.426000px;}
.y47{bottom:542.913000px;}
.y13{bottom:554.542500px;}
.y65{bottom:565.092000px;}
.y45{bottom:566.284500px;}
.y46{bottom:566.286000px;}
.y12{bottom:575.164500px;}
.y79{bottom:577.248000px;}
.y64{bottom:588.465000px;}
.y11{bottom:595.788000px;}
.y9c{bottom:596.650500px;}
.y78{bottom:600.619500px;}
.y44{bottom:603.106500px;}
.y63{bottom:611.836500px;}
.y10{bottom:616.410000px;}
.y9b{bottom:620.022000px;}
.y77{bottom:623.992500px;}
.y43{bottom:626.479500px;}
.y62{bottom:635.209500px;}
.yf{bottom:637.032000px;}
.y2d{bottom:646.152000px;}
.y9a{bottom:656.844000px;}
.ye{bottom:657.655500px;}
.y61{bottom:658.581000px;}
.y76{bottom:660.814500px;}
.y42{bottom:663.301500px;}
.y2c{bottom:669.523500px;}
.yd{bottom:678.277500px;}
.y99{bottom:680.215500px;}
.y60{bottom:681.954000px;}
.y75{bottom:684.186000px;}
.y41{bottom:686.673000px;}
.y2b{bottom:692.896500px;}
.y5c{bottom:694.855500px;}
.yc{bottom:698.899500px;}
.y74{bottom:707.559000px;}
.y2a{bottom:716.268000px;}
.y98{bottom:717.037500px;}
.y5b{bottom:718.228500px;}
.yb{bottom:719.523000px;}
.y40{bottom:723.495000px;}
.y5f{bottom:729.666000px;}
.ya{bottom:740.145000px;}
.y97{bottom:740.410500px;}
.y5a{bottom:741.600000px;}
.y73{bottom:744.381000px;}
.y3f{bottom:746.868000px;}
.y29{bottom:747.775500px;}
.y9{bottom:760.767000px;}
.y59{bottom:764.973000px;}
.y72{bottom:767.752500px;}
.y28{bottom:771.148500px;}
.y96{bottom:777.232500px;}
.y8{bottom:781.390500px;}
.y3e{bottom:783.688500px;}
.y71{bottom:791.125500px;}
.y5e{bottom:793.393500px;}
.y27{bottom:794.520000px;}
.y3d{bottom:807.061500px;}
.y58{bottom:808.191000px;}
.y95{bottom:814.054500px;}
.y7{bottom:815.005500px;}
.y5d{bottom:816.766500px;}
.y26{bottom:817.893000px;}
.y39{bottom:825.454500px;}
.y70{bottom:827.946000px;}
.y94{bottom:837.426000px;}
.y25{bottom:841.264500px;}
.y57{bottom:844.971000px;}
.y38{bottom:848.826000px;}
.y6f{bottom:851.319000px;}
.y3c{bottom:856.501500px;}
.y24{bottom:864.637500px;}
.y56{bottom:865.294500px;}
.y37{bottom:872.199000px;}
.y93{bottom:874.248000px;}
.y6{bottom:879.628500px;}
.y55{bottom:885.618000px;}
.y3b{bottom:888.009000px;}
.y6e{bottom:888.141000px;}
.y36{bottom:895.570500px;}
.y23{bottom:896.145000px;}
.y92{bottom:897.619500px;}
.y54{bottom:909.588000px;}
.y3a{bottom:911.382000px;}
.y6d{bottom:911.512500px;}
.y35{bottom:918.943500px;}
.y22{bottom:919.516500px;}
.y5{bottom:925.192500px;}
.y53{bottom:929.911500px;}
.y91{bottom:934.441500px;}
.y21{bottom:942.889500px;}
.y6c{bottom:948.334500px;}
.y4{bottom:949.252500px;}
.y52{bottom:950.235000px;}
.y34{bottom:950.451000px;}
.y90{bottom:957.814500px;}
.y20{bottom:966.261000px;}
.y6b{bottom:971.707500px;}
.y3{bottom:973.312500px;}
.y33{bottom:973.822500px;}
.y51{bottom:974.205000px;}
.y1f{bottom:989.634000px;}
.y50{bottom:994.530000px;}
.y8f{bottom:994.636500px;}
.y6a{bottom:995.079000px;}
.y32{bottom:997.195500px;}
.y1e{bottom:1013.005500px;}
.y8e{bottom:1018.008000px;}
.y4f{bottom:1018.498500px;}
.y31{bottom:1020.567000px;}
.y2{bottom:1030.053000px;}
.y69{bottom:1031.901000px;}
.y1d{bottom:1036.378500px;}
.y4e{bottom:1038.823500px;}
.y30{bottom:1043.940000px;}
.y8d{bottom:1054.830000px;}
.y68{bottom:1055.272500px;}
.y1c{bottom:1059.750000px;}
.y4d{bottom:1062.793500px;}
.y2f{bottom:1067.311500px;}
.y1{bottom:1067.860500px;}
.y8b{bottom:1078.201500px;}
.y8c{bottom:1078.203000px;}
.y4c{bottom:1083.117000px;}
.y2e{bottom:1090.684500px;}
.y67{bottom:1092.094500px;}
.y1b{bottom:1107.462000px;}
.y8a{bottom:1115.023500px;}
.y1a{bottom:1138.396500px;}
.h5{height:42.799330px;}
.h4{height:44.831700px;}
.h8{height:46.865494px;}
.h6{height:49.090950px;}
.h3{height:50.498765px;}
.h7{height:60.254040px;}
.h2{height:72.304680px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:106.945500px;}
.x12{left:108.000000px;}
.x16{left:119.805000px;}
.x2{left:124.005000px;}
.x1b{left:127.999500px;}
.x17{left:131.050500px;}
.x2c{left:132.234000px;}
.x2b{left:133.455000px;}
.x2d{left:141.636000px;}
.x13{left:144.313500px;}
.x1{left:145.929000px;}
.xa{left:147.160500px;}
.x9{left:148.909500px;}
.x23{left:152.127000px;}
.x20{left:154.041000px;}
.x25{left:166.327500px;}
.x8{left:171.325500px;}
.x26{left:177.573000px;}
.x27{left:218.118000px;}
.xf{left:242.365500px;}
.x10{left:252.637500px;}
.x28{left:258.603000px;}
.x4{left:268.600500px;}
.x29{left:269.848500px;}
.x24{left:283.788000px;}
.x3{left:365.370000px;}
.x2a{left:368.842500px;}
.x19{left:375.046500px;}
.x6{left:381.073500px;}
.x1a{left:386.293500px;}
.x5{left:401.977500px;}
.x7{left:413.812500px;}
.x14{left:417.687000px;}
.x2e{left:421.351500px;}
.x15{left:428.932500px;}
.x2f{left:432.598500px;}
.x11{left:442.366500px;}
.xd{left:460.909500px;}
.xe{left:471.180000px;}
.x21{left:476.655000px;}
.x30{left:579.628500px;}
.x31{left:590.874000px;}
.xb{left:598.627500px;}
.xc{left:608.898000px;}
.x22{left:611.313000px;}
.x1c{left:614.901000px;}
.x1d{left:681.366000px;}
.x1e{left:698.856000px;}
.x1f{left:782.565000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.094547pt;}
.ls1{letter-spacing:12.974556pt;}
.ls3{letter-spacing:21.410927pt;}
.ws7d{word-spacing:-50.501860pt;}
.ws43{word-spacing:-43.038600pt;}
.ws30{word-spacing:-37.899668pt;}
.wse{word-spacing:-34.611401pt;}
.ws21{word-spacing:-29.736752pt;}
.ws27{word-spacing:-29.090933pt;}
.ws50{word-spacing:-24.925112pt;}
.ws51{word-spacing:-20.445108pt;}
.ws0{word-spacing:-17.215400pt;}
.ws31{word-spacing:-17.163651pt;}
.ws82{word-spacing:-15.825468pt;}
.ws29{word-spacing:-15.534558pt;}
.ws1f{word-spacing:-15.127285pt;}
.ws2f{word-spacing:-14.720012pt;}
.ws83{word-spacing:-14.493103pt;}
.ws1e{word-spacing:-14.346200pt;}
.ws34{word-spacing:-14.021830pt;}
.ws28{word-spacing:-13.498193pt;}
.ws9{word-spacing:-13.336601pt;}
.wsf{word-spacing:-13.177199pt;}
.ws5c{word-spacing:-12.974556pt;}
.ws2e{word-spacing:-12.800011pt;}
.wsb{word-spacing:-12.752128pt;}
.ws32{word-spacing:-12.741829pt;}
.ws81{word-spacing:-12.276374pt;}
.ws23{word-spacing:-11.869101pt;}
.ws4e{word-spacing:-11.578191pt;}
.ws35{word-spacing:-11.520010pt;}
.ws16{word-spacing:-11.476915pt;}
.ws4d{word-spacing:-11.403646pt;}
.ws93{word-spacing:-11.287282pt;}
.ws48{word-spacing:-11.229100pt;}
.ws49{word-spacing:-11.170918pt;}
.ws2b{word-spacing:-11.054555pt;}
.ws20{word-spacing:-10.880009pt;}
.ws36{word-spacing:-10.594918pt;}
.ws54{word-spacing:-10.589100pt;}
.wsd{word-spacing:-10.520506pt;}
.ws8f{word-spacing:-10.414554pt;}
.ws94{word-spacing:-10.304009pt;}
.ws33{word-spacing:-10.181827pt;}
.ws8d{word-spacing:-10.123645pt;}
.ws64{word-spacing:-10.065463pt;}
.ws4f{word-spacing:-10.007281pt;}
.ws7{word-spacing:-9.989167pt;}
.ws42{word-spacing:-9.949099pt;}
.ws3a{word-spacing:-9.890917pt;}
.ws25{word-spacing:-9.832735pt;}
.ws4c{word-spacing:-9.774554pt;}
.ws2d{word-spacing:-9.716372pt;}
.ws56{word-spacing:-9.658190pt;}
.ws3b{word-spacing:-9.600008pt;}
.ws90{word-spacing:-9.547644pt;}
.ws5d{word-spacing:-9.541826pt;}
.ws2a{word-spacing:-9.483644pt;}
.ws38{word-spacing:-9.425462pt;}
.ws8e{word-spacing:-9.373099pt;}
.ws39{word-spacing:-9.367281pt;}
.ws84{word-spacing:-9.314917pt;}
.ws2c{word-spacing:-9.309099pt;}
.ws70{word-spacing:-9.256735pt;}
.ws4a{word-spacing:-9.250917pt;}
.wsc{word-spacing:-9.192159pt;}
.ws80{word-spacing:-9.140371pt;}
.ws10{word-spacing:-9.139025pt;}
.ws6e{word-spacing:-9.134553pt;}
.ws24{word-spacing:-9.018189pt;}
.ws19{word-spacing:-8.979623pt;}
.ws66{word-spacing:-8.965826pt;}
.ws5{word-spacing:-8.926490pt;}
.ws65{word-spacing:-8.907644pt;}
.ws1b{word-spacing:-8.873356pt;}
.ws77{word-spacing:-8.849462pt;}
.ws3c{word-spacing:-8.791280pt;}
.ws61{word-spacing:-8.785462pt;}
.wsa{word-spacing:-8.767088pt;}
.ws6d{word-spacing:-8.674916pt;}
.ws6{word-spacing:-8.660820pt;}
.ws8a{word-spacing:-8.616734pt;}
.ws52{word-spacing:-8.610916pt;}
.ws8{word-spacing:-8.554553pt;}
.ws78{word-spacing:-8.442189pt;}
.ws6c{word-spacing:-8.436371pt;}
.ws6f{word-spacing:-8.384007pt;}
.ws6a{word-spacing:-8.378189pt;}
.ws4b{word-spacing:-8.320007pt;}
.ws41{word-spacing:-8.151280pt;}
.ws91{word-spacing:-8.145461pt;}
.ws3{word-spacing:-8.134795pt;}
.ws11{word-spacing:-8.028527pt;}
.ws6b{word-spacing:-7.802188pt;}
.ws1d{word-spacing:-7.766076pt;}
.ws92{word-spacing:-7.569461pt;}
.ws17{word-spacing:-7.491875pt;}
.ws18{word-spacing:-7.438741pt;}
.ws75{word-spacing:-7.330915pt;}
.ws67{word-spacing:-7.272733pt;}
.ws15{word-spacing:-7.226206pt;}
.ws69{word-spacing:-7.214551pt;}
.ws7c{word-spacing:-7.162188pt;}
.ws7b{word-spacing:-7.098188pt;}
.ws76{word-spacing:-6.754915pt;}
.ws68{word-spacing:-6.696733pt;}
.ws45{word-spacing:-6.225460pt;}
.ws73{word-spacing:-6.050914pt;}
.ws13{word-spacing:-6.004127pt;}
.ws1a{word-spacing:-5.950993pt;}
.ws7f{word-spacing:-5.934550pt;}
.ws74{word-spacing:-5.649459pt;}
.ws26{word-spacing:-5.527277pt;}
.ws7e{word-spacing:-5.474914pt;}
.ws71{word-spacing:-5.061822pt;}
.ws47{word-spacing:-4.945459pt;}
.ws79{word-spacing:-4.887277pt;}
.ws22{word-spacing:-4.829095pt;}
.ws72{word-spacing:-4.718549pt;}
.ws5e{word-spacing:-4.654549pt;}
.ws7a{word-spacing:-4.602186pt;}
.ws60{word-spacing:-4.072731pt;}
.ws5f{word-spacing:-4.014549pt;}
.ws37{word-spacing:-3.549094pt;}
.ws12{word-spacing:-3.294300pt;}
.ws14{word-spacing:-3.241166pt;}
.ws46{word-spacing:-3.025457pt;}
.ws62{word-spacing:-2.792730pt;}
.ws44{word-spacing:-1.861820pt;}
.ws53{word-spacing:-1.629092pt;}
.ws8b{word-spacing:-1.163637pt;}
.ws8c{word-spacing:-1.111274pt;}
.ws4{word-spacing:-1.062677pt;}
.ws3f{word-spacing:-0.989092pt;}
.ws40{word-spacing:-0.936728pt;}
.ws3d{word-spacing:-0.930910pt;}
.ws1{word-spacing:-0.091815pt;}
.ws1c{word-spacing:0.000000pt;}
.ws3e{word-spacing:1.157819pt;}
.ws57{word-spacing:3.200003pt;}
.ws89{word-spacing:3.717821pt;}
.ws58{word-spacing:3.956367pt;}
.ws88{word-spacing:4.130913pt;}
.ws55{word-spacing:7.040006pt;}
.ws86{word-spacing:8.023279pt;}
.ws87{word-spacing:8.727280pt;}
.ws85{word-spacing:8.785462pt;}
.ws59{word-spacing:18.036379pt;}
.ws2{word-spacing:20.722347pt;}
.ws5b{word-spacing:21.643654pt;}
.ws63{word-spacing:43.038600pt;}
.ws5a{word-spacing:105.309179pt;}
._20{margin-left:-20.721190pt;}
._1{margin-left:-8.630654pt;}
._d{margin-left:-6.488315pt;}
._5{margin-left:-5.164646pt;}
._1c{margin-left:-3.983446pt;}
._0{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._6{width:1.721549pt;}
._3{width:2.938095pt;}
._16{width:4.480004pt;}
._10{width:15.534558pt;}
._f{width:16.499743pt;}
._13{width:18.473294pt;}
._8{width:20.201473pt;}
._b{width:22.144477pt;}
._a{width:23.166366pt;}
._7{width:24.271573pt;}
._9{width:25.364435pt;}
._11{width:26.401028pt;}
._e{width:29.077394pt;}
._15{width:30.454127pt;}
._17{width:31.442115pt;}
._1f{width:33.973854pt;}
._1e{width:35.523440pt;}
._22{width:37.164673pt;}
._1d{width:38.256533pt;}
._19{width:40.761581pt;}
._21{width:42.982860pt;}
._2{width:45.815918pt;}
._18{width:47.264411pt;}
._1a{width:50.642131pt;}
._c{width:51.631018pt;}
._14{width:52.712771pt;}
._12{width:86.077200pt;}
._1b{width:136.079497pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:56.149333pt;}
.y89{bottom:108.973333pt;}
.y88{bottom:129.748000pt;}
.y87{bottom:162.478667pt;}
.y86{bottom:183.254667pt;}
.y85{bottom:204.029333pt;}
.y84{bottom:236.760000pt;}
.y83{bottom:257.534667pt;}
.y82{bottom:290.265333pt;}
.y81{bottom:311.041333pt;}
.y80{bottom:331.816000pt;}
.y7f{bottom:364.546667pt;}
.y4b{bottom:376.316000pt;}
.y7e{bottom:385.322667pt;}
.y4a{bottom:397.092000pt;}
.y18{bottom:401.270667pt;}
.y7d{bottom:406.097333pt;}
.y49{bottom:417.866667pt;}
.y17{bottom:419.601333pt;}
.y16{bottom:437.933333pt;}
.y48{bottom:438.642667pt;}
.y7c{bottom:438.828000pt;}
.y15{bottom:456.264000pt;}
.y7b{bottom:459.602667pt;}
.y66{bottom:459.752000pt;}
.y14{bottom:474.594667pt;}
.y7a{bottom:480.378667pt;}
.y47{bottom:482.589333pt;}
.y13{bottom:492.926667pt;}
.y65{bottom:502.304000pt;}
.y45{bottom:503.364000pt;}
.y46{bottom:503.365333pt;}
.y12{bottom:511.257333pt;}
.y79{bottom:513.109333pt;}
.y64{bottom:523.080000pt;}
.y11{bottom:529.589333pt;}
.y9c{bottom:530.356000pt;}
.y78{bottom:533.884000pt;}
.y44{bottom:536.094667pt;}
.y63{bottom:543.854667pt;}
.y10{bottom:547.920000pt;}
.y9b{bottom:551.130667pt;}
.y77{bottom:554.660000pt;}
.y43{bottom:556.870667pt;}
.y62{bottom:564.630667pt;}
.yf{bottom:566.250667pt;}
.y2d{bottom:574.357333pt;}
.y9a{bottom:583.861333pt;}
.ye{bottom:584.582667pt;}
.y61{bottom:585.405333pt;}
.y76{bottom:587.390667pt;}
.y42{bottom:589.601333pt;}
.y2c{bottom:595.132000pt;}
.yd{bottom:602.913333pt;}
.y99{bottom:604.636000pt;}
.y60{bottom:606.181333pt;}
.y75{bottom:608.165333pt;}
.y41{bottom:610.376000pt;}
.y2b{bottom:615.908000pt;}
.y5c{bottom:617.649333pt;}
.yc{bottom:621.244000pt;}
.y74{bottom:628.941333pt;}
.y2a{bottom:636.682667pt;}
.y98{bottom:637.366667pt;}
.y5b{bottom:638.425333pt;}
.yb{bottom:639.576000pt;}
.y40{bottom:643.106667pt;}
.y5f{bottom:648.592000pt;}
.ya{bottom:657.906667pt;}
.y97{bottom:658.142667pt;}
.y5a{bottom:659.200000pt;}
.y73{bottom:661.672000pt;}
.y3f{bottom:663.882667pt;}
.y29{bottom:664.689333pt;}
.y9{bottom:676.237333pt;}
.y59{bottom:679.976000pt;}
.y72{bottom:682.446667pt;}
.y28{bottom:685.465333pt;}
.y96{bottom:690.873333pt;}
.y8{bottom:694.569333pt;}
.y3e{bottom:696.612000pt;}
.y71{bottom:703.222667pt;}
.y5e{bottom:705.238667pt;}
.y27{bottom:706.240000pt;}
.y3d{bottom:717.388000pt;}
.y58{bottom:718.392000pt;}
.y95{bottom:723.604000pt;}
.y7{bottom:724.449333pt;}
.y5d{bottom:726.014667pt;}
.y26{bottom:727.016000pt;}
.y39{bottom:733.737333pt;}
.y70{bottom:735.952000pt;}
.y94{bottom:744.378667pt;}
.y25{bottom:747.790667pt;}
.y57{bottom:751.085333pt;}
.y38{bottom:754.512000pt;}
.y6f{bottom:756.728000pt;}
.y3c{bottom:761.334667pt;}
.y24{bottom:768.566667pt;}
.y56{bottom:769.150667pt;}
.y37{bottom:775.288000pt;}
.y93{bottom:777.109333pt;}
.y6{bottom:781.892000pt;}
.y55{bottom:787.216000pt;}
.y3b{bottom:789.341333pt;}
.y6e{bottom:789.458667pt;}
.y36{bottom:796.062667pt;}
.y23{bottom:796.573333pt;}
.y92{bottom:797.884000pt;}
.y54{bottom:808.522667pt;}
.y3a{bottom:810.117333pt;}
.y6d{bottom:810.233333pt;}
.y35{bottom:816.838667pt;}
.y22{bottom:817.348000pt;}
.y5{bottom:822.393333pt;}
.y53{bottom:826.588000pt;}
.y91{bottom:830.614667pt;}
.y21{bottom:838.124000pt;}
.y6c{bottom:842.964000pt;}
.y4{bottom:843.780000pt;}
.y52{bottom:844.653333pt;}
.y34{bottom:844.845333pt;}
.y90{bottom:851.390667pt;}
.y20{bottom:858.898667pt;}
.y6b{bottom:863.740000pt;}
.y3{bottom:865.166667pt;}
.y33{bottom:865.620000pt;}
.y51{bottom:865.960000pt;}
.y1f{bottom:879.674667pt;}
.y50{bottom:884.026667pt;}
.y8f{bottom:884.121333pt;}
.y6a{bottom:884.514667pt;}
.y32{bottom:886.396000pt;}
.y1e{bottom:900.449333pt;}
.y8e{bottom:904.896000pt;}
.y4f{bottom:905.332000pt;}
.y31{bottom:907.170667pt;}
.y2{bottom:915.602667pt;}
.y69{bottom:917.245333pt;}
.y1d{bottom:921.225333pt;}
.y4e{bottom:923.398667pt;}
.y30{bottom:927.946667pt;}
.y8d{bottom:937.626667pt;}
.y68{bottom:938.020000pt;}
.y1c{bottom:942.000000pt;}
.y4d{bottom:944.705333pt;}
.y2f{bottom:948.721333pt;}
.y1{bottom:949.209333pt;}
.y8b{bottom:958.401333pt;}
.y8c{bottom:958.402667pt;}
.y4c{bottom:962.770667pt;}
.y2e{bottom:969.497333pt;}
.y67{bottom:970.750667pt;}
.y1b{bottom:984.410667pt;}
.y8a{bottom:991.132000pt;}
.y1a{bottom:1011.908000pt;}
.h5{height:38.043849pt;}
.h4{height:39.850400pt;}
.h8{height:41.658217pt;}
.h6{height:43.636400pt;}
.h3{height:44.887791pt;}
.h7{height:53.559147pt;}
.h2{height:64.270827pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:95.062667pt;}
.x12{left:96.000000pt;}
.x16{left:106.493333pt;}
.x2{left:110.226667pt;}
.x1b{left:113.777333pt;}
.x17{left:116.489333pt;}
.x2c{left:117.541333pt;}
.x2b{left:118.626667pt;}
.x2d{left:125.898667pt;}
.x13{left:128.278667pt;}
.x1{left:129.714667pt;}
.xa{left:130.809333pt;}
.x9{left:132.364000pt;}
.x23{left:135.224000pt;}
.x20{left:136.925333pt;}
.x25{left:147.846667pt;}
.x8{left:152.289333pt;}
.x26{left:157.842667pt;}
.x27{left:193.882667pt;}
.xf{left:215.436000pt;}
.x10{left:224.566667pt;}
.x28{left:229.869333pt;}
.x4{left:238.756000pt;}
.x29{left:239.865333pt;}
.x24{left:252.256000pt;}
.x3{left:324.773333pt;}
.x2a{left:327.860000pt;}
.x19{left:333.374667pt;}
.x6{left:338.732000pt;}
.x1a{left:343.372000pt;}
.x5{left:357.313333pt;}
.x7{left:367.833333pt;}
.x14{left:371.277333pt;}
.x2e{left:374.534667pt;}
.x15{left:381.273333pt;}
.x2f{left:384.532000pt;}
.x11{left:393.214667pt;}
.xd{left:409.697333pt;}
.xe{left:418.826667pt;}
.x21{left:423.693333pt;}
.x30{left:515.225333pt;}
.x31{left:525.221333pt;}
.xb{left:532.113333pt;}
.xc{left:541.242667pt;}
.x22{left:543.389333pt;}
.x1c{left:546.578667pt;}
.x1d{left:605.658667pt;}
.x1e{left:621.205333pt;}
.x1f{left:695.613333pt;}
}




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