
    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_98c97b4431774a88168ae76c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_905de1b95274637eaa2fabfd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_98c97f243d64be9854166c24.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_0e8c698c0f1bac3ed2d8db17.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_16afde935565540db7c611ac.woff')format("woff");}.ff5{font-family:ff5;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.lsc{letter-spacing:-0.168000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.lse{letter-spacing:0.030000px;}
.lsf{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.540000px;}
.lsd{letter-spacing:33.984000px;}
.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;}
}
.wsa{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.832000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:0.000000px;}
._1c{margin-left:-4.464000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._5{width:2.304000px;}
._6{width:3.312000px;}
._9{width:4.482000px;}
._a{width:5.958000px;}
._16{width:6.984000px;}
._17{width:8.496000px;}
._7{width:9.504000px;}
._8{width:10.800000px;}
._20{width:11.838000px;}
._31{width:13.038000px;}
._b{width:14.616000px;}
._4{width:16.272000px;}
._1a{width:19.374000px;}
._19{width:20.436000px;}
._21{width:21.816000px;}
._12{width:22.968000px;}
._13{width:24.120000px;}
._26{width:25.488000px;}
._2c{width:27.852000px;}
._1b{width:29.088000px;}
._24{width:31.104000px;}
._34{width:32.976000px;}
._1e{width:34.704000px;}
._10{width:35.856000px;}
._11{width:37.368000px;}
._25{width:38.376000px;}
._3f{width:39.672000px;}
._18{width:40.680000px;}
._3d{width:42.696000px;}
._1d{width:45.432000px;}
._2a{width:47.220000px;}
._3a{width:48.900000px;}
._3e{width:49.968000px;}
._14{width:52.344000px;}
._15{width:53.352000px;}
._36{width:55.368000px;}
._32{width:57.384000px;}
._2e{width:59.424000px;}
._27{width:61.920000px;}
._3b{width:63.000000px;}
._33{width:64.824000px;}
._2d{width:66.024000px;}
._22{width:67.104000px;}
._e{width:70.056000px;}
._f{width:71.136000px;}
._37{width:73.296000px;}
._2b{width:76.974000px;}
._35{width:81.072000px;}
._23{width:83.952000px;}
._1f{width:90.288000px;}
._2f{width:91.374000px;}
._29{width:93.624000px;}
._38{width:97.704000px;}
._40{width:117.504000px;}
._3c{width:127.296000px;}
._c{width:142.560000px;}
._d{width:143.784000px;}
._28{width:162.024000px;}
._39{width:183.096000px;}
._30{width:793.944000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y21{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y20{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1f{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1e{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1d{bottom:86.700000px;}
.y1c{bottom:107.400000px;}
.y3b{bottom:114.937500px;}
.y65{bottom:125.137500px;}
.y1b{bottom:128.100000px;}
.y3a{bottom:139.387500px;}
.y1a{bottom:148.800000px;}
.y64{bottom:149.587500px;}
.y39{bottom:163.845000px;}
.y19{bottom:169.500000px;}
.y63{bottom:174.045000px;}
.y38{bottom:188.145000px;}
.y18{bottom:190.200000px;}
.y62{bottom:198.345000px;}
.y17{bottom:210.900000px;}
.y37{bottom:212.580000px;}
.y61{bottom:222.795000px;}
.y16{bottom:231.600000px;}
.y36{bottom:237.045000px;}
.y60{bottom:247.245000px;}
.y35{bottom:261.345000px;}
.y5f{bottom:271.545000px;}
.y34{bottom:285.795000px;}
.y5e{bottom:295.995000px;}
.y33{bottom:310.245000px;}
.y5d{bottom:320.445000px;}
.y32{bottom:334.695000px;}
.y5c{bottom:344.745000px;}
.y31{bottom:358.995000px;}
.y5b{bottom:369.195000px;}
.y30{bottom:383.475000px;}
.y5a{bottom:393.675000px;}
.y2f{bottom:407.925000px;}
.y59{bottom:418.125000px;}
.y2e{bottom:432.225000px;}
.y58{bottom:442.425000px;}
.y2d{bottom:456.675000px;}
.y57{bottom:466.875000px;}
.y2c{bottom:481.125000px;}
.y56{bottom:491.325000px;}
.y2b{bottom:505.425000px;}
.y55{bottom:515.625000px;}
.y2a{bottom:529.875000px;}
.y54{bottom:540.075000px;}
.y29{bottom:554.325000px;}
.y53{bottom:564.525000px;}
.y28{bottom:578.775000px;}
.y52{bottom:588.975000px;}
.y27{bottom:603.075000px;}
.y51{bottom:613.275000px;}
.y26{bottom:627.525000px;}
.y50{bottom:637.725000px;}
.y25{bottom:651.975000px;}
.y4f{bottom:662.175000px;}
.y24{bottom:684.675000px;}
.y4e{bottom:686.475000px;}
.y23{bottom:701.475000px;}
.y4d{bottom:710.925000px;}
.y4c{bottom:735.375000px;}
.y22{bottom:742.920000px;}
.y4b{bottom:759.870000px;}
.y15{bottom:763.620000px;}
.y4a{bottom:784.170000px;}
.y49{bottom:808.620000px;}
.y48{bottom:833.070000px;}
.y47{bottom:857.370000px;}
.y46{bottom:881.820000px;}
.y45{bottom:906.270000px;}
.y68{bottom:908.070000px;}
.y44{bottom:930.720000px;}
.y67{bottom:931.920000px;}
.y43{bottom:955.020000px;}
.y66{bottom:955.620000px;}
.y42{bottom:979.470000px;}
.y41{bottom:1003.920000px;}
.y14{bottom:1015.620000px;}
.y40{bottom:1028.220000px;}
.y13{bottom:1034.820000px;}
.y3f{bottom:1052.670000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y3e{bottom:1077.120000px;}
.y3d{bottom:1101.600000px;}
.y10{bottom:1108.950000px;}
.y3c{bottom:1125.900000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.he{height:20.700000px;}
.hf{height:41.437500px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h10{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h11{height:74.004654px;}
.h2{height:82.441406px;}
.hd{height:248.400000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1d{left:85.199987px;}
.x10{left:88.949987px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x1e{left:112.199987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x11{left:136.387487px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x12{left:402.524987px;}
.x1b{left:457.274987px;}
.x20{left:499.874987px;}
.x1c{left:510.374987px;}
.x14{left:520.124987px;}
.x1f{left:526.874987px;}
.x13{left:579.974987px;}
.xc{left:625.425000px;}
.x15{left:633.074987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.lsc{letter-spacing:-0.149333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.026667pt;}
.lsf{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.480000pt;}
.lsd{letter-spacing:30.208000pt;}
.wsa{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.850667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:0.000000pt;}
._1c{margin-left:-3.968000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._5{width:2.048000pt;}
._6{width:2.944000pt;}
._9{width:3.984000pt;}
._a{width:5.296000pt;}
._16{width:6.208000pt;}
._17{width:7.552000pt;}
._7{width:8.448000pt;}
._8{width:9.600000pt;}
._20{width:10.522667pt;}
._31{width:11.589333pt;}
._b{width:12.992000pt;}
._4{width:14.464000pt;}
._1a{width:17.221333pt;}
._19{width:18.165333pt;}
._21{width:19.392000pt;}
._12{width:20.416000pt;}
._13{width:21.440000pt;}
._26{width:22.656000pt;}
._2c{width:24.757333pt;}
._1b{width:25.856000pt;}
._24{width:27.648000pt;}
._34{width:29.312000pt;}
._1e{width:30.848000pt;}
._10{width:31.872000pt;}
._11{width:33.216000pt;}
._25{width:34.112000pt;}
._3f{width:35.264000pt;}
._18{width:36.160000pt;}
._3d{width:37.952000pt;}
._1d{width:40.384000pt;}
._2a{width:41.973333pt;}
._3a{width:43.466667pt;}
._3e{width:44.416000pt;}
._14{width:46.528000pt;}
._15{width:47.424000pt;}
._36{width:49.216000pt;}
._32{width:51.008000pt;}
._2e{width:52.821333pt;}
._27{width:55.040000pt;}
._3b{width:56.000000pt;}
._33{width:57.621333pt;}
._2d{width:58.688000pt;}
._22{width:59.648000pt;}
._e{width:62.272000pt;}
._f{width:63.232000pt;}
._37{width:65.152000pt;}
._2b{width:68.421333pt;}
._35{width:72.064000pt;}
._23{width:74.624000pt;}
._1f{width:80.256000pt;}
._2f{width:81.221333pt;}
._29{width:83.221333pt;}
._38{width:86.848000pt;}
._40{width:104.448000pt;}
._3c{width:113.152000pt;}
._c{width:126.720000pt;}
._d{width:127.808000pt;}
._28{width:144.021333pt;}
._39{width:162.752000pt;}
._30{width:705.728000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y21{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y20{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1f{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1e{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1d{bottom:77.066667pt;}
.y1c{bottom:95.466667pt;}
.y3b{bottom:102.166667pt;}
.y65{bottom:111.233333pt;}
.y1b{bottom:113.866667pt;}
.y3a{bottom:123.900000pt;}
.y1a{bottom:132.266667pt;}
.y64{bottom:132.966667pt;}
.y39{bottom:145.640000pt;}
.y19{bottom:150.666667pt;}
.y63{bottom:154.706667pt;}
.y38{bottom:167.240000pt;}
.y18{bottom:169.066667pt;}
.y62{bottom:176.306667pt;}
.y17{bottom:187.466667pt;}
.y37{bottom:188.960000pt;}
.y61{bottom:198.040000pt;}
.y16{bottom:205.866667pt;}
.y36{bottom:210.706667pt;}
.y60{bottom:219.773333pt;}
.y35{bottom:232.306667pt;}
.y5f{bottom:241.373333pt;}
.y34{bottom:254.040000pt;}
.y5e{bottom:263.106667pt;}
.y33{bottom:275.773333pt;}
.y5d{bottom:284.840000pt;}
.y32{bottom:297.506667pt;}
.y5c{bottom:306.440000pt;}
.y31{bottom:319.106667pt;}
.y5b{bottom:328.173333pt;}
.y30{bottom:340.866667pt;}
.y5a{bottom:349.933333pt;}
.y2f{bottom:362.600000pt;}
.y59{bottom:371.666667pt;}
.y2e{bottom:384.200000pt;}
.y58{bottom:393.266667pt;}
.y2d{bottom:405.933333pt;}
.y57{bottom:415.000000pt;}
.y2c{bottom:427.666667pt;}
.y56{bottom:436.733333pt;}
.y2b{bottom:449.266667pt;}
.y55{bottom:458.333333pt;}
.y2a{bottom:471.000000pt;}
.y54{bottom:480.066667pt;}
.y29{bottom:492.733333pt;}
.y53{bottom:501.800000pt;}
.y28{bottom:514.466667pt;}
.y52{bottom:523.533333pt;}
.y27{bottom:536.066667pt;}
.y51{bottom:545.133333pt;}
.y26{bottom:557.800000pt;}
.y50{bottom:566.866667pt;}
.y25{bottom:579.533333pt;}
.y4f{bottom:588.600000pt;}
.y24{bottom:608.600000pt;}
.y4e{bottom:610.200000pt;}
.y23{bottom:623.533333pt;}
.y4d{bottom:631.933333pt;}
.y4c{bottom:653.666667pt;}
.y22{bottom:660.373333pt;}
.y4b{bottom:675.440000pt;}
.y15{bottom:678.773333pt;}
.y4a{bottom:697.040000pt;}
.y49{bottom:718.773333pt;}
.y48{bottom:740.506667pt;}
.y47{bottom:762.106667pt;}
.y46{bottom:783.840000pt;}
.y45{bottom:805.573333pt;}
.y68{bottom:807.173333pt;}
.y44{bottom:827.306667pt;}
.y67{bottom:828.373333pt;}
.y43{bottom:848.906667pt;}
.y66{bottom:849.440000pt;}
.y42{bottom:870.640000pt;}
.y41{bottom:892.373333pt;}
.y14{bottom:902.773333pt;}
.y40{bottom:913.973333pt;}
.y13{bottom:919.840000pt;}
.y3f{bottom:935.706667pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y3e{bottom:957.440000pt;}
.y3d{bottom:979.200000pt;}
.y10{bottom:985.733333pt;}
.y3c{bottom:1000.800000pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.he{height:18.400000pt;}
.hf{height:36.833333pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h10{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h11{height:65.781915pt;}
.h2{height:73.281250pt;}
.hd{height:220.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1d{left:75.733322pt;}
.x10{left:79.066655pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x1e{left:99.733322pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x11{left:121.233322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x12{left:357.799988pt;}
.x1b{left:406.466655pt;}
.x20{left:444.333322pt;}
.x1c{left:453.666655pt;}
.x14{left:462.333322pt;}
.x1f{left:468.333322pt;}
.x13{left:515.533322pt;}
.xc{left:555.933333pt;}
.x15{left:562.733322pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  