
    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_d83387f73fade1277479ed45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')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_e7f7b4268ee2c9908c706391.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_700e089f36b988db3fee6c14.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_02d3d95f70f1943fff5005a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_f1f184a17e1494f86c69a9b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908691;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_f9fc67b28b571894d75d46cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_d7a699255359c2338b5ea5aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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:27.360000px;}
.ls4{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.900000px;}
.ls14{letter-spacing:2.880000px;}
.lsa{letter-spacing:5.940000px;}
.ls1{letter-spacing:23.040000px;}
.ls0{letter-spacing:41.040000px;}
.ls19{letter-spacing:54.120000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.576000px;}
.ws1{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.wse{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.280000px;}
.ws0{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:0.000000px;}
._15{margin-left:-4.392000px;}
._1{margin-left:-2.796000px;}
._0{margin-left:-1.324800px;}
._6{width:1.120800px;}
._c{width:2.364000px;}
._13{width:3.684000px;}
._e{width:5.676000px;}
._12{width:6.840000px;}
._9{width:8.280000px;}
._a{width:9.451200px;}
._b{width:10.788000px;}
._14{width:12.086400px;}
._20{width:13.972800px;}
._1e{width:15.648000px;}
._11{width:16.802400px;}
._f{width:19.872000px;}
._10{width:20.875200px;}
._8{width:22.392000px;}
._7{width:23.580000px;}
._16{width:25.272000px;}
._17{width:26.928000px;}
._18{width:27.984000px;}
._23{width:29.649600px;}
._21{width:31.536000px;}
._22{width:32.628000px;}
._27{width:33.808800px;}
._1b{width:34.968000px;}
._19{width:36.564000px;}
._1a{width:38.388000px;}
._1c{width:40.032000px;}
._d{width:41.220000px;}
._1d{width:42.523200px;}
._26{width:44.308800px;}
._25{width:45.336000px;}
._1f{width:61.056000px;}
._4{width:88.068000px;}
._24{width:141.398400px;}
._3{width:195.156000px;}
._2{width:196.560000px;}
._5{width:307.124160px;}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,103,152);}
.fc1{color:rgb(112,48,160);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.460000px;}
.y5{bottom:54.720000px;}
.y4{bottom:73.620000px;}
.y5b{bottom:92.520000px;}
.y5a{bottom:97.740000px;}
.y31{bottom:109.440000px;}
.y59{bottom:109.800000px;}
.y62{bottom:110.700000px;}
.y58{bottom:127.080000px;}
.y30{bottom:133.200000px;}
.y57{bottom:144.360000px;}
.y61{bottom:145.440000px;}
.y56{bottom:149.580000px;}
.y2f{bottom:156.990000px;}
.y6f{bottom:161.490000px;}
.y55{bottom:162.390000px;}
.y6e{bottom:166.710000px;}
.y60{bottom:169.230000px;}
.y6d{bottom:178.770000px;}
.y2e{bottom:180.930000px;}
.y6c{bottom:183.990000px;}
.y54{bottom:192.990000px;}
.y6b{bottom:196.050000px;}
.y6a{bottom:201.270000px;}
.y2d{bottom:204.690000px;}
.y69{bottom:214.230000px;}
.y53{bottom:216.930000px;}
.y2c{bottom:228.450000px;}
.y68{bottom:240.330000px;}
.y52{bottom:240.690000px;}
.y2b{bottom:251.850000px;}
.y67{bottom:264.090000px;}
.y51{bottom:264.450000px;}
.y2a{bottom:276.150000px;}
.y50{bottom:288.210000px;}
.y29{bottom:299.910000px;}
.y4f{bottom:312.150000px;}
.y28{bottom:323.670000px;}
.y4e{bottom:335.910000px;}
.y27{bottom:347.430000px;}
.y4d{bottom:359.670000px;}
.y26{bottom:371.370000px;}
.y4c{bottom:383.430000px;}
.y66{bottom:390.270000px;}
.y25{bottom:395.130000px;}
.y4b{bottom:407.415000px;}
.y65{bottom:414.255000px;}
.y24{bottom:418.935000px;}
.y4a{bottom:431.175000px;}
.y23{bottom:442.695000px;}
.y49{bottom:454.935000px;}
.y64{bottom:461.775000px;}
.y22{bottom:466.095000px;}
.y48{bottom:478.695000px;}
.y21{bottom:490.035000px;}
.y47{bottom:502.455000px;}
.y20{bottom:513.795000px;}
.y46{bottom:526.395000px;}
.y5f{bottom:533.235000px;}
.y1f{bottom:537.555000px;}
.y45{bottom:550.155000px;}
.y44{bottom:573.915000px;}
.y1e{bottom:579.675000px;}
.y72{bottom:588.675000px;}
.y43{bottom:597.315000px;}
.y5e{bottom:597.675000px;}
.y1d{bottom:603.615000px;}
.y42{bottom:621.615000px;}
.y71{bottom:622.515000px;}
.y1c{bottom:627.375000px;}
.y41{bottom:645.375000px;}
.y1b{bottom:651.165000px;}
.y5d{bottom:652.245000px;}
.y40{bottom:669.165000px;}
.y1a{bottom:674.925000px;}
.y63{bottom:676.005000px;}
.y3f{bottom:692.925000px;}
.y19{bottom:698.865000px;}
.y3e{bottom:716.505000px;}
.y5c{bottom:716.865000px;}
.y18{bottom:722.625000px;}
.y3c{bottom:740.625000px;}
.y17{bottom:746.385000px;}
.y3d{bottom:747.465000px;}
.y3b{bottom:764.385000px;}
.y16{bottom:769.785000px;}
.y3a{bottom:788.145000px;}
.y15{bottom:793.725000px;}
.y39{bottom:812.085000px;}
.y14{bottom:817.485000px;}
.y38{bottom:835.845000px;}
.y13{bottom:841.245000px;}
.y37{bottom:859.605000px;}
.y12{bottom:883.365000px;}
.y70{bottom:906.990000px;}
.y11{bottom:907.350000px;}
.y10{bottom:931.110000px;}
.yf{bottom:954.870000px;}
.ye{bottom:978.630000px;}
.yd{bottom:1002.210000px;}
.y35{bottom:1002.570000px;}
.y36{bottom:1009.410000px;}
.yc{bottom:1026.330000px;}
.yb{bottom:1050.090000px;}
.ya{bottom:1073.850000px;}
.y9{bottom:1097.250000px;}
.y34{bottom:1097.610000px;}
.y8{bottom:1121.190000px;}
.y33{bottom:1121.550000px;}
.y7{bottom:1144.950000px;}
.y32{bottom:1145.310000px;}
.y3{bottom:1165.320000px;}
.y2{bottom:1184.580000px;}
.y1{bottom:1205.100000px;}
.h9{height:38.158594px;}
.h8{height:47.344922px;}
.h7{height:50.484375px;}
.ha{height:58.651172px;}
.h6{height:62.261719px;}
.h4{height:65.884219px;}
.h2{height:66.757500px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:74.004654px;}
.hb{height:74.704922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x1b{left:132.515987px;}
.x27{left:133.775987px;}
.x12{left:137.555987px;}
.x3{left:138.635987px;}
.xb{left:143.675987px;}
.x2b{left:159.689987px;}
.xc{left:161.489987px;}
.x4{left:174.989987px;}
.xa{left:180.749987px;}
.x11{left:185.789987px;}
.xf{left:280.334987px;}
.x15{left:289.874987px;}
.x9{left:324.074987px;}
.x6{left:343.694987px;}
.x10{left:345.854987px;}
.xd{left:360.974987px;}
.x8{left:368.714987px;}
.xe{left:371.594987px;}
.x5{left:379.694987px;}
.x14{left:385.094987px;}
.x2a{left:389.774987px;}
.x24{left:405.614973px;}
.x7{left:410.834987px;}
.x16{left:413.894987px;}
.x13{left:431.894987px;}
.x2{left:478.364987px;}
.x1e{left:497.084973px;}
.x1f{left:503.204987px;}
.x28{left:534.704973px;}
.x29{left:546.944987px;}
.x25{left:598.064973px;}
.x19{left:603.104973px;}
.x26{left:604.184987px;}
.x1a{left:609.224987px;}
.x1c{left:632.669973px;}
.x1d{left:638.789987px;}
.x17{left:645.449973px;}
.x18{left:651.569987px;}
.x22{left:747.149973px;}
.x23{left:753.269987px;}
.x20{left:820.259973px;}
.x21{left:826.379987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls14{letter-spacing:2.560000pt;}
.lsa{letter-spacing:5.280000pt;}
.ls1{letter-spacing:20.480000pt;}
.ls0{letter-spacing:36.480000pt;}
.ls19{letter-spacing:48.106667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws0{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:0.000000pt;}
._15{margin-left:-3.904000pt;}
._1{margin-left:-2.485333pt;}
._0{margin-left:-1.177600pt;}
._6{width:0.996267pt;}
._c{width:2.101333pt;}
._13{width:3.274667pt;}
._e{width:5.045333pt;}
._12{width:6.080000pt;}
._9{width:7.360000pt;}
._a{width:8.401067pt;}
._b{width:9.589333pt;}
._14{width:10.743467pt;}
._20{width:12.420267pt;}
._1e{width:13.909333pt;}
._11{width:14.935467pt;}
._f{width:17.664000pt;}
._10{width:18.555733pt;}
._8{width:19.904000pt;}
._7{width:20.960000pt;}
._16{width:22.464000pt;}
._17{width:23.936000pt;}
._18{width:24.874667pt;}
._23{width:26.355200pt;}
._21{width:28.032000pt;}
._22{width:29.002667pt;}
._27{width:30.052267pt;}
._1b{width:31.082667pt;}
._19{width:32.501333pt;}
._1a{width:34.122667pt;}
._1c{width:35.584000pt;}
._d{width:36.640000pt;}
._1d{width:37.798400pt;}
._26{width:39.385600pt;}
._25{width:40.298667pt;}
._1f{width:54.272000pt;}
._4{width:78.282667pt;}
._24{width:125.687467pt;}
._3{width:173.472000pt;}
._2{width:174.720000pt;}
._5{width:272.999253pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.520000pt;}
.y5{bottom:48.640000pt;}
.y4{bottom:65.440000pt;}
.y5b{bottom:82.240000pt;}
.y5a{bottom:86.880000pt;}
.y31{bottom:97.280000pt;}
.y59{bottom:97.600000pt;}
.y62{bottom:98.400000pt;}
.y58{bottom:112.960000pt;}
.y30{bottom:118.400000pt;}
.y57{bottom:128.320000pt;}
.y61{bottom:129.280000pt;}
.y56{bottom:132.960000pt;}
.y2f{bottom:139.546667pt;}
.y6f{bottom:143.546667pt;}
.y55{bottom:144.346667pt;}
.y6e{bottom:148.186667pt;}
.y60{bottom:150.426667pt;}
.y6d{bottom:158.906667pt;}
.y2e{bottom:160.826667pt;}
.y6c{bottom:163.546667pt;}
.y54{bottom:171.546667pt;}
.y6b{bottom:174.266667pt;}
.y6a{bottom:178.906667pt;}
.y2d{bottom:181.946667pt;}
.y69{bottom:190.426667pt;}
.y53{bottom:192.826667pt;}
.y2c{bottom:203.066667pt;}
.y68{bottom:213.626667pt;}
.y52{bottom:213.946667pt;}
.y2b{bottom:223.866667pt;}
.y67{bottom:234.746667pt;}
.y51{bottom:235.066667pt;}
.y2a{bottom:245.466667pt;}
.y50{bottom:256.186667pt;}
.y29{bottom:266.586667pt;}
.y4f{bottom:277.466667pt;}
.y28{bottom:287.706667pt;}
.y4e{bottom:298.586667pt;}
.y27{bottom:308.826667pt;}
.y4d{bottom:319.706667pt;}
.y26{bottom:330.106667pt;}
.y4c{bottom:340.826667pt;}
.y66{bottom:346.906667pt;}
.y25{bottom:351.226667pt;}
.y4b{bottom:362.146667pt;}
.y65{bottom:368.226667pt;}
.y24{bottom:372.386667pt;}
.y4a{bottom:383.266667pt;}
.y23{bottom:393.506667pt;}
.y49{bottom:404.386667pt;}
.y64{bottom:410.466667pt;}
.y22{bottom:414.306667pt;}
.y48{bottom:425.506667pt;}
.y21{bottom:435.586667pt;}
.y47{bottom:446.626667pt;}
.y20{bottom:456.706667pt;}
.y46{bottom:467.906667pt;}
.y5f{bottom:473.986667pt;}
.y1f{bottom:477.826667pt;}
.y45{bottom:489.026667pt;}
.y44{bottom:510.146667pt;}
.y1e{bottom:515.266667pt;}
.y72{bottom:523.266667pt;}
.y43{bottom:530.946667pt;}
.y5e{bottom:531.266667pt;}
.y1d{bottom:536.546667pt;}
.y42{bottom:552.546667pt;}
.y71{bottom:553.346667pt;}
.y1c{bottom:557.666667pt;}
.y41{bottom:573.666667pt;}
.y1b{bottom:578.813333pt;}
.y5d{bottom:579.773333pt;}
.y40{bottom:594.813333pt;}
.y1a{bottom:599.933333pt;}
.y63{bottom:600.893333pt;}
.y3f{bottom:615.933333pt;}
.y19{bottom:621.213333pt;}
.y3e{bottom:636.893333pt;}
.y5c{bottom:637.213333pt;}
.y18{bottom:642.333333pt;}
.y3c{bottom:658.333333pt;}
.y17{bottom:663.453333pt;}
.y3d{bottom:664.413333pt;}
.y3b{bottom:679.453333pt;}
.y16{bottom:684.253333pt;}
.y3a{bottom:700.573333pt;}
.y15{bottom:705.533333pt;}
.y39{bottom:721.853333pt;}
.y14{bottom:726.653333pt;}
.y38{bottom:742.973333pt;}
.y13{bottom:747.773333pt;}
.y37{bottom:764.093333pt;}
.y12{bottom:785.213333pt;}
.y70{bottom:806.213333pt;}
.y11{bottom:806.533333pt;}
.y10{bottom:827.653333pt;}
.yf{bottom:848.773333pt;}
.ye{bottom:869.893333pt;}
.yd{bottom:890.853333pt;}
.y35{bottom:891.173333pt;}
.y36{bottom:897.253333pt;}
.yc{bottom:912.293333pt;}
.yb{bottom:933.413333pt;}
.ya{bottom:954.533333pt;}
.y9{bottom:975.333333pt;}
.y34{bottom:975.653333pt;}
.y8{bottom:996.613333pt;}
.y33{bottom:996.933333pt;}
.y7{bottom:1017.733333pt;}
.y32{bottom:1018.053333pt;}
.y3{bottom:1035.840000pt;}
.y2{bottom:1052.960000pt;}
.y1{bottom:1071.200000pt;}
.h9{height:33.918750pt;}
.h8{height:42.084375pt;}
.h7{height:44.875000pt;}
.ha{height:52.134375pt;}
.h6{height:55.343750pt;}
.h4{height:58.563750pt;}
.h2{height:59.340000pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:65.781915pt;}
.hb{height:66.404375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x1b{left:117.791988pt;}
.x27{left:118.911988pt;}
.x12{left:122.271988pt;}
.x3{left:123.231988pt;}
.xb{left:127.711988pt;}
.x2b{left:141.946655pt;}
.xc{left:143.546655pt;}
.x4{left:155.546655pt;}
.xa{left:160.666655pt;}
.x11{left:165.146655pt;}
.xf{left:249.186655pt;}
.x15{left:257.666655pt;}
.x9{left:288.066655pt;}
.x6{left:305.506655pt;}
.x10{left:307.426655pt;}
.xd{left:320.866655pt;}
.x8{left:327.746655pt;}
.xe{left:330.306655pt;}
.x5{left:337.506655pt;}
.x14{left:342.306655pt;}
.x2a{left:346.466655pt;}
.x24{left:360.546643pt;}
.x7{left:365.186655pt;}
.x16{left:367.906655pt;}
.x13{left:383.906655pt;}
.x2{left:425.213322pt;}
.x1e{left:441.853310pt;}
.x1f{left:447.293322pt;}
.x28{left:475.293310pt;}
.x29{left:486.173322pt;}
.x25{left:531.613310pt;}
.x19{left:536.093310pt;}
.x26{left:537.053322pt;}
.x1a{left:541.533322pt;}
.x1c{left:562.373310pt;}
.x1d{left:567.813322pt;}
.x17{left:573.733310pt;}
.x18{left:579.173322pt;}
.x22{left:664.133310pt;}
.x23{left:669.573322pt;}
.x20{left:729.119976pt;}
.x21{left:734.559988pt;}
}




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