
    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_b4114f970b427fa755a31cd8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_d99a357c1f845220ba95f3a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_c6eea5cfbaa2b117b73d8d59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:25.800000px;}
.v1{vertical-align:28.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:72.000000px;}
.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:-18.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-10.500000px;}
.ws4{word-spacing:-9.600000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:27.000000px;}
.ws5{word-spacing:29.340000px;}
._f{margin-left:-2622.612000px;}
._d{margin-left:-1695.636000px;}
._b{margin-left:-1236.120000px;}
._9{margin-left:-993.816000px;}
._17{margin-left:-958.116000px;}
._7{margin-left:-767.676000px;}
._5{margin-left:-424.968000px;}
._0{margin-left:-8.100000px;}
._14{margin-left:-6.120000px;}
._4{margin-left:-4.980000px;}
._1{margin-left:-3.816000px;}
._11{margin-left:-2.640000px;}
._2{margin-left:-1.224000px;}
._3{width:1.176000px;}
._13{width:42.000000px;}
._12{width:72.000000px;}
._6{width:388.440000px;}
._1a{width:448.140000px;}
._16{width:492.060000px;}
._15{width:495.072000px;}
._19{width:506.952000px;}
._1b{width:547.572000px;}
._8{width:731.664000px;}
._18{width:928.440000px;}
._a{width:963.540000px;}
._c{width:1206.540000px;}
._e{width:1666.740000px;}
._10{width:2594.340000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.400000px;}
.fs2{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y24{bottom:67.591500px;}
.y23{bottom:108.916500px;}
.ye2{bottom:121.666500px;}
.y22{bottom:126.241500px;}
.y21{bottom:143.566500px;}
.ye1{bottom:145.441500px;}
.y20{bottom:160.891500px;}
.ye0{bottom:169.216500px;}
.y1f{bottom:178.216500px;}
.ydf{bottom:192.991500px;}
.y4e{bottom:195.541500px;}
.y4d{bottom:212.866500px;}
.yde{bottom:216.766500px;}
.y4c{bottom:230.191500px;}
.y1e{bottom:240.391500px;}
.ydd{bottom:240.541500px;}
.y4b{bottom:247.516500px;}
.y1d{bottom:261.091500px;}
.ydc{bottom:264.316500px;}
.y4a{bottom:264.841500px;}
.yb7{bottom:266.491500px;}
.y1c{bottom:281.791500px;}
.y49{bottom:282.166500px;}
.y77{bottom:283.591500px;}
.ydb{bottom:288.091500px;}
.yb6{bottom:290.266500px;}
.y48{bottom:299.491500px;}
.y1b{bottom:302.491500px;}
.y76{bottom:304.291500px;}
.yda{bottom:311.866500px;}
.yb5{bottom:314.041500px;}
.y96{bottom:316.816500px;}
.y1a{bottom:323.191500px;}
.y75{bottom:324.991500px;}
.y95{bottom:334.141500px;}
.yd9{bottom:335.641500px;}
.yb4{bottom:337.816500px;}
.y19{bottom:343.891500px;}
.y74{bottom:345.691500px;}
.y94{bottom:351.466500px;}
.yd8{bottom:359.416500px;}
.yb3{bottom:361.591500px;}
.y18{bottom:364.591500px;}
.y73{bottom:366.391500px;}
.y93{bottom:368.791500px;}
.y47{bottom:374.266500px;}
.yd7{bottom:383.191500px;}
.yb2{bottom:385.366500px;}
.y92{bottom:386.116500px;}
.y72{bottom:387.091500px;}
.y46{bottom:394.966500px;}
.y91{bottom:403.441500px;}
.y17{bottom:405.991500px;}
.yd6{bottom:406.966500px;}
.y71{bottom:407.791500px;}
.yb1{bottom:409.141500px;}
.y90{bottom:420.766500px;}
.y16{bottom:426.691500px;}
.y70{bottom:428.491500px;}
.yd5{bottom:430.741500px;}
.yb0{bottom:432.916500px;}
.y8f{bottom:438.091500px;}
.y15{bottom:447.391500px;}
.y6f{bottom:449.191500px;}
.yd4{bottom:454.516500px;}
.y8e{bottom:455.416500px;}
.yaf{bottom:456.691500px;}
.y45{bottom:457.066500px;}
.y14{bottom:468.091500px;}
.y8d{bottom:472.741500px;}
.y44{bottom:477.766500px;}
.yd3{bottom:478.291500px;}
.yae{bottom:480.466500px;}
.y6e{bottom:482.341500px;}
.y8c{bottom:490.066500px;}
.y43{bottom:498.466500px;}
.y6d{bottom:501.316500px;}
.yd2{bottom:502.066500px;}
.yad{bottom:504.241500px;}
.y8b{bottom:507.391500px;}
.y42{bottom:519.166500px;}
.y6c{bottom:520.291500px;}
.yd1{bottom:525.841500px;}
.yac{bottom:528.016500px;}
.y6b{bottom:539.266500px;}
.y8a{bottom:542.416500px;}
.yd0{bottom:549.616500px;}
.yab{bottom:551.791500px;}
.y6a{bottom:558.241500px;}
.y41{bottom:560.266500px;}
.y89{bottom:563.116500px;}
.y13{bottom:563.191500px;}
.ycf{bottom:573.391500px;}
.yaa{bottom:575.566500px;}
.y69{bottom:577.216500px;}
.y40{bottom:579.241500px;}
.y88{bottom:583.816500px;}
.y12{bottom:586.966500px;}
.y68{bottom:596.191500px;}
.yce{bottom:597.166500px;}
.y3f{bottom:598.216500px;}
.yf6{bottom:598.891500px;}
.ya9{bottom:599.341500px;}
.y87{bottom:604.516500px;}
.y11{bottom:610.741500px;}
.y67{bottom:615.166500px;}
.y3e{bottom:617.191500px;}
.ycd{bottom:620.941500px;}
.yf5{bottom:622.666500px;}
.ya8{bottom:623.116500px;}
.y86{bottom:625.216500px;}
.y66{bottom:634.141500px;}
.y3d{bottom:636.166500px;}
.ycc{bottom:644.716500px;}
.yf4{bottom:646.441500px;}
.ya7{bottom:646.891500px;}
.y65{bottom:653.116500px;}
.y3c{bottom:655.141500px;}
.y10{bottom:658.291500px;}
.y85{bottom:658.666500px;}
.ycb{bottom:668.491500px;}
.yf3{bottom:670.216500px;}
.ya6{bottom:670.666500px;}
.y64{bottom:672.091500px;}
.y3b{bottom:674.116500px;}
.yf{bottom:682.066500px;}
.y63{bottom:691.066500px;}
.y84{bottom:692.116500px;}
.yca{bottom:692.266500px;}
.yf2{bottom:693.991500px;}
.ya5{bottom:694.441500px;}
.ye{bottom:705.841500px;}
.y62{bottom:710.041500px;}
.y83{bottom:712.816500px;}
.y3a{bottom:714.091500px;}
.yc9{bottom:716.041500px;}
.yf1{bottom:717.766500px;}
.ya4{bottom:718.216500px;}
.y61{bottom:729.016500px;}
.y82{bottom:733.516500px;}
.y39{bottom:734.791500px;}
.yc8{bottom:739.816500px;}
.yf0{bottom:741.541500px;}
.ya3{bottom:741.991500px;}
.y60{bottom:747.991500px;}
.y38{bottom:755.491500px;}
.yc7{bottom:763.591500px;}
.yef{bottom:765.316500px;}
.ya2{bottom:765.766500px;}
.y5f{bottom:766.966500px;}
.y37{bottom:776.191500px;}
.yd{bottom:777.166500px;}
.y5e{bottom:785.941500px;}
.yc6{bottom:787.366500px;}
.y81{bottom:787.666500px;}
.yee{bottom:789.091500px;}
.ya1{bottom:789.541500px;}
.y36{bottom:796.891500px;}
.yc{bottom:800.941500px;}
.y5d{bottom:804.916500px;}
.y80{bottom:808.366500px;}
.yc5{bottom:811.141500px;}
.yed{bottom:812.866500px;}
.ya0{bottom:813.316500px;}
.y35{bottom:817.591500px;}
.y5c{bottom:823.891500px;}
.yb{bottom:824.716500px;}
.yc4{bottom:834.916500px;}
.yec{bottom:836.641500px;}
.y9f{bottom:837.091500px;}
.y34{bottom:838.291500px;}
.y7f{bottom:841.816500px;}
.y5b{bottom:842.866500px;}
.ya{bottom:848.491500px;}
.yc3{bottom:858.691500px;}
.y33{bottom:858.991500px;}
.yeb{bottom:860.416500px;}
.y9e{bottom:860.866500px;}
.y7e{bottom:862.516500px;}
.y9{bottom:872.266500px;}
.y5a{bottom:874.891500px;}
.y32{bottom:879.691500px;}
.yc2{bottom:882.466500px;}
.y7d{bottom:883.216500px;}
.yea{bottom:884.191500px;}
.y9d{bottom:884.641500px;}
.y59{bottom:895.591500px;}
.y8{bottom:896.041500px;}
.y31{bottom:900.391500px;}
.yc1{bottom:906.241500px;}
.ye9{bottom:907.966500px;}
.y9c{bottom:908.416500px;}
.y58{bottom:916.291500px;}
.y7c{bottom:916.366500px;}
.y7{bottom:919.816500px;}
.y30{bottom:921.091500px;}
.yc0{bottom:930.016500px;}
.ye8{bottom:931.741500px;}
.y9b{bottom:932.191500px;}
.y7b{bottom:935.341500px;}
.y57{bottom:936.991500px;}
.y2f{bottom:941.791500px;}
.ybf{bottom:953.791500px;}
.y7a{bottom:954.316500px;}
.ye7{bottom:955.516500px;}
.y56{bottom:957.691500px;}
.y2e{bottom:962.491500px;}
.y9a{bottom:965.641500px;}
.ybe{bottom:977.566500px;}
.y55{bottom:978.391500px;}
.ye6{bottom:979.291500px;}
.y2d{bottom:983.191500px;}
.y79{bottom:986.341500px;}
.y54{bottom:999.091500px;}
.ybd{bottom:1001.341500px;}
.ye5{bottom:1003.066500px;}
.y2c{bottom:1003.891500px;}
.y99{bottom:1007.041500px;}
.y6{bottom:1014.916500px;}
.y53{bottom:1019.791500px;}
.y2b{bottom:1024.591500px;}
.ye4{bottom:1026.841500px;}
.y98{bottom:1027.741500px;}
.ybc{bottom:1037.866500px;}
.y5{bottom:1038.691500px;}
.y52{bottom:1040.491500px;}
.y2a{bottom:1045.291500px;}
.ye3{bottom:1050.616500px;}
.y51{bottom:1061.191500px;}
.y4{bottom:1062.466500px;}
.y29{bottom:1065.991500px;}
.ybb{bottom:1074.391500px;}
.y50{bottom:1081.891500px;}
.y28{bottom:1086.691500px;}
.yba{bottom:1098.166500px;}
.y4f{bottom:1102.591500px;}
.y27{bottom:1107.391500px;}
.y3{bottom:1110.016500px;}
.yb9{bottom:1121.941500px;}
.y97{bottom:1128.091500px;}
.y78{bottom:1136.041500px;}
.yb8{bottom:1145.716500px;}
.y26{bottom:1148.791500px;}
.y2{bottom:1161.091500px;}
.y25{bottom:1169.491500px;}
.h6{height:42.246094px;}
.h7{height:46.470703px;}
.h4{height:50.695312px;}
.h8{height:52.837500px;}
.h5{height:57.772266px;}
.h3{height:76.042969px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.900000px;}
.x2{left:89.400000px;}
.x4{left:106.425000px;}
.x5{left:148.950000px;}
.x3{left:442.125000px;}
@media print{
.v3{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:22.933333pt;}
.v1{vertical-align:25.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-9.333333pt;}
.ws4{word-spacing:-8.533333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:24.000000pt;}
.ws5{word-spacing:26.080000pt;}
._f{margin-left:-2331.210667pt;}
._d{margin-left:-1507.232000pt;}
._b{margin-left:-1098.773333pt;}
._9{margin-left:-883.392000pt;}
._17{margin-left:-851.658667pt;}
._7{margin-left:-682.378667pt;}
._5{margin-left:-377.749333pt;}
._0{margin-left:-7.200000pt;}
._14{margin-left:-5.440000pt;}
._4{margin-left:-4.426667pt;}
._1{margin-left:-3.392000pt;}
._11{margin-left:-2.346667pt;}
._2{margin-left:-1.088000pt;}
._3{width:1.045333pt;}
._13{width:37.333333pt;}
._12{width:64.000000pt;}
._6{width:345.280000pt;}
._1a{width:398.346667pt;}
._16{width:437.386667pt;}
._15{width:440.064000pt;}
._19{width:450.624000pt;}
._1b{width:486.730667pt;}
._8{width:650.368000pt;}
._18{width:825.280000pt;}
._a{width:856.480000pt;}
._c{width:1072.480000pt;}
._e{width:1481.546667pt;}
._10{width:2306.080000pt;}
.fs5{font-size:34.133333pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y24{bottom:60.081333pt;}
.y23{bottom:96.814667pt;}
.ye2{bottom:108.148000pt;}
.y22{bottom:112.214667pt;}
.y21{bottom:127.614667pt;}
.ye1{bottom:129.281333pt;}
.y20{bottom:143.014667pt;}
.ye0{bottom:150.414667pt;}
.y1f{bottom:158.414667pt;}
.ydf{bottom:171.548000pt;}
.y4e{bottom:173.814667pt;}
.y4d{bottom:189.214667pt;}
.yde{bottom:192.681333pt;}
.y4c{bottom:204.614667pt;}
.y1e{bottom:213.681333pt;}
.ydd{bottom:213.814667pt;}
.y4b{bottom:220.014667pt;}
.y1d{bottom:232.081333pt;}
.ydc{bottom:234.948000pt;}
.y4a{bottom:235.414667pt;}
.yb7{bottom:236.881333pt;}
.y1c{bottom:250.481333pt;}
.y49{bottom:250.814667pt;}
.y77{bottom:252.081333pt;}
.ydb{bottom:256.081333pt;}
.yb6{bottom:258.014667pt;}
.y48{bottom:266.214667pt;}
.y1b{bottom:268.881333pt;}
.y76{bottom:270.481333pt;}
.yda{bottom:277.214667pt;}
.yb5{bottom:279.148000pt;}
.y96{bottom:281.614667pt;}
.y1a{bottom:287.281333pt;}
.y75{bottom:288.881333pt;}
.y95{bottom:297.014667pt;}
.yd9{bottom:298.348000pt;}
.yb4{bottom:300.281333pt;}
.y19{bottom:305.681333pt;}
.y74{bottom:307.281333pt;}
.y94{bottom:312.414667pt;}
.yd8{bottom:319.481333pt;}
.yb3{bottom:321.414667pt;}
.y18{bottom:324.081333pt;}
.y73{bottom:325.681333pt;}
.y93{bottom:327.814667pt;}
.y47{bottom:332.681333pt;}
.yd7{bottom:340.614667pt;}
.yb2{bottom:342.548000pt;}
.y92{bottom:343.214667pt;}
.y72{bottom:344.081333pt;}
.y46{bottom:351.081333pt;}
.y91{bottom:358.614667pt;}
.y17{bottom:360.881333pt;}
.yd6{bottom:361.748000pt;}
.y71{bottom:362.481333pt;}
.yb1{bottom:363.681333pt;}
.y90{bottom:374.014667pt;}
.y16{bottom:379.281333pt;}
.y70{bottom:380.881333pt;}
.yd5{bottom:382.881333pt;}
.yb0{bottom:384.814667pt;}
.y8f{bottom:389.414667pt;}
.y15{bottom:397.681333pt;}
.y6f{bottom:399.281333pt;}
.yd4{bottom:404.014667pt;}
.y8e{bottom:404.814667pt;}
.yaf{bottom:405.948000pt;}
.y45{bottom:406.281333pt;}
.y14{bottom:416.081333pt;}
.y8d{bottom:420.214667pt;}
.y44{bottom:424.681333pt;}
.yd3{bottom:425.148000pt;}
.yae{bottom:427.081333pt;}
.y6e{bottom:428.748000pt;}
.y8c{bottom:435.614667pt;}
.y43{bottom:443.081333pt;}
.y6d{bottom:445.614667pt;}
.yd2{bottom:446.281333pt;}
.yad{bottom:448.214667pt;}
.y8b{bottom:451.014667pt;}
.y42{bottom:461.481333pt;}
.y6c{bottom:462.481333pt;}
.yd1{bottom:467.414667pt;}
.yac{bottom:469.348000pt;}
.y6b{bottom:479.348000pt;}
.y8a{bottom:482.148000pt;}
.yd0{bottom:488.548000pt;}
.yab{bottom:490.481333pt;}
.y6a{bottom:496.214667pt;}
.y41{bottom:498.014667pt;}
.y89{bottom:500.548000pt;}
.y13{bottom:500.614667pt;}
.ycf{bottom:509.681333pt;}
.yaa{bottom:511.614667pt;}
.y69{bottom:513.081333pt;}
.y40{bottom:514.881333pt;}
.y88{bottom:518.948000pt;}
.y12{bottom:521.748000pt;}
.y68{bottom:529.948000pt;}
.yce{bottom:530.814667pt;}
.y3f{bottom:531.748000pt;}
.yf6{bottom:532.348000pt;}
.ya9{bottom:532.748000pt;}
.y87{bottom:537.348000pt;}
.y11{bottom:542.881333pt;}
.y67{bottom:546.814667pt;}
.y3e{bottom:548.614667pt;}
.ycd{bottom:551.948000pt;}
.yf5{bottom:553.481333pt;}
.ya8{bottom:553.881333pt;}
.y86{bottom:555.748000pt;}
.y66{bottom:563.681333pt;}
.y3d{bottom:565.481333pt;}
.ycc{bottom:573.081333pt;}
.yf4{bottom:574.614667pt;}
.ya7{bottom:575.014667pt;}
.y65{bottom:580.548000pt;}
.y3c{bottom:582.348000pt;}
.y10{bottom:585.148000pt;}
.y85{bottom:585.481333pt;}
.ycb{bottom:594.214667pt;}
.yf3{bottom:595.748000pt;}
.ya6{bottom:596.148000pt;}
.y64{bottom:597.414667pt;}
.y3b{bottom:599.214667pt;}
.yf{bottom:606.281333pt;}
.y63{bottom:614.281333pt;}
.y84{bottom:615.214667pt;}
.yca{bottom:615.348000pt;}
.yf2{bottom:616.881333pt;}
.ya5{bottom:617.281333pt;}
.ye{bottom:627.414667pt;}
.y62{bottom:631.148000pt;}
.y83{bottom:633.614667pt;}
.y3a{bottom:634.748000pt;}
.yc9{bottom:636.481333pt;}
.yf1{bottom:638.014667pt;}
.ya4{bottom:638.414667pt;}
.y61{bottom:648.014667pt;}
.y82{bottom:652.014667pt;}
.y39{bottom:653.148000pt;}
.yc8{bottom:657.614667pt;}
.yf0{bottom:659.148000pt;}
.ya3{bottom:659.548000pt;}
.y60{bottom:664.881333pt;}
.y38{bottom:671.548000pt;}
.yc7{bottom:678.748000pt;}
.yef{bottom:680.281333pt;}
.ya2{bottom:680.681333pt;}
.y5f{bottom:681.748000pt;}
.y37{bottom:689.948000pt;}
.yd{bottom:690.814667pt;}
.y5e{bottom:698.614667pt;}
.yc6{bottom:699.881333pt;}
.y81{bottom:700.148000pt;}
.yee{bottom:701.414667pt;}
.ya1{bottom:701.814667pt;}
.y36{bottom:708.348000pt;}
.yc{bottom:711.948000pt;}
.y5d{bottom:715.481333pt;}
.y80{bottom:718.548000pt;}
.yc5{bottom:721.014667pt;}
.yed{bottom:722.548000pt;}
.ya0{bottom:722.948000pt;}
.y35{bottom:726.748000pt;}
.y5c{bottom:732.348000pt;}
.yb{bottom:733.081333pt;}
.yc4{bottom:742.148000pt;}
.yec{bottom:743.681333pt;}
.y9f{bottom:744.081333pt;}
.y34{bottom:745.148000pt;}
.y7f{bottom:748.281333pt;}
.y5b{bottom:749.214667pt;}
.ya{bottom:754.214667pt;}
.yc3{bottom:763.281333pt;}
.y33{bottom:763.548000pt;}
.yeb{bottom:764.814667pt;}
.y9e{bottom:765.214667pt;}
.y7e{bottom:766.681333pt;}
.y9{bottom:775.348000pt;}
.y5a{bottom:777.681333pt;}
.y32{bottom:781.948000pt;}
.yc2{bottom:784.414667pt;}
.y7d{bottom:785.081333pt;}
.yea{bottom:785.948000pt;}
.y9d{bottom:786.348000pt;}
.y59{bottom:796.081333pt;}
.y8{bottom:796.481333pt;}
.y31{bottom:800.348000pt;}
.yc1{bottom:805.548000pt;}
.ye9{bottom:807.081333pt;}
.y9c{bottom:807.481333pt;}
.y58{bottom:814.481333pt;}
.y7c{bottom:814.548000pt;}
.y7{bottom:817.614667pt;}
.y30{bottom:818.748000pt;}
.yc0{bottom:826.681333pt;}
.ye8{bottom:828.214667pt;}
.y9b{bottom:828.614667pt;}
.y7b{bottom:831.414667pt;}
.y57{bottom:832.881333pt;}
.y2f{bottom:837.148000pt;}
.ybf{bottom:847.814667pt;}
.y7a{bottom:848.281333pt;}
.ye7{bottom:849.348000pt;}
.y56{bottom:851.281333pt;}
.y2e{bottom:855.548000pt;}
.y9a{bottom:858.348000pt;}
.ybe{bottom:868.948000pt;}
.y55{bottom:869.681333pt;}
.ye6{bottom:870.481333pt;}
.y2d{bottom:873.948000pt;}
.y79{bottom:876.748000pt;}
.y54{bottom:888.081333pt;}
.ybd{bottom:890.081333pt;}
.ye5{bottom:891.614667pt;}
.y2c{bottom:892.348000pt;}
.y99{bottom:895.148000pt;}
.y6{bottom:902.148000pt;}
.y53{bottom:906.481333pt;}
.y2b{bottom:910.748000pt;}
.ye4{bottom:912.748000pt;}
.y98{bottom:913.548000pt;}
.ybc{bottom:922.548000pt;}
.y5{bottom:923.281333pt;}
.y52{bottom:924.881333pt;}
.y2a{bottom:929.148000pt;}
.ye3{bottom:933.881333pt;}
.y51{bottom:943.281333pt;}
.y4{bottom:944.414667pt;}
.y29{bottom:947.548000pt;}
.ybb{bottom:955.014667pt;}
.y50{bottom:961.681333pt;}
.y28{bottom:965.948000pt;}
.yba{bottom:976.148000pt;}
.y4f{bottom:980.081333pt;}
.y27{bottom:984.348000pt;}
.y3{bottom:986.681333pt;}
.yb9{bottom:997.281333pt;}
.y97{bottom:1002.748000pt;}
.y78{bottom:1009.814667pt;}
.yb8{bottom:1018.414667pt;}
.y26{bottom:1021.148000pt;}
.y2{bottom:1032.081333pt;}
.y25{bottom:1039.548000pt;}
.h6{height:37.552083pt;}
.h7{height:41.307292pt;}
.h4{height:45.062500pt;}
.h8{height:46.966667pt;}
.h5{height:51.353125pt;}
.h3{height:67.593750pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.800000pt;}
.x2{left:79.466667pt;}
.x4{left:94.600000pt;}
.x5{left:132.400000pt;}
.x3{left:393.000000pt;}
}




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