
    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_2ccbdb4a4334bc7769105dc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c509273a4276ce0593a3eed9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7391e4484951fff2615c8f59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8e2ec96e26212a03408ba70b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-30.348000px;}
.ws2{word-spacing:-30.024000px;}
.ws7{word-spacing:-15.211993px;}
.ws4{word-spacing:-13.210560px;}
.ws5{word-spacing:-6.660000px;}
.ws9{word-spacing:-2.232000px;}
.ws6{word-spacing:-1.767416px;}
.ws8{word-spacing:-1.617721px;}
.wsa{word-spacing:-0.612000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:2.340000px;}
._1a{margin-left:-12.132000px;}
._17{margin-left:-9.793440px;}
._9{margin-left:-8.568000px;}
._8{margin-left:-7.020000px;}
._10{margin-left:-5.760000px;}
._11{margin-left:-4.644000px;}
._a{margin-left:-3.456000px;}
._7{margin-left:-2.016000px;}
._0{margin-left:-1.007899px;}
._6{width:1.296000px;}
._f{width:2.301120px;}
._e{width:3.679200px;}
._c{width:5.689440px;}
._d{width:7.269120px;}
._b{width:8.303040px;}
._1b{width:9.361440px;}
._19{width:13.330856px;}
._16{width:14.677819px;}
._3{width:15.768000px;}
._1{width:16.853522px;}
._15{width:20.002939px;}
._18{width:27.108000px;}
._14{width:28.116000px;}
._2{width:32.693522px;}
._13{width:42.624000px;}
._4{width:51.768000px;}
._12{width:72.648000px;}
._5{width:87.768000px;}
.fc3{color:rgb(0,153,153);}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,153);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:47.520000px;}
.fs5{font-size:54.719400px;}
.fs0{font-size:71.992800px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:50.760000px;}
.y1{bottom:52.200000px;}
.y79{bottom:68.400000px;}
.y78{bottom:82.800000px;}
.y52{bottom:93.600000px;}
.y21{bottom:105.120000px;}
.y96{bottom:106.560000px;}
.y44{bottom:113.760000px;}
.yb4{bottom:115.920000px;}
.y95{bottom:120.960000px;}
.y51{bottom:126.000000px;}
.y43{bottom:128.160000px;}
.y64{bottom:131.400000px;}
.y20{bottom:137.520000px;}
.y42{bottom:142.560000px;}
.yb3{bottom:148.320000px;}
.y50{bottom:158.400000px;}
.y63{bottom:160.920000px;}
.y39{bottom:163.080000px;}
.y1f{bottom:169.920000px;}
.y38{bottom:177.480000px;}
.yb2{bottom:180.720000px;}
.y77{bottom:183.240000px;}
.y4f{bottom:190.800000px;}
.y62{bottom:193.320000px;}
.y37{bottom:198.000000px;}
.y1e{bottom:202.320000px;}
.y61{bottom:209.520000px;}
.yb1{bottom:213.120000px;}
.y36{bottom:215.640000px;}
.y74{bottom:222.120000px;}
.y60{bottom:225.720000px;}
.y1d{bottom:234.720000px;}
.yb0{bottom:245.520000px;}
.y76{bottom:248.040000px;}
.y73{bottom:254.520000px;}
.y8b{bottom:258.120000px;}
.y1c{bottom:267.120000px;}
.yaf{bottom:277.920000px;}
.y9f{bottom:279.360000px;}
.y35{bottom:280.440000px;}
.y72{bottom:286.920000px;}
.y89{bottom:290.520000px;}
.y9e{bottom:293.760000px;}
.y7a{bottom:299.520000px;}
.y5f{bottom:309.600000px;}
.yae{bottom:310.320000px;}
.y34{bottom:312.840000px;}
.y71{bottom:319.320000px;}
.y88{bottom:322.920000px;}
.y1b{bottom:331.920000px;}
.y5e{bottom:342.000000px;}
.yad{bottom:342.720000px;}
.y33{bottom:345.240000px;}
.y70{bottom:351.720000px;}
.y4e{bottom:352.800000px;}
.y87{bottom:355.320000px;}
.y1a{bottom:364.320000px;}
.y5d{bottom:374.400000px;}
.yac{bottom:375.120000px;}
.y32{bottom:377.640000px;}
.ybc{bottom:383.400000px;}
.y6f{bottom:384.120000px;}
.y4d{bottom:385.200000px;}
.y86{bottom:387.720000px;}
.y19{bottom:396.720000px;}
.y9{bottom:402.120000px;}
.y5c{bottom:406.800000px;}
.yab{bottom:407.520000px;}
.y31{bottom:410.040000px;}
.y6e{bottom:416.520000px;}
.y4c{bottom:417.600000px;}
.y85{bottom:420.120000px;}
.y18{bottom:429.120000px;}
.y8{bottom:434.520000px;}
.y5b{bottom:439.200000px;}
.yaa{bottom:439.920000px;}
.y9d{bottom:441.000000px;}
.y30{bottom:442.440000px;}
.y6d{bottom:448.920000px;}
.y4b{bottom:450.000000px;}
.y8a{bottom:452.520000px;}
.y17{bottom:461.520000px;}
.y94{bottom:462.600000px;}
.y41{bottom:466.200000px;}
.y7{bottom:466.920000px;}
.y5a{bottom:471.600000px;}
.y27{bottom:472.320000px;}
.y9c{bottom:473.400000px;}
.y2f{bottom:474.840000px;}
.y6c{bottom:481.320000px;}
.y4a{bottom:482.400000px;}
.y84{bottom:484.920000px;}
.y16{bottom:493.920000px;}
.y93{bottom:495.000000px;}
.y40{bottom:498.600000px;}
.y59{bottom:504.000000px;}
.y26{bottom:504.720000px;}
.y9b{bottom:505.800000px;}
.y2e{bottom:507.240000px;}
.ya3{bottom:509.400000px;}
.y6b{bottom:513.720000px;}
.y49{bottom:514.800000px;}
.y83{bottom:517.320000px;}
.y15{bottom:526.320000px;}
.y92{bottom:527.400000px;}
.y3f{bottom:531.000000px;}
.y58{bottom:536.400000px;}
.y25{bottom:537.120000px;}
.y9a{bottom:538.200000px;}
.y2d{bottom:539.640000px;}
.ya2{bottom:541.800000px;}
.y6{bottom:544.680000px;}
.y6a{bottom:546.120000px;}
.y48{bottom:547.200000px;}
.y82{bottom:549.720000px;}
.y14{bottom:558.720000px;}
.y91{bottom:559.800000px;}
.y3e{bottom:563.400000px;}
.ya7{bottom:565.200000px;}
.y57{bottom:568.800000px;}
.y24{bottom:569.520000px;}
.y99{bottom:570.600000px;}
.y2c{bottom:572.040000px;}
.y7c{bottom:574.200000px;}
.y69{bottom:578.520000px;}
.y47{bottom:579.600000px;}
.y81{bottom:582.120000px;}
.y5{bottom:587.880000px;}
.y13{bottom:591.120000px;}
.y90{bottom:592.200000px;}
.y3d{bottom:595.800000px;}
.ya6{bottom:597.600000px;}
.y56{bottom:601.200000px;}
.y23{bottom:601.920000px;}
.y98{bottom:603.000000px;}
.y2b{bottom:604.440000px;}
.ya1{bottom:606.600000px;}
.y68{bottom:610.920000px;}
.y46{bottom:612.000000px;}
.y80{bottom:614.520000px;}
.y7b{bottom:617.400000px;}
.y12{bottom:623.520000px;}
.y8f{bottom:624.600000px;}
.ybb{bottom:625.320000px;}
.y3c{bottom:628.200000px;}
.ya5{bottom:630.000000px;}
.y4{bottom:631.080000px;}
.y55{bottom:633.600000px;}
.ya9{bottom:634.320000px;}
.y97{bottom:635.400000px;}
.y2a{bottom:636.840000px;}
.ya0{bottom:639.000000px;}
.y3{bottom:641.160000px;}
.y67{bottom:643.320000px;}
.y45{bottom:644.400000px;}
.y8d{bottom:646.200000px;}
.y7f{bottom:646.920000px;}
.y28{bottom:649.080000px;}
.y11{bottom:655.920000px;}
.y8e{bottom:657.000000px;}
.yba{bottom:657.720000px;}
.y3b{bottom:660.600000px;}
.ya4{bottom:662.400000px;}
.y54{bottom:666.000000px;}
.y22{bottom:666.720000px;}
.y29{bottom:669.240000px;}
.y65{bottom:671.400000px;}
.y66{bottom:675.720000px;}
.y7e{bottom:679.320000px;}
.y10{bottom:688.320000px;}
.y8c{bottom:689.400000px;}
.yb9{bottom:690.120000px;}
.y3a{bottom:693.000000px;}
.ya8{bottom:694.080000px;}
.y53{bottom:698.400000px;}
.y75{bottom:701.640000px;}
.y7d{bottom:711.720000px;}
.yf{bottom:720.720000px;}
.yb8{bottom:722.520000px;}
.yb7{bottom:754.920000px;}
.ye{bottom:776.880000px;}
.yb6{bottom:787.320000px;}
.yd{bottom:791.280000px;}
.yc{bottom:805.680000px;}
.yb5{bottom:819.720000px;}
.yb{bottom:820.080000px;}
.ya{bottom:834.480000px;}
.h5{height:49.561875px;}
.h6{height:57.070624px;}
.h1{height:75.086241px;}
.h2{height:75.093750px;}
.h4{height:112.640625px;}
.h7{height:124.655625px;}
.h3{height:150.187500px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:114.479850px;}
.x5{left:120.240000px;}
.x2{left:129.240000px;}
.x6{left:156.240000px;}
.x9{left:157.320000px;}
.x8{left:163.800000px;}
.x7{left:165.240000px;}
.x1b{left:174.600000px;}
.x10{left:183.240000px;}
.xa{left:190.440000px;}
.x3{left:192.240000px;}
.x13{left:199.440000px;}
.x15{left:208.440000px;}
.xf{left:210.240000px;}
.xb{left:217.440000px;}
.xe{left:219.240000px;}
.xc{left:225.000000px;}
.x16{left:226.440000px;}
.x1a{left:231.120000px;}
.x14{left:239.040000px;}
.x11{left:244.440000px;}
.x19{left:247.320000px;}
.x18{left:249.120000px;}
.x17{left:256.320000px;}
.xd{left:271.440000px;}
.x12{left:274.320000px;}
.x1d{left:523.440000px;}
.x1c{left:651.240000px;}
.x4{left:869.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ws1{word-spacing:-26.976000pt;}
.ws2{word-spacing:-26.688000pt;}
.ws7{word-spacing:-13.521772pt;}
.ws4{word-spacing:-11.742720pt;}
.ws5{word-spacing:-5.920000pt;}
.ws9{word-spacing:-1.984000pt;}
.ws6{word-spacing:-1.571037pt;}
.ws8{word-spacing:-1.437974pt;}
.wsa{word-spacing:-0.544000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:2.080000pt;}
._1a{margin-left:-10.784000pt;}
._17{margin-left:-8.705280pt;}
._9{margin-left:-7.616000pt;}
._8{margin-left:-6.240000pt;}
._10{margin-left:-5.120000pt;}
._11{margin-left:-4.128000pt;}
._a{margin-left:-3.072000pt;}
._7{margin-left:-1.792000pt;}
._0{margin-left:-0.895910pt;}
._6{width:1.152000pt;}
._f{width:2.045440pt;}
._e{width:3.270400pt;}
._c{width:5.057280pt;}
._d{width:6.461440pt;}
._b{width:7.380480pt;}
._1b{width:8.321280pt;}
._19{width:11.849650pt;}
._16{width:13.046950pt;}
._3{width:14.016000pt;}
._1{width:14.980909pt;}
._15{width:17.780390pt;}
._18{width:24.096000pt;}
._14{width:24.992000pt;}
._2{width:29.060909pt;}
._13{width:37.888000pt;}
._4{width:46.016000pt;}
._12{width:64.576000pt;}
._5{width:78.016000pt;}
.fs4{font-size:42.240000pt;}
.fs5{font-size:48.639467pt;}
.fs0{font-size:63.993600pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:45.120000pt;}
.y1{bottom:46.400000pt;}
.y79{bottom:60.800000pt;}
.y78{bottom:73.600000pt;}
.y52{bottom:83.200000pt;}
.y21{bottom:93.440000pt;}
.y96{bottom:94.720000pt;}
.y44{bottom:101.120000pt;}
.yb4{bottom:103.040000pt;}
.y95{bottom:107.520000pt;}
.y51{bottom:112.000000pt;}
.y43{bottom:113.920000pt;}
.y64{bottom:116.800000pt;}
.y20{bottom:122.240000pt;}
.y42{bottom:126.720000pt;}
.yb3{bottom:131.840000pt;}
.y50{bottom:140.800000pt;}
.y63{bottom:143.040000pt;}
.y39{bottom:144.960000pt;}
.y1f{bottom:151.040000pt;}
.y38{bottom:157.760000pt;}
.yb2{bottom:160.640000pt;}
.y77{bottom:162.880000pt;}
.y4f{bottom:169.600000pt;}
.y62{bottom:171.840000pt;}
.y37{bottom:176.000000pt;}
.y1e{bottom:179.840000pt;}
.y61{bottom:186.240000pt;}
.yb1{bottom:189.440000pt;}
.y36{bottom:191.680000pt;}
.y74{bottom:197.440000pt;}
.y60{bottom:200.640000pt;}
.y1d{bottom:208.640000pt;}
.yb0{bottom:218.240000pt;}
.y76{bottom:220.480000pt;}
.y73{bottom:226.240000pt;}
.y8b{bottom:229.440000pt;}
.y1c{bottom:237.440000pt;}
.yaf{bottom:247.040000pt;}
.y9f{bottom:248.320000pt;}
.y35{bottom:249.280000pt;}
.y72{bottom:255.040000pt;}
.y89{bottom:258.240000pt;}
.y9e{bottom:261.120000pt;}
.y7a{bottom:266.240000pt;}
.y5f{bottom:275.200000pt;}
.yae{bottom:275.840000pt;}
.y34{bottom:278.080000pt;}
.y71{bottom:283.840000pt;}
.y88{bottom:287.040000pt;}
.y1b{bottom:295.040000pt;}
.y5e{bottom:304.000000pt;}
.yad{bottom:304.640000pt;}
.y33{bottom:306.880000pt;}
.y70{bottom:312.640000pt;}
.y4e{bottom:313.600000pt;}
.y87{bottom:315.840000pt;}
.y1a{bottom:323.840000pt;}
.y5d{bottom:332.800000pt;}
.yac{bottom:333.440000pt;}
.y32{bottom:335.680000pt;}
.ybc{bottom:340.800000pt;}
.y6f{bottom:341.440000pt;}
.y4d{bottom:342.400000pt;}
.y86{bottom:344.640000pt;}
.y19{bottom:352.640000pt;}
.y9{bottom:357.440000pt;}
.y5c{bottom:361.600000pt;}
.yab{bottom:362.240000pt;}
.y31{bottom:364.480000pt;}
.y6e{bottom:370.240000pt;}
.y4c{bottom:371.200000pt;}
.y85{bottom:373.440000pt;}
.y18{bottom:381.440000pt;}
.y8{bottom:386.240000pt;}
.y5b{bottom:390.400000pt;}
.yaa{bottom:391.040000pt;}
.y9d{bottom:392.000000pt;}
.y30{bottom:393.280000pt;}
.y6d{bottom:399.040000pt;}
.y4b{bottom:400.000000pt;}
.y8a{bottom:402.240000pt;}
.y17{bottom:410.240000pt;}
.y94{bottom:411.200000pt;}
.y41{bottom:414.400000pt;}
.y7{bottom:415.040000pt;}
.y5a{bottom:419.200000pt;}
.y27{bottom:419.840000pt;}
.y9c{bottom:420.800000pt;}
.y2f{bottom:422.080000pt;}
.y6c{bottom:427.840000pt;}
.y4a{bottom:428.800000pt;}
.y84{bottom:431.040000pt;}
.y16{bottom:439.040000pt;}
.y93{bottom:440.000000pt;}
.y40{bottom:443.200000pt;}
.y59{bottom:448.000000pt;}
.y26{bottom:448.640000pt;}
.y9b{bottom:449.600000pt;}
.y2e{bottom:450.880000pt;}
.ya3{bottom:452.800000pt;}
.y6b{bottom:456.640000pt;}
.y49{bottom:457.600000pt;}
.y83{bottom:459.840000pt;}
.y15{bottom:467.840000pt;}
.y92{bottom:468.800000pt;}
.y3f{bottom:472.000000pt;}
.y58{bottom:476.800000pt;}
.y25{bottom:477.440000pt;}
.y9a{bottom:478.400000pt;}
.y2d{bottom:479.680000pt;}
.ya2{bottom:481.600000pt;}
.y6{bottom:484.160000pt;}
.y6a{bottom:485.440000pt;}
.y48{bottom:486.400000pt;}
.y82{bottom:488.640000pt;}
.y14{bottom:496.640000pt;}
.y91{bottom:497.600000pt;}
.y3e{bottom:500.800000pt;}
.ya7{bottom:502.400000pt;}
.y57{bottom:505.600000pt;}
.y24{bottom:506.240000pt;}
.y99{bottom:507.200000pt;}
.y2c{bottom:508.480000pt;}
.y7c{bottom:510.400000pt;}
.y69{bottom:514.240000pt;}
.y47{bottom:515.200000pt;}
.y81{bottom:517.440000pt;}
.y5{bottom:522.560000pt;}
.y13{bottom:525.440000pt;}
.y90{bottom:526.400000pt;}
.y3d{bottom:529.600000pt;}
.ya6{bottom:531.200000pt;}
.y56{bottom:534.400000pt;}
.y23{bottom:535.040000pt;}
.y98{bottom:536.000000pt;}
.y2b{bottom:537.280000pt;}
.ya1{bottom:539.200000pt;}
.y68{bottom:543.040000pt;}
.y46{bottom:544.000000pt;}
.y80{bottom:546.240000pt;}
.y7b{bottom:548.800000pt;}
.y12{bottom:554.240000pt;}
.y8f{bottom:555.200000pt;}
.ybb{bottom:555.840000pt;}
.y3c{bottom:558.400000pt;}
.ya5{bottom:560.000000pt;}
.y4{bottom:560.960000pt;}
.y55{bottom:563.200000pt;}
.ya9{bottom:563.840000pt;}
.y97{bottom:564.800000pt;}
.y2a{bottom:566.080000pt;}
.ya0{bottom:568.000000pt;}
.y3{bottom:569.920000pt;}
.y67{bottom:571.840000pt;}
.y45{bottom:572.800000pt;}
.y8d{bottom:574.400000pt;}
.y7f{bottom:575.040000pt;}
.y28{bottom:576.960000pt;}
.y11{bottom:583.040000pt;}
.y8e{bottom:584.000000pt;}
.yba{bottom:584.640000pt;}
.y3b{bottom:587.200000pt;}
.ya4{bottom:588.800000pt;}
.y54{bottom:592.000000pt;}
.y22{bottom:592.640000pt;}
.y29{bottom:594.880000pt;}
.y65{bottom:596.800000pt;}
.y66{bottom:600.640000pt;}
.y7e{bottom:603.840000pt;}
.y10{bottom:611.840000pt;}
.y8c{bottom:612.800000pt;}
.yb9{bottom:613.440000pt;}
.y3a{bottom:616.000000pt;}
.ya8{bottom:616.960000pt;}
.y53{bottom:620.800000pt;}
.y75{bottom:623.680000pt;}
.y7d{bottom:632.640000pt;}
.yf{bottom:640.640000pt;}
.yb8{bottom:642.240000pt;}
.yb7{bottom:671.040000pt;}
.ye{bottom:690.560000pt;}
.yb6{bottom:699.840000pt;}
.yd{bottom:703.360000pt;}
.yc{bottom:716.160000pt;}
.yb5{bottom:728.640000pt;}
.yb{bottom:728.960000pt;}
.ya{bottom:741.760000pt;}
.h5{height:44.055000pt;}
.h6{height:50.729444pt;}
.h1{height:66.743325pt;}
.h2{height:66.750000pt;}
.h4{height:100.125000pt;}
.h7{height:110.805000pt;}
.h3{height:133.500000pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:101.759867pt;}
.x5{left:106.880000pt;}
.x2{left:114.880000pt;}
.x6{left:138.880000pt;}
.x9{left:139.840000pt;}
.x8{left:145.600000pt;}
.x7{left:146.880000pt;}
.x1b{left:155.200000pt;}
.x10{left:162.880000pt;}
.xa{left:169.280000pt;}
.x3{left:170.880000pt;}
.x13{left:177.280000pt;}
.x15{left:185.280000pt;}
.xf{left:186.880000pt;}
.xb{left:193.280000pt;}
.xe{left:194.880000pt;}
.xc{left:200.000000pt;}
.x16{left:201.280000pt;}
.x1a{left:205.440000pt;}
.x14{left:212.480000pt;}
.x11{left:217.280000pt;}
.x19{left:219.840000pt;}
.x18{left:221.440000pt;}
.x17{left:227.840000pt;}
.xd{left:241.280000pt;}
.x12{left:243.840000pt;}
.x1d{left:465.280000pt;}
.x1c{left:578.880000pt;}
.x4{left:772.480000pt;}
}




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