
    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_6e5fd54478f3f2d2afe85aba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_93bd1fb2498c5cac571fd030.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_698808ce741e79ee2e99d1d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_732030fe730a116d6c3e4960.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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;}
.m1{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.731553px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-35.459859px;}
.ws2{word-spacing:-15.837802px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.045342px;}
._0{width:1.049127px;}
._2{width:825.591005px;}
.fc2{color:rgb(8,5,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fs1{font-size:64.471174px;}
.fs0{font-size:70.078772px;}
.y0{bottom:0.000000px;}
.y5d{bottom:165.539934px;}
.yb5{bottom:168.419933px;}
.y85{bottom:171.119932px;}
.y25{bottom:176.519929px;}
.y49{bottom:176.879929px;}
.y5c{bottom:188.579925px;}
.y84{bottom:192.539923px;}
.y24{bottom:199.739920px;}
.y48{bottom:200.099920px;}
.yb4{bottom:200.279920px;}
.y5b{bottom:211.619915px;}
.y83{bottom:213.779914px;}
.yb3{bottom:220.259912px;}
.y23{bottom:222.779911px;}
.y47{bottom:223.139911px;}
.y5a{bottom:234.659906px;}
.y82{bottom:235.199906px;}
.y22{bottom:245.999902px;}
.y46{bottom:246.179902px;}
.y81{bottom:256.619897px;}
.y59{bottom:257.879897px;}
.yb2{bottom:258.959896px;}
.y21{bottom:268.859892px;}
.y45{bottom:269.219892px;}
.y80{bottom:278.039889px;}
.yb1{bottom:280.199888px;}
.y58{bottom:280.919888px;}
.y20{bottom:292.079883px;}
.y44{bottom:292.439883px;}
.y7f{bottom:299.279880px;}
.yb0{bottom:301.619879px;}
.y57{bottom:303.959878px;}
.y1f{bottom:315.119874px;}
.y43{bottom:315.299874px;}
.y7e{bottom:320.699872px;}
.y56{bottom:326.999869px;}
.y1e{bottom:338.339865px;}
.y42{bottom:338.519865px;}
.yaf{bottom:340.499864px;}
.y7d{bottom:342.119863px;}
.y55{bottom:350.219860px;}
.y41{bottom:361.559855px;}
.y7c{bottom:363.539855px;}
.y1d{bottom:372.899851px;}
.y54{bottom:373.259851px;}
.yae{bottom:379.559848px;}
.y7b{bottom:384.779846px;}
.y1c{bottom:396.119842px;}
.y40{bottom:396.299841px;}
.y7a{bottom:406.199838px;}
.y53{bottom:407.999837px;}
.yad{bottom:418.439833px;}
.y1b{bottom:418.979832px;}
.y3f{bottom:419.339832px;}
.y79{bottom:427.619829px;}
.y52{bottom:431.039828px;}
.yac{bottom:439.859824px;}
.y1a{bottom:442.199823px;}
.y78{bottom:449.219820px;}
.y3e{bottom:454.079818px;}
.y77{bottom:470.459812px;}
.y19{bottom:476.939809px;}
.y3d{bottom:477.119809px;}
.yab{bottom:478.739809px;}
.y76{bottom:491.879803px;}
.y18{bottom:499.979800px;}
.y3c{bottom:500.339800px;}
.y51{bottom:512.039795px;}
.y75{bottom:513.299795px;}
.yaa{bottom:517.619793px;}
.y17{bottom:523.019791px;}
.y3b{bottom:523.379791px;}
.y74{bottom:534.719786px;}
.y50{bottom:535.079786px;}
.ya9{bottom:539.039784px;}
.y16{bottom:546.239782px;}
.y3a{bottom:546.419781px;}
.y73{bottom:555.959778px;}
.y4f{bottom:558.119777px;}
.y39{bottom:569.459772px;}
.y72{bottom:577.379769px;}
.ya8{bottom:577.919769px;}
.y15{bottom:580.979768px;}
.y4e{bottom:581.339767px;}
.y38{bottom:592.679763px;}
.y71{bottom:598.799760px;}
.y14{bottom:604.019758px;}
.y4d{bottom:604.379758px;}
.ya7{bottom:616.799753px;}
.y70{bottom:620.219752px;}
.y13{bottom:627.239749px;}
.y37{bottom:627.419749px;}
.y6f{bottom:641.459743px;}
.y12{bottom:650.099740px;}
.y36{bottom:650.459740px;}
.ya6{bottom:655.679738px;}
.y9a{bottom:661.439735px;}
.y6e{bottom:662.879735px;}
.y11{bottom:673.319731px;}
.y35{bottom:673.679731px;}
.y99{bottom:683.039727px;}
.y6d{bottom:684.299726px;}
.ya5{bottom:694.559722px;}
.y10{bottom:696.359721px;}
.y4c{bottom:696.719721px;}
.y98{bottom:704.459718px;}
.y6c{bottom:705.719718px;}
.y34{bottom:708.239717px;}
.yf{bottom:719.579712px;}
.y4b{bottom:719.759712px;}
.y97{bottom:725.879710px;}
.y6b{bottom:726.959709px;}
.y33{bottom:731.459707px;}
.ya4{bottom:733.439707px;}
.y4a{bottom:742.799703px;}
.y96{bottom:747.119701px;}
.y6a{bottom:748.559701px;}
.ye{bottom:754.139698px;}
.y32{bottom:754.499698px;}
.y95{bottom:768.719693px;}
.y69{bottom:769.979692px;}
.ya3{bottom:772.319691px;}
.yd{bottom:777.359689px;}
.y31{bottom:777.539689px;}
.y94{bottom:790.139684px;}
.y68{bottom:791.399683px;}
.yc{bottom:800.399680px;}
.y30{bottom:800.579680px;}
.ya2{bottom:811.379675px;}
.y93{bottom:811.559675px;}
.y67{bottom:812.639675px;}
.yb{bottom:823.439671px;}
.y2f{bottom:823.799670px;}
.ya1{bottom:832.619667px;}
.y92{bottom:832.799667px;}
.y66{bottom:834.059666px;}
.ya{bottom:846.479661px;}
.y2e{bottom:846.839661px;}
.y91{bottom:854.219658px;}
.y65{bottom:855.479658px;}
.y2d{bottom:869.879652px;}
.ya0{bottom:871.499651px;}
.y90{bottom:875.639650px;}
.y64{bottom:876.899649px;}
.y9{bottom:881.219648px;}
.y2c{bottom:892.919643px;}
.y9f{bottom:893.099643px;}
.y8f{bottom:897.059641px;}
.y63{bottom:898.139641px;}
.y8{bottom:904.259638px;}
.y2b{bottom:916.139634px;}
.y8e{bottom:918.299633px;}
.y62{bottom:919.559632px;}
.y7{bottom:927.479629px;}
.y9e{bottom:931.979627px;}
.y2a{bottom:939.179624px;}
.y8d{bottom:939.719624px;}
.y61{bottom:940.979624px;}
.y6{bottom:950.519620px;}
.y8c{bottom:961.139616px;}
.y29{bottom:962.219615px;}
.y60{bottom:962.399615px;}
.y9d{bottom:970.859612px;}
.y5{bottom:973.559611px;}
.y8b{bottom:982.559607px;}
.y28{bottom:985.259606px;}
.y5f{bottom:996.959601px;}
.y8a{bottom:1003.799598px;}
.y4{bottom:1008.479597px;}
.y9c{bottom:1009.739596px;}
.y5e{bottom:1019.999592px;}
.y89{bottom:1025.219590px;}
.y3{bottom:1031.339587px;}
.y27{bottom:1043.039583px;}
.y88{bottom:1046.639581px;}
.y9b{bottom:1048.619581px;}
.y2{bottom:1054.559578px;}
.y26{bottom:1066.259573px;}
.y87{bottom:1068.059573px;}
.y1{bottom:1089.299564px;}
.y86{bottom:1089.479564px;}
.h3{height:0.000000px;}
.h1{height:47.905411px;}
.h4{height:53.169831px;}
.h2{height:57.794456px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:124.199950px;}
.x1{left:372.770851px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.650269pt;}
.ws1{word-spacing:-31.519874pt;}
.ws2{word-spacing:-14.078047pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-0.929192pt;}
._0{width:0.932558pt;}
._2{width:733.858671pt;}
.fs1{font-size:57.307710pt;}
.fs0{font-size:62.292242pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:147.146608pt;}
.yb5{bottom:149.706607pt;}
.y85{bottom:152.106606pt;}
.y25{bottom:156.906604pt;}
.y49{bottom:157.226604pt;}
.y5c{bottom:167.626600pt;}
.y84{bottom:171.146598pt;}
.y24{bottom:177.546596pt;}
.y48{bottom:177.866596pt;}
.yb4{bottom:178.026595pt;}
.y5b{bottom:188.106591pt;}
.y83{bottom:190.026591pt;}
.yb3{bottom:195.786588pt;}
.y23{bottom:198.026587pt;}
.y47{bottom:198.346587pt;}
.y5a{bottom:208.586583pt;}
.y82{bottom:209.066583pt;}
.y22{bottom:218.666579pt;}
.y46{bottom:218.826579pt;}
.y81{bottom:228.106575pt;}
.y59{bottom:229.226575pt;}
.yb2{bottom:230.186575pt;}
.y21{bottom:238.986571pt;}
.y45{bottom:239.306571pt;}
.y80{bottom:247.146568pt;}
.yb1{bottom:249.066567pt;}
.y58{bottom:249.706567pt;}
.y20{bottom:259.626563pt;}
.y44{bottom:259.946563pt;}
.y7f{bottom:266.026560pt;}
.yb0{bottom:268.106559pt;}
.y57{bottom:270.186559pt;}
.y1f{bottom:280.106555pt;}
.y43{bottom:280.266555pt;}
.y7e{bottom:285.066553pt;}
.y56{bottom:290.666550pt;}
.y1e{bottom:300.746546pt;}
.y42{bottom:300.906546pt;}
.yaf{bottom:302.666546pt;}
.y7d{bottom:304.106545pt;}
.y55{bottom:311.306542pt;}
.y41{bottom:321.386538pt;}
.y7c{bottom:323.146537pt;}
.y1d{bottom:331.466534pt;}
.y54{bottom:331.786534pt;}
.yae{bottom:337.386532pt;}
.y7b{bottom:342.026530pt;}
.y1c{bottom:352.106526pt;}
.y40{bottom:352.266526pt;}
.y7a{bottom:361.066522pt;}
.y53{bottom:362.666522pt;}
.yad{bottom:371.946518pt;}
.y1b{bottom:372.426518pt;}
.y3f{bottom:372.746518pt;}
.y79{bottom:380.106515pt;}
.y52{bottom:383.146513pt;}
.yac{bottom:390.986510pt;}
.y1a{bottom:393.066509pt;}
.y78{bottom:399.306507pt;}
.y3e{bottom:403.626505pt;}
.y77{bottom:418.186499pt;}
.y19{bottom:423.946497pt;}
.y3d{bottom:424.106497pt;}
.yab{bottom:425.546496pt;}
.y76{bottom:437.226492pt;}
.y18{bottom:444.426489pt;}
.y3c{bottom:444.746489pt;}
.y51{bottom:455.146485pt;}
.y75{bottom:456.266484pt;}
.yaa{bottom:460.106483pt;}
.y17{bottom:464.906481pt;}
.y3b{bottom:465.226481pt;}
.y74{bottom:475.306477pt;}
.y50{bottom:475.626476pt;}
.ya9{bottom:479.146475pt;}
.y16{bottom:485.546472pt;}
.y3a{bottom:485.706472pt;}
.y73{bottom:494.186469pt;}
.y4f{bottom:496.106468pt;}
.y39{bottom:506.186464pt;}
.y72{bottom:513.226461pt;}
.ya8{bottom:513.706461pt;}
.y15{bottom:516.426460pt;}
.y4e{bottom:516.746460pt;}
.y38{bottom:526.826456pt;}
.y71{bottom:532.266454pt;}
.y14{bottom:536.906452pt;}
.y4d{bottom:537.226452pt;}
.ya7{bottom:548.266447pt;}
.y70{bottom:551.306446pt;}
.y13{bottom:557.546444pt;}
.y37{bottom:557.706444pt;}
.y6f{bottom:570.186439pt;}
.y12{bottom:577.866436pt;}
.y36{bottom:578.186435pt;}
.ya6{bottom:582.826434pt;}
.y9a{bottom:587.946431pt;}
.y6e{bottom:589.226431pt;}
.y11{bottom:598.506427pt;}
.y35{bottom:598.826427pt;}
.y99{bottom:607.146424pt;}
.y6d{bottom:608.266423pt;}
.ya5{bottom:617.386420pt;}
.y10{bottom:618.986419pt;}
.y4c{bottom:619.306419pt;}
.y98{bottom:626.186416pt;}
.y6c{bottom:627.306416pt;}
.y34{bottom:629.546415pt;}
.yf{bottom:639.626411pt;}
.y4b{bottom:639.786411pt;}
.y97{bottom:645.226409pt;}
.y6b{bottom:646.186408pt;}
.y33{bottom:650.186407pt;}
.ya4{bottom:651.946406pt;}
.y4a{bottom:660.266403pt;}
.y96{bottom:664.106401pt;}
.y6a{bottom:665.386401pt;}
.ye{bottom:670.346399pt;}
.y32{bottom:670.666398pt;}
.y95{bottom:683.306393pt;}
.y69{bottom:684.426393pt;}
.ya3{bottom:686.506392pt;}
.yd{bottom:690.986390pt;}
.y31{bottom:691.146390pt;}
.y94{bottom:702.346386pt;}
.y68{bottom:703.466385pt;}
.yc{bottom:711.466382pt;}
.y30{bottom:711.626382pt;}
.ya2{bottom:721.226378pt;}
.y93{bottom:721.386378pt;}
.y67{bottom:722.346378pt;}
.yb{bottom:731.946374pt;}
.y2f{bottom:732.266374pt;}
.ya1{bottom:740.106371pt;}
.y92{bottom:740.266371pt;}
.y66{bottom:741.386370pt;}
.ya{bottom:752.426366pt;}
.y2e{bottom:752.746366pt;}
.y91{bottom:759.306363pt;}
.y65{bottom:760.426362pt;}
.y2d{bottom:773.226357pt;}
.ya0{bottom:774.666357pt;}
.y90{bottom:778.346355pt;}
.y64{bottom:779.466355pt;}
.y9{bottom:783.306353pt;}
.y2c{bottom:793.706349pt;}
.y9f{bottom:793.866349pt;}
.y8f{bottom:797.386348pt;}
.y63{bottom:798.346347pt;}
.y8{bottom:803.786345pt;}
.y2b{bottom:814.346341pt;}
.y8e{bottom:816.266340pt;}
.y62{bottom:817.386340pt;}
.y7{bottom:824.426337pt;}
.y9e{bottom:828.426335pt;}
.y2a{bottom:834.826333pt;}
.y8d{bottom:835.306333pt;}
.y61{bottom:836.426332pt;}
.y6{bottom:844.906329pt;}
.y8c{bottom:854.346325pt;}
.y29{bottom:855.306325pt;}
.y60{bottom:855.466324pt;}
.y9d{bottom:862.986321pt;}
.y5{bottom:865.386321pt;}
.y8b{bottom:873.386317pt;}
.y28{bottom:875.786316pt;}
.y5f{bottom:886.186312pt;}
.y8a{bottom:892.266310pt;}
.y4{bottom:896.426308pt;}
.y9c{bottom:897.546308pt;}
.y5e{bottom:906.666304pt;}
.y89{bottom:911.306302pt;}
.y3{bottom:916.746300pt;}
.y27{bottom:927.146296pt;}
.y88{bottom:930.346295pt;}
.y9b{bottom:932.106294pt;}
.y2{bottom:937.386292pt;}
.y26{bottom:947.786288pt;}
.y87{bottom:949.386287pt;}
.y1{bottom:968.266279pt;}
.y86{bottom:968.426279pt;}
.h3{height:0.000000pt;}
.h1{height:42.582587pt;}
.h4{height:47.262072pt;}
.h2{height:51.372850pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:110.399956pt;}
.x1{left:331.351867pt;}
}




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