
    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_0962019e3ff8aaab475a40e8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_98a39c9c26a31b8845284566.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_427af7fae0959ef8106d00da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055176;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_45ee5cd04dab2df68855b53f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_f4622dfc8f8e2af9ff8c661a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_0c636c653eee5a36fd87a802.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls7{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.087600px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.864000px;}
.ls0{letter-spacing:0.993600px;}
.ls9{letter-spacing:33.960000px;}
.ls3{letter-spacing:64.002720px;}
.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:-59.760000px;}
.ws8{word-spacing:-36.000000px;}
.wsa{word-spacing:-26.784000px;}
.ws4{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.158800px;}
.ws2{word-spacing:-11.005800px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-10.303200px;}
._8{margin-left:-9.012960px;}
._5{margin-left:-7.904160px;}
._9{margin-left:-6.716160px;}
._0{margin-left:-5.365440px;}
._6{margin-left:-4.216320px;}
._2{margin-left:-3.006000px;}
._1{margin-left:-1.059840px;}
._3{width:1.377360px;}
._7{width:2.795520px;}
._c{width:4.992720px;}
._a{width:7.220640px;}
._b{width:8.691360px;}
._4{width:191.496000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fs9{font-size:144.000000px;}
.y2c{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:7.920000px;}
.y60{bottom:116.856000px;}
.y7a{bottom:120.636000px;}
.ya4{bottom:136.296000px;}
.y5f{bottom:137.556000px;}
.y2a{bottom:147.276000px;}
.ya3{bottom:156.990000px;}
.y5e{bottom:158.250000px;}
.y29{bottom:167.970000px;}
.ya2{bottom:177.690000px;}
.y5d{bottom:178.950000px;}
.y28{bottom:188.670000px;}
.ya1{bottom:198.390000px;}
.y5c{bottom:199.650000px;}
.y27{bottom:209.910000px;}
.ya0{bottom:219.090000px;}
.y5b{bottom:220.350000px;}
.y26{bottom:237.270000px;}
.y9f{bottom:239.790000px;}
.y79{bottom:241.050000px;}
.y5a{bottom:241.590000px;}
.y9e{bottom:260.490000px;}
.y78{bottom:262.290000px;}
.y59{bottom:265.170000px;}
.y25{bottom:274.890000px;}
.y9d{bottom:281.190000px;}
.y58{bottom:285.870000px;}
.y24{bottom:295.590000px;}
.y9c{bottom:301.890000px;}
.y57{bottom:306.570000px;}
.y23{bottom:316.290000px;}
.y9b{bottom:322.590000px;}
.y56{bottom:327.270000px;}
.y22{bottom:337.035000px;}
.y9a{bottom:343.335000px;}
.y55{bottom:348.015000px;}
.y21{bottom:357.735000px;}
.y99{bottom:364.035000px;}
.y54{bottom:368.715000px;}
.y77{bottom:369.255000px;}
.y20{bottom:378.975000px;}
.y98{bottom:384.735000px;}
.y53{bottom:389.955000px;}
.y76{bottom:392.835000px;}
.y1f{bottom:402.555000px;}
.y97{bottom:405.435000px;}
.y52{bottom:413.535000px;}
.y1e{bottom:423.255000px;}
.y96{bottom:426.135000px;}
.y51{bottom:434.235000px;}
.y1d{bottom:443.955000px;}
.y95{bottom:446.835000px;}
.y50{bottom:454.935000px;}
.y1c{bottom:464.655000px;}
.y94{bottom:467.535000px;}
.y4f{bottom:475.635000px;}
.y75{bottom:476.175000px;}
.y1b{bottom:485.355000px;}
.y93{bottom:488.235000px;}
.y4e{bottom:496.335000px;}
.y74{bottom:499.755000px;}
.y1a{bottom:506.055000px;}
.y92{bottom:508.935000px;}
.y4d{bottom:517.575000px;}
.y73{bottom:520.455000px;}
.y19{bottom:526.755000px;}
.y91{bottom:529.635000px;}
.y4c{bottom:541.155000px;}
.y18{bottom:547.455000px;}
.y90{bottom:550.335000px;}
.y4b{bottom:561.855000px;}
.y72{bottom:562.575000px;}
.y17{bottom:568.155000px;}
.y8f{bottom:571.035000px;}
.y4a{bottom:582.555000px;}
.y16{bottom:588.855000px;}
.y71{bottom:589.935000px;}
.y8e{bottom:591.735000px;}
.y49{bottom:604.005000px;}
.y15{bottom:609.585000px;}
.y8d{bottom:612.465000px;}
.y70{bottom:627.585000px;}
.y48{bottom:628.125000px;}
.y14{bottom:630.285000px;}
.y8c{bottom:633.165000px;}
.y6f{bottom:648.285000px;}
.y13{bottom:650.985000px;}
.y47{bottom:651.705000px;}
.y8b{bottom:653.865000px;}
.y6e{bottom:668.985000px;}
.y12{bottom:671.685000px;}
.y46{bottom:672.405000px;}
.y8a{bottom:674.565000px;}
.y6d{bottom:689.685000px;}
.yaa{bottom:691.665000px;}
.y11{bottom:692.385000px;}
.y45{bottom:693.105000px;}
.y89{bottom:697.065000px;}
.y6c{bottom:710.385000px;}
.y10{bottom:713.085000px;}
.y44{bottom:713.805000px;}
.y88{bottom:728.205000px;}
.y6b{bottom:731.625000px;}
.yf{bottom:733.785000px;}
.y43{bottom:734.505000px;}
.ye{bottom:754.485000px;}
.y42{bottom:755.205000px;}
.y87{bottom:758.265000px;}
.yd{bottom:775.185000px;}
.y41{bottom:775.905000px;}
.y86{bottom:779.325000px;}
.yc{bottom:795.885000px;}
.y40{bottom:796.605000px;}
.y85{bottom:800.025000px;}
.yb{bottom:816.585000px;}
.y6a{bottom:817.305000px;}
.y3f{bottom:817.845000px;}
.y84{bottom:820.725000px;}
.ya9{bottom:837.285000px;}
.ya{bottom:837.825000px;}
.y69{bottom:838.005000px;}
.y3e{bottom:841.425000px;}
.ya8{bottom:857.985000px;}
.y68{bottom:858.705000px;}
.y9{bottom:861.945000px;}
.y3d{bottom:862.125000px;}
.ya7{bottom:878.730000px;}
.y67{bottom:879.990000px;}
.y3c{bottom:882.870000px;}
.y8{bottom:888.810000px;}
.ya6{bottom:899.430000px;}
.y3b{bottom:903.570000px;}
.y83{bottom:904.830000px;}
.y3a{bottom:924.270000px;}
.y7{bottom:926.790000px;}
.ya5{bottom:930.210000px;}
.y82{bottom:931.110000px;}
.y66{bottom:944.970000px;}
.y39{bottom:945.510000px;}
.y81{bottom:951.810000px;}
.y6{bottom:964.770000px;}
.y65{bottom:965.670000px;}
.y38{bottom:969.090000px;}
.y80{bottom:972.510000px;}
.y64{bottom:986.910000px;}
.y37{bottom:989.790000px;}
.y7f{bottom:993.210000px;}
.y36{bottom:1010.490000px;}
.y7e{bottom:1013.910000px;}
.y5{bottom:1029.390000px;}
.y35{bottom:1031.190000px;}
.y7d{bottom:1034.610000px;}
.y34{bottom:1051.890000px;}
.y7c{bottom:1055.310000px;}
.y4{bottom:1057.470000px;}
.y63{bottom:1072.590000px;}
.y33{bottom:1073.130000px;}
.y7b{bottom:1076.010000px;}
.y3{bottom:1093.650000px;}
.y62{bottom:1093.830000px;}
.y32{bottom:1096.710000px;}
.y31{bottom:1117.410000px;}
.y61{bottom:1121.190000px;}
.y2{bottom:1126.230000px;}
.y30{bottom:1138.140000px;}
.y2f{bottom:1162.800000px;}
.y2d{bottom:1180.080000px;}
.y1{bottom:1193.580000px;}
.y2b{bottom:1217.700000px;}
.hb{height:10.980000px;}
.hc{height:21.960000px;}
.h6{height:41.726953px;}
.h4{height:43.282266px;}
.h2{height:46.251562px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.hd{height:50.800781px;}
.h11{height:52.417969px;}
.h12{height:59.343750px;}
.h8{height:59.436914px;}
.he{height:67.565039px;}
.hf{height:73.722656px;}
.h10{height:76.201172px;}
.h7{height:92.965430px;}
.ha{height:101.601562px;}
.h3{height:101.804766px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:2.340150px;}
.w4{width:4.860150px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.035987px;}
.xa{left:135.035987px;}
.x6{left:137.555987px;}
.xb{left:162.029987px;}
.x7{left:176.249987px;}
.x2{left:192.089987px;}
.x1{left:305.534987px;}
.x9{left:344.414987px;}
.x3{left:364.934987px;}
.x8{left:446.474987px;}
.x4{left:594.104987px;}
.xc{left:804.570000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.077867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls0{letter-spacing:0.883200pt;}
.ls9{letter-spacing:30.186667pt;}
.ls3{letter-spacing:56.891307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws8{word-spacing:-32.000000pt;}
.wsa{word-spacing:-23.808000pt;}
.ws4{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-9.918933pt;}
.ws2{word-spacing:-9.782933pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-9.158400pt;}
._8{margin-left:-8.011520pt;}
._5{margin-left:-7.025920pt;}
._9{margin-left:-5.969920pt;}
._0{margin-left:-4.769280pt;}
._6{margin-left:-3.747840pt;}
._2{margin-left:-2.672000pt;}
._1{margin-left:-0.942080pt;}
._3{width:1.224320pt;}
._7{width:2.484907pt;}
._c{width:4.437973pt;}
._a{width:6.418347pt;}
._b{width:7.725653pt;}
._4{width:170.218667pt;}
.fsa{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fs9{font-size:128.000000pt;}
.y2c{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:7.040000pt;}
.y60{bottom:103.872000pt;}
.y7a{bottom:107.232000pt;}
.ya4{bottom:121.152000pt;}
.y5f{bottom:122.272000pt;}
.y2a{bottom:130.912000pt;}
.ya3{bottom:139.546667pt;}
.y5e{bottom:140.666667pt;}
.y29{bottom:149.306667pt;}
.ya2{bottom:157.946667pt;}
.y5d{bottom:159.066667pt;}
.y28{bottom:167.706667pt;}
.ya1{bottom:176.346667pt;}
.y5c{bottom:177.466667pt;}
.y27{bottom:186.586667pt;}
.ya0{bottom:194.746667pt;}
.y5b{bottom:195.866667pt;}
.y26{bottom:210.906667pt;}
.y9f{bottom:213.146667pt;}
.y79{bottom:214.266667pt;}
.y5a{bottom:214.746667pt;}
.y9e{bottom:231.546667pt;}
.y78{bottom:233.146667pt;}
.y59{bottom:235.706667pt;}
.y25{bottom:244.346667pt;}
.y9d{bottom:249.946667pt;}
.y58{bottom:254.106667pt;}
.y24{bottom:262.746667pt;}
.y9c{bottom:268.346667pt;}
.y57{bottom:272.506667pt;}
.y23{bottom:281.146667pt;}
.y9b{bottom:286.746667pt;}
.y56{bottom:290.906667pt;}
.y22{bottom:299.586667pt;}
.y9a{bottom:305.186667pt;}
.y55{bottom:309.346667pt;}
.y21{bottom:317.986667pt;}
.y99{bottom:323.586667pt;}
.y54{bottom:327.746667pt;}
.y77{bottom:328.226667pt;}
.y20{bottom:336.866667pt;}
.y98{bottom:341.986667pt;}
.y53{bottom:346.626667pt;}
.y76{bottom:349.186667pt;}
.y1f{bottom:357.826667pt;}
.y97{bottom:360.386667pt;}
.y52{bottom:367.586667pt;}
.y1e{bottom:376.226667pt;}
.y96{bottom:378.786667pt;}
.y51{bottom:385.986667pt;}
.y1d{bottom:394.626667pt;}
.y95{bottom:397.186667pt;}
.y50{bottom:404.386667pt;}
.y1c{bottom:413.026667pt;}
.y94{bottom:415.586667pt;}
.y4f{bottom:422.786667pt;}
.y75{bottom:423.266667pt;}
.y1b{bottom:431.426667pt;}
.y93{bottom:433.986667pt;}
.y4e{bottom:441.186667pt;}
.y74{bottom:444.226667pt;}
.y1a{bottom:449.826667pt;}
.y92{bottom:452.386667pt;}
.y4d{bottom:460.066667pt;}
.y73{bottom:462.626667pt;}
.y19{bottom:468.226667pt;}
.y91{bottom:470.786667pt;}
.y4c{bottom:481.026667pt;}
.y18{bottom:486.626667pt;}
.y90{bottom:489.186667pt;}
.y4b{bottom:499.426667pt;}
.y72{bottom:500.066667pt;}
.y17{bottom:505.026667pt;}
.y8f{bottom:507.586667pt;}
.y4a{bottom:517.826667pt;}
.y16{bottom:523.426667pt;}
.y71{bottom:524.386667pt;}
.y8e{bottom:525.986667pt;}
.y49{bottom:536.893333pt;}
.y15{bottom:541.853333pt;}
.y8d{bottom:544.413333pt;}
.y70{bottom:557.853333pt;}
.y48{bottom:558.333333pt;}
.y14{bottom:560.253333pt;}
.y8c{bottom:562.813333pt;}
.y6f{bottom:576.253333pt;}
.y13{bottom:578.653333pt;}
.y47{bottom:579.293333pt;}
.y8b{bottom:581.213333pt;}
.y6e{bottom:594.653333pt;}
.y12{bottom:597.053333pt;}
.y46{bottom:597.693333pt;}
.y8a{bottom:599.613333pt;}
.y6d{bottom:613.053333pt;}
.yaa{bottom:614.813333pt;}
.y11{bottom:615.453333pt;}
.y45{bottom:616.093333pt;}
.y89{bottom:619.613333pt;}
.y6c{bottom:631.453333pt;}
.y10{bottom:633.853333pt;}
.y44{bottom:634.493333pt;}
.y88{bottom:647.293333pt;}
.y6b{bottom:650.333333pt;}
.yf{bottom:652.253333pt;}
.y43{bottom:652.893333pt;}
.ye{bottom:670.653333pt;}
.y42{bottom:671.293333pt;}
.y87{bottom:674.013333pt;}
.yd{bottom:689.053333pt;}
.y41{bottom:689.693333pt;}
.y86{bottom:692.733333pt;}
.yc{bottom:707.453333pt;}
.y40{bottom:708.093333pt;}
.y85{bottom:711.133333pt;}
.yb{bottom:725.853333pt;}
.y6a{bottom:726.493333pt;}
.y3f{bottom:726.973333pt;}
.y84{bottom:729.533333pt;}
.ya9{bottom:744.253333pt;}
.ya{bottom:744.733333pt;}
.y69{bottom:744.893333pt;}
.y3e{bottom:747.933333pt;}
.ya8{bottom:762.653333pt;}
.y68{bottom:763.293333pt;}
.y9{bottom:766.173333pt;}
.y3d{bottom:766.333333pt;}
.ya7{bottom:781.093333pt;}
.y67{bottom:782.213333pt;}
.y3c{bottom:784.773333pt;}
.y8{bottom:790.053333pt;}
.ya6{bottom:799.493333pt;}
.y3b{bottom:803.173333pt;}
.y83{bottom:804.293333pt;}
.y3a{bottom:821.573333pt;}
.y7{bottom:823.813333pt;}
.ya5{bottom:826.853333pt;}
.y82{bottom:827.653333pt;}
.y66{bottom:839.973333pt;}
.y39{bottom:840.453333pt;}
.y81{bottom:846.053333pt;}
.y6{bottom:857.573333pt;}
.y65{bottom:858.373333pt;}
.y38{bottom:861.413333pt;}
.y80{bottom:864.453333pt;}
.y64{bottom:877.253333pt;}
.y37{bottom:879.813333pt;}
.y7f{bottom:882.853333pt;}
.y36{bottom:898.213333pt;}
.y7e{bottom:901.253333pt;}
.y5{bottom:915.013333pt;}
.y35{bottom:916.613333pt;}
.y7d{bottom:919.653333pt;}
.y34{bottom:935.013333pt;}
.y7c{bottom:938.053333pt;}
.y4{bottom:939.973333pt;}
.y63{bottom:953.413333pt;}
.y33{bottom:953.893333pt;}
.y7b{bottom:956.453333pt;}
.y3{bottom:972.133333pt;}
.y62{bottom:972.293333pt;}
.y32{bottom:974.853333pt;}
.y31{bottom:993.253333pt;}
.y61{bottom:996.613333pt;}
.y2{bottom:1001.093333pt;}
.y30{bottom:1011.680000pt;}
.y2f{bottom:1033.600000pt;}
.y2d{bottom:1048.960000pt;}
.y1{bottom:1060.960000pt;}
.y2b{bottom:1082.400000pt;}
.hb{height:9.760000pt;}
.hc{height:19.520000pt;}
.h6{height:37.090625pt;}
.h4{height:38.473125pt;}
.h2{height:41.112500pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.hd{height:45.156250pt;}
.h11{height:46.593750pt;}
.h12{height:52.750000pt;}
.h8{height:52.832812pt;}
.he{height:60.057813pt;}
.hf{height:65.531250pt;}
.h10{height:67.734375pt;}
.h7{height:82.635937pt;}
.ha{height:90.312500pt;}
.h3{height:90.493125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:2.080133pt;}
.w4{width:4.320133pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.031988pt;}
.xa{left:120.031988pt;}
.x6{left:122.271988pt;}
.xb{left:144.026655pt;}
.x7{left:156.666655pt;}
.x2{left:170.746655pt;}
.x1{left:271.586655pt;}
.x9{left:306.146655pt;}
.x3{left:324.386655pt;}
.x8{left:396.866655pt;}
.x4{left:528.093322pt;}
.xc{left:715.173333pt;}
}




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