
    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_ac9d5da81e046571c8bcc007.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_ba174a39838500b2c427f46c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_8098d02064a161839749b218.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_194488607d149fd2e6efe6f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d8d382e18c4e1481ebaf3dba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_031828c96304e30c086bdfdd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_47d768a6a9387231ac728d28.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_d8f5f16c36fc765d3e3e81f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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_e64c2fb27050c170d2400109.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.870117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d0bd5df4189127113ae22311.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.870117;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);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.lsb{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.181440px;}
.ls8{letter-spacing:0.252720px;}
.lsc{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378720px;}
.ls1{letter-spacing:0.504000px;}
.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;}
}
.ws7{word-spacing:-84.600000px;}
.wsa{word-spacing:-84.240000px;}
.ws3{word-spacing:-84.221280px;}
.ws9{word-spacing:-83.988000px;}
.ws5{word-spacing:-83.880000px;}
.ws1{word-spacing:-27.000000px;}
.ws4{word-spacing:-21.420000px;}
.wsc{word-spacing:-21.401400px;}
.wsf{word-spacing:-21.088080px;}
.wsd{word-spacing:-21.068640px;}
.ws2{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.160000px;}
.ws0{word-spacing:-17.712000px;}
.wse{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._2b{margin-left:-6.139440px;}
._16{margin-left:-4.717440px;}
._2{margin-left:-2.948400px;}
._1{margin-left:-1.152000px;}
._0{width:1.164000px;}
._9{width:2.206080px;}
._c{width:3.472080px;}
._f{width:4.926240px;}
._8{width:6.909840px;}
._7{width:7.918560px;}
._13{width:9.911040px;}
._6{width:11.121600px;}
._3{width:12.130560px;}
._4{width:13.339440px;}
._e{width:14.357280px;}
._d{width:15.809760px;}
._14{width:17.410320px;}
._1c{width:18.532800px;}
._15{width:20.049120px;}
._17{width:22.155120px;}
._18{width:23.166000px;}
._22{width:24.474960px;}
._19{width:26.592480px;}
._1a{width:29.415600px;}
._10{width:30.468240px;}
._b{width:31.505760px;}
._11{width:33.443280px;}
._20{width:34.558800px;}
._12{width:35.635200px;}
._a{width:36.897120px;}
._2c{width:39.677040px;}
._1f{width:45.266400px;}
._2a{width:46.402080px;}
._26{width:49.758480px;}
._5{width:57.788640px;}
._29{width:63.264240px;}
._28{width:64.921680px;}
._1b{width:86.696160px;}
._1d{width:111.719280px;}
._23{width:116.226720px;}
._21{width:119.526240px;}
._1e{width:223.632000px;}
._27{width:254.630160px;}
._25{width:764.507520px;}
._24{width:844.872480px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.620000px;}
.y9{bottom:5.760000px;}
.y2{bottom:7.020000px;}
.ya{bottom:7.920000px;}
.y3{bottom:8.640000px;}
.y8{bottom:9.000000px;}
.y7{bottom:32.220000px;}
.y7a{bottom:89.856000px;}
.y8f{bottom:98.496000px;}
.y9c{bottom:102.636000px;}
.yb3{bottom:107.136000px;}
.y41{bottom:115.416000px;}
.y79{bottom:126.036000px;}
.y5a{bottom:128.556000px;}
.y9b{bottom:134.316000px;}
.y8e{bottom:134.676000px;}
.yb2{bottom:143.316000px;}
.y6b{bottom:148.536000px;}
.y26{bottom:149.796000px;}
.y40{bottom:151.590000px;}
.y78{bottom:162.390000px;}
.y59{bottom:164.730000px;}
.y8d{bottom:170.850000px;}
.yb1{bottom:179.490000px;}
.y6a{bottom:184.710000px;}
.y25{bottom:185.970000px;}
.y3f{bottom:187.770000px;}
.y77{bottom:198.570000px;}
.y58{bottom:200.910000px;}
.y8c{bottom:207.030000px;}
.yb0{bottom:215.670000px;}
.y69{bottom:220.890000px;}
.y24{bottom:222.150000px;}
.y3e{bottom:223.950000px;}
.y76{bottom:235.470000px;}
.y57{bottom:237.090000px;}
.y8b{bottom:243.390000px;}
.yaf{bottom:252.030000px;}
.y68{bottom:257.070000px;}
.y23{bottom:258.330000px;}
.y3d{bottom:260.310000px;}
.y75{bottom:272.730000px;}
.y56{bottom:274.170000px;}
.y8a{bottom:279.570000px;}
.yae{bottom:288.210000px;}
.y67{bottom:293.430000px;}
.y22{bottom:294.690000px;}
.y3c{bottom:296.490000px;}
.y74{bottom:309.090000px;}
.y55{bottom:310.530000px;}
.y89{bottom:315.750000px;}
.yad{bottom:324.390000px;}
.y66{bottom:329.610000px;}
.y21{bottom:330.870000px;}
.y3b{bottom:332.670000px;}
.y73{bottom:345.315000px;}
.y54{bottom:346.755000px;}
.y88{bottom:351.975000px;}
.yac{bottom:360.615000px;}
.y65{bottom:365.835000px;}
.y20{bottom:367.095000px;}
.y3a{bottom:368.895000px;}
.y72{bottom:381.675000px;}
.y53{bottom:383.115000px;}
.y9a{bottom:387.615000px;}
.y87{bottom:388.335000px;}
.yab{bottom:396.975000px;}
.y64{bottom:402.015000px;}
.y1f{bottom:403.275000px;}
.y39{bottom:405.255000px;}
.y71{bottom:417.855000px;}
.y52{bottom:420.015000px;}
.y99{bottom:423.975000px;}
.y86{bottom:424.515000px;}
.yaa{bottom:433.155000px;}
.y63{bottom:438.195000px;}
.y1e{bottom:439.635000px;}
.y38{bottom:441.435000px;}
.y70{bottom:454.035000px;}
.y51{bottom:457.275000px;}
.y98{bottom:460.155000px;}
.y85{bottom:460.695000px;}
.ya9{bottom:469.335000px;}
.y62{bottom:474.555000px;}
.y1d{bottom:475.815000px;}
.y37{bottom:477.615000px;}
.y6f{bottom:490.215000px;}
.y50{bottom:493.635000px;}
.y97{bottom:496.335000px;}
.y84{bottom:496.875000px;}
.ya8{bottom:505.515000px;}
.y61{bottom:510.735000px;}
.y1c{bottom:511.995000px;}
.y36{bottom:513.795000px;}
.y6e{bottom:526.395000px;}
.y4f{bottom:530.535000px;}
.y96{bottom:532.515000px;}
.y83{bottom:533.055000px;}
.ya7{bottom:541.875000px;}
.y60{bottom:546.915000px;}
.y1b{bottom:548.175000px;}
.y35{bottom:549.975000px;}
.y6d{bottom:562.755000px;}
.y4e{bottom:567.075000px;}
.y95{bottom:568.695000px;}
.y82{bottom:569.415000px;}
.ya6{bottom:578.055000px;}
.y5f{bottom:583.095000px;}
.y1a{bottom:584.355000px;}
.y34{bottom:586.335000px;}
.y6c{bottom:594.435000px;}
.y81{bottom:601.095000px;}
.y4d{bottom:603.255000px;}
.y94{bottom:605.085000px;}
.ya5{bottom:614.265000px;}
.y5e{bottom:619.485000px;}
.y19{bottom:620.745000px;}
.y33{bottom:622.545000px;}
.y4c{bottom:639.465000px;}
.y93{bottom:641.265000px;}
.ya4{bottom:650.445000px;}
.y5d{bottom:655.665000px;}
.y18{bottom:656.925000px;}
.y32{bottom:658.725000px;}
.y4b{bottom:675.645000px;}
.y92{bottom:677.445000px;}
.ya3{bottom:686.625000px;}
.y5c{bottom:691.845000px;}
.y17{bottom:693.105000px;}
.y31{bottom:694.905000px;}
.y4a{bottom:711.825000px;}
.y91{bottom:713.625000px;}
.ya2{bottom:722.985000px;}
.y5b{bottom:723.525000px;}
.y16{bottom:729.285000px;}
.y30{bottom:731.265000px;}
.y90{bottom:745.305000px;}
.y49{bottom:748.185000px;}
.ya1{bottom:759.165000px;}
.y15{bottom:765.645000px;}
.y2f{bottom:767.445000px;}
.y48{bottom:784.365000px;}
.ya0{bottom:795.345000px;}
.y14{bottom:801.825000px;}
.y2e{bottom:803.625000px;}
.y47{bottom:820.545000px;}
.y9f{bottom:831.525000px;}
.y13{bottom:838.005000px;}
.y2d{bottom:839.805000px;}
.y46{bottom:856.725000px;}
.y9e{bottom:867.885000px;}
.y12{bottom:874.230000px;}
.y2c{bottom:876.210000px;}
.y45{bottom:893.130000px;}
.y9d{bottom:899.430000px;}
.y80{bottom:910.410000px;}
.y11{bottom:910.590000px;}
.y2b{bottom:912.390000px;}
.y44{bottom:929.310000px;}
.y10{bottom:946.770000px;}
.y7f{bottom:947.490000px;}
.y2a{bottom:948.570000px;}
.y43{bottom:965.490000px;}
.yf{bottom:982.950000px;}
.y7e{bottom:983.850000px;}
.y29{bottom:984.750000px;}
.y42{bottom:997.170000px;}
.ye{bottom:1019.130000px;}
.y7d{bottom:1020.030000px;}
.y28{bottom:1020.930000px;}
.yd{bottom:1055.490000px;}
.y7c{bottom:1056.210000px;}
.y27{bottom:1057.290000px;}
.y7b{bottom:1093.290000px;}
.yc{bottom:1093.470000px;}
.yb{bottom:1129.650000px;}
.y6{bottom:1153.080000px;}
.y4{bottom:1168.380000px;}
.y1{bottom:1193.580000px;}
.h5{height:14.400000px;}
.h2{height:26.640000px;}
.h7{height:30.960000px;}
.h4{height:53.709961px;}
.he{height:58.819922px;}
.ha{height:65.884219px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:82.635820px;}
.hb{height:82.676953px;}
.hc{height:84.898125px;}
.h9{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:44.100000px;}
.w6{width:63.756000px;}
.w5{width:755.070000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x5{left:8.640000px;}
.x17{left:18.360000px;}
.x9{left:25.020000px;}
.x4{left:35.640000px;}
.x7{left:42.480000px;}
.x2{left:69.120000px;}
.x6{left:84.959987px;}
.x13{left:127.475987px;}
.xc{left:152.849987px;}
.xe{left:173.189987px;}
.xb{left:210.449987px;}
.x11{left:236.729987px;}
.x10{left:300.494987px;}
.xd{left:313.994987px;}
.xf{left:337.934987px;}
.x1b{left:357.914987px;}
.x12{left:373.574987px;}
.x14{left:392.654987px;}
.xa{left:446.474987px;}
.x18{left:735.089987px;}
.x16{left:748.589987px;}
.x19{left:764.249987px;}
.x1a{left:776.309987px;}
.x8{left:797.550000px;}
.x15{left:816.989987px;}
.x3{left:844.560000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.161280pt;}
.ls8{letter-spacing:0.224640pt;}
.lsc{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336640pt;}
.ls1{letter-spacing:0.448000pt;}
.ws7{word-spacing:-75.200000pt;}
.wsa{word-spacing:-74.880000pt;}
.ws3{word-spacing:-74.863360pt;}
.ws9{word-spacing:-74.656000pt;}
.ws5{word-spacing:-74.560000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws4{word-spacing:-19.040000pt;}
.wsc{word-spacing:-19.023467pt;}
.wsf{word-spacing:-18.744960pt;}
.wsd{word-spacing:-18.727680pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.400000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws0{word-spacing:-15.744000pt;}
.wse{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._2b{margin-left:-5.457280pt;}
._16{margin-left:-4.193280pt;}
._2{margin-left:-2.620800pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.034667pt;}
._9{width:1.960960pt;}
._c{width:3.086293pt;}
._f{width:4.378880pt;}
._8{width:6.142080pt;}
._7{width:7.038720pt;}
._13{width:8.809813pt;}
._6{width:9.885867pt;}
._3{width:10.782720pt;}
._4{width:11.857280pt;}
._e{width:12.762027pt;}
._d{width:14.053120pt;}
._14{width:15.475840pt;}
._1c{width:16.473600pt;}
._15{width:17.821440pt;}
._17{width:19.693440pt;}
._18{width:20.592000pt;}
._22{width:21.755520pt;}
._19{width:23.637760pt;}
._1a{width:26.147200pt;}
._10{width:27.082880pt;}
._b{width:28.005120pt;}
._11{width:29.727360pt;}
._20{width:30.718933pt;}
._12{width:31.675733pt;}
._a{width:32.797440pt;}
._2c{width:35.268480pt;}
._1f{width:40.236800pt;}
._2a{width:41.246293pt;}
._26{width:44.229760pt;}
._5{width:51.367680pt;}
._29{width:56.234880pt;}
._28{width:57.708160pt;}
._1b{width:77.063253pt;}
._1d{width:99.306027pt;}
._23{width:103.312640pt;}
._21{width:106.245547pt;}
._1e{width:198.784000pt;}
._27{width:226.337920pt;}
._25{width:679.562240pt;}
._24{width:750.997760pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.440000pt;}
.y9{bottom:5.120000pt;}
.y2{bottom:6.240000pt;}
.ya{bottom:7.040000pt;}
.y3{bottom:7.680000pt;}
.y8{bottom:8.000000pt;}
.y7{bottom:28.640000pt;}
.y7a{bottom:79.872000pt;}
.y8f{bottom:87.552000pt;}
.y9c{bottom:91.232000pt;}
.yb3{bottom:95.232000pt;}
.y41{bottom:102.592000pt;}
.y79{bottom:112.032000pt;}
.y5a{bottom:114.272000pt;}
.y9b{bottom:119.392000pt;}
.y8e{bottom:119.712000pt;}
.yb2{bottom:127.392000pt;}
.y6b{bottom:132.032000pt;}
.y26{bottom:133.152000pt;}
.y40{bottom:134.746667pt;}
.y78{bottom:144.346667pt;}
.y59{bottom:146.426667pt;}
.y8d{bottom:151.866667pt;}
.yb1{bottom:159.546667pt;}
.y6a{bottom:164.186667pt;}
.y25{bottom:165.306667pt;}
.y3f{bottom:166.906667pt;}
.y77{bottom:176.506667pt;}
.y58{bottom:178.586667pt;}
.y8c{bottom:184.026667pt;}
.yb0{bottom:191.706667pt;}
.y69{bottom:196.346667pt;}
.y24{bottom:197.466667pt;}
.y3e{bottom:199.066667pt;}
.y76{bottom:209.306667pt;}
.y57{bottom:210.746667pt;}
.y8b{bottom:216.346667pt;}
.yaf{bottom:224.026667pt;}
.y68{bottom:228.506667pt;}
.y23{bottom:229.626667pt;}
.y3d{bottom:231.386667pt;}
.y75{bottom:242.426667pt;}
.y56{bottom:243.706667pt;}
.y8a{bottom:248.506667pt;}
.yae{bottom:256.186667pt;}
.y67{bottom:260.826667pt;}
.y22{bottom:261.946667pt;}
.y3c{bottom:263.546667pt;}
.y74{bottom:274.746667pt;}
.y55{bottom:276.026667pt;}
.y89{bottom:280.666667pt;}
.yad{bottom:288.346667pt;}
.y66{bottom:292.986667pt;}
.y21{bottom:294.106667pt;}
.y3b{bottom:295.706667pt;}
.y73{bottom:306.946667pt;}
.y54{bottom:308.226667pt;}
.y88{bottom:312.866667pt;}
.yac{bottom:320.546667pt;}
.y65{bottom:325.186667pt;}
.y20{bottom:326.306667pt;}
.y3a{bottom:327.906667pt;}
.y72{bottom:339.266667pt;}
.y53{bottom:340.546667pt;}
.y9a{bottom:344.546667pt;}
.y87{bottom:345.186667pt;}
.yab{bottom:352.866667pt;}
.y64{bottom:357.346667pt;}
.y1f{bottom:358.466667pt;}
.y39{bottom:360.226667pt;}
.y71{bottom:371.426667pt;}
.y52{bottom:373.346667pt;}
.y99{bottom:376.866667pt;}
.y86{bottom:377.346667pt;}
.yaa{bottom:385.026667pt;}
.y63{bottom:389.506667pt;}
.y1e{bottom:390.786667pt;}
.y38{bottom:392.386667pt;}
.y70{bottom:403.586667pt;}
.y51{bottom:406.466667pt;}
.y98{bottom:409.026667pt;}
.y85{bottom:409.506667pt;}
.ya9{bottom:417.186667pt;}
.y62{bottom:421.826667pt;}
.y1d{bottom:422.946667pt;}
.y37{bottom:424.546667pt;}
.y6f{bottom:435.746667pt;}
.y50{bottom:438.786667pt;}
.y97{bottom:441.186667pt;}
.y84{bottom:441.666667pt;}
.ya8{bottom:449.346667pt;}
.y61{bottom:453.986667pt;}
.y1c{bottom:455.106667pt;}
.y36{bottom:456.706667pt;}
.y6e{bottom:467.906667pt;}
.y4f{bottom:471.586667pt;}
.y96{bottom:473.346667pt;}
.y83{bottom:473.826667pt;}
.ya7{bottom:481.666667pt;}
.y60{bottom:486.146667pt;}
.y1b{bottom:487.266667pt;}
.y35{bottom:488.866667pt;}
.y6d{bottom:500.226667pt;}
.y4e{bottom:504.066667pt;}
.y95{bottom:505.506667pt;}
.y82{bottom:506.146667pt;}
.ya6{bottom:513.826667pt;}
.y5f{bottom:518.306667pt;}
.y1a{bottom:519.426667pt;}
.y34{bottom:521.186667pt;}
.y6c{bottom:528.386667pt;}
.y81{bottom:534.306667pt;}
.y4d{bottom:536.226667pt;}
.y94{bottom:537.853333pt;}
.ya5{bottom:546.013333pt;}
.y5e{bottom:550.653333pt;}
.y19{bottom:551.773333pt;}
.y33{bottom:553.373333pt;}
.y4c{bottom:568.413333pt;}
.y93{bottom:570.013333pt;}
.ya4{bottom:578.173333pt;}
.y5d{bottom:582.813333pt;}
.y18{bottom:583.933333pt;}
.y32{bottom:585.533333pt;}
.y4b{bottom:600.573333pt;}
.y92{bottom:602.173333pt;}
.ya3{bottom:610.333333pt;}
.y5c{bottom:614.973333pt;}
.y17{bottom:616.093333pt;}
.y31{bottom:617.693333pt;}
.y4a{bottom:632.733333pt;}
.y91{bottom:634.333333pt;}
.ya2{bottom:642.653333pt;}
.y5b{bottom:643.133333pt;}
.y16{bottom:648.253333pt;}
.y30{bottom:650.013333pt;}
.y90{bottom:662.493333pt;}
.y49{bottom:665.053333pt;}
.ya1{bottom:674.813333pt;}
.y15{bottom:680.573333pt;}
.y2f{bottom:682.173333pt;}
.y48{bottom:697.213333pt;}
.ya0{bottom:706.973333pt;}
.y14{bottom:712.733333pt;}
.y2e{bottom:714.333333pt;}
.y47{bottom:729.373333pt;}
.y9f{bottom:739.133333pt;}
.y13{bottom:744.893333pt;}
.y2d{bottom:746.493333pt;}
.y46{bottom:761.533333pt;}
.y9e{bottom:771.453333pt;}
.y12{bottom:777.093333pt;}
.y2c{bottom:778.853333pt;}
.y45{bottom:793.893333pt;}
.y9d{bottom:799.493333pt;}
.y80{bottom:809.253333pt;}
.y11{bottom:809.413333pt;}
.y2b{bottom:811.013333pt;}
.y44{bottom:826.053333pt;}
.y10{bottom:841.573333pt;}
.y7f{bottom:842.213333pt;}
.y2a{bottom:843.173333pt;}
.y43{bottom:858.213333pt;}
.yf{bottom:873.733333pt;}
.y7e{bottom:874.533333pt;}
.y29{bottom:875.333333pt;}
.y42{bottom:886.373333pt;}
.ye{bottom:905.893333pt;}
.y7d{bottom:906.693333pt;}
.y28{bottom:907.493333pt;}
.yd{bottom:938.213333pt;}
.y7c{bottom:938.853333pt;}
.y27{bottom:939.813333pt;}
.y7b{bottom:971.813333pt;}
.yc{bottom:971.973333pt;}
.yb{bottom:1004.133333pt;}
.y6{bottom:1024.960000pt;}
.y4{bottom:1038.560000pt;}
.y1{bottom:1060.960000pt;}
.h5{height:12.800000pt;}
.h2{height:23.680000pt;}
.h7{height:27.520000pt;}
.h4{height:47.742188pt;}
.he{height:52.284375pt;}
.ha{height:58.563750pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:73.454062pt;}
.hb{height:73.490625pt;}
.hc{height:75.465000pt;}
.h9{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.200000pt;}
.w6{width:56.672000pt;}
.w5{width:671.173333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x5{left:7.680000pt;}
.x17{left:16.320000pt;}
.x9{left:22.240000pt;}
.x4{left:31.680000pt;}
.x7{left:37.760000pt;}
.x2{left:61.440000pt;}
.x6{left:75.519988pt;}
.x13{left:113.311988pt;}
.xc{left:135.866655pt;}
.xe{left:153.946655pt;}
.xb{left:187.066655pt;}
.x11{left:210.426655pt;}
.x10{left:267.106655pt;}
.xd{left:279.106655pt;}
.xf{left:300.386655pt;}
.x1b{left:318.146655pt;}
.x12{left:332.066655pt;}
.x14{left:349.026655pt;}
.xa{left:396.866655pt;}
.x18{left:653.413322pt;}
.x16{left:665.413322pt;}
.x19{left:679.333322pt;}
.x1a{left:690.053322pt;}
.x8{left:708.933333pt;}
.x15{left:726.213322pt;}
.x3{left:750.720000pt;}
}




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