
    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_3fa81acfcd3f916e2e0d0972.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_3ddd4118a532dd2f1a75d301.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_a1d87218077023942845fcc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5c21d443a1ea55e44e38de37.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_99403346064237bd1ce11562.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls4{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.408000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.600000px;}
.lsa{letter-spacing:6.000000px;}
.ls9{letter-spacing:25.200000px;}
.ls8{letter-spacing:102.384000px;}
.lsb{letter-spacing:115.380000px;}
.ls5{letter-spacing:138.384000px;}
.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;}
}
.ws4{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.592000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-8.280000px;}
._4{margin-left:-6.840000px;}
._9{margin-left:-5.616000px;}
._3{margin-left:-4.272000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._6{width:2.700000px;}
._1f{width:3.954000px;}
._c{width:5.184000px;}
._17{width:6.600000px;}
._b{width:7.776000px;}
._a{width:9.000000px;}
._d{width:10.440000px;}
._8{width:11.916000px;}
._7{width:13.350000px;}
._1d{width:15.048000px;}
._1c{width:16.308000px;}
._52{width:19.248000px;}
._53{width:20.460000px;}
._14{width:21.744000px;}
._1a{width:22.854000px;}
._1b{width:23.934000px;}
._16{width:25.500000px;}
._15{width:26.706000px;}
._f{width:28.080000px;}
._e{width:29.598000px;}
._20{width:30.894000px;}
._19{width:32.556000px;}
._18{width:33.744000px;}
._11{width:34.968000px;}
._10{width:36.192000px;}
._54{width:37.446000px;}
._45{width:38.880000px;}
._44{width:40.464000px;}
._36{width:41.820000px;}
._33{width:42.828000px;}
._5e{width:44.568000px;}
._21{width:46.080000px;}
._28{width:47.808000px;}
._35{width:49.020000px;}
._41{width:51.192000px;}
._12{width:53.412000px;}
._13{width:54.684000px;}
._1e{width:55.788000px;}
._39{width:57.516000px;}
._37{width:58.668000px;}
._22{width:61.116000px;}
._24{width:63.612000px;}
._57{width:67.608000px;}
._56{width:69.288000px;}
._50{width:70.416000px;}
._34{width:77.604000px;}
._43{width:81.144000px;}
._2f{width:86.964000px;}
._3e{width:90.504000px;}
._38{width:93.816000px;}
._5b{width:97.104000px;}
._3f{width:99.216000px;}
._25{width:102.528000px;}
._26{width:105.984000px;}
._3a{width:109.140000px;}
._40{width:111.528000px;}
._3c{width:114.840000px;}
._5d{width:116.418000px;}
._5a{width:122.028000px;}
._27{width:133.344000px;}
._60{width:135.144000px;}
._5f{width:136.152000px;}
._4b{width:138.960000px;}
._2e{width:146.088000px;}
._47{width:154.212000px;}
._3d{width:155.232000px;}
._4c{width:159.696000px;}
._49{width:162.036000px;}
._51{width:163.728000px;}
._4e{width:167.400000px;}
._2b{width:176.976000px;}
._31{width:179.604000px;}
._48{width:182.088000px;}
._2c{width:191.376000px;}
._59{width:192.456000px;}
._58{width:194.328000px;}
._23{width:196.932000px;}
._5c{width:208.734000px;}
._4f{width:214.836000px;}
._3b{width:218.520000px;}
._4d{width:221.892000px;}
._30{width:225.360000px;}
._2d{width:230.616000px;}
._29{width:265.236000px;}
._42{width:270.648000px;}
._46{width:283.236000px;}
._32{width:301.092000px;}
._2a{width:309.780000px;}
._4a{width:342.432000px;}
._55{width:390.060000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:6.885000px;}
.y3b{bottom:6.900000px;}
.y3f{bottom:6.915000px;}
.y7b{bottom:7.185000px;}
.y34{bottom:7.200000px;}
.y3a{bottom:30.600000px;}
.y71{bottom:30.615000px;}
.y43{bottom:30.645000px;}
.y4c{bottom:30.885000px;}
.y38{bottom:30.900000px;}
.y33{bottom:30.915000px;}
.y82{bottom:30.945000px;}
.y74{bottom:54.585000px;}
.y4a{bottom:54.592500px;}
.y37{bottom:54.600000px;}
.y3e{bottom:54.615000px;}
.y7e{bottom:54.630000px;}
.y42{bottom:54.645000px;}
.y47{bottom:54.900000px;}
.y6{bottom:68.737500px;}
.y73{bottom:78.285000px;}
.y78{bottom:78.300000px;}
.y49{bottom:78.337500px;}
.y3d{bottom:78.345000px;}
.y46{bottom:78.600000px;}
.y36{bottom:78.630000px;}
.y81{bottom:78.645000px;}
.y6c{bottom:90.937500px;}
.y85{bottom:91.537500px;}
.y31{bottom:97.537500px;}
.y77{bottom:102.000000px;}
.y41{bottom:102.030000px;}
.y70{bottom:102.045000px;}
.y45{bottom:102.300000px;}
.y7a{bottom:102.330000px;}
.y80{bottom:102.345000px;}
.y48{bottom:109.237500px;}
.y6b{bottom:114.637500px;}
.y84{bottom:115.237500px;}
.y30{bottom:121.237500px;}
.y7d{bottom:126.030000px;}
.y6f{bottom:126.045000px;}
.y6a{bottom:138.337500px;}
.y83{bottom:139.237500px;}
.y2f{bottom:145.237500px;}
.y7f{bottom:156.630000px;}
.y69{bottom:162.345000px;}
.y2e{bottom:168.975000px;}
.y68{bottom:186.075000px;}
.y2d{bottom:192.675000px;}
.y44{bottom:204.975000px;}
.y67{bottom:209.775000px;}
.y2c{bottom:216.675000px;}
.y66{bottom:233.775000px;}
.y2b{bottom:240.375000px;}
.y65{bottom:257.475000px;}
.y2a{bottom:264.375000px;}
.y64{bottom:281.175000px;}
.y29{bottom:288.075000px;}
.y7c{bottom:300.375000px;}
.y63{bottom:305.175000px;}
.y28{bottom:311.775000px;}
.y40{bottom:324.975000px;}
.y62{bottom:328.875000px;}
.y27{bottom:335.775000px;}
.y61{bottom:352.620000px;}
.y26{bottom:359.505000px;}
.y60{bottom:376.620000px;}
.y25{bottom:383.205000px;}
.y5f{bottom:400.320000px;}
.y24{bottom:407.205000px;}
.y5e{bottom:424.005000px;}
.y23{bottom:430.920000px;}
.y79{bottom:443.820000px;}
.y3c{bottom:444.705000px;}
.y5d{bottom:448.005000px;}
.y22{bottom:454.620000px;}
.y5c{bottom:471.705000px;}
.y21{bottom:478.620000px;}
.y5b{bottom:489.405000px;}
.y20{bottom:502.305000px;}
.y1f{bottom:526.050000px;}
.y5a{bottom:537.750000px;}
.y39{bottom:540.750000px;}
.y1e{bottom:550.050000px;}
.y76{bottom:563.850000px;}
.y1d{bottom:573.750000px;}
.y1c{bottom:597.450000px;}
.y59{bottom:609.750000px;}
.y35{bottom:612.750000px;}
.y1b{bottom:621.450000px;}
.y1a{bottom:645.150000px;}
.y19{bottom:668.850000px;}
.y58{bottom:682.080000px;}
.y72{bottom:683.595000px;}
.y18{bottom:692.880000px;}
.y32{bottom:708.780000px;}
.y17{bottom:716.580000px;}
.y16{bottom:740.280000px;}
.y57{bottom:754.080000px;}
.y15{bottom:764.280000px;}
.y6e{bottom:779.580000px;}
.y14{bottom:787.995000px;}
.y13{bottom:811.695000px;}
.y56{bottom:826.395000px;}
.y12{bottom:835.695000px;}
.y55{bottom:857.925000px;}
.y11{bottom:859.425000px;}
.y54{bottom:881.625000px;}
.y10{bottom:883.125000px;}
.y53{bottom:905.625000px;}
.yf{bottom:907.125000px;}
.y6d{bottom:923.025000px;}
.y52{bottom:929.325000px;}
.ye{bottom:930.825000px;}
.y51{bottom:953.025000px;}
.yd{bottom:954.525000px;}
.y50{bottom:977.025000px;}
.yc{bottom:978.525000px;}
.y4f{bottom:1000.725000px;}
.yb{bottom:1002.225000px;}
.y4e{bottom:1024.455000px;}
.ya{bottom:1025.955000px;}
.y4d{bottom:1048.455000px;}
.y9{bottom:1049.955000px;}
.y4b{bottom:1065.870000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h10{height:23.737500px;}
.h13{height:24.000000px;}
.h2{height:42.333984px;}
.h12{height:47.437500px;}
.ha{height:47.700000px;}
.h9{height:50.484375px;}
.h8{height:50.800781px;}
.h3{height:62.460938px;}
.h5{height:64.775391px;}
.h7{height:70.664062px;}
.hc{height:71.400000px;}
.h11{height:71.437500px;}
.h17{height:74.004654px;}
.h6{height:74.953125px;}
.h4{height:87.445312px;}
.h15{height:95.085000px;}
.hd{height:95.137500px;}
.hb{height:95.437500px;}
.he{height:118.837500px;}
.hf{height:119.100000px;}
.h16{height:119.137500px;}
.h14{height:142.837500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:33.600000px;}
.w8{width:129.937500px;}
.w6{width:135.637500px;}
.w9{width:144.637500px;}
.wf{width:153.675000px;}
.wd{width:169.575000px;}
.w5{width:171.345000px;}
.wc{width:173.130000px;}
.w4{width:176.775000px;}
.we{width:188.430000px;}
.w7{width:201.375000px;}
.wb{width:215.175000px;}
.wa{width:229.275000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.800000px;}
.x3{left:84.937487px;}
.xe{left:120.037500px;}
.x6{left:171.644987px;}
.x13{left:216.675000px;}
.xa{left:226.874987px;}
.x17{left:294.075000px;}
.xf{left:297.720000px;}
.x9{left:326.219987px;}
.x8{left:334.904987px;}
.xc{left:341.204987px;}
.x4{left:350.819987px;}
.x14{left:362.220000px;}
.x16{left:367.619987px;}
.x12{left:387.719987px;}
.x5{left:428.549987px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.x18{left:464.550000px;}
.x10{left:469.650000px;}
.x1{left:510.449987px;}
.x15{left:592.095000px;}
.x11{left:606.195000px;}
.x19{left:653.595000px;}
.xb{left:744.824987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.533333pt;}
.lsa{letter-spacing:5.333333pt;}
.ls9{letter-spacing:22.400000pt;}
.ls8{letter-spacing:91.008000pt;}
.lsb{letter-spacing:102.560000pt;}
.ls5{letter-spacing:123.008000pt;}
.ws4{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.637333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-7.360000pt;}
._4{margin-left:-6.080000pt;}
._9{margin-left:-4.992000pt;}
._3{margin-left:-3.797333pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._6{width:2.400000pt;}
._1f{width:3.514667pt;}
._c{width:4.608000pt;}
._17{width:5.866667pt;}
._b{width:6.912000pt;}
._a{width:8.000000pt;}
._d{width:9.280000pt;}
._8{width:10.592000pt;}
._7{width:11.866667pt;}
._1d{width:13.376000pt;}
._1c{width:14.496000pt;}
._52{width:17.109333pt;}
._53{width:18.186667pt;}
._14{width:19.328000pt;}
._1a{width:20.314667pt;}
._1b{width:21.274667pt;}
._16{width:22.666667pt;}
._15{width:23.738667pt;}
._f{width:24.960000pt;}
._e{width:26.309333pt;}
._20{width:27.461333pt;}
._19{width:28.938667pt;}
._18{width:29.994667pt;}
._11{width:31.082667pt;}
._10{width:32.170667pt;}
._54{width:33.285333pt;}
._45{width:34.560000pt;}
._44{width:35.968000pt;}
._36{width:37.173333pt;}
._33{width:38.069333pt;}
._5e{width:39.616000pt;}
._21{width:40.960000pt;}
._28{width:42.496000pt;}
._35{width:43.573333pt;}
._41{width:45.504000pt;}
._12{width:47.477333pt;}
._13{width:48.608000pt;}
._1e{width:49.589333pt;}
._39{width:51.125333pt;}
._37{width:52.149333pt;}
._22{width:54.325333pt;}
._24{width:56.544000pt;}
._57{width:60.096000pt;}
._56{width:61.589333pt;}
._50{width:62.592000pt;}
._34{width:68.981333pt;}
._43{width:72.128000pt;}
._2f{width:77.301333pt;}
._3e{width:80.448000pt;}
._38{width:83.392000pt;}
._5b{width:86.314667pt;}
._3f{width:88.192000pt;}
._25{width:91.136000pt;}
._26{width:94.208000pt;}
._3a{width:97.013333pt;}
._40{width:99.136000pt;}
._3c{width:102.080000pt;}
._5d{width:103.482667pt;}
._5a{width:108.469333pt;}
._27{width:118.528000pt;}
._60{width:120.128000pt;}
._5f{width:121.024000pt;}
._4b{width:123.520000pt;}
._2e{width:129.856000pt;}
._47{width:137.077333pt;}
._3d{width:137.984000pt;}
._4c{width:141.952000pt;}
._49{width:144.032000pt;}
._51{width:145.536000pt;}
._4e{width:148.800000pt;}
._2b{width:157.312000pt;}
._31{width:159.648000pt;}
._48{width:161.856000pt;}
._2c{width:170.112000pt;}
._59{width:171.072000pt;}
._58{width:172.736000pt;}
._23{width:175.050667pt;}
._5c{width:185.541333pt;}
._4f{width:190.965333pt;}
._3b{width:194.240000pt;}
._4d{width:197.237333pt;}
._30{width:200.320000pt;}
._2d{width:204.992000pt;}
._29{width:235.765333pt;}
._42{width:240.576000pt;}
._46{width:251.765333pt;}
._32{width:267.637333pt;}
._2a{width:275.360000pt;}
._4a{width:304.384000pt;}
._55{width:346.720000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:6.120000pt;}
.y3b{bottom:6.133333pt;}
.y3f{bottom:6.146667pt;}
.y7b{bottom:6.386667pt;}
.y34{bottom:6.400000pt;}
.y3a{bottom:27.200000pt;}
.y71{bottom:27.213333pt;}
.y43{bottom:27.240000pt;}
.y4c{bottom:27.453333pt;}
.y38{bottom:27.466667pt;}
.y33{bottom:27.480000pt;}
.y82{bottom:27.506667pt;}
.y74{bottom:48.520000pt;}
.y4a{bottom:48.526667pt;}
.y37{bottom:48.533333pt;}
.y3e{bottom:48.546667pt;}
.y7e{bottom:48.560000pt;}
.y42{bottom:48.573333pt;}
.y47{bottom:48.800000pt;}
.y6{bottom:61.100000pt;}
.y73{bottom:69.586667pt;}
.y78{bottom:69.600000pt;}
.y49{bottom:69.633333pt;}
.y3d{bottom:69.640000pt;}
.y46{bottom:69.866667pt;}
.y36{bottom:69.893333pt;}
.y81{bottom:69.906667pt;}
.y6c{bottom:80.833333pt;}
.y85{bottom:81.366667pt;}
.y31{bottom:86.700000pt;}
.y77{bottom:90.666667pt;}
.y41{bottom:90.693333pt;}
.y70{bottom:90.706667pt;}
.y45{bottom:90.933333pt;}
.y7a{bottom:90.960000pt;}
.y80{bottom:90.973333pt;}
.y48{bottom:97.100000pt;}
.y6b{bottom:101.900000pt;}
.y84{bottom:102.433333pt;}
.y30{bottom:107.766667pt;}
.y7d{bottom:112.026667pt;}
.y6f{bottom:112.040000pt;}
.y6a{bottom:122.966667pt;}
.y83{bottom:123.766667pt;}
.y2f{bottom:129.100000pt;}
.y7f{bottom:139.226667pt;}
.y69{bottom:144.306667pt;}
.y2e{bottom:150.200000pt;}
.y68{bottom:165.400000pt;}
.y2d{bottom:171.266667pt;}
.y44{bottom:182.200000pt;}
.y67{bottom:186.466667pt;}
.y2c{bottom:192.600000pt;}
.y66{bottom:207.800000pt;}
.y2b{bottom:213.666667pt;}
.y65{bottom:228.866667pt;}
.y2a{bottom:235.000000pt;}
.y64{bottom:249.933333pt;}
.y29{bottom:256.066667pt;}
.y7c{bottom:267.000000pt;}
.y63{bottom:271.266667pt;}
.y28{bottom:277.133333pt;}
.y40{bottom:288.866667pt;}
.y62{bottom:292.333333pt;}
.y27{bottom:298.466667pt;}
.y61{bottom:313.440000pt;}
.y26{bottom:319.560000pt;}
.y60{bottom:334.773333pt;}
.y25{bottom:340.626667pt;}
.y5f{bottom:355.840000pt;}
.y24{bottom:361.960000pt;}
.y5e{bottom:376.893333pt;}
.y23{bottom:383.040000pt;}
.y79{bottom:394.506667pt;}
.y3c{bottom:395.293333pt;}
.y5d{bottom:398.226667pt;}
.y22{bottom:404.106667pt;}
.y5c{bottom:419.293333pt;}
.y21{bottom:425.440000pt;}
.y5b{bottom:435.026667pt;}
.y20{bottom:446.493333pt;}
.y1f{bottom:467.600000pt;}
.y5a{bottom:478.000000pt;}
.y39{bottom:480.666667pt;}
.y1e{bottom:488.933333pt;}
.y76{bottom:501.200000pt;}
.y1d{bottom:510.000000pt;}
.y1c{bottom:531.066667pt;}
.y59{bottom:542.000000pt;}
.y35{bottom:544.666667pt;}
.y1b{bottom:552.400000pt;}
.y1a{bottom:573.466667pt;}
.y19{bottom:594.533333pt;}
.y58{bottom:606.293333pt;}
.y72{bottom:607.640000pt;}
.y18{bottom:615.893333pt;}
.y32{bottom:630.026667pt;}
.y17{bottom:636.960000pt;}
.y16{bottom:658.026667pt;}
.y57{bottom:670.293333pt;}
.y15{bottom:679.360000pt;}
.y6e{bottom:692.960000pt;}
.y14{bottom:700.440000pt;}
.y13{bottom:721.506667pt;}
.y56{bottom:734.573333pt;}
.y12{bottom:742.840000pt;}
.y55{bottom:762.600000pt;}
.y11{bottom:763.933333pt;}
.y54{bottom:783.666667pt;}
.y10{bottom:785.000000pt;}
.y53{bottom:805.000000pt;}
.yf{bottom:806.333333pt;}
.y6d{bottom:820.466667pt;}
.y52{bottom:826.066667pt;}
.ye{bottom:827.400000pt;}
.y51{bottom:847.133333pt;}
.yd{bottom:848.466667pt;}
.y50{bottom:868.466667pt;}
.yc{bottom:869.800000pt;}
.y4f{bottom:889.533333pt;}
.yb{bottom:890.866667pt;}
.y4e{bottom:910.626667pt;}
.ya{bottom:911.960000pt;}
.y4d{bottom:931.960000pt;}
.y9{bottom:933.293333pt;}
.y4b{bottom:947.440000pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h10{height:21.100000pt;}
.h13{height:21.333333pt;}
.h2{height:37.630208pt;}
.h12{height:42.166667pt;}
.ha{height:42.400000pt;}
.h9{height:44.875000pt;}
.h8{height:45.156250pt;}
.h3{height:55.520833pt;}
.h5{height:57.578125pt;}
.h7{height:62.812500pt;}
.hc{height:63.466667pt;}
.h11{height:63.500000pt;}
.h17{height:65.781915pt;}
.h6{height:66.625000pt;}
.h4{height:77.729167pt;}
.h15{height:84.520000pt;}
.hd{height:84.566667pt;}
.hb{height:84.833333pt;}
.he{height:105.633333pt;}
.hf{height:105.866667pt;}
.h16{height:105.900000pt;}
.h14{height:126.966667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:29.866667pt;}
.w8{width:115.500000pt;}
.w6{width:120.566667pt;}
.w9{width:128.566667pt;}
.wf{width:136.600000pt;}
.wd{width:150.733333pt;}
.w5{width:152.306667pt;}
.wc{width:153.893333pt;}
.w4{width:157.133333pt;}
.we{width:167.493333pt;}
.w7{width:179.000000pt;}
.wb{width:191.266667pt;}
.wa{width:203.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.933333pt;}
.x3{left:75.499988pt;}
.xe{left:106.700000pt;}
.x6{left:152.573322pt;}
.x13{left:192.600000pt;}
.xa{left:201.666655pt;}
.x17{left:261.400000pt;}
.xf{left:264.640000pt;}
.x9{left:289.973322pt;}
.x8{left:297.693322pt;}
.xc{left:303.293322pt;}
.x4{left:311.839988pt;}
.x14{left:321.973333pt;}
.x16{left:326.773322pt;}
.x12{left:344.639988pt;}
.x5{left:380.933322pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.x18{left:412.933333pt;}
.x10{left:417.466667pt;}
.x1{left:453.733322pt;}
.x15{left:526.306667pt;}
.x11{left:538.840000pt;}
.x19{left:580.973333pt;}
.xb{left:662.066655pt;}
}




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