
    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_393407649905f79f79f9265f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e3d045aa5c913b2c86cb8e55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_b3db6e7224964f440332e584.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_988ac02a8b79bc23cdc7ed5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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;}
.ls0{letter-spacing:0.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;}
}
.ws1{word-spacing:-34.637694px;}
.ws3{word-spacing:-17.257323px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:2255.097775px;}
._1{margin-left:-6.152346px;}
._3{margin-left:-4.007813px;}
._0{margin-left:-2.460937px;}
._2{margin-left:-1.107423px;}
.fc7{color:rgb(0,0,238);}
.fc6{color:rgb(245,135,31);}
.fc4{color:rgb(142,144,140);}
.fc3{color:rgb(77,77,76);}
.fc2{color:rgb(137,89,168);}
.fc8{color:rgb(66,113,174);}
.fc1{color:rgb(201,174,117);}
.fc5{color:rgb(113,140,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000002px;}
.fs2{font-size:62.999997px;}
.fs1{font-size:94.499996px;}
.y0{bottom:0.000000px;}
.ya4{bottom:5.625000px;}
.y30{bottom:9.000000px;}
.y49{bottom:12.374999px;}
.y8b{bottom:13.499999px;}
.y27{bottom:23.624999px;}
.y2{bottom:25.379923px;}
.ya3{bottom:26.999999px;}
.y2f{bottom:30.374999px;}
.y48{bottom:33.749999px;}
.y8a{bottom:34.874999px;}
.yf1{bottom:41.624998px;}
.y3{bottom:42.255021px;}
.y26{bottom:44.999998px;}
.ya2{bottom:48.374998px;}
.y2e{bottom:51.749998px;}
.y47{bottom:55.124998px;}
.y89{bottom:56.249998px;}
.ya9{bottom:60.255020px;}
.yf0{bottom:62.999997px;}
.y25{bottom:66.374997px;}
.ya1{bottom:69.749997px;}
.y2d{bottom:73.124997px;}
.y46{bottom:76.499997px;}
.y88{bottom:77.624997px;}
.yef{bottom:84.374996px;}
.y24{bottom:87.749996px;}
.ya0{bottom:91.124996px;}
.y2c{bottom:94.499996px;}
.y87{bottom:98.999996px;}
.yee{bottom:105.749996px;}
.y23{bottom:109.124995px;}
.y9f{bottom:112.499995px;}
.y2b{bottom:115.874995px;}
.y86{bottom:120.374995px;}
.yed{bottom:127.124995px;}
.y22{bottom:130.499995px;}
.y9e{bottom:133.874994px;}
.y2a{bottom:137.249994px;}
.y45{bottom:141.749994px;}
.yec{bottom:148.499994px;}
.y21{bottom:151.874994px;}
.y9d{bottom:155.249994px;}
.y78{bottom:158.624993px;}
.y85{bottom:163.124993px;}
.y44{bottom:166.499993px;}
.yeb{bottom:169.874993px;}
.y20{bottom:173.249993px;}
.y9c{bottom:176.624993px;}
.y77{bottom:179.999992px;}
.y43{bottom:191.249992px;}
.y1f{bottom:194.624992px;}
.y9b{bottom:197.999992px;}
.y76{bottom:201.374992px;}
.y29{bottom:202.499992px;}
.yea{bottom:212.624991px;}
.y1e{bottom:215.999991px;}
.y9a{bottom:219.374991px;}
.y75{bottom:222.749991px;}
.y28{bottom:227.249991px;}
.y84{bottom:228.374990px;}
.y42{bottom:231.749990px;}
.ye9{bottom:233.999990px;}
.y1d{bottom:237.374990px;}
.y99{bottom:240.749990px;}
.y74{bottom:244.124990px;}
.ye8{bottom:255.374989px;}
.y1c{bottom:258.749989px;}
.y98{bottom:262.124989px;}
.y73{bottom:265.499989px;}
.y83{bottom:268.874989px;}
.ye7{bottom:276.749988px;}
.y1b{bottom:280.124988px;}
.y97{bottom:283.499988px;}
.y72{bottom:286.874988px;}
.y82{bottom:293.624988px;}
.ye6{bottom:298.124988px;}
.y1a{bottom:301.499987px;}
.y96{bottom:304.874987px;}
.y71{bottom:308.249987px;}
.yb{bottom:312.255010px;}
.y81{bottom:318.374987px;}
.ye5{bottom:319.499987px;}
.y19{bottom:322.874987px;}
.y95{bottom:326.249986px;}
.y70{bottom:329.624986px;}
.ye4{bottom:340.874986px;}
.y80{bottom:343.124986px;}
.y18{bottom:344.249986px;}
.y94{bottom:347.624986px;}
.y6f{bottom:350.999985px;}
.y3b{bottom:358.874985px;}
.ye3{bottom:362.249985px;}
.y17{bottom:365.624985px;}
.y93{bottom:368.999985px;}
.y6e{bottom:372.374984px;}
.y7f{bottom:383.624984px;}
.y16{bottom:386.999984px;}
.y92{bottom:390.374984px;}
.y6d{bottom:393.749984px;}
.y3a{bottom:399.374983px;}
.ye2{bottom:404.999983px;}
.y15{bottom:408.374983px;}
.y91{bottom:411.749983px;}
.y6c{bottom:415.124983px;}
.ye1{bottom:426.374982px;}
.y14{bottom:429.749982px;}
.y90{bottom:433.124982px;}
.y6b{bottom:436.499982px;}
.y39{bottom:439.874982px;}
.ye0{bottom:447.749981px;}
.y13{bottom:451.124981px;}
.y8f{bottom:454.499981px;}
.y6a{bottom:457.874981px;}
.y38{bottom:464.624981px;}
.ydf{bottom:469.124980px;}
.y12{bottom:472.499980px;}
.y8e{bottom:475.874980px;}
.y79{bottom:476.505003px;}
.y41{bottom:478.124980px;}
.y69{bottom:479.249980px;}
.y3e{bottom:484.874980px;}
.y37{bottom:489.374980px;}
.yde{bottom:490.499980px;}
.y11{bottom:493.874979px;}
.yc8{bottom:497.249979px;}
.y68{bottom:500.624979px;}
.y40{bottom:502.874979px;}
.y3d{bottom:509.624979px;}
.ydd{bottom:511.874979px;}
.y36{bottom:514.124979px;}
.y10{bottom:515.249979px;}
.yc7{bottom:518.624978px;}
.y67{bottom:521.999978px;}
.y3f{bottom:527.624978px;}
.ydc{bottom:533.249978px;}
.yf{bottom:536.624978px;}
.yc6{bottom:539.999977px;}
.y8d{bottom:541.124977px;}
.y66{bottom:543.374977px;}
.y35{bottom:554.624977px;}
.ye{bottom:557.999977px;}
.yc5{bottom:561.374977px;}
.y65{bottom:564.749976px;}
.ydb{bottom:575.999976px;}
.yd{bottom:579.374976px;}
.yc4{bottom:582.749976px;}
.y64{bottom:586.124976px;}
.yda{bottom:597.374975px;}
.yc{bottom:600.749975px;}
.y33{bottom:601.874975px;}
.yc3{bottom:604.124975px;}
.y63{bottom:607.499975px;}
.yd9{bottom:618.749974px;}
.y7e{bottom:622.124974px;}
.yc2{bottom:625.499974px;}
.y8c{bottom:626.129997px;}
.y32{bottom:626.624974px;}
.y62{bottom:628.874974px;}
.yd8{bottom:640.124973px;}
.y7d{bottom:643.499973px;}
.yc1{bottom:646.874973px;}
.y34{bottom:647.504996px;}
.y61{bottom:650.249973px;}
.yd7{bottom:661.499972px;}
.y7c{bottom:664.874972px;}
.yc0{bottom:668.249972px;}
.y60{bottom:671.624972px;}
.yd6{bottom:682.874972px;}
.y7b{bottom:686.249971px;}
.ybf{bottom:689.624971px;}
.y5f{bottom:692.999971px;}
.yd5{bottom:704.249971px;}
.y7a{bottom:707.624971px;}
.ybe{bottom:710.999970px;}
.y31{bottom:711.629993px;}
.yca{bottom:712.124970px;}
.y5e{bottom:714.374970px;}
.yd4{bottom:725.624970px;}
.yac{bottom:728.999970px;}
.ybd{bottom:732.374969px;}
.y5d{bottom:735.749969px;}
.yd3{bottom:746.999969px;}
.yab{bottom:750.374969px;}
.ybc{bottom:753.749969px;}
.y5c{bottom:757.124968px;}
.yd2{bottom:768.374968px;}
.yaa{bottom:771.749968px;}
.ybb{bottom:775.124968px;}
.y5b{bottom:778.499968px;}
.yd1{bottom:789.749967px;}
.yba{bottom:796.499967px;}
.yc9{bottom:797.129989px;}
.y5a{bottom:799.874967px;}
.yd0{bottom:811.124966px;}
.yb9{bottom:817.874966px;}
.y59{bottom:821.249966px;}
.yb8{bottom:839.249965px;}
.y58{bottom:842.624965px;}
.ya8{bottom:854.999964px;}
.yb7{bottom:860.624964px;}
.y57{bottom:863.999964px;}
.ycf{bottom:876.374963px;}
.yb6{bottom:881.999963px;}
.y56{bottom:885.374963px;}
.ya7{bottom:895.499963px;}
.yb5{bottom:903.374962px;}
.y55{bottom:906.749962px;}
.yce{bottom:916.874962px;}
.ya6{bottom:920.249962px;}
.yb4{bottom:924.749961px;}
.y54{bottom:928.124961px;}
.ya{bottom:935.999961px;}
.ycd{bottom:941.624961px;}
.yb3{bottom:946.124961px;}
.y53{bottom:949.499960px;}
.y9{bottom:960.749960px;}
.yb2{bottom:967.499960px;}
.y52{bottom:970.874960px;}
.ycc{bottom:982.124959px;}
.y8{bottom:985.499959px;}
.yb1{bottom:988.874959px;}
.y51{bottom:992.249959px;}
.yb0{bottom:1010.249958px;}
.y50{bottom:1013.624958px;}
.y7{bottom:1025.999957px;}
.yaf{bottom:1031.624957px;}
.y4f{bottom:1034.999957px;}
.y6{bottom:1050.749956px;}
.yae{bottom:1052.999956px;}
.ya5{bottom:1053.629979px;}
.y4e{bottom:1056.374956px;}
.yad{bottom:1074.374955px;}
.ycb{bottom:1075.004978px;}
.y5{bottom:1075.499955px;}
.y4d{bottom:1077.749955px;}
.y4c{bottom:1099.124954px;}
.y4{bottom:1115.999954px;}
.y4b{bottom:1120.499953px;}
.yf2{bottom:1139.129975px;}
.y3c{bottom:1139.624953px;}
.y4a{bottom:1141.874952px;}
.y1{bottom:1228.379969px;}
.h2{height:39.313478px;}
.h7{height:45.804197px;}
.h5{height:47.311521px;}
.h18{height:60.749997px;}
.h4{height:70.967282px;}
.hc{height:110.249995px;}
.h16{height:124.874995px;}
.h11{height:146.249994px;}
.h8{height:170.999993px;}
.he{height:196.874992px;}
.h14{height:402.749983px;}
.h9{height:488.249980px;}
.h10{height:509.624979px;}
.hb{height:552.374977px;}
.ha{height:570.374976px;}
.hf{height:573.749976px;}
.h6{height:634.499974px;}
.h15{height:680.624972px;}
.hd{height:723.374970px;}
.h12{height:805.499966px;}
.h17{height:844.874965px;}
.h13{height:1108.124954px;}
.h3{height:1157.624952px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:746.999983px;}
.w2{width:809.999966px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:18.000001px;}
.x4{left:22.499999px;}
.x3{left:41.999997px;}
.x7{left:51.749998px;}
.x1{left:56.671877px;}
.x8{left:67.499997px;}
.x5{left:73.499995px;}
.x9{left:425.578141px;}
.x2{left:429.328141px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-30.789061pt;}
.ws3{word-spacing:-15.339843pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:2004.531356pt;}
._1{margin-left:-5.468752pt;}
._3{margin-left:-3.562500pt;}
._0{margin-left:-2.187500pt;}
._2{margin-left:-0.984376pt;}
.fs0{font-size:48.000002pt;}
.fs2{font-size:55.999998pt;}
.fs1{font-size:83.999997pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:5.000000pt;}
.y30{bottom:8.000000pt;}
.y49{bottom:11.000000pt;}
.y8b{bottom:11.999999pt;}
.y27{bottom:20.999999pt;}
.y2{bottom:22.559931pt;}
.ya3{bottom:23.999999pt;}
.y2f{bottom:26.999999pt;}
.y48{bottom:29.999999pt;}
.y8a{bottom:30.999999pt;}
.yf1{bottom:36.999998pt;}
.y3{bottom:37.560019pt;}
.y26{bottom:39.999998pt;}
.ya2{bottom:42.999998pt;}
.y2e{bottom:45.999998pt;}
.y47{bottom:48.999998pt;}
.y89{bottom:49.999998pt;}
.ya9{bottom:53.560018pt;}
.yf0{bottom:55.999998pt;}
.y25{bottom:58.999998pt;}
.ya1{bottom:61.999997pt;}
.y2d{bottom:64.999997pt;}
.y46{bottom:67.999997pt;}
.y88{bottom:68.999997pt;}
.yef{bottom:74.999997pt;}
.y24{bottom:77.999997pt;}
.ya0{bottom:80.999997pt;}
.y2c{bottom:83.999996pt;}
.y87{bottom:87.999996pt;}
.yee{bottom:93.999996pt;}
.y23{bottom:96.999996pt;}
.y9f{bottom:99.999996pt;}
.y2b{bottom:102.999996pt;}
.y86{bottom:106.999996pt;}
.yed{bottom:112.999995pt;}
.y22{bottom:115.999995pt;}
.y9e{bottom:118.999995pt;}
.y2a{bottom:121.999995pt;}
.y45{bottom:125.999995pt;}
.yec{bottom:131.999994pt;}
.y21{bottom:134.999994pt;}
.y9d{bottom:137.999994pt;}
.y78{bottom:140.999994pt;}
.y85{bottom:144.999994pt;}
.y44{bottom:147.999994pt;}
.yeb{bottom:150.999994pt;}
.y20{bottom:153.999994pt;}
.y9c{bottom:156.999993pt;}
.y77{bottom:159.999993pt;}
.y43{bottom:169.999993pt;}
.y1f{bottom:172.999993pt;}
.y9b{bottom:175.999993pt;}
.y76{bottom:178.999993pt;}
.y29{bottom:179.999992pt;}
.yea{bottom:188.999992pt;}
.y1e{bottom:191.999992pt;}
.y9a{bottom:194.999992pt;}
.y75{bottom:197.999992pt;}
.y28{bottom:201.999992pt;}
.y84{bottom:202.999992pt;}
.y42{bottom:205.999991pt;}
.ye9{bottom:207.999991pt;}
.y1d{bottom:210.999991pt;}
.y99{bottom:213.999991pt;}
.y74{bottom:216.999991pt;}
.ye8{bottom:226.999991pt;}
.y1c{bottom:229.999990pt;}
.y98{bottom:232.999990pt;}
.y73{bottom:235.999990pt;}
.y83{bottom:238.999990pt;}
.ye7{bottom:245.999990pt;}
.y1b{bottom:248.999990pt;}
.y97{bottom:251.999989pt;}
.y72{bottom:254.999989pt;}
.y82{bottom:260.999989pt;}
.ye6{bottom:264.999989pt;}
.y1a{bottom:267.999989pt;}
.y96{bottom:270.999989pt;}
.y71{bottom:273.999989pt;}
.yb{bottom:277.560009pt;}
.y81{bottom:282.999988pt;}
.ye5{bottom:283.999988pt;}
.y19{bottom:286.999988pt;}
.y95{bottom:289.999988pt;}
.y70{bottom:292.999988pt;}
.ye4{bottom:302.999987pt;}
.y80{bottom:304.999987pt;}
.y18{bottom:305.999987pt;}
.y94{bottom:308.999987pt;}
.y6f{bottom:311.999987pt;}
.y3b{bottom:318.999987pt;}
.ye3{bottom:321.999987pt;}
.y17{bottom:324.999986pt;}
.y93{bottom:327.999986pt;}
.y6e{bottom:330.999986pt;}
.y7f{bottom:340.999986pt;}
.y16{bottom:343.999986pt;}
.y92{bottom:346.999986pt;}
.y6d{bottom:349.999985pt;}
.y3a{bottom:354.999985pt;}
.ye2{bottom:359.999985pt;}
.y15{bottom:362.999985pt;}
.y91{bottom:365.999985pt;}
.y6c{bottom:368.999985pt;}
.ye1{bottom:378.999984pt;}
.y14{bottom:381.999984pt;}
.y90{bottom:384.999984pt;}
.y6b{bottom:387.999984pt;}
.y39{bottom:390.999984pt;}
.ye0{bottom:397.999983pt;}
.y13{bottom:400.999983pt;}
.y8f{bottom:403.999983pt;}
.y6a{bottom:406.999983pt;}
.y38{bottom:412.999983pt;}
.ydf{bottom:416.999983pt;}
.y12{bottom:419.999982pt;}
.y8e{bottom:422.999982pt;}
.y79{bottom:423.560002pt;}
.y41{bottom:424.999982pt;}
.y69{bottom:425.999982pt;}
.y3e{bottom:430.999982pt;}
.y37{bottom:434.999982pt;}
.yde{bottom:435.999982pt;}
.y11{bottom:438.999982pt;}
.yc8{bottom:441.999982pt;}
.y68{bottom:444.999981pt;}
.y40{bottom:446.999981pt;}
.y3d{bottom:452.999981pt;}
.ydd{bottom:454.999981pt;}
.y36{bottom:456.999981pt;}
.y10{bottom:457.999981pt;}
.yc7{bottom:460.999981pt;}
.y67{bottom:463.999981pt;}
.y3f{bottom:468.999980pt;}
.ydc{bottom:473.999980pt;}
.yf{bottom:476.999980pt;}
.yc6{bottom:479.999980pt;}
.y8d{bottom:480.999980pt;}
.y66{bottom:482.999980pt;}
.y35{bottom:492.999979pt;}
.ye{bottom:495.999979pt;}
.yc5{bottom:498.999979pt;}
.y65{bottom:501.999979pt;}
.ydb{bottom:511.999979pt;}
.yd{bottom:514.999979pt;}
.yc4{bottom:517.999978pt;}
.y64{bottom:520.999978pt;}
.yda{bottom:530.999978pt;}
.yc{bottom:533.999978pt;}
.y33{bottom:534.999978pt;}
.yc3{bottom:536.999978pt;}
.y63{bottom:539.999977pt;}
.yd9{bottom:549.999977pt;}
.y7e{bottom:552.999977pt;}
.yc2{bottom:555.999977pt;}
.y8c{bottom:556.559997pt;}
.y32{bottom:556.999977pt;}
.y62{bottom:558.999977pt;}
.yd8{bottom:568.999976pt;}
.y7d{bottom:571.999976pt;}
.yc1{bottom:574.999976pt;}
.y34{bottom:575.559996pt;}
.y61{bottom:577.999976pt;}
.yd7{bottom:587.999975pt;}
.y7c{bottom:590.999975pt;}
.yc0{bottom:593.999975pt;}
.y60{bottom:596.999975pt;}
.yd6{bottom:606.999975pt;}
.y7b{bottom:609.999975pt;}
.ybf{bottom:612.999974pt;}
.y5f{bottom:615.999974pt;}
.yd5{bottom:625.999974pt;}
.y7a{bottom:628.999974pt;}
.ybe{bottom:631.999974pt;}
.y31{bottom:632.559994pt;}
.yca{bottom:632.999974pt;}
.y5e{bottom:634.999974pt;}
.yd4{bottom:644.999973pt;}
.yac{bottom:647.999973pt;}
.ybd{bottom:650.999973pt;}
.y5d{bottom:653.999973pt;}
.yd3{bottom:663.999972pt;}
.yab{bottom:666.999972pt;}
.ybc{bottom:669.999972pt;}
.y5c{bottom:672.999972pt;}
.yd2{bottom:682.999972pt;}
.yaa{bottom:685.999971pt;}
.ybb{bottom:688.999971pt;}
.y5b{bottom:691.999971pt;}
.yd1{bottom:701.999971pt;}
.yba{bottom:707.999970pt;}
.yc9{bottom:708.559991pt;}
.y5a{bottom:710.999970pt;}
.yd0{bottom:720.999970pt;}
.yb9{bottom:726.999970pt;}
.y59{bottom:729.999970pt;}
.yb8{bottom:745.999969pt;}
.y58{bottom:748.999969pt;}
.ya8{bottom:759.999968pt;}
.yb7{bottom:764.999968pt;}
.y57{bottom:767.999968pt;}
.ycf{bottom:778.999968pt;}
.yb6{bottom:783.999967pt;}
.y56{bottom:786.999967pt;}
.ya7{bottom:795.999967pt;}
.yb5{bottom:802.999967pt;}
.y55{bottom:805.999966pt;}
.yce{bottom:814.999966pt;}
.ya6{bottom:817.999966pt;}
.yb4{bottom:821.999966pt;}
.y54{bottom:824.999966pt;}
.ya{bottom:831.999965pt;}
.ycd{bottom:836.999965pt;}
.yb3{bottom:840.999965pt;}
.y53{bottom:843.999965pt;}
.y9{bottom:853.999964pt;}
.yb2{bottom:859.999964pt;}
.y52{bottom:862.999964pt;}
.ycc{bottom:872.999964pt;}
.y8{bottom:875.999964pt;}
.yb1{bottom:878.999963pt;}
.y51{bottom:881.999963pt;}
.yb0{bottom:897.999963pt;}
.y50{bottom:900.999962pt;}
.y7{bottom:911.999962pt;}
.yaf{bottom:916.999962pt;}
.y4f{bottom:919.999962pt;}
.y6{bottom:933.999961pt;}
.yae{bottom:935.999961pt;}
.ya5{bottom:936.559981pt;}
.y4e{bottom:938.999961pt;}
.yad{bottom:954.999960pt;}
.ycb{bottom:955.559980pt;}
.y5{bottom:955.999960pt;}
.y4d{bottom:957.999960pt;}
.y4c{bottom:976.999959pt;}
.y4{bottom:991.999959pt;}
.y4b{bottom:995.999959pt;}
.yf2{bottom:1012.559978pt;}
.y3c{bottom:1012.999958pt;}
.y4a{bottom:1014.999958pt;}
.y1{bottom:1091.893305pt;}
.h2{height:34.945314pt;}
.h7{height:40.714842pt;}
.h5{height:42.054686pt;}
.h18{height:53.999998pt;}
.h4{height:63.082029pt;}
.hc{height:97.999996pt;}
.h16{height:110.999995pt;}
.h11{height:129.999995pt;}
.h8{height:151.999994pt;}
.he{height:174.999993pt;}
.h14{height:357.999985pt;}
.h9{height:433.999982pt;}
.h10{height:452.999981pt;}
.hb{height:490.999980pt;}
.ha{height:506.999979pt;}
.hf{height:509.999979pt;}
.h6{height:563.999977pt;}
.h15{height:604.999975pt;}
.hd{height:642.999973pt;}
.h12{height:715.999970pt;}
.h17{height:750.999969pt;}
.h13{height:984.999959pt;}
.h3{height:1028.999957pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:663.999985pt;}
.w2{width:719.999970pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:16.000001pt;}
.x4{left:19.999999pt;}
.x3{left:37.333331pt;}
.x7{left:45.999998pt;}
.x1{left:50.375002pt;}
.x8{left:59.999998pt;}
.x5{left:65.333328pt;}
.x9{left:378.291681pt;}
.x2{left:381.625015pt;}
}




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