
    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_2a88675a9be300f96736db3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_f0b3ceab9aaea7970e3ccb9c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4b1e4e7b65d7e690c487eefd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6f21baef32f010810743d957.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_975a517957a52155349bfded.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2c72968373a56eddb35df067.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v6{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.108000px;}
.lse{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.900000px;}
.ls4{letter-spacing:0.978000px;}
.lsd{letter-spacing:2.340000px;}
.ls8{letter-spacing:3.060000px;}
.ls12{letter-spacing:10.800000px;}
.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;}
}
.ws9{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws4{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.ws6{word-spacing:-12.420000px;}
.ws7{word-spacing:-11.700000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.608000px;}
._2{margin-left:-2.952000px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._9{width:2.209200px;}
._d{width:3.406320px;}
._e{width:4.482000px;}
._5{width:5.736960px;}
._4{width:7.290720px;}
._a{width:8.904240px;}
._b{width:9.960960px;}
._c{width:11.052960px;}
._6{width:12.071520px;}
._8{width:13.206960px;}
._15{width:14.627040px;}
._16{width:15.711840px;}
._7{width:16.792560px;}
._f{width:18.293040px;}
._12{width:20.016000px;}
._13{width:21.426000px;}
._14{width:22.452000px;}
._17{width:24.120000px;}
._19{width:27.288000px;}
._1a{width:28.440000px;}
._18{width:31.464000px;}
._1b{width:33.048000px;}
._3{width:55.668000px;}
._10{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.240000px;}
.y4{bottom:13.500000px;}
.y26{bottom:20.520000px;}
.y5{bottom:21.060000px;}
.y3{bottom:28.980000px;}
.y25{bottom:37.800000px;}
.y2{bottom:44.460000px;}
.y24{bottom:55.080000px;}
.y8{bottom:57.420000px;}
.y2a{bottom:57.600000px;}
.y23{bottom:72.180000px;}
.y7{bottom:77.616000px;}
.y22{bottom:89.490000px;}
.y21{bottom:106.770000px;}
.y59{bottom:115.596000px;}
.y20{bottom:124.050000px;}
.ydc{bottom:126.396000px;}
.y58{bottom:136.296000px;}
.yec{bottom:138.096000px;}
.yac{bottom:138.996000px;}
.y1f{bottom:141.330000px;}
.ydb{bottom:147.096000px;}
.y57{bottom:156.990000px;}
.y1e{bottom:158.610000px;}
.yeb{bottom:158.790000px;}
.y7a{bottom:159.690000px;}
.y9b{bottom:165.090000px;}
.yab{bottom:168.690000px;}
.ybc{bottom:174.090000px;}
.y1d{bottom:175.710000px;}
.yda{bottom:176.790000px;}
.y56{bottom:177.690000px;}
.yea{bottom:179.490000px;}
.y79{bottom:189.390000px;}
.y1c{bottom:192.990000px;}
.y9a{bottom:194.790000px;}
.yd9{bottom:197.490000px;}
.y55{bottom:198.390000px;}
.ye9{bottom:209.190000px;}
.y78{bottom:210.090000px;}
.y1b{bottom:210.270000px;}
.y99{bottom:215.490000px;}
.yd8{bottom:218.190000px;}
.y54{bottom:219.090000px;}
.ybb{bottom:224.490000px;}
.y1a{bottom:227.550000px;}
.ye8{bottom:229.890000px;}
.y77{bottom:230.790000px;}
.y98{bottom:236.190000px;}
.y53{bottom:239.790000px;}
.y19{bottom:244.830000px;}
.yba{bottom:245.190000px;}
.yd7{bottom:247.890000px;}
.ye7{bottom:250.590000px;}
.y76{bottom:251.490000px;}
.y97{bottom:256.890000px;}
.y18{bottom:261.930000px;}
.yb9{bottom:265.890000px;}
.yd6{bottom:268.590000px;}
.y52{bottom:269.490000px;}
.y75{bottom:272.190000px;}
.y17{bottom:279.210000px;}
.ye6{bottom:280.290000px;}
.y96{bottom:286.590000px;}
.y74{bottom:292.890000px;}
.yb8{bottom:295.590000px;}
.y16{bottom:296.490000px;}
.yd5{bottom:298.290000px;}
.y51{bottom:299.190000px;}
.ye5{bottom:300.990000px;}
.yaa{bottom:313.590000px;}
.y15{bottom:313.770000px;}
.y95{bottom:316.290000px;}
.yd4{bottom:318.990000px;}
.y50{bottom:319.890000px;}
.y73{bottom:322.590000px;}
.ye4{bottom:330.690000px;}
.y14{bottom:331.050000px;}
.ya9{bottom:334.290000px;}
.y94{bottom:337.035000px;}
.yd3{bottom:339.735000px;}
.y4f{bottom:340.635000px;}
.y13{bottom:348.330000px;}
.y72{bottom:352.335000px;}
.ya8{bottom:355.035000px;}
.y93{bottom:357.735000px;}
.yd2{bottom:360.435000px;}
.y4e{bottom:361.335000px;}
.y12{bottom:365.475000px;}
.yb7{bottom:366.735000px;}
.y71{bottom:373.035000px;}
.ye3{bottom:381.135000px;}
.y4d{bottom:382.035000px;}
.ya7{bottom:384.735000px;}
.y92{bottom:387.435000px;}
.yd1{bottom:390.135000px;}
.y70{bottom:393.735000px;}
.ye2{bottom:401.835000px;}
.y4c{bottom:402.735000px;}
.yb6{bottom:408.135000px;}
.yd0{bottom:410.835000px;}
.y6f{bottom:414.435000px;}
.y91{bottom:417.135000px;}
.y4b{bottom:423.435000px;}
.ycf{bottom:431.535000px;}
.y6e{bottom:435.135000px;}
.y90{bottom:437.835000px;}
.y28{bottom:443.235000px;}
.y4a{bottom:444.135000px;}
.y6d{bottom:455.835000px;}
.y8f{bottom:458.535000px;}
.yce{bottom:461.235000px;}
.y49{bottom:464.835000px;}
.y6c{bottom:476.535000px;}
.y8e{bottom:479.235000px;}
.ycd{bottom:481.935000px;}
.y48{bottom:485.535000px;}
.y6b{bottom:497.235000px;}
.y8d{bottom:499.935000px;}
.ye1{bottom:502.635000px;}
.yb5{bottom:508.935000px;}
.ycc{bottom:511.635000px;}
.y47{bottom:515.235000px;}
.ya6{bottom:517.935000px;}
.y11{bottom:519.375000px;}
.y8c{bottom:520.635000px;}
.y6a{bottom:526.935000px;}
.yb4{bottom:529.635000px;}
.ycb{bottom:532.335000px;}
.ya5{bottom:538.635000px;}
.y8b{bottom:541.335000px;}
.y46{bottom:544.935000px;}
.ye0{bottom:553.035000px;}
.y69{bottom:556.635000px;}
.ya4{bottom:559.335000px;}
.y8a{bottom:562.035000px;}
.y45{bottom:565.635000px;}
.y68{bottom:577.335000px;}
.yb3{bottom:580.035000px;}
.yca{bottom:582.735000px;}
.y44{bottom:586.335000px;}
.ya3{bottom:589.035000px;}
.y89{bottom:591.735000px;}
.y67{bottom:598.035000px;}
.yc9{bottom:603.435000px;}
.yb2{bottom:609.765000px;}
.y43{bottom:616.065000px;}
.y66{bottom:618.765000px;}
.y88{bottom:621.465000px;}
.yc8{bottom:624.165000px;}
.yb1{bottom:630.465000px;}
.ydf{bottom:633.165000px;}
.y42{bottom:636.765000px;}
.ya2{bottom:639.465000px;}
.y87{bottom:642.165000px;}
.y65{bottom:648.465000px;}
.yb0{bottom:651.165000px;}
.yc7{bottom:653.865000px;}
.y41{bottom:657.465000px;}
.ya1{bottom:660.165000px;}
.y86{bottom:662.865000px;}
.yc6{bottom:674.565000px;}
.y40{bottom:678.165000px;}
.ya0{bottom:680.865000px;}
.y85{bottom:692.565000px;}
.yc5{bottom:695.265000px;}
.y3f{bottom:698.865000px;}
.y9f{bottom:701.565000px;}
.yde{bottom:704.265000px;}
.y3e{bottom:719.565000px;}
.y84{bottom:722.265000px;}
.yc4{bottom:724.965000px;}
.yaf{bottom:731.265000px;}
.y64{bottom:740.265000px;}
.y83{bottom:742.965000px;}
.yc3{bottom:745.665000px;}
.y3d{bottom:749.265000px;}
.ydd{bottom:754.665000px;}
.y63{bottom:760.965000px;}
.y82{bottom:763.665000px;}
.y3c{bottom:769.965000px;}
.yc2{bottom:775.365000px;}
.y62{bottom:781.665000px;}
.y81{bottom:784.365000px;}
.y3b{bottom:790.665000px;}
.y9e{bottom:793.365000px;}
.y61{bottom:802.365000px;}
.y80{bottom:805.065000px;}
.y3a{bottom:811.365000px;}
.y60{bottom:823.065000px;}
.y7f{bottom:825.765000px;}
.y39{bottom:832.065000px;}
.y5f{bottom:843.765000px;}
.y38{bottom:852.765000px;}
.y7e{bottom:855.465000px;}
.yae{bottom:861.765000px;}
.y5e{bottom:864.465000px;}
.y37{bottom:873.510000px;}
.yc1{bottom:876.210000px;}
.yad{bottom:882.510000px;}
.y5d{bottom:885.210000px;}
.yc0{bottom:896.910000px;}
.y10{bottom:902.130000px;}
.y36{bottom:903.210000px;}
.y5c{bottom:905.910000px;}
.yf{bottom:919.410000px;}
.y35{bottom:923.910000px;}
.y5b{bottom:926.610000px;}
.ye{bottom:941.910000px;}
.y34{bottom:944.610000px;}
.y7d{bottom:947.310000px;}
.y5a{bottom:956.310000px;}
.y33{bottom:965.310000px;}
.y7c{bottom:968.010000px;}
.yd{bottom:972.690000px;}
.ybf{bottom:977.010000px;}
.y32{bottom:986.010000px;}
.y9d{bottom:988.710000px;}
.y7b{bottom:997.710000px;}
.y31{bottom:1006.710000px;}
.yc{bottom:1011.570000px;}
.y9c{bottom:1018.410000px;}
.y30{bottom:1027.410000px;}
.yb{bottom:1041.270000px;}
.y2f{bottom:1048.110000px;}
.y2e{bottom:1068.810000px;}
.ya{bottom:1070.970000px;}
.y2d{bottom:1089.510000px;}
.y9{bottom:1091.670000px;}
.ybe{bottom:1098.510000px;}
.y2c{bottom:1110.210000px;}
.ybd{bottom:1119.210000px;}
.y6{bottom:1121.910000px;}
.y2b{bottom:1139.940000px;}
.y1{bottom:1142.100000px;}
.y29{bottom:1194.480000px;}
.h7{height:38.158594px;}
.hc{height:51.679688px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.h8{height:58.651172px;}
.hb{height:59.038594px;}
.ha{height:60.226875px;}
.h5{height:65.884219px;}
.h2{height:67.680000px;}
.hd{height:70.664062px;}
.h6{height:72.562500px;}
.he{height:74.704922px;}
.hf{height:74.884922px;}
.h9{height:379.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:16.920000px;}
.w3{width:74.700000px;}
.w8{width:209.550000px;}
.w4{width:223.590000px;}
.w2{width:339.555000px;}
.w6{width:423.975000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x4{left:66.600000px;}
.xe{left:106.235987px;}
.x1{left:127.656000px;}
.x8{left:134.675987px;}
.x10{left:148.715987px;}
.x6{left:203.805000px;}
.xb{left:352.334987px;}
.xf{left:407.774987px;}
.x9{left:409.754987px;}
.x7{left:434.054987px;}
.xa{left:446.474987px;}
.x3{left:467.205000px;}
.x5{left:541.905000px;}
.xc{left:551.625000px;}
.xd{left:568.545000px;}
@media print{
.v6{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.869333pt;}
.lsd{letter-spacing:2.080000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls12{letter-spacing:9.600000pt;}
.ws9{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-4.096000pt;}
._2{margin-left:-2.624000pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._9{width:1.963733pt;}
._d{width:3.027840pt;}
._e{width:3.984000pt;}
._5{width:5.099520pt;}
._4{width:6.480640pt;}
._a{width:7.914880pt;}
._b{width:8.854187pt;}
._c{width:9.824853pt;}
._6{width:10.730240pt;}
._8{width:11.739520pt;}
._15{width:13.001813pt;}
._16{width:13.966080pt;}
._7{width:14.926720pt;}
._f{width:16.260480pt;}
._12{width:17.792000pt;}
._13{width:19.045333pt;}
._14{width:19.957333pt;}
._17{width:21.440000pt;}
._19{width:24.256000pt;}
._1a{width:25.280000pt;}
._18{width:27.968000pt;}
._1b{width:29.376000pt;}
._3{width:49.482667pt;}
._10{width:752.138667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:2.880000pt;}
.y4{bottom:12.000000pt;}
.y26{bottom:18.240000pt;}
.y5{bottom:18.720000pt;}
.y3{bottom:25.760000pt;}
.y25{bottom:33.600000pt;}
.y2{bottom:39.520000pt;}
.y24{bottom:48.960000pt;}
.y8{bottom:51.040000pt;}
.y2a{bottom:51.200000pt;}
.y23{bottom:64.160000pt;}
.y7{bottom:68.992000pt;}
.y22{bottom:79.546667pt;}
.y21{bottom:94.906667pt;}
.y59{bottom:102.752000pt;}
.y20{bottom:110.266667pt;}
.ydc{bottom:112.352000pt;}
.y58{bottom:121.152000pt;}
.yec{bottom:122.752000pt;}
.yac{bottom:123.552000pt;}
.y1f{bottom:125.626667pt;}
.ydb{bottom:130.752000pt;}
.y57{bottom:139.546667pt;}
.y1e{bottom:140.986667pt;}
.yeb{bottom:141.146667pt;}
.y7a{bottom:141.946667pt;}
.y9b{bottom:146.746667pt;}
.yab{bottom:149.946667pt;}
.ybc{bottom:154.746667pt;}
.y1d{bottom:156.186667pt;}
.yda{bottom:157.146667pt;}
.y56{bottom:157.946667pt;}
.yea{bottom:159.546667pt;}
.y79{bottom:168.346667pt;}
.y1c{bottom:171.546667pt;}
.y9a{bottom:173.146667pt;}
.yd9{bottom:175.546667pt;}
.y55{bottom:176.346667pt;}
.ye9{bottom:185.946667pt;}
.y78{bottom:186.746667pt;}
.y1b{bottom:186.906667pt;}
.y99{bottom:191.546667pt;}
.yd8{bottom:193.946667pt;}
.y54{bottom:194.746667pt;}
.ybb{bottom:199.546667pt;}
.y1a{bottom:202.266667pt;}
.ye8{bottom:204.346667pt;}
.y77{bottom:205.146667pt;}
.y98{bottom:209.946667pt;}
.y53{bottom:213.146667pt;}
.y19{bottom:217.626667pt;}
.yba{bottom:217.946667pt;}
.yd7{bottom:220.346667pt;}
.ye7{bottom:222.746667pt;}
.y76{bottom:223.546667pt;}
.y97{bottom:228.346667pt;}
.y18{bottom:232.826667pt;}
.yb9{bottom:236.346667pt;}
.yd6{bottom:238.746667pt;}
.y52{bottom:239.546667pt;}
.y75{bottom:241.946667pt;}
.y17{bottom:248.186667pt;}
.ye6{bottom:249.146667pt;}
.y96{bottom:254.746667pt;}
.y74{bottom:260.346667pt;}
.yb8{bottom:262.746667pt;}
.y16{bottom:263.546667pt;}
.yd5{bottom:265.146667pt;}
.y51{bottom:265.946667pt;}
.ye5{bottom:267.546667pt;}
.yaa{bottom:278.746667pt;}
.y15{bottom:278.906667pt;}
.y95{bottom:281.146667pt;}
.yd4{bottom:283.546667pt;}
.y50{bottom:284.346667pt;}
.y73{bottom:286.746667pt;}
.ye4{bottom:293.946667pt;}
.y14{bottom:294.266667pt;}
.ya9{bottom:297.146667pt;}
.y94{bottom:299.586667pt;}
.yd3{bottom:301.986667pt;}
.y4f{bottom:302.786667pt;}
.y13{bottom:309.626667pt;}
.y72{bottom:313.186667pt;}
.ya8{bottom:315.586667pt;}
.y93{bottom:317.986667pt;}
.yd2{bottom:320.386667pt;}
.y4e{bottom:321.186667pt;}
.y12{bottom:324.866667pt;}
.yb7{bottom:325.986667pt;}
.y71{bottom:331.586667pt;}
.ye3{bottom:338.786667pt;}
.y4d{bottom:339.586667pt;}
.ya7{bottom:341.986667pt;}
.y92{bottom:344.386667pt;}
.yd1{bottom:346.786667pt;}
.y70{bottom:349.986667pt;}
.ye2{bottom:357.186667pt;}
.y4c{bottom:357.986667pt;}
.yb6{bottom:362.786667pt;}
.yd0{bottom:365.186667pt;}
.y6f{bottom:368.386667pt;}
.y91{bottom:370.786667pt;}
.y4b{bottom:376.386667pt;}
.ycf{bottom:383.586667pt;}
.y6e{bottom:386.786667pt;}
.y90{bottom:389.186667pt;}
.y28{bottom:393.986667pt;}
.y4a{bottom:394.786667pt;}
.y6d{bottom:405.186667pt;}
.y8f{bottom:407.586667pt;}
.yce{bottom:409.986667pt;}
.y49{bottom:413.186667pt;}
.y6c{bottom:423.586667pt;}
.y8e{bottom:425.986667pt;}
.ycd{bottom:428.386667pt;}
.y48{bottom:431.586667pt;}
.y6b{bottom:441.986667pt;}
.y8d{bottom:444.386667pt;}
.ye1{bottom:446.786667pt;}
.yb5{bottom:452.386667pt;}
.ycc{bottom:454.786667pt;}
.y47{bottom:457.986667pt;}
.ya6{bottom:460.386667pt;}
.y11{bottom:461.666667pt;}
.y8c{bottom:462.786667pt;}
.y6a{bottom:468.386667pt;}
.yb4{bottom:470.786667pt;}
.ycb{bottom:473.186667pt;}
.ya5{bottom:478.786667pt;}
.y8b{bottom:481.186667pt;}
.y46{bottom:484.386667pt;}
.ye0{bottom:491.586667pt;}
.y69{bottom:494.786667pt;}
.ya4{bottom:497.186667pt;}
.y8a{bottom:499.586667pt;}
.y45{bottom:502.786667pt;}
.y68{bottom:513.186667pt;}
.yb3{bottom:515.586667pt;}
.yca{bottom:517.986667pt;}
.y44{bottom:521.186667pt;}
.ya3{bottom:523.586667pt;}
.y89{bottom:525.986667pt;}
.y67{bottom:531.586667pt;}
.yc9{bottom:536.386667pt;}
.yb2{bottom:542.013333pt;}
.y43{bottom:547.613333pt;}
.y66{bottom:550.013333pt;}
.y88{bottom:552.413333pt;}
.yc8{bottom:554.813333pt;}
.yb1{bottom:560.413333pt;}
.ydf{bottom:562.813333pt;}
.y42{bottom:566.013333pt;}
.ya2{bottom:568.413333pt;}
.y87{bottom:570.813333pt;}
.y65{bottom:576.413333pt;}
.yb0{bottom:578.813333pt;}
.yc7{bottom:581.213333pt;}
.y41{bottom:584.413333pt;}
.ya1{bottom:586.813333pt;}
.y86{bottom:589.213333pt;}
.yc6{bottom:599.613333pt;}
.y40{bottom:602.813333pt;}
.ya0{bottom:605.213333pt;}
.y85{bottom:615.613333pt;}
.yc5{bottom:618.013333pt;}
.y3f{bottom:621.213333pt;}
.y9f{bottom:623.613333pt;}
.yde{bottom:626.013333pt;}
.y3e{bottom:639.613333pt;}
.y84{bottom:642.013333pt;}
.yc4{bottom:644.413333pt;}
.yaf{bottom:650.013333pt;}
.y64{bottom:658.013333pt;}
.y83{bottom:660.413333pt;}
.yc3{bottom:662.813333pt;}
.y3d{bottom:666.013333pt;}
.ydd{bottom:670.813333pt;}
.y63{bottom:676.413333pt;}
.y82{bottom:678.813333pt;}
.y3c{bottom:684.413333pt;}
.yc2{bottom:689.213333pt;}
.y62{bottom:694.813333pt;}
.y81{bottom:697.213333pt;}
.y3b{bottom:702.813333pt;}
.y9e{bottom:705.213333pt;}
.y61{bottom:713.213333pt;}
.y80{bottom:715.613333pt;}
.y3a{bottom:721.213333pt;}
.y60{bottom:731.613333pt;}
.y7f{bottom:734.013333pt;}
.y39{bottom:739.613333pt;}
.y5f{bottom:750.013333pt;}
.y38{bottom:758.013333pt;}
.y7e{bottom:760.413333pt;}
.yae{bottom:766.013333pt;}
.y5e{bottom:768.413333pt;}
.y37{bottom:776.453333pt;}
.yc1{bottom:778.853333pt;}
.yad{bottom:784.453333pt;}
.y5d{bottom:786.853333pt;}
.yc0{bottom:797.253333pt;}
.y10{bottom:801.893333pt;}
.y36{bottom:802.853333pt;}
.y5c{bottom:805.253333pt;}
.yf{bottom:817.253333pt;}
.y35{bottom:821.253333pt;}
.y5b{bottom:823.653333pt;}
.ye{bottom:837.253333pt;}
.y34{bottom:839.653333pt;}
.y7d{bottom:842.053333pt;}
.y5a{bottom:850.053333pt;}
.y33{bottom:858.053333pt;}
.y7c{bottom:860.453333pt;}
.yd{bottom:864.613333pt;}
.ybf{bottom:868.453333pt;}
.y32{bottom:876.453333pt;}
.y9d{bottom:878.853333pt;}
.y7b{bottom:886.853333pt;}
.y31{bottom:894.853333pt;}
.yc{bottom:899.173333pt;}
.y9c{bottom:905.253333pt;}
.y30{bottom:913.253333pt;}
.yb{bottom:925.573333pt;}
.y2f{bottom:931.653333pt;}
.y2e{bottom:950.053333pt;}
.ya{bottom:951.973333pt;}
.y2d{bottom:968.453333pt;}
.y9{bottom:970.373333pt;}
.ybe{bottom:976.453333pt;}
.y2c{bottom:986.853333pt;}
.ybd{bottom:994.853333pt;}
.y6{bottom:997.253333pt;}
.y2b{bottom:1013.280000pt;}
.y1{bottom:1015.200000pt;}
.y29{bottom:1061.760000pt;}
.h7{height:33.918750pt;}
.hc{height:45.937500pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.h8{height:52.134375pt;}
.hb{height:52.478750pt;}
.ha{height:53.535000pt;}
.h5{height:58.563750pt;}
.h2{height:60.160000pt;}
.hd{height:62.812500pt;}
.h6{height:64.500000pt;}
.he{height:66.404375pt;}
.hf{height:66.564375pt;}
.h9{height:337.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.040000pt;}
.w3{width:66.400000pt;}
.w8{width:186.266667pt;}
.w4{width:198.746667pt;}
.w2{width:301.826667pt;}
.w6{width:376.866667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x4{left:59.200000pt;}
.xe{left:94.431988pt;}
.x1{left:113.472000pt;}
.x8{left:119.711988pt;}
.x10{left:132.191988pt;}
.x6{left:181.160000pt;}
.xb{left:313.186655pt;}
.xf{left:362.466655pt;}
.x9{left:364.226655pt;}
.x7{left:385.826655pt;}
.xa{left:396.866655pt;}
.x3{left:415.293333pt;}
.x5{left:481.693333pt;}
.xc{left:490.333333pt;}
.xd{left:505.373333pt;}
}




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