
    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_548f7f0e90f0470b138ea964.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_56d46f1c46f776d886c51c5a.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_283676066f96f268dac6ee20.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_75d8193dd4d2691bb2084d89.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_3607fde68372de460cbb4253.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.684000;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_45ab00dc29d365a75c89226d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.451000;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_755f3cc05d04ae30f56d4626.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.451000;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_5d3b6a48c5cd87b14874e715.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_cf9644c4a5ffca25ddd1ea11.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_3f1ce9ef4828ae8c70de07bb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_15a79045bca1ef2fa0c08a4b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_846723683f3b52df210ebeb6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_815e63c8e163b5864b67c2ac.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ce8755347812f98762a0eac8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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;}
.m9{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);}
.mf{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);}
.mb{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.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);}
.m15{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);}
.m12{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);}
.m1{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);}
.ma{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);}
.m11{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);}
.m2{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);}
.m14{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);}
.m4{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);}
.m8{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);}
.m6{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);}
.m13{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);}
.mc{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);}
.m10{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);}
.md{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);}
.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);}
.me{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);}
.v1{vertical-align:-9.822000px;}
.v2{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.987971px;}
.ls8{letter-spacing:2.988157px;}
.ls5{letter-spacing:2.988499px;}
.ls6{letter-spacing:2.988710px;}
.ls7{letter-spacing:2.990234px;}
.ls4{letter-spacing:2.990915px;}
.lsa{letter-spacing:21.420532px;}
.ls9{letter-spacing:29.882915px;}
.ls1{letter-spacing:32.727300px;}
.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;}
}
.ws2a{word-spacing:-32.727300px;}
.ws47{word-spacing:-29.887800px;}
.ws2d{word-spacing:-16.363650px;}
.ws14{word-spacing:-16.167286px;}
.ws13{word-spacing:-16.139475px;}
.ws56{word-spacing:-15.840534px;}
.ws3b{word-spacing:-15.316376px;}
.ws51{word-spacing:-14.923649px;}
.ws64{word-spacing:-14.858194px;}
.ws37{word-spacing:-14.465467px;}
.wsf{word-spacing:-14.405920px;}
.ws52{word-spacing:-14.334557px;}
.ws2e{word-spacing:-14.203648px;}
.ws5a{word-spacing:-13.927715px;}
.ws57{word-spacing:-13.808164px;}
.ws2f{word-spacing:-13.449600px;}
.ws66{word-spacing:-13.352738px;}
.ws4e{word-spacing:-12.894556px;}
.wse{word-spacing:-12.851754px;}
.ws60{word-spacing:-12.567283px;}
.ws1d{word-spacing:-12.370919px;}
.ws4d{word-spacing:-12.305465px;}
.ws41{word-spacing:-12.253998px;}
.ws50{word-spacing:-12.240010px;}
.ws5b{word-spacing:-12.134447px;}
.ws1a{word-spacing:-12.109101px;}
.ws4c{word-spacing:-11.912737px;}
.ws35{word-spacing:-11.775793px;}
.ws59{word-spacing:-11.596466px;}
.ws27{word-spacing:-11.476915px;}
.ws54{word-spacing:-11.454555px;}
.ws18{word-spacing:-11.323646px;}
.ws36{word-spacing:-11.192737px;}
.ws4a{word-spacing:-11.127282px;}
.ws40{word-spacing:-11.118262px;}
.ws3a{word-spacing:-11.061827px;}
.ws31{word-spacing:-10.996373px;}
.ws1b{word-spacing:-10.930918px;}
.ws4f{word-spacing:-10.865464px;}
.ws12{word-spacing:-10.734554px;}
.ws42{word-spacing:-10.699832px;}
.ws19{word-spacing:-10.669100px;}
.ws15{word-spacing:-10.603645px;}
.ws17{word-spacing:-10.538191px;}
.ws3e{word-spacing:-10.472736px;}
.wsa{word-spacing:-10.221628px;}
.ws61{word-spacing:-10.145463px;}
.ws5{word-spacing:-10.102076px;}
.wsc{word-spacing:-10.042301px;}
.ws10{word-spacing:-9.982525px;}
.ws9{word-spacing:-9.922750px;}
.ws3{word-spacing:-9.862974px;}
.ws32{word-spacing:-9.752735px;}
.wsb{word-spacing:-9.743423px;}
.ws2{word-spacing:-9.683647px;}
.ws4b{word-spacing:-9.621826px;}
.ws30{word-spacing:-9.490917px;}
.ws39{word-spacing:-9.425462px;}
.ws55{word-spacing:-9.360008px;}
.ws62{word-spacing:-8.836371px;}
.ws1c{word-spacing:-8.574553px;}
.ws29{word-spacing:-8.509098px;}
.ws3f{word-spacing:-8.443643px;}
.ws8{word-spacing:-8.368584px;}
.ws11{word-spacing:-8.312734px;}
.ws63{word-spacing:-8.181825px;}
.ws2c{word-spacing:-8.050916px;}
.ws6{word-spacing:-7.890379px;}
.ws7{word-spacing:-7.830604px;}
.wsd{word-spacing:-7.173072px;}
.ws33{word-spacing:-6.087278px;}
.ws5c{word-spacing:-5.563641px;}
.ws5d{word-spacing:-4.778186px;}
.ws44{word-spacing:-3.765863px;}
.ws43{word-spacing:-3.469094px;}
.ws5e{word-spacing:-3.010912px;}
.ws3c{word-spacing:-2.630126px;}
.ws5f{word-spacing:-2.618184px;}
.ws53{word-spacing:-2.290911px;}
.ws3d{word-spacing:-2.271473px;}
.ws4{word-spacing:-1.673717px;}
.ws1e{word-spacing:-1.570910px;}
.ws34{word-spacing:-1.505456px;}
.ws38{word-spacing:-1.440001px;}
.ws67{word-spacing:-0.657532px;}
.ws26{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.047821px;}
.ws48{word-spacing:-0.041843px;}
.ws21{word-spacing:0.000000px;}
.ws46{word-spacing:10.759608px;}
.ws58{word-spacing:18.345254px;}
.ws23{word-spacing:18.399053px;}
.ws22{word-spacing:21.142771px;}
.ws1{word-spacing:23.312640px;}
.ws16{word-spacing:23.694565px;}
.ws20{word-spacing:24.218202px;}
.ws0{word-spacing:31.091012px;}
.ws1f{word-spacing:31.876390px;}
.ws28{word-spacing:40.348800px;}
.ws25{word-spacing:47.719181px;}
.ws65{word-spacing:48.418425px;}
.ws24{word-spacing:54.928166px;}
.ws49{word-spacing:74.599949px;}
.ws45{word-spacing:318.305070px;}
._11{margin-left:-8.091257px;}
._3{margin-left:-5.810227px;}
._a{margin-left:-3.952929px;}
._0{margin-left:-2.788895px;}
._1{margin-left:-1.084590px;}
._2{width:1.936742px;}
._13{width:2.940979px;}
._9{width:17.581634px;}
._5{width:19.020635px;}
._f{width:21.470351px;}
._c{width:23.145275px;}
._7{width:24.875279px;}
._4{width:26.161154px;}
._d{width:27.816962px;}
._e{width:28.865479px;}
._b{width:29.959091px;}
._14{width:31.156390px;}
._16{width:33.512755px;}
._1a{width:35.291750px;}
._17{width:37.084620px;}
._1b{width:38.226729px;}
._1c{width:43.038600px;}
._15{width:44.626048px;}
._23{width:46.237843px;}
._18{width:48.478012px;}
._19{width:50.561528px;}
._6{width:51.681971px;}
._24{width:54.523976px;}
._10{width:57.992776px;}
._12{width:80.697600px;}
._8{width:96.836850px;}
._20{width:146.988200px;}
._1d{width:230.294828px;}
._22{width:338.668713px;}
._1f{width:348.192870px;}
._1e{width:375.996263px;}
._21{width:614.340603px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y29{bottom:63.168000px;}
.yac{bottom:130.537500px;}
.y3e{bottom:146.253000px;}
.yab{bottom:148.470000px;}
.y28{bottom:159.364500px;}
.y3d{bottom:166.576500px;}
.y6b{bottom:168.177000px;}
.y27{bottom:179.688000px;}
.y4a{bottom:186.745500px;}
.y3c{bottom:186.900000px;}
.yaa{bottom:187.090500px;}
.y6a{bottom:196.206000px;}
.y26{bottom:200.011500px;}
.y49{bottom:207.069000px;}
.y3b{bottom:207.223500px;}
.y69{bottom:214.138500px;}
.y48{bottom:227.394000px;}
.y3a{bottom:227.548500px;}
.y25{bottom:229.302000px;}
.y68{bottom:232.072500px;}
.ya9{bottom:247.615500px;}
.y47{bottom:247.717500px;}
.y24{bottom:249.625500px;}
.y67{bottom:250.005000px;}
.ya8{bottom:265.483500px;}
.y39{bottom:267.406500px;}
.y66{bottom:267.937500px;}
.ya7{bottom:267.939000px;}
.y46{bottom:268.041000px;}
.y23{bottom:269.949000px;}
.ya6{bottom:285.808500px;}
.y65{bottom:285.870000px;}
.ya5{bottom:288.262500px;}
.y22{bottom:290.272500px;}
.y45{bottom:297.331500px;}
.y8f{bottom:297.636000px;}
.ya4{bottom:308.586000px;}
.y64{bottom:312.012000px;}
.y8e{bottom:313.327500px;}
.y8d{bottom:315.568500px;}
.y44{bottom:317.655000px;}
.y21{bottom:319.563000px;}
.y38{bottom:320.191500px;}
.ya3{bottom:328.909500px;}
.y43{bottom:337.978500px;}
.y8c{bottom:339.031500px;}
.y20{bottom:339.886500px;}
.y37{bottom:340.515000px;}
.y63{bottom:347.076000px;}
.y42{bottom:358.302000px;}
.y1f{bottom:360.211500px;}
.y36{bottom:360.838500px;}
.y62{bottom:367.401000px;}
.ya2{bottom:374.404500px;}
.y1e{bottom:380.535000px;}
.y61{bottom:387.724500px;}
.y35{bottom:400.696500px;}
.y41{bottom:403.797000px;}
.y60{bottom:408.048000px;}
.y5a{bottom:409.137000px;}
.y1d{bottom:426.028500px;}
.y59{bottom:429.462000px;}
.ya1{bottom:434.928000px;}
.y58{bottom:449.785500px;}
.y34{bottom:453.483000px;}
.y5f{bottom:453.543000px;}
.ya0{bottom:455.253000px;}
.y88{bottom:464.119500px;}
.y57{bottom:467.655000px;}
.y40{bottom:469.701000px;}
.y56{bottom:470.109000px;}
.y33{bottom:473.806500px;}
.y87{bottom:484.443000px;}
.y9f{bottom:485.290500px;}
.y1c{bottom:486.553500px;}
.y3f{bottom:487.633500px;}
.y55{bottom:487.978500px;}
.y54{bottom:490.432500px;}
.y32{bottom:503.844000px;}
.y1b{bottom:504.423000px;}
.y86{bottom:504.766500px;}
.y9e{bottom:505.614000px;}
.y1a{bottom:506.877000px;}
.y5c{bottom:506.907000px;}
.y5e{bottom:519.447000px;}
.y31{bottom:524.167500px;}
.y5b{bottom:524.839500px;}
.y53{bottom:530.290500px;}
.y85{bottom:534.057000px;}
.y9d{bottom:535.651500px;}
.y5d{bottom:537.379500px;}
.y19{bottom:549.616500px;}
.y30{bottom:554.205000px;}
.y84{bottom:554.380500px;}
.y9c{bottom:555.975000px;}
.y18{bottom:567.549000px;}
.y83{bottom:572.250000px;}
.y82{bottom:574.704000px;}
.y17{bottom:585.483000px;}
.y52{bottom:588.456000px;}
.y9b{bottom:593.592000px;}
.y2f{bottom:596.944500px;}
.y16{bottom:601.173000px;}
.y15{bottom:603.415500px;}
.y81{bottom:603.994500px;}
.y51{bottom:606.388500px;}
.y14{bottom:619.107000px;}
.y13{bottom:621.348000px;}
.y80{bottom:624.318000px;}
.y2e{bottom:636.802500px;}
.y12{bottom:639.280500px;}
.y7f{bottom:642.187500px;}
.y7e{bottom:644.641500px;}
.y9a{bottom:646.377000px;}
.y11{bottom:657.213000px;}
.y7d{bottom:664.966500px;}
.y10{bottom:675.145500px;}
.y99{bottom:676.414500px;}
.y2d{bottom:682.894500px;}
.yf{bottom:693.079500px;}
.y98{bottom:696.738000px;}
.ye{bottom:708.769500px;}
.y7c{bottom:710.460000px;}
.yd{bottom:711.012000px;}
.y97{bottom:726.775500px;}
.yc{bottom:728.944500px;}
.yb{bottom:746.877000px;}
.y96{bottom:747.099000px;}
.y2c{bottom:748.798500px;}
.y8b{bottom:757.882500px;}
.ya{bottom:764.809500px;}
.y7b{bottom:770.985000px;}
.y2b{bottom:772.261500px;}
.y8a{bottom:773.572500px;}
.y89{bottom:775.815000px;}
.y9{bottom:782.742000px;}
.y95{bottom:784.716000px;}
.y2a{bottom:788.700000px;}
.y7a{bottom:788.854500px;}
.y79{bottom:791.308500px;}
.y78{bottom:811.632000px;}
.y8{bottom:814.498500px;}
.y94{bottom:830.808000px;}
.y77{bottom:851.490000px;}
.y7{bottom:877.263000px;}
.y93{bottom:896.712000px;}
.y76{bottom:904.275000px;}
.y92{bottom:912.403500px;}
.y91{bottom:914.644500px;}
.y6{bottom:922.717500px;}
.y75{bottom:924.600000px;}
.y90{bottom:938.106000px;}
.y74{bottom:942.468000px;}
.y5{bottom:943.639500px;}
.y73{bottom:944.923500px;}
.y4{bottom:964.560000px;}
.y72{bottom:984.781500px;}
.y50{bottom:991.474500px;}
.y4f{bottom:1011.798000px;}
.y3{bottom:1018.993500px;}
.y4e{bottom:1032.121500px;}
.y71{bottom:1037.566500px;}
.y2{bottom:1039.915500px;}
.y4d{bottom:1052.446500px;}
.y70{bottom:1055.436000px;}
.y6f{bottom:1057.890000px;}
.y1{bottom:1072.792500px;}
.y6e{bottom:1078.215000px;}
.y4c{bottom:1092.304500px;}
.yae{bottom:1095.058500px;}
.y6d{bottom:1096.083000px;}
.y6c{bottom:1098.538500px;}
.yad{bottom:1120.464000px;}
.y4b{bottom:1138.396500px;}
.h6{height:18.452675px;}
.h8{height:21.088885px;}
.h5{height:27.783619px;}
.h9{height:31.800699px;}
.hb{height:40.348800px;}
.h4{height:44.831700px;}
.h7{height:49.090950px;}
.h3{height:53.798400px;}
.ha{height:64.557900px;}
.h2{height:77.366008px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:106.086000px;}
.x1a{left:108.000000px;}
.x28{left:117.144000px;}
.x24{left:126.994500px;}
.x23{left:128.910000px;}
.x32{left:132.501000px;}
.x1{left:134.337000px;}
.x30{left:141.333000px;}
.x3a{left:143.011500px;}
.xa{left:147.160500px;}
.x3{left:148.195500px;}
.x20{left:150.807000px;}
.x2c{left:166.806000px;}
.x18{left:169.233000px;}
.x9{left:171.325500px;}
.xb{left:177.435000px;}
.x2d{left:180.174000px;}
.x19{left:181.732500px;}
.x2f{left:183.339000px;}
.x17{left:184.458000px;}
.xc{left:190.096500px;}
.x38{left:201.486000px;}
.x36{left:202.758000px;}
.x39{left:213.048000px;}
.x37{left:214.225500px;}
.xd{left:224.295000px;}
.x3d{left:226.474500px;}
.xe{left:240.504000px;}
.x2b{left:245.937000px;}
.xf{left:262.212000px;}
.x10{left:268.915500px;}
.x6{left:278.869500px;}
.x2{left:291.070500px;}
.x11{left:299.091000px;}
.x12{left:305.796000px;}
.x5{left:309.286500px;}
.x4{left:332.895000px;}
.x31{left:344.952000px;}
.x7{left:385.707000px;}
.x13{left:404.536500px;}
.x14{left:411.241500px;}
.x8{left:413.812500px;}
.x40{left:433.746000px;}
.x42{left:438.274500px;}
.x41{left:440.844000px;}
.x1f{left:442.366500px;}
.x15{left:444.381000px;}
.x16{left:451.905000px;}
.x21{left:458.136000px;}
.x22{left:459.997500px;}
.x2a{left:482.952000px;}
.x29{left:484.162500px;}
.x3e{left:550.053000px;}
.x3f{left:562.582500px;}
.x1b{left:639.540000px;}
.x1c{left:647.437500px;}
.x33{left:651.246000px;}
.x34{left:663.655500px;}
.x1d{left:679.143000px;}
.x1e{left:686.241000px;}
.x3b{left:688.870500px;}
.x25{left:694.104000px;}
.x3c{left:696.394500px;}
.x26{left:702.001500px;}
.x35{left:709.323000px;}
.x27{left:778.132500px;}
@media print{
.v1{vertical-align:-8.730667pt;}
.v2{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.655975pt;}
.ls8{letter-spacing:2.656140pt;}
.ls5{letter-spacing:2.656444pt;}
.ls6{letter-spacing:2.656631pt;}
.ls7{letter-spacing:2.657986pt;}
.ls4{letter-spacing:2.658591pt;}
.lsa{letter-spacing:19.040473pt;}
.ls9{letter-spacing:26.562591pt;}
.ls1{letter-spacing:29.090933pt;}
.ws2a{word-spacing:-29.090933pt;}
.ws47{word-spacing:-26.566933pt;}
.ws2d{word-spacing:-14.545467pt;}
.ws14{word-spacing:-14.370921pt;}
.ws13{word-spacing:-14.346200pt;}
.ws56{word-spacing:-14.080475pt;}
.ws3b{word-spacing:-13.614557pt;}
.ws51{word-spacing:-13.265466pt;}
.ws64{word-spacing:-13.207284pt;}
.ws37{word-spacing:-12.858193pt;}
.wsf{word-spacing:-12.805262pt;}
.ws52{word-spacing:-12.741829pt;}
.ws2e{word-spacing:-12.625465pt;}
.ws5a{word-spacing:-12.380191pt;}
.ws57{word-spacing:-12.273923pt;}
.ws2f{word-spacing:-11.955200pt;}
.ws66{word-spacing:-11.869101pt;}
.ws4e{word-spacing:-11.461828pt;}
.wse{word-spacing:-11.423781pt;}
.ws60{word-spacing:-11.170918pt;}
.ws1d{word-spacing:-10.996373pt;}
.ws4d{word-spacing:-10.938191pt;}
.ws41{word-spacing:-10.892443pt;}
.ws50{word-spacing:-10.880009pt;}
.ws5b{word-spacing:-10.786175pt;}
.ws1a{word-spacing:-10.763645pt;}
.ws4c{word-spacing:-10.589100pt;}
.ws35{word-spacing:-10.467372pt;}
.ws59{word-spacing:-10.307970pt;}
.ws27{word-spacing:-10.201702pt;}
.ws54{word-spacing:-10.181827pt;}
.ws18{word-spacing:-10.065463pt;}
.ws36{word-spacing:-9.949099pt;}
.ws4a{word-spacing:-9.890917pt;}
.ws40{word-spacing:-9.882899pt;}
.ws3a{word-spacing:-9.832735pt;}
.ws31{word-spacing:-9.774554pt;}
.ws1b{word-spacing:-9.716372pt;}
.ws4f{word-spacing:-9.658190pt;}
.ws12{word-spacing:-9.541826pt;}
.ws42{word-spacing:-9.510962pt;}
.ws19{word-spacing:-9.483644pt;}
.ws15{word-spacing:-9.425462pt;}
.ws17{word-spacing:-9.367281pt;}
.ws3e{word-spacing:-9.309099pt;}
.wsa{word-spacing:-9.085891pt;}
.ws61{word-spacing:-9.018189pt;}
.ws5{word-spacing:-8.979623pt;}
.wsc{word-spacing:-8.926490pt;}
.ws10{word-spacing:-8.873356pt;}
.ws9{word-spacing:-8.820222pt;}
.ws3{word-spacing:-8.767088pt;}
.ws32{word-spacing:-8.669098pt;}
.wsb{word-spacing:-8.660820pt;}
.ws2{word-spacing:-8.607686pt;}
.ws4b{word-spacing:-8.552734pt;}
.ws30{word-spacing:-8.436371pt;}
.ws39{word-spacing:-8.378189pt;}
.ws55{word-spacing:-8.320007pt;}
.ws62{word-spacing:-7.854552pt;}
.ws1c{word-spacing:-7.621825pt;}
.ws29{word-spacing:-7.563643pt;}
.ws3f{word-spacing:-7.505461pt;}
.ws8{word-spacing:-7.438741pt;}
.ws11{word-spacing:-7.389097pt;}
.ws63{word-spacing:-7.272733pt;}
.ws2c{word-spacing:-7.156370pt;}
.ws6{word-spacing:-7.013670pt;}
.ws7{word-spacing:-6.960537pt;}
.wsd{word-spacing:-6.376064pt;}
.ws33{word-spacing:-5.410914pt;}
.ws5c{word-spacing:-4.945459pt;}
.ws5d{word-spacing:-4.247276pt;}
.ws44{word-spacing:-3.347434pt;}
.ws43{word-spacing:-3.083639pt;}
.ws5e{word-spacing:-2.676366pt;}
.ws3c{word-spacing:-2.337890pt;}
.ws5f{word-spacing:-2.327275pt;}
.ws53{word-spacing:-2.036365pt;}
.ws3d{word-spacing:-2.019087pt;}
.ws4{word-spacing:-1.487748pt;}
.ws1e{word-spacing:-1.396365pt;}
.ws34{word-spacing:-1.338183pt;}
.ws38{word-spacing:-1.280001pt;}
.ws67{word-spacing:-0.584473pt;}
.ws26{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws48{word-spacing:-0.037194pt;}
.ws21{word-spacing:0.000000pt;}
.ws46{word-spacing:9.564096pt;}
.ws58{word-spacing:16.306893pt;}
.ws23{word-spacing:16.354714pt;}
.ws22{word-spacing:18.793574pt;}
.ws1{word-spacing:20.722347pt;}
.ws16{word-spacing:21.061836pt;}
.ws20{word-spacing:21.527291pt;}
.ws0{word-spacing:27.636455pt;}
.ws1f{word-spacing:28.334569pt;}
.ws28{word-spacing:35.865600pt;}
.ws25{word-spacing:42.417050pt;}
.ws65{word-spacing:43.038600pt;}
.ws24{word-spacing:48.825037pt;}
.ws49{word-spacing:66.311066pt;}
.ws45{word-spacing:282.937840pt;}
._11{margin-left:-7.192228pt;}
._3{margin-left:-5.164646pt;}
._a{margin-left:-3.513715pt;}
._0{margin-left:-2.479018pt;}
._1{margin-left:-0.964080pt;}
._2{width:1.721549pt;}
._13{width:2.614204pt;}
._9{width:15.628119pt;}
._5{width:16.907231pt;}
._f{width:19.084757pt;}
._c{width:20.573578pt;}
._7{width:22.111359pt;}
._4{width:23.254359pt;}
._d{width:24.726189pt;}
._e{width:25.658203pt;}
._b{width:26.630303pt;}
._14{width:27.694569pt;}
._16{width:29.789116pt;}
._1a{width:31.370445pt;}
._17{width:32.964107pt;}
._1b{width:33.979315pt;}
._1c{width:38.256533pt;}
._15{width:39.667598pt;}
._23{width:41.100305pt;}
._18{width:43.091566pt;}
._19{width:44.943581pt;}
._6{width:45.939530pt;}
._24{width:48.465757pt;}
._10{width:51.549134pt;}
._12{width:71.731200pt;}
._8{width:86.077200pt;}
._20{width:130.656178pt;}
._1d{width:204.706514pt;}
._22{width:301.038856pt;}
._1f{width:309.504773pt;}
._1e{width:334.218901pt;}
._21{width:546.080536pt;}
.fs8{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:56.149333pt;}
.yac{bottom:116.033333pt;}
.y3e{bottom:130.002667pt;}
.yab{bottom:131.973333pt;}
.y28{bottom:141.657333pt;}
.y3d{bottom:148.068000pt;}
.y6b{bottom:149.490667pt;}
.y27{bottom:159.722667pt;}
.y4a{bottom:165.996000pt;}
.y3c{bottom:166.133333pt;}
.yaa{bottom:166.302667pt;}
.y6a{bottom:174.405333pt;}
.y26{bottom:177.788000pt;}
.y49{bottom:184.061333pt;}
.y3b{bottom:184.198667pt;}
.y69{bottom:190.345333pt;}
.y48{bottom:202.128000pt;}
.y3a{bottom:202.265333pt;}
.y25{bottom:203.824000pt;}
.y68{bottom:206.286667pt;}
.ya9{bottom:220.102667pt;}
.y47{bottom:220.193333pt;}
.y24{bottom:221.889333pt;}
.y67{bottom:222.226667pt;}
.ya8{bottom:235.985333pt;}
.y39{bottom:237.694667pt;}
.y66{bottom:238.166667pt;}
.ya7{bottom:238.168000pt;}
.y46{bottom:238.258667pt;}
.y23{bottom:239.954667pt;}
.ya6{bottom:254.052000pt;}
.y65{bottom:254.106667pt;}
.ya5{bottom:256.233333pt;}
.y22{bottom:258.020000pt;}
.y45{bottom:264.294667pt;}
.y8f{bottom:264.565333pt;}
.ya4{bottom:274.298667pt;}
.y64{bottom:277.344000pt;}
.y8e{bottom:278.513333pt;}
.y8d{bottom:280.505333pt;}
.y44{bottom:282.360000pt;}
.y21{bottom:284.056000pt;}
.y38{bottom:284.614667pt;}
.ya3{bottom:292.364000pt;}
.y43{bottom:300.425333pt;}
.y8c{bottom:301.361333pt;}
.y20{bottom:302.121333pt;}
.y37{bottom:302.680000pt;}
.y63{bottom:308.512000pt;}
.y42{bottom:318.490667pt;}
.y1f{bottom:320.188000pt;}
.y36{bottom:320.745333pt;}
.y62{bottom:326.578667pt;}
.ya2{bottom:332.804000pt;}
.y1e{bottom:338.253333pt;}
.y61{bottom:344.644000pt;}
.y35{bottom:356.174667pt;}
.y41{bottom:358.930667pt;}
.y60{bottom:362.709333pt;}
.y5a{bottom:363.677333pt;}
.y1d{bottom:378.692000pt;}
.y59{bottom:381.744000pt;}
.ya1{bottom:386.602667pt;}
.y58{bottom:399.809333pt;}
.y34{bottom:403.096000pt;}
.y5f{bottom:403.149333pt;}
.ya0{bottom:404.669333pt;}
.y88{bottom:412.550667pt;}
.y57{bottom:415.693333pt;}
.y40{bottom:417.512000pt;}
.y56{bottom:417.874667pt;}
.y33{bottom:421.161333pt;}
.y87{bottom:430.616000pt;}
.y9f{bottom:431.369333pt;}
.y1c{bottom:432.492000pt;}
.y3f{bottom:433.452000pt;}
.y55{bottom:433.758667pt;}
.y54{bottom:435.940000pt;}
.y32{bottom:447.861333pt;}
.y1b{bottom:448.376000pt;}
.y86{bottom:448.681333pt;}
.y9e{bottom:449.434667pt;}
.y1a{bottom:450.557333pt;}
.y5c{bottom:450.584000pt;}
.y5e{bottom:461.730667pt;}
.y31{bottom:465.926667pt;}
.y5b{bottom:466.524000pt;}
.y53{bottom:471.369333pt;}
.y85{bottom:474.717333pt;}
.y9d{bottom:476.134667pt;}
.y5d{bottom:477.670667pt;}
.y19{bottom:488.548000pt;}
.y30{bottom:492.626667pt;}
.y84{bottom:492.782667pt;}
.y9c{bottom:494.200000pt;}
.y18{bottom:504.488000pt;}
.y83{bottom:508.666667pt;}
.y82{bottom:510.848000pt;}
.y17{bottom:520.429333pt;}
.y52{bottom:523.072000pt;}
.y9b{bottom:527.637333pt;}
.y2f{bottom:530.617333pt;}
.y16{bottom:534.376000pt;}
.y15{bottom:536.369333pt;}
.y81{bottom:536.884000pt;}
.y51{bottom:539.012000pt;}
.y14{bottom:550.317333pt;}
.y13{bottom:552.309333pt;}
.y80{bottom:554.949333pt;}
.y2e{bottom:566.046667pt;}
.y12{bottom:568.249333pt;}
.y7f{bottom:570.833333pt;}
.y7e{bottom:573.014667pt;}
.y9a{bottom:574.557333pt;}
.y11{bottom:584.189333pt;}
.y7d{bottom:591.081333pt;}
.y10{bottom:600.129333pt;}
.y99{bottom:601.257333pt;}
.y2d{bottom:607.017333pt;}
.yf{bottom:616.070667pt;}
.y98{bottom:619.322667pt;}
.ye{bottom:630.017333pt;}
.y7c{bottom:631.520000pt;}
.yd{bottom:632.010667pt;}
.y97{bottom:646.022667pt;}
.yc{bottom:647.950667pt;}
.yb{bottom:663.890667pt;}
.y96{bottom:664.088000pt;}
.y2c{bottom:665.598667pt;}
.y8b{bottom:673.673333pt;}
.ya{bottom:679.830667pt;}
.y7b{bottom:685.320000pt;}
.y2b{bottom:686.454667pt;}
.y8a{bottom:687.620000pt;}
.y89{bottom:689.613333pt;}
.y9{bottom:695.770667pt;}
.y95{bottom:697.525333pt;}
.y2a{bottom:701.066667pt;}
.y7a{bottom:701.204000pt;}
.y79{bottom:703.385333pt;}
.y78{bottom:721.450667pt;}
.y8{bottom:723.998667pt;}
.y94{bottom:738.496000pt;}
.y77{bottom:756.880000pt;}
.y7{bottom:779.789333pt;}
.y93{bottom:797.077333pt;}
.y76{bottom:803.800000pt;}
.y92{bottom:811.025333pt;}
.y91{bottom:813.017333pt;}
.y6{bottom:820.193333pt;}
.y75{bottom:821.866667pt;}
.y90{bottom:833.872000pt;}
.y74{bottom:837.749333pt;}
.y5{bottom:838.790667pt;}
.y73{bottom:839.932000pt;}
.y4{bottom:857.386667pt;}
.y72{bottom:875.361333pt;}
.y50{bottom:881.310667pt;}
.y4f{bottom:899.376000pt;}
.y3{bottom:905.772000pt;}
.y4e{bottom:917.441333pt;}
.y71{bottom:922.281333pt;}
.y2{bottom:924.369333pt;}
.y4d{bottom:935.508000pt;}
.y70{bottom:938.165333pt;}
.y6f{bottom:940.346667pt;}
.y1{bottom:953.593333pt;}
.y6e{bottom:958.413333pt;}
.y4c{bottom:970.937333pt;}
.yae{bottom:973.385333pt;}
.y6d{bottom:974.296000pt;}
.y6c{bottom:976.478667pt;}
.yad{bottom:995.968000pt;}
.y4b{bottom:1011.908000pt;}
.h6{height:16.402378pt;}
.h8{height:18.745675pt;}
.h5{height:24.696550pt;}
.h9{height:28.267288pt;}
.hb{height:35.865600pt;}
.h4{height:39.850400pt;}
.h7{height:43.636400pt;}
.h3{height:47.820800pt;}
.ha{height:57.384800pt;}
.h2{height:68.769785pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:94.298667pt;}
.x1a{left:96.000000pt;}
.x28{left:104.128000pt;}
.x24{left:112.884000pt;}
.x23{left:114.586667pt;}
.x32{left:117.778667pt;}
.x1{left:119.410667pt;}
.x30{left:125.629333pt;}
.x3a{left:127.121333pt;}
.xa{left:130.809333pt;}
.x3{left:131.729333pt;}
.x20{left:134.050667pt;}
.x2c{left:148.272000pt;}
.x18{left:150.429333pt;}
.x9{left:152.289333pt;}
.xb{left:157.720000pt;}
.x2d{left:160.154667pt;}
.x19{left:161.540000pt;}
.x2f{left:162.968000pt;}
.x17{left:163.962667pt;}
.xc{left:168.974667pt;}
.x38{left:179.098667pt;}
.x36{left:180.229333pt;}
.x39{left:189.376000pt;}
.x37{left:190.422667pt;}
.xd{left:199.373333pt;}
.x3d{left:201.310667pt;}
.xe{left:213.781333pt;}
.x2b{left:218.610667pt;}
.xf{left:233.077333pt;}
.x10{left:239.036000pt;}
.x6{left:247.884000pt;}
.x2{left:258.729333pt;}
.x11{left:265.858667pt;}
.x12{left:271.818667pt;}
.x5{left:274.921333pt;}
.x4{left:295.906667pt;}
.x31{left:306.624000pt;}
.x7{left:342.850667pt;}
.x13{left:359.588000pt;}
.x14{left:365.548000pt;}
.x8{left:367.833333pt;}
.x40{left:385.552000pt;}
.x42{left:389.577333pt;}
.x41{left:391.861333pt;}
.x1f{left:393.214667pt;}
.x15{left:395.005333pt;}
.x16{left:401.693333pt;}
.x21{left:407.232000pt;}
.x22{left:408.886667pt;}
.x2a{left:429.290667pt;}
.x29{left:430.366667pt;}
.x3e{left:488.936000pt;}
.x3f{left:500.073333pt;}
.x1b{left:568.480000pt;}
.x1c{left:575.500000pt;}
.x33{left:578.885333pt;}
.x34{left:589.916000pt;}
.x1d{left:603.682667pt;}
.x1e{left:609.992000pt;}
.x3b{left:612.329333pt;}
.x25{left:616.981333pt;}
.x3c{left:619.017333pt;}
.x26{left:624.001333pt;}
.x35{left:630.509333pt;}
.x27{left:691.673333pt;}
}




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