
    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_cbbe2e7c92379416426190de.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_1ec443df9b26dfb68323fa80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_88faa5ee7b9f8e6f813195bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_9073f1e3ceb0379fb7f37e43.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.114048px;}
.ls18{letter-spacing:0.123552px;}
.ls5{letter-spacing:0.125040px;}
.ls4{letter-spacing:0.125160px;}
.ls2{letter-spacing:0.125340px;}
.ls10{letter-spacing:0.125460px;}
.ls6{letter-spacing:0.125640px;}
.ls21{letter-spacing:0.128304px;}
.lsc{letter-spacing:0.159840px;}
.ls25{letter-spacing:0.160200px;}
.ls12{letter-spacing:0.160260px;}
.lsb{letter-spacing:0.160440px;}
.ls20{letter-spacing:0.161568px;}
.ls1d{letter-spacing:0.242352px;}
.ls15{letter-spacing:0.253872px;}
.lsd{letter-spacing:0.256608px;}
.ls0{letter-spacing:0.256680px;}
.lse{letter-spacing:0.261360px;}
.ls9{letter-spacing:0.266112px;}
.ls7{letter-spacing:0.270864px;}
.ls27{letter-spacing:0.273480px;}
.ls26{letter-spacing:0.274680px;}
.ls3{letter-spacing:0.275616px;}
.lsa{letter-spacing:0.280368px;}
.ls8{letter-spacing:0.285120px;}
.lsf{letter-spacing:0.289872px;}
.ls19{letter-spacing:0.308880px;}
.ls1a{letter-spacing:0.318384px;}
.ls1b{letter-spacing:0.356400px;}
.ls22{letter-spacing:0.365904px;}
.ls1c{letter-spacing:0.422928px;}
.ls1f{letter-spacing:0.431568px;}
.ls24{letter-spacing:0.470448px;}
.ls1e{letter-spacing:0.479520px;}
.ls1{letter-spacing:0.543168px;}
.ls16{letter-spacing:0.578592px;}
.ls23{letter-spacing:0.613008px;}
.ls14{letter-spacing:0.637632px;}
.ls17{letter-spacing:0.702576px;}
.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;}
}
.ws3{word-spacing:-17.115696px;}
.ws0{word-spacing:-17.050752px;}
.ws2{word-spacing:-16.991712px;}
.ws4{word-spacing:-16.956288px;}
.ws1{word-spacing:-16.666992px;}
.ws11{word-spacing:-13.823568px;}
.ws17{word-spacing:-13.681008px;}
.wsd{word-spacing:-13.633488px;}
.ws10{word-spacing:-13.576464px;}
.wsb{word-spacing:-13.566960px;}
.wsa{word-spacing:-13.528944px;}
.ws8{word-spacing:-13.519440px;}
.ws14{word-spacing:-13.500432px;}
.ws9{word-spacing:-13.495680px;}
.wsf{word-spacing:-13.490928px;}
.ws6{word-spacing:-13.486176px;}
.ws7{word-spacing:-13.481424px;}
.ws15{word-spacing:-13.476672px;}
.ws12{word-spacing:-13.471920px;}
.ws16{word-spacing:-13.467168px;}
.wse{word-spacing:-13.452912px;}
.ws13{word-spacing:-13.372128px;}
.ws5{word-spacing:-13.334112px;}
.wsc{word-spacing:-13.324608px;}
.ws18{word-spacing:0.000000px;}
._0{margin-left:-1.004496px;}
._1{width:1.476000px;}
._3{width:2.658240px;}
._2{width:3.896640px;}
._8{width:5.756496px;}
._5{width:7.032060px;}
._4{width:8.411040px;}
._9{width:9.694080px;}
._6{width:11.119680px;}
._7{width:12.352980px;}
.fc4{color:rgb(144,48,0);}
.fc2{color:rgb(102,0,0);}
.fc3{color:rgb(96,96,96);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs2{font-size:53.280000px;}
.fs1{font-size:59.040000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.499958px;}
.y47{bottom:109.034997px;}
.y46{bottom:123.074997px;}
.y45{bottom:136.755042px;}
.y44{bottom:150.435042px;}
.y43{bottom:164.475042px;}
.y42{bottom:178.155042px;}
.y41{bottom:191.835042px;}
.y40{bottom:205.875042px;}
.y3f{bottom:219.555042px;}
.y3e{bottom:233.235042px;}
.y3d{bottom:247.275042px;}
.y3c{bottom:260.955042px;}
.y3b{bottom:274.635042px;}
.y3a{bottom:288.675042px;}
.y39{bottom:302.355042px;}
.y38{bottom:316.035042px;}
.y37{bottom:330.075042px;}
.y36{bottom:343.755042px;}
.y35{bottom:357.435042px;}
.y34{bottom:371.475042px;}
.y33{bottom:385.155042px;}
.y32{bottom:398.835042px;}
.y31{bottom:412.875042px;}
.y30{bottom:426.555042px;}
.y2f{bottom:440.235042px;}
.y2e{bottom:454.275042px;}
.y2d{bottom:467.955042px;}
.y2c{bottom:481.635042px;}
.y2b{bottom:495.675042px;}
.y2a{bottom:509.355042px;}
.y29{bottom:523.035042px;}
.y28{bottom:536.715042px;}
.y27{bottom:550.755042px;}
.y26{bottom:564.435042px;}
.y25{bottom:578.115042px;}
.y24{bottom:592.155042px;}
.y23{bottom:605.835042px;}
.y22{bottom:619.514892px;}
.y21{bottom:633.555042px;}
.y20{bottom:647.235042px;}
.y1f{bottom:660.915042px;}
.y1e{bottom:674.955042px;}
.y1d{bottom:688.635042px;}
.y1c{bottom:702.315042px;}
.y1b{bottom:716.354892px;}
.y1a{bottom:730.035042px;}
.y19{bottom:743.715042px;}
.y18{bottom:757.755042px;}
.y17{bottom:771.435042px;}
.y61{bottom:776.835042px;}
.y16{bottom:785.115042px;}
.y60{bottom:796.635042px;}
.y15{bottom:799.155042px;}
.y5f{bottom:810.315042px;}
.y14{bottom:812.835042px;}
.y5e{bottom:824.354892px;}
.y13{bottom:826.514892px;}
.y5d{bottom:838.034892px;}
.y12{bottom:840.554892px;}
.y5c{bottom:851.714892px;}
.y11{bottom:854.234892px;}
.y5b{bottom:865.755042px;}
.y10{bottom:867.915042px;}
.y5a{bottom:879.435042px;}
.yf{bottom:881.955042px;}
.y59{bottom:893.115042px;}
.ye{bottom:895.635042px;}
.y58{bottom:907.155042px;}
.yd{bottom:909.315042px;}
.y57{bottom:920.835042px;}
.yc{bottom:923.354892px;}
.y56{bottom:934.514892px;}
.yb{bottom:937.034892px;}
.y55{bottom:948.554892px;}
.ya{bottom:951.075042px;}
.y54{bottom:962.234892px;}
.y53{bottom:975.915042px;}
.y9{bottom:981.675042px;}
.y52{bottom:989.595042px;}
.y8{bottom:994.995042px;}
.y51{bottom:1003.635042px;}
.y7{bottom:1009.034892px;}
.y50{bottom:1017.315042px;}
.y6{bottom:1022.714892px;}
.y4f{bottom:1030.995042px;}
.y5{bottom:1036.394892px;}
.y4e{bottom:1045.034892px;}
.y4{bottom:1050.435042px;}
.y4d{bottom:1058.714892px;}
.y4c{bottom:1072.394892px;}
.y4b{bottom:1086.435042px;}
.y3{bottom:1087.155042px;}
.y4a{bottom:1100.115042px;}
.y49{bottom:1113.795042px;}
.y2{bottom:1123.514892px;}
.y48{bottom:1127.835042px;}
.h7{height:34.595859px;}
.h5{height:34.619063px;}
.h6{height:38.789297px;}
.h8{height:39.350391px;}
.h4{height:42.982734px;}
.h3{height:60.845625px;}
.h2{height:1235.835000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:636.480000px;}
.w3{width:638.280000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:2.519970px;}
.x4{left:3.959970px;}
.x1{left:13.500000px;}
.x2{left:114.120105px;}
.x3{left:126.900000px;}
.x5{left:128.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.101376pt;}
.ls18{letter-spacing:0.109824pt;}
.ls5{letter-spacing:0.111147pt;}
.ls4{letter-spacing:0.111253pt;}
.ls2{letter-spacing:0.111413pt;}
.ls10{letter-spacing:0.111520pt;}
.ls6{letter-spacing:0.111680pt;}
.ls21{letter-spacing:0.114048pt;}
.lsc{letter-spacing:0.142080pt;}
.ls25{letter-spacing:0.142400pt;}
.ls12{letter-spacing:0.142453pt;}
.lsb{letter-spacing:0.142613pt;}
.ls20{letter-spacing:0.143616pt;}
.ls1d{letter-spacing:0.215424pt;}
.ls15{letter-spacing:0.225664pt;}
.lsd{letter-spacing:0.228096pt;}
.ls0{letter-spacing:0.228160pt;}
.lse{letter-spacing:0.232320pt;}
.ls9{letter-spacing:0.236544pt;}
.ls7{letter-spacing:0.240768pt;}
.ls27{letter-spacing:0.243093pt;}
.ls26{letter-spacing:0.244160pt;}
.ls3{letter-spacing:0.244992pt;}
.lsa{letter-spacing:0.249216pt;}
.ls8{letter-spacing:0.253440pt;}
.lsf{letter-spacing:0.257664pt;}
.ls19{letter-spacing:0.274560pt;}
.ls1a{letter-spacing:0.283008pt;}
.ls1b{letter-spacing:0.316800pt;}
.ls22{letter-spacing:0.325248pt;}
.ls1c{letter-spacing:0.375936pt;}
.ls1f{letter-spacing:0.383616pt;}
.ls24{letter-spacing:0.418176pt;}
.ls1e{letter-spacing:0.426240pt;}
.ls1{letter-spacing:0.482816pt;}
.ls16{letter-spacing:0.514304pt;}
.ls23{letter-spacing:0.544896pt;}
.ls14{letter-spacing:0.566784pt;}
.ls17{letter-spacing:0.624512pt;}
.ws3{word-spacing:-15.213952pt;}
.ws0{word-spacing:-15.156224pt;}
.ws2{word-spacing:-15.103744pt;}
.ws4{word-spacing:-15.072256pt;}
.ws1{word-spacing:-14.815104pt;}
.ws11{word-spacing:-12.287616pt;}
.ws17{word-spacing:-12.160896pt;}
.wsd{word-spacing:-12.118656pt;}
.ws10{word-spacing:-12.067968pt;}
.wsb{word-spacing:-12.059520pt;}
.wsa{word-spacing:-12.025728pt;}
.ws8{word-spacing:-12.017280pt;}
.ws14{word-spacing:-12.000384pt;}
.ws9{word-spacing:-11.996160pt;}
.wsf{word-spacing:-11.991936pt;}
.ws6{word-spacing:-11.987712pt;}
.ws7{word-spacing:-11.983488pt;}
.ws15{word-spacing:-11.979264pt;}
.ws12{word-spacing:-11.975040pt;}
.ws16{word-spacing:-11.970816pt;}
.wse{word-spacing:-11.958144pt;}
.ws13{word-spacing:-11.886336pt;}
.ws5{word-spacing:-11.852544pt;}
.wsc{word-spacing:-11.844096pt;}
.ws18{word-spacing:0.000000pt;}
._0{margin-left:-0.892885pt;}
._1{width:1.312000pt;}
._3{width:2.362880pt;}
._2{width:3.463680pt;}
._8{width:5.116885pt;}
._5{width:6.250720pt;}
._4{width:7.476480pt;}
._9{width:8.616960pt;}
._6{width:9.884160pt;}
._7{width:10.980427pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:47.360000pt;}
.fs1{font-size:52.480000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.999963pt;}
.y47{bottom:96.919997pt;}
.y46{bottom:109.399997pt;}
.y45{bottom:121.560037pt;}
.y44{bottom:133.720037pt;}
.y43{bottom:146.200037pt;}
.y42{bottom:158.360037pt;}
.y41{bottom:170.520037pt;}
.y40{bottom:183.000037pt;}
.y3f{bottom:195.160037pt;}
.y3e{bottom:207.320037pt;}
.y3d{bottom:219.800037pt;}
.y3c{bottom:231.960037pt;}
.y3b{bottom:244.120037pt;}
.y3a{bottom:256.600037pt;}
.y39{bottom:268.760037pt;}
.y38{bottom:280.920037pt;}
.y37{bottom:293.400037pt;}
.y36{bottom:305.560037pt;}
.y35{bottom:317.720037pt;}
.y34{bottom:330.200037pt;}
.y33{bottom:342.360037pt;}
.y32{bottom:354.520037pt;}
.y31{bottom:367.000037pt;}
.y30{bottom:379.160037pt;}
.y2f{bottom:391.320037pt;}
.y2e{bottom:403.800037pt;}
.y2d{bottom:415.960037pt;}
.y2c{bottom:428.120037pt;}
.y2b{bottom:440.600037pt;}
.y2a{bottom:452.760037pt;}
.y29{bottom:464.920037pt;}
.y28{bottom:477.080037pt;}
.y27{bottom:489.560037pt;}
.y26{bottom:501.720037pt;}
.y25{bottom:513.880037pt;}
.y24{bottom:526.360037pt;}
.y23{bottom:538.520037pt;}
.y22{bottom:550.679904pt;}
.y21{bottom:563.160037pt;}
.y20{bottom:575.320037pt;}
.y1f{bottom:587.480037pt;}
.y1e{bottom:599.960037pt;}
.y1d{bottom:612.120037pt;}
.y1c{bottom:624.280037pt;}
.y1b{bottom:636.759904pt;}
.y1a{bottom:648.920037pt;}
.y19{bottom:661.080037pt;}
.y18{bottom:673.560037pt;}
.y17{bottom:685.720037pt;}
.y61{bottom:690.520037pt;}
.y16{bottom:697.880037pt;}
.y60{bottom:708.120037pt;}
.y15{bottom:710.360037pt;}
.y5f{bottom:720.280037pt;}
.y14{bottom:722.520037pt;}
.y5e{bottom:732.759904pt;}
.y13{bottom:734.679904pt;}
.y5d{bottom:744.919904pt;}
.y12{bottom:747.159904pt;}
.y5c{bottom:757.079904pt;}
.y11{bottom:759.319904pt;}
.y5b{bottom:769.560037pt;}
.y10{bottom:771.480037pt;}
.y5a{bottom:781.720037pt;}
.yf{bottom:783.960037pt;}
.y59{bottom:793.880037pt;}
.ye{bottom:796.120037pt;}
.y58{bottom:806.360037pt;}
.yd{bottom:808.280037pt;}
.y57{bottom:818.520037pt;}
.yc{bottom:820.759904pt;}
.y56{bottom:830.679904pt;}
.yb{bottom:832.919904pt;}
.y55{bottom:843.159904pt;}
.ya{bottom:845.400037pt;}
.y54{bottom:855.319904pt;}
.y53{bottom:867.480037pt;}
.y9{bottom:872.600037pt;}
.y52{bottom:879.640037pt;}
.y8{bottom:884.440037pt;}
.y51{bottom:892.120037pt;}
.y7{bottom:896.919904pt;}
.y50{bottom:904.280037pt;}
.y6{bottom:909.079904pt;}
.y4f{bottom:916.440037pt;}
.y5{bottom:921.239904pt;}
.y4e{bottom:928.919904pt;}
.y4{bottom:933.720037pt;}
.y4d{bottom:941.079904pt;}
.y4c{bottom:953.239904pt;}
.y4b{bottom:965.720037pt;}
.y3{bottom:966.360037pt;}
.y4a{bottom:977.880037pt;}
.y49{bottom:990.040037pt;}
.y2{bottom:998.679904pt;}
.y48{bottom:1002.520037pt;}
.h7{height:30.751875pt;}
.h5{height:30.772500pt;}
.h6{height:34.479375pt;}
.h8{height:34.978125pt;}
.h4{height:38.206875pt;}
.h3{height:54.085000pt;}
.h2{height:1098.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:565.760000pt;}
.w3{width:567.360000pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:2.239973pt;}
.x4{left:3.519973pt;}
.x1{left:12.000000pt;}
.x2{left:101.440093pt;}
.x3{left:112.800000pt;}
.x5{left:114.080000pt;}
}




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