
    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_93f8f63ec3b10e59ab90c0b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b306a94a7801c8ad49abc623.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_02217316c474ea36b6c7858c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_8b103de93191afb70960a181.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a4bb02bd5f89848d9f622a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4119bf73fb28ff3766297bdb.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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a71d208522516973446c71a2.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-31.680000px;}
.v2{vertical-align:-10.500000px;}
.v6{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v4{vertical-align:22.740000px;}
.v3{vertical-align:47.520000px;}
.ls4{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.028080px;}
.lsa{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.085800px;}
.ls0{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.lsb{letter-spacing:54.144000px;}
.ls2{letter-spacing:169.146720px;}
.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:-59.760000px;}
.ws8{word-spacing:-21.564000px;}
.ws3{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:455.399760px;}
.ws7{word-spacing:485.759760px;}
.ws9{word-spacing:494.690760px;}
.wsb{word-spacing:495.839760px;}
.ws6{word-spacing:508.972560px;}
.ws5{word-spacing:509.152560px;}
._13{margin-left:-4.968000px;}
._6{margin-left:-3.625920px;}
._5{margin-left:-2.520000px;}
._0{margin-left:-1.126080px;}
._1{width:1.938000px;}
._2{width:3.114000px;}
._b{width:4.638000px;}
._a{width:5.664000px;}
._8{width:6.696000px;}
._9{width:7.776000px;}
._d{width:8.956080px;}
._c{width:10.014000px;}
._16{width:11.018160px;}
._e{width:12.024000px;}
._11{width:13.968000px;}
._12{width:15.172080px;}
._7{width:16.416000px;}
._17{width:19.060080px;}
._10{width:20.232000px;}
._4{width:21.480000px;}
._3{width:22.656000px;}
._f{width:24.216000px;}
._15{width:200.995680px;}
._14{width:234.227760px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y93{bottom:4.470000px;}
.y90{bottom:4.530000px;}
.y6{bottom:10.620000px;}
.y7{bottom:11.340000px;}
.y6a{bottom:14.070000px;}
.y61{bottom:41.190000px;}
.y8{bottom:57.420000px;}
.y5{bottom:73.836000px;}
.y62{bottom:94.065000px;}
.y88{bottom:97.815000px;}
.y34{bottom:107.856000px;}
.y5b{bottom:109.875000px;}
.y59{bottom:118.656000px;}
.y33{bottom:131.616000px;}
.y86{bottom:133.956000px;}
.y58{bottom:142.416000px;}
.y63{bottom:146.955000px;}
.y89{bottom:151.275000px;}
.y32{bottom:155.370000px;}
.y85{bottom:157.710000px;}
.y57{bottom:166.170000px;}
.y96{bottom:175.110000px;}
.y31{bottom:179.310000px;}
.y84{bottom:181.470000px;}
.y56{bottom:189.930000px;}
.y64{bottom:199.875000px;}
.y30{bottom:203.070000px;}
.y6d{bottom:203.370000px;}
.y83{bottom:205.230000px;}
.y8a{bottom:205.740000px;}
.y98{bottom:211.755000px;}
.y55{bottom:213.870000px;}
.y5d{bottom:222.300000px;}
.y2f{bottom:226.830000px;}
.y82{bottom:229.170000px;}
.y6c{bottom:235.410000px;}
.y54{bottom:237.630000px;}
.y5c{bottom:242.130000px;}
.y97{bottom:243.750000px;}
.y2e{bottom:250.590000px;}
.y65{bottom:252.750000px;}
.y81{bottom:252.930000px;}
.y8b{bottom:261.255000px;}
.y53{bottom:261.390000px;}
.y6b{bottom:267.450000px;}
.y2d{bottom:274.350000px;}
.y80{bottom:276.690000px;}
.y52{bottom:285.150000px;}
.y2c{bottom:298.290000px;}
.y7f{bottom:300.450000px;}
.y66{bottom:305.670000px;}
.y51{bottom:309.090000px;}
.y8c{bottom:317.775000px;}
.y2b{bottom:322.050000px;}
.y7e{bottom:324.390000px;}
.y5f{bottom:329.400000px;}
.y50{bottom:332.850000px;}
.y94{bottom:337.935000px;}
.y60{bottom:342.645000px;}
.y2a{bottom:345.855000px;}
.y7d{bottom:348.195000px;}
.y5e{bottom:350.565000px;}
.y4f{bottom:356.655000px;}
.y67{bottom:358.560000px;}
.y29{bottom:369.615000px;}
.y7c{bottom:371.955000px;}
.y8d{bottom:375.375000px;}
.y4e{bottom:380.415000px;}
.y95{bottom:389.805000px;}
.y28{bottom:393.555000px;}
.y7b{bottom:395.715000px;}
.y4d{bottom:404.175000px;}
.y68{bottom:411.450000px;}
.y27{bottom:417.315000px;}
.y7a{bottom:419.475000px;}
.y4c{bottom:428.115000px;}
.y8e{bottom:434.085000px;}
.y26{bottom:441.075000px;}
.y79{bottom:443.415000px;}
.y4b{bottom:451.875000px;}
.y69{bottom:464.370000px;}
.y25{bottom:464.835000px;}
.y78{bottom:467.175000px;}
.y4a{bottom:475.635000px;}
.y24{bottom:488.775000px;}
.y77{bottom:490.575000px;}
.y49{bottom:499.395000px;}
.y23{bottom:512.535000px;}
.y76{bottom:514.695000px;}
.y48{bottom:523.335000px;}
.y22{bottom:536.295000px;}
.y75{bottom:538.635000px;}
.y47{bottom:547.095000px;}
.y21{bottom:560.055000px;}
.y74{bottom:562.395000px;}
.y46{bottom:570.855000px;}
.y40{bottom:583.635000px;}
.y20{bottom:583.995000px;}
.y73{bottom:586.155000px;}
.y45{bottom:594.615000px;}
.y1f{bottom:607.785000px;}
.y72{bottom:609.945000px;}
.y44{bottom:618.585000px;}
.y1e{bottom:631.545000px;}
.y71{bottom:633.885000px;}
.y43{bottom:642.345000px;}
.y1d{bottom:655.305000px;}
.y70{bottom:657.285000px;}
.y42{bottom:665.745000px;}
.y1c{bottom:679.245000px;}
.y6f{bottom:681.045000px;}
.y41{bottom:685.545000px;}
.y5a{bottom:685.800000px;}
.y6e{bottom:700.845000px;}
.y87{bottom:701.100000px;}
.y1b{bottom:702.645000px;}
.y3f{bottom:703.005000px;}
.y92{bottom:707.400000px;}
.y1a{bottom:726.405000px;}
.y3e{bottom:726.765000px;}
.y91{bottom:727.920000px;}
.y8f{bottom:748.980000px;}
.y19{bottom:750.525000px;}
.y18{bottom:774.465000px;}
.y17{bottom:798.225000px;}
.y16{bottom:821.985000px;}
.y15{bottom:845.745000px;}
.y14{bottom:869.505000px;}
.y13{bottom:893.490000px;}
.y12{bottom:917.250000px;}
.y11{bottom:941.010000px;}
.y10{bottom:964.410000px;}
.y3d{bottom:964.770000px;}
.yf{bottom:988.350000px;}
.y3c{bottom:988.710000px;}
.y3b{bottom:1012.110000px;}
.ye{bottom:1012.470000px;}
.yd{bottom:1035.870000px;}
.y3a{bottom:1036.230000px;}
.yc{bottom:1059.630000px;}
.y39{bottom:1059.990000px;}
.y38{bottom:1083.570000px;}
.yb{bottom:1085.910000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.590000px;}
.y36{bottom:1131.450000px;}
.y9{bottom:1149.300000px;}
.y35{bottom:1155.240000px;}
.y4{bottom:1195.020000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.140000px;}
.h12{height:24.300000px;}
.h5{height:27.000000px;}
.hb{height:45.316055px;}
.h7{height:50.229844px;}
.h10{height:50.273438px;}
.h4{height:54.421875px;}
.hd{height:58.651172px;}
.he{height:58.792500px;}
.h16{height:58.819922px;}
.h15{height:63.316055px;}
.h3{height:66.757500px;}
.h14{height:68.056055px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h17{height:74.004654px;}
.hf{height:82.676953px;}
.h13{height:84.898125px;}
.hc{height:92.836055px;}
.h8{height:96.508125px;}
.h11{height:470.520000px;}
.ha{height:485.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w5{width:298.650000px;}
.w3{width:298.830000px;}
.w8{width:638.820000px;}
.w7{width:684.720000px;}
.w6{width:688.500000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:9.756000px;}
.x15{left:17.280000px;}
.x8{left:39.420000px;}
.x21{left:44.532000px;}
.x1f{left:49.170000px;}
.x1d{left:53.640000px;}
.x20{left:58.320000px;}
.x1e{left:62.895000px;}
.x1c{left:67.245000px;}
.x17{left:69.195000px;}
.x22{left:88.635000px;}
.x5{left:95.796000px;}
.xa{left:99.755987px;}
.x12{left:102.060000px;}
.x1b{left:104.040000px;}
.xb{left:126.035987px;}
.x29{left:127.835987px;}
.x1a{left:135.215987px;}
.xc{left:143.675987px;}
.x25{left:144.690000px;}
.xd{left:148.895987px;}
.xf{left:160.049987px;}
.x27{left:177.375000px;}
.x3{left:189.929987px;}
.x23{left:218.055000px;}
.x13{left:243.075000px;}
.x14{left:248.655000px;}
.x26{left:278.025000px;}
.x6{left:290.739000px;}
.x10{left:322.274987px;}
.x2{left:333.254987px;}
.x4{left:342.614987px;}
.x24{left:370.515000px;}
.xe{left:378.794987px;}
.x7{left:394.635000px;}
.x9{left:498.705000px;}
.x18{left:515.160000px;}
.x28{left:640.590000px;}
.x19{left:788.909987px;}
.x11{left:790.889987px;}
.x1{left:797.369987px;}
@media print{
.v1{vertical-align:-28.160000pt;}
.v2{vertical-align:-9.333333pt;}
.v6{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v4{vertical-align:20.213333pt;}
.v3{vertical-align:42.240000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.024960pt;}
.lsa{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.076267pt;}
.ls0{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.lsb{letter-spacing:48.128000pt;}
.ls2{letter-spacing:150.352640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws8{word-spacing:-19.168000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:404.799787pt;}
.ws7{word-spacing:431.786453pt;}
.ws9{word-spacing:439.725120pt;}
.wsb{word-spacing:440.746453pt;}
.ws6{word-spacing:452.420053pt;}
.ws5{word-spacing:452.580053pt;}
._13{margin-left:-4.416000pt;}
._6{margin-left:-3.223040pt;}
._5{margin-left:-2.240000pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.722667pt;}
._2{width:2.768000pt;}
._b{width:4.122667pt;}
._a{width:5.034667pt;}
._8{width:5.952000pt;}
._9{width:6.912000pt;}
._d{width:7.960960pt;}
._c{width:8.901333pt;}
._16{width:9.793920pt;}
._e{width:10.688000pt;}
._11{width:12.416000pt;}
._12{width:13.486293pt;}
._7{width:14.592000pt;}
._17{width:16.942293pt;}
._10{width:17.984000pt;}
._4{width:19.093333pt;}
._3{width:20.138667pt;}
._f{width:21.525333pt;}
._15{width:178.662827pt;}
._14{width:208.202453pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:3.973333pt;}
.y90{bottom:4.026667pt;}
.y6{bottom:9.440000pt;}
.y7{bottom:10.080000pt;}
.y6a{bottom:12.506667pt;}
.y61{bottom:36.613333pt;}
.y8{bottom:51.040000pt;}
.y5{bottom:65.632000pt;}
.y62{bottom:83.613333pt;}
.y88{bottom:86.946667pt;}
.y34{bottom:95.872000pt;}
.y5b{bottom:97.666667pt;}
.y59{bottom:105.472000pt;}
.y33{bottom:116.992000pt;}
.y86{bottom:119.072000pt;}
.y58{bottom:126.592000pt;}
.y63{bottom:130.626667pt;}
.y89{bottom:134.466667pt;}
.y32{bottom:138.106667pt;}
.y85{bottom:140.186667pt;}
.y57{bottom:147.706667pt;}
.y96{bottom:155.653333pt;}
.y31{bottom:159.386667pt;}
.y84{bottom:161.306667pt;}
.y56{bottom:168.826667pt;}
.y64{bottom:177.666667pt;}
.y30{bottom:180.506667pt;}
.y6d{bottom:180.773333pt;}
.y83{bottom:182.426667pt;}
.y8a{bottom:182.880000pt;}
.y98{bottom:188.226667pt;}
.y55{bottom:190.106667pt;}
.y5d{bottom:197.600000pt;}
.y2f{bottom:201.626667pt;}
.y82{bottom:203.706667pt;}
.y6c{bottom:209.253333pt;}
.y54{bottom:211.226667pt;}
.y5c{bottom:215.226667pt;}
.y97{bottom:216.666667pt;}
.y2e{bottom:222.746667pt;}
.y65{bottom:224.666667pt;}
.y81{bottom:224.826667pt;}
.y8b{bottom:232.226667pt;}
.y53{bottom:232.346667pt;}
.y6b{bottom:237.733333pt;}
.y2d{bottom:243.866667pt;}
.y80{bottom:245.946667pt;}
.y52{bottom:253.466667pt;}
.y2c{bottom:265.146667pt;}
.y7f{bottom:267.066667pt;}
.y66{bottom:271.706667pt;}
.y51{bottom:274.746667pt;}
.y8c{bottom:282.466667pt;}
.y2b{bottom:286.266667pt;}
.y7e{bottom:288.346667pt;}
.y5f{bottom:292.800000pt;}
.y50{bottom:295.866667pt;}
.y94{bottom:300.386667pt;}
.y60{bottom:304.573333pt;}
.y2a{bottom:307.426667pt;}
.y7d{bottom:309.506667pt;}
.y5e{bottom:311.613333pt;}
.y4f{bottom:317.026667pt;}
.y67{bottom:318.720000pt;}
.y29{bottom:328.546667pt;}
.y7c{bottom:330.626667pt;}
.y8d{bottom:333.666667pt;}
.y4e{bottom:338.146667pt;}
.y95{bottom:346.493333pt;}
.y28{bottom:349.826667pt;}
.y7b{bottom:351.746667pt;}
.y4d{bottom:359.266667pt;}
.y68{bottom:365.733333pt;}
.y27{bottom:370.946667pt;}
.y7a{bottom:372.866667pt;}
.y4c{bottom:380.546667pt;}
.y8e{bottom:385.853333pt;}
.y26{bottom:392.066667pt;}
.y79{bottom:394.146667pt;}
.y4b{bottom:401.666667pt;}
.y69{bottom:412.773333pt;}
.y25{bottom:413.186667pt;}
.y78{bottom:415.266667pt;}
.y4a{bottom:422.786667pt;}
.y24{bottom:434.466667pt;}
.y77{bottom:436.066667pt;}
.y49{bottom:443.906667pt;}
.y23{bottom:455.586667pt;}
.y76{bottom:457.506667pt;}
.y48{bottom:465.186667pt;}
.y22{bottom:476.706667pt;}
.y75{bottom:478.786667pt;}
.y47{bottom:486.306667pt;}
.y21{bottom:497.826667pt;}
.y74{bottom:499.906667pt;}
.y46{bottom:507.426667pt;}
.y40{bottom:518.786667pt;}
.y20{bottom:519.106667pt;}
.y73{bottom:521.026667pt;}
.y45{bottom:528.546667pt;}
.y1f{bottom:540.253333pt;}
.y72{bottom:542.173333pt;}
.y44{bottom:549.853333pt;}
.y1e{bottom:561.373333pt;}
.y71{bottom:563.453333pt;}
.y43{bottom:570.973333pt;}
.y1d{bottom:582.493333pt;}
.y70{bottom:584.253333pt;}
.y42{bottom:591.773333pt;}
.y1c{bottom:603.773333pt;}
.y6f{bottom:605.373333pt;}
.y41{bottom:609.373333pt;}
.y5a{bottom:609.600000pt;}
.y6e{bottom:622.973333pt;}
.y87{bottom:623.200000pt;}
.y1b{bottom:624.573333pt;}
.y3f{bottom:624.893333pt;}
.y92{bottom:628.800000pt;}
.y1a{bottom:645.693333pt;}
.y3e{bottom:646.013333pt;}
.y91{bottom:647.040000pt;}
.y8f{bottom:665.760000pt;}
.y19{bottom:667.133333pt;}
.y18{bottom:688.413333pt;}
.y17{bottom:709.533333pt;}
.y16{bottom:730.653333pt;}
.y15{bottom:751.773333pt;}
.y14{bottom:772.893333pt;}
.y13{bottom:794.213333pt;}
.y12{bottom:815.333333pt;}
.y11{bottom:836.453333pt;}
.y10{bottom:857.253333pt;}
.y3d{bottom:857.573333pt;}
.yf{bottom:878.533333pt;}
.y3c{bottom:878.853333pt;}
.y3b{bottom:899.653333pt;}
.ye{bottom:899.973333pt;}
.yd{bottom:920.773333pt;}
.y3a{bottom:921.093333pt;}
.yc{bottom:941.893333pt;}
.y39{bottom:942.213333pt;}
.y38{bottom:963.173333pt;}
.yb{bottom:965.253333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.413333pt;}
.y36{bottom:1005.733333pt;}
.y9{bottom:1021.600000pt;}
.y35{bottom:1026.880000pt;}
.y4{bottom:1062.240000pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.680000pt;}
.h12{height:21.600000pt;}
.h5{height:24.000000pt;}
.hb{height:40.280938pt;}
.h7{height:44.648750pt;}
.h10{height:44.687500pt;}
.h4{height:48.375000pt;}
.hd{height:52.134375pt;}
.he{height:52.260000pt;}
.h16{height:52.284375pt;}
.h15{height:56.280938pt;}
.h3{height:59.340000pt;}
.h14{height:60.494271pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h17{height:65.781915pt;}
.hf{height:73.490625pt;}
.h13{height:75.465000pt;}
.hc{height:82.520937pt;}
.h8{height:85.785000pt;}
.h11{height:418.240000pt;}
.ha{height:431.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w5{width:265.466667pt;}
.w3{width:265.626667pt;}
.w8{width:567.840000pt;}
.w7{width:608.640000pt;}
.w6{width:612.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:8.672000pt;}
.x15{left:15.360000pt;}
.x8{left:35.040000pt;}
.x21{left:39.584000pt;}
.x1f{left:43.706667pt;}
.x1d{left:47.680000pt;}
.x20{left:51.840000pt;}
.x1e{left:55.906667pt;}
.x1c{left:59.773333pt;}
.x17{left:61.506667pt;}
.x22{left:78.786667pt;}
.x5{left:85.152000pt;}
.xa{left:88.671988pt;}
.x12{left:90.720000pt;}
.x1b{left:92.480000pt;}
.xb{left:112.031988pt;}
.x29{left:113.631988pt;}
.x1a{left:120.191988pt;}
.xc{left:127.711988pt;}
.x25{left:128.613333pt;}
.xd{left:132.351988pt;}
.xf{left:142.266655pt;}
.x27{left:157.666667pt;}
.x3{left:168.826655pt;}
.x23{left:193.826667pt;}
.x13{left:216.066667pt;}
.x14{left:221.026667pt;}
.x26{left:247.133333pt;}
.x6{left:258.434667pt;}
.x10{left:286.466655pt;}
.x2{left:296.226655pt;}
.x4{left:304.546655pt;}
.x24{left:329.346667pt;}
.xe{left:336.706655pt;}
.x7{left:350.786667pt;}
.x9{left:443.293333pt;}
.x18{left:457.920000pt;}
.x28{left:569.413333pt;}
.x19{left:701.253322pt;}
.x11{left:703.013322pt;}
.x1{left:708.773322pt;}
}




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