
    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_fdb1b1a489c53d21f41941c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.213379;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_f48817457ba0ff871f11f76f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990234;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_20d04d7c57ab9f481d98c352.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917969;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_ff319d38a4f1fc8e25301c89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_7e4a40817a2ce95e9a733488.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.987305;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_94b042cf2c10e533fac48af0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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;}
.v1{vertical-align:49.499998px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000003px;}
.ls2{letter-spacing:0.000039px;}
.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;}
}
.wsf{word-spacing:-34.637694px;}
.wsc{word-spacing:-26.255126px;}
.ws3{word-spacing:-17.380371px;}
.ws13{word-spacing:-17.257323px;}
.wsb{word-spacing:-0.094500px;}
.ws1{word-spacing:-0.063000px;}
.ws7{word-spacing:0.000000px;}
.ws12{word-spacing:164.895987px;}
.ws5{word-spacing:194.726066px;}
.wsa{word-spacing:201.893544px;}
.ws9{word-spacing:221.181141px;}
.ws8{word-spacing:270.338366px;}
.ws11{word-spacing:296.463853px;}
.ws6{word-spacing:337.306625px;}
.wsd{word-spacing:367.461898px;}
.ws2{word-spacing:394.461897px;}
.ws4{word-spacing:394.984846px;}
.wse{word-spacing:395.301253px;}
.ws10{word-spacing:415.081037px;}
.ws0{word-spacing:2504.294071px;}
._0{margin-left:-7.998042px;}
._2{margin-left:-6.152344px;}
._4{margin-left:-4.306640px;}
._5{margin-left:-2.830078px;}
._3{margin-left:-1.538084px;}
._1{width:1.230469px;}
._b{width:3.022666px;}
._7{width:118.621575px;}
._a{width:216.883289px;}
._6{width:218.966298px;}
._9{width:220.996571px;}
._8{width:271.261218px;}
.fc6{color:rgb(245,135,31);}
.fc5{color:rgb(142,144,140);}
.fc3{color:rgb(137,89,168);}
.fc2{color:rgb(77,77,76);}
.fc1{color:rgb(201,174,117);}
.fc4{color:rgb(113,140,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000002px;}
.fs2{font-size:62.999997px;}
.fs4{font-size:73.665001px;}
.fs3{font-size:94.499996px;}
.fs1{font-size:125.999995px;}
.y0{bottom:0.000000px;}
.y4a{bottom:23.624999px;}
.y2{bottom:25.379923px;}
.y3{bottom:42.255021px;}
.y4e{bottom:44.999998px;}
.y41{bottom:55.124998px;}
.y22{bottom:57.374998px;}
.y67{bottom:66.374997px;}
.y40{bottom:79.874997px;}
.y21{bottom:82.124997px;}
.y66{bottom:87.749996px;}
.y58{bottom:91.124996px;}
.y65{bottom:109.124995px;}
.y57{bottom:115.874995px;}
.y20{bottom:119.249995px;}
.y3f{bottom:120.374995px;}
.y64{bottom:130.499995px;}
.y63{bottom:151.874994px;}
.y1f{bottom:156.374993px;}
.y3e{bottom:160.874993px;}
.y62{bottom:173.249993px;}
.y1e{bottom:181.124992px;}
.y61{bottom:194.624992px;}
.y56{bottom:196.874992px;}
.y3d{bottom:206.999991px;}
.y60{bottom:215.999991px;}
.y1d{bottom:218.249991px;}
.y55{bottom:237.374990px;}
.y1c{bottom:242.999990px;}
.y3c{bottom:244.124990px;}
.y54{bottom:277.874988px;}
.y1b{bottom:280.124988px;}
.y3b{bottom:281.249988px;}
.y3a{bottom:305.999987px;}
.y53{bottom:318.374987px;}
.y1a{bottom:326.249986px;}
.y39{bottom:343.124986px;}
.y52{bottom:358.874985px;}
.y38{bottom:367.874985px;}
.y19{bottom:394.874984px;}
.y51{bottom:399.374983px;}
.y37{bottom:404.999983px;}
.y18{bottom:419.624983px;}
.y50{bottom:439.874982px;}
.y36{bottom:442.124982px;}
.y17{bottom:444.374981px;}
.y35{bottom:454.499981px;}
.y6a{bottom:461.880003px;}
.y16{bottom:469.124980px;}
.y4f{bottom:480.374980px;}
.y15{bottom:493.874979px;}
.y34{bottom:503.999979px;}
.y69{bottom:529.874978px;}
.y14{bottom:534.374978px;}
.y33{bottom:550.124977px;}
.y4d{bottom:565.379999px;}
.y68{bottom:571.499976px;}
.y13{bottom:574.874976px;}
.y32{bottom:593.999975px;}
.y12{bottom:599.624975px;}
.y31{bottom:618.749974px;}
.y4c{bottom:633.374974px;}
.y11{bottom:640.124973px;}
.y30{bottom:643.499973px;}
.y5f{bottom:661.004995px;}
.y2f{bottom:668.249972px;}
.y4b{bottom:673.874972px;}
.y10{bottom:695.249971px;}
.y2e{bottom:715.499970px;}
.yf{bottom:754.874969px;}
.y2d{bottom:757.124968px;}
.y49{bottom:758.879991px;}
.ye{bottom:779.624968px;}
.yd{bottom:804.374966px;}
.y48{bottom:805.499966px;}
.y2c{bottom:823.499966px;}
.yc{bottom:844.874965px;}
.y47{bottom:845.999965px;}
.y2b{bottom:848.249965px;}
.yb{bottom:869.624964px;}
.y46{bottom:870.749964px;}
.y2a{bottom:885.374963px;}
.y45{bottom:895.499963px;}
.y5e{bottom:899.999962px;}
.ya{bottom:910.124962px;}
.y29{bottom:922.499962px;}
.y5d{bottom:924.749961px;}
.y44{bottom:935.999961px;}
.y5c{bottom:949.499960px;}
.y9{bottom:950.624960px;}
.y28{bottom:959.624960px;}
.y8{bottom:975.374959px;}
.y43{bottom:982.124959px;}
.y5b{bottom:991.124959px;}
.y27{bottom:996.749958px;}
.y7{bottom:1000.124958px;}
.y6{bottom:1024.874957px;}
.y26{bottom:1033.874957px;}
.y5a{bottom:1036.124957px;}
.y5{bottom:1049.624956px;}
.y25{bottom:1070.999955px;}
.y24{bottom:1095.749954px;}
.y4{bottom:1104.749954px;}
.y59{bottom:1121.129976px;}
.y23{bottom:1133.999953px;}
.y42{bottom:1135.124953px;}
.y1{bottom:1228.379969px;}
.hd{height:45.804197px;}
.h7{height:47.373045px;}
.h5{height:47.557615px;}
.h2{height:49.148439px;}
.ha{height:55.608443px;}
.hc{height:57.374998px;}
.h6{height:71.336423px;}
.h9{height:76.550534px;}
.he{height:78.749997px;}
.hb{height:86.009762px;}
.h4{height:95.115230px;}
.h8{height:97.057613px;}
.hf{height:249.749990px;}
.h3{height:1157.624952px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:746.999983px;}
.w2{width:809.999966px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:18.000001px;}
.x4{left:22.499999px;}
.x5{left:33.749999px;}
.x3{left:41.999997px;}
.x1{left:56.671877px;}
.x8{left:73.499995px;}
.x7{left:165.374993px;}
.x6{left:172.124993px;}
.x2{left:433.078142px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:43.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000002pt;}
.ls2{letter-spacing:0.000034pt;}
.wsf{word-spacing:-30.789061pt;}
.wsc{word-spacing:-23.337890pt;}
.ws3{word-spacing:-15.449218pt;}
.ws13{word-spacing:-15.339843pt;}
.wsb{word-spacing:-0.084000pt;}
.ws1{word-spacing:-0.056000pt;}
.ws7{word-spacing:0.000000pt;}
.ws12{word-spacing:146.574211pt;}
.ws5{word-spacing:173.089836pt;}
.wsa{word-spacing:179.460928pt;}
.ws9{word-spacing:196.605459pt;}
.ws8{word-spacing:240.300770pt;}
.ws11{word-spacing:263.523425pt;}
.ws6{word-spacing:299.828111pt;}
.wsd{word-spacing:326.632798pt;}
.ws2{word-spacing:350.632797pt;}
.ws4{word-spacing:351.097641pt;}
.wse{word-spacing:351.378891pt;}
.ws10{word-spacing:368.960921pt;}
.ws0{word-spacing:2226.039175pt;}
._0{margin-left:-7.109370pt;}
._2{margin-left:-5.468750pt;}
._4{margin-left:-3.828125pt;}
._5{margin-left:-2.515625pt;}
._3{margin-left:-1.367186pt;}
._1{width:1.093750pt;}
._b{width:2.686815pt;}
._7{width:105.441400pt;}
._a{width:192.785146pt;}
._6{width:194.636709pt;}
._9{width:196.441396pt;}
._8{width:241.121083pt;}
.fs0{font-size:48.000002pt;}
.fs2{font-size:55.999998pt;}
.fs4{font-size:65.480000pt;}
.fs3{font-size:83.999997pt;}
.fs1{font-size:111.999995pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:20.999999pt;}
.y2{bottom:22.559931pt;}
.y3{bottom:37.560019pt;}
.y4e{bottom:39.999998pt;}
.y41{bottom:48.999998pt;}
.y22{bottom:50.999998pt;}
.y67{bottom:58.999998pt;}
.y40{bottom:70.999997pt;}
.y21{bottom:72.999997pt;}
.y66{bottom:77.999997pt;}
.y58{bottom:80.999997pt;}
.y65{bottom:96.999996pt;}
.y57{bottom:102.999996pt;}
.y20{bottom:105.999996pt;}
.y3f{bottom:106.999996pt;}
.y64{bottom:115.999995pt;}
.y63{bottom:134.999994pt;}
.y1f{bottom:138.999994pt;}
.y3e{bottom:142.999994pt;}
.y62{bottom:153.999994pt;}
.y1e{bottom:160.999993pt;}
.y61{bottom:172.999993pt;}
.y56{bottom:174.999993pt;}
.y3d{bottom:183.999992pt;}
.y60{bottom:191.999992pt;}
.y1d{bottom:193.999992pt;}
.y55{bottom:210.999991pt;}
.y1c{bottom:215.999991pt;}
.y3c{bottom:216.999991pt;}
.y54{bottom:246.999990pt;}
.y1b{bottom:248.999990pt;}
.y3b{bottom:249.999990pt;}
.y3a{bottom:271.999989pt;}
.y53{bottom:282.999988pt;}
.y1a{bottom:289.999988pt;}
.y39{bottom:304.999987pt;}
.y52{bottom:318.999987pt;}
.y38{bottom:326.999986pt;}
.y19{bottom:350.999985pt;}
.y51{bottom:354.999985pt;}
.y37{bottom:359.999985pt;}
.y18{bottom:372.999984pt;}
.y50{bottom:390.999984pt;}
.y36{bottom:392.999984pt;}
.y17{bottom:394.999984pt;}
.y35{bottom:403.999983pt;}
.y6a{bottom:410.560003pt;}
.y16{bottom:416.999983pt;}
.y4f{bottom:426.999982pt;}
.y15{bottom:438.999982pt;}
.y34{bottom:447.999981pt;}
.y69{bottom:470.999980pt;}
.y14{bottom:474.999980pt;}
.y33{bottom:488.999980pt;}
.y4d{bottom:502.559999pt;}
.y68{bottom:507.999979pt;}
.y13{bottom:510.999979pt;}
.y32{bottom:527.999978pt;}
.y12{bottom:532.999978pt;}
.y31{bottom:549.999977pt;}
.y4c{bottom:562.999977pt;}
.y11{bottom:568.999976pt;}
.y30{bottom:571.999976pt;}
.y5f{bottom:587.559996pt;}
.y2f{bottom:593.999975pt;}
.y4b{bottom:598.999975pt;}
.y10{bottom:617.999974pt;}
.y2e{bottom:635.999973pt;}
.yf{bottom:670.999972pt;}
.y2d{bottom:672.999972pt;}
.y49{bottom:674.559992pt;}
.ye{bottom:692.999971pt;}
.yd{bottom:714.999970pt;}
.y48{bottom:715.999970pt;}
.y2c{bottom:731.999969pt;}
.yc{bottom:750.999969pt;}
.y47{bottom:751.999969pt;}
.y2b{bottom:753.999969pt;}
.yb{bottom:772.999968pt;}
.y46{bottom:773.999968pt;}
.y2a{bottom:786.999967pt;}
.y45{bottom:795.999967pt;}
.y5e{bottom:799.999967pt;}
.ya{bottom:808.999966pt;}
.y29{bottom:819.999966pt;}
.y5d{bottom:821.999966pt;}
.y44{bottom:831.999965pt;}
.y5c{bottom:843.999965pt;}
.y9{bottom:844.999965pt;}
.y28{bottom:852.999964pt;}
.y8{bottom:866.999964pt;}
.y43{bottom:872.999964pt;}
.y5b{bottom:880.999963pt;}
.y27{bottom:885.999963pt;}
.y7{bottom:888.999963pt;}
.y6{bottom:910.999962pt;}
.y26{bottom:918.999962pt;}
.y5a{bottom:920.999962pt;}
.y5{bottom:932.999961pt;}
.y25{bottom:951.999960pt;}
.y24{bottom:973.999959pt;}
.y4{bottom:981.999959pt;}
.y59{bottom:996.559979pt;}
.y23{bottom:1007.999958pt;}
.y42{bottom:1008.999958pt;}
.y1{bottom:1091.893305pt;}
.hd{height:40.714842pt;}
.h7{height:42.109373pt;}
.h5{height:42.273436pt;}
.h2{height:43.687502pt;}
.ha{height:49.429727pt;}
.hc{height:50.999998pt;}
.h6{height:63.410154pt;}
.h9{height:68.044919pt;}
.he{height:69.999997pt;}
.hb{height:76.453122pt;}
.h4{height:84.546871pt;}
.h8{height:86.273434pt;}
.hf{height:221.999991pt;}
.h3{height:1028.999957pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:663.999985pt;}
.w2{width:719.999970pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:16.000001pt;}
.x4{left:19.999999pt;}
.x5{left:29.999999pt;}
.x3{left:37.333331pt;}
.x1{left:50.375002pt;}
.x8{left:65.333328pt;}
.x7{left:146.999994pt;}
.x6{left:152.999994pt;}
.x2{left:384.958348pt;}
}




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