
    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_0f4aee15085f08d18ad51127.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_316ea09f1ed61b0ebd4d52df.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_867682d6a721fadf1e66b6b2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_44973ec610736e0548487a31.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_084f831b8873ebdd992bb333.woff')format("woff");}.ff5{font-family:ff5;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);}
.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;}
}
.ws2{word-spacing:-89.999996px;}
.ws4{word-spacing:-44.999998px;}
.ws0{word-spacing:-41.242498px;}
.ws5{word-spacing:-25.312499px;}
.ws3{word-spacing:-22.499999px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-19.951169px;}
._15{margin-left:-16.051035px;}
._13{margin-left:-11.019313px;}
._5{margin-left:-9.975580px;}
._7{margin-left:-8.261718px;}
._3{margin-left:-6.756590px;}
._4{margin-left:-5.405253px;}
._2{margin-left:-3.724355px;}
._6{margin-left:-1.625976px;}
._f{width:1.350016px;}
._d{width:2.769239px;}
._1{width:4.198770px;}
._b{width:6.107146px;}
._e{width:7.178587px;}
._19{width:8.625007px;}
._1a{width:9.749946px;}
._17{width:11.699993px;}
._18{width:12.927339px;}
._12{width:14.399984px;}
._10{width:15.923077px;}
._14{width:17.590911px;}
._16{width:18.719636px;}
._a{width:19.874987px;}
._1d{width:21.375172px;}
._0{width:22.487814px;}
._1b{width:23.999980px;}
._c{width:25.000006px;}
._1c{width:26.181789px;}
._9{width:27.409104px;}
._11{width:28.590886px;}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(255,135,0);}
.fc1{color:rgb(0,0,238);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:67.499997px;}
.fs2{font-size:89.999996px;}
.fs5{font-size:101.249996px;}
.fs1{font-size:127.484995px;}
.fs0{font-size:164.969993px;}
.fs4{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y25{bottom:25.874999px;}
.y37{bottom:32.624999px;}
.y52{bottom:42.749998px;}
.y6a{bottom:52.874998px;}
.y24{bottom:58.499998px;}
.y81{bottom:66.374997px;}
.y51{bottom:68.624997px;}
.y8e{bottom:79.874997px;}
.y36{bottom:84.374996px;}
.y23{bottom:91.124996px;}
.y50{bottom:94.499996px;}
.y69{bottom:100.124996px;}
.y1{bottom:108.000045px;}
.y35{bottom:110.249995px;}
.y80{bottom:113.624995px;}
.y4f{bottom:120.374995px;}
.y22{bottom:123.749995px;}
.y68{bottom:127.124995px;}
.y58{bottom:137.249994px;}
.y7f{bottom:140.624994px;}
.y8d{bottom:154.124994px;}
.y21{bottom:159.749993px;}
.y34{bottom:161.999993px;}
.y4e{bottom:172.124993px;}
.y67{bottom:174.374993px;}
.y8c{bottom:181.124992px;}
.y33{bottom:187.874992px;}
.y20{bottom:192.374992px;}
.y4d{bottom:197.999992px;}
.y9e{bottom:212.624991px;}
.y32{bottom:213.749991px;}
.y66{bottom:221.624991px;}
.y4c{bottom:223.874991px;}
.y1f{bottom:224.999991px;}
.y8b{bottom:228.374990px;}
.y7e{bottom:235.124990px;}
.y9d{bottom:241.874990px;}
.y65{bottom:248.624990px;}
.yaa{bottom:254.249989px;}
.y8a{bottom:255.374989px;}
.y1e{bottom:257.624989px;}
.y31{bottom:265.499989px;}
.y9c{bottom:268.874989px;}
.y4b{bottom:275.624989px;}
.ya9{bottom:280.124988px;}
.y7d{bottom:282.374988px;}
.y1d{bottom:290.249988px;}
.y30{bottom:291.374988px;}
.y4a{bottom:301.499987px;}
.y64{bottom:302.624987px;}
.ya8{bottom:305.999987px;}
.y7c{bottom:309.374987px;}
.y2f{bottom:317.249987px;}
.y1c{bottom:322.874987px;}
.y49{bottom:327.374986px;}
.y59{bottom:336.374986px;}
.y2e{bottom:343.124986px;}
.y63{bottom:349.874985px;}
.y48{bottom:353.249985px;}
.y1b{bottom:355.499985px;}
.y7b{bottom:356.624985px;}
.ya7{bottom:357.749985px;}
.y9b{bottom:363.374985px;}
.y62{bottom:376.874984px;}
.y7a{bottom:383.624984px;}
.y1a{bottom:388.124984px;}
.y2d{bottom:394.874984px;}
.y61{bottom:403.874983px;}
.y47{bottom:404.999983px;}
.ya6{bottom:409.499983px;}
.y79{bottom:410.624983px;}
.y19{bottom:420.749982px;}
.y46{bottom:430.874982px;}
.y9a{bottom:434.249982px;}
.ya5{bottom:435.374982px;}
.y2c{bottom:446.624981px;}
.y78{bottom:451.124981px;}
.y18{bottom:453.374981px;}
.y5{bottom:454.499981px;}
.y45{bottom:456.749981px;}
.y60{bottom:457.874981px;}
.y99{bottom:461.249981px;}
.y2b{bottom:472.499980px;}
.y89{bottom:478.124980px;}
.y44{bottom:482.624980px;}
.y5f{bottom:484.874980px;}
.y17{bottom:485.999980px;}
.ya4{bottom:487.124980px;}
.y77{bottom:498.374979px;}
.y98{bottom:502.874979px;}
.y88{bottom:505.124979px;}
.y43{bottom:511.874979px;}
.ya3{bottom:512.999979px;}
.y16{bottom:518.624978px;}
.y2a{bottom:524.249978px;}
.y5e{bottom:532.124978px;}
.ya2{bottom:538.874978px;}
.y76{bottom:545.624977px;}
.y29{bottom:550.124977px;}
.y15{bottom:551.249977px;}
.y87{bottom:552.374977px;}
.y5d{bottom:559.124977px;}
.y42{bottom:563.624977px;}
.ya1{bottom:564.749976px;}
.y75{bottom:572.624976px;}
.y28{bottom:575.999976px;}
.y14{bottom:583.874976px;}
.y5c{bottom:586.124976px;}
.y4{bottom:590.624975px;}
.y74{bottom:599.624975px;}
.y27{bottom:601.874975px;}
.yf{bottom:611.999975px;}
.y5b{bottom:613.124974px;}
.y41{bottom:615.374974px;}
.y13{bottom:616.499974px;}
.y86{bottom:626.624974px;}
.y97{bottom:627.749974px;}
.y40{bottom:641.249973px;}
.ya0{bottom:642.374973px;}
.y73{bottom:646.874973px;}
.y12{bottom:649.124973px;}
.ye{bottom:652.499973px;}
.y26{bottom:653.624973px;}
.y55{bottom:667.124972px;}
.y96{bottom:668.249972px;}
.y11{bottom:681.749972px;}
.y57{bottom:683.999972px;}
.y3{bottom:687.374971px;}
.yd{bottom:692.999971px;}
.y72{bottom:694.124971px;}
.y95{bottom:695.249971px;}
.y85{bottom:700.874971px;}
.y93{bottom:707.624971px;}
.y5a{bottom:714.374970px;}
.y9f{bottom:715.499970px;}
.y3f{bottom:718.874970px;}
.y71{bottom:721.124970px;}
.y84{bottom:727.874970px;}
.y92{bottom:734.624969px;}
.y2{bottom:735.749969px;}
.y3e{bottom:744.749969px;}
.y70{bottom:748.124969px;}
.yc{bottom:753.749969px;}
.y83{bottom:754.874969px;}
.y91{bottom:761.624968px;}
.y94{bottom:762.749968px;}
.y56{bottom:768.374968px;}
.y54{bottom:770.624968px;}
.yb{bottom:773.999968px;}
.y6f{bottom:775.124968px;}
.ya{bottom:794.249967px;}
.y10{bottom:795.374967px;}
.y3d{bottom:796.499967px;}
.y82{bottom:802.124967px;}
.y53{bottom:822.374966px;}
.y9{bottom:834.749965px;}
.y3c{bottom:848.249965px;}
.y6e{bottom:849.374965px;}
.y8{bottom:854.999964px;}
.y90{bottom:869.624964px;}
.y3b{bottom:874.124964px;}
.y6d{bottom:876.374963px;}
.y7{bottom:895.499963px;}
.y8f{bottom:896.624963px;}
.y3a{bottom:899.999963px;}
.y6c{bottom:923.624962px;}
.y39{bottom:925.874961px;}
.y6{bottom:935.999961px;}
.y6b{bottom:950.624960px;}
.y38{bottom:951.749960px;}
.h5{height:47.526853px;}
.h4{height:62.446286px;}
.h7{height:63.369138px;}
.h9{height:71.290280px;}
.h8{height:73.476559px;}
.ha{height:88.455165px;}
.h3{height:89.762384px;}
.h2{height:116.155630px;}
.h6{height:126.738276px;}
.h1{height:971.999960px;}
.h0{height:1188.000000px;}
.w1{width:701.999971px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:7.751953px;}
.xa{left:10.072265px;}
.x8{left:14.291015px;}
.x1a{left:59.009763px;}
.x1f{left:71.894528px;}
.x1c{left:89.718746px;}
.x16{left:106.101558px;}
.x1{left:107.999996px;}
.x1b{left:117.281245px;}
.x18{left:124.136714px;}
.x1e{left:126.035151px;}
.x2{left:158.642572px;}
.x9{left:166.130852px;}
.x13{left:180.984367px;}
.x6{left:183.357414px;}
.x1d{left:194.150388px;}
.x17{left:196.646482px;}
.x3{left:200.847648px;}
.xe{left:210.304679px;}
.x4{left:214.242179px;}
.xf{left:217.916012px;}
.x11{left:224.736324px;}
.x10{left:233.507803px;}
.x14{left:249.416011px;}
.xc{left:257.255854px;}
.xd{left:258.416010px;}
.x19{left:278.472645px;}
.x7{left:288.210925px;}
.x15{left:313.734362px;}
.x5{left:316.617174px;}
.x12{left:345.374986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-79.999997pt;}
.ws4{word-spacing:-39.999998pt;}
.ws0{word-spacing:-36.659998pt;}
.ws5{word-spacing:-22.499999pt;}
.ws3{word-spacing:-19.999999pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-17.734372pt;}
._15{margin-left:-14.267586pt;}
._13{margin-left:-9.794945pt;}
._5{margin-left:-8.867182pt;}
._7{margin-left:-7.343749pt;}
._3{margin-left:-6.005858pt;}
._4{margin-left:-4.804670pt;}
._2{margin-left:-3.310538pt;}
._6{margin-left:-1.445312pt;}
._f{width:1.200014pt;}
._d{width:2.461546pt;}
._1{width:3.732240pt;}
._b{width:5.428574pt;}
._e{width:6.380966pt;}
._19{width:7.666673pt;}
._1a{width:8.666618pt;}
._17{width:10.399994pt;}
._18{width:11.490968pt;}
._12{width:12.799986pt;}
._10{width:14.153846pt;}
._14{width:15.636365pt;}
._16{width:16.639676pt;}
._a{width:17.666655pt;}
._1d{width:19.000152pt;}
._0{width:19.989168pt;}
._1b{width:21.333316pt;}
._c{width:22.222227pt;}
._1c{width:23.272701pt;}
._9{width:24.363648pt;}
._11{width:25.414120pt;}
.fs3{font-size:59.999998pt;}
.fs2{font-size:79.999997pt;}
.fs5{font-size:89.999996pt;}
.fs1{font-size:113.319995pt;}
.fs0{font-size:146.639994pt;}
.fs4{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:22.999999pt;}
.y37{bottom:28.999999pt;}
.y52{bottom:37.999998pt;}
.y6a{bottom:46.999998pt;}
.y24{bottom:51.999998pt;}
.y81{bottom:58.999998pt;}
.y51{bottom:60.999997pt;}
.y8e{bottom:70.999997pt;}
.y36{bottom:74.999997pt;}
.y23{bottom:80.999997pt;}
.y50{bottom:83.999996pt;}
.y69{bottom:88.999996pt;}
.y1{bottom:96.000040pt;}
.y35{bottom:97.999996pt;}
.y80{bottom:100.999996pt;}
.y4f{bottom:106.999996pt;}
.y22{bottom:109.999995pt;}
.y68{bottom:112.999995pt;}
.y58{bottom:121.999995pt;}
.y7f{bottom:124.999995pt;}
.y8d{bottom:136.999994pt;}
.y21{bottom:141.999994pt;}
.y34{bottom:143.999994pt;}
.y4e{bottom:152.999994pt;}
.y67{bottom:154.999994pt;}
.y8c{bottom:160.999993pt;}
.y33{bottom:166.999993pt;}
.y20{bottom:170.999993pt;}
.y4d{bottom:175.999993pt;}
.y9e{bottom:188.999992pt;}
.y32{bottom:189.999992pt;}
.y66{bottom:196.999992pt;}
.y4c{bottom:198.999992pt;}
.y1f{bottom:199.999992pt;}
.y8b{bottom:202.999992pt;}
.y7e{bottom:208.999991pt;}
.y9d{bottom:214.999991pt;}
.y65{bottom:220.999991pt;}
.yaa{bottom:225.999991pt;}
.y8a{bottom:226.999991pt;}
.y1e{bottom:228.999990pt;}
.y31{bottom:235.999990pt;}
.y9c{bottom:238.999990pt;}
.y4b{bottom:244.999990pt;}
.ya9{bottom:248.999990pt;}
.y7d{bottom:250.999990pt;}
.y1d{bottom:257.999989pt;}
.y30{bottom:258.999989pt;}
.y4a{bottom:267.999989pt;}
.y64{bottom:268.999989pt;}
.ya8{bottom:271.999989pt;}
.y7c{bottom:274.999989pt;}
.y2f{bottom:281.999988pt;}
.y1c{bottom:286.999988pt;}
.y49{bottom:290.999988pt;}
.y59{bottom:298.999988pt;}
.y2e{bottom:304.999987pt;}
.y63{bottom:310.999987pt;}
.y48{bottom:313.999987pt;}
.y1b{bottom:315.999987pt;}
.y7b{bottom:316.999987pt;}
.ya7{bottom:317.999987pt;}
.y9b{bottom:322.999987pt;}
.y62{bottom:334.999986pt;}
.y7a{bottom:340.999986pt;}
.y1a{bottom:344.999986pt;}
.y2d{bottom:350.999985pt;}
.y61{bottom:358.999985pt;}
.y47{bottom:359.999985pt;}
.ya6{bottom:363.999985pt;}
.y79{bottom:364.999985pt;}
.y19{bottom:373.999984pt;}
.y46{bottom:382.999984pt;}
.y9a{bottom:385.999984pt;}
.ya5{bottom:386.999984pt;}
.y2c{bottom:396.999983pt;}
.y78{bottom:400.999983pt;}
.y18{bottom:402.999983pt;}
.y5{bottom:403.999983pt;}
.y45{bottom:405.999983pt;}
.y60{bottom:406.999983pt;}
.y99{bottom:409.999983pt;}
.y2b{bottom:419.999982pt;}
.y89{bottom:424.999982pt;}
.y44{bottom:428.999982pt;}
.y5f{bottom:430.999982pt;}
.y17{bottom:431.999982pt;}
.ya4{bottom:432.999982pt;}
.y77{bottom:442.999982pt;}
.y98{bottom:446.999981pt;}
.y88{bottom:448.999981pt;}
.y43{bottom:454.999981pt;}
.ya3{bottom:455.999981pt;}
.y16{bottom:460.999981pt;}
.y2a{bottom:465.999981pt;}
.y5e{bottom:472.999980pt;}
.ya2{bottom:478.999980pt;}
.y76{bottom:484.999980pt;}
.y29{bottom:488.999980pt;}
.y15{bottom:489.999980pt;}
.y87{bottom:490.999980pt;}
.y5d{bottom:496.999979pt;}
.y42{bottom:500.999979pt;}
.ya1{bottom:501.999979pt;}
.y75{bottom:508.999979pt;}
.y28{bottom:511.999979pt;}
.y14{bottom:518.999978pt;}
.y5c{bottom:520.999978pt;}
.y4{bottom:524.999978pt;}
.y74{bottom:532.999978pt;}
.y27{bottom:534.999978pt;}
.yf{bottom:543.999977pt;}
.y5b{bottom:544.999977pt;}
.y41{bottom:546.999977pt;}
.y13{bottom:547.999977pt;}
.y86{bottom:556.999977pt;}
.y97{bottom:557.999977pt;}
.y40{bottom:569.999976pt;}
.ya0{bottom:570.999976pt;}
.y73{bottom:574.999976pt;}
.y12{bottom:576.999976pt;}
.ye{bottom:579.999976pt;}
.y26{bottom:580.999976pt;}
.y55{bottom:592.999975pt;}
.y96{bottom:593.999975pt;}
.y11{bottom:605.999975pt;}
.y57{bottom:607.999975pt;}
.y3{bottom:610.999975pt;}
.yd{bottom:615.999974pt;}
.y72{bottom:616.999974pt;}
.y95{bottom:617.999974pt;}
.y85{bottom:622.999974pt;}
.y93{bottom:628.999974pt;}
.y5a{bottom:634.999974pt;}
.y9f{bottom:635.999974pt;}
.y3f{bottom:638.999973pt;}
.y71{bottom:640.999973pt;}
.y84{bottom:646.999973pt;}
.y92{bottom:652.999973pt;}
.y2{bottom:653.999973pt;}
.y3e{bottom:661.999972pt;}
.y70{bottom:664.999972pt;}
.yc{bottom:669.999972pt;}
.y83{bottom:670.999972pt;}
.y91{bottom:676.999972pt;}
.y94{bottom:677.999972pt;}
.y56{bottom:682.999972pt;}
.y54{bottom:684.999971pt;}
.yb{bottom:687.999971pt;}
.y6f{bottom:688.999971pt;}
.ya{bottom:705.999971pt;}
.y10{bottom:706.999971pt;}
.y3d{bottom:707.999970pt;}
.y82{bottom:712.999970pt;}
.y53{bottom:730.999970pt;}
.y9{bottom:741.999969pt;}
.y3c{bottom:753.999969pt;}
.y6e{bottom:754.999969pt;}
.y8{bottom:759.999968pt;}
.y90{bottom:772.999968pt;}
.y3b{bottom:776.999968pt;}
.y6d{bottom:778.999968pt;}
.y7{bottom:795.999967pt;}
.y8f{bottom:796.999967pt;}
.y3a{bottom:799.999967pt;}
.y6c{bottom:820.999966pt;}
.y39{bottom:822.999966pt;}
.y6{bottom:831.999965pt;}
.y6b{bottom:844.999965pt;}
.y38{bottom:845.999965pt;}
.h5{height:42.246092pt;}
.h4{height:55.507810pt;}
.h7{height:56.328123pt;}
.h9{height:63.369138pt;}
.h8{height:65.312497pt;}
.ha{height:78.626813pt;}
.h3{height:79.788786pt;}
.h2{height:103.249449pt;}
.h6{height:112.656245pt;}
.h1{height:863.999964pt;}
.h0{height:1056.000000pt;}
.w1{width:623.999974pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.890625pt;}
.xa{left:8.953125pt;}
.x8{left:12.703124pt;}
.x1a{left:52.453123pt;}
.x1f{left:63.906247pt;}
.x1c{left:79.749997pt;}
.x16{left:94.312496pt;}
.x1{left:95.999996pt;}
.x1b{left:104.249996pt;}
.x18{left:110.343745pt;}
.x1e{left:112.031245pt;}
.x2{left:141.015619pt;}
.x9{left:147.671869pt;}
.x13{left:160.874993pt;}
.x6{left:162.984368pt;}
.x1d{left:172.578123pt;}
.x17{left:174.796873pt;}
.x3{left:178.531243pt;}
.xe{left:186.937492pt;}
.x4{left:190.437492pt;}
.xf{left:193.703122pt;}
.x11{left:199.765622pt;}
.x10{left:207.562491pt;}
.x14{left:221.703121pt;}
.xc{left:228.671870pt;}
.xd{left:229.703120pt;}
.x19{left:247.531240pt;}
.x7{left:256.187489pt;}
.x15{left:278.874988pt;}
.x5{left:281.437488pt;}
.x12{left:306.999987pt;}
}




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