
    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_9f2ea33cf7e7c3c0f53d89d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_a1591275fa47813c45aa9e8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_13abeac5cc520387fe802b13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_6c5622033ad9b33d954b7e72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_436a1c3dda5c4293c33685fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_a734f170b2c0f149d30f9cdf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws18{word-spacing:-55.944000px;}
.ws3b{word-spacing:-38.802600px;}
.ws45{word-spacing:-38.666400px;}
.ws82{word-spacing:-38.663700px;}
.wsf{word-spacing:-38.660400px;}
.ws5a{word-spacing:-38.656800px;}
.ws3f{word-spacing:-38.654400px;}
.ws2a{word-spacing:-38.652600px;}
.ws55{word-spacing:-38.652000px;}
.ws7f{word-spacing:-38.649900px;}
.ws52{word-spacing:-38.647800px;}
.ws4a{word-spacing:-38.646000px;}
.ws2d{word-spacing:-38.640000px;}
.ws5f{word-spacing:-38.590800px;}
.ws37{word-spacing:-38.586600px;}
.ws39{word-spacing:-38.448600px;}
.ws74{word-spacing:-38.444400px;}
.ws4e{word-spacing:-38.442000px;}
.ws3{word-spacing:-38.435400px;}
.ws2b{word-spacing:-38.434800px;}
.ws7{word-spacing:-38.432700px;}
.ws6{word-spacing:-38.428200px;}
.ws3c{word-spacing:-38.423100px;}
.ws7c{word-spacing:-38.367300px;}
.ws44{word-spacing:-38.166000px;}
.ws65{word-spacing:-38.162400px;}
.ws3d{word-spacing:-38.160000px;}
.ws58{word-spacing:-38.157300px;}
.ws13{word-spacing:-38.156400px;}
.ws47{word-spacing:-38.155200px;}
.ws4c{word-spacing:-38.152800px;}
.ws46{word-spacing:-38.151300px;}
.ws40{word-spacing:-38.150400px;}
.ws6e{word-spacing:-38.150100px;}
.ws71{word-spacing:-38.149200px;}
.ws41{word-spacing:-38.142000px;}
.ws4b{word-spacing:-38.130600px;}
.ws4{word-spacing:-38.087100px;}
.ws51{word-spacing:-38.084400px;}
.ws54{word-spacing:-37.946400px;}
.ws3a{word-spacing:-37.944000px;}
.ws53{word-spacing:-37.942800px;}
.ws81{word-spacing:-37.942200px;}
.ws57{word-spacing:-37.940400px;}
.ws6b{word-spacing:-37.938600px;}
.ws15{word-spacing:-37.936800px;}
.ws7e{word-spacing:-37.936200px;}
.ws29{word-spacing:-37.931400px;}
.ws6d{word-spacing:-37.926300px;}
.ws43{word-spacing:-37.922400px;}
.ws3e{word-spacing:-37.860600px;}
.ws4f{word-spacing:-37.848000px;}
.ws77{word-spacing:-37.847100px;}
.ws6f{word-spacing:-37.722600px;}
.ws9{word-spacing:-37.719900px;}
.ws8a{word-spacing:-37.717200px;}
.ws38{word-spacing:-37.701300px;}
.ws5{word-spacing:-37.652100px;}
.ws50{word-spacing:-37.423200px;}
.ws23{word-spacing:-37.209600px;}
.ws8{word-spacing:-36.983700px;}
.wsc{word-spacing:-36.720000px;}
.ws5c{word-spacing:-36.491400px;}
.ws35{word-spacing:-35.780400px;}
.ws48{word-spacing:-35.276400px;}
.ws75{word-spacing:-35.063100px;}
.ws76{word-spacing:-35.055900px;}
.ws1f{word-spacing:-35.046000px;}
.ws4d{word-spacing:-34.988400px;}
.ws2f{word-spacing:-34.560000px;}
.ws14{word-spacing:-34.545900px;}
.ws24{word-spacing:-34.344000px;}
.ws6c{word-spacing:-34.343100px;}
.ws30{word-spacing:-34.342200px;}
.ws36{word-spacing:-33.840000px;}
.ws2{word-spacing:-33.547800px;}
.ws12{word-spacing:-33.111000px;}
.ws1e{word-spacing:-32.175000px;}
.ws7b{word-spacing:-32.173200px;}
.ws20{word-spacing:-31.686000px;}
.ws69{word-spacing:-31.680000px;}
.wse{word-spacing:-31.464600px;}
.ws7d{word-spacing:-31.462200px;}
.ws21{word-spacing:-31.456800px;}
.ws34{word-spacing:-30.950400px;}
.ws56{word-spacing:-30.746400px;}
.ws7a{word-spacing:-30.743100px;}
.ws10{word-spacing:-30.240000px;}
.ws88{word-spacing:-30.023100px;}
.ws89{word-spacing:-29.804400px;}
.ws73{word-spacing:-29.517300px;}
.ws72{word-spacing:-29.302200px;}
.ws31{word-spacing:-29.300400px;}
.ws28{word-spacing:-28.579200px;}
.wsd{word-spacing:-28.508400px;}
.ws67{word-spacing:-28.069200px;}
.ws68{word-spacing:-27.866400px;}
.ws33{word-spacing:-27.861300px;}
.ws49{word-spacing:-27.360000px;}
.ws83{word-spacing:-27.143100px;}
.ws64{word-spacing:-27.135000px;}
.ws1b{word-spacing:-26.412000px;}
.ws5d{word-spacing:-25.687200px;}
.ws5e{word-spacing:-25.197000px;}
.ws1d{word-spacing:-24.270000px;}
.ws70{word-spacing:-24.263100px;}
.ws80{word-spacing:-24.254100px;}
.ws85{word-spacing:-23.757300px;}
.ws84{word-spacing:-23.546400px;}
.ws86{word-spacing:-23.544000px;}
.wsb{word-spacing:-23.535000px;}
.ws87{word-spacing:-23.040000px;}
.wsa{word-spacing:-23.019600px;}
.ws16{word-spacing:-22.086000px;}
.ws60{word-spacing:-22.029000px;}
.ws79{word-spacing:-21.606000px;}
.ws2c{word-spacing:-21.592800px;}
.ws32{word-spacing:-21.308400px;}
.ws63{word-spacing:-20.880000px;}
.ws22{word-spacing:-20.874000px;}
.ws66{word-spacing:-18.502800px;}
.ws27{word-spacing:-10.573200px;}
.ws5b{word-spacing:-9.131400px;}
.ws42{word-spacing:-8.343000px;}
.ws59{word-spacing:-7.920000px;}
.ws62{word-spacing:-7.200000px;}
.ws11{word-spacing:-6.254700px;}
.ws61{word-spacing:-6.240000px;}
.ws6a{word-spacing:-4.805400px;}
.ws25{word-spacing:-4.746600px;}
.ws17{word-spacing:-4.091400px;}
.ws26{word-spacing:-3.384000px;}
.ws19{word-spacing:-1.423200px;}
.ws1a{word-spacing:-0.491400px;}
.ws2e{word-spacing:0.000000px;}
.ws1c{word-spacing:7.224900px;}
.ws78{word-spacing:8.856000px;}
.ws1{word-spacing:1871.357400px;}
._3{margin-left:-1.443600px;}
._0{width:1.148400px;}
._12{width:17.386800px;}
._1{width:18.934200px;}
._4{width:20.828400px;}
._a{width:22.449900px;}
._9{width:23.852400px;}
._6{width:25.500000px;}
._7{width:26.941200px;}
._5{width:28.518000px;}
._10{width:30.088800px;}
._13{width:31.893600px;}
._2{width:34.032600px;}
._b{width:35.334000px;}
._c{width:36.589200px;}
._14{width:38.739600px;}
._e{width:46.374000px;}
._f{width:47.739600px;}
._11{width:48.786000px;}
._8{width:50.694000px;}
._d{width:53.057400px;}
._15{width:66.534000px;}
.fc3{color:rgb(0,102,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y61{bottom:108.796500px;}
.y2d{bottom:109.696500px;}
.y60{bottom:129.496500px;}
.y47{bottom:130.396500px;}
.y2c{bottom:151.455000px;}
.y81{bottom:153.255000px;}
.y5f{bottom:171.255000px;}
.y2b{bottom:172.155000px;}
.y80{bottom:173.955000px;}
.y7f{bottom:194.655000px;}
.y5e{bottom:213.015000px;}
.y2a{bottom:213.915000px;}
.y29{bottom:234.615000px;}
.y7e{bottom:236.415000px;}
.y5d{bottom:254.596500px;}
.y28{bottom:255.315000px;}
.y46{bottom:255.496500px;}
.y7d{bottom:257.115000px;}
.y27{bottom:276.015000px;}
.y5c{bottom:296.355000px;}
.y26{bottom:296.715000px;}
.y45{bottom:297.255000px;}
.y7c{bottom:298.696500px;}
.y25{bottom:317.415000px;}
.y44{bottom:317.955000px;}
.y7b{bottom:319.396500px;}
.y24{bottom:338.115000px;}
.y23{bottom:358.815000px;}
.y43{bottom:359.715000px;}
.y7a{bottom:361.155000px;}
.y22{bottom:379.515000px;}
.y5b{bottom:379.696500px;}
.y79{bottom:381.855000px;}
.y21{bottom:400.215000px;}
.y42{bottom:401.295000px;}
.y20{bottom:420.915000px;}
.y5a{bottom:421.455000px;}
.y78{bottom:423.615000px;}
.y1f{bottom:441.615000px;}
.y59{bottom:442.155000px;}
.y41{bottom:443.055000px;}
.y77{bottom:444.315000px;}
.y1e{bottom:462.315000px;}
.y1d{bottom:483.015000px;}
.y58{bottom:483.915000px;}
.y40{bottom:484.815000px;}
.y76{bottom:485.896500px;}
.y1c{bottom:503.715000px;}
.y57{bottom:525.496500px;}
.y3f{bottom:526.396500px;}
.y75{bottom:527.655000px;}
.y1b{bottom:545.296500px;}
.y74{bottom:548.355000px;}
.y1a{bottom:565.996500px;}
.y56{bottom:567.255000px;}
.y3e{bottom:568.155000px;}
.y73{bottom:569.055000px;}
.y19{bottom:586.695000px;}
.y72{bottom:589.755000px;}
.y55{bottom:609.015000px;}
.y3d{bottom:609.915000px;}
.y71{bottom:610.455000px;}
.y18{bottom:628.455000px;}
.y70{bottom:631.155000px;}
.y17{bottom:649.155000px;}
.y54{bottom:650.596500px;}
.y3c{bottom:651.496500px;}
.y16{bottom:669.855000px;}
.y6f{bottom:672.915000px;}
.y15{bottom:690.555000px;}
.y53{bottom:692.355000px;}
.y3b{bottom:693.255000px;}
.y6e{bottom:693.615000px;}
.y6d{bottom:714.315000px;}
.y14{bottom:732.315000px;}
.y52{bottom:734.115000px;}
.y3a{bottom:735.015000px;}
.y13{bottom:753.015000px;}
.y6c{bottom:755.715000px;}
.y12{bottom:773.715000px;}
.y51{bottom:775.695000px;}
.y6b{bottom:776.415000px;}
.y39{bottom:776.596500px;}
.y11{bottom:794.415000px;}
.y88{bottom:797.295000px;}
.y10{bottom:815.115000px;}
.y50{bottom:817.455000px;}
.y6a{bottom:817.996500px;}
.y38{bottom:818.355000px;}
.yf{bottom:835.815000px;}
.y4f{bottom:838.155000px;}
.y69{bottom:838.695000px;}
.y68{bottom:859.395000px;}
.y37{bottom:860.115000px;}
.ye{bottom:877.395000px;}
.y4e{bottom:879.915000px;}
.y67{bottom:880.095000px;}
.y87{bottom:880.455000px;}
.yd{bottom:898.095000px;}
.y66{bottom:900.795000px;}
.y86{bottom:901.155000px;}
.y36{bottom:901.695000px;}
.yc{bottom:918.795000px;}
.y4d{bottom:921.495000px;}
.y85{bottom:921.855000px;}
.yb{bottom:939.495000px;}
.y65{bottom:942.195000px;}
.y35{bottom:943.455000px;}
.ya{bottom:960.195000px;}
.y4c{bottom:963.255000px;}
.y84{bottom:963.615000px;}
.y34{bottom:964.155000px;}
.y64{bottom:983.955000px;}
.y83{bottom:984.315000px;}
.y33{bottom:984.855000px;}
.y9{bottom:1001.955000px;}
.y4b{bottom:1005.015000px;}
.y32{bottom:1005.555000px;}
.y63{bottom:1025.715000px;}
.y82{bottom:1025.895000px;}
.y31{bottom:1026.255000px;}
.y8{bottom:1037.595000px;}
.y62{bottom:1046.415000px;}
.y4a{bottom:1046.595000px;}
.y30{bottom:1046.955000px;}
.y49{bottom:1067.295000px;}
.y2f{bottom:1067.655000px;}
.y7{bottom:1073.415000px;}
.y48{bottom:1087.995000px;}
.y2e{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:44.189209px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:157.860000px;}
.x5{left:267.480000px;}
.x8{left:427.500000px;}
.x7{left:452.700000px;}
.x3{left:471.150000px;}
.x6{left:572.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws18{word-spacing:-49.728000pt;}
.ws3b{word-spacing:-34.491200pt;}
.ws45{word-spacing:-34.370133pt;}
.ws82{word-spacing:-34.367733pt;}
.wsf{word-spacing:-34.364800pt;}
.ws5a{word-spacing:-34.361600pt;}
.ws3f{word-spacing:-34.359467pt;}
.ws2a{word-spacing:-34.357867pt;}
.ws55{word-spacing:-34.357333pt;}
.ws7f{word-spacing:-34.355467pt;}
.ws52{word-spacing:-34.353600pt;}
.ws4a{word-spacing:-34.352000pt;}
.ws2d{word-spacing:-34.346667pt;}
.ws5f{word-spacing:-34.302933pt;}
.ws37{word-spacing:-34.299200pt;}
.ws39{word-spacing:-34.176533pt;}
.ws74{word-spacing:-34.172800pt;}
.ws4e{word-spacing:-34.170667pt;}
.ws3{word-spacing:-34.164800pt;}
.ws2b{word-spacing:-34.164267pt;}
.ws7{word-spacing:-34.162400pt;}
.ws6{word-spacing:-34.158400pt;}
.ws3c{word-spacing:-34.153867pt;}
.ws7c{word-spacing:-34.104267pt;}
.ws44{word-spacing:-33.925333pt;}
.ws65{word-spacing:-33.922133pt;}
.ws3d{word-spacing:-33.920000pt;}
.ws58{word-spacing:-33.917600pt;}
.ws13{word-spacing:-33.916800pt;}
.ws47{word-spacing:-33.915733pt;}
.ws4c{word-spacing:-33.913600pt;}
.ws46{word-spacing:-33.912267pt;}
.ws40{word-spacing:-33.911467pt;}
.ws6e{word-spacing:-33.911200pt;}
.ws71{word-spacing:-33.910400pt;}
.ws41{word-spacing:-33.904000pt;}
.ws4b{word-spacing:-33.893867pt;}
.ws4{word-spacing:-33.855200pt;}
.ws51{word-spacing:-33.852800pt;}
.ws54{word-spacing:-33.730133pt;}
.ws3a{word-spacing:-33.728000pt;}
.ws53{word-spacing:-33.726933pt;}
.ws81{word-spacing:-33.726400pt;}
.ws57{word-spacing:-33.724800pt;}
.ws6b{word-spacing:-33.723200pt;}
.ws15{word-spacing:-33.721600pt;}
.ws7e{word-spacing:-33.721067pt;}
.ws29{word-spacing:-33.716800pt;}
.ws6d{word-spacing:-33.712267pt;}
.ws43{word-spacing:-33.708800pt;}
.ws3e{word-spacing:-33.653867pt;}
.ws4f{word-spacing:-33.642667pt;}
.ws77{word-spacing:-33.641867pt;}
.ws6f{word-spacing:-33.531200pt;}
.ws9{word-spacing:-33.528800pt;}
.ws8a{word-spacing:-33.526400pt;}
.ws38{word-spacing:-33.512267pt;}
.ws5{word-spacing:-33.468533pt;}
.ws50{word-spacing:-33.265067pt;}
.ws23{word-spacing:-33.075200pt;}
.ws8{word-spacing:-32.874400pt;}
.wsc{word-spacing:-32.640000pt;}
.ws5c{word-spacing:-32.436800pt;}
.ws35{word-spacing:-31.804800pt;}
.ws48{word-spacing:-31.356800pt;}
.ws75{word-spacing:-31.167200pt;}
.ws76{word-spacing:-31.160800pt;}
.ws1f{word-spacing:-31.152000pt;}
.ws4d{word-spacing:-31.100800pt;}
.ws2f{word-spacing:-30.720000pt;}
.ws14{word-spacing:-30.707467pt;}
.ws24{word-spacing:-30.528000pt;}
.ws6c{word-spacing:-30.527200pt;}
.ws30{word-spacing:-30.526400pt;}
.ws36{word-spacing:-30.080000pt;}
.ws2{word-spacing:-29.820267pt;}
.ws12{word-spacing:-29.432000pt;}
.ws1e{word-spacing:-28.600000pt;}
.ws7b{word-spacing:-28.598400pt;}
.ws20{word-spacing:-28.165333pt;}
.ws69{word-spacing:-28.160000pt;}
.wse{word-spacing:-27.968533pt;}
.ws7d{word-spacing:-27.966400pt;}
.ws21{word-spacing:-27.961600pt;}
.ws34{word-spacing:-27.511467pt;}
.ws56{word-spacing:-27.330133pt;}
.ws7a{word-spacing:-27.327200pt;}
.ws10{word-spacing:-26.880000pt;}
.ws88{word-spacing:-26.687200pt;}
.ws89{word-spacing:-26.492800pt;}
.ws73{word-spacing:-26.237600pt;}
.ws72{word-spacing:-26.046400pt;}
.ws31{word-spacing:-26.044800pt;}
.ws28{word-spacing:-25.403733pt;}
.wsd{word-spacing:-25.340800pt;}
.ws67{word-spacing:-24.950400pt;}
.ws68{word-spacing:-24.770133pt;}
.ws33{word-spacing:-24.765600pt;}
.ws49{word-spacing:-24.320000pt;}
.ws83{word-spacing:-24.127200pt;}
.ws64{word-spacing:-24.120000pt;}
.ws1b{word-spacing:-23.477333pt;}
.ws5d{word-spacing:-22.833067pt;}
.ws5e{word-spacing:-22.397333pt;}
.ws1d{word-spacing:-21.573333pt;}
.ws70{word-spacing:-21.567200pt;}
.ws80{word-spacing:-21.559200pt;}
.ws85{word-spacing:-21.117600pt;}
.ws84{word-spacing:-20.930133pt;}
.ws86{word-spacing:-20.928000pt;}
.wsb{word-spacing:-20.920000pt;}
.ws87{word-spacing:-20.480000pt;}
.wsa{word-spacing:-20.461867pt;}
.ws16{word-spacing:-19.632000pt;}
.ws60{word-spacing:-19.581333pt;}
.ws79{word-spacing:-19.205333pt;}
.ws2c{word-spacing:-19.193600pt;}
.ws32{word-spacing:-18.940800pt;}
.ws63{word-spacing:-18.560000pt;}
.ws22{word-spacing:-18.554667pt;}
.ws66{word-spacing:-16.446933pt;}
.ws27{word-spacing:-9.398400pt;}
.ws5b{word-spacing:-8.116800pt;}
.ws42{word-spacing:-7.416000pt;}
.ws59{word-spacing:-7.040000pt;}
.ws62{word-spacing:-6.400000pt;}
.ws11{word-spacing:-5.559733pt;}
.ws61{word-spacing:-5.546667pt;}
.ws6a{word-spacing:-4.271467pt;}
.ws25{word-spacing:-4.219200pt;}
.ws17{word-spacing:-3.636800pt;}
.ws26{word-spacing:-3.008000pt;}
.ws19{word-spacing:-1.265067pt;}
.ws1a{word-spacing:-0.436800pt;}
.ws2e{word-spacing:0.000000pt;}
.ws1c{word-spacing:6.422133pt;}
.ws78{word-spacing:7.872000pt;}
.ws1{word-spacing:1663.428800pt;}
._3{margin-left:-1.283200pt;}
._0{width:1.020800pt;}
._12{width:15.454933pt;}
._1{width:16.830400pt;}
._4{width:18.514133pt;}
._a{width:19.955467pt;}
._9{width:21.202133pt;}
._6{width:22.666667pt;}
._7{width:23.947733pt;}
._5{width:25.349333pt;}
._10{width:26.745600pt;}
._13{width:28.349867pt;}
._2{width:30.251200pt;}
._b{width:31.408000pt;}
._c{width:32.523733pt;}
._14{width:34.435200pt;}
._e{width:41.221333pt;}
._f{width:42.435200pt;}
._11{width:43.365333pt;}
._8{width:45.061333pt;}
._d{width:47.162133pt;}
._15{width:59.141333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y61{bottom:96.708000pt;}
.y2d{bottom:97.508000pt;}
.y60{bottom:115.108000pt;}
.y47{bottom:115.908000pt;}
.y2c{bottom:134.626667pt;}
.y81{bottom:136.226667pt;}
.y5f{bottom:152.226667pt;}
.y2b{bottom:153.026667pt;}
.y80{bottom:154.626667pt;}
.y7f{bottom:173.026667pt;}
.y5e{bottom:189.346667pt;}
.y2a{bottom:190.146667pt;}
.y29{bottom:208.546667pt;}
.y7e{bottom:210.146667pt;}
.y5d{bottom:226.308000pt;}
.y28{bottom:226.946667pt;}
.y46{bottom:227.108000pt;}
.y7d{bottom:228.546667pt;}
.y27{bottom:245.346667pt;}
.y5c{bottom:263.426667pt;}
.y26{bottom:263.746667pt;}
.y45{bottom:264.226667pt;}
.y7c{bottom:265.508000pt;}
.y25{bottom:282.146667pt;}
.y44{bottom:282.626667pt;}
.y7b{bottom:283.908000pt;}
.y24{bottom:300.546667pt;}
.y23{bottom:318.946667pt;}
.y43{bottom:319.746667pt;}
.y7a{bottom:321.026667pt;}
.y22{bottom:337.346667pt;}
.y5b{bottom:337.508000pt;}
.y79{bottom:339.426667pt;}
.y21{bottom:355.746667pt;}
.y42{bottom:356.706667pt;}
.y20{bottom:374.146667pt;}
.y5a{bottom:374.626667pt;}
.y78{bottom:376.546667pt;}
.y1f{bottom:392.546667pt;}
.y59{bottom:393.026667pt;}
.y41{bottom:393.826667pt;}
.y77{bottom:394.946667pt;}
.y1e{bottom:410.946667pt;}
.y1d{bottom:429.346667pt;}
.y58{bottom:430.146667pt;}
.y40{bottom:430.946667pt;}
.y76{bottom:431.908000pt;}
.y1c{bottom:447.746667pt;}
.y57{bottom:467.108000pt;}
.y3f{bottom:467.908000pt;}
.y75{bottom:469.026667pt;}
.y1b{bottom:484.708000pt;}
.y74{bottom:487.426667pt;}
.y1a{bottom:503.108000pt;}
.y56{bottom:504.226667pt;}
.y3e{bottom:505.026667pt;}
.y73{bottom:505.826667pt;}
.y19{bottom:521.506667pt;}
.y72{bottom:524.226667pt;}
.y55{bottom:541.346667pt;}
.y3d{bottom:542.146667pt;}
.y71{bottom:542.626667pt;}
.y18{bottom:558.626667pt;}
.y70{bottom:561.026667pt;}
.y17{bottom:577.026667pt;}
.y54{bottom:578.308000pt;}
.y3c{bottom:579.108000pt;}
.y16{bottom:595.426667pt;}
.y6f{bottom:598.146667pt;}
.y15{bottom:613.826667pt;}
.y53{bottom:615.426667pt;}
.y3b{bottom:616.226667pt;}
.y6e{bottom:616.546667pt;}
.y6d{bottom:634.946667pt;}
.y14{bottom:650.946667pt;}
.y52{bottom:652.546667pt;}
.y3a{bottom:653.346667pt;}
.y13{bottom:669.346667pt;}
.y6c{bottom:671.746667pt;}
.y12{bottom:687.746667pt;}
.y51{bottom:689.506667pt;}
.y6b{bottom:690.146667pt;}
.y39{bottom:690.308000pt;}
.y11{bottom:706.146667pt;}
.y88{bottom:708.706667pt;}
.y10{bottom:724.546667pt;}
.y50{bottom:726.626667pt;}
.y6a{bottom:727.108000pt;}
.y38{bottom:727.426667pt;}
.yf{bottom:742.946667pt;}
.y4f{bottom:745.026667pt;}
.y69{bottom:745.506667pt;}
.y68{bottom:763.906667pt;}
.y37{bottom:764.546667pt;}
.ye{bottom:779.906667pt;}
.y4e{bottom:782.146667pt;}
.y67{bottom:782.306667pt;}
.y87{bottom:782.626667pt;}
.yd{bottom:798.306667pt;}
.y66{bottom:800.706667pt;}
.y86{bottom:801.026667pt;}
.y36{bottom:801.506667pt;}
.yc{bottom:816.706667pt;}
.y4d{bottom:819.106667pt;}
.y85{bottom:819.426667pt;}
.yb{bottom:835.106667pt;}
.y65{bottom:837.506667pt;}
.y35{bottom:838.626667pt;}
.ya{bottom:853.506667pt;}
.y4c{bottom:856.226667pt;}
.y84{bottom:856.546667pt;}
.y34{bottom:857.026667pt;}
.y64{bottom:874.626667pt;}
.y83{bottom:874.946667pt;}
.y33{bottom:875.426667pt;}
.y9{bottom:890.626667pt;}
.y4b{bottom:893.346667pt;}
.y32{bottom:893.826667pt;}
.y63{bottom:911.746667pt;}
.y82{bottom:911.906667pt;}
.y31{bottom:912.226667pt;}
.y8{bottom:922.306667pt;}
.y62{bottom:930.146667pt;}
.y4a{bottom:930.306667pt;}
.y30{bottom:930.626667pt;}
.y49{bottom:948.706667pt;}
.y2f{bottom:949.026667pt;}
.y7{bottom:954.146667pt;}
.y48{bottom:967.106667pt;}
.y2e{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:39.279297pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:140.320000pt;}
.x5{left:237.760000pt;}
.x8{left:380.000000pt;}
.x7{left:402.400000pt;}
.x3{left:418.800000pt;}
.x6{left:509.120000pt;}
}




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