
    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_4796bbed50b0b0052f5176da.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5ca31434a069b0209ded415f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f68348f03b4a14dfeef2741a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_5c26141d3a10717ebc692f2b.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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;}
}
.ws13{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.657700px;}
.ws1f{word-spacing:-38.655900px;}
.ws12{word-spacing:-38.655600px;}
.ws4e{word-spacing:-38.653200px;}
.ws20{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.wsd{word-spacing:-38.645400px;}
.ws1e{word-spacing:-38.588400px;}
.ws35{word-spacing:-38.446800px;}
.ws57{word-spacing:-38.444100px;}
.ws45{word-spacing:-38.435400px;}
.wsb{word-spacing:-38.430000px;}
.ws3{word-spacing:-38.374200px;}
.ws4d{word-spacing:-38.359800px;}
.wsc{word-spacing:-38.357400px;}
.ws51{word-spacing:-38.166000px;}
.ws9{word-spacing:-38.086800px;}
.ws53{word-spacing:-38.081700px;}
.wsa{word-spacing:-38.076300px;}
.ws0{word-spacing:-37.944000px;}
.ws1d{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws55{word-spacing:-37.935900px;}
.ws4c{word-spacing:-37.935000px;}
.wse{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.wsf{word-spacing:-37.930500px;}
.ws16{word-spacing:-37.431000px;}
.ws2e{word-spacing:-36.712800px;}
.ws2d{word-spacing:-36.491400px;}
.ws22{word-spacing:-35.274600px;}
.ws2c{word-spacing:-35.053200px;}
.ws38{word-spacing:-34.339200px;}
.ws24{word-spacing:-33.591600px;}
.ws8{word-spacing:-33.547800px;}
.ws50{word-spacing:-32.904000px;}
.ws17{word-spacing:-32.178600px;}
.ws19{word-spacing:-31.680000px;}
.ws3b{word-spacing:-30.952800px;}
.ws49{word-spacing:-30.739200px;}
.ws34{word-spacing:-30.013200px;}
.ws3c{word-spacing:-27.648600px;}
.ws3d{word-spacing:-26.424000px;}
.ws18{word-spacing:-26.416800px;}
.ws15{word-spacing:-26.404200px;}
.ws36{word-spacing:-25.917000px;}
.ws4a{word-spacing:-25.678800px;}
.ws52{word-spacing:-24.984000px;}
.ws23{word-spacing:-24.762600px;}
.ws21{word-spacing:-23.544000px;}
.ws2b{word-spacing:-23.040000px;}
.ws14{word-spacing:-22.813200px;}
.ws4f{word-spacing:-22.090200px;}
.ws37{word-spacing:-20.661300px;}
.ws3e{word-spacing:-19.002600px;}
.ws46{word-spacing:-18.997200px;}
.ws7{word-spacing:-18.472500px;}
.ws56{word-spacing:-17.070000px;}
.ws48{word-spacing:-17.048700px;}
.ws1c{word-spacing:-15.120000px;}
.ws54{word-spacing:-9.345600px;}
.ws1a{word-spacing:-7.922400px;}
.ws4b{word-spacing:-7.902000px;}
.ws10{word-spacing:-3.597900px;}
.ws11{word-spacing:-3.591000px;}
.ws3a{word-spacing:-2.660100px;}
.ws39{word-spacing:-1.224000px;}
.ws1b{word-spacing:2.611800px;}
.ws44{word-spacing:12.466800px;}
.ws47{word-spacing:16.273200px;}
.ws2a{word-spacing:34.554000px;}
.ws28{word-spacing:128.154000px;}
.ws43{word-spacing:165.600000px;}
.ws26{word-spacing:240.925200px;}
.ws27{word-spacing:277.200000px;}
.ws30{word-spacing:282.240000px;}
.ws41{word-spacing:285.840000px;}
.ws33{word-spacing:310.320000px;}
.ws29{word-spacing:326.154000px;}
.ws32{word-spacing:334.317600px;}
.ws25{word-spacing:346.346400px;}
.ws2f{word-spacing:439.637400px;}
.ws1{word-spacing:455.092800px;}
.ws3f{word-spacing:596.601000px;}
.ws31{word-spacing:597.600000px;}
.ws42{word-spacing:606.954000px;}
.ws40{word-spacing:703.440000px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._8{width:19.935000px;}
._e{width:22.153200px;}
._10{width:23.422200px;}
._9{width:24.779400px;}
._a{width:25.951800px;}
._19{width:27.349200px;}
._1c{width:29.809800px;}
._7{width:31.228800px;}
._f{width:32.406000px;}
._6{width:34.405200px;}
._1{width:36.000000px;}
._22{width:38.155200px;}
._24{width:40.026000px;}
._d{width:42.042000px;}
._b{width:49.053600px;}
._5{width:53.349900px;}
._1b{width:54.928200px;}
._1a{width:56.098800px;}
._c{width:59.616000px;}
._21{width:69.469200px;}
._23{width:73.720800px;}
._15{width:91.552800px;}
._13{width:185.146800px;}
._20{width:222.945600px;}
._12{width:298.066800px;}
._18{width:367.488000px;}
._14{width:383.140800px;}
._17{width:391.292400px;}
._11{width:403.533600px;}
._0{width:612.144000px;}
._1d{width:653.679000px;}
._16{width:654.768000px;}
._1f{width:664.206000px;}
._1e{width:760.729200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y51{bottom:100.875000px;}
.y2b{bottom:141.736500px;}
.y50{bottom:142.636500px;}
.y2a{bottom:183.496500px;}
.y4f{bottom:184.396500px;}
.y29{bottom:204.196500px;}
.y28{bottom:224.896500px;}
.y4e{bottom:225.975000px;}
.y27{bottom:245.596500px;}
.y4d{bottom:246.675000px;}
.y26{bottom:266.295000px;}
.y4c{bottom:267.375000px;}
.y25{bottom:286.996500px;}
.y4b{bottom:288.075000px;}
.y24{bottom:307.696500px;}
.y4a{bottom:308.775000px;}
.y23{bottom:328.396500px;}
.y49{bottom:329.475000px;}
.y22{bottom:349.096500px;}
.y48{bottom:350.175000px;}
.y21{bottom:369.795000px;}
.y20{bottom:390.496500px;}
.y47{bottom:391.936500px;}
.y1f{bottom:411.196500px;}
.y1e{bottom:431.896500px;}
.y46{bottom:433.696500px;}
.y45{bottom:454.396500px;}
.y1d{bottom:473.475000px;}
.y44{bottom:475.096500px;}
.y43{bottom:495.796500px;}
.y1c{bottom:515.236500px;}
.y42{bottom:516.496500px;}
.y41{bottom:537.195000px;}
.y1b{bottom:556.996500px;}
.y40{bottom:557.896500px;}
.y1a{bottom:577.695000px;}
.y3f{bottom:578.596500px;}
.y19{bottom:598.396500px;}
.y3e{bottom:599.295000px;}
.y18{bottom:619.096500px;}
.y17{bottom:639.795000px;}
.y3d{bottom:640.875000px;}
.y16{bottom:660.496500px;}
.y15{bottom:681.195000px;}
.y3c{bottom:682.636500px;}
.y14{bottom:701.896500px;}
.y3b{bottom:703.336500px;}
.y13{bottom:722.596500px;}
.y3a{bottom:724.036500px;}
.y12{bottom:743.295000px;}
.y5a{bottom:743.475000px;}
.y39{bottom:744.736500px;}
.y11{bottom:763.996500px;}
.y59{bottom:764.175000px;}
.y38{bottom:765.436500px;}
.y37{bottom:786.136500px;}
.y10{bottom:805.575000px;}
.y58{bottom:805.936500px;}
.y36{bottom:806.836500px;}
.y35{bottom:827.536500px;}
.yf{bottom:847.336500px;}
.y57{bottom:847.695000px;}
.ye{bottom:868.036500px;}
.y56{bottom:868.395000px;}
.y34{bottom:869.295000px;}
.yd{bottom:909.795000px;}
.y55{bottom:909.975000px;}
.y33{bottom:910.875000px;}
.y54{bottom:930.675000px;}
.y32{bottom:931.575000px;}
.yc{bottom:951.375000px;}
.y31{bottom:952.275000px;}
.y53{bottom:972.436500px;}
.y30{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y2f{bottom:993.675000px;}
.y2e{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2d{bottom:1035.075000px;}
.y52{bottom:1055.595000px;}
.y2c{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:138.780000px;}
.x5{left:140.760000px;}
.x9{left:239.400000px;}
.x8{left:420.300000px;}
.x3{left:461.625000px;}
.x6{left:479.160000px;}
.x7{left:501.660000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws1f{word-spacing:-34.360800pt;}
.ws12{word-spacing:-34.360533pt;}
.ws4e{word-spacing:-34.358400pt;}
.ws20{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.wsd{word-spacing:-34.351467pt;}
.ws1e{word-spacing:-34.300800pt;}
.ws35{word-spacing:-34.174933pt;}
.ws57{word-spacing:-34.172533pt;}
.ws45{word-spacing:-34.164800pt;}
.wsb{word-spacing:-34.160000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws4d{word-spacing:-34.097600pt;}
.wsc{word-spacing:-34.095467pt;}
.ws51{word-spacing:-33.925333pt;}
.ws9{word-spacing:-33.854933pt;}
.ws53{word-spacing:-33.850400pt;}
.wsa{word-spacing:-33.845600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws1d{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws55{word-spacing:-33.720800pt;}
.ws4c{word-spacing:-33.720000pt;}
.wse{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.wsf{word-spacing:-33.716000pt;}
.ws16{word-spacing:-33.272000pt;}
.ws2e{word-spacing:-32.633600pt;}
.ws2d{word-spacing:-32.436800pt;}
.ws22{word-spacing:-31.355200pt;}
.ws2c{word-spacing:-31.158400pt;}
.ws38{word-spacing:-30.523733pt;}
.ws24{word-spacing:-29.859200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws50{word-spacing:-29.248000pt;}
.ws17{word-spacing:-28.603200pt;}
.ws19{word-spacing:-28.160000pt;}
.ws3b{word-spacing:-27.513600pt;}
.ws49{word-spacing:-27.323733pt;}
.ws34{word-spacing:-26.678400pt;}
.ws3c{word-spacing:-24.576533pt;}
.ws3d{word-spacing:-23.488000pt;}
.ws18{word-spacing:-23.481600pt;}
.ws15{word-spacing:-23.470400pt;}
.ws36{word-spacing:-23.037333pt;}
.ws4a{word-spacing:-22.825600pt;}
.ws52{word-spacing:-22.208000pt;}
.ws23{word-spacing:-22.011200pt;}
.ws21{word-spacing:-20.928000pt;}
.ws2b{word-spacing:-20.480000pt;}
.ws14{word-spacing:-20.278400pt;}
.ws4f{word-spacing:-19.635733pt;}
.ws37{word-spacing:-18.365600pt;}
.ws3e{word-spacing:-16.891200pt;}
.ws46{word-spacing:-16.886400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws56{word-spacing:-15.173333pt;}
.ws48{word-spacing:-15.154400pt;}
.ws1c{word-spacing:-13.440000pt;}
.ws54{word-spacing:-8.307200pt;}
.ws1a{word-spacing:-7.042133pt;}
.ws4b{word-spacing:-7.024000pt;}
.ws10{word-spacing:-3.198133pt;}
.ws11{word-spacing:-3.192000pt;}
.ws3a{word-spacing:-2.364533pt;}
.ws39{word-spacing:-1.088000pt;}
.ws1b{word-spacing:2.321600pt;}
.ws44{word-spacing:11.081600pt;}
.ws47{word-spacing:14.465067pt;}
.ws2a{word-spacing:30.714667pt;}
.ws28{word-spacing:113.914667pt;}
.ws43{word-spacing:147.200000pt;}
.ws26{word-spacing:214.155733pt;}
.ws27{word-spacing:246.400000pt;}
.ws30{word-spacing:250.880000pt;}
.ws41{word-spacing:254.080000pt;}
.ws33{word-spacing:275.840000pt;}
.ws29{word-spacing:289.914667pt;}
.ws32{word-spacing:297.171200pt;}
.ws25{word-spacing:307.863467pt;}
.ws2f{word-spacing:390.788800pt;}
.ws1{word-spacing:404.526933pt;}
.ws3f{word-spacing:530.312000pt;}
.ws31{word-spacing:531.200000pt;}
.ws42{word-spacing:539.514667pt;}
.ws40{word-spacing:625.280000pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._8{width:17.720000pt;}
._e{width:19.691733pt;}
._10{width:20.819733pt;}
._9{width:22.026133pt;}
._a{width:23.068267pt;}
._19{width:24.310400pt;}
._1c{width:26.497600pt;}
._7{width:27.758933pt;}
._f{width:28.805333pt;}
._6{width:30.582400pt;}
._1{width:32.000000pt;}
._22{width:33.915733pt;}
._24{width:35.578667pt;}
._d{width:37.370667pt;}
._b{width:43.603200pt;}
._5{width:47.422133pt;}
._1b{width:48.825067pt;}
._1a{width:49.865600pt;}
._c{width:52.992000pt;}
._21{width:61.750400pt;}
._23{width:65.529600pt;}
._15{width:81.380267pt;}
._13{width:164.574933pt;}
._20{width:198.173867pt;}
._12{width:264.948267pt;}
._18{width:326.656000pt;}
._14{width:340.569600pt;}
._17{width:347.815467pt;}
._11{width:358.696533pt;}
._0{width:544.128000pt;}
._1d{width:581.048000pt;}
._16{width:582.016000pt;}
._1f{width:590.405333pt;}
._1e{width:676.203733pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y51{bottom:89.666667pt;}
.y2b{bottom:125.988000pt;}
.y50{bottom:126.788000pt;}
.y2a{bottom:163.108000pt;}
.y4f{bottom:163.908000pt;}
.y29{bottom:181.508000pt;}
.y28{bottom:199.908000pt;}
.y4e{bottom:200.866667pt;}
.y27{bottom:218.308000pt;}
.y4d{bottom:219.266667pt;}
.y26{bottom:236.706667pt;}
.y4c{bottom:237.666667pt;}
.y25{bottom:255.108000pt;}
.y4b{bottom:256.066667pt;}
.y24{bottom:273.508000pt;}
.y4a{bottom:274.466667pt;}
.y23{bottom:291.908000pt;}
.y49{bottom:292.866667pt;}
.y22{bottom:310.308000pt;}
.y48{bottom:311.266667pt;}
.y21{bottom:328.706667pt;}
.y20{bottom:347.108000pt;}
.y47{bottom:348.388000pt;}
.y1f{bottom:365.508000pt;}
.y1e{bottom:383.908000pt;}
.y46{bottom:385.508000pt;}
.y45{bottom:403.908000pt;}
.y1d{bottom:420.866667pt;}
.y44{bottom:422.308000pt;}
.y43{bottom:440.708000pt;}
.y1c{bottom:457.988000pt;}
.y42{bottom:459.108000pt;}
.y41{bottom:477.506667pt;}
.y1b{bottom:495.108000pt;}
.y40{bottom:495.908000pt;}
.y1a{bottom:513.506667pt;}
.y3f{bottom:514.308000pt;}
.y19{bottom:531.908000pt;}
.y3e{bottom:532.706667pt;}
.y18{bottom:550.308000pt;}
.y17{bottom:568.706667pt;}
.y3d{bottom:569.666667pt;}
.y16{bottom:587.108000pt;}
.y15{bottom:605.506667pt;}
.y3c{bottom:606.788000pt;}
.y14{bottom:623.908000pt;}
.y3b{bottom:625.188000pt;}
.y13{bottom:642.308000pt;}
.y3a{bottom:643.588000pt;}
.y12{bottom:660.706667pt;}
.y5a{bottom:660.866667pt;}
.y39{bottom:661.988000pt;}
.y11{bottom:679.108000pt;}
.y59{bottom:679.266667pt;}
.y38{bottom:680.388000pt;}
.y37{bottom:698.788000pt;}
.y10{bottom:716.066667pt;}
.y58{bottom:716.388000pt;}
.y36{bottom:717.188000pt;}
.y35{bottom:735.588000pt;}
.yf{bottom:753.188000pt;}
.y57{bottom:753.506667pt;}
.ye{bottom:771.588000pt;}
.y56{bottom:771.906667pt;}
.y34{bottom:772.706667pt;}
.yd{bottom:808.706667pt;}
.y55{bottom:808.866667pt;}
.y33{bottom:809.666667pt;}
.y54{bottom:827.266667pt;}
.y32{bottom:828.066667pt;}
.yc{bottom:845.666667pt;}
.y31{bottom:846.466667pt;}
.y53{bottom:864.388000pt;}
.y30{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y2f{bottom:883.266667pt;}
.y2e{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2d{bottom:920.066667pt;}
.y52{bottom:938.306667pt;}
.y2c{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:123.360000pt;}
.x5{left:125.120000pt;}
.x9{left:212.800000pt;}
.x8{left:373.600000pt;}
.x3{left:410.333333pt;}
.x6{left:425.920000pt;}
.x7{left:445.920000pt;}
.x2{left:649.920000pt;}
}




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