
    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_c8064ce2b741be4caa6eac94.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_4629967681609b9ee81e8c78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.030000;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_ff7f33b60d652ee08772a796.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190000;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_0f37615067a367592190c45a.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_bc94f4f3f06bc58fb1139796.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.216000;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_6e619f2e4534c2ad4cf6e1cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.047000;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_62880cb4f233b0278f3fcc03.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_6c1a81b78943dd597689c634.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110000;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_9a526fa7334b3fba446365fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.157000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-11.734825px;}
.lsd{letter-spacing:-9.324000px;}
.ls7{letter-spacing:-4.371797px;}
.ls6{letter-spacing:-1.380568px;}
.lsb{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.210000px;}
.ls10{letter-spacing:-0.126000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.672000px;}
.ls5{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.882000px;}
.lsc{letter-spacing:1.465800px;}
.ls14{letter-spacing:2.100000px;}
.ls2{letter-spacing:2.208180px;}
.ls0{letter-spacing:4.440510px;}
.ls1{letter-spacing:7.454835px;}
.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;}
}
.ws8{word-spacing:-65.800800px;}
.wsa{word-spacing:-63.492000px;}
.ws0{word-spacing:-58.444028px;}
.ws7{word-spacing:-55.944000px;}
.ws1{word-spacing:-50.863050px;}
.ws2{word-spacing:-48.089771px;}
.ws9{word-spacing:-46.620000px;}
.ws13{word-spacing:-12.480000px;}
.ws15{word-spacing:-11.760000px;}
.wsd{word-spacing:-8.526000px;}
.wsc{word-spacing:-8.148000px;}
.wsb{word-spacing:-8.064000px;}
.ws17{word-spacing:-2.100000px;}
.ws16{word-spacing:-1.050000px;}
.wse{word-spacing:-0.882000px;}
.ws12{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.714000px;}
.ws3{word-spacing:-0.528000px;}
.ws14{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.336000px;}
.wsf{word-spacing:-0.084000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.192000px;}
.ws5{word-spacing:4.371797px;}
._a{margin-left:-16.046400px;}
._e{margin-left:-14.213847px;}
._9{margin-left:-9.505533px;}
._7{margin-left:-7.870200px;}
._3{margin-left:-5.545350px;}
._5{margin-left:-3.682455px;}
._0{margin-left:-2.536337px;}
._6{margin-left:-1.440000px;}
._1{width:1.242511px;}
._8{width:2.317913px;}
._2{width:4.371797px;}
._d{width:6.650760px;}
._b{width:9.848835px;}
._4{width:11.432916px;}
._c{width:13.160160px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:144.000000px;}
.fs0{font-size:230.094600px;}
.fs1{font-size:242.205000px;}
.fs7{font-size:244.200000px;}
.fs6{font-size:253.080000px;}
.fs5{font-size:266.400000px;}
.y0{bottom:0.000000px;}
.yad{bottom:55.679550px;}
.y1b{bottom:61.608750px;}
.y4b{bottom:62.317500px;}
.yac{bottom:70.679550px;}
.y1a{bottom:78.108750px;}
.y4a{bottom:78.817500px;}
.ydf{bottom:79.363200px;}
.yab{bottom:85.679550px;}
.y79{bottom:86.813550px;}
.y19{bottom:94.608750px;}
.y49{bottom:95.317500px;}
.yaa{bottom:100.679550px;}
.y78{bottom:103.313550px;}
.y18{bottom:111.108750px;}
.y48{bottom:111.817500px;}
.ya9{bottom:115.679550px;}
.y77{bottom:119.813550px;}
.y17{bottom:127.608750px;}
.y47{bottom:128.317500px;}
.ya8{bottom:130.679550px;}
.y76{bottom:136.313550px;}
.yd8{bottom:137.402250px;}
.y16{bottom:144.108750px;}
.y46{bottom:144.817500px;}
.ya7{bottom:145.679550px;}
.y75{bottom:152.813550px;}
.y15{bottom:160.608750px;}
.ya6{bottom:160.679550px;}
.y45{bottom:161.317500px;}
.y94{bottom:168.056700px;}
.y74{bottom:169.313550px;}
.yaf{bottom:175.679550px;}
.y14{bottom:177.108750px;}
.y44{bottom:177.817500px;}
.y73{bottom:185.813550px;}
.y93{bottom:187.556700px;}
.ya5{bottom:190.679550px;}
.y13{bottom:193.608750px;}
.y43{bottom:194.317500px;}
.y72{bottom:202.313550px;}
.ya4{bottom:205.679550px;}
.y92{bottom:207.056700px;}
.y12{bottom:210.108750px;}
.y42{bottom:210.817500px;}
.y71{bottom:218.813550px;}
.ya3{bottom:220.679550px;}
.y91{bottom:226.556700px;}
.y11{bottom:226.608750px;}
.y41{bottom:227.317500px;}
.y70{bottom:235.313550px;}
.yae{bottom:235.679550px;}
.y10{bottom:243.108750px;}
.y40{bottom:243.817500px;}
.y90{bottom:246.056700px;}
.ya2{bottom:250.679550px;}
.y6f{bottom:251.813550px;}
.yf{bottom:259.608750px;}
.y3f{bottom:260.317500px;}
.y8f{bottom:265.556700px;}
.ya1{bottom:265.679550px;}
.ydd{bottom:265.758600px;}
.y6e{bottom:268.313550px;}
.ye{bottom:276.108750px;}
.y3e{bottom:276.817500px;}
.ya0{bottom:280.679550px;}
.y6d{bottom:284.813550px;}
.y8e{bottom:285.056700px;}
.yd4{bottom:289.433400px;}
.yd{bottom:292.608750px;}
.y3d{bottom:293.317500px;}
.y9f{bottom:295.679550px;}
.y6c{bottom:301.313550px;}
.yda{bottom:306.546300px;}
.yd3{bottom:307.433400px;}
.yc{bottom:309.108750px;}
.y3c{bottom:309.817500px;}
.y9e{bottom:310.679550px;}
.y6b{bottom:317.813550px;}
.y8d{bottom:324.056700px;}
.yd2{bottom:325.433400px;}
.yb{bottom:325.608750px;}
.y9d{bottom:325.679550px;}
.y3b{bottom:326.317500px;}
.y6a{bottom:334.313550px;}
.y9c{bottom:340.679550px;}
.ya{bottom:342.108750px;}
.y3a{bottom:342.817500px;}
.yd1{bottom:343.433400px;}
.y8c{bottom:343.556700px;}
.y69{bottom:350.813550px;}
.y3{bottom:354.027600px;}
.y9b{bottom:355.679550px;}
.y95{bottom:357.087300px;}
.y9{bottom:358.608750px;}
.y39{bottom:359.317500px;}
.yd0{bottom:361.433400px;}
.y8b{bottom:363.056700px;}
.y68{bottom:367.313550px;}
.y9a{bottom:370.679550px;}
.y8{bottom:375.108750px;}
.y38{bottom:375.817500px;}
.ycf{bottom:379.433400px;}
.y8a{bottom:382.556700px;}
.y67{bottom:383.813550px;}
.y99{bottom:385.679550px;}
.y7{bottom:391.608750px;}
.y37{bottom:392.317500px;}
.yb1{bottom:392.547150px;}
.yce{bottom:397.433400px;}
.y66{bottom:400.313550px;}
.y89{bottom:402.056700px;}
.yee{bottom:404.632200px;}
.y6{bottom:408.108750px;}
.y36{bottom:408.817500px;}
.y65{bottom:416.813550px;}
.yed{bottom:419.632200px;}
.yb0{bottom:421.556700px;}
.y5{bottom:424.608750px;}
.y35{bottom:425.317500px;}
.y64{bottom:433.313550px;}
.ycd{bottom:433.433400px;}
.y88{bottom:441.056700px;}
.y4{bottom:441.108750px;}
.y34{bottom:441.817500px;}
.yec{bottom:449.632200px;}
.y63{bottom:449.813550px;}
.yde{bottom:451.228050px;}
.ycc{bottom:451.433400px;}
.y33{bottom:458.317500px;}
.y87{bottom:460.556700px;}
.yeb{bottom:464.632200px;}
.y62{bottom:466.313550px;}
.ycb{bottom:469.433400px;}
.y32{bottom:474.817500px;}
.yea{bottom:479.632200px;}
.y86{bottom:480.056700px;}
.y61{bottom:482.813550px;}
.yca{bottom:487.433400px;}
.y31{bottom:491.317500px;}
.y60{bottom:499.313550px;}
.y85{bottom:499.556700px;}
.yc9{bottom:505.433400px;}
.y30{bottom:507.817500px;}
.ye9{bottom:509.632200px;}
.yb9{bottom:515.253900px;}
.y5f{bottom:515.813550px;}
.y84{bottom:519.056700px;}
.yd7{bottom:523.433400px;}
.y2f{bottom:524.317500px;}
.ye8{bottom:524.632200px;}
.y5e{bottom:532.313550px;}
.y83{bottom:538.556700px;}
.ye7{bottom:539.632200px;}
.y2e{bottom:540.817500px;}
.yc8{bottom:541.433400px;}
.y5d{bottom:548.813550px;}
.yb8{bottom:550.913850px;}
.y2d{bottom:557.317500px;}
.y82{bottom:558.056700px;}
.yc7{bottom:559.433400px;}
.y5c{bottom:565.313550px;}
.ye6{bottom:569.632200px;}
.y2c{bottom:573.817500px;}
.yc6{bottom:577.433400px;}
.y81{bottom:577.556700px;}
.y5b{bottom:581.813550px;}
.ye5{bottom:584.632200px;}
.y2b{bottom:590.317500px;}
.yb7{bottom:594.113850px;}
.yc5{bottom:595.433400px;}
.y80{bottom:597.056700px;}
.y5a{bottom:598.313550px;}
.y2a{bottom:606.817500px;}
.ydb{bottom:610.795050px;}
.yc4{bottom:613.433400px;}
.ye4{bottom:614.632200px;}
.y59{bottom:614.813550px;}
.y7f{bottom:616.556700px;}
.y29{bottom:623.317500px;}
.y98{bottom:625.794150px;}
.ye3{bottom:629.632200px;}
.y58{bottom:631.313550px;}
.yd6{bottom:631.433400px;}
.y7e{bottom:636.056700px;}
.ydc{bottom:636.697200px;}
.yb6{bottom:637.313850px;}
.y28{bottom:639.817500px;}
.y57{bottom:647.813550px;}
.yc3{bottom:649.433400px;}
.y7d{bottom:655.556700px;}
.y27{bottom:656.317500px;}
.ye2{bottom:659.632200px;}
.y56{bottom:664.313550px;}
.yc2{bottom:667.433400px;}
.y26{bottom:672.817500px;}
.ye1{bottom:674.632200px;}
.y7c{bottom:675.056700px;}
.yb5{bottom:680.513850px;}
.y55{bottom:680.813550px;}
.yc1{bottom:685.433400px;}
.y25{bottom:689.317500px;}
.y7b{bottom:694.556700px;}
.y54{bottom:697.313550px;}
.yc0{bottom:703.433400px;}
.ye0{bottom:704.632200px;}
.y97{bottom:705.714150px;}
.y24{bottom:705.817500px;}
.y53{bottom:713.813550px;}
.y7a{bottom:714.056700px;}
.y2{bottom:717.811650px;}
.ybf{bottom:721.433400px;}
.y23{bottom:722.317500px;}
.yb4{bottom:723.713850px;}
.y52{bottom:730.313550px;}
.y22{bottom:738.817500px;}
.ybe{bottom:739.433400px;}
.y51{bottom:746.813550px;}
.y21{bottom:755.317500px;}
.yd5{bottom:757.433400px;}
.y50{bottom:763.313550px;}
.yb3{bottom:766.913850px;}
.y20{bottom:771.817500px;}
.ybd{bottom:775.433400px;}
.y4f{bottom:779.813550px;}
.y96{bottom:785.634150px;}
.y1f{bottom:788.317500px;}
.y1{bottom:790.473150px;}
.ybc{bottom:793.433400px;}
.y4e{bottom:796.313550px;}
.y1e{bottom:804.817500px;}
.yb2{bottom:810.113850px;}
.ybb{bottom:811.433400px;}
.y4d{bottom:812.813550px;}
.yd9{bottom:814.610850px;}
.y1d{bottom:821.317500px;}
.y4c{bottom:829.313550px;}
.yba{bottom:829.433400px;}
.y1c{bottom:837.817500px;}
.h9{height:33.600000px;}
.hd{height:38.808000px;}
.h8{height:40.320000px;}
.hb{height:43.200000px;}
.h4{height:45.072000px;}
.hc{height:48.600000px;}
.h5{height:50.706000px;}
.h3{height:64.800000px;}
.ha{height:115.200000px;}
.h2{height:207.085140px;}
.h7{height:219.780000px;}
.h6{height:227.772000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.w3{width:1258.500000px;}
.w2{width:1258.582500px;}
.x0{left:0.000000px;}
.x2{left:32.645100px;}
.x8{left:46.504800px;}
.x7{left:50.034600px;}
.x6{left:52.741200px;}
.x1{left:54.000000px;}
.x9{left:55.212300px;}
.xe{left:127.936800px;}
.xf{left:167.272350px;}
.xc{left:288.852900px;}
.x3{left:323.645700px;}
.xd{left:446.102550px;}
.xa{left:678.861600px;}
.x4{left:683.291400px;}
.x5{left:952.936950px;}
.xb{left:954.013500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-10.430955pt;}
.lsd{letter-spacing:-8.288000pt;}
.ls7{letter-spacing:-3.886042pt;}
.ls6{letter-spacing:-1.227171pt;}
.lsb{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.186667pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.597333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.784000pt;}
.lsc{letter-spacing:1.302933pt;}
.ls14{letter-spacing:1.866667pt;}
.ls2{letter-spacing:1.962827pt;}
.ls0{letter-spacing:3.947120pt;}
.ls1{letter-spacing:6.626520pt;}
.ws8{word-spacing:-58.489600pt;}
.wsa{word-spacing:-56.437333pt;}
.ws0{word-spacing:-51.950247pt;}
.ws7{word-spacing:-49.728000pt;}
.ws1{word-spacing:-45.211600pt;}
.ws2{word-spacing:-42.746463pt;}
.ws9{word-spacing:-41.440000pt;}
.ws13{word-spacing:-11.093333pt;}
.ws15{word-spacing:-10.453333pt;}
.wsd{word-spacing:-7.578667pt;}
.wsc{word-spacing:-7.242667pt;}
.wsb{word-spacing:-7.168000pt;}
.ws17{word-spacing:-1.866667pt;}
.ws16{word-spacing:-0.933333pt;}
.wse{word-spacing:-0.784000pt;}
.ws12{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.634667pt;}
.ws3{word-spacing:-0.469333pt;}
.ws14{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.298667pt;}
.wsf{word-spacing:-0.074667pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.170667pt;}
.ws5{word-spacing:3.886042pt;}
._a{margin-left:-14.263467pt;}
._e{margin-left:-12.634531pt;}
._9{margin-left:-8.449362pt;}
._7{margin-left:-6.995733pt;}
._3{margin-left:-4.929200pt;}
._5{margin-left:-3.273293pt;}
._0{margin-left:-2.254522pt;}
._6{margin-left:-1.280000pt;}
._1{width:1.104454pt;}
._8{width:2.060367pt;}
._2{width:3.886042pt;}
._d{width:5.911787pt;}
._b{width:8.754520pt;}
._4{width:10.162592pt;}
._c{width:11.697920pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:128.000000pt;}
.fs0{font-size:204.528533pt;}
.fs1{font-size:215.293333pt;}
.fs7{font-size:217.066667pt;}
.fs6{font-size:224.960000pt;}
.fs5{font-size:236.800000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:49.492933pt;}
.y1b{bottom:54.763333pt;}
.y4b{bottom:55.393333pt;}
.yac{bottom:62.826267pt;}
.y1a{bottom:69.430000pt;}
.y4a{bottom:70.060000pt;}
.ydf{bottom:70.545067pt;}
.yab{bottom:76.159600pt;}
.y79{bottom:77.167600pt;}
.y19{bottom:84.096667pt;}
.y49{bottom:84.726667pt;}
.yaa{bottom:89.492933pt;}
.y78{bottom:91.834267pt;}
.y18{bottom:98.763333pt;}
.y48{bottom:99.393333pt;}
.ya9{bottom:102.826267pt;}
.y77{bottom:106.500933pt;}
.y17{bottom:113.430000pt;}
.y47{bottom:114.060000pt;}
.ya8{bottom:116.159600pt;}
.y76{bottom:121.167600pt;}
.yd8{bottom:122.135333pt;}
.y16{bottom:128.096667pt;}
.y46{bottom:128.726667pt;}
.ya7{bottom:129.492933pt;}
.y75{bottom:135.834267pt;}
.y15{bottom:142.763333pt;}
.ya6{bottom:142.826267pt;}
.y45{bottom:143.393333pt;}
.y94{bottom:149.383733pt;}
.y74{bottom:150.500933pt;}
.yaf{bottom:156.159600pt;}
.y14{bottom:157.430000pt;}
.y44{bottom:158.060000pt;}
.y73{bottom:165.167600pt;}
.y93{bottom:166.717067pt;}
.ya5{bottom:169.492933pt;}
.y13{bottom:172.096667pt;}
.y43{bottom:172.726667pt;}
.y72{bottom:179.834267pt;}
.ya4{bottom:182.826267pt;}
.y92{bottom:184.050400pt;}
.y12{bottom:186.763333pt;}
.y42{bottom:187.393333pt;}
.y71{bottom:194.500933pt;}
.ya3{bottom:196.159600pt;}
.y91{bottom:201.383733pt;}
.y11{bottom:201.430000pt;}
.y41{bottom:202.060000pt;}
.y70{bottom:209.167600pt;}
.yae{bottom:209.492933pt;}
.y10{bottom:216.096667pt;}
.y40{bottom:216.726667pt;}
.y90{bottom:218.717067pt;}
.ya2{bottom:222.826267pt;}
.y6f{bottom:223.834267pt;}
.yf{bottom:230.763333pt;}
.y3f{bottom:231.393333pt;}
.y8f{bottom:236.050400pt;}
.ya1{bottom:236.159600pt;}
.ydd{bottom:236.229867pt;}
.y6e{bottom:238.500933pt;}
.ye{bottom:245.430000pt;}
.y3e{bottom:246.060000pt;}
.ya0{bottom:249.492933pt;}
.y6d{bottom:253.167600pt;}
.y8e{bottom:253.383733pt;}
.yd4{bottom:257.274133pt;}
.yd{bottom:260.096667pt;}
.y3d{bottom:260.726667pt;}
.y9f{bottom:262.826267pt;}
.y6c{bottom:267.834267pt;}
.yda{bottom:272.485600pt;}
.yd3{bottom:273.274133pt;}
.yc{bottom:274.763333pt;}
.y3c{bottom:275.393333pt;}
.y9e{bottom:276.159600pt;}
.y6b{bottom:282.500933pt;}
.y8d{bottom:288.050400pt;}
.yd2{bottom:289.274133pt;}
.yb{bottom:289.430000pt;}
.y9d{bottom:289.492933pt;}
.y3b{bottom:290.060000pt;}
.y6a{bottom:297.167600pt;}
.y9c{bottom:302.826267pt;}
.ya{bottom:304.096667pt;}
.y3a{bottom:304.726667pt;}
.yd1{bottom:305.274133pt;}
.y8c{bottom:305.383733pt;}
.y69{bottom:311.834267pt;}
.y3{bottom:314.691200pt;}
.y9b{bottom:316.159600pt;}
.y95{bottom:317.410933pt;}
.y9{bottom:318.763333pt;}
.y39{bottom:319.393333pt;}
.yd0{bottom:321.274133pt;}
.y8b{bottom:322.717067pt;}
.y68{bottom:326.500933pt;}
.y9a{bottom:329.492933pt;}
.y8{bottom:333.430000pt;}
.y38{bottom:334.060000pt;}
.ycf{bottom:337.274133pt;}
.y8a{bottom:340.050400pt;}
.y67{bottom:341.167600pt;}
.y99{bottom:342.826267pt;}
.y7{bottom:348.096667pt;}
.y37{bottom:348.726667pt;}
.yb1{bottom:348.930800pt;}
.yce{bottom:353.274133pt;}
.y66{bottom:355.834267pt;}
.y89{bottom:357.383733pt;}
.yee{bottom:359.673067pt;}
.y6{bottom:362.763333pt;}
.y36{bottom:363.393333pt;}
.y65{bottom:370.500933pt;}
.yed{bottom:373.006400pt;}
.yb0{bottom:374.717067pt;}
.y5{bottom:377.430000pt;}
.y35{bottom:378.060000pt;}
.y64{bottom:385.167600pt;}
.ycd{bottom:385.274133pt;}
.y88{bottom:392.050400pt;}
.y4{bottom:392.096667pt;}
.y34{bottom:392.726667pt;}
.yec{bottom:399.673067pt;}
.y63{bottom:399.834267pt;}
.yde{bottom:401.091600pt;}
.ycc{bottom:401.274133pt;}
.y33{bottom:407.393333pt;}
.y87{bottom:409.383733pt;}
.yeb{bottom:413.006400pt;}
.y62{bottom:414.500933pt;}
.ycb{bottom:417.274133pt;}
.y32{bottom:422.060000pt;}
.yea{bottom:426.339733pt;}
.y86{bottom:426.717067pt;}
.y61{bottom:429.167600pt;}
.yca{bottom:433.274133pt;}
.y31{bottom:436.726667pt;}
.y60{bottom:443.834267pt;}
.y85{bottom:444.050400pt;}
.yc9{bottom:449.274133pt;}
.y30{bottom:451.393333pt;}
.ye9{bottom:453.006400pt;}
.yb9{bottom:458.003467pt;}
.y5f{bottom:458.500933pt;}
.y84{bottom:461.383733pt;}
.yd7{bottom:465.274133pt;}
.y2f{bottom:466.060000pt;}
.ye8{bottom:466.339733pt;}
.y5e{bottom:473.167600pt;}
.y83{bottom:478.717067pt;}
.ye7{bottom:479.673067pt;}
.y2e{bottom:480.726667pt;}
.yc8{bottom:481.274133pt;}
.y5d{bottom:487.834267pt;}
.yb8{bottom:489.701200pt;}
.y2d{bottom:495.393333pt;}
.y82{bottom:496.050400pt;}
.yc7{bottom:497.274133pt;}
.y5c{bottom:502.500933pt;}
.ye6{bottom:506.339733pt;}
.y2c{bottom:510.060000pt;}
.yc6{bottom:513.274133pt;}
.y81{bottom:513.383733pt;}
.y5b{bottom:517.167600pt;}
.ye5{bottom:519.673067pt;}
.y2b{bottom:524.726667pt;}
.yb7{bottom:528.101200pt;}
.yc5{bottom:529.274133pt;}
.y80{bottom:530.717067pt;}
.y5a{bottom:531.834267pt;}
.y2a{bottom:539.393333pt;}
.ydb{bottom:542.928933pt;}
.yc4{bottom:545.274133pt;}
.ye4{bottom:546.339733pt;}
.y59{bottom:546.500933pt;}
.y7f{bottom:548.050400pt;}
.y29{bottom:554.060000pt;}
.y98{bottom:556.261467pt;}
.ye3{bottom:559.673067pt;}
.y58{bottom:561.167600pt;}
.yd6{bottom:561.274133pt;}
.y7e{bottom:565.383733pt;}
.ydc{bottom:565.953067pt;}
.yb6{bottom:566.501200pt;}
.y28{bottom:568.726667pt;}
.y57{bottom:575.834267pt;}
.yc3{bottom:577.274133pt;}
.y7d{bottom:582.717067pt;}
.y27{bottom:583.393333pt;}
.ye2{bottom:586.339733pt;}
.y56{bottom:590.500933pt;}
.yc2{bottom:593.274133pt;}
.y26{bottom:598.060000pt;}
.ye1{bottom:599.673067pt;}
.y7c{bottom:600.050400pt;}
.yb5{bottom:604.901200pt;}
.y55{bottom:605.167600pt;}
.yc1{bottom:609.274133pt;}
.y25{bottom:612.726667pt;}
.y7b{bottom:617.383733pt;}
.y54{bottom:619.834267pt;}
.yc0{bottom:625.274133pt;}
.ye0{bottom:626.339733pt;}
.y97{bottom:627.301467pt;}
.y24{bottom:627.393333pt;}
.y53{bottom:634.500933pt;}
.y7a{bottom:634.717067pt;}
.y2{bottom:638.054800pt;}
.ybf{bottom:641.274133pt;}
.y23{bottom:642.060000pt;}
.yb4{bottom:643.301200pt;}
.y52{bottom:649.167600pt;}
.y22{bottom:656.726667pt;}
.ybe{bottom:657.274133pt;}
.y51{bottom:663.834267pt;}
.y21{bottom:671.393333pt;}
.yd5{bottom:673.274133pt;}
.y50{bottom:678.500933pt;}
.yb3{bottom:681.701200pt;}
.y20{bottom:686.060000pt;}
.ybd{bottom:689.274133pt;}
.y4f{bottom:693.167600pt;}
.y96{bottom:698.341467pt;}
.y1f{bottom:700.726667pt;}
.y1{bottom:702.642800pt;}
.ybc{bottom:705.274133pt;}
.y4e{bottom:707.834267pt;}
.y1e{bottom:715.393333pt;}
.yb2{bottom:720.101200pt;}
.ybb{bottom:721.274133pt;}
.y4d{bottom:722.500933pt;}
.yd9{bottom:724.098533pt;}
.y1d{bottom:730.060000pt;}
.y4c{bottom:737.167600pt;}
.yba{bottom:737.274133pt;}
.y1c{bottom:744.726667pt;}
.h9{height:29.866667pt;}
.hd{height:34.496000pt;}
.h8{height:35.840000pt;}
.hb{height:38.400000pt;}
.h4{height:40.064000pt;}
.hc{height:43.200000pt;}
.h5{height:45.072000pt;}
.h3{height:57.600000pt;}
.ha{height:102.400000pt;}
.h2{height:184.075680pt;}
.h7{height:195.360000pt;}
.h6{height:202.464000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.w3{width:1118.666667pt;}
.w2{width:1118.740000pt;}
.x0{left:0.000000pt;}
.x2{left:29.017867pt;}
.x8{left:41.337600pt;}
.x7{left:44.475200pt;}
.x6{left:46.881067pt;}
.x1{left:48.000000pt;}
.x9{left:49.077600pt;}
.xe{left:113.721600pt;}
.xf{left:148.686533pt;}
.xc{left:256.758133pt;}
.x3{left:287.685067pt;}
.xd{left:396.535600pt;}
.xa{left:603.432533pt;}
.x4{left:607.370133pt;}
.x5{left:847.055067pt;}
.xb{left:848.012000pt;}
}




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