
    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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99658c35a100c5a2d65bbd63.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5ba21a7c944a0a0a263e252e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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:24.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.071946px;}
.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:-46.545972px;}
.ws2{word-spacing:-29.916000px;}
.ws5{word-spacing:-26.570394px;}
.ws4{word-spacing:-23.272986px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1186.646832px;}
._1a{margin-left:-1539.114000px;}
._19{margin-left:-1497.684000px;}
._1c{margin-left:-23.567172px;}
._18{margin-left:-13.932000px;}
._b{margin-left:-8.561574px;}
._4{margin-left:-6.480000px;}
._c{margin-left:-5.204904px;}
._5{margin-left:-3.167244px;}
._3{margin-left:-1.188000px;}
._1{width:1.319820px;}
._6{width:2.502090px;}
._2{width:4.740000px;}
._d{width:6.284094px;}
._7{width:8.417682px;}
._e{width:9.449718px;}
._15{width:10.612926px;}
._8{width:11.846298px;}
._a{width:14.748930px;}
._14{width:16.319022px;}
._13{width:17.482878px;}
._9{width:18.490122px;}
._f{width:23.779044px;}
._17{width:28.346724px;}
._10{width:29.929536px;}
._16{width:38.563056px;}
._12{width:40.433652px;}
._11{width:46.045440px;}
._1b{width:1135.890000px;}
._0{width:2113.657500px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(195,65,19);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.328000px;}
.fs7{font-size:60.036000px;}
.fs5{font-size:71.946000px;}
.fs9{font-size:78.066000px;}
.fs0{font-size:84.018000px;}
.fs4{font-size:95.922000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:131.982000px;}
.fs8{font-size:168.036000px;}
.fs1{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y18{bottom:10.246500px;}
.y5d{bottom:10.374000px;}
.y6{bottom:38.011500px;}
.y19{bottom:39.798000px;}
.y2{bottom:40.861500px;}
.y3a{bottom:60.037500px;}
.y6c{bottom:72.793500px;}
.y5{bottom:74.877000px;}
.y4b{bottom:75.345000px;}
.y30{bottom:80.574000px;}
.y59{bottom:82.402500px;}
.y58{bottom:82.530000px;}
.y6d{bottom:85.549500px;}
.y4d{bottom:86.739000px;}
.y45{bottom:90.055500px;}
.y2f{bottom:100.855500px;}
.y5c{bottom:106.681500px;}
.y44{bottom:120.202500px;}
.y2e{bottom:120.925500px;}
.y17{bottom:122.286000px;}
.y39{bottom:128.451000px;}
.y5b{bottom:130.407000px;}
.y2d{bottom:141.037500px;}
.y38{bottom:148.690500px;}
.y2c{bottom:161.277000px;}
.y43{bottom:167.272500px;}
.y6b{bottom:167.910000px;}
.y37{bottom:168.802500px;}
.y49{bottom:170.886000px;}
.y12{bottom:172.672500px;}
.y53{bottom:177.774000px;}
.y2b{bottom:181.389000px;}
.y16{bottom:181.983000px;}
.y36{bottom:188.872500px;}
.y48{bottom:192.655500px;}
.y5a{bottom:193.846500px;}
.y6a{bottom:195.633000px;}
.y11{bottom:199.374000px;}
.y2a{bottom:201.501000px;}
.y52{bottom:204.477000px;}
.y9{bottom:208.558500px;}
.yc{bottom:208.855500px;}
.y55{bottom:208.983000px;}
.y35{bottom:209.154000px;}
.y15{bottom:212.301000px;}
.y42{bottom:214.255500px;}
.y69{bottom:219.189000px;}
.y29{bottom:221.739000px;}
.y10{bottom:225.949500px;}
.y34{bottom:229.222500px;}
.y51{bottom:231.051000px;}
.y57{bottom:237.174000px;}
.y8{bottom:238.833000px;}
.yb{bottom:239.002500px;}
.y28{bottom:241.851000px;}
.y68{bottom:242.745000px;}
.y41{bottom:244.402500px;}
.y33{bottom:249.505500px;}
.yf{bottom:252.651000px;}
.y6f{bottom:256.521000px;}
.y50{bottom:257.754000px;}
.y56{bottom:260.730000px;}
.y27{bottom:261.921000px;}
.y4c{bottom:262.686000px;}
.y23{bottom:266.301000px;}
.y67{bottom:266.428500px;}
.y7{bottom:268.978500px;}
.ya{bottom:269.277000px;}
.y32{bottom:269.574000px;}
.y54{bottom:277.101000px;}
.ye{bottom:279.354000px;}
.y26{bottom:282.202500px;}
.y4f{bottom:284.455500px;}
.y22{bottom:286.411500px;}
.y31{bottom:289.686000px;}
.y40{bottom:291.472500px;}
.y25{bottom:302.272500px;}
.yd{bottom:306.055500px;}
.y21{bottom:306.651000px;}
.y4e{bottom:311.158500px;}
.y66{bottom:313.539000px;}
.y3f{bottom:321.661500px;}
.y24{bottom:322.554000px;}
.y20{bottom:326.721000px;}
.y65{bottom:337.222500px;}
.y1f{bottom:347.002500px;}
.y3e{bottom:351.934500px;}
.y64{bottom:360.778500px;}
.y5e{bottom:361.374000px;}
.y1e{bottom:367.072500px;}
.y3d{bottom:382.081500px;}
.y63{bottom:384.334500px;}
.y1d{bottom:387.183000px;}
.y14{bottom:401.428500px;}
.y6e{bottom:404.149500px;}
.y1c{bottom:407.422500px;}
.y62{bottom:408.061500px;}
.y3c{bottom:412.398000px;}
.y1b{bottom:427.534500px;}
.y61{bottom:431.574000px;}
.y1a{bottom:447.646500px;}
.y4{bottom:453.345000px;}
.y5f{bottom:472.222500px;}
.y4a{bottom:477.325500px;}
.y60{bottom:478.855500px;}
.y3b{bottom:483.193500px;}
.y47{bottom:484.255500px;}
.y46{bottom:507.642000px;}
.y3{bottom:522.183000px;}
.y13{bottom:564.193500px;}
.h9{height:43.502648px;}
.ha{height:52.132746px;}
.h8{height:54.606656px;}
.h3{height:55.998325px;}
.hc{height:56.567355px;}
.hd{height:60.880230px;}
.h7{height:69.505980px;}
.h5{height:78.257812px;}
.h6{height:95.635395px;}
.hb{height:121.760461px;}
.h4{height:191.270789px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x1a{left:43.369500px;}
.x1{left:59.569500px;}
.x2e{left:70.497000px;}
.x17{left:86.103000px;}
.x11{left:93.160500px;}
.x1b{left:97.369500px;}
.xa{left:112.336500px;}
.x26{left:116.419500px;}
.x35{left:125.263500px;}
.x3{left:133.341000px;}
.x30{left:134.404500px;}
.x18{left:140.103000px;}
.x9{left:143.419500px;}
.x39{left:160.213500px;}
.xb{left:169.356000px;}
.x2{left:178.497000px;}
.x3c{left:189.595500px;}
.x3a{left:213.321000px;}
.x16{left:228.459000px;}
.xe{left:242.703000px;}
.xf{left:253.630500px;}
.x13{left:275.697000px;}
.x5{left:279.439500px;}
.x25{left:288.751500px;}
.x24{left:297.892500px;}
.x3b{left:308.863500px;}
.x15{left:323.703000px;}
.x3e{left:336.288000px;}
.x28{left:339.435000px;}
.x27{left:347.683500px;}
.x19{left:377.404500px;}
.x3d{left:430.044000px;}
.x4{left:436.635000px;}
.x10{left:442.630500px;}
.x1f{left:465.760500px;}
.x14{left:479.239500px;}
.x6{left:491.230500px;}
.x36{left:512.830500px;}
.x1e{left:519.760500px;}
.x29{left:548.121000px;}
.x2a{left:556.795500px;}
.x33{left:563.386500px;}
.x37{left:566.830500px;}
.x20{left:567.892500px;}
.x8{left:580.351500px;}
.xd{left:587.835000px;}
.x31{left:589.365000px;}
.x38{left:642.004500px;}
.x1c{left:659.863500px;}
.x23{left:661.351500px;}
.x32{left:667.516500px;}
.x7{left:670.492500px;}
.x22{left:674.107500px;}
.x1d{left:713.863500px;}
.x2d{left:729.468000px;}
.xc{left:749.707500px;}
.x2b{left:768.883500px;}
.x2c{left:780.151500px;}
.x21{left:784.659000px;}
.x12{left:847.630500px;}
.x34{left:902.863500px;}
.x2f{left:1022.386500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.063952pt;}
.ws3{word-spacing:-41.374197pt;}
.ws2{word-spacing:-26.592000pt;}
.ws5{word-spacing:-23.618128pt;}
.ws4{word-spacing:-20.687099pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1054.797184pt;}
._1a{margin-left:-1368.101333pt;}
._19{margin-left:-1331.274667pt;}
._1c{margin-left:-20.948597pt;}
._18{margin-left:-12.384000pt;}
._b{margin-left:-7.610288pt;}
._4{margin-left:-5.760000pt;}
._c{margin-left:-4.626581pt;}
._5{margin-left:-2.815328pt;}
._3{margin-left:-1.056000pt;}
._1{width:1.173173pt;}
._6{width:2.224080pt;}
._2{width:4.213333pt;}
._d{width:5.585861pt;}
._7{width:7.482384pt;}
._e{width:8.399749pt;}
._15{width:9.433712pt;}
._8{width:10.530043pt;}
._a{width:13.110160pt;}
._14{width:14.505797pt;}
._13{width:15.540336pt;}
._9{width:16.435664pt;}
._f{width:21.136928pt;}
._17{width:25.197088pt;}
._10{width:26.604032pt;}
._16{width:34.278272pt;}
._12{width:35.941024pt;}
._11{width:40.929280pt;}
._1b{width:1009.680000pt;}
._0{width:1878.806667pt;}
.fs6{font-size:36.736000pt;}
.fs7{font-size:53.365333pt;}
.fs5{font-size:63.952000pt;}
.fs9{font-size:69.392000pt;}
.fs0{font-size:74.682667pt;}
.fs4{font-size:85.264000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:117.317333pt;}
.fs8{font-size:149.365333pt;}
.fs1{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y18{bottom:9.108000pt;}
.y5d{bottom:9.221333pt;}
.y6{bottom:33.788000pt;}
.y19{bottom:35.376000pt;}
.y2{bottom:36.321333pt;}
.y3a{bottom:53.366667pt;}
.y6c{bottom:64.705333pt;}
.y5{bottom:66.557333pt;}
.y4b{bottom:66.973333pt;}
.y30{bottom:71.621333pt;}
.y59{bottom:73.246667pt;}
.y58{bottom:73.360000pt;}
.y6d{bottom:76.044000pt;}
.y4d{bottom:77.101333pt;}
.y45{bottom:80.049333pt;}
.y2f{bottom:89.649333pt;}
.y5c{bottom:94.828000pt;}
.y44{bottom:106.846667pt;}
.y2e{bottom:107.489333pt;}
.y17{bottom:108.698667pt;}
.y39{bottom:114.178667pt;}
.y5b{bottom:115.917333pt;}
.y2d{bottom:125.366667pt;}
.y38{bottom:132.169333pt;}
.y2c{bottom:143.357333pt;}
.y43{bottom:148.686667pt;}
.y6b{bottom:149.253333pt;}
.y37{bottom:150.046667pt;}
.y49{bottom:151.898667pt;}
.y12{bottom:153.486667pt;}
.y53{bottom:158.021333pt;}
.y2b{bottom:161.234667pt;}
.y16{bottom:161.762667pt;}
.y36{bottom:167.886667pt;}
.y48{bottom:171.249333pt;}
.y5a{bottom:172.308000pt;}
.y6a{bottom:173.896000pt;}
.y11{bottom:177.221333pt;}
.y2a{bottom:179.112000pt;}
.y52{bottom:181.757333pt;}
.y9{bottom:185.385333pt;}
.yc{bottom:185.649333pt;}
.y55{bottom:185.762667pt;}
.y35{bottom:185.914667pt;}
.y15{bottom:188.712000pt;}
.y42{bottom:190.449333pt;}
.y69{bottom:194.834667pt;}
.y29{bottom:197.101333pt;}
.y10{bottom:200.844000pt;}
.y34{bottom:203.753333pt;}
.y51{bottom:205.378667pt;}
.y57{bottom:210.821333pt;}
.y8{bottom:212.296000pt;}
.yb{bottom:212.446667pt;}
.y28{bottom:214.978667pt;}
.y68{bottom:215.773333pt;}
.y41{bottom:217.246667pt;}
.y33{bottom:221.782667pt;}
.yf{bottom:224.578667pt;}
.y6f{bottom:228.018667pt;}
.y50{bottom:229.114667pt;}
.y56{bottom:231.760000pt;}
.y27{bottom:232.818667pt;}
.y4c{bottom:233.498667pt;}
.y23{bottom:236.712000pt;}
.y67{bottom:236.825333pt;}
.y7{bottom:239.092000pt;}
.ya{bottom:239.357333pt;}
.y32{bottom:239.621333pt;}
.y54{bottom:246.312000pt;}
.ye{bottom:248.314667pt;}
.y26{bottom:250.846667pt;}
.y4f{bottom:252.849333pt;}
.y22{bottom:254.588000pt;}
.y31{bottom:257.498667pt;}
.y40{bottom:259.086667pt;}
.y25{bottom:268.686667pt;}
.yd{bottom:272.049333pt;}
.y21{bottom:272.578667pt;}
.y4e{bottom:276.585333pt;}
.y66{bottom:278.701333pt;}
.y3f{bottom:285.921333pt;}
.y24{bottom:286.714667pt;}
.y20{bottom:290.418667pt;}
.y65{bottom:299.753333pt;}
.y1f{bottom:308.446667pt;}
.y3e{bottom:312.830667pt;}
.y64{bottom:320.692000pt;}
.y5e{bottom:321.221333pt;}
.y1e{bottom:326.286667pt;}
.y3d{bottom:339.628000pt;}
.y63{bottom:341.630667pt;}
.y1d{bottom:344.162667pt;}
.y14{bottom:356.825333pt;}
.y6e{bottom:359.244000pt;}
.y1c{bottom:362.153333pt;}
.y62{bottom:362.721333pt;}
.y3c{bottom:366.576000pt;}
.y1b{bottom:380.030667pt;}
.y61{bottom:383.621333pt;}
.y1a{bottom:397.908000pt;}
.y4{bottom:402.973333pt;}
.y5f{bottom:419.753333pt;}
.y4a{bottom:424.289333pt;}
.y60{bottom:425.649333pt;}
.y3b{bottom:429.505333pt;}
.y47{bottom:430.449333pt;}
.y46{bottom:451.237333pt;}
.y3{bottom:464.162667pt;}
.y13{bottom:501.505333pt;}
.h9{height:38.669021pt;}
.ha{height:46.340219pt;}
.h8{height:48.539250pt;}
.h3{height:49.776289pt;}
.hc{height:50.282094pt;}
.hd{height:54.115760pt;}
.h7{height:61.783094pt;}
.h5{height:69.562500pt;}
.h6{height:85.009240pt;}
.hb{height:108.231521pt;}
.h4{height:170.018479pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x1a{left:38.550667pt;}
.x1{left:52.950667pt;}
.x2e{left:62.664000pt;}
.x17{left:76.536000pt;}
.x11{left:82.809333pt;}
.x1b{left:86.550667pt;}
.xa{left:99.854667pt;}
.x26{left:103.484000pt;}
.x35{left:111.345333pt;}
.x3{left:118.525333pt;}
.x30{left:119.470667pt;}
.x18{left:124.536000pt;}
.x9{left:127.484000pt;}
.x39{left:142.412000pt;}
.xb{left:150.538667pt;}
.x2{left:158.664000pt;}
.x3c{left:168.529333pt;}
.x3a{left:189.618667pt;}
.x16{left:203.074667pt;}
.xe{left:215.736000pt;}
.xf{left:225.449333pt;}
.x13{left:245.064000pt;}
.x5{left:248.390667pt;}
.x25{left:256.668000pt;}
.x24{left:264.793333pt;}
.x3b{left:274.545333pt;}
.x15{left:287.736000pt;}
.x3e{left:298.922667pt;}
.x28{left:301.720000pt;}
.x27{left:309.052000pt;}
.x19{left:335.470667pt;}
.x3d{left:382.261333pt;}
.x4{left:388.120000pt;}
.x10{left:393.449333pt;}
.x1f{left:414.009333pt;}
.x14{left:425.990667pt;}
.x6{left:436.649333pt;}
.x36{left:455.849333pt;}
.x1e{left:462.009333pt;}
.x29{left:487.218667pt;}
.x2a{left:494.929333pt;}
.x33{left:500.788000pt;}
.x37{left:503.849333pt;}
.x20{left:504.793333pt;}
.x8{left:515.868000pt;}
.xd{left:522.520000pt;}
.x31{left:523.880000pt;}
.x38{left:570.670667pt;}
.x1c{left:586.545333pt;}
.x23{left:587.868000pt;}
.x32{left:593.348000pt;}
.x7{left:595.993333pt;}
.x22{left:599.206667pt;}
.x1d{left:634.545333pt;}
.x2d{left:648.416000pt;}
.xc{left:666.406667pt;}
.x2b{left:683.452000pt;}
.x2c{left:693.468000pt;}
.x21{left:697.474667pt;}
.x12{left:753.449333pt;}
.x34{left:802.545333pt;}
.x2f{left:908.788000pt;}
}




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