
    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_6af114cb0d3ec7b89a5aaca8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_de942ad0f0c0e113ccebda4e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_43db2661618736ce71d9c85a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_045960cd9db997e734ad949f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_3153a4d9e7a08cca93535b8b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_3d4a9d922eb2ce557c94341c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_3e5831e447db55eb5e9bbfc4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.078000px;}
.ls17{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.348000px;}
.ls5{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.440000px;}
.ls15{letter-spacing:4.200000px;}
.lsc{letter-spacing:5.100000px;}
.lse{letter-spacing:6.240000px;}
.lsd{letter-spacing:6.300000px;}
.ls12{letter-spacing:14.700000px;}
.ls16{letter-spacing:15.720000px;}
.ls11{letter-spacing:15.900000px;}
.lsf{letter-spacing:18.330000px;}
.ls14{letter-spacing:45.720000px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws7{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.204000px;}
.ws3{word-spacing:-15.000000px;}
.ws6{word-spacing:-12.900000px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-2.490000px;}
._1{margin-left:-1.200000px;}
._0{width:1.056000px;}
._8{width:2.754000px;}
._1c{width:3.858000px;}
._14{width:4.896000px;}
._13{width:6.204000px;}
._11{width:7.260000px;}
._1b{width:8.520000px;}
._12{width:9.948000px;}
._16{width:11.232000px;}
._15{width:12.288000px;}
._f{width:14.004000px;}
._10{width:15.132000px;}
._e{width:17.634000px;}
._7{width:19.470000px;}
._6{width:20.700000px;}
._c{width:22.704000px;}
._d{width:24.630000px;}
._1a{width:26.280000px;}
._18{width:28.314000px;}
._19{width:30.252000px;}
._9{width:32.142000px;}
._a{width:33.210000px;}
._b{width:34.464000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1208.820000px;}
.fc3{color:transparent;}
.fc4{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fsa{font-size:6.000000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y33{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y31{bottom:111.937500px;}
.ycc{bottom:112.237500px;}
.y51{bottom:113.137500px;}
.y6e{bottom:113.737500px;}
.y85{bottom:123.037500px;}
.y30{bottom:129.337500px;}
.ycb{bottom:129.637500px;}
.y50{bottom:130.537500px;}
.y9f{bottom:136.237500px;}
.y6d{bottom:142.237500px;}
.y2f{bottom:146.437500px;}
.yca{bottom:146.737500px;}
.y4f{bottom:149.437500px;}
.y84{bottom:159.030000px;}
.yc9{bottom:164.130000px;}
.y9e{bottom:164.745000px;}
.y2e{bottom:165.330000px;}
.y6c{bottom:179.175000px;}
.yc8{bottom:181.275000px;}
.y4e{bottom:192.975000px;}
.y83{bottom:194.775000px;}
.yc7{bottom:198.675000px;}
.y9d{bottom:200.775000px;}
.y2d{bottom:209.175000px;}
.yc6{bottom:215.775000px;}
.y6b{bottom:216.075000px;}
.y9c{bottom:229.275000px;}
.y4d{bottom:229.875000px;}
.y82{bottom:230.775000px;}
.yc5{bottom:233.175000px;}
.y2c{bottom:246.075000px;}
.yc4{bottom:250.275000px;}
.y6a{bottom:252.975000px;}
.y9b{bottom:253.575000px;}
.y4c{bottom:266.775000px;}
.yc3{bottom:267.675000px;}
.y9a{bottom:271.875000px;}
.y2b{bottom:282.975000px;}
.yc2{bottom:284.775000px;}
.y69{bottom:289.575000px;}
.y99{bottom:290.775000px;}
.yc1{bottom:302.175000px;}
.y81{bottom:302.775000px;}
.y4b{bottom:303.675000px;}
.y98{bottom:309.675000px;}
.yc0{bottom:319.275000px;}
.y2a{bottom:319.575000px;}
.y68{bottom:326.475000px;}
.y97{bottom:328.875000px;}
.y80{bottom:331.275000px;}
.ybf{bottom:336.675000px;}
.y4a{bottom:340.275000px;}
.y7f{bottom:352.620000px;}
.ybe{bottom:353.820000px;}
.y29{bottom:356.505000px;}
.y67{bottom:363.420000px;}
.ybd{bottom:371.205000px;}
.y96{bottom:372.420000px;}
.y49{bottom:377.205000px;}
.y7e{bottom:378.105000px;}
.ybc{bottom:388.320000px;}
.y28{bottom:393.420000px;}
.y66{bottom:400.005000px;}
.y95{bottom:400.620000px;}
.ybb{bottom:405.705000px;}
.y7d{bottom:406.320000px;}
.y48{bottom:414.120000px;}
.yba{bottom:422.820000px;}
.y94{bottom:429.120000px;}
.y27{bottom:430.320000px;}
.y65{bottom:436.920000px;}
.yb9{bottom:440.205000px;}
.y7c{bottom:442.320000px;}
.y47{bottom:450.705000px;}
.yb8{bottom:457.320000px;}
.y93{bottom:457.620000px;}
.y26{bottom:466.920000px;}
.y7b{bottom:470.820000px;}
.y64{bottom:473.820000px;}
.yb7{bottom:474.705000px;}
.y46{bottom:487.620000px;}
.yb6{bottom:491.820000px;}
.y92{bottom:501.120000px;}
.y25{bottom:503.820000px;}
.y7a{bottom:506.820000px;}
.yb5{bottom:509.205000px;}
.y63{bottom:510.720000px;}
.y45{bottom:520.950000px;}
.y91{bottom:529.650000px;}
.y44{bottom:533.250000px;}
.yb4{bottom:534.450000px;}
.y79{bottom:535.350000px;}
.y24{bottom:543.750000px;}
.y62{bottom:547.350000px;}
.y78{bottom:553.950000px;}
.y90{bottom:558.150000px;}
.y61{bottom:568.050000px;}
.yb3{bottom:569.850000px;}
.y77{bottom:572.850000px;}
.y43{bottom:577.050000px;}
.yb2{bottom:588.750000px;}
.y23{bottom:590.550000px;}
.y8f{bottom:601.650000px;}
.yb1{bottom:607.650000px;}
.y60{bottom:611.850000px;}
.y42{bottom:613.950000px;}
.y76{bottom:616.650000px;}
.y8e{bottom:630.150000px;}
.y22{bottom:637.050000px;}
.yb0{bottom:643.650000px;}
.y5f{bottom:648.750000px;}
.y41{bottom:650.550000px;}
.y75{bottom:653.550000px;}
.y8d{bottom:658.350000px;}
.y21{bottom:663.150000px;}
.yaf{bottom:672.150000px;}
.y20{bottom:680.250000px;}
.y5e{bottom:685.695000px;}
.y8c{bottom:686.895000px;}
.y40{bottom:687.495000px;}
.y74{bottom:690.495000px;}
.y1f{bottom:697.695000px;}
.yae{bottom:700.695000px;}
.y1e{bottom:714.780000px;}
.y8b{bottom:715.380000px;}
.y5d{bottom:722.295000px;}
.y3f{bottom:724.395000px;}
.y73{bottom:727.080000px;}
.yad{bottom:729.195000px;}
.y1d{bottom:731.595000px;}
.y8a{bottom:743.880000px;}
.y1c{bottom:750.480000px;}
.yac{bottom:757.695000px;}
.y5c{bottom:759.195000px;}
.y3e{bottom:761.295000px;}
.y72{bottom:763.980000px;}
.y1b{bottom:767.895000px;}
.y89{bottom:772.380000px;}
.y1a{bottom:785.295000px;}
.yab{bottom:786.195000px;}
.y5b{bottom:796.080000px;}
.y3d{bottom:797.880000px;}
.y71{bottom:800.880000px;}
.y19{bottom:805.080000px;}
.y88{bottom:812.880000px;}
.yaa{bottom:814.380000px;}
.y18{bottom:822.795000px;}
.y5a{bottom:832.695000px;}
.y3c{bottom:834.795000px;}
.y70{bottom:837.795000px;}
.y17{bottom:839.880000px;}
.ya9{bottom:842.895000px;}
.y87{bottom:849.525000px;}
.y16{bottom:859.425000px;}
.y59{bottom:863.925000px;}
.ya8{bottom:871.425000px;}
.y3b{bottom:871.725000px;}
.y6f{bottom:872.025000px;}
.y15{bottom:877.425000px;}
.ydb{bottom:879.525000px;}
.y58{bottom:886.725000px;}
.yda{bottom:896.625000px;}
.ya7{bottom:899.925000px;}
.y14{bottom:902.025000px;}
.y3a{bottom:908.625000px;}
.yd9{bottom:917.025000px;}
.y57{bottom:923.625000px;}
.ya6{bottom:928.425000px;}
.y13{bottom:929.025000px;}
.yd8{bottom:934.125000px;}
.y39{bottom:945.225000px;}
.yd7{bottom:951.525000px;}
.ya5{bottom:956.925000px;}
.y12{bottom:959.625000px;}
.y56{bottom:960.225000px;}
.yd6{bottom:968.625000px;}
.y38{bottom:982.125000px;}
.ya4{bottom:985.425000px;}
.yd5{bottom:986.025000px;}
.y11{bottom:990.225000px;}
.y55{bottom:997.125000px;}
.yd4{bottom:1003.125000px;}
.ya3{bottom:1013.925000px;}
.y37{bottom:1019.070000px;}
.yd3{bottom:1020.570000px;}
.y10{bottom:1021.170000px;}
.y54{bottom:1034.070000px;}
.yd2{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.ya2{bottom:1054.170000px;}
.yd1{bottom:1055.070000px;}
.y36{bottom:1055.670000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y53{bottom:1070.670000px;}
.yd0{bottom:1072.170000px;}
.ya1{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.ycf{bottom:1089.570000px;}
.y35{bottom:1092.570000px;}
.y9{bottom:1097.955000px;}
.yce{bottom:1106.670000px;}
.y52{bottom:1107.570000px;}
.ya0{bottom:1111.170000px;}
.y8{bottom:1115.670000px;}
.ycd{bottom:1124.070000px;}
.y34{bottom:1132.455000px;}
.y7{bottom:1133.670000px;}
.y86{bottom:1139.670000px;}
.y6{bottom:1141.170000px;}
.y32{bottom:1196.400000px;}
.h13{height:5.252930px;}
.h9{height:10.505859px;}
.h5{height:15.433594px;}
.ha{height:21.000000px;}
.h12{height:26.264648px;}
.h3{height:36.000000px;}
.h7{height:41.156250px;}
.h10{height:45.377930px;}
.hd{height:46.300781px;}
.h8{height:47.276367px;}
.h4{height:51.445312px;}
.hc{height:52.529297px;}
.h11{height:55.461914px;}
.h14{height:56.589844px;}
.hf{height:57.782227px;}
.h6{height:61.734375px;}
.h15{height:63.035156px;}
.h1{height:65.645508px;}
.hb{height:72.023438px;}
.he{height:82.312500px;}
.h2{height:97.200000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:253.875000px;}
.w5{width:483.450000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xe{left:47.700000px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.x2a{left:108.037487px;}
.x9{left:153.629987px;}
.x10{left:183.374987px;}
.x14{left:204.074987px;}
.x11{left:230.474987px;}
.xc{left:241.582500px;}
.x29{left:274.574987px;}
.x15{left:284.474987px;}
.x1e{left:293.174987px;}
.x17{left:296.219987px;}
.x25{left:301.019987px;}
.xf{left:305.519987px;}
.x26{left:313.619987px;}
.x1a{left:316.319987px;}
.x16{left:318.719987px;}
.x18{left:320.519987px;}
.x21{left:324.404987px;}
.x1f{left:326.219987px;}
.x1b{left:327.404987px;}
.x19{left:332.219987px;}
.x23{left:334.019987px;}
.x22{left:335.819987px;}
.x20{left:340.619987px;}
.x24{left:346.619987px;}
.x13{left:361.019987px;}
.x28{left:392.519987px;}
.x6{left:393.719987px;}
.x27{left:395.819987px;}
.x1d{left:410.819987px;}
.x12{left:446.549987px;}
.xd{left:561.495000px;}
.x1c{left:594.479987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.069333pt;}
.ls17{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.309333pt;}
.ls5{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.640000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls15{letter-spacing:3.733333pt;}
.lsc{letter-spacing:4.533333pt;}
.lse{letter-spacing:5.546667pt;}
.lsd{letter-spacing:5.600000pt;}
.ls12{letter-spacing:13.066667pt;}
.ls16{letter-spacing:13.973333pt;}
.ls11{letter-spacing:14.133333pt;}
.lsf{letter-spacing:16.293333pt;}
.ls14{letter-spacing:40.640000pt;}
.ws2{word-spacing:-18.666667pt;}
.ws1{word-spacing:-16.341333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws6{word-spacing:-11.466667pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-2.213333pt;}
._1{margin-left:-1.066667pt;}
._0{width:0.938667pt;}
._8{width:2.448000pt;}
._1c{width:3.429333pt;}
._14{width:4.352000pt;}
._13{width:5.514667pt;}
._11{width:6.453333pt;}
._1b{width:7.573333pt;}
._12{width:8.842667pt;}
._16{width:9.984000pt;}
._15{width:10.922667pt;}
._f{width:12.448000pt;}
._10{width:13.450667pt;}
._e{width:15.674667pt;}
._7{width:17.306667pt;}
._6{width:18.400000pt;}
._c{width:20.181333pt;}
._d{width:21.893333pt;}
._1a{width:23.360000pt;}
._18{width:25.168000pt;}
._19{width:26.890667pt;}
._9{width:28.570667pt;}
._a{width:29.520000pt;}
._b{width:30.634667pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1074.506667pt;}
.fsa{font-size:5.333333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.666667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y33{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y31{bottom:99.500000pt;}
.ycc{bottom:99.766667pt;}
.y51{bottom:100.566667pt;}
.y6e{bottom:101.100000pt;}
.y85{bottom:109.366667pt;}
.y30{bottom:114.966667pt;}
.ycb{bottom:115.233333pt;}
.y50{bottom:116.033333pt;}
.y9f{bottom:121.100000pt;}
.y6d{bottom:126.433333pt;}
.y2f{bottom:130.166667pt;}
.yca{bottom:130.433333pt;}
.y4f{bottom:132.833333pt;}
.y84{bottom:141.360000pt;}
.yc9{bottom:145.893333pt;}
.y9e{bottom:146.440000pt;}
.y2e{bottom:146.960000pt;}
.y6c{bottom:159.266667pt;}
.yc8{bottom:161.133333pt;}
.y4e{bottom:171.533333pt;}
.y83{bottom:173.133333pt;}
.yc7{bottom:176.600000pt;}
.y9d{bottom:178.466667pt;}
.y2d{bottom:185.933333pt;}
.yc6{bottom:191.800000pt;}
.y6b{bottom:192.066667pt;}
.y9c{bottom:203.800000pt;}
.y4d{bottom:204.333333pt;}
.y82{bottom:205.133333pt;}
.yc5{bottom:207.266667pt;}
.y2c{bottom:218.733333pt;}
.yc4{bottom:222.466667pt;}
.y6a{bottom:224.866667pt;}
.y9b{bottom:225.400000pt;}
.y4c{bottom:237.133333pt;}
.yc3{bottom:237.933333pt;}
.y9a{bottom:241.666667pt;}
.y2b{bottom:251.533333pt;}
.yc2{bottom:253.133333pt;}
.y69{bottom:257.400000pt;}
.y99{bottom:258.466667pt;}
.yc1{bottom:268.600000pt;}
.y81{bottom:269.133333pt;}
.y4b{bottom:269.933333pt;}
.y98{bottom:275.266667pt;}
.yc0{bottom:283.800000pt;}
.y2a{bottom:284.066667pt;}
.y68{bottom:290.200000pt;}
.y97{bottom:292.333333pt;}
.y80{bottom:294.466667pt;}
.ybf{bottom:299.266667pt;}
.y4a{bottom:302.466667pt;}
.y7f{bottom:313.440000pt;}
.ybe{bottom:314.506667pt;}
.y29{bottom:316.893333pt;}
.y67{bottom:323.040000pt;}
.ybd{bottom:329.960000pt;}
.y96{bottom:331.040000pt;}
.y49{bottom:335.293333pt;}
.y7e{bottom:336.093333pt;}
.ybc{bottom:345.173333pt;}
.y28{bottom:349.706667pt;}
.y66{bottom:355.560000pt;}
.y95{bottom:356.106667pt;}
.ybb{bottom:360.626667pt;}
.y7d{bottom:361.173333pt;}
.y48{bottom:368.106667pt;}
.yba{bottom:375.840000pt;}
.y94{bottom:381.440000pt;}
.y27{bottom:382.506667pt;}
.y65{bottom:388.373333pt;}
.yb9{bottom:391.293333pt;}
.y7c{bottom:393.173333pt;}
.y47{bottom:400.626667pt;}
.yb8{bottom:406.506667pt;}
.y93{bottom:406.773333pt;}
.y26{bottom:415.040000pt;}
.y7b{bottom:418.506667pt;}
.y64{bottom:421.173333pt;}
.yb7{bottom:421.960000pt;}
.y46{bottom:433.440000pt;}
.yb6{bottom:437.173333pt;}
.y92{bottom:445.440000pt;}
.y25{bottom:447.840000pt;}
.y7a{bottom:450.506667pt;}
.yb5{bottom:452.626667pt;}
.y63{bottom:453.973333pt;}
.y45{bottom:463.066667pt;}
.y91{bottom:470.800000pt;}
.y44{bottom:474.000000pt;}
.yb4{bottom:475.066667pt;}
.y79{bottom:475.866667pt;}
.y24{bottom:483.333333pt;}
.y62{bottom:486.533333pt;}
.y78{bottom:492.400000pt;}
.y90{bottom:496.133333pt;}
.y61{bottom:504.933333pt;}
.yb3{bottom:506.533333pt;}
.y77{bottom:509.200000pt;}
.y43{bottom:512.933333pt;}
.yb2{bottom:523.333333pt;}
.y23{bottom:524.933333pt;}
.y8f{bottom:534.800000pt;}
.yb1{bottom:540.133333pt;}
.y60{bottom:543.866667pt;}
.y42{bottom:545.733333pt;}
.y76{bottom:548.133333pt;}
.y8e{bottom:560.133333pt;}
.y22{bottom:566.266667pt;}
.yb0{bottom:572.133333pt;}
.y5f{bottom:576.666667pt;}
.y41{bottom:578.266667pt;}
.y75{bottom:580.933333pt;}
.y8d{bottom:585.200000pt;}
.y21{bottom:589.466667pt;}
.yaf{bottom:597.466667pt;}
.y20{bottom:604.666667pt;}
.y5e{bottom:609.506667pt;}
.y8c{bottom:610.573333pt;}
.y40{bottom:611.106667pt;}
.y74{bottom:613.773333pt;}
.y1f{bottom:620.173333pt;}
.yae{bottom:622.840000pt;}
.y1e{bottom:635.360000pt;}
.y8b{bottom:635.893333pt;}
.y5d{bottom:642.040000pt;}
.y3f{bottom:643.906667pt;}
.y73{bottom:646.293333pt;}
.yad{bottom:648.173333pt;}
.y1d{bottom:650.306667pt;}
.y8a{bottom:661.226667pt;}
.y1c{bottom:667.093333pt;}
.yac{bottom:673.506667pt;}
.y5c{bottom:674.840000pt;}
.y3e{bottom:676.706667pt;}
.y72{bottom:679.093333pt;}
.y1b{bottom:682.573333pt;}
.y89{bottom:686.560000pt;}
.y1a{bottom:698.040000pt;}
.yab{bottom:698.840000pt;}
.y5b{bottom:707.626667pt;}
.y3d{bottom:709.226667pt;}
.y71{bottom:711.893333pt;}
.y19{bottom:715.626667pt;}
.y88{bottom:722.560000pt;}
.yaa{bottom:723.893333pt;}
.y18{bottom:731.373333pt;}
.y5a{bottom:740.173333pt;}
.y3c{bottom:742.040000pt;}
.y70{bottom:744.706667pt;}
.y17{bottom:746.560000pt;}
.ya9{bottom:749.240000pt;}
.y87{bottom:755.133333pt;}
.y16{bottom:763.933333pt;}
.y59{bottom:767.933333pt;}
.ya8{bottom:774.600000pt;}
.y3b{bottom:774.866667pt;}
.y6f{bottom:775.133333pt;}
.y15{bottom:779.933333pt;}
.ydb{bottom:781.800000pt;}
.y58{bottom:788.200000pt;}
.yda{bottom:797.000000pt;}
.ya7{bottom:799.933333pt;}
.y14{bottom:801.800000pt;}
.y3a{bottom:807.666667pt;}
.yd9{bottom:815.133333pt;}
.y57{bottom:821.000000pt;}
.ya6{bottom:825.266667pt;}
.y13{bottom:825.800000pt;}
.yd8{bottom:830.333333pt;}
.y39{bottom:840.200000pt;}
.yd7{bottom:845.800000pt;}
.ya5{bottom:850.600000pt;}
.y12{bottom:853.000000pt;}
.y56{bottom:853.533333pt;}
.yd6{bottom:861.000000pt;}
.y38{bottom:873.000000pt;}
.ya4{bottom:875.933333pt;}
.yd5{bottom:876.466667pt;}
.y11{bottom:880.200000pt;}
.y55{bottom:886.333333pt;}
.yd4{bottom:891.666667pt;}
.ya3{bottom:901.266667pt;}
.y37{bottom:905.840000pt;}
.yd3{bottom:907.173333pt;}
.y10{bottom:907.706667pt;}
.y54{bottom:919.173333pt;}
.yd2{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.ya2{bottom:937.040000pt;}
.yd1{bottom:937.840000pt;}
.y36{bottom:938.373333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y53{bottom:951.706667pt;}
.yd0{bottom:953.040000pt;}
.ya1{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.ycf{bottom:968.506667pt;}
.y35{bottom:971.173333pt;}
.y9{bottom:975.960000pt;}
.yce{bottom:983.706667pt;}
.y52{bottom:984.506667pt;}
.ya0{bottom:987.706667pt;}
.y8{bottom:991.706667pt;}
.ycd{bottom:999.173333pt;}
.y34{bottom:1006.626667pt;}
.y7{bottom:1007.706667pt;}
.y86{bottom:1013.040000pt;}
.y6{bottom:1014.373333pt;}
.y32{bottom:1063.466667pt;}
.h13{height:4.669271pt;}
.h9{height:9.338542pt;}
.h5{height:13.718750pt;}
.ha{height:18.666667pt;}
.h12{height:23.346354pt;}
.h3{height:32.000000pt;}
.h7{height:36.583333pt;}
.h10{height:40.335938pt;}
.hd{height:41.156250pt;}
.h8{height:42.023438pt;}
.h4{height:45.729167pt;}
.hc{height:46.692708pt;}
.h11{height:49.299479pt;}
.h14{height:50.302083pt;}
.hf{height:51.361979pt;}
.h6{height:54.875000pt;}
.h15{height:56.031250pt;}
.h1{height:58.351562pt;}
.hb{height:64.020833pt;}
.he{height:73.166667pt;}
.h2{height:86.400000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:225.666667pt;}
.w5{width:429.733333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xe{left:42.400000pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.x2a{left:96.033322pt;}
.x9{left:136.559988pt;}
.x10{left:162.999988pt;}
.x14{left:181.399988pt;}
.x11{left:204.866655pt;}
.xc{left:214.740000pt;}
.x29{left:244.066655pt;}
.x15{left:252.866655pt;}
.x1e{left:260.599988pt;}
.x17{left:263.306655pt;}
.x25{left:267.573322pt;}
.xf{left:271.573322pt;}
.x26{left:278.773322pt;}
.x1a{left:281.173322pt;}
.x16{left:283.306655pt;}
.x18{left:284.906655pt;}
.x21{left:288.359988pt;}
.x1f{left:289.973322pt;}
.x1b{left:291.026655pt;}
.x19{left:295.306655pt;}
.x23{left:296.906655pt;}
.x22{left:298.506655pt;}
.x20{left:302.773322pt;}
.x24{left:308.106655pt;}
.x13{left:320.906655pt;}
.x28{left:348.906655pt;}
.x6{left:349.973322pt;}
.x27{left:351.839988pt;}
.x1d{left:365.173322pt;}
.x12{left:396.933322pt;}
.xd{left:499.106667pt;}
.x1c{left:528.426655pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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