
    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_930dc8b7e3676db0daf28cf2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.049316;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b229f92d84464448bb05db45.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_5c9de61b48709ec5810fecb5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_8b5178d2d12be081bab7af91.woff')format("woff");}.ff5{font-family:ff5;line-height:1.033691;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_3012eafbaaefda4151658a7c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.033691;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_0d6c9099451bdac545d1c76b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_701030b6c17f58ae1bf84ec1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049316;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_3d03901583945bc338114a89.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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;}
.v1{vertical-align:30.000000px;}
.lsa{letter-spacing:-0.912000px;}
.ls4{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.312000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.840000px;}
.ls6{letter-spacing:7.800000px;}
.ls2{letter-spacing:849.300000px;}
.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;}
}
.ws7{word-spacing:-18.936000px;}
.wsa{word-spacing:-15.960000px;}
.ws4{word-spacing:-15.780000px;}
.ws9{word-spacing:-15.420000px;}
.ws8{word-spacing:-15.148800px;}
.ws0{word-spacing:-12.888000px;}
.ws5{word-spacing:-12.624000px;}
.ws1{word-spacing:-12.312000px;}
.ws3{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.688000px;}
.ws6{word-spacing:0.000000px;}
._b{margin-left:-2.208000px;}
._1{margin-left:-1.002000px;}
._0{width:1.164000px;}
._2{width:2.292000px;}
._8{width:3.732000px;}
._7{width:4.968000px;}
._18{width:6.096000px;}
._d{width:7.200000px;}
._1b{width:8.286000px;}
._9{width:9.288000px;}
._c{width:10.386000px;}
._3{width:11.460000px;}
._4{width:12.540000px;}
._5{width:13.560000px;}
._1e{width:14.664000px;}
._f{width:15.684000px;}
._e{width:16.776000px;}
._19{width:17.820000px;}
._a{width:20.016000px;}
._6{width:21.096000px;}
._14{width:22.392000px;}
._16{width:24.318000px;}
._15{width:25.344000px;}
._1a{width:27.144000px;}
._17{width:28.152000px;}
._12{width:29.520000px;}
._10{width:30.960000px;}
._11{width:32.244000px;}
._13{width:35.274000px;}
._1c{width:57.732000px;}
._1d{width:58.968000px;}
._1f{width:101.436000px;}
._20{width:103.026000px;}
.fc3{color:transparent;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.000000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:39.600000px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:57.600000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:180.000000px;}
.fs9{font-size:450.150000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.700000px;}
.y55{bottom:15.600000px;}
.y7{bottom:18.300000px;}
.y8{bottom:27.037500px;}
.y5{bottom:28.537500px;}
.y6{bottom:33.600000px;}
.y3{bottom:75.337500px;}
.y2b{bottom:93.637500px;}
.y53{bottom:93.937500px;}
.y2a{bottom:108.937500px;}
.y6f{bottom:109.537500px;}
.y52{bottom:111.337500px;}
.y29{bottom:112.837500px;}
.y28{bottom:126.337500px;}
.y51{bottom:128.437500px;}
.y83{bottom:131.137500px;}
.y6e{bottom:142.537500px;}
.y50{bottom:145.537500px;}
.y4f{bottom:149.437500px;}
.y4e{bottom:162.930000px;}
.y6d{bottom:175.275000px;}
.y4d{bottom:180.375000px;}
.y4c{bottom:185.775000px;}
.y82{bottom:186.375000px;}
.y4b{bottom:198.675000px;}
.y6c{bottom:216.975000px;}
.y81{bottom:226.275000px;}
.y4a{bottom:247.575000px;}
.y6b{bottom:249.675000px;}
.y80{bottom:266.175000px;}
.y49{bottom:280.575000px;}
.y6a{bottom:282.375000px;}
.y7f{bottom:306.075000px;}
.y48{bottom:313.275000px;}
.y69{bottom:315.375000px;}
.y47{bottom:346.005000px;}
.y68{bottom:348.120000px;}
.y27{bottom:370.605000px;}
.y67{bottom:380.820000px;}
.y7e{bottom:385.620000px;}
.y46{bottom:387.705000px;}
.y26{bottom:389.220000px;}
.y66{bottom:413.505000px;}
.y25{bottom:416.820000px;}
.y45{bottom:420.405000px;}
.y7d{bottom:425.505000px;}
.y24{bottom:445.605000px;}
.y65{bottom:446.205000px;}
.y44{bottom:453.405000px;}
.y7c{bottom:465.405000px;}
.y23{bottom:467.505000px;}
.y64{bottom:479.205000px;}
.y43{bottom:486.105000px;}
.y22{bottom:489.405000px;}
.y7b{bottom:505.305000px;}
.y21{bottom:511.650000px;}
.y63{bottom:511.950000px;}
.y42{bottom:518.850000px;}
.y7a{bottom:527.250000px;}
.y20{bottom:533.550000px;}
.y62{bottom:544.650000px;}
.y41{bottom:551.550000px;}
.y1f{bottom:555.450000px;}
.y79{bottom:567.450000px;}
.y1e{bottom:577.350000px;}
.y40{bottom:584.250000px;}
.y78{bottom:589.350000px;}
.y1d{bottom:599.250000px;}
.y3f{bottom:617.250000px;}
.y61{bottom:619.050000px;}
.y1c{bottom:621.150000px;}
.y77{bottom:629.250000px;}
.y1a{bottom:643.050000px;}
.y3e{bottom:649.950000px;}
.y1b{bottom:650.550000px;}
.y76{bottom:651.150000px;}
.y60{bottom:652.050000px;}
.y19{bottom:664.950000px;}
.y75{bottom:673.350000px;}
.y3d{bottom:682.995000px;}
.y5f{bottom:684.780000px;}
.y18{bottom:686.880000px;}
.y17{bottom:708.780000px;}
.y74{bottom:713.280000px;}
.y3c{bottom:716.280000px;}
.y5e{bottom:717.480000px;}
.y16{bottom:730.695000px;}
.y73{bottom:735.495000px;}
.y3b{bottom:749.280000px;}
.y5d{bottom:750.180000px;}
.y15{bottom:752.880000px;}
.y72{bottom:766.695000px;}
.y14{bottom:774.795000px;}
.y3a{bottom:781.980000px;}
.y5c{bottom:782.880000px;}
.y13{bottom:796.695000px;}
.y71{bottom:807.780000px;}
.y5b{bottom:815.880000px;}
.y12{bottom:818.580000px;}
.y38{bottom:823.695000px;}
.y39{bottom:831.195000px;}
.y11{bottom:840.480000px;}
.y70{bottom:847.425000px;}
.y5a{bottom:848.625000px;}
.y37{bottom:856.425000px;}
.y10{bottom:862.425000px;}
.y59{bottom:881.325000px;}
.yf{bottom:884.325000px;}
.y35{bottom:889.425000px;}
.y36{bottom:896.925000px;}
.ye{bottom:906.225000px;}
.y58{bottom:914.025000px;}
.y34{bottom:922.425000px;}
.yd{bottom:928.125000px;}
.y57{bottom:946.725000px;}
.y33{bottom:955.425000px;}
.yc{bottom:957.525000px;}
.y56{bottom:979.725000px;}
.y32{bottom:988.725000px;}
.yb{bottom:1015.170000px;}
.y31{bottom:1021.455000px;}
.y54{bottom:1038.570000px;}
.y30{bottom:1054.170000px;}
.ya{bottom:1082.955000px;}
.y2f{bottom:1086.870000px;}
.y2e{bottom:1119.855000px;}
.y9{bottom:1121.370000px;}
.y2d{bottom:1160.070000px;}
.y2{bottom:1175.655000px;}
.y2c{bottom:1186.500000px;}
.y1{bottom:1195.200000px;}
.h7{height:4.374023px;}
.h4{height:15.600000px;}
.hf{height:26.244141px;}
.h12{height:28.868555px;}
.hc{height:37.335938px;}
.h11{height:38.865234px;}
.h5{height:39.366211px;}
.h10{height:43.740234px;}
.hd{height:45.761719px;}
.h6{height:46.500000px;}
.h2{height:46.669922px;}
.h15{height:54.914062px;}
.h9{height:56.003906px;}
.he{height:58.886719px;}
.h3{height:65.645508px;}
.hb{height:67.335938px;}
.ha{height:71.613281px;}
.h13{height:98.400000px;}
.h8{height:137.285156px;}
.h14{height:350.141089px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:65.100000px;}
.w3{width:808.155000px;}
.w4{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:42.600000px;}
.x2{left:84.937487px;}
.xb{left:89.137487px;}
.x6{left:145.875000px;}
.x13{left:148.837487px;}
.xe{left:150.029987px;}
.x5{left:164.175000px;}
.xc{left:297.119987px;}
.xa{left:301.019987px;}
.x8{left:309.719973px;}
.x9{left:314.204987px;}
.xd{left:372.719987px;}
.x7{left:394.650000px;}
.x4{left:403.950000px;}
.x11{left:419.849973px;}
.x12{left:426.449987px;}
.xf{left:448.349973px;}
.x10{left:454.949987px;}
.x15{left:645.494987px;}
.x14{left:649.394987px;}
.x1{left:807.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.lsa{letter-spacing:-0.810667pt;}
.ls4{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.277333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.746667pt;}
.ls6{letter-spacing:6.933333pt;}
.ls2{letter-spacing:754.933333pt;}
.ws7{word-spacing:-16.832000pt;}
.wsa{word-spacing:-14.186667pt;}
.ws4{word-spacing:-14.026667pt;}
.ws9{word-spacing:-13.706667pt;}
.ws8{word-spacing:-13.465600pt;}
.ws0{word-spacing:-11.456000pt;}
.ws5{word-spacing:-11.221333pt;}
.ws1{word-spacing:-10.944000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.389333pt;}
.ws6{word-spacing:0.000000pt;}
._b{margin-left:-1.962667pt;}
._1{margin-left:-0.890667pt;}
._0{width:1.034667pt;}
._2{width:2.037333pt;}
._8{width:3.317333pt;}
._7{width:4.416000pt;}
._18{width:5.418667pt;}
._d{width:6.400000pt;}
._1b{width:7.365333pt;}
._9{width:8.256000pt;}
._c{width:9.232000pt;}
._3{width:10.186667pt;}
._4{width:11.146667pt;}
._5{width:12.053333pt;}
._1e{width:13.034667pt;}
._f{width:13.941333pt;}
._e{width:14.912000pt;}
._19{width:15.840000pt;}
._a{width:17.792000pt;}
._6{width:18.752000pt;}
._14{width:19.904000pt;}
._16{width:21.616000pt;}
._15{width:22.528000pt;}
._1a{width:24.128000pt;}
._17{width:25.024000pt;}
._12{width:26.240000pt;}
._10{width:27.520000pt;}
._11{width:28.661333pt;}
._13{width:31.354667pt;}
._1c{width:51.317333pt;}
._1d{width:52.416000pt;}
._1f{width:90.165333pt;}
._20{width:91.578667pt;}
.fs3{font-size:5.333333pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:35.200000pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:51.200000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:160.000000pt;}
.fs9{font-size:400.133333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.400000pt;}
.y55{bottom:13.866667pt;}
.y7{bottom:16.266667pt;}
.y8{bottom:24.033333pt;}
.y5{bottom:25.366667pt;}
.y6{bottom:29.866667pt;}
.y3{bottom:66.966667pt;}
.y2b{bottom:83.233333pt;}
.y53{bottom:83.500000pt;}
.y2a{bottom:96.833333pt;}
.y6f{bottom:97.366667pt;}
.y52{bottom:98.966667pt;}
.y29{bottom:100.300000pt;}
.y28{bottom:112.300000pt;}
.y51{bottom:114.166667pt;}
.y83{bottom:116.566667pt;}
.y6e{bottom:126.700000pt;}
.y50{bottom:129.366667pt;}
.y4f{bottom:132.833333pt;}
.y4e{bottom:144.826667pt;}
.y6d{bottom:155.800000pt;}
.y4d{bottom:160.333333pt;}
.y4c{bottom:165.133333pt;}
.y82{bottom:165.666667pt;}
.y4b{bottom:176.600000pt;}
.y6c{bottom:192.866667pt;}
.y81{bottom:201.133333pt;}
.y4a{bottom:220.066667pt;}
.y6b{bottom:221.933333pt;}
.y80{bottom:236.600000pt;}
.y49{bottom:249.400000pt;}
.y6a{bottom:251.000000pt;}
.y7f{bottom:272.066667pt;}
.y48{bottom:278.466667pt;}
.y69{bottom:280.333333pt;}
.y47{bottom:307.560000pt;}
.y68{bottom:309.440000pt;}
.y27{bottom:329.426667pt;}
.y67{bottom:338.506667pt;}
.y7e{bottom:342.773333pt;}
.y46{bottom:344.626667pt;}
.y26{bottom:345.973333pt;}
.y66{bottom:367.560000pt;}
.y25{bottom:370.506667pt;}
.y45{bottom:373.693333pt;}
.y7d{bottom:378.226667pt;}
.y24{bottom:396.093333pt;}
.y65{bottom:396.626667pt;}
.y44{bottom:403.026667pt;}
.y7c{bottom:413.693333pt;}
.y23{bottom:415.560000pt;}
.y64{bottom:425.960000pt;}
.y43{bottom:432.093333pt;}
.y22{bottom:435.026667pt;}
.y7b{bottom:449.160000pt;}
.y21{bottom:454.800000pt;}
.y63{bottom:455.066667pt;}
.y42{bottom:461.200000pt;}
.y7a{bottom:468.666667pt;}
.y20{bottom:474.266667pt;}
.y62{bottom:484.133333pt;}
.y41{bottom:490.266667pt;}
.y1f{bottom:493.733333pt;}
.y79{bottom:504.400000pt;}
.y1e{bottom:513.200000pt;}
.y40{bottom:519.333333pt;}
.y78{bottom:523.866667pt;}
.y1d{bottom:532.666667pt;}
.y3f{bottom:548.666667pt;}
.y61{bottom:550.266667pt;}
.y1c{bottom:552.133333pt;}
.y77{bottom:559.333333pt;}
.y1a{bottom:571.600000pt;}
.y3e{bottom:577.733333pt;}
.y1b{bottom:578.266667pt;}
.y76{bottom:578.800000pt;}
.y60{bottom:579.600000pt;}
.y19{bottom:591.066667pt;}
.y75{bottom:598.533333pt;}
.y3d{bottom:607.106667pt;}
.y5f{bottom:608.693333pt;}
.y18{bottom:610.560000pt;}
.y17{bottom:630.026667pt;}
.y74{bottom:634.026667pt;}
.y3c{bottom:636.693333pt;}
.y5e{bottom:637.760000pt;}
.y16{bottom:649.506667pt;}
.y73{bottom:653.773333pt;}
.y3b{bottom:666.026667pt;}
.y5d{bottom:666.826667pt;}
.y15{bottom:669.226667pt;}
.y72{bottom:681.506667pt;}
.y14{bottom:688.706667pt;}
.y3a{bottom:695.093333pt;}
.y5c{bottom:695.893333pt;}
.y13{bottom:708.173333pt;}
.y71{bottom:718.026667pt;}
.y5b{bottom:725.226667pt;}
.y12{bottom:727.626667pt;}
.y38{bottom:732.173333pt;}
.y39{bottom:738.840000pt;}
.y11{bottom:747.093333pt;}
.y70{bottom:753.266667pt;}
.y5a{bottom:754.333333pt;}
.y37{bottom:761.266667pt;}
.y10{bottom:766.600000pt;}
.y59{bottom:783.400000pt;}
.yf{bottom:786.066667pt;}
.y35{bottom:790.600000pt;}
.y36{bottom:797.266667pt;}
.ye{bottom:805.533333pt;}
.y58{bottom:812.466667pt;}
.y34{bottom:819.933333pt;}
.yd{bottom:825.000000pt;}
.y57{bottom:841.533333pt;}
.y33{bottom:849.266667pt;}
.yc{bottom:851.133333pt;}
.y56{bottom:870.866667pt;}
.y32{bottom:878.866667pt;}
.yb{bottom:902.373333pt;}
.y31{bottom:907.960000pt;}
.y54{bottom:923.173333pt;}
.y30{bottom:937.040000pt;}
.ya{bottom:962.626667pt;}
.y2f{bottom:966.106667pt;}
.y2e{bottom:995.426667pt;}
.y9{bottom:996.773333pt;}
.y2d{bottom:1031.173333pt;}
.y2{bottom:1045.026667pt;}
.y2c{bottom:1054.666667pt;}
.y1{bottom:1062.400000pt;}
.h7{height:3.888021pt;}
.h4{height:13.866667pt;}
.hf{height:23.328125pt;}
.h12{height:25.660937pt;}
.hc{height:33.187500pt;}
.h11{height:34.546875pt;}
.h5{height:34.992188pt;}
.h10{height:38.880208pt;}
.hd{height:40.677083pt;}
.h6{height:41.333333pt;}
.h2{height:41.484375pt;}
.h15{height:48.812500pt;}
.h9{height:49.781250pt;}
.he{height:52.343750pt;}
.h3{height:58.351562pt;}
.hb{height:59.854167pt;}
.ha{height:63.656250pt;}
.h13{height:87.466667pt;}
.h8{height:122.031250pt;}
.h14{height:311.236523pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:57.866667pt;}
.w3{width:718.360000pt;}
.w4{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:37.866667pt;}
.x2{left:75.499988pt;}
.xb{left:79.233322pt;}
.x6{left:129.666667pt;}
.x13{left:132.299988pt;}
.xe{left:133.359988pt;}
.x5{left:145.933333pt;}
.xc{left:264.106655pt;}
.xa{left:267.573322pt;}
.x8{left:275.306643pt;}
.x9{left:279.293322pt;}
.xd{left:331.306655pt;}
.x7{left:350.800000pt;}
.x4{left:359.066667pt;}
.x11{left:373.199976pt;}
.x12{left:379.066655pt;}
.xf{left:398.533310pt;}
.x10{left:404.399988pt;}
.x15{left:573.773322pt;}
.x14{left:577.239988pt;}
.x1{left:718.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; }
  