
    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_ed843edf587bb7d057afe8d2.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_38d88ea111a314051e5f528c.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_49d6c868d43baad2c160125c.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_63db2876a1bb6bfc381b3733.woff2')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_e0f7a37a3d5e20ba83aec64d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d65b34a7e0fd47d3d3dd444c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104980;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_5849206486ee8d0c4a5df0c1.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.666720px;}
.lsa{letter-spacing:9.504000px;}
.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:-59.760000px;}
.ws3{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.872000px;}
.ws4{word-spacing:-19.800000px;}
.ws0{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.506480px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-4.968000px;}
._9{margin-left:-3.490080px;}
._1{margin-left:-1.602000px;}
._0{width:1.038000px;}
._2{width:2.228880px;}
._5{width:3.544560px;}
._3{width:4.721040px;}
._4{width:5.736960px;}
._6{width:6.991920px;}
._7{width:8.105280px;}
._8{width:9.143280px;}
._a{width:10.564560px;}
._12{width:11.794320px;}
._f{width:13.392000px;}
._e{width:14.400000px;}
._21{width:15.408000px;}
._13{width:16.416000px;}
._14{width:18.216000px;}
._b{width:21.872160px;}
._1c{width:22.896000px;}
._d{width:24.480000px;}
._c{width:25.632000px;}
._1e{width:27.144000px;}
._18{width:28.944000px;}
._1b{width:30.069120px;}
._1a{width:31.176000px;}
._25{width:32.688000px;}
._24{width:33.930000px;}
._11{width:35.298000px;}
._10{width:36.576000px;}
._19{width:38.520000px;}
._26{width:40.032000px;}
._23{width:42.840000px;}
._22{width:43.968000px;}
._1d{width:46.512000px;}
._1f{width:54.198000px;}
._20{width:55.224000px;}
._16{width:69.768000px;}
._15{width:71.208000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.880000px;}
.y3{bottom:52.560000px;}
.y2{bottom:57.600000px;}
.y1{bottom:76.680000px;}
.y63{bottom:109.656000px;}
.y35{bottom:114.516000px;}
.y62{bottom:126.936000px;}
.y5a{bottom:135.756000px;}
.y34{bottom:141.516000px;}
.y61{bottom:144.036000px;}
.y60{bottom:161.490000px;}
.y59{bottom:162.750000px;}
.y33{bottom:168.510000px;}
.y5f{bottom:178.590000px;}
.y58{bottom:189.750000px;}
.y64{bottom:194.970000px;}
.y32{bottom:195.510000px;}
.y5e{bottom:196.050000px;}
.y5d{bottom:200.550000px;}
.y5c{bottom:214.230000px;}
.y57{bottom:216.750000px;}
.y31{bottom:222.510000px;}
.y56{bottom:243.750000px;}
.y30{bottom:249.510000px;}
.y55{bottom:270.750000px;}
.y2f{bottom:276.510000px;}
.y96{bottom:297.390000px;}
.y54{bottom:297.750000px;}
.y2e{bottom:298.110000px;}
.y95{bottom:314.670000px;}
.y2d{bottom:324.750000px;}
.y94{bottom:331.770000px;}
.y2c{bottom:344.730000px;}
.y93{bottom:349.230000px;}
.y53{bottom:351.750000px;}
.y2b{bottom:361.875000px;}
.y92{bottom:366.375000px;}
.y52{bottom:378.795000px;}
.y2a{bottom:379.155000px;}
.y91{bottom:383.655000px;}
.y29{bottom:396.435000px;}
.y90{bottom:401.115000px;}
.y51{bottom:405.795000px;}
.y28{bottom:413.715000px;}
.y8f{bottom:418.215000px;}
.y27{bottom:430.995000px;}
.y50{bottom:432.795000px;}
.y8e{bottom:435.495000px;}
.y26{bottom:448.275000px;}
.y8d{bottom:452.595000px;}
.y4f{bottom:459.795000px;}
.y25{bottom:465.375000px;}
.y8c{bottom:469.875000px;}
.y24{bottom:482.655000px;}
.y4e{bottom:486.795000px;}
.y8b{bottom:487.335000px;}
.y23{bottom:499.935000px;}
.y8a{bottom:504.435000px;}
.y4d{bottom:513.795000px;}
.y22{bottom:517.215000px;}
.y89{bottom:521.715000px;}
.y21{bottom:534.495000px;}
.y88{bottom:538.815000px;}
.y4c{bottom:540.795000px;}
.y20{bottom:551.595000px;}
.y87{bottom:556.095000px;}
.y4b{bottom:567.795000px;}
.y1f{bottom:568.875000px;}
.y86{bottom:573.555000px;}
.y1e{bottom:586.155000px;}
.y85{bottom:590.655000px;}
.y4a{bottom:594.795000px;}
.y1d{bottom:603.435000px;}
.y84{bottom:607.935000px;}
.y1c{bottom:620.745000px;}
.y49{bottom:621.825000px;}
.y83{bottom:625.245000px;}
.y1b{bottom:638.025000px;}
.y82{bottom:642.345000px;}
.y48{bottom:648.825000px;}
.y1a{bottom:655.125000px;}
.y81{bottom:659.805000px;}
.y19{bottom:672.405000px;}
.y47{bottom:675.825000px;}
.y80{bottom:677.085000px;}
.y18{bottom:689.685000px;}
.y7f{bottom:694.185000px;}
.y46{bottom:702.825000px;}
.y17{bottom:706.965000px;}
.y7e{bottom:711.645000px;}
.y16{bottom:724.245000px;}
.y7d{bottom:728.565000px;}
.y45{bottom:729.825000px;}
.y15{bottom:741.525000px;}
.y7c{bottom:746.025000px;}
.y44{bottom:756.825000px;}
.y14{bottom:758.625000px;}
.y7b{bottom:763.125000px;}
.y13{bottom:776.085000px;}
.y7a{bottom:780.585000px;}
.y43{bottom:783.825000px;}
.y12{bottom:793.365000px;}
.y79{bottom:797.865000px;}
.y11{bottom:810.645000px;}
.y42{bottom:810.825000px;}
.y78{bottom:814.785000px;}
.y10{bottom:824.325000px;}
.y77{bottom:832.245000px;}
.y41{bottom:837.825000px;}
.y76{bottom:849.345000px;}
.yf{bottom:850.965000px;}
.y40{bottom:864.825000px;}
.y75{bottom:866.805000px;}
.ye{bottom:871.665000px;}
.y74{bottom:884.130000px;}
.y3f{bottom:891.870000px;}
.yd{bottom:892.410000px;}
.y73{bottom:901.230000px;}
.yc{bottom:914.370000px;}
.y72{bottom:918.330000px;}
.y3e{bottom:918.870000px;}
.y71{bottom:935.610000px;}
.yb{bottom:941.910000px;}
.y3d{bottom:945.870000px;}
.y70{bottom:952.890000px;}
.ya{bottom:968.190000px;}
.y6f{bottom:970.170000px;}
.y3c{bottom:972.870000px;}
.y6e{bottom:987.450000px;}
.y3b{bottom:999.870000px;}
.y9{bottom:1001.670000px;}
.y6d{bottom:1004.730000px;}
.y6c{bottom:1021.830000px;}
.y8{bottom:1025.790000px;}
.y3a{bottom:1026.870000px;}
.y6b{bottom:1039.110000px;}
.y7{bottom:1049.910000px;}
.y39{bottom:1053.870000px;}
.y6a{bottom:1056.390000px;}
.y69{bottom:1073.670000px;}
.y6{bottom:1074.030000px;}
.y38{bottom:1080.870000px;}
.y68{bottom:1090.950000px;}
.y5{bottom:1093.470000px;}
.y37{bottom:1107.870000px;}
.y67{bottom:1108.410000px;}
.y5b{bottom:1113.810000px;}
.y66{bottom:1125.510000px;}
.y36{bottom:1134.900000px;}
.y65{bottom:1142.820000px;}
.h3{height:15.300000px;}
.hc{height:40.550625px;}
.h8{height:43.565273px;}
.hb{height:50.312812px;}
.h9{height:52.488281px;}
.h7{height:62.327813px;}
.h2{height:74.004654px;}
.h4{height:75.093750px;}
.h5{height:87.859687px;}
.h6{height:99.874688px;}
.ha{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:37.656000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.416000px;}
.xb{left:111.816000px;}
.x7{left:148.896000px;}
.x1{left:236.010000px;}
.x2{left:281.595000px;}
.xa{left:322.455000px;}
.x4{left:362.955000px;}
.x3{left:430.455000px;}
.x8{left:488.782500px;}
.x9{left:495.465000px;}
.x6{left:786.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.592640pt;}
.lsa{letter-spacing:8.448000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws4{word-spacing:-17.600000pt;}
.ws0{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.672427pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-4.416000pt;}
._9{margin-left:-3.102293pt;}
._1{margin-left:-1.424000pt;}
._0{width:0.922667pt;}
._2{width:1.981227pt;}
._5{width:3.150720pt;}
._3{width:4.196480pt;}
._4{width:5.099520pt;}
._6{width:6.215040pt;}
._7{width:7.204693pt;}
._8{width:8.127360pt;}
._a{width:9.390720pt;}
._12{width:10.483840pt;}
._f{width:11.904000pt;}
._e{width:12.800000pt;}
._21{width:13.696000pt;}
._13{width:14.592000pt;}
._14{width:16.192000pt;}
._b{width:19.441920pt;}
._1c{width:20.352000pt;}
._d{width:21.760000pt;}
._c{width:22.784000pt;}
._1e{width:24.128000pt;}
._18{width:25.728000pt;}
._1b{width:26.728107pt;}
._1a{width:27.712000pt;}
._25{width:29.056000pt;}
._24{width:30.160000pt;}
._11{width:31.376000pt;}
._10{width:32.512000pt;}
._19{width:34.240000pt;}
._26{width:35.584000pt;}
._23{width:38.080000pt;}
._22{width:39.082667pt;}
._1d{width:41.344000pt;}
._1f{width:48.176000pt;}
._20{width:49.088000pt;}
._16{width:62.016000pt;}
._15{width:63.296000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.560000pt;}
.y3{bottom:46.720000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:68.160000pt;}
.y63{bottom:97.472000pt;}
.y35{bottom:101.792000pt;}
.y62{bottom:112.832000pt;}
.y5a{bottom:120.672000pt;}
.y34{bottom:125.792000pt;}
.y61{bottom:128.032000pt;}
.y60{bottom:143.546667pt;}
.y59{bottom:144.666667pt;}
.y33{bottom:149.786667pt;}
.y5f{bottom:158.746667pt;}
.y58{bottom:168.666667pt;}
.y64{bottom:173.306667pt;}
.y32{bottom:173.786667pt;}
.y5e{bottom:174.266667pt;}
.y5d{bottom:178.266667pt;}
.y5c{bottom:190.426667pt;}
.y57{bottom:192.666667pt;}
.y31{bottom:197.786667pt;}
.y56{bottom:216.666667pt;}
.y30{bottom:221.786667pt;}
.y55{bottom:240.666667pt;}
.y2f{bottom:245.786667pt;}
.y96{bottom:264.346667pt;}
.y54{bottom:264.666667pt;}
.y2e{bottom:264.986667pt;}
.y95{bottom:279.706667pt;}
.y2d{bottom:288.666667pt;}
.y94{bottom:294.906667pt;}
.y2c{bottom:306.426667pt;}
.y93{bottom:310.426667pt;}
.y53{bottom:312.666667pt;}
.y2b{bottom:321.666667pt;}
.y92{bottom:325.666667pt;}
.y52{bottom:336.706667pt;}
.y2a{bottom:337.026667pt;}
.y91{bottom:341.026667pt;}
.y29{bottom:352.386667pt;}
.y90{bottom:356.546667pt;}
.y51{bottom:360.706667pt;}
.y28{bottom:367.746667pt;}
.y8f{bottom:371.746667pt;}
.y27{bottom:383.106667pt;}
.y50{bottom:384.706667pt;}
.y8e{bottom:387.106667pt;}
.y26{bottom:398.466667pt;}
.y8d{bottom:402.306667pt;}
.y4f{bottom:408.706667pt;}
.y25{bottom:413.666667pt;}
.y8c{bottom:417.666667pt;}
.y24{bottom:429.026667pt;}
.y4e{bottom:432.706667pt;}
.y8b{bottom:433.186667pt;}
.y23{bottom:444.386667pt;}
.y8a{bottom:448.386667pt;}
.y4d{bottom:456.706667pt;}
.y22{bottom:459.746667pt;}
.y89{bottom:463.746667pt;}
.y21{bottom:475.106667pt;}
.y88{bottom:478.946667pt;}
.y4c{bottom:480.706667pt;}
.y20{bottom:490.306667pt;}
.y87{bottom:494.306667pt;}
.y4b{bottom:504.706667pt;}
.y1f{bottom:505.666667pt;}
.y86{bottom:509.826667pt;}
.y1e{bottom:521.026667pt;}
.y85{bottom:525.026667pt;}
.y4a{bottom:528.706667pt;}
.y1d{bottom:536.386667pt;}
.y84{bottom:540.386667pt;}
.y1c{bottom:551.773333pt;}
.y49{bottom:552.733333pt;}
.y83{bottom:555.773333pt;}
.y1b{bottom:567.133333pt;}
.y82{bottom:570.973333pt;}
.y48{bottom:576.733333pt;}
.y1a{bottom:582.333333pt;}
.y81{bottom:586.493333pt;}
.y19{bottom:597.693333pt;}
.y47{bottom:600.733333pt;}
.y80{bottom:601.853333pt;}
.y18{bottom:613.053333pt;}
.y7f{bottom:617.053333pt;}
.y46{bottom:624.733333pt;}
.y17{bottom:628.413333pt;}
.y7e{bottom:632.573333pt;}
.y16{bottom:643.773333pt;}
.y7d{bottom:647.613333pt;}
.y45{bottom:648.733333pt;}
.y15{bottom:659.133333pt;}
.y7c{bottom:663.133333pt;}
.y44{bottom:672.733333pt;}
.y14{bottom:674.333333pt;}
.y7b{bottom:678.333333pt;}
.y13{bottom:689.853333pt;}
.y7a{bottom:693.853333pt;}
.y43{bottom:696.733333pt;}
.y12{bottom:705.213333pt;}
.y79{bottom:709.213333pt;}
.y11{bottom:720.573333pt;}
.y42{bottom:720.733333pt;}
.y78{bottom:724.253333pt;}
.y10{bottom:732.733333pt;}
.y77{bottom:739.773333pt;}
.y41{bottom:744.733333pt;}
.y76{bottom:754.973333pt;}
.yf{bottom:756.413333pt;}
.y40{bottom:768.733333pt;}
.y75{bottom:770.493333pt;}
.ye{bottom:774.813333pt;}
.y74{bottom:785.893333pt;}
.y3f{bottom:792.773333pt;}
.yd{bottom:793.253333pt;}
.y73{bottom:801.093333pt;}
.yc{bottom:812.773333pt;}
.y72{bottom:816.293333pt;}
.y3e{bottom:816.773333pt;}
.y71{bottom:831.653333pt;}
.yb{bottom:837.253333pt;}
.y3d{bottom:840.773333pt;}
.y70{bottom:847.013333pt;}
.ya{bottom:860.613333pt;}
.y6f{bottom:862.373333pt;}
.y3c{bottom:864.773333pt;}
.y6e{bottom:877.733333pt;}
.y3b{bottom:888.773333pt;}
.y9{bottom:890.373333pt;}
.y6d{bottom:893.093333pt;}
.y6c{bottom:908.293333pt;}
.y8{bottom:911.813333pt;}
.y3a{bottom:912.773333pt;}
.y6b{bottom:923.653333pt;}
.y7{bottom:933.253333pt;}
.y39{bottom:936.773333pt;}
.y6a{bottom:939.013333pt;}
.y69{bottom:954.373333pt;}
.y6{bottom:954.693333pt;}
.y38{bottom:960.773333pt;}
.y68{bottom:969.733333pt;}
.y5{bottom:971.973333pt;}
.y37{bottom:984.773333pt;}
.y67{bottom:985.253333pt;}
.y5b{bottom:990.053333pt;}
.y66{bottom:1000.453333pt;}
.y36{bottom:1008.800000pt;}
.y65{bottom:1015.840000pt;}
.h3{height:13.600000pt;}
.hc{height:36.045000pt;}
.h8{height:38.724688pt;}
.hb{height:44.722500pt;}
.h9{height:46.656250pt;}
.h7{height:55.402500pt;}
.h2{height:65.781915pt;}
.h4{height:66.750000pt;}
.h5{height:78.097500pt;}
.h6{height:88.777500pt;}
.ha{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:33.472000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.592000pt;}
.xb{left:99.392000pt;}
.x7{left:132.352000pt;}
.x1{left:209.786667pt;}
.x2{left:250.306667pt;}
.xa{left:286.626667pt;}
.x4{left:322.626667pt;}
.x3{left:382.626667pt;}
.x8{left:434.473333pt;}
.x9{left:440.413333pt;}
.x6{left:699.333333pt;}
}




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