
    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_61087d0382b7463d70295d6f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_cfd4168e49a5c3dafd96d62a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.114258;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_6d40e46b85f765edfa0a14b5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_0dd2e0ef75a3d1a9461e0e63.woff')format("woff");}.ff4{font-family:ff4;line-height:1.122070;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_587eefc0bf91b97512597e49.woff')format("woff");}.ff5{font-family:ff5;line-height:1.125000;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;}
.v1{vertical-align:53.999998px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-20.249999px;}
.ws3{word-spacing:-17.050781px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:272.988292px;}
.ws1{word-spacing:280.054677px;}
._8{margin-left:-8.831223px;}
._6{margin-left:-6.741761px;}
._3{margin-left:-4.964040px;}
._1{margin-left:-3.557784px;}
._0{margin-left:-1.799972px;}
._2{width:1.012527px;}
._5{width:2.067087px;}
._7{width:14.343749px;}
._4{width:157.408534px;}
.fc2{color:transparent;}
.fc1{color:rgb(55,53,47);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:44.999998px;}
.fs1{font-size:71.999997px;}
.fs5{font-size:89.999996px;}
.fs4{font-size:107.999996px;}
.fs3{font-size:134.999994px;}
.fs0{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.520000px;}
.y4f{bottom:4.500000px;}
.y64{bottom:4.590000px;}
.y39{bottom:4.635000px;}
.y67{bottom:4.725000px;}
.ya{bottom:4.815000px;}
.y37{bottom:21.374999px;}
.y4d{bottom:37.124998px;}
.y87{bottom:38.249998px;}
.yb{bottom:42.480048px;}
.y62{bottom:42.749998px;}
.y36{bottom:58.499998px;}
.y86{bottom:65.249997px;}
.y61{bottom:69.749997px;}
.y4c{bottom:75.374997px;}
.y85{bottom:92.249996px;}
.y35{bottom:96.749996px;}
.y1{bottom:108.000045px;}
.y4b{bottom:112.499995px;}
.y60{bottom:123.749995px;}
.y3a{bottom:124.560044px;}
.y84{bottom:130.499995px;}
.y34{bottom:133.874994px;}
.y4a{bottom:150.749994px;}
.y83{bottom:157.499993px;}
.y5f{bottom:160.874993px;}
.y33{bottom:172.124993px;}
.y71{bottom:177.749993px;}
.y49{bottom:187.874992px;}
.y82{bottom:194.624992px;}
.y5e{bottom:199.124992px;}
.y32{bottom:210.374991px;}
.y48{bottom:214.874991px;}
.y81{bottom:221.624991px;}
.y31{bottom:237.374990px;}
.y47{bottom:253.124989px;}
.y1e{bottom:254.249989px;}
.y80{bottom:259.874989px;}
.y30{bottom:274.499989px;}
.y1d{bottom:281.249988px;}
.y7f{bottom:286.874988px;}
.y46{bottom:291.374988px;}
.y2f{bottom:301.499987px;}
.y66{bottom:302.400037px;}
.y1c{bottom:308.249987px;}
.y5d{bottom:312.749987px;}
.y7e{bottom:313.874987px;}
.y2e{bottom:328.499986px;}
.y1b{bottom:346.499986px;}
.y5c{bottom:349.874985px;}
.y7d{bottom:350.999985px;}
.y2d{bottom:366.749985px;}
.y1a{bottom:373.499984px;}
.y7c{bottom:377.999984px;}
.y5b{bottom:388.124984px;}
.y50{bottom:394.560033px;}
.y2c{bottom:403.874983px;}
.y19{bottom:411.749983px;}
.y5a{bottom:415.124983px;}
.y7b{bottom:416.249983px;}
.y18{bottom:438.749982px;}
.y2b{bottom:442.124982px;}
.y7a{bottom:443.249982px;}
.y59{bottom:453.374981px;}
.y70{bottom:469.124980px;}
.y17{bottom:475.874980px;}
.y2a{bottom:480.374980px;}
.y79{bottom:481.499980px;}
.y16{bottom:502.874979px;}
.y38{bottom:507.240028px;}
.y45{bottom:507.374979px;}
.y78{bottom:508.499979px;}
.y29{bottom:517.499978px;}
.y6f{bottom:534.374978px;}
.y15{bottom:541.124977px;}
.y44{bottom:543.374977px;}
.y58{bottom:544.499977px;}
.y77{bottom:545.624977px;}
.y28{bottom:555.749977px;}
.y14{bottom:568.124976px;}
.y6e{bottom:571.499976px;}
.y27{bottom:582.749976px;}
.y8{bottom:597.374975px;}
.y13{bottom:605.249975px;}
.y43{bottom:606.374975px;}
.y6d{bottom:609.749975px;}
.y26{bottom:618.749974px;}
.y57{bottom:619.874974px;}
.y12{bottom:632.249974px;}
.y42{bottom:633.374974px;}
.y7{bottom:634.499974px;}
.y6c{bottom:646.874973px;}
.y56{bottom:658.124973px;}
.y6{bottom:661.499972px;}
.y11{bottom:670.499972px;}
.y72{bottom:675.000021px;}
.y6b{bottom:685.124971px;}
.y65{bottom:686.160021px;}
.y55{bottom:696.374971px;}
.y10{bottom:697.499971px;}
.y5{bottom:698.624971px;}
.y9{bottom:700.560020px;}
.y41{bottom:708.749970px;}
.y4{bottom:712.124970px;}
.y25{bottom:719.999970px;}
.y6a{bottom:723.374970px;}
.yf{bottom:724.499970px;}
.y54{bottom:733.499969px;}
.y76{bottom:737.999969px;}
.y24{bottom:746.999969px;}
.y53{bottom:760.499968px;}
.y75{bottom:764.999968px;}
.y3{bottom:768.374968px;}
.y23{bottom:773.999968px;}
.y4e{bottom:774.000017px;}
.y40{bottom:784.124967px;}
.y69{bottom:787.499967px;}
.y52{bottom:797.624967px;}
.y22{bottom:800.999967px;}
.ye{bottom:802.124967px;}
.y3f{bottom:822.374966px;}
.y68{bottom:824.624966px;}
.y21{bottom:836.999965px;}
.yd{bottom:842.624965px;}
.y2{bottom:845.999965px;}
.y74{bottom:849.374965px;}
.y3e{bottom:859.499964px;}
.y73{bottom:876.374963px;}
.y3d{bottom:886.499963px;}
.y89{bottom:897.749963px;}
.y51{bottom:913.499962px;}
.y20{bottom:914.624962px;}
.y3c{bottom:924.749961px;}
.y1f{bottom:947.249961px;}
.y3b{bottom:951.749960px;}
.y88{bottom:1017.000007px;}
.y63{bottom:1055.160006px;}
.h6{height:14.039999px;}
.hb{height:22.679999px;}
.h5{height:23.039999px;}
.h7{height:40.781248px;}
.h3{height:65.249997px;}
.ha{height:81.562497px;}
.h9{height:97.874996px;}
.h4{height:119.249995px;}
.h8{height:122.343745px;}
.h2{height:163.124993px;}
.h1{height:971.999960px;}
.h0{height:1188.000000px;}
.w4{width:6.120000px;}
.w5{width:8.280000px;}
.w3{width:70.199997px;}
.w6{width:83.519997px;}
.w7{width:158.759993px;}
.w2{width:168.839993px;}
.w1{width:701.999971px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:1.352115px;}
.xc{left:7.453125px;}
.x4{left:10.125000px;}
.x9{left:31.499999px;}
.x2{left:34.874999px;}
.x6{left:40.319998px;}
.xd{left:60.046872px;}
.xa{left:63.878904px;}
.x1{left:107.999996px;}
.xe{left:172.079993px;}
.x3{left:180.685539px;}
.x5{left:287.999988px;}
.xb{left:869.399964px;}
.xf{left:870.479964px;}
.x7{left:871.559964px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:47.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-17.999999pt;}
.ws3{word-spacing:-15.156250pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:242.656260pt;}
.ws1{word-spacing:248.937490pt;}
._8{margin-left:-7.849976pt;}
._6{margin-left:-5.992676pt;}
._3{margin-left:-4.412480pt;}
._1{margin-left:-3.162475pt;}
._0{margin-left:-1.599976pt;}
._2{width:0.900024pt;}
._5{width:1.837411pt;}
._7{width:12.749999pt;}
._4{width:139.918697pt;}
.fs2{font-size:39.999998pt;}
.fs1{font-size:63.999997pt;}
.fs5{font-size:79.999997pt;}
.fs4{font-size:95.999996pt;}
.fs3{font-size:119.999995pt;}
.fs0{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.240000pt;}
.y4f{bottom:4.000000pt;}
.y64{bottom:4.080000pt;}
.y39{bottom:4.120000pt;}
.y67{bottom:4.200000pt;}
.ya{bottom:4.280000pt;}
.y37{bottom:18.999999pt;}
.y4d{bottom:32.999999pt;}
.y87{bottom:33.999999pt;}
.yb{bottom:37.760042pt;}
.y62{bottom:37.999998pt;}
.y36{bottom:51.999998pt;}
.y86{bottom:57.999998pt;}
.y61{bottom:61.999997pt;}
.y4c{bottom:66.999997pt;}
.y85{bottom:81.999997pt;}
.y35{bottom:85.999996pt;}
.y1{bottom:96.000040pt;}
.y4b{bottom:99.999996pt;}
.y60{bottom:109.999995pt;}
.y3a{bottom:110.720039pt;}
.y84{bottom:115.999995pt;}
.y34{bottom:118.999995pt;}
.y4a{bottom:133.999994pt;}
.y83{bottom:139.999994pt;}
.y5f{bottom:142.999994pt;}
.y33{bottom:152.999994pt;}
.y71{bottom:157.999993pt;}
.y49{bottom:166.999993pt;}
.y82{bottom:172.999993pt;}
.y5e{bottom:176.999993pt;}
.y32{bottom:186.999992pt;}
.y48{bottom:190.999992pt;}
.y81{bottom:196.999992pt;}
.y31{bottom:210.999991pt;}
.y47{bottom:224.999991pt;}
.y1e{bottom:225.999991pt;}
.y80{bottom:230.999990pt;}
.y30{bottom:243.999990pt;}
.y1d{bottom:249.999990pt;}
.y7f{bottom:254.999989pt;}
.y46{bottom:258.999989pt;}
.y2f{bottom:267.999989pt;}
.y66{bottom:268.800033pt;}
.y1c{bottom:273.999989pt;}
.y5d{bottom:277.999988pt;}
.y7e{bottom:278.999988pt;}
.y2e{bottom:291.999988pt;}
.y1b{bottom:307.999987pt;}
.y5c{bottom:310.999987pt;}
.y7d{bottom:311.999987pt;}
.y2d{bottom:325.999986pt;}
.y1a{bottom:331.999986pt;}
.y7c{bottom:335.999986pt;}
.y5b{bottom:344.999986pt;}
.y50{bottom:350.720029pt;}
.y2c{bottom:358.999985pt;}
.y19{bottom:365.999985pt;}
.y5a{bottom:368.999985pt;}
.y7b{bottom:369.999985pt;}
.y18{bottom:389.999984pt;}
.y2b{bottom:392.999984pt;}
.y7a{bottom:393.999984pt;}
.y59{bottom:402.999983pt;}
.y70{bottom:416.999983pt;}
.y17{bottom:422.999982pt;}
.y2a{bottom:426.999982pt;}
.y79{bottom:427.999982pt;}
.y16{bottom:446.999981pt;}
.y38{bottom:450.880025pt;}
.y45{bottom:450.999981pt;}
.y78{bottom:451.999981pt;}
.y29{bottom:459.999981pt;}
.y6f{bottom:474.999980pt;}
.y15{bottom:480.999980pt;}
.y44{bottom:482.999980pt;}
.y58{bottom:483.999980pt;}
.y77{bottom:484.999980pt;}
.y28{bottom:493.999979pt;}
.y14{bottom:504.999979pt;}
.y6e{bottom:507.999979pt;}
.y27{bottom:517.999978pt;}
.y8{bottom:530.999978pt;}
.y13{bottom:537.999978pt;}
.y43{bottom:538.999978pt;}
.y6d{bottom:541.999977pt;}
.y26{bottom:549.999977pt;}
.y57{bottom:550.999977pt;}
.y12{bottom:561.999977pt;}
.y42{bottom:562.999977pt;}
.y7{bottom:563.999977pt;}
.y6c{bottom:574.999976pt;}
.y56{bottom:584.999976pt;}
.y6{bottom:587.999976pt;}
.y11{bottom:595.999975pt;}
.y72{bottom:600.000019pt;}
.y6b{bottom:608.999975pt;}
.y65{bottom:609.920019pt;}
.y55{bottom:618.999974pt;}
.y10{bottom:619.999974pt;}
.y5{bottom:620.999974pt;}
.y9{bottom:622.720018pt;}
.y41{bottom:629.999974pt;}
.y4{bottom:632.999974pt;}
.y25{bottom:639.999973pt;}
.y6a{bottom:642.999973pt;}
.yf{bottom:643.999973pt;}
.y54{bottom:651.999973pt;}
.y76{bottom:655.999973pt;}
.y24{bottom:663.999972pt;}
.y53{bottom:675.999972pt;}
.y75{bottom:679.999972pt;}
.y3{bottom:682.999972pt;}
.y23{bottom:687.999971pt;}
.y4e{bottom:688.000015pt;}
.y40{bottom:696.999971pt;}
.y69{bottom:699.999971pt;}
.y52{bottom:708.999970pt;}
.y22{bottom:711.999970pt;}
.ye{bottom:712.999970pt;}
.y3f{bottom:730.999970pt;}
.y68{bottom:732.999969pt;}
.y21{bottom:743.999969pt;}
.yd{bottom:748.999969pt;}
.y2{bottom:751.999969pt;}
.y74{bottom:754.999969pt;}
.y3e{bottom:763.999968pt;}
.y73{bottom:778.999968pt;}
.y3d{bottom:787.999967pt;}
.y89{bottom:797.999967pt;}
.y51{bottom:811.999966pt;}
.y20{bottom:812.999966pt;}
.y3c{bottom:821.999966pt;}
.y1f{bottom:841.999965pt;}
.y3b{bottom:845.999965pt;}
.y88{bottom:904.000006pt;}
.y63{bottom:937.920005pt;}
.h6{height:12.479999pt;}
.hb{height:20.159999pt;}
.h5{height:20.479999pt;}
.h7{height:36.249998pt;}
.h3{height:57.999998pt;}
.ha{height:72.499997pt;}
.h9{height:86.999996pt;}
.h4{height:105.999996pt;}
.h8{height:108.749995pt;}
.h2{height:144.999994pt;}
.h1{height:863.999964pt;}
.h0{height:1056.000000pt;}
.w4{width:5.440000pt;}
.w5{width:7.360000pt;}
.w3{width:62.399997pt;}
.w6{width:74.239997pt;}
.w7{width:141.119994pt;}
.w2{width:150.079994pt;}
.w1{width:623.999974pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.201880pt;}
.xc{left:6.625000pt;}
.x4{left:9.000000pt;}
.x9{left:27.999999pt;}
.x2{left:30.999999pt;}
.x6{left:35.839999pt;}
.xd{left:53.374998pt;}
.xa{left:56.781248pt;}
.x1{left:95.999996pt;}
.xe{left:152.959994pt;}
.x3{left:160.609368pt;}
.x5{left:255.999989pt;}
.xb{left:772.799968pt;}
.xf{left:773.759968pt;}
.x7{left:774.719968pt;}
}




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