
    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_4d94106da9ba7e893264b9f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914000;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_f117adfb36e84f47410ecae6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_5d7f572ac67981c3b337ea88.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_25484de358845c2621455557.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_c78691ee656c838b5c7d6d57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984048;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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.315000px;}
.ls2{letter-spacing:1.260000px;}
.ls5{letter-spacing:8.640000px;}
.ls0{letter-spacing:905.713200px;}
.ls4{letter-spacing:981.873000px;}
.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:-50.112000px;}
.ws4{word-spacing:-38.880000px;}
.ws2{word-spacing:-30.240000px;}
.ws0{word-spacing:-16.695000px;}
.ws5{word-spacing:-13.770000px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-8.190000px;}
._7{margin-left:-6.300000px;}
._9{margin-left:-5.061000px;}
._4{margin-left:-4.011000px;}
._1{margin-left:-2.730000px;}
._0{margin-left:-1.680000px;}
._2{width:1.470000px;}
._a{width:3.276000px;}
._3{width:4.410000px;}
._8{width:5.544000px;}
._b{width:7.245000px;}
._c{width:8.316000px;}
._5{width:9.324000px;}
._6{width:10.500000px;}
._d{width:11.676000px;}
._11{width:13.104000px;}
._10{width:14.679000px;}
._e{width:17.388000px;}
.fc2{color:rgb(44,115,195);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(189,188,188);}
.fs2{font-size:33.000000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:84.000000px;}
.fs6{font-size:99.000000px;}
.fs0{font-size:312.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.666150px;}
.y3{bottom:72.666150px;}
.y6a{bottom:73.825650px;}
.y36{bottom:73.825800px;}
.y2{bottom:87.666150px;}
.y69{bottom:88.825650px;}
.y35{bottom:88.825800px;}
.y2f{bottom:162.578850px;}
.y2e{bottom:180.581100px;}
.y2d{bottom:198.583350px;}
.y2c{bottom:216.585600px;}
.y2b{bottom:234.587850px;}
.y2a{bottom:252.590100px;}
.y68{bottom:262.060800px;}
.y29{bottom:270.592350px;}
.y67{bottom:280.063050px;}
.y28{bottom:288.594600px;}
.y66{bottom:298.065300px;}
.y27{bottom:306.596850px;}
.y65{bottom:316.067550px;}
.y26{bottom:324.599100px;}
.y64{bottom:334.069800px;}
.y25{bottom:342.601350px;}
.y63{bottom:352.072050px;}
.y24{bottom:360.603600px;}
.y62{bottom:370.074300px;}
.y23{bottom:378.605850px;}
.y61{bottom:388.076550px;}
.y22{bottom:396.608100px;}
.y60{bottom:406.078800px;}
.y21{bottom:414.610350px;}
.y5f{bottom:424.081050px;}
.y20{bottom:432.612600px;}
.y5e{bottom:442.083300px;}
.y1f{bottom:450.614850px;}
.y5d{bottom:460.085550px;}
.y1e{bottom:468.617100px;}
.y5c{bottom:478.087800px;}
.y1d{bottom:486.619350px;}
.y5b{bottom:496.090050px;}
.y1c{bottom:504.621600px;}
.y5a{bottom:514.092300px;}
.y1b{bottom:522.623850px;}
.y59{bottom:532.094550px;}
.y1a{bottom:540.626100px;}
.y58{bottom:550.096800px;}
.y19{bottom:558.628350px;}
.y57{bottom:568.099050px;}
.y18{bottom:576.630600px;}
.y56{bottom:586.101300px;}
.y17{bottom:594.632850px;}
.y55{bottom:604.103550px;}
.y16{bottom:612.635100px;}
.y54{bottom:622.105800px;}
.y15{bottom:630.637350px;}
.y53{bottom:640.108050px;}
.y14{bottom:648.639600px;}
.y52{bottom:658.110300px;}
.y13{bottom:666.641850px;}
.y51{bottom:676.112550px;}
.y12{bottom:684.644100px;}
.y50{bottom:694.114800px;}
.y11{bottom:702.646350px;}
.y4f{bottom:712.117050px;}
.y10{bottom:720.648600px;}
.y4e{bottom:748.121550px;}
.yf{bottom:756.653100px;}
.y4d{bottom:766.123800px;}
.ye{bottom:774.655350px;}
.y4c{bottom:784.126050px;}
.yd{bottom:792.657600px;}
.y4b{bottom:802.128300px;}
.yc{bottom:810.659850px;}
.y4a{bottom:820.130550px;}
.yb{bottom:828.662100px;}
.y49{bottom:838.132800px;}
.ya{bottom:846.664350px;}
.y48{bottom:856.135050px;}
.y9{bottom:864.666600px;}
.y47{bottom:874.137300px;}
.y8{bottom:882.668850px;}
.y46{bottom:892.139550px;}
.y7{bottom:900.671100px;}
.y45{bottom:910.141800px;}
.y7b{bottom:917.274150px;}
.y6{bottom:918.673350px;}
.y44{bottom:928.144050px;}
.y7a{bottom:932.272650px;}
.y5{bottom:936.675600px;}
.y43{bottom:946.146300px;}
.y79{bottom:947.271150px;}
.y78{bottom:962.269650px;}
.y42{bottom:964.148550px;}
.y77{bottom:977.268150px;}
.y41{bottom:982.150800px;}
.y76{bottom:992.266650px;}
.y34{bottom:995.080200px;}
.y40{bottom:1000.153050px;}
.y75{bottom:1007.265150px;}
.y33{bottom:1013.082450px;}
.y3f{bottom:1018.155300px;}
.y74{bottom:1022.263650px;}
.y32{bottom:1031.084700px;}
.y3e{bottom:1036.157550px;}
.y73{bottom:1037.262150px;}
.y72{bottom:1052.260650px;}
.y3d{bottom:1054.159800px;}
.y71{bottom:1067.259150px;}
.y3c{bottom:1072.162050px;}
.y70{bottom:1082.257650px;}
.y31{bottom:1089.512400px;}
.y3b{bottom:1090.164300px;}
.y6f{bottom:1097.256150px;}
.y3a{bottom:1108.166550px;}
.y6e{bottom:1112.254650px;}
.y30{bottom:1115.012400px;}
.y39{bottom:1126.168800px;}
.y6d{bottom:1127.253150px;}
.y38{bottom:1144.171050px;}
.y6c{bottom:1145.248650px;}
.y1{bottom:1145.578800px;}
.y6b{bottom:1221.879150px;}
.y37{bottom:1221.879300px;}
.h5{height:26.676000px;}
.h3{height:31.122000px;}
.h4{height:35.568000px;}
.ha{height:40.014000px;}
.h9{height:42.681600px;}
.hb{height:45.414000px;}
.h6{height:52.983000px;}
.h8{height:61.740000px;}
.h7{height:72.765000px;}
.h2{height:231.192000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.425100px;}
.x1{left:118.695900px;}
.x6{left:126.333600px;}
.x4{left:127.561500px;}
.x5{left:243.263250px;}
.x7{left:370.373100px;}
.x3{left:530.452350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.280000pt;}
.ls2{letter-spacing:1.120000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls0{letter-spacing:805.078400pt;}
.ls4{letter-spacing:872.776000pt;}
.ws3{word-spacing:-44.544000pt;}
.ws4{word-spacing:-34.560000pt;}
.ws2{word-spacing:-26.880000pt;}
.ws0{word-spacing:-14.840000pt;}
.ws5{word-spacing:-12.240000pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-7.280000pt;}
._7{margin-left:-5.600000pt;}
._9{margin-left:-4.498667pt;}
._4{margin-left:-3.565333pt;}
._1{margin-left:-2.426667pt;}
._0{margin-left:-1.493333pt;}
._2{width:1.306667pt;}
._a{width:2.912000pt;}
._3{width:3.920000pt;}
._8{width:4.928000pt;}
._b{width:6.440000pt;}
._c{width:7.392000pt;}
._5{width:8.288000pt;}
._6{width:9.333333pt;}
._d{width:10.378667pt;}
._11{width:11.648000pt;}
._10{width:13.048000pt;}
._e{width:15.456000pt;}
.fs2{font-size:29.333333pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:74.666667pt;}
.fs6{font-size:88.000000pt;}
.fs0{font-size:277.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.258800pt;}
.y3{bottom:64.592133pt;}
.y6a{bottom:65.622800pt;}
.y36{bottom:65.622933pt;}
.y2{bottom:77.925467pt;}
.y69{bottom:78.956133pt;}
.y35{bottom:78.956267pt;}
.y2f{bottom:144.514533pt;}
.y2e{bottom:160.516533pt;}
.y2d{bottom:176.518533pt;}
.y2c{bottom:192.520533pt;}
.y2b{bottom:208.522533pt;}
.y2a{bottom:224.524533pt;}
.y68{bottom:232.942933pt;}
.y29{bottom:240.526533pt;}
.y67{bottom:248.944933pt;}
.y28{bottom:256.528533pt;}
.y66{bottom:264.946933pt;}
.y27{bottom:272.530533pt;}
.y65{bottom:280.948933pt;}
.y26{bottom:288.532533pt;}
.y64{bottom:296.950933pt;}
.y25{bottom:304.534533pt;}
.y63{bottom:312.952933pt;}
.y24{bottom:320.536533pt;}
.y62{bottom:328.954933pt;}
.y23{bottom:336.538533pt;}
.y61{bottom:344.956933pt;}
.y22{bottom:352.540533pt;}
.y60{bottom:360.958933pt;}
.y21{bottom:368.542533pt;}
.y5f{bottom:376.960933pt;}
.y20{bottom:384.544533pt;}
.y5e{bottom:392.962933pt;}
.y1f{bottom:400.546533pt;}
.y5d{bottom:408.964933pt;}
.y1e{bottom:416.548533pt;}
.y5c{bottom:424.966933pt;}
.y1d{bottom:432.550533pt;}
.y5b{bottom:440.968933pt;}
.y1c{bottom:448.552533pt;}
.y5a{bottom:456.970933pt;}
.y1b{bottom:464.554533pt;}
.y59{bottom:472.972933pt;}
.y1a{bottom:480.556533pt;}
.y58{bottom:488.974933pt;}
.y19{bottom:496.558533pt;}
.y57{bottom:504.976933pt;}
.y18{bottom:512.560533pt;}
.y56{bottom:520.978933pt;}
.y17{bottom:528.562533pt;}
.y55{bottom:536.980933pt;}
.y16{bottom:544.564533pt;}
.y54{bottom:552.982933pt;}
.y15{bottom:560.566533pt;}
.y53{bottom:568.984933pt;}
.y14{bottom:576.568533pt;}
.y52{bottom:584.986933pt;}
.y13{bottom:592.570533pt;}
.y51{bottom:600.988933pt;}
.y12{bottom:608.572533pt;}
.y50{bottom:616.990933pt;}
.y11{bottom:624.574533pt;}
.y4f{bottom:632.992933pt;}
.y10{bottom:640.576533pt;}
.y4e{bottom:664.996933pt;}
.yf{bottom:672.580533pt;}
.y4d{bottom:680.998933pt;}
.ye{bottom:688.582533pt;}
.y4c{bottom:697.000933pt;}
.yd{bottom:704.584533pt;}
.y4b{bottom:713.002933pt;}
.yc{bottom:720.586533pt;}
.y4a{bottom:729.004933pt;}
.yb{bottom:736.588533pt;}
.y49{bottom:745.006933pt;}
.ya{bottom:752.590533pt;}
.y48{bottom:761.008933pt;}
.y9{bottom:768.592533pt;}
.y47{bottom:777.010933pt;}
.y8{bottom:784.594533pt;}
.y46{bottom:793.012933pt;}
.y7{bottom:800.596533pt;}
.y45{bottom:809.014933pt;}
.y7b{bottom:815.354800pt;}
.y6{bottom:816.598533pt;}
.y44{bottom:825.016933pt;}
.y7a{bottom:828.686800pt;}
.y5{bottom:832.600533pt;}
.y43{bottom:841.018933pt;}
.y79{bottom:842.018800pt;}
.y78{bottom:855.350800pt;}
.y42{bottom:857.020933pt;}
.y77{bottom:868.682800pt;}
.y41{bottom:873.022933pt;}
.y76{bottom:882.014800pt;}
.y34{bottom:884.515733pt;}
.y40{bottom:889.024933pt;}
.y75{bottom:895.346800pt;}
.y33{bottom:900.517733pt;}
.y3f{bottom:905.026933pt;}
.y74{bottom:908.678800pt;}
.y32{bottom:916.519733pt;}
.y3e{bottom:921.028933pt;}
.y73{bottom:922.010800pt;}
.y72{bottom:935.342800pt;}
.y3d{bottom:937.030933pt;}
.y71{bottom:948.674800pt;}
.y3c{bottom:953.032933pt;}
.y70{bottom:962.006800pt;}
.y31{bottom:968.455467pt;}
.y3b{bottom:969.034933pt;}
.y6f{bottom:975.338800pt;}
.y3a{bottom:985.036933pt;}
.y6e{bottom:988.670800pt;}
.y30{bottom:991.122133pt;}
.y39{bottom:1001.038933pt;}
.y6d{bottom:1002.002800pt;}
.y38{bottom:1017.040933pt;}
.y6c{bottom:1017.998800pt;}
.y1{bottom:1018.292267pt;}
.y6b{bottom:1086.114800pt;}
.y37{bottom:1086.114933pt;}
.h5{height:23.712000pt;}
.h3{height:27.664000pt;}
.h4{height:31.616000pt;}
.ha{height:35.568000pt;}
.h9{height:37.939200pt;}
.hb{height:40.368000pt;}
.h6{height:47.096000pt;}
.h8{height:54.880000pt;}
.h7{height:64.680000pt;}
.h2{height:205.504000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.377867pt;}
.x1{left:105.507467pt;}
.x6{left:112.296533pt;}
.x4{left:113.388000pt;}
.x5{left:216.234000pt;}
.x7{left:329.220533pt;}
.x3{left:471.513200pt;}
}




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