
    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_4b2ea044cc1f69f47c1e8e3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_240c7cd1d0bb171b9dc315a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.674316;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_3f70f97d52efd6707adb987b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925293;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_06075d02d5c65e409917c33a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922363;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a1106d20ca731a920f37265c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:4.331878px;}
.ls8{letter-spacing:8.654457px;}
.ls6{letter-spacing:18.019973px;}
.ls4{letter-spacing:20.327795px;}
.ls2{letter-spacing:21.048219px;}
.ls1{letter-spacing:25.370768px;}
.ls3{letter-spacing:28.972892px;}
.ls5{letter-spacing:199.354120px;}
.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:-47.375981px;}
.ws1{word-spacing:-15.839994px;}
.ws3{word-spacing:-10.612796px;}
.ws4{word-spacing:-8.553597px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-7.540629px;}
._4{margin-left:-1.140790px;}
._0{width:1.110993px;}
._3{width:2.250362px;}
._2{width:3.356238px;}
._6{width:4.567789px;}
._d{width:6.308113px;}
._12{width:7.353083px;}
._b{width:8.650736px;}
._7{width:9.834407px;}
._8{width:10.894130px;}
._c{width:12.551239px;}
._9{width:13.607523px;}
._a{width:14.701824px;}
._1f{width:15.753270px;}
._11{width:17.245992px;}
._21{width:18.378374px;}
._17{width:19.507938px;}
._5{width:20.970391px;}
._1c{width:22.580303px;}
._1a{width:24.148807px;}
._16{width:25.853006px;}
._19{width:27.481517px;}
._18{width:28.867139px;}
._26{width:29.902930px;}
._25{width:30.924634px;}
._28{width:32.155577px;}
._2a{width:33.182930px;}
._2c{width:34.893534px;}
._23{width:35.958783px;}
._1b{width:37.496133px;}
._22{width:38.531757px;}
._24{width:39.739631px;}
._10{width:41.013951px;}
._f{width:42.025426px;}
._1e{width:44.071442px;}
._1d{width:45.349950px;}
._29{width:47.338190px;}
._14{width:49.537000px;}
._13{width:51.017762px;}
._2b{width:52.095663px;}
._2f{width:59.942342px;}
._2e{width:60.976649px;}
._e{width:62.730886px;}
._27{width:69.350939px;}
._30{width:110.073786px;}
._2d{width:181.540727px;}
._1{width:196.670081px;}
._20{width:199.370635px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y67{bottom:109.739956px;}
.y34{bottom:109.740256px;}
.y37{bottom:126.659949px;}
.y66{bottom:127.379949px;}
.y33{bottom:127.380249px;}
.y72{bottom:131.160248px;}
.y65{bottom:144.839942px;}
.y32{bottom:144.840242px;}
.y71{bottom:145.559942px;}
.y36{bottom:147.719941px;}
.y31{bottom:148.620241px;}
.y64{bottom:162.479935px;}
.y30{bottom:163.019935px;}
.y6f{bottom:166.259933px;}
.y35{bottom:168.779932px;}
.y76{bottom:173.279931px;}
.y63{bottom:180.119928px;}
.y7c{bottom:183.899926px;}
.y2e{bottom:190.019924px;}
.y2f{bottom:194.519922px;}
.y62{bottom:197.579921px;}
.y7b{bottom:201.359919px;}
.y2d{bottom:211.079916px;}
.y61{bottom:215.219914px;}
.y7a{bottom:215.939914px;}
.y75{bottom:218.999912px;}
.y2c{bottom:232.139907px;}
.y60{bottom:232.859907px;}
.y74{bottom:233.399907px;}
.y80{bottom:236.639905px;}
.y5f{bottom:250.319900px;}
.y7f{bottom:251.039900px;}
.y2b{bottom:253.199899px;}
.y6e{bottom:254.099898px;}
.y5e{bottom:267.959893px;}
.y6d{bottom:268.679893px;}
.y2a{bottom:274.259890px;}
.y82{bottom:274.619890px;}
.y73{bottom:278.759888px;}
.y5d{bottom:285.599886px;}
.y29{bottom:295.499882px;}
.y5c{bottom:303.239879px;}
.y28{bottom:316.559873px;}
.y5b{bottom:320.699872px;}
.y7e{bottom:321.059872px;}
.y27{bottom:337.619865px;}
.y5a{bottom:338.339865px;}
.y59{bottom:355.979858px;}
.y26{bottom:358.679857px;}
.y79{bottom:363.179855px;}
.y58{bottom:373.439851px;}
.y25{bottom:379.919848px;}
.y57{bottom:391.079844px;}
.y24{bottom:400.979840px;}
.y56{bottom:408.719837px;}
.y23{bottom:422.039831px;}
.y55{bottom:426.179830px;}
.y22{bottom:443.099823px;}
.y54{bottom:443.819822px;}
.y70{bottom:447.599821px;}
.y53{bottom:461.459815px;}
.y21{bottom:464.339814px;}
.y6a{bottom:465.239814px;}
.y6c{bottom:468.839812px;}
.y52{bottom:478.919808px;}
.y69{bottom:479.639808px;}
.y20{bottom:485.399806px;}
.y51{bottom:496.559801px;}
.y1f{bottom:506.459797px;}
.y50{bottom:514.199794px;}
.y1e{bottom:527.519789px;}
.y4f{bottom:531.839787px;}
.y1d{bottom:548.759780px;}
.y4e{bottom:549.299780px;}
.y4d{bottom:566.939773px;}
.y1c{bottom:569.819772px;}
.y4c{bottom:584.579766px;}
.y1b{bottom:590.879764px;}
.y7d{bottom:595.379762px;}
.y4b{bottom:602.039759px;}
.y1a{bottom:611.939755px;}
.y4a{bottom:619.679752px;}
.y19{bottom:632.999747px;}
.y49{bottom:637.319745px;}
.y18{bottom:654.239738px;}
.y48{bottom:654.779738px;}
.y47{bottom:672.419731px;}
.y17{bottom:675.299730px;}
.y46{bottom:690.059724px;}
.y16{bottom:696.359721px;}
.y45{bottom:707.699717px;}
.y15{bottom:717.419713px;}
.y44{bottom:725.159710px;}
.y14{bottom:738.659705px;}
.y43{bottom:742.799703px;}
.y13{bottom:759.719696px;}
.y42{bottom:760.439696px;}
.y41{bottom:777.899689px;}
.y12{bottom:780.779688px;}
.y40{bottom:795.539682px;}
.y11{bottom:801.839679px;}
.y3f{bottom:813.179675px;}
.y10{bottom:823.079671px;}
.y3e{bottom:830.639668px;}
.yf{bottom:844.139662px;}
.y3d{bottom:848.279661px;}
.ye{bottom:865.199654px;}
.y3c{bottom:865.919654px;}
.y3b{bottom:883.559647px;}
.yd{bottom:886.259645px;}
.y3a{bottom:887.339645px;}
.y39{bottom:901.739639px;}
.yc{bottom:907.499637px;}
.y78{bottom:911.999635px;}
.yb{bottom:928.559629px;}
.ya{bottom:949.619620px;}
.y38{bottom:954.119618px;}
.y9{bottom:970.679612px;}
.y77{bottom:975.179610px;}
.y8{bottom:991.919603px;}
.y7{bottom:1012.979595px;}
.y6{bottom:1034.039586px;}
.y6b{bottom:1038.539585px;}
.y5{bottom:1055.099578px;}
.y4{bottom:1076.159570px;}
.y3{bottom:1097.399561px;}
.y2{bottom:1118.459553px;}
.y81{bottom:1122.959551px;}
.y1{bottom:1139.519544px;}
.y68{bottom:1144.019542px;}
.h5{height:27.489364px;}
.h4{height:34.107174px;}
.h6{height:42.252171px;}
.h8{height:43.040022px;}
.h3{height:50.695292px;}
.h2{height:50.906230px;}
.h1{height:51.855448px;}
.h9{height:70.664034px;}
.h7{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619542px;}
.x9{left:133.019947px;}
.x21{left:138.419945px;}
.xa{left:154.619899px;}
.x14{left:180.179949px;}
.xb{left:181.619927px;}
.x22{left:186.479925px;}
.x23{left:199.799920px;}
.x6{left:243.720106px;}
.x1d{left:253.619899px;}
.x1e{left:266.939893px;}
.x17{left:269.819892px;}
.x18{left:276.479889px;}
.x2{left:279.180008px;}
.x1f{left:288.719885px;}
.x1{left:289.799884px;}
.x20{left:302.039879px;}
.x4{left:332.280139px;}
.x5{left:360.000113px;}
.xc{left:470.339812px;}
.xd{left:476.999809px;}
.x10{left:557.639777px;}
.x11{left:564.299774px;}
.x24{left:567.359773px;}
.x26{left:573.659771px;}
.x25{left:580.679768px;}
.x27{left:587.699765px;}
.x1b{left:591.659763px;}
.xe{left:593.099763px;}
.x1c{left:598.319761px;}
.xf{left:599.759760px;}
.x15{left:617.759753px;}
.x16{left:624.419750px;}
.x19{left:656.099738px;}
.x1a{left:662.759735px;}
.x12{left:716.579713px;}
.x7{left:721.439711px;}
.x13{left:723.239711px;}
.x8{left:728.099709px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:3.850558pt;}
.ls8{letter-spacing:7.692850pt;}
.ls6{letter-spacing:16.017754pt;}
.ls4{letter-spacing:18.069151pt;}
.ls2{letter-spacing:18.709528pt;}
.ls1{letter-spacing:22.551794pt;}
.ls3{letter-spacing:25.753682pt;}
.ls5{letter-spacing:177.203662pt;}
.ws0{word-spacing:-42.111983pt;}
.ws1{word-spacing:-14.079994pt;}
.ws3{word-spacing:-9.433596pt;}
.ws4{word-spacing:-7.603197pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-6.702781pt;}
._4{margin-left:-1.014035pt;}
._0{width:0.987549pt;}
._3{width:2.000322pt;}
._2{width:2.983322pt;}
._6{width:4.060257pt;}
._d{width:5.607211pt;}
._12{width:6.536073pt;}
._b{width:7.689543pt;}
._7{width:8.741695pt;}
._8{width:9.683671pt;}
._c{width:11.156657pt;}
._9{width:12.095576pt;}
._a{width:13.068288pt;}
._1f{width:14.002907pt;}
._11{width:15.329771pt;}
._21{width:16.336332pt;}
._17{width:17.340389pt;}
._5{width:18.640348pt;}
._1c{width:20.071380pt;}
._1a{width:21.465607pt;}
._16{width:22.980449pt;}
._19{width:24.428015pt;}
._18{width:25.659679pt;}
._26{width:26.580383pt;}
._25{width:27.488563pt;}
._28{width:28.582735pt;}
._2a{width:29.495938pt;}
._2c{width:31.016475pt;}
._23{width:31.963363pt;}
._1b{width:33.329896pt;}
._22{width:34.250451pt;}
._24{width:35.324117pt;}
._10{width:36.456845pt;}
._f{width:37.355934pt;}
._1e{width:39.174615pt;}
._1d{width:40.311066pt;}
._29{width:42.078391pt;}
._14{width:44.032889pt;}
._13{width:45.349122pt;}
._2b{width:46.307256pt;}
._2f{width:53.282082pt;}
._2e{width:54.201465pt;}
._e{width:55.760787pt;}
._27{width:61.645279pt;}
._30{width:97.843365pt;}
._2d{width:161.369535pt;}
._1{width:174.817850pt;}
._20{width:177.218342pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:97.546628pt;}
.y34{bottom:97.546894pt;}
.y37{bottom:112.586622pt;}
.y66{bottom:113.226621pt;}
.y33{bottom:113.226888pt;}
.y72{bottom:116.586887pt;}
.y65{bottom:128.746615pt;}
.y32{bottom:128.746882pt;}
.y71{bottom:129.386615pt;}
.y36{bottom:131.306614pt;}
.y31{bottom:132.106880pt;}
.y64{bottom:144.426609pt;}
.y30{bottom:144.906609pt;}
.y6f{bottom:147.786608pt;}
.y35{bottom:150.026607pt;}
.y76{bottom:154.026605pt;}
.y63{bottom:160.106603pt;}
.y7c{bottom:163.466601pt;}
.y2e{bottom:168.906599pt;}
.y2f{bottom:172.906598pt;}
.y62{bottom:175.626596pt;}
.y7b{bottom:178.986595pt;}
.y2d{bottom:187.626592pt;}
.y61{bottom:191.306590pt;}
.y7a{bottom:191.946590pt;}
.y75{bottom:194.666589pt;}
.y2c{bottom:206.346584pt;}
.y60{bottom:206.986584pt;}
.y74{bottom:207.466584pt;}
.y80{bottom:210.346583pt;}
.y5f{bottom:222.506578pt;}
.y7f{bottom:223.146577pt;}
.y2b{bottom:225.066577pt;}
.y6e{bottom:225.866576pt;}
.y5e{bottom:238.186571pt;}
.y6d{bottom:238.826571pt;}
.y2a{bottom:243.786569pt;}
.y82{bottom:244.106569pt;}
.y73{bottom:247.786568pt;}
.y5d{bottom:253.866565pt;}
.y29{bottom:262.666562pt;}
.y5c{bottom:269.546559pt;}
.y28{bottom:281.386554pt;}
.y5b{bottom:285.066553pt;}
.y7e{bottom:285.386553pt;}
.y27{bottom:300.106547pt;}
.y5a{bottom:300.746546pt;}
.y59{bottom:316.426540pt;}
.y26{bottom:318.826539pt;}
.y79{bottom:322.826538pt;}
.y58{bottom:331.946534pt;}
.y25{bottom:337.706532pt;}
.y57{bottom:347.626528pt;}
.y24{bottom:356.426524pt;}
.y56{bottom:363.306521pt;}
.y23{bottom:375.146517pt;}
.y55{bottom:378.826515pt;}
.y22{bottom:393.866509pt;}
.y54{bottom:394.506509pt;}
.y70{bottom:397.866508pt;}
.y53{bottom:410.186503pt;}
.y21{bottom:412.746502pt;}
.y6a{bottom:413.546501pt;}
.y6c{bottom:416.746500pt;}
.y52{bottom:425.706496pt;}
.y69{bottom:426.346496pt;}
.y20{bottom:431.466494pt;}
.y51{bottom:441.386490pt;}
.y1f{bottom:450.186487pt;}
.y50{bottom:457.066484pt;}
.y1e{bottom:468.906479pt;}
.y4f{bottom:472.746478pt;}
.y1d{bottom:487.786472pt;}
.y4e{bottom:488.266471pt;}
.y4d{bottom:503.946465pt;}
.y1c{bottom:506.506464pt;}
.y4c{bottom:519.626459pt;}
.y1b{bottom:525.226457pt;}
.y7d{bottom:529.226455pt;}
.y4b{bottom:535.146453pt;}
.y1a{bottom:543.946449pt;}
.y4a{bottom:550.826446pt;}
.y19{bottom:562.666442pt;}
.y49{bottom:566.506440pt;}
.y18{bottom:581.546434pt;}
.y48{bottom:582.026434pt;}
.y47{bottom:597.706428pt;}
.y17{bottom:600.266427pt;}
.y46{bottom:613.386421pt;}
.y16{bottom:618.986419pt;}
.y45{bottom:629.066415pt;}
.y15{bottom:637.706412pt;}
.y44{bottom:644.586409pt;}
.y14{bottom:656.586404pt;}
.y43{bottom:660.266403pt;}
.y13{bottom:675.306397pt;}
.y42{bottom:675.946396pt;}
.y41{bottom:691.466390pt;}
.y12{bottom:694.026389pt;}
.y40{bottom:707.146384pt;}
.y11{bottom:712.746382pt;}
.y3f{bottom:722.826378pt;}
.y10{bottom:731.626374pt;}
.y3e{bottom:738.346371pt;}
.yf{bottom:750.346367pt;}
.y3d{bottom:754.026365pt;}
.ye{bottom:769.066359pt;}
.y3c{bottom:769.706359pt;}
.y3b{bottom:785.386353pt;}
.yd{bottom:787.786352pt;}
.y3a{bottom:788.746351pt;}
.y39{bottom:801.546346pt;}
.yc{bottom:806.666344pt;}
.y78{bottom:810.666342pt;}
.yb{bottom:825.386337pt;}
.ya{bottom:844.106329pt;}
.y38{bottom:848.106327pt;}
.y9{bottom:862.826322pt;}
.y77{bottom:866.826320pt;}
.y8{bottom:881.706314pt;}
.y7{bottom:900.426306pt;}
.y6{bottom:919.146299pt;}
.y6b{bottom:923.146297pt;}
.y5{bottom:937.866292pt;}
.y4{bottom:956.586284pt;}
.y3{bottom:975.466276pt;}
.y2{bottom:994.186269pt;}
.y81{bottom:998.186267pt;}
.y1{bottom:1012.906262pt;}
.y68{bottom:1016.906260pt;}
.h5{height:24.434990pt;}
.h4{height:30.317488pt;}
.h6{height:37.557485pt;}
.h8{height:38.257797pt;}
.h3{height:45.062482pt;}
.h2{height:45.249982pt;}
.h1{height:46.093732pt;}
.h9{height:62.812475pt;}
.h7{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439593pt;}
.x9{left:118.239953pt;}
.x21{left:123.039951pt;}
.xa{left:137.439910pt;}
.x14{left:160.159955pt;}
.xb{left:161.439935pt;}
.x22{left:165.759934pt;}
.x23{left:177.599929pt;}
.x6{left:216.640094pt;}
.x1d{left:225.439910pt;}
.x1e{left:237.279905pt;}
.x17{left:239.839904pt;}
.x18{left:245.759902pt;}
.x2{left:248.160007pt;}
.x1f{left:256.639897pt;}
.x1{left:257.599897pt;}
.x20{left:268.479893pt;}
.x4{left:295.360123pt;}
.x5{left:320.000101pt;}
.xc{left:418.079833pt;}
.xd{left:423.999830pt;}
.x10{left:495.679802pt;}
.x11{left:501.599799pt;}
.x24{left:504.319798pt;}
.x26{left:509.919796pt;}
.x25{left:516.159794pt;}
.x27{left:522.399791pt;}
.x1b{left:525.919790pt;}
.xe{left:527.199789pt;}
.x1c{left:531.839787pt;}
.xf{left:533.119787pt;}
.x15{left:549.119780pt;}
.x16{left:555.039778pt;}
.x19{left:583.199767pt;}
.x1a{left:589.119764pt;}
.x12{left:636.959745pt;}
.x7{left:641.279743pt;}
.x13{left:642.879743pt;}
.x8{left:647.199741pt;}
}




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