
    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_711084928f7272723c6e49a0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_06f272147a63cca2b4f445ac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_313f101042b4de74ecbf53da.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98473c5e667f3f0aed4892f8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7a4756090a56822eabba3950.woff')format("woff");}.ff5{font-family:ff5;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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.756000px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.037440px;}
.lse{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.134720px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls3{letter-spacing:2.050560px;}
.lsd{letter-spacing:41.706720px;}
.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:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2598.738000px;}
._5{margin-left:-1366.159680px;}
._b{margin-left:-1007.870400px;}
._7{margin-left:-931.253760px;}
._a{margin-left:-872.076000px;}
._d{margin-left:-575.213760px;}
._8{margin-left:-535.046400px;}
._c{margin-left:-182.779200px;}
._9{margin-left:-33.120000px;}
._6{margin-left:-8.213760px;}
._12{margin-left:-6.273600px;}
._e{margin-left:-5.079840px;}
._13{margin-left:-3.256560px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._14{width:3.887280px;}
._15{width:4.944720px;}
._17{width:6.394320px;}
._18{width:7.613280px;}
._16{width:9.561600px;}
._11{width:10.912560px;}
._19{width:12.430080px;}
._10{width:18.744480px;}
._f{width:20.555760px;}
._1b{width:23.224320px;}
._1a{width:24.561360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.336000px;}
.y69{bottom:101.556000px;}
.y96{bottom:107.136000px;}
.yb6{bottom:114.336000px;}
.y32{bottom:124.596000px;}
.y95{bottom:126.936000px;}
.y68{bottom:130.356000px;}
.yb5{bottom:143.136000px;}
.y31{bottom:144.396000px;}
.y94{bottom:146.736000px;}
.y67{bottom:150.330000px;}
.yb4{bottom:162.930000px;}
.y30{bottom:164.190000px;}
.y93{bottom:166.530000px;}
.y66{bottom:170.130000px;}
.yb3{bottom:182.730000px;}
.y2f{bottom:183.990000px;}
.y92{bottom:186.510000px;}
.y65{bottom:189.930000px;}
.yb2{bottom:202.530000px;}
.y2e{bottom:203.790000px;}
.y64{bottom:209.730000px;}
.y91{bottom:215.310000px;}
.yb1{bottom:222.510000px;}
.y2d{bottom:223.770000px;}
.y63{bottom:229.530000px;}
.y90{bottom:235.110000px;}
.yb0{bottom:242.310000px;}
.y2c{bottom:243.570000px;}
.y62{bottom:249.510000px;}
.y8f{bottom:254.910000px;}
.yaf{bottom:262.110000px;}
.y2b{bottom:263.370000px;}
.y61{bottom:269.310000px;}
.y8e{bottom:274.710000px;}
.yae{bottom:281.955000px;}
.y2a{bottom:283.215000px;}
.y60{bottom:289.155000px;}
.y8d{bottom:294.735000px;}
.yad{bottom:301.755000px;}
.y29{bottom:303.015000px;}
.y5f{bottom:308.955000px;}
.y8c{bottom:314.535000px;}
.yac{bottom:321.735000px;}
.y28{bottom:322.995000px;}
.y5e{bottom:328.755000px;}
.yab{bottom:341.535000px;}
.y27{bottom:342.795000px;}
.y8b{bottom:343.335000px;}
.y5d{bottom:348.735000px;}
.yaa{bottom:361.335000px;}
.y26{bottom:362.595000px;}
.y8a{bottom:363.135000px;}
.y5c{bottom:368.535000px;}
.ya9{bottom:381.135000px;}
.y25{bottom:382.395000px;}
.y89{bottom:382.935000px;}
.y5b{bottom:388.335000px;}
.ya8{bottom:400.935000px;}
.y24{bottom:402.195000px;}
.y88{bottom:402.915000px;}
.y5a{bottom:408.135000px;}
.ya7{bottom:420.915000px;}
.y23{bottom:422.175000px;}
.y87{bottom:422.715000px;}
.y59{bottom:427.935000px;}
.ya6{bottom:440.715000px;}
.y22{bottom:441.975000px;}
.y86{bottom:442.515000px;}
.y58{bottom:447.915000px;}
.ya5{bottom:460.515000px;}
.y21{bottom:461.775000px;}
.y85{bottom:462.315000px;}
.y57{bottom:467.715000px;}
.ya4{bottom:480.315000px;}
.y20{bottom:481.575000px;}
.y56{bottom:487.515000px;}
.y84{bottom:491.115000px;}
.ya3{bottom:500.115000px;}
.y1f{bottom:503.715000px;}
.y55{bottom:507.315000px;}
.y83{bottom:511.095000px;}
.ya2{bottom:520.095000px;}
.y1e{bottom:523.515000px;}
.y54{bottom:527.115000px;}
.y82{bottom:530.895000px;}
.ya1{bottom:539.895000px;}
.y1d{bottom:540.435000px;}
.y53{bottom:547.095000px;}
.y81{bottom:550.695000px;}
.y1c{bottom:553.215000px;}
.ya0{bottom:559.695000px;}
.y52{bottom:566.925000px;}
.y1b{bottom:573.225000px;}
.y80{bottom:579.525000px;}
.y51{bottom:586.725000px;}
.y1a{bottom:593.025000px;}
.y7f{bottom:599.325000px;}
.y50{bottom:606.525000px;}
.y19{bottom:612.825000px;}
.y7e{bottom:619.305000px;}
.y4f{bottom:626.325000px;}
.y18{bottom:632.625000px;}
.y7d{bottom:639.105000px;}
.y4e{bottom:646.305000px;}
.y17{bottom:652.425000px;}
.y7c{bottom:658.905000px;}
.y4d{bottom:666.105000px;}
.y16{bottom:672.405000px;}
.y7b{bottom:678.705000px;}
.y4c{bottom:685.905000px;}
.y15{bottom:692.205000px;}
.y7a{bottom:698.505000px;}
.y4b{bottom:705.705000px;}
.y9f{bottom:707.505000px;}
.y14{bottom:712.005000px;}
.y79{bottom:718.485000px;}
.y4a{bottom:725.505000px;}
.y9e{bottom:727.485000px;}
.y13{bottom:731.805000px;}
.y78{bottom:738.285000px;}
.y49{bottom:745.485000px;}
.y12{bottom:751.605000px;}
.y9d{bottom:756.285000px;}
.y77{bottom:758.085000px;}
.y48{bottom:765.285000px;}
.y11{bottom:771.585000px;}
.y9c{bottom:776.085000px;}
.y47{bottom:785.085000px;}
.y76{bottom:786.885000px;}
.y10{bottom:791.385000px;}
.y9b{bottom:795.885000px;}
.y46{bottom:804.885000px;}
.y75{bottom:806.685000px;}
.yf{bottom:811.185000px;}
.y9a{bottom:815.685000px;}
.y45{bottom:824.685000px;}
.y74{bottom:826.665000px;}
.ye{bottom:830.985000px;}
.y99{bottom:835.665000px;}
.y44{bottom:844.665000px;}
.y73{bottom:846.465000px;}
.yd{bottom:853.170000px;}
.y98{bottom:855.510000px;}
.y43{bottom:864.510000px;}
.y72{bottom:866.310000px;}
.y97{bottom:875.310000px;}
.yc{bottom:878.190000px;}
.y42{bottom:884.310000px;}
.y71{bottom:895.110000px;}
.yb{bottom:897.990000px;}
.y41{bottom:904.110000px;}
.y70{bottom:914.910000px;}
.ya{bottom:917.970000px;}
.y40{bottom:923.910000px;}
.y9{bottom:933.090000px;}
.y6f{bottom:934.890000px;}
.y3f{bottom:943.890000px;}
.y6e{bottom:954.690000px;}
.y3e{bottom:963.690000px;}
.y6d{bottom:974.490000px;}
.y8{bottom:975.930000px;}
.y3d{bottom:983.490000px;}
.y6c{bottom:994.290000px;}
.y3c{bottom:1003.290000px;}
.y7{bottom:1007.610000px;}
.y6b{bottom:1014.090000px;}
.y3b{bottom:1023.090000px;}
.y6a{bottom:1034.070000px;}
.y3a{bottom:1043.070000px;}
.y5{bottom:1049.010000px;}
.y39{bottom:1062.870000px;}
.y38{bottom:1082.670000px;}
.y4{bottom:1082.850000px;}
.y37{bottom:1102.470000px;}
.y3{bottom:1116.690000px;}
.y36{bottom:1122.270000px;}
.y35{bottom:1142.280000px;}
.y2{bottom:1150.560000px;}
.y34{bottom:1171.620000px;}
.y1{bottom:1184.400000px;}
.y33{bottom:1193.400000px;}
.hb{height:31.480313px;}
.h7{height:37.771172px;}
.ha{height:41.726953px;}
.h9{height:42.164648px;}
.h8{height:58.651172px;}
.hd{height:61.423863px;}
.hc{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:67.232813px;}
.h4{height:67.565039px;}
.h2{height:68.956875px;}
.h5{height:99.687656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
.x2{left:314.354987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.672000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls3{letter-spacing:1.822720pt;}
.lsd{letter-spacing:37.072640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2309.989333pt;}
._5{margin-left:-1214.364160pt;}
._b{margin-left:-895.884800pt;}
._7{margin-left:-827.781120pt;}
._a{margin-left:-775.178667pt;}
._d{margin-left:-511.301120pt;}
._8{margin-left:-475.596800pt;}
._c{margin-left:-162.470400pt;}
._9{margin-left:-29.440000pt;}
._6{margin-left:-7.301120pt;}
._12{margin-left:-5.576533pt;}
._e{margin-left:-4.515413pt;}
._13{margin-left:-2.894720pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._14{width:3.455360pt;}
._15{width:4.395307pt;}
._17{width:5.683840pt;}
._18{width:6.767360pt;}
._16{width:8.499200pt;}
._11{width:9.700053pt;}
._19{width:11.048960pt;}
._10{width:16.661760pt;}
._f{width:18.271787pt;}
._1b{width:20.643840pt;}
._1a{width:21.832320pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.632000pt;}
.y69{bottom:90.272000pt;}
.y96{bottom:95.232000pt;}
.yb6{bottom:101.632000pt;}
.y32{bottom:110.752000pt;}
.y95{bottom:112.832000pt;}
.y68{bottom:115.872000pt;}
.yb5{bottom:127.232000pt;}
.y31{bottom:128.352000pt;}
.y94{bottom:130.432000pt;}
.y67{bottom:133.626667pt;}
.yb4{bottom:144.826667pt;}
.y30{bottom:145.946667pt;}
.y93{bottom:148.026667pt;}
.y66{bottom:151.226667pt;}
.yb3{bottom:162.426667pt;}
.y2f{bottom:163.546667pt;}
.y92{bottom:165.786667pt;}
.y65{bottom:168.826667pt;}
.yb2{bottom:180.026667pt;}
.y2e{bottom:181.146667pt;}
.y64{bottom:186.426667pt;}
.y91{bottom:191.386667pt;}
.yb1{bottom:197.786667pt;}
.y2d{bottom:198.906667pt;}
.y63{bottom:204.026667pt;}
.y90{bottom:208.986667pt;}
.yb0{bottom:215.386667pt;}
.y2c{bottom:216.506667pt;}
.y62{bottom:221.786667pt;}
.y8f{bottom:226.586667pt;}
.yaf{bottom:232.986667pt;}
.y2b{bottom:234.106667pt;}
.y61{bottom:239.386667pt;}
.y8e{bottom:244.186667pt;}
.yae{bottom:250.626667pt;}
.y2a{bottom:251.746667pt;}
.y60{bottom:257.026667pt;}
.y8d{bottom:261.986667pt;}
.yad{bottom:268.226667pt;}
.y29{bottom:269.346667pt;}
.y5f{bottom:274.626667pt;}
.y8c{bottom:279.586667pt;}
.yac{bottom:285.986667pt;}
.y28{bottom:287.106667pt;}
.y5e{bottom:292.226667pt;}
.yab{bottom:303.586667pt;}
.y27{bottom:304.706667pt;}
.y8b{bottom:305.186667pt;}
.y5d{bottom:309.986667pt;}
.yaa{bottom:321.186667pt;}
.y26{bottom:322.306667pt;}
.y8a{bottom:322.786667pt;}
.y5c{bottom:327.586667pt;}
.ya9{bottom:338.786667pt;}
.y25{bottom:339.906667pt;}
.y89{bottom:340.386667pt;}
.y5b{bottom:345.186667pt;}
.ya8{bottom:356.386667pt;}
.y24{bottom:357.506667pt;}
.y88{bottom:358.146667pt;}
.y5a{bottom:362.786667pt;}
.ya7{bottom:374.146667pt;}
.y23{bottom:375.266667pt;}
.y87{bottom:375.746667pt;}
.y59{bottom:380.386667pt;}
.ya6{bottom:391.746667pt;}
.y22{bottom:392.866667pt;}
.y86{bottom:393.346667pt;}
.y58{bottom:398.146667pt;}
.ya5{bottom:409.346667pt;}
.y21{bottom:410.466667pt;}
.y85{bottom:410.946667pt;}
.y57{bottom:415.746667pt;}
.ya4{bottom:426.946667pt;}
.y20{bottom:428.066667pt;}
.y56{bottom:433.346667pt;}
.y84{bottom:436.546667pt;}
.ya3{bottom:444.546667pt;}
.y1f{bottom:447.746667pt;}
.y55{bottom:450.946667pt;}
.y83{bottom:454.306667pt;}
.ya2{bottom:462.306667pt;}
.y1e{bottom:465.346667pt;}
.y54{bottom:468.546667pt;}
.y82{bottom:471.906667pt;}
.ya1{bottom:479.906667pt;}
.y1d{bottom:480.386667pt;}
.y53{bottom:486.306667pt;}
.y81{bottom:489.506667pt;}
.y1c{bottom:491.746667pt;}
.ya0{bottom:497.506667pt;}
.y52{bottom:503.933333pt;}
.y1b{bottom:509.533333pt;}
.y80{bottom:515.133333pt;}
.y51{bottom:521.533333pt;}
.y1a{bottom:527.133333pt;}
.y7f{bottom:532.733333pt;}
.y50{bottom:539.133333pt;}
.y19{bottom:544.733333pt;}
.y7e{bottom:550.493333pt;}
.y4f{bottom:556.733333pt;}
.y18{bottom:562.333333pt;}
.y7d{bottom:568.093333pt;}
.y4e{bottom:574.493333pt;}
.y17{bottom:579.933333pt;}
.y7c{bottom:585.693333pt;}
.y4d{bottom:592.093333pt;}
.y16{bottom:597.693333pt;}
.y7b{bottom:603.293333pt;}
.y4c{bottom:609.693333pt;}
.y15{bottom:615.293333pt;}
.y7a{bottom:620.893333pt;}
.y4b{bottom:627.293333pt;}
.y9f{bottom:628.893333pt;}
.y14{bottom:632.893333pt;}
.y79{bottom:638.653333pt;}
.y4a{bottom:644.893333pt;}
.y9e{bottom:646.653333pt;}
.y13{bottom:650.493333pt;}
.y78{bottom:656.253333pt;}
.y49{bottom:662.653333pt;}
.y12{bottom:668.093333pt;}
.y9d{bottom:672.253333pt;}
.y77{bottom:673.853333pt;}
.y48{bottom:680.253333pt;}
.y11{bottom:685.853333pt;}
.y9c{bottom:689.853333pt;}
.y47{bottom:697.853333pt;}
.y76{bottom:699.453333pt;}
.y10{bottom:703.453333pt;}
.y9b{bottom:707.453333pt;}
.y46{bottom:715.453333pt;}
.y75{bottom:717.053333pt;}
.yf{bottom:721.053333pt;}
.y9a{bottom:725.053333pt;}
.y45{bottom:733.053333pt;}
.y74{bottom:734.813333pt;}
.ye{bottom:738.653333pt;}
.y99{bottom:742.813333pt;}
.y44{bottom:750.813333pt;}
.y73{bottom:752.413333pt;}
.yd{bottom:758.373333pt;}
.y98{bottom:760.453333pt;}
.y43{bottom:768.453333pt;}
.y72{bottom:770.053333pt;}
.y97{bottom:778.053333pt;}
.yc{bottom:780.613333pt;}
.y42{bottom:786.053333pt;}
.y71{bottom:795.653333pt;}
.yb{bottom:798.213333pt;}
.y41{bottom:803.653333pt;}
.y70{bottom:813.253333pt;}
.ya{bottom:815.973333pt;}
.y40{bottom:821.253333pt;}
.y9{bottom:829.413333pt;}
.y6f{bottom:831.013333pt;}
.y3f{bottom:839.013333pt;}
.y6e{bottom:848.613333pt;}
.y3e{bottom:856.613333pt;}
.y6d{bottom:866.213333pt;}
.y8{bottom:867.493333pt;}
.y3d{bottom:874.213333pt;}
.y6c{bottom:883.813333pt;}
.y3c{bottom:891.813333pt;}
.y7{bottom:895.653333pt;}
.y6b{bottom:901.413333pt;}
.y3b{bottom:909.413333pt;}
.y6a{bottom:919.173333pt;}
.y3a{bottom:927.173333pt;}
.y5{bottom:932.453333pt;}
.y39{bottom:944.773333pt;}
.y38{bottom:962.373333pt;}
.y4{bottom:962.533333pt;}
.y37{bottom:979.973333pt;}
.y3{bottom:992.613333pt;}
.y36{bottom:997.573333pt;}
.y35{bottom:1015.360000pt;}
.y2{bottom:1022.720000pt;}
.y34{bottom:1041.440000pt;}
.y1{bottom:1052.800000pt;}
.y33{bottom:1060.800000pt;}
.hb{height:27.982500pt;}
.h7{height:33.574375pt;}
.ha{height:37.090625pt;}
.h9{height:37.479688pt;}
.h8{height:52.134375pt;}
.hd{height:54.598989pt;}
.hc{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.762500pt;}
.h4{height:60.057813pt;}
.h2{height:61.295000pt;}
.h5{height:88.611250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
.x2{left:279.426655pt;}
}




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