
    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_5e9c88f3e131ce681e23eba5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_7a0e47ef8d650c830e50a837.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_8c15306c7880c28b94aa50fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5117af6dcfb80d06c574ba4c.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_83798357ad074027f6fe9567.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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;}
.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);}
.m1{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);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.104000px;}
.v4{vertical-align:13.056000px;}
.v1{vertical-align:23.754000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.964877px;}
.ls3{letter-spacing:2.985403px;}
.ls2{letter-spacing:2.991403px;}
.ls0{letter-spacing:3.012698px;}
.ls6{letter-spacing:25.711621px;}
.ls5{letter-spacing:25.945621px;}
.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;}
}
.ws51{word-spacing:-23.929462px;}
.ws20{word-spacing:-19.941274px;}
.ws69{word-spacing:-18.196379px;}
.ws2{word-spacing:-16.617617px;}
.ws1{word-spacing:-13.294127px;}
.ws5f{word-spacing:-5.435947px;}
.ws16{word-spacing:-4.734259px;}
.ws3b{word-spacing:-4.590797px;}
.ws9{word-spacing:-4.303872px;}
.ws1b{word-spacing:-3.873485px;}
.ws6f{word-spacing:-3.600003px;}
.ws2b{word-spacing:-3.586560px;}
.ws66{word-spacing:-3.534548px;}
.ws15{word-spacing:-3.514829px;}
.ws44{word-spacing:-3.227904px;}
.ws19{word-spacing:-2.582323px;}
.ws1c{word-spacing:-2.510592px;}
.wsa{word-spacing:-2.367130px;}
.ws3d{word-spacing:-2.223667px;}
.wsf{word-spacing:-2.008474px;}
.ws2d{word-spacing:-1.936742px;}
.ws1f{word-spacing:-1.865011px;}
.ws2e{word-spacing:-1.793280px;}
.ws32{word-spacing:-1.649818px;}
.ws60{word-spacing:-1.636365px;}
.wsc{word-spacing:-1.219430px;}
.ws65{word-spacing:-1.178183px;}
.ws1e{word-spacing:-0.860774px;}
.ws1a{word-spacing:-0.573850px;}
.ws48{word-spacing:-0.502118px;}
.ws3e{word-spacing:-0.430387px;}
.ws25{word-spacing:-0.215194px;}
.ws49{word-spacing:-0.143462px;}
.ws50{word-spacing:-0.071731px;}
.ws53{word-spacing:-0.065455px;}
.ws67{word-spacing:-0.006923px;}
.ws61{word-spacing:-0.002429px;}
.ws0{word-spacing:0.000000px;}
.ws5b{word-spacing:0.130909px;}
.ws40{word-spacing:0.143462px;}
.ws71{word-spacing:0.261818px;}
.ws4e{word-spacing:0.358656px;}
.ws22{word-spacing:0.430387px;}
.ws10{word-spacing:0.502118px;}
.ws12{word-spacing:0.789043px;}
.ws24{word-spacing:1.075968px;}
.ws5e{word-spacing:1.112728px;}
.ws4c{word-spacing:1.219430px;}
.ws3f{word-spacing:1.362893px;}
.ws33{word-spacing:1.434624px;}
.ws52{word-spacing:1.505456px;}
.ws64{word-spacing:1.636365px;}
.ws28{word-spacing:1.649818px;}
.ws8{word-spacing:2.008474px;}
.ws5d{word-spacing:2.094547px;}
.ws17{word-spacing:2.151936px;}
.ws14{word-spacing:2.223667px;}
.ws21{word-spacing:2.438861px;}
.ws3{word-spacing:2.570016px;}
.ws26{word-spacing:2.582323px;}
.ws45{word-spacing:2.797517px;}
.wse{word-spacing:2.869248px;}
.wsb{word-spacing:2.940979px;}
.ws18{word-spacing:3.012710px;}
.ws4d{word-spacing:3.084442px;}
.wsd{word-spacing:3.156173px;}
.ws5c{word-spacing:3.272730px;}
.ws27{word-spacing:3.371366px;}
.ws42{word-spacing:3.658291px;}
.ws3a{word-spacing:3.801754px;}
.ws63{word-spacing:3.861821px;}
.ws4f{word-spacing:4.232141px;}
.ws7{word-spacing:4.303872px;}
.ws13{word-spacing:4.375603px;}
.ws39{word-spacing:4.590797px;}
.ws2c{word-spacing:4.734259px;}
.ws3c{word-spacing:4.877722px;}
.ws23{word-spacing:4.949453px;}
.ws55{word-spacing:5.170913px;}
.ws43{word-spacing:5.738496px;}
.ws2a{word-spacing:5.881958px;}
.ws30{word-spacing:6.671002px;}
.ws37{word-spacing:6.742733px;}
.ws47{word-spacing:6.814464px;}
.ws6e{word-spacing:7.069097px;}
.ws4a{word-spacing:7.460045px;}
.ws59{word-spacing:7.527279px;}
.ws41{word-spacing:7.962163px;}
.ws70{word-spacing:8.116370px;}
.ws4b{word-spacing:8.177357px;}
.ws31{word-spacing:8.536013px;}
.ws68{word-spacing:8.640007px;}
.ws2f{word-spacing:9.325056px;}
.ws11{word-spacing:9.683712px;}
.ws38{word-spacing:9.827174px;}
.ws36{word-spacing:9.898906px;}
.ws29{word-spacing:10.329293px;}
.ws35{word-spacing:10.472755px;}
.ws5{word-spacing:10.831411px;}
.ws6b{word-spacing:10.996373px;}
.ws34{word-spacing:11.046605px;}
.ws6a{word-spacing:11.061827px;}
.ws6{word-spacing:11.261798px;}
.ws62{word-spacing:11.454555px;}
.ws46{word-spacing:11.620454px;}
.ws1d{word-spacing:13.246306px;}
.ws6c{word-spacing:16.232741px;}
.ws72{word-spacing:18.130924px;}
.ws4{word-spacing:19.109138px;}
.ws54{word-spacing:19.636380px;}
.ws6d{word-spacing:20.618199px;}
.ws57{word-spacing:23.301838px;}
.ws5a{word-spacing:25.592749px;}
.ws58{word-spacing:25.854567px;}
.ws56{word-spacing:30.557606px;}
._23{margin-left:-12.911616px;}
._b{margin-left:-10.042368px;}
._15{margin-left:-8.607708px;}
._11{margin-left:-7.524619px;}
._4{margin-left:-6.412728px;}
._20{margin-left:-4.734252px;}
._3{margin-left:-3.615240px;}
._1{margin-left:-2.151930px;}
._5{margin-left:-1.140510px;}
._0{width:1.032924px;}
._2{width:2.582316px;}
._18{width:3.686965px;}
._26{width:4.690597px;}
._27{width:6.196434px;}
._6{width:7.320914px;}
._25{width:8.332054px;}
._22{width:16.311634px;}
._10{width:17.445032px;}
._14{width:18.721834px;}
._1e{width:21.117641px;}
._9{width:23.240909px;}
._13{width:24.460342px;}
._f{width:25.937989px;}
._17{width:27.731288px;}
._1b{width:29.761247px;}
._e{width:31.346542px;}
._c{width:32.357933px;}
._a{width:34.036426px;}
._19{width:35.865600px;}
._8{width:38.017524px;}
._1d{width:39.595630px;}
._12{width:43.038600px;}
._1c{width:44.516376px;}
._21{width:46.539212px;}
._16{width:48.538737px;}
._1a{width:49.637984px;}
._d{width:53.798394px;}
._7{width:57.887078px;}
._1f{width:59.608627px;}
._24{width:65.454600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y7b{bottom:88.501500px;}
.y29{bottom:119.278500px;}
.y7a{bottom:125.862000px;}
.y52{bottom:137.817000px;}
.y28{bottom:140.199000px;}
.y51{bottom:158.739000px;}
.y27{bottom:161.121000px;}
.y79{bottom:176.671500px;}
.y50{bottom:179.659500px;}
.y26{bottom:182.043000px;}
.y9f{bottom:195.351000px;}
.y78{bottom:197.592000px;}
.y4f{bottom:200.581500px;}
.y25{bottom:211.930500px;}
.y9e{bottom:215.674500px;}
.y4e{bottom:221.503500px;}
.y24{bottom:232.852500px;}
.y77{bottom:234.952500px;}
.y4d{bottom:242.424000px;}
.y9d{bottom:242.724000px;}
.y23{bottom:253.773000px;}
.y9c{bottom:263.047500px;}
.y4c{bottom:263.346000px;}
.y22{bottom:274.695000px;}
.y9b{bottom:283.371000px;}
.y76{bottom:285.762000px;}
.y4b{bottom:293.233500px;}
.y21{bottom:295.617000px;}
.y75{bottom:306.684000px;}
.y9a{bottom:310.419000px;}
.y4a{bottom:314.155500px;}
.y74{bottom:327.604500px;}
.y99{bottom:330.744000px;}
.y20{bottom:332.976000px;}
.y49{bottom:335.077500px;}
.y73{bottom:348.526500px;}
.y98{bottom:351.067500px;}
.y48{bottom:364.965000px;}
.y72{bottom:369.448500px;}
.y97{bottom:378.115500px;}
.y1f{bottom:383.785500px;}
.y47{bottom:385.887000px;}
.y71{bottom:390.370500px;}
.y96{bottom:398.439000px;}
.y1e{bottom:404.707500px;}
.y46{bottom:406.809000px;}
.y70{bottom:411.291000px;}
.y95{bottom:418.764000px;}
.y1d{bottom:425.629500px;}
.y45{bottom:427.729500px;}
.y6f{bottom:432.213000px;}
.y94{bottom:439.087500px;}
.y44{bottom:448.651500px;}
.y6e{bottom:453.135000px;}
.y1c{bottom:455.517000px;}
.y93{bottom:459.411000px;}
.y6d{bottom:474.055500px;}
.y1b{bottom:476.439000px;}
.y43{bottom:478.539000px;}
.y92{bottom:486.459000px;}
.y6c{bottom:494.977500px;}
.y1a{bottom:497.359500px;}
.y42{bottom:499.461000px;}
.y91{bottom:506.782500px;}
.y6b{bottom:515.899500px;}
.y19{bottom:518.281500px;}
.y41{bottom:520.383000px;}
.y90{bottom:533.832000px;}
.y6a{bottom:536.820000px;}
.y18{bottom:539.203500px;}
.y40{bottom:541.303500px;}
.y8f{bottom:554.155500px;}
.y69{bottom:557.742000px;}
.y17{bottom:560.125500px;}
.y3f{bottom:562.225500px;}
.y8e{bottom:574.479000px;}
.y16{bottom:581.046000px;}
.y68{bottom:595.102500px;}
.y3e{bottom:599.586000px;}
.y8d{bottom:601.528500px;}
.y15{bottom:601.968000px;}
.y8c{bottom:621.852000px;}
.y14{bottom:622.890000px;}
.y8b{bottom:642.175500px;}
.y13{bottom:643.810500px;}
.y3d{bottom:644.418000px;}
.y67{bottom:645.912000px;}
.y3c{bottom:665.338500px;}
.y66{bottom:666.832500px;}
.y8a{bottom:669.223500px;}
.y12{bottom:673.699500px;}
.y3b{bottom:686.260500px;}
.y65{bottom:687.754500px;}
.y89{bottom:689.548500px;}
.y11{bottom:694.620000px;}
.y3a{bottom:707.182500px;}
.y64{bottom:708.676500px;}
.y10{bottom:715.542000px;}
.y88{bottom:716.596500px;}
.y63{bottom:729.598500px;}
.yf{bottom:736.464000px;}
.y87{bottom:736.920000px;}
.y39{bottom:744.541500px;}
.y62{bottom:750.519000px;}
.y86{bottom:757.243500px;}
.ye{bottom:757.384500px;}
.y61{bottom:771.441000px;}
.y85{bottom:777.568500px;}
.yd{bottom:778.306500px;}
.y60{bottom:792.363000px;}
.y38{bottom:795.351000px;}
.y84{bottom:797.892000px;}
.yc{bottom:799.228500px;}
.y5f{bottom:813.283500px;}
.y37{bottom:816.273000px;}
.yb{bottom:820.150500px;}
.y83{bottom:824.940000px;}
.y5e{bottom:834.205500px;}
.y36{bottom:838.689000px;}
.y82{bottom:845.263500px;}
.ya{bottom:857.509500px;}
.y35{bottom:859.611000px;}
.y5d{bottom:864.093000px;}
.y81{bottom:872.313000px;}
.y34{bottom:882.027000px;}
.y5c{bottom:885.015000px;}
.y80{bottom:892.636500px;}
.y33{bottom:902.947500px;}
.y5b{bottom:905.937000px;}
.y9{bottom:908.319000px;}
.y7f{bottom:912.960000px;}
.y32{bottom:925.363500px;}
.y5a{bottom:926.857500px;}
.y7e{bottom:940.008000px;}
.y8{bottom:956.140500px;}
.y59{bottom:956.746500px;}
.y7d{bottom:960.333000px;}
.y7{bottom:961.563000px;}
.y31{bottom:962.724000px;}
.y58{bottom:977.667000px;}
.y6{bottom:979.495500px;}
.y7c{bottom:989.622000px;}
.y57{bottom:998.589000px;}
.y30{bottom:1013.533500px;}
.y5{bottom:1018.905000px;}
.y56{bottom:1019.511000px;}
.y2f{bottom:1035.949500px;}
.y4{bottom:1039.228500px;}
.y55{bottom:1040.431500px;}
.y2e{bottom:1058.365500px;}
.y3{bottom:1059.552000px;}
.y54{bottom:1061.353500px;}
.y2d{bottom:1080.781500px;}
.y53{bottom:1082.275500px;}
.y2c{bottom:1103.197500px;}
.y2{bottom:1106.775000px;}
.y1{bottom:1138.156500px;}
.y2b{bottom:1140.556500px;}
.y2a{bottom:1193.604000px;}
.h7{height:31.005515px;}
.ha{height:35.865450px;}
.h8{height:44.293720px;}
.he{height:45.425492px;}
.h5{height:48.501859px;}
.hb{height:49.707859px;}
.hc{height:49.713859px;}
.h9{height:53.152819px;}
.h6{height:59.183065px;}
.h4{height:59.189065px;}
.hd{height:61.557859px;}
.h3{height:63.783205px;}
.h2{height:76.539668px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:105.840000px;}
.x3{left:115.231500px;}
.xb{left:122.203500px;}
.xd{left:132.291000px;}
.x1{left:142.843500px;}
.xe{left:146.749500px;}
.x10{left:149.497500px;}
.x14{left:220.384500px;}
.x5{left:226.576500px;}
.x7{left:239.872500px;}
.x2{left:249.073500px;}
.x15{left:258.192000px;}
.x12{left:261.832500px;}
.x6{left:300.417000px;}
.x17{left:307.345500px;}
.x11{left:360.813000px;}
.xf{left:362.233500px;}
.xc{left:402.102000px;}
.x4{left:432.810000px;}
.x8{left:438.852000px;}
.x9{left:531.264000px;}
.x13{left:642.486000px;}
.x16{left:743.679000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.981333pt;}
.v4{vertical-align:11.605333pt;}
.v1{vertical-align:21.114667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.635446pt;}
.ls3{letter-spacing:2.653692pt;}
.ls2{letter-spacing:2.659025pt;}
.ls0{letter-spacing:2.677954pt;}
.ls6{letter-spacing:22.854774pt;}
.ls5{letter-spacing:23.062774pt;}
.ws51{word-spacing:-21.270633pt;}
.ws20{word-spacing:-17.725577pt;}
.ws69{word-spacing:-16.174559pt;}
.ws2{word-spacing:-14.771215pt;}
.ws1{word-spacing:-11.817002pt;}
.ws5f{word-spacing:-4.831953pt;}
.ws16{word-spacing:-4.208230pt;}
.ws3b{word-spacing:-4.080708pt;}
.ws9{word-spacing:-3.825664pt;}
.ws1b{word-spacing:-3.443098pt;}
.ws6f{word-spacing:-3.200003pt;}
.ws2b{word-spacing:-3.188053pt;}
.ws66{word-spacing:-3.141821pt;}
.ws15{word-spacing:-3.124292pt;}
.ws44{word-spacing:-2.869248pt;}
.ws19{word-spacing:-2.295398pt;}
.ws1c{word-spacing:-2.231637pt;}
.wsa{word-spacing:-2.104115pt;}
.ws3d{word-spacing:-1.976593pt;}
.wsf{word-spacing:-1.785310pt;}
.ws2d{word-spacing:-1.721549pt;}
.ws1f{word-spacing:-1.657788pt;}
.ws2e{word-spacing:-1.594027pt;}
.ws32{word-spacing:-1.466505pt;}
.ws60{word-spacing:-1.454547pt;}
.wsc{word-spacing:-1.083938pt;}
.ws65{word-spacing:-1.047274pt;}
.ws1e{word-spacing:-0.765133pt;}
.ws1a{word-spacing:-0.510089pt;}
.ws48{word-spacing:-0.446327pt;}
.ws3e{word-spacing:-0.382566pt;}
.ws25{word-spacing:-0.191283pt;}
.ws49{word-spacing:-0.127522pt;}
.ws50{word-spacing:-0.063761pt;}
.ws53{word-spacing:-0.058182pt;}
.ws67{word-spacing:-0.006154pt;}
.ws61{word-spacing:-0.002159pt;}
.ws0{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.116364pt;}
.ws40{word-spacing:0.127522pt;}
.ws71{word-spacing:0.232727pt;}
.ws4e{word-spacing:0.318805pt;}
.ws22{word-spacing:0.382566pt;}
.ws10{word-spacing:0.446327pt;}
.ws12{word-spacing:0.701372pt;}
.ws24{word-spacing:0.956416pt;}
.ws5e{word-spacing:0.989092pt;}
.ws4c{word-spacing:1.083938pt;}
.ws3f{word-spacing:1.211460pt;}
.ws33{word-spacing:1.275221pt;}
.ws52{word-spacing:1.338183pt;}
.ws64{word-spacing:1.454547pt;}
.ws28{word-spacing:1.466505pt;}
.ws8{word-spacing:1.785310pt;}
.ws5d{word-spacing:1.861820pt;}
.ws17{word-spacing:1.912832pt;}
.ws14{word-spacing:1.976593pt;}
.ws21{word-spacing:2.167876pt;}
.ws3{word-spacing:2.284459pt;}
.ws26{word-spacing:2.295398pt;}
.ws45{word-spacing:2.486682pt;}
.wse{word-spacing:2.550443pt;}
.wsb{word-spacing:2.614204pt;}
.ws18{word-spacing:2.677965pt;}
.ws4d{word-spacing:2.741726pt;}
.wsd{word-spacing:2.805487pt;}
.ws5c{word-spacing:2.909093pt;}
.ws27{word-spacing:2.996770pt;}
.ws42{word-spacing:3.251814pt;}
.ws3a{word-spacing:3.379337pt;}
.ws63{word-spacing:3.432730pt;}
.ws4f{word-spacing:3.761903pt;}
.ws7{word-spacing:3.825664pt;}
.ws13{word-spacing:3.889425pt;}
.ws39{word-spacing:4.080708pt;}
.ws2c{word-spacing:4.208230pt;}
.ws3c{word-spacing:4.335753pt;}
.ws23{word-spacing:4.399514pt;}
.ws55{word-spacing:4.596367pt;}
.ws43{word-spacing:5.100885pt;}
.ws2a{word-spacing:5.228407pt;}
.ws30{word-spacing:5.929779pt;}
.ws37{word-spacing:5.993540pt;}
.ws47{word-spacing:6.057301pt;}
.ws6e{word-spacing:6.283642pt;}
.ws4a{word-spacing:6.631151pt;}
.ws59{word-spacing:6.690915pt;}
.ws41{word-spacing:7.077478pt;}
.ws70{word-spacing:7.214551pt;}
.ws4b{word-spacing:7.268762pt;}
.ws31{word-spacing:7.587567pt;}
.ws68{word-spacing:7.680006pt;}
.ws2f{word-spacing:8.288939pt;}
.ws11{word-spacing:8.607744pt;}
.ws38{word-spacing:8.735266pt;}
.ws36{word-spacing:8.799027pt;}
.ws29{word-spacing:9.181594pt;}
.ws35{word-spacing:9.309116pt;}
.ws5{word-spacing:9.627921pt;}
.ws6b{word-spacing:9.774554pt;}
.ws34{word-spacing:9.819204pt;}
.ws6a{word-spacing:9.832735pt;}
.ws6{word-spacing:10.010487pt;}
.ws62{word-spacing:10.181827pt;}
.ws46{word-spacing:10.329293pt;}
.ws1d{word-spacing:11.774494pt;}
.ws6c{word-spacing:14.429103pt;}
.ws72{word-spacing:16.116377pt;}
.ws4{word-spacing:16.985901pt;}
.ws54{word-spacing:17.454560pt;}
.ws6d{word-spacing:18.327288pt;}
.ws57{word-spacing:20.712745pt;}
.ws5a{word-spacing:22.749110pt;}
.ws58{word-spacing:22.981837pt;}
.ws56{word-spacing:27.162316pt;}
._23{margin-left:-11.476992pt;}
._b{margin-left:-8.926549pt;}
._15{margin-left:-7.651296pt;}
._11{margin-left:-6.688550pt;}
._4{margin-left:-5.700203pt;}
._20{margin-left:-4.208224pt;}
._3{margin-left:-3.213547pt;}
._1{margin-left:-1.912827pt;}
._5{margin-left:-1.013787pt;}
._0{width:0.918155pt;}
._2{width:2.295392pt;}
._18{width:3.277302pt;}
._26{width:4.169419pt;}
._27{width:5.507941pt;}
._6{width:6.507479pt;}
._25{width:7.406270pt;}
._22{width:14.499230pt;}
._10{width:15.506695pt;}
._14{width:16.641630pt;}
._1e{width:18.771236pt;}
._9{width:20.658586pt;}
._13{width:21.742526pt;}
._f{width:23.055990pt;}
._17{width:24.650034pt;}
._1b{width:26.454442pt;}
._e{width:27.863593pt;}
._c{width:28.762607pt;}
._a{width:30.254601pt;}
._19{width:31.880533pt;}
._8{width:33.793355pt;}
._1d{width:35.196115pt;}
._12{width:38.256533pt;}
._1c{width:39.570112pt;}
._21{width:41.368189pt;}
._16{width:43.145544pt;}
._1a{width:44.122653pt;}
._d{width:47.820795pt;}
._7{width:51.455181pt;}
._1f{width:52.985446pt;}
._24{width:58.181867pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:78.668000pt;}
.y29{bottom:106.025333pt;}
.y7a{bottom:111.877333pt;}
.y52{bottom:122.504000pt;}
.y28{bottom:124.621333pt;}
.y51{bottom:141.101333pt;}
.y27{bottom:143.218667pt;}
.y79{bottom:157.041333pt;}
.y50{bottom:159.697333pt;}
.y26{bottom:161.816000pt;}
.y9f{bottom:173.645333pt;}
.y78{bottom:175.637333pt;}
.y4f{bottom:178.294667pt;}
.y25{bottom:188.382667pt;}
.y9e{bottom:191.710667pt;}
.y4e{bottom:196.892000pt;}
.y24{bottom:206.980000pt;}
.y77{bottom:208.846667pt;}
.y4d{bottom:215.488000pt;}
.y9d{bottom:215.754667pt;}
.y23{bottom:225.576000pt;}
.y9c{bottom:233.820000pt;}
.y4c{bottom:234.085333pt;}
.y22{bottom:244.173333pt;}
.y9b{bottom:251.885333pt;}
.y76{bottom:254.010667pt;}
.y4b{bottom:260.652000pt;}
.y21{bottom:262.770667pt;}
.y75{bottom:272.608000pt;}
.y9a{bottom:275.928000pt;}
.y4a{bottom:279.249333pt;}
.y74{bottom:291.204000pt;}
.y99{bottom:293.994667pt;}
.y20{bottom:295.978667pt;}
.y49{bottom:297.846667pt;}
.y73{bottom:309.801333pt;}
.y98{bottom:312.060000pt;}
.y48{bottom:324.413333pt;}
.y72{bottom:328.398667pt;}
.y97{bottom:336.102667pt;}
.y1f{bottom:341.142667pt;}
.y47{bottom:343.010667pt;}
.y71{bottom:346.996000pt;}
.y96{bottom:354.168000pt;}
.y1e{bottom:359.740000pt;}
.y46{bottom:361.608000pt;}
.y70{bottom:365.592000pt;}
.y95{bottom:372.234667pt;}
.y1d{bottom:378.337333pt;}
.y45{bottom:380.204000pt;}
.y6f{bottom:384.189333pt;}
.y94{bottom:390.300000pt;}
.y44{bottom:398.801333pt;}
.y6e{bottom:402.786667pt;}
.y1c{bottom:404.904000pt;}
.y93{bottom:408.365333pt;}
.y6d{bottom:421.382667pt;}
.y1b{bottom:423.501333pt;}
.y43{bottom:425.368000pt;}
.y92{bottom:432.408000pt;}
.y6c{bottom:439.980000pt;}
.y1a{bottom:442.097333pt;}
.y42{bottom:443.965333pt;}
.y91{bottom:450.473333pt;}
.y6b{bottom:458.577333pt;}
.y19{bottom:460.694667pt;}
.y41{bottom:462.562667pt;}
.y90{bottom:474.517333pt;}
.y6a{bottom:477.173333pt;}
.y18{bottom:479.292000pt;}
.y40{bottom:481.158667pt;}
.y8f{bottom:492.582667pt;}
.y69{bottom:495.770667pt;}
.y17{bottom:497.889333pt;}
.y3f{bottom:499.756000pt;}
.y8e{bottom:510.648000pt;}
.y16{bottom:516.485333pt;}
.y68{bottom:528.980000pt;}
.y3e{bottom:532.965333pt;}
.y8d{bottom:534.692000pt;}
.y15{bottom:535.082667pt;}
.y8c{bottom:552.757333pt;}
.y14{bottom:553.680000pt;}
.y8b{bottom:570.822667pt;}
.y13{bottom:572.276000pt;}
.y3d{bottom:572.816000pt;}
.y67{bottom:574.144000pt;}
.y3c{bottom:591.412000pt;}
.y66{bottom:592.740000pt;}
.y8a{bottom:594.865333pt;}
.y12{bottom:598.844000pt;}
.y3b{bottom:610.009333pt;}
.y65{bottom:611.337333pt;}
.y89{bottom:612.932000pt;}
.y11{bottom:617.440000pt;}
.y3a{bottom:628.606667pt;}
.y64{bottom:629.934667pt;}
.y10{bottom:636.037333pt;}
.y88{bottom:636.974667pt;}
.y63{bottom:648.532000pt;}
.yf{bottom:654.634667pt;}
.y87{bottom:655.040000pt;}
.y39{bottom:661.814667pt;}
.y62{bottom:667.128000pt;}
.y86{bottom:673.105333pt;}
.ye{bottom:673.230667pt;}
.y61{bottom:685.725333pt;}
.y85{bottom:691.172000pt;}
.yd{bottom:691.828000pt;}
.y60{bottom:704.322667pt;}
.y38{bottom:706.978667pt;}
.y84{bottom:709.237333pt;}
.yc{bottom:710.425333pt;}
.y5f{bottom:722.918667pt;}
.y37{bottom:725.576000pt;}
.yb{bottom:729.022667pt;}
.y83{bottom:733.280000pt;}
.y5e{bottom:741.516000pt;}
.y36{bottom:745.501333pt;}
.y82{bottom:751.345333pt;}
.ya{bottom:762.230667pt;}
.y35{bottom:764.098667pt;}
.y5d{bottom:768.082667pt;}
.y81{bottom:775.389333pt;}
.y34{bottom:784.024000pt;}
.y5c{bottom:786.680000pt;}
.y80{bottom:793.454667pt;}
.y33{bottom:802.620000pt;}
.y5b{bottom:805.277333pt;}
.y9{bottom:807.394667pt;}
.y7f{bottom:811.520000pt;}
.y32{bottom:822.545333pt;}
.y5a{bottom:823.873333pt;}
.y7e{bottom:835.562667pt;}
.y8{bottom:849.902667pt;}
.y59{bottom:850.441333pt;}
.y7d{bottom:853.629333pt;}
.y7{bottom:854.722667pt;}
.y31{bottom:855.754667pt;}
.y58{bottom:869.037333pt;}
.y6{bottom:870.662667pt;}
.y7c{bottom:879.664000pt;}
.y57{bottom:887.634667pt;}
.y30{bottom:900.918667pt;}
.y5{bottom:905.693333pt;}
.y56{bottom:906.232000pt;}
.y2f{bottom:920.844000pt;}
.y4{bottom:923.758667pt;}
.y55{bottom:924.828000pt;}
.y2e{bottom:940.769333pt;}
.y3{bottom:941.824000pt;}
.y54{bottom:943.425333pt;}
.y2d{bottom:960.694667pt;}
.y53{bottom:962.022667pt;}
.y2c{bottom:980.620000pt;}
.y2{bottom:983.800000pt;}
.y1{bottom:1011.694667pt;}
.y2b{bottom:1013.828000pt;}
.y2a{bottom:1060.981333pt;}
.h7{height:27.560458pt;}
.ha{height:31.880400pt;}
.h8{height:39.372195pt;}
.he{height:40.378215pt;}
.h5{height:43.112763pt;}
.hb{height:44.184763pt;}
.hc{height:44.190097pt;}
.h9{height:47.246950pt;}
.h6{height:52.607169pt;}
.h4{height:52.612502pt;}
.hd{height:54.718097pt;}
.h3{height:56.696182pt;}
.h2{height:68.035261pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.080000pt;}
.x3{left:102.428000pt;}
.xb{left:108.625333pt;}
.xd{left:117.592000pt;}
.x1{left:126.972000pt;}
.xe{left:130.444000pt;}
.x10{left:132.886667pt;}
.x14{left:195.897333pt;}
.x5{left:201.401333pt;}
.x7{left:213.220000pt;}
.x2{left:221.398667pt;}
.x15{left:229.504000pt;}
.x12{left:232.740000pt;}
.x6{left:267.037333pt;}
.x17{left:273.196000pt;}
.x11{left:320.722667pt;}
.xf{left:321.985333pt;}
.xc{left:357.424000pt;}
.x4{left:384.720000pt;}
.x8{left:390.090667pt;}
.x9{left:472.234667pt;}
.x13{left:571.098667pt;}
.x16{left:661.048000pt;}
}




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