
    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_1bc5900505eedf1a6eeedfa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_6e0547a817248bc3a5a760ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b90148ae35230126da2f4c41.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_86a9b0621dbb8c15306bb3a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_42293e8804759cde1f99da85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.m4{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);}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{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);}
.v4{vertical-align:-82.799967px;}
.v3{vertical-align:-81.359967px;}
.v1{vertical-align:-77.039969px;}
.v2{vertical-align:-75.599970px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:5.774038px;}
.ls4{letter-spacing:18.021233px;}
.ls3{letter-spacing:194.525322px;}
.ls0{letter-spacing:553.300555px;}
.ls1{letter-spacing:1259.322474px;}
.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:0.000000px;}
._7{margin-left:-10.035802px;}
._6{margin-left:-2.209759px;}
._0{margin-left:-1.107381px;}
._1{width:1.120917px;}
._4{width:2.793825px;}
._3{width:3.812216px;}
._11{width:4.972489px;}
._2{width:5.993673px;}
._b{width:7.910533px;}
._10{width:9.070929px;}
._f{width:10.095446px;}
._9{width:11.672063px;}
._c{width:12.719086px;}
._a{width:13.859119px;}
._8{width:15.960954px;}
._15{width:19.501010px;}
._16{width:20.669165px;}
._13{width:22.095781px;}
._14{width:23.174263px;}
._d{width:26.397061px;}
._e{width:27.785942px;}
._12{width:30.020458px;}
._5{width:33.973346px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs1{font-size:41.759983px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.900277px;}
.y1{bottom:78.060269px;}
.y34{bottom:110.099956px;}
.y33{bottom:127.379949px;}
.y32{bottom:144.659942px;}
.y63{bottom:147.539941px;}
.y31{bottom:161.939935px;}
.y62{bottom:168.239933px;}
.y30{bottom:179.219928px;}
.y2f{bottom:186.059926px;}
.y61{bottom:188.939924px;}
.y2e{bottom:197.399921px;}
.y60{bottom:209.639916px;}
.y2d{bottom:228.719909px;}
.y5f{bottom:230.339908px;}
.y2c{bottom:249.419900px;}
.y5e{bottom:251.039900px;}
.y2b{bottom:270.119892px;}
.y2a{bottom:290.819884px;}
.y5d{bottom:292.079883px;}
.y29{bottom:311.519875px;}
.y5c{bottom:312.779875px;}
.y28{bottom:332.219867px;}
.y5b{bottom:333.839866px;}
.y27{bottom:352.919859px;}
.y5a{bottom:354.539858px;}
.y26{bottom:373.619851px;}
.y59{bottom:375.239850px;}
.y25{bottom:394.319842px;}
.y58{bottom:395.939842px;}
.y24{bottom:415.019834px;}
.y57{bottom:416.639833px;}
.y23{bottom:435.719826px;}
.y56{bottom:437.339825px;}
.y22{bottom:456.059818px;}
.y21{bottom:477.119809px;}
.y55{bottom:478.379809px;}
.y20{bottom:497.819801px;}
.y54{bottom:499.079800px;}
.y1f{bottom:518.519793px;}
.y53{bottom:520.139792px;}
.y1e{bottom:539.219784px;}
.y52{bottom:540.839784px;}
.y1d{bottom:559.919776px;}
.y51{bottom:561.539775px;}
.y1c{bottom:580.619768px;}
.y50{bottom:582.239767px;}
.y1b{bottom:601.139760px;}
.y4f{bottom:602.939759px;}
.y1a{bottom:622.019751px;}
.y4e{bottom:623.639751px;}
.y19{bottom:641.639743px;}
.y4d{bottom:644.339742px;}
.y18{bottom:662.339735px;}
.y4c{bottom:665.039734px;}
.y17{bottom:683.579727px;}
.y4b{bottom:685.739726px;}
.y16{bottom:703.199719px;}
.y4a{bottom:706.439717px;}
.y15{bottom:723.899710px;}
.y76{bottom:726.419709px;}
.y49{bottom:727.139709px;}
.y14{bottom:744.599702px;}
.y75{bottom:747.299701px;}
.y48{bottom:747.839701px;}
.y13{bottom:765.299694px;}
.y74{bottom:767.999693px;}
.y47{bottom:768.539693px;}
.y73{bottom:788.699685px;}
.y46{bottom:789.239684px;}
.y12{bottom:802.739679px;}
.y72{bottom:809.399676px;}
.y45{bottom:809.939676px;}
.y10{bottom:821.819671px;}
.y11{bottom:829.379668px;}
.y71{bottom:830.099668px;}
.y44{bottom:830.639668px;}
.yf{bottom:841.079664px;}
.y70{bottom:850.799660px;}
.y43{bottom:851.339659px;}
.ye{bottom:860.159656px;}
.y6f{bottom:871.499651px;}
.y42{bottom:872.039651px;}
.yd{bottom:879.059648px;}
.y6e{bottom:892.199643px;}
.y41{bottom:892.739643px;}
.yc{bottom:897.779641px;}
.y6d{bottom:912.899635px;}
.y40{bottom:913.439635px;}
.y6c{bottom:933.599627px;}
.y3f{bottom:934.139626px;}
.yb{bottom:934.679626px;}
.y6b{bottom:954.299618px;}
.y3e{bottom:954.839618px;}
.ya{bottom:971.579611px;}
.y6a{bottom:974.999610px;}
.y3d{bottom:975.539610px;}
.y69{bottom:995.699602px;}
.y3c{bottom:996.239602px;}
.y9{bottom:1008.659597px;}
.y68{bottom:1016.399593px;}
.y3b{bottom:1016.939593px;}
.y8{bottom:1027.919589px;}
.y3a{bottom:1037.639585px;}
.y7{bottom:1046.639581px;}
.y67{bottom:1057.799577px;}
.y39{bottom:1058.339577px;}
.y66{bottom:1078.139569px;}
.y38{bottom:1079.219568px;}
.y6{bottom:1084.799566px;}
.y37{bottom:1098.839560px;}
.y65{bottom:1099.199560px;}
.y5{bottom:1103.519559px;}
.y36{bottom:1119.539552px;}
.y64{bottom:1119.899552px;}
.y4{bottom:1122.419551px;}
.y35{bottom:1140.599544px;}
.y3{bottom:1141.499543px;}
.h8{height:38.158578px;}
.h5{height:42.086233px;}
.h1{height:44.149201px;}
.h9{height:58.651148px;}
.h4{height:64.978568px;}
.h3{height:65.010911px;}
.h2{height:66.757473px;}
.h7{height:70.664034px;}
.h6{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620716px;}
.x12{left:132.479947px;}
.x3{left:144.899942px;}
.xb{left:153.899938px;}
.x13{left:180.719928px;}
.x10{left:230.579908px;}
.xf{left:243.359903px;}
.xe{left:252.719899px;}
.x8{left:258.839896px;}
.x5{left:304.019878px;}
.x9{left:319.859872px;}
.x6{left:343.799862px;}
.x11{left:412.919835px;}
.x7{left:417.959833px;}
.x1{left:442.259823px;}
.x4{left:444.419822px;}
.xa{left:446.399821px;}
.xc{left:733.859706px;}
.xd{left:739.079704px;}
@media print{
.v4{vertical-align:-73.599971pt;}
.v3{vertical-align:-72.319971pt;}
.v1{vertical-align:-68.479973pt;}
.v2{vertical-align:-67.199973pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:5.132478pt;}
.ls4{letter-spacing:16.018874pt;}
.ls3{letter-spacing:172.911398pt;}
.ls0{letter-spacing:491.822716pt;}
.ls1{letter-spacing:1119.397755pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-8.920713pt;}
._6{margin-left:-1.964230pt;}
._0{margin-left:-0.984339pt;}
._1{width:0.996370pt;}
._4{width:2.483400pt;}
._3{width:3.388636pt;}
._11{width:4.419990pt;}
._2{width:5.327710pt;}
._b{width:7.031585pt;}
._10{width:8.063048pt;}
._f{width:8.973730pt;}
._9{width:10.375167pt;}
._c{width:11.305854pt;}
._a{width:12.319216pt;}
._8{width:14.187515pt;}
._15{width:17.334231pt;}
._16{width:18.372591pt;}
._13{width:19.640694pt;}
._14{width:20.599345pt;}
._d{width:23.464055pt;}
._e{width:24.698615pt;}
._12{width:26.684852pt;}
._5{width:30.198530pt;}
.fs3{font-size:34.559986pt;}
.fs1{font-size:37.119985pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.386906pt;}
.y34{bottom:97.866628pt;}
.y33{bottom:113.226621pt;}
.y32{bottom:128.586615pt;}
.y63{bottom:131.146614pt;}
.y31{bottom:143.946609pt;}
.y62{bottom:149.546607pt;}
.y30{bottom:159.306603pt;}
.y2f{bottom:165.386601pt;}
.y61{bottom:167.946599pt;}
.y2e{bottom:175.466596pt;}
.y60{bottom:186.346592pt;}
.y2d{bottom:203.306585pt;}
.y5f{bottom:204.746585pt;}
.y2c{bottom:221.706578pt;}
.y5e{bottom:223.146577pt;}
.y2b{bottom:240.106571pt;}
.y2a{bottom:258.506563pt;}
.y5d{bottom:259.626563pt;}
.y29{bottom:276.906556pt;}
.y5c{bottom:278.026555pt;}
.y28{bottom:295.306549pt;}
.y5b{bottom:296.746548pt;}
.y27{bottom:313.706541pt;}
.y5a{bottom:315.146541pt;}
.y26{bottom:332.106534pt;}
.y59{bottom:333.546533pt;}
.y25{bottom:350.506526pt;}
.y58{bottom:351.946526pt;}
.y24{bottom:368.906519pt;}
.y57{bottom:370.346519pt;}
.y23{bottom:387.306512pt;}
.y56{bottom:388.746511pt;}
.y22{bottom:405.386505pt;}
.y21{bottom:424.106497pt;}
.y55{bottom:425.226497pt;}
.y20{bottom:442.506490pt;}
.y54{bottom:443.626489pt;}
.y1f{bottom:460.906482pt;}
.y53{bottom:462.346482pt;}
.y1e{bottom:479.306475pt;}
.y52{bottom:480.746474pt;}
.y1d{bottom:497.706468pt;}
.y51{bottom:499.146467pt;}
.y1c{bottom:516.106460pt;}
.y50{bottom:517.546460pt;}
.y1b{bottom:534.346453pt;}
.y4f{bottom:535.946452pt;}
.y1a{bottom:552.906446pt;}
.y4e{bottom:554.346445pt;}
.y19{bottom:570.346439pt;}
.y4d{bottom:572.746438pt;}
.y18{bottom:588.746431pt;}
.y4c{bottom:591.146430pt;}
.y17{bottom:607.626424pt;}
.y4b{bottom:609.546423pt;}
.y16{bottom:625.066417pt;}
.y4a{bottom:627.946415pt;}
.y15{bottom:643.466409pt;}
.y76{bottom:645.706408pt;}
.y49{bottom:646.346408pt;}
.y14{bottom:661.866402pt;}
.y75{bottom:664.266401pt;}
.y48{bottom:664.746401pt;}
.y13{bottom:680.266395pt;}
.y74{bottom:682.666394pt;}
.y47{bottom:683.146393pt;}
.y73{bottom:701.066386pt;}
.y46{bottom:701.546386pt;}
.y12{bottom:713.546381pt;}
.y72{bottom:719.466379pt;}
.y45{bottom:719.946379pt;}
.y10{bottom:730.506374pt;}
.y11{bottom:737.226372pt;}
.y71{bottom:737.866372pt;}
.y44{bottom:738.346371pt;}
.yf{bottom:747.626368pt;}
.y70{bottom:756.266364pt;}
.y43{bottom:756.746364pt;}
.ye{bottom:764.586361pt;}
.y6f{bottom:774.666357pt;}
.y42{bottom:775.146357pt;}
.yd{bottom:781.386354pt;}
.y6e{bottom:793.066349pt;}
.y41{bottom:793.546349pt;}
.yc{bottom:798.026347pt;}
.y6d{bottom:811.466342pt;}
.y40{bottom:811.946342pt;}
.y6c{bottom:829.866335pt;}
.y3f{bottom:830.346335pt;}
.yb{bottom:830.826334pt;}
.y6b{bottom:848.266327pt;}
.y3e{bottom:848.746327pt;}
.ya{bottom:863.626321pt;}
.y6a{bottom:866.666320pt;}
.y3d{bottom:867.146320pt;}
.y69{bottom:885.066313pt;}
.y3c{bottom:885.546312pt;}
.y9{bottom:896.586308pt;}
.y68{bottom:903.466305pt;}
.y3b{bottom:903.946305pt;}
.y8{bottom:913.706301pt;}
.y3a{bottom:922.346298pt;}
.y7{bottom:930.346295pt;}
.y67{bottom:940.266291pt;}
.y39{bottom:940.746290pt;}
.y66{bottom:958.346283pt;}
.y38{bottom:959.306283pt;}
.y6{bottom:964.266281pt;}
.y37{bottom:976.746276pt;}
.y65{bottom:977.066276pt;}
.y5{bottom:980.906274pt;}
.y36{bottom:995.146269pt;}
.y64{bottom:995.466268pt;}
.y4{bottom:997.706268pt;}
.y35{bottom:1013.866261pt;}
.y3{bottom:1014.666261pt;}
.h8{height:33.918736pt;}
.h5{height:37.409985pt;}
.h1{height:39.243734pt;}
.h9{height:52.134354pt;}
.h4{height:57.758727pt;}
.h3{height:57.787477pt;}
.h2{height:59.339976pt;}
.h7{height:62.812475pt;}
.h6{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440636pt;}
.x12{left:117.759953pt;}
.x3{left:128.799948pt;}
.xb{left:136.799945pt;}
.x13{left:160.639936pt;}
.x10{left:204.959918pt;}
.xf{left:216.319913pt;}
.xe{left:224.639910pt;}
.x8{left:230.079908pt;}
.x5{left:270.239892pt;}
.x9{left:284.319886pt;}
.x6{left:305.599878pt;}
.x11{left:367.039853pt;}
.x7{left:371.519851pt;}
.x1{left:393.119843pt;}
.x4{left:395.039842pt;}
.xa{left:396.799841pt;}
.xc{left:652.319739pt;}
.xd{left:656.959737pt;}
}




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