
    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_b2eae9ab96515a84a909a906.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.913086;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_95b8b6aa3d4ae26e950d5f43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_c8f8bdbc381b5fabc4d112ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_e6eaeae1e5316be494c931b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043945;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_2f1a049d90905755a89b61b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_8b2d7122d01591524446e787.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_135c3e3344b94fceb041b2cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_c26c7c281a305721a2a4b874.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913086;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_350561237e8b60168d2f4fc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913086;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_520f61c128b8722838943da8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_717a325e4d766d7532cdb788.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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);}
.v2{vertical-align:-15.984600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls6{letter-spacing:-0.300000px;}
.ls2{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001440px;}
.ls3{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.011400px;}
.ls4{letter-spacing:0.660000px;}
.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;}
}
.ws1{word-spacing:-13.200000px;}
.ws0{word-spacing:-11.880000px;}
.ws7{word-spacing:-10.560000px;}
.ws9{word-spacing:-7.695600px;}
.ws8{word-spacing:-6.156480px;}
.wsb{word-spacing:-0.048000px;}
.ws5{word-spacing:-0.034980px;}
.ws6{word-spacing:-0.027984px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.270000px;}
.wsc{word-spacing:0.300000px;}
.wsa{word-spacing:814.860000px;}
.ws3{word-spacing:843.372000px;}
._1{margin-left:-3362.457600px;}
._6{margin-left:-11.520600px;}
._17{margin-left:-7.692000px;}
._a{margin-left:-6.488400px;}
._9{margin-left:-5.006400px;}
._0{margin-left:-3.302400px;}
._4{margin-left:-2.218800px;}
._2{margin-left:-1.036800px;}
._11{width:1.000200px;}
._5{width:2.008800px;}
._8{width:3.461400px;}
._10{width:4.514400px;}
._c{width:5.524800px;}
._d{width:6.558000px;}
._3{width:7.722000px;}
._f{width:8.766000px;}
._7{width:9.887400px;}
._e{width:11.574000px;}
._15{width:13.170000px;}
._16{width:14.217600px;}
._14{width:16.708800px;}
._19{width:18.090000px;}
._18{width:19.336800px;}
._13{width:24.840000px;}
._12{width:814.896000px;}
._b{width:843.408000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(166,29,35);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:71.987400px;}
.y86{bottom:103.986000px;}
.y8c{bottom:106.299150px;}
.y93{bottom:107.149650px;}
.y21{bottom:109.264350px;}
.y75{bottom:110.295150px;}
.y96{bottom:111.826800px;}
.y67{bottom:113.482200px;}
.ya8{bottom:115.822800px;}
.yc6{bottom:116.673150px;}
.y45{bottom:117.381750px;}
.ya9{bottom:118.799100px;}
.y8b{bottom:120.099150px;}
.y92{bottom:120.949650px;}
.ydd{bottom:121.702650px;}
.y85{bottom:121.986000px;}
.y80{bottom:122.978100px;}
.ybf{bottom:124.095150px;}
.ya7{bottom:125.626800px;}
.yc5{bottom:126.477150px;}
.y44{bottom:127.185750px;}
.y20{bottom:127.264350px;}
.y95{bottom:129.622800px;}
.y66{bottom:131.482200px;}
.ybe{bottom:133.899150px;}
.y91{bottom:134.749650px;}
.y8a{bottom:137.895150px;}
.ya6{bottom:139.426800px;}
.y84{bottom:139.986000px;}
.yc4{bottom:140.277150px;}
.y7f{bottom:140.978100px;}
.y43{bottom:140.985750px;}
.y94{bottom:143.422800px;}
.ydc{bottom:143.954550px;}
.y1f{bottom:145.264350px;}
.y89{bottom:147.699150px;}
.y65{bottom:149.482200px;}
.ybd{bottom:151.695150px;}
.y90{bottom:152.545650px;}
.yc3{bottom:154.077150px;}
.y42{bottom:154.785750px;}
.ya5{bottom:157.222800px;}
.y83{bottom:157.986000px;}
.y7e{bottom:158.978100px;}
.y88{bottom:161.499150px;}
.ydb{bottom:161.954550px;}
.y1e{bottom:163.264350px;}
.y8f{bottom:166.345650px;}
.ya4{bottom:167.026800px;}
.y64{bottom:167.482200px;}
.yc2{bottom:167.877150px;}
.y41{bottom:172.581900px;}
.y82{bottom:175.986000px;}
.y8e{bottom:176.149650px;}
.y7d{bottom:176.978100px;}
.y87{bottom:179.295150px;}
.ya3{bottom:180.826800px;}
.yc1{bottom:181.677150px;}
.yda{bottom:184.206600px;}
.y63{bottom:185.482200px;}
.y1d{bottom:189.768300px;}
.y8d{bottom:193.945650px;}
.y81{bottom:193.986000px;}
.y7c{bottom:194.978100px;}
.ya2{bottom:198.622800px;}
.yc0{bottom:199.473150px;}
.yd9{bottom:202.206600px;}
.y62{bottom:203.482200px;}
.ya1{bottom:208.426800px;}
.y74{bottom:211.986000px;}
.y7b{bottom:212.978100px;}
.y61{bottom:221.482200px;}
.yd8{bottom:224.458500px;}
.ya0{bottom:226.222800px;}
.y73{bottom:229.986000px;}
.y7a{bottom:230.978100px;}
.y9f{bottom:236.026800px;}
.y60{bottom:239.482200px;}
.yd7{bottom:242.458500px;}
.y1c{bottom:243.768300px;}
.y72{bottom:247.986000px;}
.y79{bottom:248.978100px;}
.y9e{bottom:253.822800px;}
.y5f{bottom:257.482200px;}
.y1b{bottom:259.968300px;}
.y9d{bottom:263.626800px;}
.yd6{bottom:264.710400px;}
.y71{bottom:265.986000px;}
.y78{bottom:266.978100px;}
.y40{bottom:275.482200px;}
.y9c{bottom:277.426800px;}
.y70{bottom:283.986000px;}
.y1a{bottom:284.672250px;}
.y77{bottom:284.978100px;}
.yd5{bottom:286.962450px;}
.y3f{bottom:293.482200px;}
.y9b{bottom:295.222800px;}
.y19{bottom:300.872250px;}
.y6f{bottom:301.986000px;}
.y76{bottom:302.978100px;}
.yd4{bottom:304.962450px;}
.y9a{bottom:305.026800px;}
.y3e{bottom:311.482200px;}
.y18{bottom:317.072250px;}
.y99{bottom:318.826800px;}
.y6e{bottom:319.986000px;}
.ybc{bottom:320.978100px;}
.yd3{bottom:327.214350px;}
.y3d{bottom:329.482200px;}
.y98{bottom:332.626800px;}
.y17{bottom:333.272250px;}
.y6d{bottom:337.986000px;}
.ybb{bottom:338.978100px;}
.y3c{bottom:347.482200px;}
.yd2{bottom:349.466400px;}
.y16{bottom:349.472100px;}
.y97{bottom:350.422800px;}
.y6c{bottom:355.986000px;}
.yba{bottom:356.978100px;}
.y3b{bottom:365.482200px;}
.y15{bottom:365.672250px;}
.yd1{bottom:367.466400px;}
.y6b{bottom:373.986000px;}
.yb9{bottom:374.978100px;}
.y14{bottom:381.872250px;}
.y3a{bottom:383.482200px;}
.yd0{bottom:385.466400px;}
.y6a{bottom:391.986000px;}
.yb8{bottom:392.978100px;}
.y5e{bottom:401.482200px;}
.y13{bottom:406.576200px;}
.ycf{bottom:407.718300px;}
.y39{bottom:409.986000px;}
.yb7{bottom:410.978100px;}
.y5d{bottom:419.482200px;}
.yce{bottom:425.718300px;}
.y69{bottom:427.986000px;}
.yb6{bottom:428.978100px;}
.y12{bottom:431.280150px;}
.y5c{bottom:437.482200px;}
.y68{bottom:445.986000px;}
.yb5{bottom:446.978100px;}
.ycd{bottom:447.970350px;}
.y5b{bottom:455.482200px;}
.y38{bottom:463.986000px;}
.yb4{bottom:464.978100px;}
.ycc{bottom:470.222250px;}
.y5a{bottom:473.482200px;}
.y11{bottom:479.880000px;}
.y37{bottom:481.986000px;}
.yb3{bottom:482.978100px;}
.y59{bottom:491.482050px;}
.ycb{bottom:492.474300px;}
.y10{bottom:496.080000px;}
.y36{bottom:499.986000px;}
.yb2{bottom:500.978250px;}
.y58{bottom:509.482050px;}
.yca{bottom:510.474300px;}
.y35{bottom:517.986000px;}
.yb1{bottom:518.978250px;}
.yf{bottom:520.783950px;}
.yeb{bottom:524.222250px;}
.y57{bottom:527.482050px;}
.yc9{bottom:532.726200px;}
.y34{bottom:535.986000px;}
.yb0{bottom:536.978250px;}
.ye{bottom:536.983950px;}
.yea{bottom:542.222250px;}
.y56{bottom:545.482050px;}
.yd{bottom:553.183950px;}
.y33{bottom:553.986000px;}
.yaf{bottom:554.978250px;}
.y55{bottom:563.482050px;}
.ye9{bottom:564.474300px;}
.yc{bottom:569.384100px;}
.y32{bottom:571.986000px;}
.yae{bottom:572.978250px;}
.y54{bottom:581.482050px;}
.ye8{bottom:582.474300px;}
.yb{bottom:585.583950px;}
.y31{bottom:589.986000px;}
.yad{bottom:590.978250px;}
.yc8{bottom:595.230150px;}
.y53{bottom:599.482050px;}
.ye7{bottom:600.474300px;}
.ya{bottom:601.783950px;}
.y30{bottom:607.986000px;}
.yac{bottom:608.978250px;}
.y52{bottom:617.482050px;}
.ye6{bottom:618.474300px;}
.y2f{bottom:625.986000px;}
.y9{bottom:626.487900px;}
.yab{bottom:626.978250px;}
.y51{bottom:635.482050px;}
.yc7{bottom:639.734100px;}
.ye5{bottom:640.726200px;}
.y2e{bottom:643.986000px;}
.yaa{bottom:644.978250px;}
.y50{bottom:653.482050px;}
.ye4{bottom:658.726200px;}
.y2d{bottom:661.986000px;}
.y4f{bottom:671.482050px;}
.y2c{bottom:679.986000px;}
.ye3{bottom:680.978100px;}
.y4e{bottom:689.482200px;}
.y2b{bottom:697.986000px;}
.ye2{bottom:698.978100px;}
.y4d{bottom:707.482200px;}
.y8{bottom:714.687900px;}
.y2a{bottom:715.986000px;}
.ye1{bottom:721.230150px;}
.y4c{bottom:725.482200px;}
.y7{bottom:730.887900px;}
.y29{bottom:733.986000px;}
.ye0{bottom:739.230150px;}
.y4b{bottom:743.482200px;}
.y28{bottom:751.986000px;}
.ydf{bottom:757.230150px;}
.y4a{bottom:761.482200px;}
.y6{bottom:765.087900px;}
.y27{bottom:769.986000px;}
.y49{bottom:779.482050px;}
.y26{bottom:787.986000px;}
.y48{bottom:797.482050px;}
.y25{bottom:805.986000px;}
.y47{bottom:815.482050px;}
.y5{bottom:816.843900px;}
.yde{bottom:819.734100px;}
.y24{bottom:823.986000px;}
.y46{bottom:833.482050px;}
.y23{bottom:841.986000px;}
.y22{bottom:859.986000px;}
.y3{bottom:893.996700px;}
.y2{bottom:935.134500px;}
.y1{bottom:948.634500px;}
.hd{height:25.781025px;}
.hf{height:25.781625px;}
.h10{height:33.351562px;}
.h2{height:33.632812px;}
.h6{height:37.731445px;}
.h8{height:38.891602px;}
.he{height:41.765625px;}
.h11{height:43.212891px;}
.h7{height:44.586914px;}
.h3{height:46.986328px;}
.hb{height:49.374814px;}
.hc{height:49.541016px;}
.h9{height:50.419922px;}
.ha{height:52.207031px;}
.h5{height:62.648438px;}
.h4{height:69.140625px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.xa{left:110.551200px;}
.x5{left:123.525750px;}
.xb{left:127.559100px;}
.x8{left:182.802000px;}
.x7{left:228.954450px;}
.x4{left:281.975250px;}
.x6{left:294.286950px;}
.x3{left:445.646850px;}
.x2{left:532.787400px;}
@media print{
.v2{vertical-align:-14.208533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001280pt;}
.ls3{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.010133pt;}
.ls4{letter-spacing:0.586667pt;}
.ws1{word-spacing:-11.733333pt;}
.ws0{word-spacing:-10.560000pt;}
.ws7{word-spacing:-9.386667pt;}
.ws9{word-spacing:-6.840533pt;}
.ws8{word-spacing:-5.472427pt;}
.wsb{word-spacing:-0.042667pt;}
.ws5{word-spacing:-0.031093pt;}
.ws6{word-spacing:-0.024875pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.240000pt;}
.wsc{word-spacing:0.266667pt;}
.wsa{word-spacing:724.320000pt;}
.ws3{word-spacing:749.664000pt;}
._1{margin-left:-2988.851200pt;}
._6{margin-left:-10.240533pt;}
._17{margin-left:-6.837333pt;}
._a{margin-left:-5.767467pt;}
._9{margin-left:-4.450133pt;}
._0{margin-left:-2.935467pt;}
._4{margin-left:-1.972267pt;}
._2{margin-left:-0.921600pt;}
._11{width:0.889067pt;}
._5{width:1.785600pt;}
._8{width:3.076800pt;}
._10{width:4.012800pt;}
._c{width:4.910933pt;}
._d{width:5.829333pt;}
._3{width:6.864000pt;}
._f{width:7.792000pt;}
._7{width:8.788800pt;}
._e{width:10.288000pt;}
._15{width:11.706667pt;}
._16{width:12.637867pt;}
._14{width:14.852267pt;}
._19{width:16.080000pt;}
._18{width:17.188267pt;}
._13{width:22.080000pt;}
._12{width:724.352000pt;}
._b{width:749.696000pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:63.988800pt;}
.y86{bottom:92.432000pt;}
.y8c{bottom:94.488133pt;}
.y93{bottom:95.244133pt;}
.y21{bottom:97.123867pt;}
.y75{bottom:98.040133pt;}
.y96{bottom:99.401600pt;}
.y67{bottom:100.873067pt;}
.ya8{bottom:102.953600pt;}
.yc6{bottom:103.709467pt;}
.y45{bottom:104.339333pt;}
.ya9{bottom:105.599200pt;}
.y8b{bottom:106.754800pt;}
.y92{bottom:107.510800pt;}
.ydd{bottom:108.180133pt;}
.y85{bottom:108.432000pt;}
.y80{bottom:109.313867pt;}
.ybf{bottom:110.306800pt;}
.ya7{bottom:111.668267pt;}
.yc5{bottom:112.424133pt;}
.y44{bottom:113.054000pt;}
.y20{bottom:113.123867pt;}
.y95{bottom:115.220267pt;}
.y66{bottom:116.873067pt;}
.ybe{bottom:119.021467pt;}
.y91{bottom:119.777467pt;}
.y8a{bottom:122.573467pt;}
.ya6{bottom:123.934933pt;}
.y84{bottom:124.432000pt;}
.yc4{bottom:124.690800pt;}
.y7f{bottom:125.313867pt;}
.y43{bottom:125.320667pt;}
.y94{bottom:127.486933pt;}
.ydc{bottom:127.959600pt;}
.y1f{bottom:129.123867pt;}
.y89{bottom:131.288133pt;}
.y65{bottom:132.873067pt;}
.ybd{bottom:134.840133pt;}
.y90{bottom:135.596133pt;}
.yc3{bottom:136.957467pt;}
.y42{bottom:137.587333pt;}
.ya5{bottom:139.753600pt;}
.y83{bottom:140.432000pt;}
.y7e{bottom:141.313867pt;}
.y88{bottom:143.554800pt;}
.ydb{bottom:143.959600pt;}
.y1e{bottom:145.123867pt;}
.y8f{bottom:147.862800pt;}
.ya4{bottom:148.468267pt;}
.y64{bottom:148.873067pt;}
.yc2{bottom:149.224133pt;}
.y41{bottom:153.406133pt;}
.y82{bottom:156.432000pt;}
.y8e{bottom:156.577467pt;}
.y7d{bottom:157.313867pt;}
.y87{bottom:159.373467pt;}
.ya3{bottom:160.734933pt;}
.yc1{bottom:161.490800pt;}
.yda{bottom:163.739200pt;}
.y63{bottom:164.873067pt;}
.y1d{bottom:168.682933pt;}
.y8d{bottom:172.396133pt;}
.y81{bottom:172.432000pt;}
.y7c{bottom:173.313867pt;}
.ya2{bottom:176.553600pt;}
.yc0{bottom:177.309467pt;}
.yd9{bottom:179.739200pt;}
.y62{bottom:180.873067pt;}
.ya1{bottom:185.268267pt;}
.y74{bottom:188.432000pt;}
.y7b{bottom:189.313867pt;}
.y61{bottom:196.873067pt;}
.yd8{bottom:199.518667pt;}
.ya0{bottom:201.086933pt;}
.y73{bottom:204.432000pt;}
.y7a{bottom:205.313867pt;}
.y9f{bottom:209.801600pt;}
.y60{bottom:212.873067pt;}
.yd7{bottom:215.518667pt;}
.y1c{bottom:216.682933pt;}
.y72{bottom:220.432000pt;}
.y79{bottom:221.313867pt;}
.y9e{bottom:225.620267pt;}
.y5f{bottom:228.873067pt;}
.y1b{bottom:231.082933pt;}
.y9d{bottom:234.334933pt;}
.yd6{bottom:235.298133pt;}
.y71{bottom:236.432000pt;}
.y78{bottom:237.313867pt;}
.y40{bottom:244.873067pt;}
.y9c{bottom:246.601600pt;}
.y70{bottom:252.432000pt;}
.y1a{bottom:253.042000pt;}
.y77{bottom:253.313867pt;}
.yd5{bottom:255.077733pt;}
.y3f{bottom:260.873067pt;}
.y9b{bottom:262.420267pt;}
.y19{bottom:267.442000pt;}
.y6f{bottom:268.432000pt;}
.y76{bottom:269.313867pt;}
.yd4{bottom:271.077733pt;}
.y9a{bottom:271.134933pt;}
.y3e{bottom:276.873067pt;}
.y18{bottom:281.842000pt;}
.y99{bottom:283.401600pt;}
.y6e{bottom:284.432000pt;}
.ybc{bottom:285.313867pt;}
.yd3{bottom:290.857200pt;}
.y3d{bottom:292.873067pt;}
.y98{bottom:295.668267pt;}
.y17{bottom:296.242000pt;}
.y6d{bottom:300.432000pt;}
.ybb{bottom:301.313867pt;}
.y3c{bottom:308.873067pt;}
.yd2{bottom:310.636800pt;}
.y16{bottom:310.641867pt;}
.y97{bottom:311.486933pt;}
.y6c{bottom:316.432000pt;}
.yba{bottom:317.313867pt;}
.y3b{bottom:324.873067pt;}
.y15{bottom:325.042000pt;}
.yd1{bottom:326.636800pt;}
.y6b{bottom:332.432000pt;}
.yb9{bottom:333.313867pt;}
.y14{bottom:339.442000pt;}
.y3a{bottom:340.873067pt;}
.yd0{bottom:342.636800pt;}
.y6a{bottom:348.432000pt;}
.yb8{bottom:349.313867pt;}
.y5e{bottom:356.873067pt;}
.y13{bottom:361.401067pt;}
.ycf{bottom:362.416267pt;}
.y39{bottom:364.432000pt;}
.yb7{bottom:365.313867pt;}
.y5d{bottom:372.873067pt;}
.yce{bottom:378.416267pt;}
.y69{bottom:380.432000pt;}
.yb6{bottom:381.313867pt;}
.y12{bottom:383.360133pt;}
.y5c{bottom:388.873067pt;}
.y68{bottom:396.432000pt;}
.yb5{bottom:397.313867pt;}
.ycd{bottom:398.195867pt;}
.y5b{bottom:404.873067pt;}
.y38{bottom:412.432000pt;}
.yb4{bottom:413.313867pt;}
.ycc{bottom:417.975333pt;}
.y5a{bottom:420.873067pt;}
.y11{bottom:426.560000pt;}
.y37{bottom:428.432000pt;}
.yb3{bottom:429.313867pt;}
.y59{bottom:436.872933pt;}
.ycb{bottom:437.754933pt;}
.y10{bottom:440.960000pt;}
.y36{bottom:444.432000pt;}
.yb2{bottom:445.314000pt;}
.y58{bottom:452.872933pt;}
.yca{bottom:453.754933pt;}
.y35{bottom:460.432000pt;}
.yb1{bottom:461.314000pt;}
.yf{bottom:462.919067pt;}
.yeb{bottom:465.975333pt;}
.y57{bottom:468.872933pt;}
.yc9{bottom:473.534400pt;}
.y34{bottom:476.432000pt;}
.yb0{bottom:477.314000pt;}
.ye{bottom:477.319067pt;}
.yea{bottom:481.975333pt;}
.y56{bottom:484.872933pt;}
.yd{bottom:491.719067pt;}
.y33{bottom:492.432000pt;}
.yaf{bottom:493.314000pt;}
.y55{bottom:500.872933pt;}
.ye9{bottom:501.754933pt;}
.yc{bottom:506.119200pt;}
.y32{bottom:508.432000pt;}
.yae{bottom:509.314000pt;}
.y54{bottom:516.872933pt;}
.ye8{bottom:517.754933pt;}
.yb{bottom:520.519067pt;}
.y31{bottom:524.432000pt;}
.yad{bottom:525.314000pt;}
.yc8{bottom:529.093467pt;}
.y53{bottom:532.872933pt;}
.ye7{bottom:533.754933pt;}
.ya{bottom:534.919067pt;}
.y30{bottom:540.432000pt;}
.yac{bottom:541.314000pt;}
.y52{bottom:548.872933pt;}
.ye6{bottom:549.754933pt;}
.y2f{bottom:556.432000pt;}
.y9{bottom:556.878133pt;}
.yab{bottom:557.314000pt;}
.y51{bottom:564.872933pt;}
.yc7{bottom:568.652533pt;}
.ye5{bottom:569.534400pt;}
.y2e{bottom:572.432000pt;}
.yaa{bottom:573.314000pt;}
.y50{bottom:580.872933pt;}
.ye4{bottom:585.534400pt;}
.y2d{bottom:588.432000pt;}
.y4f{bottom:596.872933pt;}
.y2c{bottom:604.432000pt;}
.ye3{bottom:605.313867pt;}
.y4e{bottom:612.873067pt;}
.y2b{bottom:620.432000pt;}
.ye2{bottom:621.313867pt;}
.y4d{bottom:628.873067pt;}
.y8{bottom:635.278133pt;}
.y2a{bottom:636.432000pt;}
.ye1{bottom:641.093467pt;}
.y4c{bottom:644.873067pt;}
.y7{bottom:649.678133pt;}
.y29{bottom:652.432000pt;}
.ye0{bottom:657.093467pt;}
.y4b{bottom:660.873067pt;}
.y28{bottom:668.432000pt;}
.ydf{bottom:673.093467pt;}
.y4a{bottom:676.873067pt;}
.y6{bottom:680.078133pt;}
.y27{bottom:684.432000pt;}
.y49{bottom:692.872933pt;}
.y26{bottom:700.432000pt;}
.y48{bottom:708.872933pt;}
.y25{bottom:716.432000pt;}
.y47{bottom:724.872933pt;}
.y5{bottom:726.083467pt;}
.yde{bottom:728.652533pt;}
.y24{bottom:732.432000pt;}
.y46{bottom:740.872933pt;}
.y23{bottom:748.432000pt;}
.y22{bottom:764.432000pt;}
.y3{bottom:794.663733pt;}
.y2{bottom:831.230667pt;}
.y1{bottom:843.230667pt;}
.hd{height:22.916467pt;}
.hf{height:22.917000pt;}
.h10{height:29.645833pt;}
.h2{height:29.895833pt;}
.h6{height:33.539062pt;}
.h8{height:34.570312pt;}
.he{height:37.125000pt;}
.h11{height:38.411458pt;}
.h7{height:39.632812pt;}
.h3{height:41.765625pt;}
.hb{height:43.888724pt;}
.hc{height:44.036458pt;}
.h9{height:44.817708pt;}
.ha{height:46.406250pt;}
.h5{height:55.687500pt;}
.h4{height:61.458333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.xa{left:98.267733pt;}
.x5{left:109.800667pt;}
.xb{left:113.385867pt;}
.x8{left:162.490667pt;}
.x7{left:203.515067pt;}
.x4{left:250.644667pt;}
.x6{left:261.588400pt;}
.x3{left:396.130533pt;}
.x2{left:473.588800pt;}
}




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