
    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_ef42100136bd2193b0959aff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ab4b8aa4095fc07e7bded323.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_27feba5f6862cf9b40fe16d7.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07c154d4d6f2ce040ac2ae0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_dae1004be616a402b769e566.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-138.960000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.350400px;}
.lsc{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.305400px;}
.ls1{letter-spacing:825.276000px;}
.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;}
}
.ws6{word-spacing:-20.709600px;}
.ws3{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.450800px;}
.ws8{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.840000px;}
.ws0{word-spacing:0.000000px;}
._35{margin-left:-15.120000px;}
._36{margin-left:-3.861120px;}
._0{margin-left:-1.589760px;}
._1{width:1.753440px;}
._e{width:2.783040px;}
._2{width:4.046400px;}
._b{width:5.497920px;}
._d{width:6.557760px;}
._c{width:7.651680px;}
._14{width:8.655840px;}
._2f{width:9.662880px;}
._4{width:10.668960px;}
._3{width:12.034560px;}
._15{width:13.179840px;}
._9{width:14.208960px;}
._a{width:15.392160px;}
._22{width:18.414720px;}
._5{width:20.468160px;}
._6{width:22.329120px;}
._19{width:23.383200px;}
._23{width:24.480000px;}
._28{width:25.767360px;}
._1f{width:27.290880px;}
._16{width:28.615680px;}
._1c{width:29.741760px;}
._2e{width:31.366560px;}
._f{width:33.649920px;}
._17{width:35.040960px;}
._10{width:36.961920px;}
._11{width:38.025600px;}
._29{width:39.744000px;}
._2a{width:41.315520px;}
._21{width:44.579520px;}
._20{width:45.639360px;}
._18{width:46.765440px;}
._27{width:48.990720px;}
._1a{width:50.090880px;}
._13{width:51.294720px;}
._12{width:52.462080px;}
._1b{width:56.039040px;}
._2d{width:57.314400px;}
._7{width:59.064960px;}
._8{width:60.299520px;}
._32{width:63.336000px;}
._26{width:72.665280px;}
._25{width:74.122560px;}
._33{width:79.896000px;}
._30{width:96.456000px;}
._31{width:195.840000px;}
._34{width:215.244960px;}
._2b{width:320.402880px;}
._2c{width:321.528960px;}
._1e{width:443.620800px;}
._1d{width:444.862080px;}
._24{width:1140.321600px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:57.456000px;}
.y1d{bottom:78.156000px;}
.y4{bottom:97.125005px;}
.y8a{bottom:110.016000px;}
.y92{bottom:115.956000px;}
.y89{bottom:131.796000px;}
.y91{bottom:137.736000px;}
.y1c{bottom:139.264499px;}
.y4b{bottom:141.516000px;}
.y88{bottom:153.750000px;}
.y90{bottom:159.690000px;}
.y4a{bottom:163.290000px;}
.y87{bottom:175.530000px;}
.y8f{bottom:181.470000px;}
.y49{bottom:185.250000px;}
.y13{bottom:196.933500px;}
.y86{bottom:197.310000px;}
.y8e{bottom:203.250000px;}
.y48{bottom:207.030000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y85{bottom:219.090000px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.y8d{bottom:225.030000px;}
.y47{bottom:228.810000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y84{bottom:241.050000px;}
.y8c{bottom:246.990000px;}
.y46{bottom:250.590000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.y83{bottom:264.630000px;}
.y8b{bottom:268.770000px;}
.y45{bottom:272.370000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.y82{bottom:290.595000px;}
.y44{bottom:294.375000px;}
.y80{bottom:306.435000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y81{bottom:312.375000px;}
.y43{bottom:316.155000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.y7f{bottom:328.215000px;}
.y70{bottom:334.155000px;}
.y42{bottom:337.935000px;}
.ya{bottom:348.133500px;}
.y7e{bottom:350.175000px;}
.y6f{bottom:356.115000px;}
.y41{bottom:359.715000px;}
.y7d{bottom:371.955000px;}
.y6e{bottom:377.895000px;}
.y40{bottom:381.495000px;}
.y9{bottom:386.785499px;}
.y7c{bottom:393.735000px;}
.y6d{bottom:399.675000px;}
.y3f{bottom:403.455000px;}
.y8{bottom:408.044999px;}
.y7b{bottom:415.515000px;}
.y6c{bottom:421.455000px;}
.y3e{bottom:425.235000px;}
.y7a{bottom:437.295000px;}
.y6b{bottom:443.415000px;}
.y3d{bottom:447.015000px;}
.y79{bottom:459.255000px;}
.y6a{bottom:465.195000px;}
.y3c{bottom:468.795000px;}
.y78{bottom:481.035000px;}
.y69{bottom:486.975000px;}
.y3b{bottom:490.755000px;}
.y77{bottom:502.815000px;}
.y68{bottom:508.755000px;}
.y3a{bottom:514.335000px;}
.y7{bottom:520.864502px;}
.y76{bottom:524.595000px;}
.y67{bottom:530.535000px;}
.y6{bottom:538.864499px;}
.y39{bottom:540.255000px;}
.y75{bottom:546.555000px;}
.y66{bottom:552.495000px;}
.y5{bottom:556.864499px;}
.y38{bottom:562.065000px;}
.y74{bottom:568.365000px;}
.y65{bottom:574.305000px;}
.y37{bottom:584.025000px;}
.y73{bottom:590.145000px;}
.y64{bottom:596.085000px;}
.y36{bottom:605.805000px;}
.y72{bottom:611.925000px;}
.y63{bottom:617.865000px;}
.y35{bottom:627.585000px;}
.y71{bottom:635.685000px;}
.y62{bottom:639.825000px;}
.y34{bottom:649.365000px;}
.y61{bottom:661.605000px;}
.y33{bottom:671.145000px;}
.y60{bottom:683.385000px;}
.y32{bottom:693.105000px;}
.y5f{bottom:705.165000px;}
.y31{bottom:714.885000px;}
.y5e{bottom:726.945000px;}
.y30{bottom:736.665000px;}
.ya6{bottom:748.725000px;}
.y5d{bottom:748.905000px;}
.y3{bottom:752.599495px;}
.y2f{bottom:758.445000px;}
.ya5{bottom:770.505000px;}
.y5c{bottom:770.685000px;}
.y2e{bottom:780.405000px;}
.ya4{bottom:789.585000px;}
.y5b{bottom:792.465000px;}
.y2d{bottom:802.185000px;}
.ya3{bottom:808.485000px;}
.y5a{bottom:814.245000px;}
.y2c{bottom:823.965000px;}
.ya2{bottom:827.565000px;}
.y59{bottom:836.205000px;}
.y2b{bottom:845.790000px;}
.ya1{bottom:846.510000px;}
.y58{bottom:858.030000px;}
.ya0{bottom:865.410000px;}
.y2a{bottom:867.570000px;}
.y2{bottom:879.369000px;}
.y57{bottom:879.810000px;}
.y9f{bottom:884.490000px;}
.y29{bottom:889.530000px;}
.y56{bottom:901.590000px;}
.y9e{bottom:903.390000px;}
.y28{bottom:911.310000px;}
.y9d{bottom:922.470000px;}
.y55{bottom:923.370000px;}
.y27{bottom:933.090000px;}
.y9c{bottom:941.370000px;}
.y54{bottom:945.330000px;}
.y26{bottom:954.870000px;}
.y9b{bottom:960.270000px;}
.y1{bottom:966.726000px;}
.y53{bottom:967.110000px;}
.y25{bottom:976.650000px;}
.y9a{bottom:979.350000px;}
.y52{bottom:988.890000px;}
.y99{bottom:998.250000px;}
.y24{bottom:998.610000px;}
.y51{bottom:1010.670000px;}
.y98{bottom:1017.330000px;}
.y50{bottom:1032.450000px;}
.y97{bottom:1036.230000px;}
.y4f{bottom:1054.410000px;}
.y96{bottom:1055.130000px;}
.y23{bottom:1059.990000px;}
.y95{bottom:1074.210000px;}
.y4e{bottom:1076.190000px;}
.y22{bottom:1081.950000px;}
.y94{bottom:1095.990000px;}
.y4d{bottom:1097.970000px;}
.y21{bottom:1103.730000px;}
.y93{bottom:1117.950000px;}
.y4c{bottom:1119.750000px;}
.y20{bottom:1122.660000px;}
.y1f{bottom:1141.740000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:64.978594px;}
.ha{height:65.010937px;}
.hb{height:66.757500px;}
.h9{height:70.664062px;}
.he{height:72.562500px;}
.h5{height:78.030000px;}
.hc{height:82.635820px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:100.116000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:153.210000px;}
.x4{left:203.484001px;}
.x9{left:206.310000px;}
.x3{left:454.959000px;}
.x8{left:704.670000px;}
.x5{left:784.050000px;}
@media print{
.v1{vertical-align:-123.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.311467pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.271467pt;}
.ls1{letter-spacing:733.578667pt;}
.ws6{word-spacing:-18.408533pt;}
.ws3{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.622933pt;}
.ws8{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.080000pt;}
.ws0{word-spacing:0.000000pt;}
._35{margin-left:-13.440000pt;}
._36{margin-left:-3.432107pt;}
._0{margin-left:-1.413120pt;}
._1{width:1.558613pt;}
._e{width:2.473813pt;}
._2{width:3.596800pt;}
._b{width:4.887040pt;}
._d{width:5.829120pt;}
._c{width:6.801493pt;}
._14{width:7.694080pt;}
._2f{width:8.589227pt;}
._4{width:9.483520pt;}
._3{width:10.697387pt;}
._15{width:11.715413pt;}
._9{width:12.630187pt;}
._a{width:13.681920pt;}
._22{width:16.368640pt;}
._5{width:18.193920pt;}
._6{width:19.848107pt;}
._19{width:20.785067pt;}
._23{width:21.760000pt;}
._28{width:22.904320pt;}
._1f{width:24.258560pt;}
._16{width:25.436160pt;}
._1c{width:26.437120pt;}
._2e{width:27.881387pt;}
._f{width:29.911040pt;}
._17{width:31.147520pt;}
._10{width:32.855040pt;}
._11{width:33.800533pt;}
._29{width:35.328000pt;}
._2a{width:36.724907pt;}
._21{width:39.626240pt;}
._20{width:40.568320pt;}
._18{width:41.569280pt;}
._27{width:43.547307pt;}
._1a{width:44.525227pt;}
._13{width:45.595307pt;}
._12{width:46.632960pt;}
._1b{width:49.812480pt;}
._2d{width:50.946133pt;}
._7{width:52.502187pt;}
._8{width:53.599573pt;}
._32{width:56.298667pt;}
._26{width:64.591360pt;}
._25{width:65.886720pt;}
._33{width:71.018667pt;}
._30{width:85.738667pt;}
._31{width:174.080000pt;}
._34{width:191.328853pt;}
._2b{width:284.802560pt;}
._2c{width:285.803520pt;}
._1e{width:394.329600pt;}
._1d{width:395.432960pt;}
._24{width:1013.619200pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:51.072000pt;}
.y1d{bottom:69.472000pt;}
.y4{bottom:86.333337pt;}
.y8a{bottom:97.792000pt;}
.y92{bottom:103.072000pt;}
.y89{bottom:117.152000pt;}
.y91{bottom:122.432000pt;}
.y1c{bottom:123.790666pt;}
.y4b{bottom:125.792000pt;}
.y88{bottom:136.666667pt;}
.y90{bottom:141.946667pt;}
.y4a{bottom:145.146667pt;}
.y87{bottom:156.026667pt;}
.y8f{bottom:161.306667pt;}
.y49{bottom:164.666667pt;}
.y13{bottom:175.052000pt;}
.y86{bottom:175.386667pt;}
.y8e{bottom:180.666667pt;}
.y48{bottom:184.026667pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y85{bottom:194.746667pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.y8d{bottom:200.026667pt;}
.y47{bottom:203.386667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y84{bottom:214.266667pt;}
.y8c{bottom:219.546667pt;}
.y46{bottom:222.746667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.y83{bottom:235.226667pt;}
.y8b{bottom:238.906667pt;}
.y45{bottom:242.106667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.y82{bottom:258.306667pt;}
.y44{bottom:261.666667pt;}
.y80{bottom:272.386667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y81{bottom:277.666667pt;}
.y43{bottom:281.026667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.y7f{bottom:291.746667pt;}
.y70{bottom:297.026667pt;}
.y42{bottom:300.386667pt;}
.ya{bottom:309.452000pt;}
.y7e{bottom:311.266667pt;}
.y6f{bottom:316.546667pt;}
.y41{bottom:319.746667pt;}
.y7d{bottom:330.626667pt;}
.y6e{bottom:335.906667pt;}
.y40{bottom:339.106667pt;}
.y9{bottom:343.809333pt;}
.y7c{bottom:349.986667pt;}
.y6d{bottom:355.266667pt;}
.y3f{bottom:358.626667pt;}
.y8{bottom:362.706666pt;}
.y7b{bottom:369.346667pt;}
.y6c{bottom:374.626667pt;}
.y3e{bottom:377.986667pt;}
.y7a{bottom:388.706667pt;}
.y6b{bottom:394.146667pt;}
.y3d{bottom:397.346667pt;}
.y79{bottom:408.226667pt;}
.y6a{bottom:413.506667pt;}
.y3c{bottom:416.706667pt;}
.y78{bottom:427.586667pt;}
.y69{bottom:432.866667pt;}
.y3b{bottom:436.226667pt;}
.y77{bottom:446.946667pt;}
.y68{bottom:452.226667pt;}
.y3a{bottom:457.186667pt;}
.y7{bottom:462.990669pt;}
.y76{bottom:466.306667pt;}
.y67{bottom:471.586667pt;}
.y6{bottom:478.990666pt;}
.y39{bottom:480.226667pt;}
.y75{bottom:485.826667pt;}
.y66{bottom:491.106667pt;}
.y5{bottom:494.990666pt;}
.y38{bottom:499.613333pt;}
.y74{bottom:505.213333pt;}
.y65{bottom:510.493333pt;}
.y37{bottom:519.133333pt;}
.y73{bottom:524.573333pt;}
.y64{bottom:529.853333pt;}
.y36{bottom:538.493333pt;}
.y72{bottom:543.933333pt;}
.y63{bottom:549.213333pt;}
.y35{bottom:557.853333pt;}
.y71{bottom:565.053333pt;}
.y62{bottom:568.733333pt;}
.y34{bottom:577.213333pt;}
.y61{bottom:588.093333pt;}
.y33{bottom:596.573333pt;}
.y60{bottom:607.453333pt;}
.y32{bottom:616.093333pt;}
.y5f{bottom:626.813333pt;}
.y31{bottom:635.453333pt;}
.y5e{bottom:646.173333pt;}
.y30{bottom:654.813333pt;}
.ya6{bottom:665.533333pt;}
.y5d{bottom:665.693333pt;}
.y3{bottom:668.977329pt;}
.y2f{bottom:674.173333pt;}
.ya5{bottom:684.893333pt;}
.y5c{bottom:685.053333pt;}
.y2e{bottom:693.693333pt;}
.ya4{bottom:701.853333pt;}
.y5b{bottom:704.413333pt;}
.y2d{bottom:713.053333pt;}
.ya3{bottom:718.653333pt;}
.y5a{bottom:723.773333pt;}
.y2c{bottom:732.413333pt;}
.ya2{bottom:735.613333pt;}
.y59{bottom:743.293333pt;}
.y2b{bottom:751.813333pt;}
.ya1{bottom:752.453333pt;}
.y58{bottom:762.693333pt;}
.ya0{bottom:769.253333pt;}
.y2a{bottom:771.173333pt;}
.y2{bottom:781.661334pt;}
.y57{bottom:782.053333pt;}
.y9f{bottom:786.213333pt;}
.y29{bottom:790.693333pt;}
.y56{bottom:801.413333pt;}
.y9e{bottom:803.013333pt;}
.y28{bottom:810.053333pt;}
.y9d{bottom:819.973333pt;}
.y55{bottom:820.773333pt;}
.y27{bottom:829.413333pt;}
.y9c{bottom:836.773333pt;}
.y54{bottom:840.293333pt;}
.y26{bottom:848.773333pt;}
.y9b{bottom:853.573333pt;}
.y1{bottom:859.312000pt;}
.y53{bottom:859.653333pt;}
.y25{bottom:868.133333pt;}
.y9a{bottom:870.533333pt;}
.y52{bottom:879.013333pt;}
.y99{bottom:887.333333pt;}
.y24{bottom:887.653333pt;}
.y51{bottom:898.373333pt;}
.y98{bottom:904.293333pt;}
.y50{bottom:917.733333pt;}
.y97{bottom:921.093333pt;}
.y4f{bottom:937.253333pt;}
.y96{bottom:937.893333pt;}
.y23{bottom:942.213333pt;}
.y95{bottom:954.853333pt;}
.y4e{bottom:956.613333pt;}
.y22{bottom:961.733333pt;}
.y94{bottom:974.213333pt;}
.y4d{bottom:975.973333pt;}
.y21{bottom:981.093333pt;}
.y93{bottom:993.733333pt;}
.y4c{bottom:995.333333pt;}
.y20{bottom:997.920000pt;}
.y1f{bottom:1014.880000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:57.758750pt;}
.ha{height:57.787500pt;}
.hb{height:59.340000pt;}
.h9{height:62.812500pt;}
.he{height:64.500000pt;}
.h5{height:69.360000pt;}
.hc{height:73.454062pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:88.992000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:136.186667pt;}
.x4{left:180.874667pt;}
.x9{left:183.386667pt;}
.x3{left:404.408000pt;}
.x8{left:626.373333pt;}
.x5{left:696.933333pt;}
}




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