
    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_4126d3d17a04f7e49a6c3c49.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65f36637d6d9c7098d474e7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2e0a7bad187578d76471129c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_565a9d9e58fd322ec36ac9b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57d2a66fa9ce67ab36e16e0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_67399d1d5231dfadea106d21.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_2920403db19a8b92043564cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862793;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_f04427b6d16ff7a66e952b24.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;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);}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.ls4{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.326400px;}
.ls1a{letter-spacing:-0.272400px;}
.ls11{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.305400px;}
.lse{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.666000px;}
.ls17{letter-spacing:1.614240px;}
.ls13{letter-spacing:2.448000px;}
.lsd{letter-spacing:5.328000px;}
.ls18{letter-spacing:7.374240px;}
.lsf{letter-spacing:19.008000px;}
.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:-23.418720px;}
.ws1{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws9{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.416000px;}
.wse{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.wsa{word-spacing:-16.200000px;}
.wsc{word-spacing:-16.056000px;}
.ws8{word-spacing:-15.912000px;}
.wsd{word-spacing:-15.264000px;}
.ws11{word-spacing:-13.862760px;}
.ws10{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.179360px;}
.wsf{word-spacing:-8.786880px;}
.ws12{word-spacing:-8.514480px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-12.817920px;}
._0{margin-left:-1.769040px;}
._1{width:1.010880px;}
._8{width:2.758800px;}
._d{width:3.865200px;}
._b{width:5.288640px;}
._5{width:6.782880px;}
._4{width:8.127360px;}
._6{width:9.130080px;}
._7{width:10.398240px;}
._9{width:11.786880px;}
._10{width:12.816000px;}
._11{width:14.160000px;}
._14{width:15.165120px;}
._23{width:16.660800px;}
._a{width:17.714160px;}
._13{width:18.792000px;}
._12{width:20.020560px;}
._19{width:21.021120px;}
._1a{width:22.728000px;}
._1b{width:23.736000px;}
._1e{width:25.536000px;}
._17{width:27.216000px;}
._16{width:28.296000px;}
._1c{width:30.031200px;}
._f{width:31.248000px;}
._e{width:32.616000px;}
._15{width:34.464000px;}
._20{width:36.361680px;}
._1f{width:37.377120px;}
._18{width:38.448000px;}
._1d{width:39.456000px;}
._c{width:40.680000px;}
._2{width:57.000000px;}
._3{width:58.044000px;}
._22{width:112.196160px;}
.fc3{color:rgb(146,208,80);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y79{bottom:138.636000px;}
.y21{bottom:141.876000px;}
.y6d{bottom:153.570000px;}
.y54{bottom:168.510000px;}
.y78{bottom:171.570000px;}
.y20{bottom:174.810000px;}
.y3e{bottom:176.970000px;}
.y6c{bottom:186.510000px;}
.y95{bottom:197.310000px;}
.y53{bottom:201.450000px;}
.y1f{bottom:207.750000px;}
.y6b{bottom:219.450000px;}
.y3d{bottom:225.030000px;}
.y94{bottom:233.130000px;}
.y52{bottom:234.390000px;}
.y1e{bottom:240.690000px;}
.y6a{bottom:252.390000px;}
.y3c{bottom:257.970000px;}
.y51{bottom:267.510000px;}
.y93{bottom:269.130000px;}
.y1d{bottom:273.630000px;}
.y69{bottom:285.330000px;}
.y3b{bottom:290.910000px;}
.y92{bottom:297.570000px;}
.y50{bottom:300.450000px;}
.y1c{bottom:306.570000px;}
.y68{bottom:318.315000px;}
.y91{bottom:318.855000px;}
.y3a{bottom:323.895000px;}
.y4f{bottom:333.435000px;}
.y1b{bottom:339.555000px;}
.y90{bottom:347.475000px;}
.y67{bottom:351.255000px;}
.y39{bottom:356.835000px;}
.y4e{bottom:366.375000px;}
.y1a{bottom:372.495000px;}
.y8f{bottom:375.915000px;}
.y66{bottom:384.375000px;}
.y38{bottom:389.775000px;}
.y8e{bottom:397.155000px;}
.y4d{bottom:399.315000px;}
.y19{bottom:405.435000px;}
.y65{bottom:417.315000px;}
.y37{bottom:422.895000px;}
.y8d{bottom:425.775000px;}
.y4c{bottom:432.255000px;}
.y18{bottom:438.555000px;}
.y64{bottom:450.255000px;}
.y8c{bottom:454.035000px;}
.y36{bottom:455.835000px;}
.y4b{bottom:465.195000px;}
.y17{bottom:471.495000px;}
.y8b{bottom:482.835000px;}
.y63{bottom:483.195000px;}
.y35{bottom:488.775000px;}
.y4a{bottom:498.135000px;}
.y16{bottom:504.435000px;}
.y62{bottom:516.135000px;}
.y8a{bottom:518.655000px;}
.y34{bottom:521.715000px;}
.y49{bottom:531.075000px;}
.y15{bottom:537.375000px;}
.y89{bottom:547.275000px;}
.y76{bottom:549.075000px;}
.y33{bottom:554.655000px;}
.y48{bottom:564.015000px;}
.y14{bottom:570.315000px;}
.y88{bottom:576.075000px;}
.y75{bottom:582.015000px;}
.y47{bottom:597.165000px;}
.y32{bottom:602.565000px;}
.y87{bottom:604.365000px;}
.y13{bottom:609.225000px;}
.y74{bottom:614.985000px;}
.y46{bottom:630.105000px;}
.y86{bottom:633.165000px;}
.y31{bottom:635.505000px;}
.y12{bottom:645.045000px;}
.y73{bottom:647.925000px;}
.y85{bottom:661.425000px;}
.y45{bottom:663.045000px;}
.y30{bottom:668.625000px;}
.y11{bottom:674.925000px;}
.y77{bottom:677.985000px;}
.y72{bottom:681.045000px;}
.y84{bottom:690.225000px;}
.y61{bottom:695.985000px;}
.y2f{bottom:701.565000px;}
.y44{bottom:710.925000px;}
.y10{bottom:712.905000px;}
.y71{bottom:713.985000px;}
.y83{bottom:718.665000px;}
.y60{bottom:728.925000px;}
.y2e{bottom:734.505000px;}
.yf{bottom:738.825000px;}
.y43{bottom:743.865000px;}
.y70{bottom:746.925000px;}
.y82{bottom:747.465000px;}
.y5f{bottom:761.865000px;}
.ye{bottom:764.925000px;}
.y2d{bottom:767.445000px;}
.y81{bottom:775.725000px;}
.y42{bottom:776.805000px;}
.y6f{bottom:779.865000px;}
.yd{bottom:790.665000px;}
.y5e{bottom:794.805000px;}
.y2c{bottom:800.385000px;}
.y80{bottom:804.525000px;}
.y41{bottom:809.925000px;}
.y6e{bottom:812.805000px;}
.yc{bottom:816.585000px;}
.y7f{bottom:818.025000px;}
.y5d{bottom:827.745000px;}
.y7e{bottom:839.085000px;}
.yb{bottom:842.325000px;}
.y40{bottom:842.865000px;}
.y2b{bottom:849.345000px;}
.y5c{bottom:860.730000px;}
.y7d{bottom:867.750000px;}
.ya{bottom:868.290000px;}
.y2a{bottom:873.510000px;}
.y3f{bottom:875.850000px;}
.y7c{bottom:879.090000px;}
.y5b{bottom:893.850000px;}
.y9{bottom:894.210000px;}
.y29{bottom:908.790000px;}
.y7b{bottom:916.530000px;}
.y8{bottom:920.130000px;}
.y5a{bottom:926.790000px;}
.y28{bottom:941.730000px;}
.y7{bottom:945.870000px;}
.y59{bottom:959.730000px;}
.y7a{bottom:961.530000px;}
.y6{bottom:973.050000px;}
.y27{bottom:974.670000px;}
.y58{bottom:992.670000px;}
.y26{bottom:1007.610000px;}
.y5{bottom:1010.310000px;}
.y57{bottom:1025.610000px;}
.y25{bottom:1040.550000px;}
.y4{bottom:1049.190000px;}
.y56{bottom:1058.550000px;}
.y3{bottom:1072.950000px;}
.y24{bottom:1073.490000px;}
.y55{bottom:1091.490000px;}
.y23{bottom:1106.430000px;}
.y2{bottom:1112.910000px;}
.y1{bottom:1137.240000px;}
.y22{bottom:1139.580000px;}
.hc{height:32.064609px;}
.hd{height:49.284492px;}
.h7{height:49.359375px;}
.hb{height:54.628594px;}
.h8{height:59.378906px;}
.h6{height:62.327813px;}
.ha{height:66.143672px;}
.h5{height:69.086250px;}
.h9{height:72.903867px;}
.h4{height:75.093750px;}
.h2{height:87.859687px;}
.h3{height:95.200313px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2{left:170.130000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.290133pt;}
.ls1a{letter-spacing:-0.242133pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.592000pt;}
.ls17{letter-spacing:1.434880pt;}
.ls13{letter-spacing:2.176000pt;}
.lsd{letter-spacing:4.736000pt;}
.ls18{letter-spacing:6.554880pt;}
.lsf{letter-spacing:16.896000pt;}
.ws0{word-spacing:-20.816640pt;}
.ws1{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws9{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.592000pt;}
.wse{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.272000pt;}
.ws8{word-spacing:-14.144000pt;}
.wsd{word-spacing:-13.568000pt;}
.ws11{word-spacing:-12.322453pt;}
.ws10{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.714987pt;}
.wsf{word-spacing:-7.810560pt;}
.ws12{word-spacing:-7.568427pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-11.393707pt;}
._0{margin-left:-1.572480pt;}
._1{width:0.898560pt;}
._8{width:2.452267pt;}
._d{width:3.435733pt;}
._b{width:4.701013pt;}
._5{width:6.029227pt;}
._4{width:7.224320pt;}
._6{width:8.115627pt;}
._7{width:9.242880pt;}
._9{width:10.477227pt;}
._10{width:11.392000pt;}
._11{width:12.586667pt;}
._14{width:13.480107pt;}
._23{width:14.809600pt;}
._a{width:15.745920pt;}
._13{width:16.704000pt;}
._12{width:17.796053pt;}
._19{width:18.685440pt;}
._1a{width:20.202667pt;}
._1b{width:21.098667pt;}
._1e{width:22.698667pt;}
._17{width:24.192000pt;}
._16{width:25.152000pt;}
._1c{width:26.694400pt;}
._f{width:27.776000pt;}
._e{width:28.992000pt;}
._15{width:30.634667pt;}
._20{width:32.321493pt;}
._1f{width:33.224107pt;}
._18{width:34.176000pt;}
._1d{width:35.072000pt;}
._c{width:36.160000pt;}
._2{width:50.666667pt;}
._3{width:51.594667pt;}
._22{width:99.729920pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:123.232000pt;}
.y21{bottom:126.112000pt;}
.y6d{bottom:136.506667pt;}
.y54{bottom:149.786667pt;}
.y78{bottom:152.506667pt;}
.y20{bottom:155.386667pt;}
.y3e{bottom:157.306667pt;}
.y6c{bottom:165.786667pt;}
.y95{bottom:175.386667pt;}
.y53{bottom:179.066667pt;}
.y1f{bottom:184.666667pt;}
.y6b{bottom:195.066667pt;}
.y3d{bottom:200.026667pt;}
.y94{bottom:207.226667pt;}
.y52{bottom:208.346667pt;}
.y1e{bottom:213.946667pt;}
.y6a{bottom:224.346667pt;}
.y3c{bottom:229.306667pt;}
.y51{bottom:237.786667pt;}
.y93{bottom:239.226667pt;}
.y1d{bottom:243.226667pt;}
.y69{bottom:253.626667pt;}
.y3b{bottom:258.586667pt;}
.y92{bottom:264.506667pt;}
.y50{bottom:267.066667pt;}
.y1c{bottom:272.506667pt;}
.y68{bottom:282.946667pt;}
.y91{bottom:283.426667pt;}
.y3a{bottom:287.906667pt;}
.y4f{bottom:296.386667pt;}
.y1b{bottom:301.826667pt;}
.y90{bottom:308.866667pt;}
.y67{bottom:312.226667pt;}
.y39{bottom:317.186667pt;}
.y4e{bottom:325.666667pt;}
.y1a{bottom:331.106667pt;}
.y8f{bottom:334.146667pt;}
.y66{bottom:341.666667pt;}
.y38{bottom:346.466667pt;}
.y8e{bottom:353.026667pt;}
.y4d{bottom:354.946667pt;}
.y19{bottom:360.386667pt;}
.y65{bottom:370.946667pt;}
.y37{bottom:375.906667pt;}
.y8d{bottom:378.466667pt;}
.y4c{bottom:384.226667pt;}
.y18{bottom:389.826667pt;}
.y64{bottom:400.226667pt;}
.y8c{bottom:403.586667pt;}
.y36{bottom:405.186667pt;}
.y4b{bottom:413.506667pt;}
.y17{bottom:419.106667pt;}
.y8b{bottom:429.186667pt;}
.y63{bottom:429.506667pt;}
.y35{bottom:434.466667pt;}
.y4a{bottom:442.786667pt;}
.y16{bottom:448.386667pt;}
.y62{bottom:458.786667pt;}
.y8a{bottom:461.026667pt;}
.y34{bottom:463.746667pt;}
.y49{bottom:472.066667pt;}
.y15{bottom:477.666667pt;}
.y89{bottom:486.466667pt;}
.y76{bottom:488.066667pt;}
.y33{bottom:493.026667pt;}
.y48{bottom:501.346667pt;}
.y14{bottom:506.946667pt;}
.y88{bottom:512.066667pt;}
.y75{bottom:517.346667pt;}
.y47{bottom:530.813333pt;}
.y32{bottom:535.613333pt;}
.y87{bottom:537.213333pt;}
.y13{bottom:541.533333pt;}
.y74{bottom:546.653333pt;}
.y46{bottom:560.093333pt;}
.y86{bottom:562.813333pt;}
.y31{bottom:564.893333pt;}
.y12{bottom:573.373333pt;}
.y73{bottom:575.933333pt;}
.y85{bottom:587.933333pt;}
.y45{bottom:589.373333pt;}
.y30{bottom:594.333333pt;}
.y11{bottom:599.933333pt;}
.y77{bottom:602.653333pt;}
.y72{bottom:605.373333pt;}
.y84{bottom:613.533333pt;}
.y61{bottom:618.653333pt;}
.y2f{bottom:623.613333pt;}
.y44{bottom:631.933333pt;}
.y10{bottom:633.693333pt;}
.y71{bottom:634.653333pt;}
.y83{bottom:638.813333pt;}
.y60{bottom:647.933333pt;}
.y2e{bottom:652.893333pt;}
.yf{bottom:656.733333pt;}
.y43{bottom:661.213333pt;}
.y70{bottom:663.933333pt;}
.y82{bottom:664.413333pt;}
.y5f{bottom:677.213333pt;}
.ye{bottom:679.933333pt;}
.y2d{bottom:682.173333pt;}
.y81{bottom:689.533333pt;}
.y42{bottom:690.493333pt;}
.y6f{bottom:693.213333pt;}
.yd{bottom:702.813333pt;}
.y5e{bottom:706.493333pt;}
.y2c{bottom:711.453333pt;}
.y80{bottom:715.133333pt;}
.y41{bottom:719.933333pt;}
.y6e{bottom:722.493333pt;}
.yc{bottom:725.853333pt;}
.y7f{bottom:727.133333pt;}
.y5d{bottom:735.773333pt;}
.y7e{bottom:745.853333pt;}
.yb{bottom:748.733333pt;}
.y40{bottom:749.213333pt;}
.y2b{bottom:754.973333pt;}
.y5c{bottom:765.093333pt;}
.y7d{bottom:771.333333pt;}
.ya{bottom:771.813333pt;}
.y2a{bottom:776.453333pt;}
.y3f{bottom:778.533333pt;}
.y7c{bottom:781.413333pt;}
.y5b{bottom:794.533333pt;}
.y9{bottom:794.853333pt;}
.y29{bottom:807.813333pt;}
.y7b{bottom:814.693333pt;}
.y8{bottom:817.893333pt;}
.y5a{bottom:823.813333pt;}
.y28{bottom:837.093333pt;}
.y7{bottom:840.773333pt;}
.y59{bottom:853.093333pt;}
.y7a{bottom:854.693333pt;}
.y6{bottom:864.933333pt;}
.y27{bottom:866.373333pt;}
.y58{bottom:882.373333pt;}
.y26{bottom:895.653333pt;}
.y5{bottom:898.053333pt;}
.y57{bottom:911.653333pt;}
.y25{bottom:924.933333pt;}
.y4{bottom:932.613333pt;}
.y56{bottom:940.933333pt;}
.y3{bottom:953.733333pt;}
.y24{bottom:954.213333pt;}
.y55{bottom:970.213333pt;}
.y23{bottom:983.493333pt;}
.y2{bottom:989.253333pt;}
.y1{bottom:1010.880000pt;}
.y22{bottom:1012.960000pt;}
.hc{height:28.501875pt;}
.hd{height:43.808438pt;}
.h7{height:43.875000pt;}
.hb{height:48.558750pt;}
.h8{height:52.781250pt;}
.h6{height:55.402500pt;}
.ha{height:58.794375pt;}
.h5{height:61.410000pt;}
.h9{height:64.803437pt;}
.h4{height:66.750000pt;}
.h2{height:78.097500pt;}
.h3{height:84.622500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2{left:151.226667pt;}
}




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