
    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_9e0f1bfc07acd9189e1430d9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_092eb11bc843a341b4e600dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_8e821545d9e5879dcc7ba10e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_dee3e6b1cbaaa4a35666e5b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:27.344543px;}
.ls1{letter-spacing:30.946581px;}
.ls3{letter-spacing:34.548620px;}
.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:-41.488441px;}
.ws1{word-spacing:-15.837802px;}
.ws2{word-spacing:-12.511699px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.223794px;}
._1{width:1.155201px;}
._4{width:2.538818px;}
._6{width:4.279514px;}
._2{width:6.169077px;}
._3{width:7.536156px;}
._5{width:9.008983px;}
._b{width:10.123219px;}
._12{width:11.142919px;}
._14{width:13.161477px;}
._9{width:14.166251px;}
._f{width:16.994424px;}
._e{width:18.790642px;}
._d{width:19.936790px;}
._c{width:21.459262px;}
._10{width:23.015190px;}
._11{width:24.406333px;}
._16{width:25.444506px;}
._13{width:26.465873px;}
._17{width:27.629497px;}
._7{width:29.156588px;}
._8{width:30.382661px;}
._19{width:31.947671px;}
._18{width:33.282522px;}
._15{width:35.988278px;}
._a{width:39.288078px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:55.361498px;}
.fs1{font-size:58.165177px;}
.fs2{font-size:70.078772px;}
.fs0{font-size:81.992967px;}
.y0{bottom:0.000000px;}
.y79{bottom:169.499932px;}
.y5f{bottom:170.759932px;}
.y58{bottom:172.019931px;}
.y2c{bottom:174.359930px;}
.y78{bottom:190.919924px;}
.y5e{bottom:192.179923px;}
.y57{bottom:193.439923px;}
.y2b{bottom:195.599922px;}
.y77{bottom:212.339915px;}
.y5d{bottom:213.599915px;}
.y56{bottom:214.499914px;}
.y2a{bottom:217.019913px;}
.y76{bottom:233.579907px;}
.y55{bottom:234.839906px;}
.y29{bottom:238.259905px;}
.y75{bottom:254.999898px;}
.y54{bottom:256.259897px;}
.y28{bottom:258.599897px;}
.y74{bottom:276.419889px;}
.y53{bottom:277.679889px;}
.y27{bottom:279.839888px;}
.y73{bottom:297.839881px;}
.y52{bottom:299.099880px;}
.y26{bottom:301.259879px;}
.y72{bottom:319.079872px;}
.y51{bottom:320.339872px;}
.y25{bottom:322.679871px;}
.y71{bottom:340.499864px;}
.y50{bottom:341.759863px;}
.y24{bottom:344.099862px;}
.y70{bottom:361.919855px;}
.y4f{bottom:363.179855px;}
.y23{bottom:365.519854px;}
.y6f{bottom:383.339847px;}
.y4e{bottom:384.599846px;}
.y22{bottom:386.939845px;}
.y6e{bottom:404.579838px;}
.y4d{bottom:405.839838px;}
.y21{bottom:408.359837px;}
.y6d{bottom:425.999830px;}
.y4c{bottom:427.259829px;}
.y20{bottom:429.779828px;}
.y6c{bottom:447.419821px;}
.y4b{bottom:448.859820px;}
.y1f{bottom:451.019820px;}
.y6b{bottom:469.019812px;}
.y4a{bottom:470.099812px;}
.y1e{bottom:472.439811px;}
.y6a{bottom:490.259804px;}
.y49{bottom:491.519803px;}
.y1d{bottom:493.859802px;}
.y69{bottom:511.679795px;}
.y48{bottom:512.939795px;}
.y1c{bottom:515.279794px;}
.y68{bottom:533.099787px;}
.y47{bottom:534.359786px;}
.y1b{bottom:536.519785px;}
.y67{bottom:554.519778px;}
.y46{bottom:555.599778px;}
.y1a{bottom:557.939777px;}
.y66{bottom:575.759770px;}
.y45{bottom:577.019769px;}
.y19{bottom:579.359768px;}
.y65{bottom:597.179761px;}
.y44{bottom:598.439761px;}
.y18{bottom:600.779760px;}
.y64{bottom:618.599753px;}
.y43{bottom:619.859752px;}
.y17{bottom:622.019751px;}
.y63{bottom:640.019744px;}
.y42{bottom:641.099744px;}
.y16{bottom:643.439743px;}
.y62{bottom:661.259735px;}
.y41{bottom:662.519735px;}
.y15{bottom:665.039734px;}
.y61{bottom:682.679727px;}
.y40{bottom:683.939726px;}
.y14{bottom:686.459725px;}
.y60{bottom:704.099718px;}
.y5c{bottom:705.179718px;}
.y3f{bottom:705.359718px;}
.y13{bottom:707.699717px;}
.y5b{bottom:725.519710px;}
.y3e{bottom:726.599709px;}
.y12{bottom:729.119708px;}
.y5a{bottom:746.759701px;}
.y3d{bottom:748.199701px;}
.y11{bottom:750.539700px;}
.y59{bottom:768.359693px;}
.y3c{bottom:769.439692px;}
.y10{bottom:771.959691px;}
.y3b{bottom:789.779684px;}
.yf{bottom:793.199683px;}
.y3a{bottom:811.199676px;}
.ye{bottom:814.619674px;}
.y39{bottom:832.439667px;}
.yd{bottom:836.039666px;}
.y38{bottom:853.859658px;}
.yc{bottom:857.459657px;}
.y37{bottom:875.279650px;}
.yb{bottom:879.959648px;}
.y36{bottom:896.699641px;}
.ya{bottom:903.359639px;}
.y35{bottom:917.939633px;}
.y9{bottom:921.179632px;}
.y8{bottom:938.999624px;}
.y34{bottom:939.359624px;}
.y7{bottom:956.639617px;}
.y33{bottom:960.779616px;}
.y6{bottom:974.639610px;}
.y32{bottom:982.199607px;}
.y5{bottom:992.459603px;}
.y31{bottom:1003.439599px;}
.y7a{bottom:1004.519598px;}
.y4{bottom:1011.719595px;}
.y30{bottom:1024.859590px;}
.y3{bottom:1036.739585px;}
.y2f{bottom:1046.279581px;}
.y2{bottom:1061.579575px;}
.y2e{bottom:1067.879573px;}
.y1{bottom:1086.779565px;}
.y2d{bottom:1089.119564px;}
.h2{height:40.300970px;}
.h4{height:45.657017px;}
.h5{height:48.555555px;}
.h3{height:57.794456px;}
.h1{height:67.620177px;}
.h6{height:68.778482px;}
.h7{height:73.089969px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:124.199950px;}
.x2{left:149.940165px;}
.x1{left:176.219930px;}
.x3{left:446.760722px;}
.xf{left:458.639950px;}
.x4{left:495.719802px;}
.x13{left:526.139790px;}
.x14{left:530.999788px;}
.xb{left:572.219771px;}
.x7{left:573.299743px;}
.x11{left:580.139915px;}
.x5{left:586.439736px;}
.x6{left:602.999686px;}
.x10{left:620.459905px;}
.xc{left:672.659731px;}
.x9{left:687.059601px;}
.xd{left:703.619719px;}
.x12{left:713.519909px;}
.xe{left:714.779714px;}
.x8{left:769.319514px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:24.306260pt;}
.ls1{letter-spacing:27.508072pt;}
.ls3{letter-spacing:30.709884pt;}
.ws0{word-spacing:-36.878615pt;}
.ws1{word-spacing:-14.078047pt;}
.ws2{word-spacing:-11.121510pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.087817pt;}
._1{width:1.026845pt;}
._4{width:2.256727pt;}
._6{width:3.804012pt;}
._2{width:5.483624pt;}
._3{width:6.698806pt;}
._5{width:8.007985pt;}
._b{width:8.998416pt;}
._12{width:9.904817pt;}
._14{width:11.699091pt;}
._9{width:12.592223pt;}
._f{width:15.106154pt;}
._e{width:16.702793pt;}
._d{width:17.721591pt;}
._c{width:19.074899pt;}
._10{width:20.457947pt;}
._11{width:21.694518pt;}
._16{width:22.617339pt;}
._13{width:23.525221pt;}
._17{width:24.559553pt;}
._7{width:25.916967pt;}
._8{width:27.006810pt;}
._19{width:28.397930pt;}
._18{width:29.584464pt;}
._15{width:31.989581pt;}
._a{width:34.922736pt;}
.fs3{font-size:49.210220pt;}
.fs1{font-size:51.702379pt;}
.fs2{font-size:62.292242pt;}
.fs0{font-size:72.882638pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:150.666606pt;}
.y5f{bottom:151.786606pt;}
.y58{bottom:152.906606pt;}
.y2c{bottom:154.986605pt;}
.y78{bottom:169.706599pt;}
.y5e{bottom:170.826598pt;}
.y57{bottom:171.946598pt;}
.y2b{bottom:173.866597pt;}
.y77{bottom:188.746591pt;}
.y5d{bottom:189.866591pt;}
.y56{bottom:190.666590pt;}
.y2a{bottom:192.906590pt;}
.y76{bottom:207.626584pt;}
.y55{bottom:208.746583pt;}
.y29{bottom:211.786582pt;}
.y75{bottom:226.666576pt;}
.y54{bottom:227.786576pt;}
.y28{bottom:229.866575pt;}
.y74{bottom:245.706568pt;}
.y53{bottom:246.826568pt;}
.y27{bottom:248.746567pt;}
.y73{bottom:264.746561pt;}
.y52{bottom:265.866560pt;}
.y26{bottom:267.786560pt;}
.y72{bottom:283.626553pt;}
.y51{bottom:284.746553pt;}
.y25{bottom:286.826552pt;}
.y71{bottom:302.666546pt;}
.y50{bottom:303.786545pt;}
.y24{bottom:305.866544pt;}
.y70{bottom:321.706538pt;}
.y4f{bottom:322.826538pt;}
.y23{bottom:324.906537pt;}
.y6f{bottom:340.746530pt;}
.y4e{bottom:341.866530pt;}
.y22{bottom:343.946529pt;}
.y6e{bottom:359.626523pt;}
.y4d{bottom:360.746522pt;}
.y21{bottom:362.986521pt;}
.y6d{bottom:378.666515pt;}
.y4c{bottom:379.786515pt;}
.y20{bottom:382.026514pt;}
.y6c{bottom:397.706508pt;}
.y4b{bottom:398.986507pt;}
.y1f{bottom:400.906506pt;}
.y6b{bottom:416.906500pt;}
.y4a{bottom:417.866500pt;}
.y1e{bottom:419.946499pt;}
.y6a{bottom:435.786492pt;}
.y49{bottom:436.906492pt;}
.y1d{bottom:438.986491pt;}
.y69{bottom:454.826485pt;}
.y48{bottom:455.946484pt;}
.y1c{bottom:458.026483pt;}
.y68{bottom:473.866477pt;}
.y47{bottom:474.986477pt;}
.y1b{bottom:476.906476pt;}
.y67{bottom:492.906470pt;}
.y46{bottom:493.866469pt;}
.y1a{bottom:495.946468pt;}
.y66{bottom:511.786462pt;}
.y45{bottom:512.906462pt;}
.y19{bottom:514.986461pt;}
.y65{bottom:530.826454pt;}
.y44{bottom:531.946454pt;}
.y18{bottom:534.026453pt;}
.y64{bottom:549.866447pt;}
.y43{bottom:550.986446pt;}
.y17{bottom:552.906446pt;}
.y63{bottom:568.906439pt;}
.y42{bottom:569.866439pt;}
.y16{bottom:571.946438pt;}
.y62{bottom:587.786432pt;}
.y41{bottom:588.906431pt;}
.y15{bottom:591.146430pt;}
.y61{bottom:606.826424pt;}
.y40{bottom:607.946423pt;}
.y14{bottom:610.186423pt;}
.y60{bottom:625.866416pt;}
.y5c{bottom:626.826416pt;}
.y3f{bottom:626.986416pt;}
.y13{bottom:629.066415pt;}
.y5b{bottom:644.906409pt;}
.y3e{bottom:645.866408pt;}
.y12{bottom:648.106407pt;}
.y5a{bottom:663.786401pt;}
.y3d{bottom:665.066401pt;}
.y11{bottom:667.146400pt;}
.y59{bottom:682.986393pt;}
.y3c{bottom:683.946393pt;}
.y10{bottom:686.186392pt;}
.y3b{bottom:702.026386pt;}
.yf{bottom:705.066385pt;}
.y3a{bottom:721.066378pt;}
.ye{bottom:724.106377pt;}
.y39{bottom:739.946371pt;}
.yd{bottom:743.146369pt;}
.y38{bottom:758.986363pt;}
.yc{bottom:762.186362pt;}
.y37{bottom:778.026355pt;}
.yb{bottom:782.186354pt;}
.y36{bottom:797.066348pt;}
.ya{bottom:802.986345pt;}
.y35{bottom:815.946340pt;}
.y9{bottom:818.826339pt;}
.y8{bottom:834.666333pt;}
.y34{bottom:834.986333pt;}
.y7{bottom:850.346327pt;}
.y33{bottom:854.026325pt;}
.y6{bottom:866.346320pt;}
.y32{bottom:873.066317pt;}
.y5{bottom:882.186314pt;}
.y31{bottom:891.946310pt;}
.y7a{bottom:892.906310pt;}
.y4{bottom:899.306307pt;}
.y30{bottom:910.986302pt;}
.y3{bottom:921.546298pt;}
.y2f{bottom:930.026295pt;}
.y2{bottom:943.626289pt;}
.y2e{bottom:949.226287pt;}
.y1{bottom:966.026280pt;}
.y2d{bottom:968.106279pt;}
.h2{height:35.823084pt;}
.h4{height:40.584015pt;}
.h5{height:43.160494pt;}
.h3{height:51.372850pt;}
.h1{height:60.106824pt;}
.h6{height:61.136429pt;}
.h7{height:64.968862pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:110.399956pt;}
.x2{left:133.280147pt;}
.x1{left:156.639937pt;}
.x3{left:397.120642pt;}
.xf{left:407.679955pt;}
.x4{left:440.639824pt;}
.x13{left:467.679813pt;}
.x14{left:471.999811pt;}
.xb{left:508.639797pt;}
.x7{left:509.599771pt;}
.x11{left:515.679924pt;}
.x5{left:521.279765pt;}
.x6{left:535.999720pt;}
.x10{left:551.519916pt;}
.xc{left:597.919761pt;}
.x9{left:610.719645pt;}
.xd{left:625.439750pt;}
.x12{left:634.239919pt;}
.xe{left:635.359746pt;}
.x8{left:683.839568pt;}
}




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