
    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_671e24a9f35338a0539edfac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_84a4d770d5eca1e20072235e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_acf5887ad21f91a7acf631b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_9999a1b6537a246d42d2e5cf.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e786f8dce970364a9f6b0138.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908691;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);}
.m1{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;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.872130px;}
.ls2{letter-spacing:0.923432px;}
.ls6{letter-spacing:1.333846px;}
.ls4{letter-spacing:1.385147px;}
.ls5{letter-spacing:2.103372px;}
.ls1{letter-spacing:915.569000px;}
.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;}
}
.ws8{word-spacing:-51.301758px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-14.958000px;}
.ws7{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:-10.508889px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:231.012000px;}
.ws3{word-spacing:279.916128px;}
._1e{margin-left:-8.831925px;}
._c{margin-left:-7.409100px;}
._4{margin-left:-5.140898px;}
._5{margin-left:-4.131079px;}
._3{margin-left:-2.582003px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.855674px;}
._8{width:4.946568px;}
._10{width:6.548800px;}
._12{width:7.869239px;}
._11{width:9.114288px;}
._b{width:10.163076px;}
._e{width:11.456345px;}
._d{width:12.780004px;}
._f{width:13.789014px;}
._a{width:16.088224px;}
._9{width:17.133799px;}
._7{width:18.705802px;}
._1a{width:20.898000px;}
._1b{width:23.434949px;}
._19{width:24.894119px;}
._1c{width:40.474160px;}
._1d{width:115.685464px;}
._1f{width:163.584640px;}
._18{width:322.668000px;}
._13{width:348.408000px;}
._15{width:354.564000px;}
._14{width:393.398064px;}
._16{width:397.924128px;}
._17{width:474.984000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y26{bottom:46.734370px;}
.y25{bottom:59.015622px;}
.y24{bottom:71.302734px;}
.y21{bottom:130.347651px;}
.y20{bottom:149.244141px;}
.y27{bottom:160.330500px;}
.y48{bottom:165.099609px;}
.y1f{bottom:168.146484px;}
.y1e{bottom:187.042963px;}
.y47{bottom:195.755859px;}
.y4a{bottom:201.814500px;}
.y66{bottom:206.343750px;}
.y1d{bottom:219.445308px;}
.y65{bottom:224.302732px;}
.y1c{bottom:238.347645px;}
.y64{bottom:242.255859px;}
.y46{bottom:251.367182px;}
.y1b{bottom:257.244135px;}
.y63{bottom:260.208984px;}
.y45{bottom:270.263672px;}
.y1a{bottom:276.146484px;}
.y62{bottom:278.162097px;}
.y19{bottom:295.042964px;}
.y61{bottom:296.121086px;}
.y44{bottom:300.919922px;}
.y18{bottom:313.945290px;}
.y60{bottom:314.074213px;}
.y5f{bottom:332.027340px;}
.y17{bottom:346.347639px;}
.y5e{bottom:349.986328px;}
.y43{bottom:356.531244px;}
.y16{bottom:365.244129px;}
.y5d{bottom:367.939454px;}
.y42{bottom:375.427729px;}
.y15{bottom:384.146478px;}
.y5c{bottom:385.892572px;}
.y41{bottom:394.330056px;}
.y14{bottom:403.042959px;}
.y5b{bottom:403.851560px;}
.y5a{bottom:421.804688px;}
.y13{bottom:421.945308px;}
.y40{bottom:426.732405px;}
.y59{bottom:439.757806px;}
.y12{bottom:440.847657px;}
.y3f{bottom:445.628895px;}
.y58{bottom:457.716794px;}
.y3e{bottom:464.531244px;}
.y11{bottom:471.498046px;}
.y57{bottom:475.669922px;}
.y3d{bottom:483.427729px;}
.y3c{bottom:502.330073px;}
.y56{bottom:513.181641px;}
.y3b{bottom:521.232422px;}
.y3a{bottom:540.128841px;}
.y10{bottom:540.597655px;}
.yf{bottom:557.402340px;}
.y55{bottom:566.876954px;}
.y39{bottom:572.531190px;}
.ye{bottom:574.201166px;}
.y38{bottom:591.427680px;}
.yd{bottom:595.499999px;}
.y54{bottom:595.623047px;}
.y37{bottom:610.330029px;}
.yc{bottom:621.298828px;}
.y36{bottom:629.232378px;}
.y35{bottom:648.128868px;}
.y53{bottom:651.234369px;}
.y34{bottom:667.031217px;}
.y52{bottom:670.136718px;}
.yb{bottom:671.554702px;}
.y4c{bottom:678.650343px;}
.ya{bottom:684.785166px;}
.y9{bottom:698.015630px;}
.y33{bottom:699.427707px;}
.y51{bottom:700.792968px;}
.y2b{bottom:703.798390px;}
.y4b{bottom:709.306593px;}
.y8{bottom:711.246095px;}
.y32{bottom:718.330056px;}
.y2a{bottom:722.700739px;}
.y7{bottom:732.199218px;}
.y23{bottom:736.699215px;}
.y31{bottom:737.232405px;}
.y29{bottom:741.597230px;}
.y6{bottom:751.400391px;}
.y22{bottom:755.900391px;}
.y30{bottom:756.128895px;}
.y50{bottom:756.398427px;}
.y28{bottom:760.499578px;}
.y2f{bottom:775.031244px;}
.y4f{bottom:775.300776px;}
.y5{bottom:793.710931px;}
.y4e{bottom:794.203125px;}
.y2e{bottom:807.427723px;}
.y4d{bottom:824.853516px;}
.y2d{bottom:826.330072px;}
.y4{bottom:831.269532px;}
.y2c{bottom:845.232421px;}
.y3{bottom:899.378907px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y49{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hd{height:35.617086px;}
.hf{height:37.399182px;}
.h2{height:39.366211px;}
.hb{height:39.366277px;}
.h7{height:39.366301px;}
.hc{height:39.366475px;}
.h10{height:45.991224px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.he{height:733.149000px;}
.ha{height:774.633000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x8{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:123.662109px;}
.xa{left:126.351562px;}
.x6{left:146.648438px;}
.x7{left:163.037113px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.775227pt;}
.ls2{letter-spacing:0.820828pt;}
.ls6{letter-spacing:1.185641pt;}
.ls4{letter-spacing:1.231242pt;}
.ls5{letter-spacing:1.869664pt;}
.ls1{letter-spacing:813.839111pt;}
.ws8{word-spacing:-45.601563pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-13.296000pt;}
.ws7{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:-9.341234pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:205.344000pt;}
.ws3{word-spacing:248.814336pt;}
._1e{margin-left:-7.850600pt;}
._c{margin-left:-6.585867pt;}
._4{margin-left:-4.569688pt;}
._5{margin-left:-3.672070pt;}
._3{margin-left:-2.295113pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.427266pt;}
._8{width:4.396949pt;}
._10{width:5.821156pt;}
._12{width:6.994880pt;}
._11{width:8.101590pt;}
._b{width:9.033846pt;}
._e{width:10.183418pt;}
._d{width:11.360004pt;}
._f{width:12.256902pt;}
._a{width:14.300644pt;}
._9{width:15.230044pt;}
._7{width:16.627379pt;}
._1a{width:18.576000pt;}
._1b{width:20.831066pt;}
._19{width:22.128105pt;}
._1c{width:35.977031pt;}
._1d{width:102.831524pt;}
._1f{width:145.408569pt;}
._18{width:286.816000pt;}
._13{width:309.696000pt;}
._15{width:315.168000pt;}
._14{width:349.687168pt;}
._16{width:353.710336pt;}
._17{width:422.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:41.541662pt;}
.y25{bottom:52.458331pt;}
.y24{bottom:63.380208pt;}
.y21{bottom:115.864579pt;}
.y20{bottom:132.661459pt;}
.y27{bottom:142.516000pt;}
.y48{bottom:146.755208pt;}
.y1f{bottom:149.463541pt;}
.y1e{bottom:166.260412pt;}
.y47{bottom:174.005208pt;}
.y4a{bottom:179.390667pt;}
.y66{bottom:183.416667pt;}
.y1d{bottom:195.062496pt;}
.y65{bottom:199.380206pt;}
.y1c{bottom:211.864573pt;}
.y64{bottom:215.338541pt;}
.y46{bottom:223.437495pt;}
.y1b{bottom:228.661453pt;}
.y63{bottom:231.296875pt;}
.y45{bottom:240.234375pt;}
.y1a{bottom:245.463541pt;}
.y62{bottom:247.255198pt;}
.y19{bottom:262.260412pt;}
.y61{bottom:263.218743pt;}
.y44{bottom:267.484375pt;}
.y18{bottom:279.062480pt;}
.y60{bottom:279.177078pt;}
.y5f{bottom:295.135413pt;}
.y17{bottom:307.864568pt;}
.y5e{bottom:311.098959pt;}
.y43{bottom:316.916661pt;}
.y16{bottom:324.661448pt;}
.y5d{bottom:327.057292pt;}
.y42{bottom:333.713537pt;}
.y15{bottom:341.463536pt;}
.y5c{bottom:343.015620pt;}
.y41{bottom:350.515605pt;}
.y14{bottom:358.260408pt;}
.y5b{bottom:358.979165pt;}
.y5a{bottom:374.937500pt;}
.y13{bottom:375.062496pt;}
.y40{bottom:379.317693pt;}
.y59{bottom:390.895828pt;}
.y12{bottom:391.864584pt;}
.y3f{bottom:396.114573pt;}
.y58{bottom:406.859373pt;}
.y3e{bottom:412.916661pt;}
.y11{bottom:419.109375pt;}
.y57{bottom:422.817708pt;}
.y3d{bottom:429.713537pt;}
.y3c{bottom:446.515620pt;}
.y56{bottom:456.161459pt;}
.y3b{bottom:463.317708pt;}
.y3a{bottom:480.114525pt;}
.y10{bottom:480.531249pt;}
.yf{bottom:495.468747pt;}
.y55{bottom:503.890625pt;}
.y39{bottom:508.916613pt;}
.ye{bottom:510.401037pt;}
.y38{bottom:525.713493pt;}
.yd{bottom:529.333333pt;}
.y54{bottom:529.442708pt;}
.y37{bottom:542.515581pt;}
.yc{bottom:552.265625pt;}
.y36{bottom:559.317669pt;}
.y35{bottom:576.114549pt;}
.y53{bottom:578.874995pt;}
.y34{bottom:592.916637pt;}
.y52{bottom:595.677083pt;}
.yb{bottom:596.937513pt;}
.y4c{bottom:603.244749pt;}
.ya{bottom:608.697926pt;}
.y9{bottom:620.458338pt;}
.y33{bottom:621.713517pt;}
.y51{bottom:622.927083pt;}
.y2b{bottom:625.598569pt;}
.y4b{bottom:630.494749pt;}
.y8{bottom:632.218751pt;}
.y32{bottom:638.515605pt;}
.y2a{bottom:642.400657pt;}
.y7{bottom:650.843749pt;}
.y23{bottom:654.843747pt;}
.y31{bottom:655.317693pt;}
.y29{bottom:659.197537pt;}
.y6{bottom:667.911459pt;}
.y22{bottom:671.911459pt;}
.y30{bottom:672.114573pt;}
.y50{bottom:672.354157pt;}
.y28{bottom:675.999625pt;}
.y2f{bottom:688.916661pt;}
.y4f{bottom:689.156245pt;}
.y5{bottom:705.520828pt;}
.y4e{bottom:705.958333pt;}
.y2e{bottom:717.713532pt;}
.y4d{bottom:733.203125pt;}
.y2d{bottom:734.515620pt;}
.y4{bottom:738.906251pt;}
.y2c{bottom:751.317708pt;}
.y3{bottom:799.447917pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y49{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hd{height:31.659632pt;}
.hf{height:33.243717pt;}
.h2{height:34.992188pt;}
.hb{height:34.992246pt;}
.h7{height:34.992268pt;}
.hc{height:34.992422pt;}
.h10{height:40.881088pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.he{height:651.688000pt;}
.ha{height:688.562667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x8{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:109.921874pt;}
.xa{left:112.312500pt;}
.x6{left:130.354167pt;}
.x7{left:144.921879pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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