
    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_e950f79af6424484e38a4643.woff2')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_2333733a09d82db278122ecb.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_a87ea8d0f974a017a66c7cbf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_03042dbb0f8b9b676cfbfcfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_0b7519dd1812804d2a930180.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_c8db678f9e4a0616f5514e04.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-55.440000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.990000px;}
.ls23{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.045360px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.720000px;}
.ls20{letter-spacing:1.440000px;}
.lse{letter-spacing:2.340000px;}
.ls17{letter-spacing:3.600000px;}
.ls6{letter-spacing:3.780000px;}
.ls14{letter-spacing:4.320000px;}
.lsf{letter-spacing:4.500000px;}
.ls1c{letter-spacing:7.920000px;}
.ls19{letter-spacing:8.640000px;}
.lsd{letter-spacing:12.240000px;}
.ls12{letter-spacing:14.400000px;}
.ls25{letter-spacing:17.280000px;}
.ls16{letter-spacing:17.940000px;}
.ls24{letter-spacing:63.360000px;}
.ls13{letter-spacing:85.680000px;}
.ls1d{letter-spacing:86.400000px;}
.ls18{letter-spacing:193.656000px;}
.ls4{letter-spacing:194.376000px;}
.ls3{letter-spacing:200.316000px;}
.ls0{letter-spacing:1257.396000px;}
.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;}
}
.wsb{word-spacing:-18.648000px;}
.ws0{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.208000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.014640px;}
.ws4{word-spacing:-11.070000px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-11.616000px;}
._1d{margin-left:-2.604000px;}
._5{margin-left:-1.584000px;}
._2{width:1.284000px;}
._c{width:2.299200px;}
._e{width:4.032000px;}
._0{width:5.544000px;}
._1{width:6.768000px;}
._17{width:7.776000px;}
._13{width:9.648000px;}
._12{width:11.520000px;}
._14{width:12.600000px;}
._3{width:13.608000px;}
._4{width:15.192000px;}
._6{width:16.920000px;}
._20{width:18.735360px;}
._10{width:19.812000px;}
._f{width:20.880000px;}
._1a{width:22.464000px;}
._1b{width:23.544000px;}
._15{width:24.624000px;}
._16{width:26.076000px;}
._1c{width:27.468000px;}
._1f{width:28.884000px;}
._21{width:30.477600px;}
._24{width:31.860720px;}
._a{width:32.896080px;}
._b{width:33.959520px;}
._18{width:35.880480px;}
._19{width:37.247040px;}
._22{width:38.280960px;}
._27{width:40.104000px;}
._29{width:41.160000px;}
._7{width:42.912000px;}
._8{width:43.992000px;}
._28{width:45.048000px;}
._25{width:47.952000px;}
._26{width:49.116000px;}
._1e{width:86.400000px;}
._11{width:194.376000px;}
._9{width:200.316000px;}
._d{width:799.982880px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.500000px;}
.y2{bottom:52.920000px;}
.y1{bottom:57.600000px;}
.y8a{bottom:77.076000px;}
.y6b{bottom:77.436000px;}
.y35{bottom:80.316000px;}
.y8e{bottom:84.096000px;}
.y89{bottom:94.356000px;}
.y6a{bottom:94.716000px;}
.y7e{bottom:99.936000px;}
.y34{bottom:101.016000px;}
.y99{bottom:104.436000px;}
.y8d{bottom:104.796000px;}
.y88{bottom:111.636000px;}
.y69{bottom:111.996000px;}
.y92{bottom:112.716000px;}
.y95{bottom:117.216000px;}
.y8c{bottom:125.496000px;}
.y87{bottom:128.916000px;}
.y68{bottom:129.276000px;}
.y94{bottom:129.996000px;}
.y67{bottom:134.496000px;}
.y33{bottom:142.776000px;}
.y86{bottom:146.196000px;}
.y7d{bottom:146.556000px;}
.y66{bottom:147.276000px;}
.y7c{bottom:151.770000px;}
.y32{bottom:163.470000px;}
.y7b{bottom:164.550000px;}
.y8b{bottom:166.890000px;}
.y85{bottom:180.570000px;}
.y31{bottom:184.170000px;}
.y84{bottom:185.070000px;}
.y65{bottom:187.590000px;}
.y83{bottom:198.930000px;}
.y30{bottom:204.870000px;}
.y64{bottom:208.290000px;}
.y2f{bottom:225.570000px;}
.y63{bottom:228.990000px;}
.y2e{bottom:246.090000px;}
.y62{bottom:249.690000px;}
.y2d{bottom:266.790000px;}
.y61{bottom:270.390000px;}
.y2c{bottom:287.490000px;}
.y60{bottom:291.090000px;}
.y2b{bottom:308.190000px;}
.y8f{bottom:311.430000px;}
.y5f{bottom:311.790000px;}
.y2a{bottom:328.935000px;}
.y5e{bottom:332.535000px;}
.y29{bottom:349.635000px;}
.y5d{bottom:353.235000px;}
.y28{bottom:370.335000px;}
.y5b{bottom:373.935000px;}
.y5c{bottom:380.775000px;}
.y27{bottom:391.035000px;}
.y7a{bottom:394.635000px;}
.y26{bottom:411.735000px;}
.y5a{bottom:415.335000px;}
.y25{bottom:432.435000px;}
.y91{bottom:435.675000px;}
.y59{bottom:436.035000px;}
.y24{bottom:453.135000px;}
.y58{bottom:456.735000px;}
.y23{bottom:473.835000px;}
.y57{bottom:477.435000px;}
.y22{bottom:494.535000px;}
.y56{bottom:498.135000px;}
.y21{bottom:515.235000px;}
.y55{bottom:518.835000px;}
.y20{bottom:535.935000px;}
.y54{bottom:539.535000px;}
.y1f{bottom:556.635000px;}
.y53{bottom:560.235000px;}
.y1e{bottom:577.335000px;}
.y82{bottom:580.575000px;}
.y52{bottom:580.935000px;}
.y1d{bottom:598.065000px;}
.y51{bottom:601.485000px;}
.y90{bottom:608.325000px;}
.y1c{bottom:618.765000px;}
.y50{bottom:622.185000px;}
.y93{bottom:629.025000px;}
.y1b{bottom:639.465000px;}
.y4f{bottom:642.885000px;}
.y1a{bottom:660.165000px;}
.y4e{bottom:663.585000px;}
.y81{bottom:670.425000px;}
.y19{bottom:680.865000px;}
.y4d{bottom:684.285000px;}
.y18{bottom:701.565000px;}
.y4c{bottom:704.985000px;}
.y17{bottom:721.905000px;}
.y98{bottom:725.325000px;}
.y4b{bottom:725.685000px;}
.y16{bottom:742.605000px;}
.y97{bottom:746.025000px;}
.y4a{bottom:746.385000px;}
.y15{bottom:763.305000px;}
.y96{bottom:766.725000px;}
.y49{bottom:767.085000px;}
.y14{bottom:784.005000px;}
.y80{bottom:787.425000px;}
.y48{bottom:787.785000px;}
.y13{bottom:804.705000px;}
.y79{bottom:808.485000px;}
.y12{bottom:825.405000px;}
.y47{bottom:829.185000px;}
.y11{bottom:846.105000px;}
.y46{bottom:849.885000px;}
.y10{bottom:866.850000px;}
.y45{bottom:870.270000px;}
.y78{bottom:870.630000px;}
.yf{bottom:887.550000px;}
.y77{bottom:891.330000px;}
.y44{bottom:903.570000px;}
.ye{bottom:908.250000px;}
.y76{bottom:912.030000px;}
.y43{bottom:917.250000px;}
.yd{bottom:928.950000px;}
.y42{bottom:931.110000px;}
.y74{bottom:932.730000px;}
.y75{bottom:939.570000px;}
.y41{bottom:944.970000px;}
.yc{bottom:949.650000px;}
.y73{bottom:953.430000px;}
.y40{bottom:958.650000px;}
.yb{bottom:970.350000px;}
.y3f{bottom:972.510000px;}
.y72{bottom:974.130000px;}
.y3e{bottom:986.370000px;}
.ya{bottom:991.050000px;}
.y71{bottom:994.830000px;}
.y3d{bottom:1000.050000px;}
.y9{bottom:1011.750000px;}
.y3c{bottom:1013.910000px;}
.y70{bottom:1015.530000px;}
.y3b{bottom:1027.770000px;}
.y8{bottom:1032.450000px;}
.y6f{bottom:1036.230000px;}
.y3a{bottom:1041.450000px;}
.y7{bottom:1053.150000px;}
.y39{bottom:1056.930000px;}
.y6{bottom:1075.830000px;}
.y38{bottom:1077.270000px;}
.y6e{bottom:1077.630000px;}
.y37{bottom:1097.970000px;}
.y6c{bottom:1098.330000px;}
.y5{bottom:1104.090000px;}
.y6d{bottom:1105.170000px;}
.y36{bottom:1118.670000px;}
.y7f{bottom:1119.030000px;}
.y4{bottom:1121.370000px;}
.h3{height:20.745000px;}
.hb{height:38.158594px;}
.he{height:40.550625px;}
.ha{height:47.344922px;}
.h7{height:48.616875px;}
.hd{height:53.573906px;}
.hc{height:58.651172px;}
.h4{height:62.327813px;}
.h8{height:64.546875px;}
.h2{height:70.664062px;}
.h6{height:72.562500px;}
.h5{height:112.640625px;}
.h9{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w4{width:18.000000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xa{left:132.516000px;}
.x4{left:148.896000px;}
.x10{left:154.650000px;}
.xf{left:180.750000px;}
.x12{left:195.127500px;}
.x13{left:201.270000px;}
.xd{left:222.667500px;}
.xe{left:228.810000px;}
.xb{left:321.892500px;}
.xc{left:328.035000px;}
.x9{left:343.695000px;}
.x6{left:403.125000px;}
.x5{left:446.505000px;}
.x14{left:747.540000px;}
.x7{left:755.077500px;}
.x2{left:756.540000px;}
.x11{left:759.397500px;}
.x8{left:761.220000px;}
.x3{left:765.540000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-49.280000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.880000pt;}
.ls23{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.040320pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls20{letter-spacing:1.280000pt;}
.lse{letter-spacing:2.080000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls6{letter-spacing:3.360000pt;}
.ls14{letter-spacing:3.840000pt;}
.lsf{letter-spacing:4.000000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls19{letter-spacing:7.680000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls12{letter-spacing:12.800000pt;}
.ls25{letter-spacing:15.360000pt;}
.ls16{letter-spacing:15.946667pt;}
.ls24{letter-spacing:56.320000pt;}
.ls13{letter-spacing:76.160000pt;}
.ls1d{letter-spacing:76.800000pt;}
.ls18{letter-spacing:172.138667pt;}
.ls4{letter-spacing:172.778667pt;}
.ls3{letter-spacing:178.058667pt;}
.ls0{letter-spacing:1117.685333pt;}
.wsb{word-spacing:-16.576000pt;}
.ws0{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.679680pt;}
.ws4{word-spacing:-9.840000pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-10.325333pt;}
._1d{margin-left:-2.314667pt;}
._5{margin-left:-1.408000pt;}
._2{width:1.141333pt;}
._c{width:2.043733pt;}
._e{width:3.584000pt;}
._0{width:4.928000pt;}
._1{width:6.016000pt;}
._17{width:6.912000pt;}
._13{width:8.576000pt;}
._12{width:10.240000pt;}
._14{width:11.200000pt;}
._3{width:12.096000pt;}
._4{width:13.504000pt;}
._6{width:15.040000pt;}
._20{width:16.653653pt;}
._10{width:17.610667pt;}
._f{width:18.560000pt;}
._1a{width:19.968000pt;}
._1b{width:20.928000pt;}
._15{width:21.888000pt;}
._16{width:23.178667pt;}
._1c{width:24.416000pt;}
._1f{width:25.674667pt;}
._21{width:27.091200pt;}
._24{width:28.320640pt;}
._a{width:29.240960pt;}
._b{width:30.186240pt;}
._18{width:31.893760pt;}
._19{width:33.108480pt;}
._22{width:34.027520pt;}
._27{width:35.648000pt;}
._29{width:36.586667pt;}
._7{width:38.144000pt;}
._8{width:39.104000pt;}
._28{width:40.042667pt;}
._25{width:42.624000pt;}
._26{width:43.658667pt;}
._1e{width:76.800000pt;}
._11{width:172.778667pt;}
._9{width:178.058667pt;}
._d{width:711.095893pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.000000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:51.200000pt;}
.y8a{bottom:68.512000pt;}
.y6b{bottom:68.832000pt;}
.y35{bottom:71.392000pt;}
.y8e{bottom:74.752000pt;}
.y89{bottom:83.872000pt;}
.y6a{bottom:84.192000pt;}
.y7e{bottom:88.832000pt;}
.y34{bottom:89.792000pt;}
.y99{bottom:92.832000pt;}
.y8d{bottom:93.152000pt;}
.y88{bottom:99.232000pt;}
.y69{bottom:99.552000pt;}
.y92{bottom:100.192000pt;}
.y95{bottom:104.192000pt;}
.y8c{bottom:111.552000pt;}
.y87{bottom:114.592000pt;}
.y68{bottom:114.912000pt;}
.y94{bottom:115.552000pt;}
.y67{bottom:119.552000pt;}
.y33{bottom:126.912000pt;}
.y86{bottom:129.952000pt;}
.y7d{bottom:130.272000pt;}
.y66{bottom:130.912000pt;}
.y7c{bottom:134.906667pt;}
.y32{bottom:145.306667pt;}
.y7b{bottom:146.266667pt;}
.y8b{bottom:148.346667pt;}
.y85{bottom:160.506667pt;}
.y31{bottom:163.706667pt;}
.y84{bottom:164.506667pt;}
.y65{bottom:166.746667pt;}
.y83{bottom:176.826667pt;}
.y30{bottom:182.106667pt;}
.y64{bottom:185.146667pt;}
.y2f{bottom:200.506667pt;}
.y63{bottom:203.546667pt;}
.y2e{bottom:218.746667pt;}
.y62{bottom:221.946667pt;}
.y2d{bottom:237.146667pt;}
.y61{bottom:240.346667pt;}
.y2c{bottom:255.546667pt;}
.y60{bottom:258.746667pt;}
.y2b{bottom:273.946667pt;}
.y8f{bottom:276.826667pt;}
.y5f{bottom:277.146667pt;}
.y2a{bottom:292.386667pt;}
.y5e{bottom:295.586667pt;}
.y29{bottom:310.786667pt;}
.y5d{bottom:313.986667pt;}
.y28{bottom:329.186667pt;}
.y5b{bottom:332.386667pt;}
.y5c{bottom:338.466667pt;}
.y27{bottom:347.586667pt;}
.y7a{bottom:350.786667pt;}
.y26{bottom:365.986667pt;}
.y5a{bottom:369.186667pt;}
.y25{bottom:384.386667pt;}
.y91{bottom:387.266667pt;}
.y59{bottom:387.586667pt;}
.y24{bottom:402.786667pt;}
.y58{bottom:405.986667pt;}
.y23{bottom:421.186667pt;}
.y57{bottom:424.386667pt;}
.y22{bottom:439.586667pt;}
.y56{bottom:442.786667pt;}
.y21{bottom:457.986667pt;}
.y55{bottom:461.186667pt;}
.y20{bottom:476.386667pt;}
.y54{bottom:479.586667pt;}
.y1f{bottom:494.786667pt;}
.y53{bottom:497.986667pt;}
.y1e{bottom:513.186667pt;}
.y82{bottom:516.066667pt;}
.y52{bottom:516.386667pt;}
.y1d{bottom:531.613333pt;}
.y51{bottom:534.653333pt;}
.y90{bottom:540.733333pt;}
.y1c{bottom:550.013333pt;}
.y50{bottom:553.053333pt;}
.y93{bottom:559.133333pt;}
.y1b{bottom:568.413333pt;}
.y4f{bottom:571.453333pt;}
.y1a{bottom:586.813333pt;}
.y4e{bottom:589.853333pt;}
.y81{bottom:595.933333pt;}
.y19{bottom:605.213333pt;}
.y4d{bottom:608.253333pt;}
.y18{bottom:623.613333pt;}
.y4c{bottom:626.653333pt;}
.y17{bottom:641.693333pt;}
.y98{bottom:644.733333pt;}
.y4b{bottom:645.053333pt;}
.y16{bottom:660.093333pt;}
.y97{bottom:663.133333pt;}
.y4a{bottom:663.453333pt;}
.y15{bottom:678.493333pt;}
.y96{bottom:681.533333pt;}
.y49{bottom:681.853333pt;}
.y14{bottom:696.893333pt;}
.y80{bottom:699.933333pt;}
.y48{bottom:700.253333pt;}
.y13{bottom:715.293333pt;}
.y79{bottom:718.653333pt;}
.y12{bottom:733.693333pt;}
.y47{bottom:737.053333pt;}
.y11{bottom:752.093333pt;}
.y46{bottom:755.453333pt;}
.y10{bottom:770.533333pt;}
.y45{bottom:773.573333pt;}
.y78{bottom:773.893333pt;}
.yf{bottom:788.933333pt;}
.y77{bottom:792.293333pt;}
.y44{bottom:803.173333pt;}
.ye{bottom:807.333333pt;}
.y76{bottom:810.693333pt;}
.y43{bottom:815.333333pt;}
.yd{bottom:825.733333pt;}
.y42{bottom:827.653333pt;}
.y74{bottom:829.093333pt;}
.y75{bottom:835.173333pt;}
.y41{bottom:839.973333pt;}
.yc{bottom:844.133333pt;}
.y73{bottom:847.493333pt;}
.y40{bottom:852.133333pt;}
.yb{bottom:862.533333pt;}
.y3f{bottom:864.453333pt;}
.y72{bottom:865.893333pt;}
.y3e{bottom:876.773333pt;}
.ya{bottom:880.933333pt;}
.y71{bottom:884.293333pt;}
.y3d{bottom:888.933333pt;}
.y9{bottom:899.333333pt;}
.y3c{bottom:901.253333pt;}
.y70{bottom:902.693333pt;}
.y3b{bottom:913.573333pt;}
.y8{bottom:917.733333pt;}
.y6f{bottom:921.093333pt;}
.y3a{bottom:925.733333pt;}
.y7{bottom:936.133333pt;}
.y39{bottom:939.493333pt;}
.y6{bottom:956.293333pt;}
.y38{bottom:957.573333pt;}
.y6e{bottom:957.893333pt;}
.y37{bottom:975.973333pt;}
.y6c{bottom:976.293333pt;}
.y5{bottom:981.413333pt;}
.y6d{bottom:982.373333pt;}
.y36{bottom:994.373333pt;}
.y7f{bottom:994.693333pt;}
.y4{bottom:996.773333pt;}
.h3{height:18.440000pt;}
.hb{height:33.918750pt;}
.he{height:36.045000pt;}
.ha{height:42.084375pt;}
.h7{height:43.215000pt;}
.hd{height:47.621250pt;}
.hc{height:52.134375pt;}
.h4{height:55.402500pt;}
.h8{height:57.375000pt;}
.h2{height:62.812500pt;}
.h6{height:64.500000pt;}
.h5{height:100.125000pt;}
.h9{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w4{width:16.000000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xa{left:117.792000pt;}
.x4{left:132.352000pt;}
.x10{left:137.466667pt;}
.xf{left:160.666667pt;}
.x12{left:173.446667pt;}
.x13{left:178.906667pt;}
.xd{left:197.926667pt;}
.xe{left:203.386667pt;}
.xb{left:286.126667pt;}
.xc{left:291.586667pt;}
.x9{left:305.506667pt;}
.x6{left:358.333333pt;}
.x5{left:396.893333pt;}
.x14{left:664.480000pt;}
.x7{left:671.180000pt;}
.x2{left:672.480000pt;}
.x11{left:675.020000pt;}
.x8{left:676.640000pt;}
.x3{left:680.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; }
  