
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a16ffd28164d82d07a6a5d2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5533c237efd137a4bb0089fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_79d254d2d30899761aeeb8bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_ce2136784a1c530e8f215b36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_29ad799bdba715fc274e9632.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_e75696620a52519a973111a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_88221de7e3496fb73bb48db5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5f26a0b18b8f0ee17f095dea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8030ee21f830baaf6284bf43.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-53.580000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.226200px;}
.lsc{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.493800px;}
.lse{letter-spacing:4.320000px;}
.ls1{letter-spacing:7.349760px;}
.lsf{letter-spacing:9.360000px;}
.lsd{letter-spacing:20.880000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws7{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
.wsd{word-spacing:99.384000px;}
._17{margin-left:-6.264000px;}
._18{margin-left:-5.112000px;}
._19{margin-left:-2.232000px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._8{width:2.558400px;}
._a{width:3.759600px;}
._6{width:5.724000px;}
._4{width:6.912000px;}
._5{width:8.154000px;}
._7{width:9.166080px;}
._11{width:10.571760px;}
._c{width:12.131280px;}
._b{width:13.266720px;}
._14{width:16.234800px;}
._3{width:17.941680px;}
._2{width:19.224000px;}
._9{width:20.412000px;}
._f{width:21.457920px;}
._13{width:22.967760px;}
._e{width:26.234640px;}
._d{width:27.370080px;}
._10{width:28.386000px;}
._12{width:30.427440px;}
._16{width:31.455120px;}
._15{width:32.569200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:2.340000px;}
.y43{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4c{bottom:11.700000px;}
.y59{bottom:12.960000px;}
.yde{bottom:15.480000px;}
.y42{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y58{bottom:28.620000px;}
.ydd{bottom:34.020000px;}
.y41{bottom:37.845000px;}
.y57{bottom:44.100000px;}
.ydc{bottom:47.370000px;}
.y3{bottom:47.910000px;}
.y4b{bottom:52.560000px;}
.y40{bottom:55.125000px;}
.y7{bottom:57.060000px;}
.y56{bottom:61.914000px;}
.y4a{bottom:62.274000px;}
.ydb{bottom:65.910000px;}
.y3f{bottom:72.225000px;}
.y55{bottom:77.394000px;}
.y49{bottom:82.974000px;}
.y3e{bottom:89.505000px;}
.y54{bottom:92.874000px;}
.y44{bottom:95.616000px;}
.y48{bottom:96.114000px;}
.y91{bottom:103.176000px;}
.yb1{bottom:104.616000px;}
.yd6{bottom:105.765000px;}
.y3d{bottom:106.785000px;}
.y47{bottom:109.074000px;}
.y53{bottom:110.694000px;}
.yb0{bottom:121.896000px;}
.y3c{bottom:124.065000px;}
.yd5{bottom:124.305000px;}
.y52{bottom:126.174000px;}
.y90{bottom:129.456000px;}
.yda{bottom:133.635000px;}
.yaf{bottom:139.176000px;}
.y3b{bottom:141.345000px;}
.y51{bottom:141.654000px;}
.yd4{bottom:143.025000px;}
.y8f{bottom:146.556000px;}
.yae{bottom:156.450000px;}
.y50{bottom:157.314000px;}
.y3a{bottom:158.625000px;}
.ydf{bottom:161.565000px;}
.y8e{bottom:163.830000px;}
.y46{bottom:170.994000px;}
.y4f{bottom:172.794000px;}
.yad{bottom:173.550000px;}
.y39{bottom:175.725000px;}
.y8d{bottom:181.110000px;}
.y45{bottom:181.614000px;}
.y4e{bottom:188.274000px;}
.yac{bottom:190.830000px;}
.y38{bottom:193.005000px;}
.y8c{bottom:198.390000px;}
.yd9{bottom:201.420000px;}
.yab{bottom:208.110000px;}
.y8b{bottom:215.670000px;}
.y37{bottom:219.285000px;}
.ye0{bottom:219.960000px;}
.yaa{bottom:225.390000px;}
.y8a{bottom:232.950000px;}
.yd8{bottom:233.355000px;}
.y36{bottom:236.565000px;}
.ya9{bottom:242.670000px;}
.yd2{bottom:244.830000px;}
.y89{bottom:250.050000px;}
.yd7{bottom:251.895000px;}
.y35{bottom:253.845000px;}
.ya8{bottom:259.950000px;}
.yd1{bottom:262.110000px;}
.y88{bottom:267.330000px;}
.y34{bottom:271.125000px;}
.ya7{bottom:277.050000px;}
.yd0{bottom:279.390000px;}
.y87{bottom:284.610000px;}
.y33{bottom:288.225000px;}
.ya6{bottom:294.330000px;}
.ycf{bottom:296.670000px;}
.y32{bottom:305.535000px;}
.y10{bottom:307.290000px;}
.y1e{bottom:310.215000px;}
.y86{bottom:310.890000px;}
.ya5{bottom:311.610000px;}
.yce{bottom:313.770000px;}
.y31{bottom:322.815000px;}
.y85{bottom:328.170000px;}
.ya4{bottom:328.890000px;}
.ycd{bottom:331.050000px;}
.y1d{bottom:334.335000px;}
.y30{bottom:340.095000px;}
.y84{bottom:345.495000px;}
.ya3{bottom:346.215000px;}
.ycc{bottom:348.375000px;}
.y2f{bottom:357.375000px;}
.y1c{bottom:358.455000px;}
.y83{bottom:362.595000px;}
.ya2{bottom:363.495000px;}
.ycb{bottom:365.655000px;}
.y2e{bottom:374.475000px;}
.y82{bottom:379.875000px;}
.ya1{bottom:380.595000px;}
.y1b{bottom:382.755000px;}
.yca{bottom:382.935000px;}
.y2d{bottom:391.755000px;}
.y81{bottom:397.155000px;}
.ya0{bottom:397.875000px;}
.yc9{bottom:400.215000px;}
.y1a{bottom:406.875000px;}
.y2c{bottom:409.035000px;}
.y9f{bottom:415.155000px;}
.yc8{bottom:417.315000px;}
.y80{bottom:423.435000px;}
.y19{bottom:430.995000px;}
.y9e{bottom:432.435000px;}
.yc7{bottom:434.595000px;}
.y2b{bottom:434.955000px;}
.y7f{bottom:440.715000px;}
.y9d{bottom:449.715000px;}
.y2a{bottom:450.435000px;}
.yc6{bottom:451.875000px;}
.y18{bottom:455.115000px;}
.y7e{bottom:457.995000px;}
.y29{bottom:466.095000px;}
.y9c{bottom:466.995000px;}
.yc5{bottom:469.155000px;}
.y7d{bottom:475.095000px;}
.y17{bottom:479.235000px;}
.y28{bottom:481.575000px;}
.y9b{bottom:484.095000px;}
.y7c{bottom:492.375000px;}
.yc4{bottom:495.435000px;}
.y27{bottom:497.055000px;}
.y16{bottom:503.355000px;}
.y7b{bottom:509.655000px;}
.y9a{bottom:510.375000px;}
.y26{bottom:512.535000px;}
.yc3{bottom:512.715000px;}
.y15{bottom:527.475000px;}
.y99{bottom:527.655000px;}
.y25{bottom:528.195000px;}
.yc2{bottom:529.815000px;}
.y7a{bottom:535.935000px;}
.y24{bottom:543.675000px;}
.y98{bottom:544.935000px;}
.yc1{bottom:547.095000px;}
.y14{bottom:551.775000px;}
.y79{bottom:553.215000px;}
.y23{bottom:559.155000px;}
.y97{bottom:562.215000px;}
.yc0{bottom:564.375000px;}
.y78{bottom:570.315000px;}
.y22{bottom:574.680000px;}
.y13{bottom:575.940000px;}
.y96{bottom:579.315000px;}
.ybf{bottom:581.655000px;}
.y21{bottom:590.340000px;}
.y77{bottom:596.595000px;}
.ybe{bottom:598.935000px;}
.y12{bottom:600.060000px;}
.y20{bottom:605.820000px;}
.y76{bottom:613.905000px;}
.ybd{bottom:616.065000px;}
.y1f{bottom:621.300000px;}
.y11{bottom:624.180000px;}
.y75{bottom:631.185000px;}
.ybc{bottom:633.345000px;}
.y74{bottom:648.465000px;}
.ybb{bottom:650.625000px;}
.y73{bottom:665.745000px;}
.yba{bottom:676.905000px;}
.y72{bottom:682.845000px;}
.y95{bottom:691.845000px;}
.yb9{bottom:694.185000px;}
.y71{bottom:700.125000px;}
.y94{bottom:709.125000px;}
.yb8{bottom:711.465000px;}
.y70{bottom:726.405000px;}
.yb7{bottom:728.565000px;}
.y6f{bottom:743.685000px;}
.yb6{bottom:745.845000px;}
.y6e{bottom:760.965000px;}
.yb5{bottom:763.125000px;}
.y6d{bottom:778.245000px;}
.yb4{bottom:780.405000px;}
.y6c{bottom:795.345000px;}
.yb3{bottom:797.685000px;}
.yb2{bottom:811.725000px;}
.yd3{bottom:811.800000px;}
.y6b{bottom:812.625000px;}
.y6a{bottom:829.905000px;}
.y93{bottom:838.905000px;}
.y69{bottom:856.185000px;}
.y68{bottom:873.510000px;}
.y67{bottom:890.610000px;}
.y66{bottom:907.890000px;}
.y65{bottom:925.170000px;}
.y64{bottom:942.450000px;}
.yf{bottom:943.710000px;}
.ye{bottom:948.390000px;}
.y63{bottom:959.730000px;}
.yd{bottom:965.670000px;}
.y62{bottom:977.010000px;}
.yc{bottom:982.950000px;}
.y92{bottom:986.010000px;}
.yb{bottom:1000.230000px;}
.y61{bottom:1003.110000px;}
.ya{bottom:1018.950000px;}
.y60{bottom:1020.390000px;}
.y5f{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y5e{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.y5a{bottom:1075.140000px;}
.y5c{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.064063px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.h15{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h14{height:38.100586px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h10{height:44.507812px;}
.h17{height:44.860781px;}
.ha{height:45.992812px;}
.h5{height:46.251562px;}
.h1a{height:50.273438px;}
.h19{height:50.800781px;}
.h16{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:210.960000px;}
.h18{height:274.500000px;}
.hc{height:633.885000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.056000px;}
.x19{left:8.100000px;}
.x16{left:10.440000px;}
.x4{left:12.780000px;}
.x17{left:18.180000px;}
.x6{left:19.260000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x15{left:37.260000px;}
.x13{left:42.480000px;}
.x14{left:45.540000px;}
.x1c{left:47.340000px;}
.x1d{left:56.700000px;}
.x1a{left:62.145000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x1b{left:106.374000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x2c{left:206.789987px;}
.x2a{left:208.589987px;}
.x18{left:218.370000px;}
.x2b{left:223.349987px;}
.x2d{left:225.509987px;}
.x2e{left:232.589987px;}
.x2f{left:238.169987px;}
.x28{left:239.834987px;}
.x29{left:241.454987px;}
.x20{left:314.069987px;}
.x22{left:315.329987px;}
.x23{left:318.419987px;}
.x21{left:331.349987px;}
.x27{left:334.829987px;}
.xb{left:369.434987px;}
.x24{left:393.269987px;}
.x26{left:411.764987px;}
.x25{left:428.189987px;}
.x1f{left:535.064987px;}
.xd{left:588.524987px;}
.xc{left:599.909987px;}
.xa{left:608.549987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
.xe{left:806.939987px;}
@media print{
.v1{vertical-align:-47.626667pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.438933pt;}
.lse{letter-spacing:3.840000pt;}
.ls1{letter-spacing:6.533120pt;}
.lsf{letter-spacing:8.320000pt;}
.lsd{letter-spacing:18.560000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws7{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
.wsd{word-spacing:88.341333pt;}
._17{margin-left:-5.568000pt;}
._18{margin-left:-4.544000pt;}
._19{margin-left:-1.984000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._8{width:2.274133pt;}
._a{width:3.341867pt;}
._6{width:5.088000pt;}
._4{width:6.144000pt;}
._5{width:7.248000pt;}
._7{width:8.147627pt;}
._11{width:9.397120pt;}
._c{width:10.783360pt;}
._b{width:11.792640pt;}
._14{width:14.430933pt;}
._3{width:15.948160pt;}
._2{width:17.088000pt;}
._9{width:18.144000pt;}
._f{width:19.073707pt;}
._13{width:20.415787pt;}
._e{width:23.319680pt;}
._d{width:24.328960pt;}
._10{width:25.232000pt;}
._12{width:27.046613pt;}
._16{width:27.960107pt;}
._15{width:28.950400pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.080000pt;}
.y43{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4c{bottom:10.400000pt;}
.y59{bottom:11.520000pt;}
.yde{bottom:13.760000pt;}
.y42{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y58{bottom:25.440000pt;}
.ydd{bottom:30.240000pt;}
.y41{bottom:33.640000pt;}
.y57{bottom:39.200000pt;}
.ydc{bottom:42.106667pt;}
.y3{bottom:42.586667pt;}
.y4b{bottom:46.720000pt;}
.y40{bottom:49.000000pt;}
.y7{bottom:50.720000pt;}
.y56{bottom:55.034667pt;}
.y4a{bottom:55.354667pt;}
.ydb{bottom:58.586667pt;}
.y3f{bottom:64.200000pt;}
.y55{bottom:68.794667pt;}
.y49{bottom:73.754667pt;}
.y3e{bottom:79.560000pt;}
.y54{bottom:82.554667pt;}
.y44{bottom:84.992000pt;}
.y48{bottom:85.434667pt;}
.y91{bottom:91.712000pt;}
.yb1{bottom:92.992000pt;}
.yd6{bottom:94.013333pt;}
.y3d{bottom:94.920000pt;}
.y47{bottom:96.954667pt;}
.y53{bottom:98.394667pt;}
.yb0{bottom:108.352000pt;}
.y3c{bottom:110.280000pt;}
.yd5{bottom:110.493333pt;}
.y52{bottom:112.154667pt;}
.y90{bottom:115.072000pt;}
.yda{bottom:118.786667pt;}
.yaf{bottom:123.712000pt;}
.y3b{bottom:125.640000pt;}
.y51{bottom:125.914667pt;}
.yd4{bottom:127.133333pt;}
.y8f{bottom:130.272000pt;}
.yae{bottom:139.066667pt;}
.y50{bottom:139.834667pt;}
.y3a{bottom:141.000000pt;}
.ydf{bottom:143.613333pt;}
.y8e{bottom:145.626667pt;}
.y46{bottom:151.994667pt;}
.y4f{bottom:153.594667pt;}
.yad{bottom:154.266667pt;}
.y39{bottom:156.200000pt;}
.y8d{bottom:160.986667pt;}
.y45{bottom:161.434667pt;}
.y4e{bottom:167.354667pt;}
.yac{bottom:169.626667pt;}
.y38{bottom:171.560000pt;}
.y8c{bottom:176.346667pt;}
.yd9{bottom:179.040000pt;}
.yab{bottom:184.986667pt;}
.y8b{bottom:191.706667pt;}
.y37{bottom:194.920000pt;}
.ye0{bottom:195.520000pt;}
.yaa{bottom:200.346667pt;}
.y8a{bottom:207.066667pt;}
.yd8{bottom:207.426667pt;}
.y36{bottom:210.280000pt;}
.ya9{bottom:215.706667pt;}
.yd2{bottom:217.626667pt;}
.y89{bottom:222.266667pt;}
.yd7{bottom:223.906667pt;}
.y35{bottom:225.640000pt;}
.ya8{bottom:231.066667pt;}
.yd1{bottom:232.986667pt;}
.y88{bottom:237.626667pt;}
.y34{bottom:241.000000pt;}
.ya7{bottom:246.266667pt;}
.yd0{bottom:248.346667pt;}
.y87{bottom:252.986667pt;}
.y33{bottom:256.200000pt;}
.ya6{bottom:261.626667pt;}
.ycf{bottom:263.706667pt;}
.y32{bottom:271.586667pt;}
.y10{bottom:273.146667pt;}
.y1e{bottom:275.746667pt;}
.y86{bottom:276.346667pt;}
.ya5{bottom:276.986667pt;}
.yce{bottom:278.906667pt;}
.y31{bottom:286.946667pt;}
.y85{bottom:291.706667pt;}
.ya4{bottom:292.346667pt;}
.ycd{bottom:294.266667pt;}
.y1d{bottom:297.186667pt;}
.y30{bottom:302.306667pt;}
.y84{bottom:307.106667pt;}
.ya3{bottom:307.746667pt;}
.ycc{bottom:309.666667pt;}
.y2f{bottom:317.666667pt;}
.y1c{bottom:318.626667pt;}
.y83{bottom:322.306667pt;}
.ya2{bottom:323.106667pt;}
.ycb{bottom:325.026667pt;}
.y2e{bottom:332.866667pt;}
.y82{bottom:337.666667pt;}
.ya1{bottom:338.306667pt;}
.y1b{bottom:340.226667pt;}
.yca{bottom:340.386667pt;}
.y2d{bottom:348.226667pt;}
.y81{bottom:353.026667pt;}
.ya0{bottom:353.666667pt;}
.yc9{bottom:355.746667pt;}
.y1a{bottom:361.666667pt;}
.y2c{bottom:363.586667pt;}
.y9f{bottom:369.026667pt;}
.yc8{bottom:370.946667pt;}
.y80{bottom:376.386667pt;}
.y19{bottom:383.106667pt;}
.y9e{bottom:384.386667pt;}
.yc7{bottom:386.306667pt;}
.y2b{bottom:386.626667pt;}
.y7f{bottom:391.746667pt;}
.y9d{bottom:399.746667pt;}
.y2a{bottom:400.386667pt;}
.yc6{bottom:401.666667pt;}
.y18{bottom:404.546667pt;}
.y7e{bottom:407.106667pt;}
.y29{bottom:414.306667pt;}
.y9c{bottom:415.106667pt;}
.yc5{bottom:417.026667pt;}
.y7d{bottom:422.306667pt;}
.y17{bottom:425.986667pt;}
.y28{bottom:428.066667pt;}
.y9b{bottom:430.306667pt;}
.y7c{bottom:437.666667pt;}
.yc4{bottom:440.386667pt;}
.y27{bottom:441.826667pt;}
.y16{bottom:447.426667pt;}
.y7b{bottom:453.026667pt;}
.y9a{bottom:453.666667pt;}
.y26{bottom:455.586667pt;}
.yc3{bottom:455.746667pt;}
.y15{bottom:468.866667pt;}
.y99{bottom:469.026667pt;}
.y25{bottom:469.506667pt;}
.yc2{bottom:470.946667pt;}
.y7a{bottom:476.386667pt;}
.y24{bottom:483.266667pt;}
.y98{bottom:484.386667pt;}
.yc1{bottom:486.306667pt;}
.y14{bottom:490.466667pt;}
.y79{bottom:491.746667pt;}
.y23{bottom:497.026667pt;}
.y97{bottom:499.746667pt;}
.yc0{bottom:501.666667pt;}
.y78{bottom:506.946667pt;}
.y22{bottom:510.826667pt;}
.y13{bottom:511.946667pt;}
.y96{bottom:514.946667pt;}
.ybf{bottom:517.026667pt;}
.y21{bottom:524.746667pt;}
.y77{bottom:530.306667pt;}
.ybe{bottom:532.386667pt;}
.y12{bottom:533.386667pt;}
.y20{bottom:538.506667pt;}
.y76{bottom:545.693333pt;}
.ybd{bottom:547.613333pt;}
.y1f{bottom:552.266667pt;}
.y11{bottom:554.826667pt;}
.y75{bottom:561.053333pt;}
.ybc{bottom:562.973333pt;}
.y74{bottom:576.413333pt;}
.ybb{bottom:578.333333pt;}
.y73{bottom:591.773333pt;}
.yba{bottom:601.693333pt;}
.y72{bottom:606.973333pt;}
.y95{bottom:614.973333pt;}
.yb9{bottom:617.053333pt;}
.y71{bottom:622.333333pt;}
.y94{bottom:630.333333pt;}
.yb8{bottom:632.413333pt;}
.y70{bottom:645.693333pt;}
.yb7{bottom:647.613333pt;}
.y6f{bottom:661.053333pt;}
.yb6{bottom:662.973333pt;}
.y6e{bottom:676.413333pt;}
.yb5{bottom:678.333333pt;}
.y6d{bottom:691.773333pt;}
.yb4{bottom:693.693333pt;}
.y6c{bottom:706.973333pt;}
.yb3{bottom:709.053333pt;}
.yb2{bottom:721.533333pt;}
.yd3{bottom:721.600000pt;}
.y6b{bottom:722.333333pt;}
.y6a{bottom:737.693333pt;}
.y93{bottom:745.693333pt;}
.y69{bottom:761.053333pt;}
.y68{bottom:776.453333pt;}
.y67{bottom:791.653333pt;}
.y66{bottom:807.013333pt;}
.y65{bottom:822.373333pt;}
.y64{bottom:837.733333pt;}
.yf{bottom:838.853333pt;}
.ye{bottom:843.013333pt;}
.y63{bottom:853.093333pt;}
.yd{bottom:858.373333pt;}
.y62{bottom:868.453333pt;}
.yc{bottom:873.733333pt;}
.y92{bottom:876.453333pt;}
.yb{bottom:889.093333pt;}
.y61{bottom:891.653333pt;}
.ya{bottom:905.733333pt;}
.y60{bottom:907.013333pt;}
.y5f{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y5e{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.y5a{bottom:955.680000pt;}
.y5c{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.612500pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.h15{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h14{height:33.867188pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h10{height:39.562500pt;}
.h17{height:39.876250pt;}
.ha{height:40.882500pt;}
.h5{height:41.112500pt;}
.h1a{height:44.687500pt;}
.h19{height:45.156250pt;}
.h16{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:187.520000pt;}
.h18{height:244.000000pt;}
.hc{height:563.453333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.272000pt;}
.x19{left:7.200000pt;}
.x16{left:9.280000pt;}
.x4{left:11.360000pt;}
.x17{left:16.160000pt;}
.x6{left:17.120000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x15{left:33.120000pt;}
.x13{left:37.760000pt;}
.x14{left:40.480000pt;}
.x1c{left:42.080000pt;}
.x1d{left:50.400000pt;}
.x1a{left:55.240000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1b{left:94.554667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x2c{left:183.813322pt;}
.x2a{left:185.413322pt;}
.x18{left:194.106667pt;}
.x2b{left:198.533322pt;}
.x2d{left:200.453322pt;}
.x2e{left:206.746655pt;}
.x2f{left:211.706655pt;}
.x28{left:213.186655pt;}
.x29{left:214.626655pt;}
.x20{left:279.173322pt;}
.x22{left:280.293322pt;}
.x23{left:283.039988pt;}
.x21{left:294.533322pt;}
.x27{left:297.626655pt;}
.xb{left:328.386655pt;}
.x24{left:349.573322pt;}
.x26{left:366.013322pt;}
.x25{left:380.613322pt;}
.x1f{left:475.613322pt;}
.xd{left:523.133322pt;}
.xc{left:533.253322pt;}
.xa{left:540.933322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
.xe{left:717.279988pt;}
}




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