
    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_ebf7abd14e065682d0880be1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_be14fcce0ba7593dc9128492.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_c5400dff8d63122e53c6f9da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_2fe867f9f26ff2c7d5e08a5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_43910e15fb3ebef23b92b988.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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:ff8;src:url('chunks/assets/font_3257c63f362cfd2ce5e54918.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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:ff9;src:url('chunks/assets/font_dbd9d5bfebd093eac123ae69.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.924000px;}
.ls1{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.666000px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-3.609840px;}
._b{margin-left:-2.457120px;}
._0{margin-left:-1.080000px;}
._c{width:1.187520px;}
._1{width:2.220000px;}
._14{width:4.146960px;}
._1c{width:5.343840px;}
._15{width:6.461760px;}
._19{width:7.566480px;}
._1d{width:8.583840px;}
._1b{width:9.621360px;}
._6{width:10.800000px;}
._13{width:12.351120px;}
._1e{width:13.432320px;}
._1f{width:16.194960px;}
._11{width:18.948000px;}
._21{width:20.206560px;}
._20{width:21.633120px;}
._17{width:24.865920px;}
._16{width:26.297280px;}
._18{width:27.335280px;}
._23{width:35.855280px;}
._24{width:36.934320px;}
._7{width:76.284960px;}
._12{width:99.660000px;}
._22{width:104.022480px;}
._8{width:154.080000px;}
._e{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._f{width:637.320000px;}
._a{width:1097.040000px;}
._d{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:34.596000px;}
.y5{bottom:40.320000px;}
.yb{bottom:55.116000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.856000px;}
.ya{bottom:75.456000px;}
.y3{bottom:96.330000px;}
.y97{bottom:114.336000px;}
.y2{bottom:125.670000px;}
.y95{bottom:126.216000px;}
.y3b{bottom:127.116000px;}
.y96{bottom:132.876000px;}
.y69{bottom:135.216000px;}
.y94{bottom:146.016000px;}
.y3a{bottom:146.916000px;}
.y68{bottom:155.010000px;}
.y93{bottom:165.990000px;}
.y39{bottom:166.890000px;}
.y67{bottom:174.990000px;}
.y92{bottom:185.790000px;}
.y38{bottom:186.690000px;}
.y66{bottom:194.790000px;}
.y91{bottom:205.590000px;}
.y37{bottom:206.490000px;}
.y65{bottom:214.590000px;}
.y90{bottom:225.390000px;}
.y36{bottom:226.290000px;}
.y64{bottom:234.390000px;}
.y8f{bottom:245.190000px;}
.y35{bottom:246.090000px;}
.y63{bottom:254.190000px;}
.y8e{bottom:264.990000px;}
.y34{bottom:266.070000px;}
.y62{bottom:273.990000px;}
.y8d{bottom:284.970000px;}
.y33{bottom:285.870000px;}
.y61{bottom:294.015000px;}
.y8c{bottom:304.815000px;}
.y32{bottom:305.715000px;}
.y60{bottom:313.815000px;}
.y8b{bottom:324.615000px;}
.y31{bottom:325.515000px;}
.y5f{bottom:333.615000px;}
.y8a{bottom:344.415000px;}
.y30{bottom:345.315000px;}
.y5e{bottom:353.415000px;}
.y89{bottom:364.215000px;}
.y2f{bottom:365.295000px;}
.y5d{bottom:373.215000px;}
.y88{bottom:384.195000px;}
.y2e{bottom:385.095000px;}
.y5c{bottom:393.195000px;}
.y87{bottom:403.995000px;}
.y2d{bottom:404.895000px;}
.y5b{bottom:412.995000px;}
.y86{bottom:423.795000px;}
.y2c{bottom:424.695000px;}
.y5a{bottom:432.795000px;}
.y85{bottom:443.595000px;}
.y2b{bottom:444.495000px;}
.y59{bottom:452.595000px;}
.y84{bottom:463.395000px;}
.y2a{bottom:464.475000px;}
.y58{bottom:472.395000px;}
.y83{bottom:483.375000px;}
.y29{bottom:484.275000px;}
.y57{bottom:492.375000px;}
.y82{bottom:503.175000px;}
.y28{bottom:504.075000px;}
.y56{bottom:512.175000px;}
.y81{bottom:522.975000px;}
.y27{bottom:523.875000px;}
.y55{bottom:531.975000px;}
.y80{bottom:542.775000px;}
.y26{bottom:543.675000px;}
.y54{bottom:551.775000px;}
.y7f{bottom:562.575000px;}
.y25{bottom:563.655000px;}
.y53{bottom:571.575000px;}
.y7e{bottom:582.585000px;}
.y24{bottom:583.485000px;}
.y52{bottom:591.585000px;}
.y7d{bottom:602.385000px;}
.y23{bottom:603.285000px;}
.y51{bottom:611.385000px;}
.y7c{bottom:622.185000px;}
.y22{bottom:623.085000px;}
.y50{bottom:631.185000px;}
.y7b{bottom:641.985000px;}
.y21{bottom:642.885000px;}
.y4f{bottom:650.985000px;}
.y7a{bottom:661.785000px;}
.y20{bottom:662.865000px;}
.y4e{bottom:670.785000px;}
.y79{bottom:681.765000px;}
.y1f{bottom:682.665000px;}
.y4d{bottom:690.765000px;}
.y78{bottom:701.565000px;}
.y1e{bottom:702.465000px;}
.y4c{bottom:710.565000px;}
.y77{bottom:721.365000px;}
.y1d{bottom:722.265000px;}
.y4b{bottom:730.365000px;}
.y76{bottom:741.165000px;}
.y1c{bottom:742.065000px;}
.y4a{bottom:750.165000px;}
.y75{bottom:760.965000px;}
.y1b{bottom:762.045000px;}
.y49{bottom:769.965000px;}
.y74{bottom:780.945000px;}
.y1a{bottom:781.845000px;}
.y48{bottom:789.945000px;}
.y73{bottom:800.745000px;}
.y19{bottom:801.645000px;}
.y47{bottom:809.745000px;}
.y72{bottom:820.545000px;}
.y18{bottom:821.445000px;}
.y46{bottom:829.545000px;}
.y71{bottom:840.345000px;}
.y17{bottom:841.245000px;}
.y45{bottom:849.345000px;}
.y70{bottom:860.190000px;}
.y16{bottom:861.270000px;}
.y44{bottom:869.190000px;}
.y6f{bottom:880.170000px;}
.y15{bottom:881.070000px;}
.y43{bottom:889.170000px;}
.y6e{bottom:899.970000px;}
.y14{bottom:900.870000px;}
.y42{bottom:908.970000px;}
.y6d{bottom:919.770000px;}
.y13{bottom:920.670000px;}
.y41{bottom:928.770000px;}
.y6c{bottom:939.570000px;}
.y12{bottom:940.470000px;}
.y40{bottom:948.570000px;}
.y6b{bottom:959.370000px;}
.y11{bottom:960.990000px;}
.y3f{bottom:968.370000px;}
.y6a{bottom:979.350000px;}
.y10{bottom:982.230000px;}
.y3e{bottom:988.350000px;}
.yf{bottom:1004.370000px;}
.y3d{bottom:1008.150000px;}
.y3c{bottom:1027.950000px;}
.y9{bottom:1045.410000px;}
.y1{bottom:1061.790000px;}
.y7{bottom:1095.990000px;}
.h6{height:2.010938px;}
.hb{height:21.420000px;}
.h7{height:33.480000px;}
.he{height:41.726953px;}
.hf{height:42.164648px;}
.h11{height:43.506914px;}
.h10{height:45.549492px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h8{height:48.224531px;}
.h12{height:48.496641px;}
.h9{height:53.224453px;}
.hd{height:59.436914px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:9.900000px;}
.w3{width:137.376000px;}
.w2{width:649.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.xb{left:81.035987px;}
.xa{left:107.135987px;}
.x4{left:118.470000px;}
.x6{left:133.415987px;}
.x9{left:301.934987px;}
.x8{left:374.834987px;}
.x7{left:446.684987px;}
.x3{left:702.690000px;}
.x5{left:829.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.821333pt;}
.ls1{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.592000pt;}
.lsf{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-3.208747pt;}
._b{margin-left:-2.184107pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.055573pt;}
._1{width:1.973333pt;}
._14{width:3.686187pt;}
._1c{width:4.750080pt;}
._15{width:5.743787pt;}
._19{width:6.725760pt;}
._1d{width:7.630080pt;}
._1b{width:8.552320pt;}
._6{width:9.600000pt;}
._13{width:10.978773pt;}
._1e{width:11.939840pt;}
._1f{width:14.395520pt;}
._11{width:16.842667pt;}
._21{width:17.961387pt;}
._20{width:19.229440pt;}
._17{width:22.103040pt;}
._16{width:23.375360pt;}
._18{width:24.298027pt;}
._23{width:31.871360pt;}
._24{width:32.830507pt;}
._7{width:67.808853pt;}
._12{width:88.586667pt;}
._22{width:92.464427pt;}
._8{width:136.960000pt;}
._e{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._f{width:566.506667pt;}
._a{width:975.146667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:30.752000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:48.992000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.872000pt;}
.ya{bottom:67.072000pt;}
.y3{bottom:85.626667pt;}
.y97{bottom:101.632000pt;}
.y2{bottom:111.706667pt;}
.y95{bottom:112.192000pt;}
.y3b{bottom:112.992000pt;}
.y96{bottom:118.112000pt;}
.y69{bottom:120.192000pt;}
.y94{bottom:129.792000pt;}
.y3a{bottom:130.592000pt;}
.y68{bottom:137.786667pt;}
.y93{bottom:147.546667pt;}
.y39{bottom:148.346667pt;}
.y67{bottom:155.546667pt;}
.y92{bottom:165.146667pt;}
.y38{bottom:165.946667pt;}
.y66{bottom:173.146667pt;}
.y91{bottom:182.746667pt;}
.y37{bottom:183.546667pt;}
.y65{bottom:190.746667pt;}
.y90{bottom:200.346667pt;}
.y36{bottom:201.146667pt;}
.y64{bottom:208.346667pt;}
.y8f{bottom:217.946667pt;}
.y35{bottom:218.746667pt;}
.y63{bottom:225.946667pt;}
.y8e{bottom:235.546667pt;}
.y34{bottom:236.506667pt;}
.y62{bottom:243.546667pt;}
.y8d{bottom:253.306667pt;}
.y33{bottom:254.106667pt;}
.y61{bottom:261.346667pt;}
.y8c{bottom:270.946667pt;}
.y32{bottom:271.746667pt;}
.y60{bottom:278.946667pt;}
.y8b{bottom:288.546667pt;}
.y31{bottom:289.346667pt;}
.y5f{bottom:296.546667pt;}
.y8a{bottom:306.146667pt;}
.y30{bottom:306.946667pt;}
.y5e{bottom:314.146667pt;}
.y89{bottom:323.746667pt;}
.y2f{bottom:324.706667pt;}
.y5d{bottom:331.746667pt;}
.y88{bottom:341.506667pt;}
.y2e{bottom:342.306667pt;}
.y5c{bottom:349.506667pt;}
.y87{bottom:359.106667pt;}
.y2d{bottom:359.906667pt;}
.y5b{bottom:367.106667pt;}
.y86{bottom:376.706667pt;}
.y2c{bottom:377.506667pt;}
.y5a{bottom:384.706667pt;}
.y85{bottom:394.306667pt;}
.y2b{bottom:395.106667pt;}
.y59{bottom:402.306667pt;}
.y84{bottom:411.906667pt;}
.y2a{bottom:412.866667pt;}
.y58{bottom:419.906667pt;}
.y83{bottom:429.666667pt;}
.y29{bottom:430.466667pt;}
.y57{bottom:437.666667pt;}
.y82{bottom:447.266667pt;}
.y28{bottom:448.066667pt;}
.y56{bottom:455.266667pt;}
.y81{bottom:464.866667pt;}
.y27{bottom:465.666667pt;}
.y55{bottom:472.866667pt;}
.y80{bottom:482.466667pt;}
.y26{bottom:483.266667pt;}
.y54{bottom:490.466667pt;}
.y7f{bottom:500.066667pt;}
.y25{bottom:501.026667pt;}
.y53{bottom:508.066667pt;}
.y7e{bottom:517.853333pt;}
.y24{bottom:518.653333pt;}
.y52{bottom:525.853333pt;}
.y7d{bottom:535.453333pt;}
.y23{bottom:536.253333pt;}
.y51{bottom:543.453333pt;}
.y7c{bottom:553.053333pt;}
.y22{bottom:553.853333pt;}
.y50{bottom:561.053333pt;}
.y7b{bottom:570.653333pt;}
.y21{bottom:571.453333pt;}
.y4f{bottom:578.653333pt;}
.y7a{bottom:588.253333pt;}
.y20{bottom:589.213333pt;}
.y4e{bottom:596.253333pt;}
.y79{bottom:606.013333pt;}
.y1f{bottom:606.813333pt;}
.y4d{bottom:614.013333pt;}
.y78{bottom:623.613333pt;}
.y1e{bottom:624.413333pt;}
.y4c{bottom:631.613333pt;}
.y77{bottom:641.213333pt;}
.y1d{bottom:642.013333pt;}
.y4b{bottom:649.213333pt;}
.y76{bottom:658.813333pt;}
.y1c{bottom:659.613333pt;}
.y4a{bottom:666.813333pt;}
.y75{bottom:676.413333pt;}
.y1b{bottom:677.373333pt;}
.y49{bottom:684.413333pt;}
.y74{bottom:694.173333pt;}
.y1a{bottom:694.973333pt;}
.y48{bottom:702.173333pt;}
.y73{bottom:711.773333pt;}
.y19{bottom:712.573333pt;}
.y47{bottom:719.773333pt;}
.y72{bottom:729.373333pt;}
.y18{bottom:730.173333pt;}
.y46{bottom:737.373333pt;}
.y71{bottom:746.973333pt;}
.y17{bottom:747.773333pt;}
.y45{bottom:754.973333pt;}
.y70{bottom:764.613333pt;}
.y16{bottom:765.573333pt;}
.y44{bottom:772.613333pt;}
.y6f{bottom:782.373333pt;}
.y15{bottom:783.173333pt;}
.y43{bottom:790.373333pt;}
.y6e{bottom:799.973333pt;}
.y14{bottom:800.773333pt;}
.y42{bottom:807.973333pt;}
.y6d{bottom:817.573333pt;}
.y13{bottom:818.373333pt;}
.y41{bottom:825.573333pt;}
.y6c{bottom:835.173333pt;}
.y12{bottom:835.973333pt;}
.y40{bottom:843.173333pt;}
.y6b{bottom:852.773333pt;}
.y11{bottom:854.213333pt;}
.y3f{bottom:860.773333pt;}
.y6a{bottom:870.533333pt;}
.y10{bottom:873.093333pt;}
.y3e{bottom:878.533333pt;}
.yf{bottom:892.773333pt;}
.y3d{bottom:896.133333pt;}
.y3c{bottom:913.733333pt;}
.y9{bottom:929.253333pt;}
.y1{bottom:943.813333pt;}
.y7{bottom:974.213333pt;}
.h6{height:1.787500pt;}
.hb{height:19.040000pt;}
.h7{height:29.760000pt;}
.he{height:37.090625pt;}
.hf{height:37.479688pt;}
.h11{height:38.672812pt;}
.h10{height:40.488438pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h8{height:42.866250pt;}
.h12{height:43.108125pt;}
.h9{height:47.310625pt;}
.hd{height:52.832812pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:8.800000pt;}
.w3{width:122.112000pt;}
.w2{width:577.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.xb{left:72.031988pt;}
.xa{left:95.231988pt;}
.x4{left:105.306667pt;}
.x6{left:118.591988pt;}
.x9{left:268.386655pt;}
.x8{left:333.186655pt;}
.x7{left:397.053322pt;}
.x3{left:624.613333pt;}
.x5{left:737.280000pt;}
}




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