
    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_91dd83a2c3b5378425708271.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4cff2158440cd8ea63bb0dc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.150000;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_bed00887a93d8368ba25cb07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.198000;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;}
.m8{transform:matrix(0.219291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219291,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.221617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221617,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.223918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223918,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.224858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224858,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.228249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228249,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244158,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-24.000000px;}
.ws5{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-7.500000px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-9.407400px;}
._23{margin-left:-8.324400px;}
._6{margin-left:-7.241400px;}
._3{margin-left:-6.192000px;}
._2{margin-left:-4.848000px;}
._1{margin-left:-3.264000px;}
._0{margin-left:-1.584000px;}
._5{width:1.189200px;}
._7{width:3.072600px;}
._4{width:5.022000px;}
._8{width:6.030000px;}
._d{width:7.693200px;}
._c{width:9.106200px;}
._9{width:10.513800px;}
._11{width:11.724000px;}
._10{width:15.332400px;}
._a{width:16.723800px;}
._f{width:18.516600px;}
._16{width:20.079000px;}
._b{width:21.427200px;}
._1a{width:23.097600px;}
._e{width:24.193800px;}
._22{width:25.228800px;}
._13{width:26.244000px;}
._12{width:27.739800px;}
._15{width:29.369400px;}
._17{width:30.434400px;}
._18{width:32.394600px;}
._19{width:33.798600px;}
._1c{width:34.977600px;}
._1b{width:36.327600px;}
._24{width:37.629600px;}
._20{width:38.696400px;}
._14{width:39.906000px;}
._21{width:41.904000px;}
._1e{width:46.909800px;}
._1f{width:48.427200px;}
.fc1{color:rgb(0,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:81.900000px;}
.y7e{bottom:87.000000px;}
.yf3{bottom:89.220000px;}
.yaf{bottom:90.240000px;}
.y112{bottom:95.100000px;}
.y42{bottom:102.300000px;}
.y7d{bottom:103.200000px;}
.yf2{bottom:105.420000px;}
.yae{bottom:106.440000px;}
.y111{bottom:111.300000px;}
.y7c{bottom:119.400000px;}
.yf1{bottom:121.620000px;}
.yad{bottom:122.640000px;}
.y10c{bottom:127.500000px;}
.y7b{bottom:135.600000px;}
.yf0{bottom:137.820000px;}
.yac{bottom:138.840000px;}
.y10b{bottom:143.700000px;}
.y41{bottom:144.300000px;}
.y7a{bottom:151.800000px;}
.y34{bottom:152.400000px;}
.yef{bottom:154.020000px;}
.yab{bottom:155.040000px;}
.y10a{bottom:159.900000px;}
.y40{bottom:160.500000px;}
.y79{bottom:168.000000px;}
.y33{bottom:168.600000px;}
.yaa{bottom:171.240000px;}
.y109{bottom:176.100000px;}
.y3f{bottom:176.700000px;}
.yee{bottom:178.320000px;}
.y78{bottom:184.200000px;}
.y32{bottom:184.800000px;}
.ya9{bottom:187.440000px;}
.y108{bottom:192.300000px;}
.y3e{bottom:192.900000px;}
.yed{bottom:194.520000px;}
.y77{bottom:200.400000px;}
.y31{bottom:201.000000px;}
.ya8{bottom:203.640000px;}
.y107{bottom:208.500000px;}
.y3d{bottom:209.100000px;}
.yec{bottom:210.720000px;}
.y30{bottom:217.200000px;}
.ya7{bottom:219.840000px;}
.y76{bottom:224.700000px;}
.y3c{bottom:225.300000px;}
.yeb{bottom:226.920000px;}
.y106{bottom:232.800000px;}
.y2f{bottom:233.400000px;}
.ya6{bottom:236.040000px;}
.y75{bottom:240.900000px;}
.y3b{bottom:241.500000px;}
.yea{bottom:243.120000px;}
.y105{bottom:249.000000px;}
.y2e{bottom:249.600000px;}
.ya5{bottom:252.240000px;}
.y74{bottom:257.100000px;}
.y3a{bottom:257.700000px;}
.yb4{bottom:260.340000px;}
.y104{bottom:265.200000px;}
.y2d{bottom:265.800000px;}
.ye9{bottom:267.420000px;}
.ya4{bottom:268.440000px;}
.y73{bottom:273.300000px;}
.y39{bottom:273.900000px;}
.yb3{bottom:276.540000px;}
.y103{bottom:281.400000px;}
.y2c{bottom:282.000000px;}
.ye8{bottom:283.620000px;}
.ya3{bottom:284.640000px;}
.y72{bottom:289.500000px;}
.y38{bottom:290.100000px;}
.yb2{bottom:292.740000px;}
.y102{bottom:297.600000px;}
.ye7{bottom:299.820000px;}
.y71{bottom:305.700000px;}
.y2b{bottom:306.300000px;}
.ya2{bottom:308.940000px;}
.y101{bottom:313.800000px;}
.y70{bottom:321.900000px;}
.y2a{bottom:322.500000px;}
.ye6{bottom:324.120000px;}
.ya1{bottom:325.140000px;}
.y110{bottom:330.000000px;}
.y6f{bottom:338.100000px;}
.y29{bottom:338.700000px;}
.ye5{bottom:340.320000px;}
.ya0{bottom:341.340000px;}
.y6e{bottom:354.300000px;}
.y28{bottom:354.900000px;}
.ye4{bottom:356.520000px;}
.y9f{bottom:357.540000px;}
.y6d{bottom:370.500000px;}
.y27{bottom:371.100000px;}
.y9e{bottom:373.740000px;}
.ye3{bottom:380.820000px;}
.y6c{bottom:386.700000px;}
.y26{bottom:387.300000px;}
.y9d{bottom:389.940000px;}
.ye2{bottom:397.020000px;}
.y6b{bottom:402.900000px;}
.y25{bottom:403.500000px;}
.y9c{bottom:406.140000px;}
.y115{bottom:411.000000px;}
.ye1{bottom:413.220000px;}
.y6a{bottom:419.100000px;}
.y37{bottom:419.700000px;}
.y9b{bottom:422.340000px;}
.y100{bottom:427.200000px;}
.y24{bottom:427.800000px;}
.ye0{bottom:429.420000px;}
.y69{bottom:435.300000px;}
.y36{bottom:435.900000px;}
.y9a{bottom:438.540000px;}
.yff{bottom:443.400000px;}
.y23{bottom:444.000000px;}
.ydf{bottom:445.620000px;}
.y68{bottom:451.500000px;}
.y35{bottom:452.100000px;}
.y99{bottom:454.740000px;}
.yfe{bottom:459.600000px;}
.y22{bottom:460.200000px;}
.yde{bottom:461.820000px;}
.yb1{bottom:462.840000px;}
.y67{bottom:467.700000px;}
.y98{bottom:470.940000px;}
.yfd{bottom:475.800000px;}
.y21{bottom:476.400000px;}
.yb0{bottom:479.040000px;}
.y66{bottom:483.900000px;}
.ydd{bottom:486.120000px;}
.yc7{bottom:487.140000px;}
.y20{bottom:492.600000px;}
.y97{bottom:495.240000px;}
.y65{bottom:500.100000px;}
.ydc{bottom:502.320000px;}
.yc6{bottom:503.340000px;}
.y1f{bottom:508.800000px;}
.y96{bottom:511.440000px;}
.y64{bottom:516.300000px;}
.ydb{bottom:518.520000px;}
.yc5{bottom:519.540000px;}
.y1e{bottom:525.000000px;}
.y95{bottom:527.640000px;}
.y63{bottom:532.500000px;}
.yda{bottom:534.720000px;}
.yc4{bottom:535.740000px;}
.y1d{bottom:541.200000px;}
.y94{bottom:543.840000px;}
.y62{bottom:548.700000px;}
.yc3{bottom:551.940000px;}
.y10f{bottom:556.800000px;}
.y1c{bottom:557.400000px;}
.yd9{bottom:559.020000px;}
.y93{bottom:560.040000px;}
.y61{bottom:564.900000px;}
.yc2{bottom:568.140000px;}
.yfc{bottom:573.000000px;}
.y1b{bottom:573.600000px;}
.yd8{bottom:575.220000px;}
.y92{bottom:576.240000px;}
.y60{bottom:581.100000px;}
.yc1{bottom:584.340000px;}
.yfb{bottom:589.200000px;}
.yd7{bottom:591.420000px;}
.y91{bottom:592.440000px;}
.y5f{bottom:597.300000px;}
.yc0{bottom:600.540000px;}
.yfa{bottom:605.400000px;}
.yd6{bottom:607.620000px;}
.y90{bottom:608.640000px;}
.ybf{bottom:616.740000px;}
.y1a{bottom:619.500000px;}
.y5e{bottom:621.600000px;}
.yd5{bottom:623.820000px;}
.y8f{bottom:624.840000px;}
.y19{bottom:635.700000px;}
.y5d{bottom:637.800000px;}
.y8e{bottom:641.040000px;}
.ybe{bottom:645.900000px;}
.y5c{bottom:654.000000px;}
.y8d{bottom:657.240000px;}
.y18{bottom:660.000000px;}
.ybd{bottom:662.100000px;}
.yd4{bottom:668.580000px;}
.y5b{bottom:670.200000px;}
.y8c{bottom:673.440000px;}
.y17{bottom:676.200000px;}
.ybc{bottom:678.300000px;}
.yd3{bottom:684.780000px;}
.y5a{bottom:686.400000px;}
.y8b{bottom:689.640000px;}
.y16{bottom:692.400000px;}
.ybb{bottom:694.500000px;}
.yd2{bottom:700.980000px;}
.y59{bottom:702.600000px;}
.y8a{bottom:705.840000px;}
.y15{bottom:708.600000px;}
.yba{bottom:710.700000px;}
.yd1{bottom:717.180000px;}
.y58{bottom:718.800000px;}
.y89{bottom:722.040000px;}
.y14{bottom:724.800000px;}
.yb9{bottom:726.900000px;}
.yd0{bottom:733.380000px;}
.y57{bottom:735.000000px;}
.y88{bottom:738.240000px;}
.y13{bottom:741.000000px;}
.yb8{bottom:743.100000px;}
.ycf{bottom:749.580000px;}
.y56{bottom:751.200000px;}
.y87{bottom:754.440000px;}
.y12{bottom:757.200000px;}
.yb7{bottom:759.300000px;}
.yce{bottom:765.780000px;}
.y55{bottom:767.400000px;}
.y86{bottom:770.640000px;}
.y11{bottom:773.400000px;}
.yb6{bottom:775.500000px;}
.ycd{bottom:781.980000px;}
.y54{bottom:783.600000px;}
.y85{bottom:786.840000px;}
.y10{bottom:789.600000px;}
.yb5{bottom:791.700000px;}
.ycc{bottom:798.180000px;}
.y53{bottom:799.800000px;}
.y84{bottom:803.040000px;}
.yf{bottom:805.800000px;}
.yf9{bottom:807.900000px;}
.y52{bottom:816.000000px;}
.y83{bottom:819.240000px;}
.ye{bottom:822.000000px;}
.ycb{bottom:822.480000px;}
.yf8{bottom:824.100000px;}
.y51{bottom:832.200000px;}
.y82{bottom:835.440000px;}
.yd{bottom:838.200000px;}
.y114{bottom:840.300000px;}
.y50{bottom:848.400000px;}
.y81{bottom:851.640000px;}
.yc{bottom:854.400000px;}
.y4f{bottom:864.600000px;}
.y80{bottom:867.840000px;}
.yb{bottom:870.600000px;}
.y4e{bottom:880.800000px;}
.yca{bottom:881.880000px;}
.y7f{bottom:884.040000px;}
.ya{bottom:886.800000px;}
.y4d{bottom:897.000000px;}
.yc9{bottom:899.880000px;}
.y9{bottom:903.000000px;}
.yf7{bottom:905.100000px;}
.y4c{bottom:913.200000px;}
.yc8{bottom:917.880000px;}
.y8{bottom:919.200000px;}
.yf6{bottom:921.300000px;}
.y4b{bottom:929.400000px;}
.yf5{bottom:937.500000px;}
.y4a{bottom:945.600000px;}
.yf4{bottom:953.700000px;}
.y49{bottom:961.800000px;}
.y7{bottom:962.100000px;}
.y10e{bottom:969.900000px;}
.y48{bottom:978.000000px;}
.y10d{bottom:986.100000px;}
.y6{bottom:986.400000px;}
.y47{bottom:994.200000px;}
.y113{bottom:1002.300000px;}
.y46{bottom:1010.400000px;}
.y5{bottom:1015.200000px;}
.y45{bottom:1026.600000px;}
.y44{bottom:1042.800000px;}
.y4{bottom:1044.000000px;}
.y3{bottom:1105.800000px;}
.y2{bottom:1120.200000px;}
.y1{bottom:1134.600000px;}
.h7{height:27.480000px;}
.h1{height:43.968000px;}
.h9{height:45.936000px;}
.h5{height:48.816000px;}
.h2{height:49.464000px;}
.h8{height:51.480000px;}
.h6{height:51.678000px;}
.ha{height:54.960000px;}
.h4{height:56.544000px;}
.h3{height:91.872000px;}
.h0{height:1186.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:81.000000px;}
.x2{left:472.500000px;}
.x4{left:580.140000px;}
.x3{left:685.992000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-21.333333pt;}
.ws5{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-6.666667pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-8.362133pt;}
._23{margin-left:-7.399467pt;}
._6{margin-left:-6.436800pt;}
._3{margin-left:-5.504000pt;}
._2{margin-left:-4.309333pt;}
._1{margin-left:-2.901333pt;}
._0{margin-left:-1.408000pt;}
._5{width:1.057067pt;}
._7{width:2.731200pt;}
._4{width:4.464000pt;}
._8{width:5.360000pt;}
._d{width:6.838400pt;}
._c{width:8.094400pt;}
._9{width:9.345600pt;}
._11{width:10.421333pt;}
._10{width:13.628800pt;}
._a{width:14.865600pt;}
._f{width:16.459200pt;}
._16{width:17.848000pt;}
._b{width:19.046400pt;}
._1a{width:20.531200pt;}
._e{width:21.505600pt;}
._22{width:22.425600pt;}
._13{width:23.328000pt;}
._12{width:24.657600pt;}
._15{width:26.106133pt;}
._17{width:27.052800pt;}
._18{width:28.795200pt;}
._19{width:30.043200pt;}
._1c{width:31.091200pt;}
._1b{width:32.291200pt;}
._24{width:33.448533pt;}
._20{width:34.396800pt;}
._14{width:35.472000pt;}
._21{width:37.248000pt;}
._1e{width:41.697600pt;}
._1f{width:43.046400pt;}
.fs4{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:72.800000pt;}
.y7e{bottom:77.333333pt;}
.yf3{bottom:79.306667pt;}
.yaf{bottom:80.213333pt;}
.y112{bottom:84.533333pt;}
.y42{bottom:90.933333pt;}
.y7d{bottom:91.733333pt;}
.yf2{bottom:93.706667pt;}
.yae{bottom:94.613333pt;}
.y111{bottom:98.933333pt;}
.y7c{bottom:106.133333pt;}
.yf1{bottom:108.106667pt;}
.yad{bottom:109.013333pt;}
.y10c{bottom:113.333333pt;}
.y7b{bottom:120.533333pt;}
.yf0{bottom:122.506667pt;}
.yac{bottom:123.413333pt;}
.y10b{bottom:127.733333pt;}
.y41{bottom:128.266667pt;}
.y7a{bottom:134.933333pt;}
.y34{bottom:135.466667pt;}
.yef{bottom:136.906667pt;}
.yab{bottom:137.813333pt;}
.y10a{bottom:142.133333pt;}
.y40{bottom:142.666667pt;}
.y79{bottom:149.333333pt;}
.y33{bottom:149.866667pt;}
.yaa{bottom:152.213333pt;}
.y109{bottom:156.533333pt;}
.y3f{bottom:157.066667pt;}
.yee{bottom:158.506667pt;}
.y78{bottom:163.733333pt;}
.y32{bottom:164.266667pt;}
.ya9{bottom:166.613333pt;}
.y108{bottom:170.933333pt;}
.y3e{bottom:171.466667pt;}
.yed{bottom:172.906667pt;}
.y77{bottom:178.133333pt;}
.y31{bottom:178.666667pt;}
.ya8{bottom:181.013333pt;}
.y107{bottom:185.333333pt;}
.y3d{bottom:185.866667pt;}
.yec{bottom:187.306667pt;}
.y30{bottom:193.066667pt;}
.ya7{bottom:195.413333pt;}
.y76{bottom:199.733333pt;}
.y3c{bottom:200.266667pt;}
.yeb{bottom:201.706667pt;}
.y106{bottom:206.933333pt;}
.y2f{bottom:207.466667pt;}
.ya6{bottom:209.813333pt;}
.y75{bottom:214.133333pt;}
.y3b{bottom:214.666667pt;}
.yea{bottom:216.106667pt;}
.y105{bottom:221.333333pt;}
.y2e{bottom:221.866667pt;}
.ya5{bottom:224.213333pt;}
.y74{bottom:228.533333pt;}
.y3a{bottom:229.066667pt;}
.yb4{bottom:231.413333pt;}
.y104{bottom:235.733333pt;}
.y2d{bottom:236.266667pt;}
.ye9{bottom:237.706667pt;}
.ya4{bottom:238.613333pt;}
.y73{bottom:242.933333pt;}
.y39{bottom:243.466667pt;}
.yb3{bottom:245.813333pt;}
.y103{bottom:250.133333pt;}
.y2c{bottom:250.666667pt;}
.ye8{bottom:252.106667pt;}
.ya3{bottom:253.013333pt;}
.y72{bottom:257.333333pt;}
.y38{bottom:257.866667pt;}
.yb2{bottom:260.213333pt;}
.y102{bottom:264.533333pt;}
.ye7{bottom:266.506667pt;}
.y71{bottom:271.733333pt;}
.y2b{bottom:272.266667pt;}
.ya2{bottom:274.613333pt;}
.y101{bottom:278.933333pt;}
.y70{bottom:286.133333pt;}
.y2a{bottom:286.666667pt;}
.ye6{bottom:288.106667pt;}
.ya1{bottom:289.013333pt;}
.y110{bottom:293.333333pt;}
.y6f{bottom:300.533333pt;}
.y29{bottom:301.066667pt;}
.ye5{bottom:302.506667pt;}
.ya0{bottom:303.413333pt;}
.y6e{bottom:314.933333pt;}
.y28{bottom:315.466667pt;}
.ye4{bottom:316.906667pt;}
.y9f{bottom:317.813333pt;}
.y6d{bottom:329.333333pt;}
.y27{bottom:329.866667pt;}
.y9e{bottom:332.213333pt;}
.ye3{bottom:338.506667pt;}
.y6c{bottom:343.733333pt;}
.y26{bottom:344.266667pt;}
.y9d{bottom:346.613333pt;}
.ye2{bottom:352.906667pt;}
.y6b{bottom:358.133333pt;}
.y25{bottom:358.666667pt;}
.y9c{bottom:361.013333pt;}
.y115{bottom:365.333333pt;}
.ye1{bottom:367.306667pt;}
.y6a{bottom:372.533333pt;}
.y37{bottom:373.066667pt;}
.y9b{bottom:375.413333pt;}
.y100{bottom:379.733333pt;}
.y24{bottom:380.266667pt;}
.ye0{bottom:381.706667pt;}
.y69{bottom:386.933333pt;}
.y36{bottom:387.466667pt;}
.y9a{bottom:389.813333pt;}
.yff{bottom:394.133333pt;}
.y23{bottom:394.666667pt;}
.ydf{bottom:396.106667pt;}
.y68{bottom:401.333333pt;}
.y35{bottom:401.866667pt;}
.y99{bottom:404.213333pt;}
.yfe{bottom:408.533333pt;}
.y22{bottom:409.066667pt;}
.yde{bottom:410.506667pt;}
.yb1{bottom:411.413333pt;}
.y67{bottom:415.733333pt;}
.y98{bottom:418.613333pt;}
.yfd{bottom:422.933333pt;}
.y21{bottom:423.466667pt;}
.yb0{bottom:425.813333pt;}
.y66{bottom:430.133333pt;}
.ydd{bottom:432.106667pt;}
.yc7{bottom:433.013333pt;}
.y20{bottom:437.866667pt;}
.y97{bottom:440.213333pt;}
.y65{bottom:444.533333pt;}
.ydc{bottom:446.506667pt;}
.yc6{bottom:447.413333pt;}
.y1f{bottom:452.266667pt;}
.y96{bottom:454.613333pt;}
.y64{bottom:458.933333pt;}
.ydb{bottom:460.906667pt;}
.yc5{bottom:461.813333pt;}
.y1e{bottom:466.666667pt;}
.y95{bottom:469.013333pt;}
.y63{bottom:473.333333pt;}
.yda{bottom:475.306667pt;}
.yc4{bottom:476.213333pt;}
.y1d{bottom:481.066667pt;}
.y94{bottom:483.413333pt;}
.y62{bottom:487.733333pt;}
.yc3{bottom:490.613333pt;}
.y10f{bottom:494.933333pt;}
.y1c{bottom:495.466667pt;}
.yd9{bottom:496.906667pt;}
.y93{bottom:497.813333pt;}
.y61{bottom:502.133333pt;}
.yc2{bottom:505.013333pt;}
.yfc{bottom:509.333333pt;}
.y1b{bottom:509.866667pt;}
.yd8{bottom:511.306667pt;}
.y92{bottom:512.213333pt;}
.y60{bottom:516.533333pt;}
.yc1{bottom:519.413333pt;}
.yfb{bottom:523.733333pt;}
.yd7{bottom:525.706667pt;}
.y91{bottom:526.613333pt;}
.y5f{bottom:530.933333pt;}
.yc0{bottom:533.813333pt;}
.yfa{bottom:538.133333pt;}
.yd6{bottom:540.106667pt;}
.y90{bottom:541.013333pt;}
.ybf{bottom:548.213333pt;}
.y1a{bottom:550.666667pt;}
.y5e{bottom:552.533333pt;}
.yd5{bottom:554.506667pt;}
.y8f{bottom:555.413333pt;}
.y19{bottom:565.066667pt;}
.y5d{bottom:566.933333pt;}
.y8e{bottom:569.813333pt;}
.ybe{bottom:574.133333pt;}
.y5c{bottom:581.333333pt;}
.y8d{bottom:584.213333pt;}
.y18{bottom:586.666667pt;}
.ybd{bottom:588.533333pt;}
.yd4{bottom:594.293333pt;}
.y5b{bottom:595.733333pt;}
.y8c{bottom:598.613333pt;}
.y17{bottom:601.066667pt;}
.ybc{bottom:602.933333pt;}
.yd3{bottom:608.693333pt;}
.y5a{bottom:610.133333pt;}
.y8b{bottom:613.013333pt;}
.y16{bottom:615.466667pt;}
.ybb{bottom:617.333333pt;}
.yd2{bottom:623.093333pt;}
.y59{bottom:624.533333pt;}
.y8a{bottom:627.413333pt;}
.y15{bottom:629.866667pt;}
.yba{bottom:631.733333pt;}
.yd1{bottom:637.493333pt;}
.y58{bottom:638.933333pt;}
.y89{bottom:641.813333pt;}
.y14{bottom:644.266667pt;}
.yb9{bottom:646.133333pt;}
.yd0{bottom:651.893333pt;}
.y57{bottom:653.333333pt;}
.y88{bottom:656.213333pt;}
.y13{bottom:658.666667pt;}
.yb8{bottom:660.533333pt;}
.ycf{bottom:666.293333pt;}
.y56{bottom:667.733333pt;}
.y87{bottom:670.613333pt;}
.y12{bottom:673.066667pt;}
.yb7{bottom:674.933333pt;}
.yce{bottom:680.693333pt;}
.y55{bottom:682.133333pt;}
.y86{bottom:685.013333pt;}
.y11{bottom:687.466667pt;}
.yb6{bottom:689.333333pt;}
.ycd{bottom:695.093333pt;}
.y54{bottom:696.533333pt;}
.y85{bottom:699.413333pt;}
.y10{bottom:701.866667pt;}
.yb5{bottom:703.733333pt;}
.ycc{bottom:709.493333pt;}
.y53{bottom:710.933333pt;}
.y84{bottom:713.813333pt;}
.yf{bottom:716.266667pt;}
.yf9{bottom:718.133333pt;}
.y52{bottom:725.333333pt;}
.y83{bottom:728.213333pt;}
.ye{bottom:730.666667pt;}
.ycb{bottom:731.093333pt;}
.yf8{bottom:732.533333pt;}
.y51{bottom:739.733333pt;}
.y82{bottom:742.613333pt;}
.yd{bottom:745.066667pt;}
.y114{bottom:746.933333pt;}
.y50{bottom:754.133333pt;}
.y81{bottom:757.013333pt;}
.yc{bottom:759.466667pt;}
.y4f{bottom:768.533333pt;}
.y80{bottom:771.413333pt;}
.yb{bottom:773.866667pt;}
.y4e{bottom:782.933333pt;}
.yca{bottom:783.893333pt;}
.y7f{bottom:785.813333pt;}
.ya{bottom:788.266667pt;}
.y4d{bottom:797.333333pt;}
.yc9{bottom:799.893333pt;}
.y9{bottom:802.666667pt;}
.yf7{bottom:804.533333pt;}
.y4c{bottom:811.733333pt;}
.yc8{bottom:815.893333pt;}
.y8{bottom:817.066667pt;}
.yf6{bottom:818.933333pt;}
.y4b{bottom:826.133333pt;}
.yf5{bottom:833.333333pt;}
.y4a{bottom:840.533333pt;}
.yf4{bottom:847.733333pt;}
.y49{bottom:854.933333pt;}
.y7{bottom:855.200000pt;}
.y10e{bottom:862.133333pt;}
.y48{bottom:869.333333pt;}
.y10d{bottom:876.533333pt;}
.y6{bottom:876.800000pt;}
.y47{bottom:883.733333pt;}
.y113{bottom:890.933333pt;}
.y46{bottom:898.133333pt;}
.y5{bottom:902.400000pt;}
.y45{bottom:912.533333pt;}
.y44{bottom:926.933333pt;}
.y4{bottom:928.000000pt;}
.y3{bottom:982.933333pt;}
.y2{bottom:995.733333pt;}
.y1{bottom:1008.533333pt;}
.h7{height:24.426667pt;}
.h1{height:39.082667pt;}
.h9{height:40.832000pt;}
.h5{height:43.392000pt;}
.h2{height:43.968000pt;}
.h8{height:45.760000pt;}
.h6{height:45.936000pt;}
.ha{height:48.853333pt;}
.h4{height:50.261333pt;}
.h3{height:81.664000pt;}
.h0{height:1054.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.000000pt;}
.x2{left:420.000000pt;}
.x4{left:515.680000pt;}
.x3{left:609.770667pt;}
}




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