
    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_afdaa49e054b60147e26540a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_96f057b870c93e25b9631993.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_ab2f82b200898234cb391f18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_bdffc489e190f7e31339b889.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_75e46486653ef0b6600bd72a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912500;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:ff7;src:url('chunks/assets/font_3e1c3c0aae9cb02a1536b3ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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:ff8;src:url('chunks/assets/font_d1391796f59759c049bb2889.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.820801;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:ff9;src:url('chunks/assets/font_f96e6082a0b0ac7f51546162.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.728000px;}
.ls5{letter-spacing:1.800000px;}
.ls4{letter-spacing:4.104000px;}
.ls3{letter-spacing:4.176000px;}
.ls8{letter-spacing:7.416000px;}
.ls7{letter-spacing:7.488000px;}
.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;}
}
.ws0{word-spacing:-120.000000px;}
.ws9{word-spacing:-79.488000px;}
.ws8{word-spacing:-73.800000px;}
.ws7{word-spacing:-72.360000px;}
.ws1{word-spacing:-72.000000px;}
.ws6{word-spacing:-60.048000px;}
.wsa{word-spacing:-56.872800px;}
.ws5{word-spacing:-18.000000px;}
.ws2{word-spacing:-12.738000px;}
.ws4{word-spacing:-0.158400px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-29.808000px;}
._e{margin-left:-12.096000px;}
._1{margin-left:-8.040000px;}
._b{margin-left:-6.624000px;}
._10{margin-left:-4.687200px;}
._d{margin-left:-3.484800px;}
._2{margin-left:-2.361600px;}
._0{margin-left:-1.231200px;}
._c{width:1.008000px;}
._7{width:2.016000px;}
._8{width:3.888000px;}
._9{width:5.760000px;}
._5{width:6.768000px;}
._6{width:8.208000px;}
._4{width:9.612000px;}
._3{width:11.016000px;}
._f{width:15.264000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:134.035200px;}
.y6f{bottom:134.035350px;}
.y11{bottom:138.102600px;}
.y42{bottom:156.535200px;}
.y6e{bottom:156.535350px;}
.y10{bottom:160.602600px;}
.y41{bottom:179.035200px;}
.y6d{bottom:179.035350px;}
.yf{bottom:183.102600px;}
.y40{bottom:201.535200px;}
.y6c{bottom:201.535350px;}
.ye{bottom:205.602600px;}
.y3f{bottom:224.035200px;}
.y6b{bottom:224.035350px;}
.yd{bottom:228.102600px;}
.y3e{bottom:246.535200px;}
.y6a{bottom:246.535350px;}
.yc{bottom:250.602600px;}
.y3d{bottom:269.035200px;}
.y69{bottom:269.035350px;}
.yb{bottom:273.102600px;}
.y3c{bottom:291.535200px;}
.y68{bottom:291.535350px;}
.ya{bottom:295.602600px;}
.y3b{bottom:314.035200px;}
.y67{bottom:314.035350px;}
.y9{bottom:318.102600px;}
.y3a{bottom:336.535200px;}
.y66{bottom:336.535350px;}
.y8{bottom:340.602600px;}
.y39{bottom:359.035200px;}
.y65{bottom:359.035350px;}
.y7{bottom:363.102600px;}
.y38{bottom:381.535200px;}
.y64{bottom:381.535350px;}
.y6{bottom:385.602600px;}
.y37{bottom:404.035200px;}
.y63{bottom:404.035350px;}
.y5{bottom:408.102600px;}
.y36{bottom:426.535200px;}
.y62{bottom:426.535350px;}
.y35{bottom:449.035200px;}
.y61{bottom:449.035350px;}
.y34{bottom:471.535200px;}
.y60{bottom:471.535350px;}
.y33{bottom:494.035200px;}
.y5f{bottom:494.035350px;}
.y32{bottom:516.535200px;}
.y5e{bottom:516.535350px;}
.y31{bottom:539.035200px;}
.y5d{bottom:539.035350px;}
.y30{bottom:561.535200px;}
.y5c{bottom:561.535350px;}
.y2f{bottom:584.035200px;}
.y5b{bottom:584.035350px;}
.y2e{bottom:606.535200px;}
.y5a{bottom:606.535350px;}
.y2d{bottom:629.035200px;}
.y59{bottom:629.035350px;}
.y2c{bottom:651.535200px;}
.y58{bottom:651.535350px;}
.y2b{bottom:674.035200px;}
.y57{bottom:674.035350px;}
.y2a{bottom:696.535200px;}
.y56{bottom:696.535350px;}
.y29{bottom:719.035200px;}
.y55{bottom:719.035350px;}
.y28{bottom:741.535200px;}
.y54{bottom:741.535350px;}
.y27{bottom:764.035200px;}
.y53{bottom:764.035350px;}
.y26{bottom:786.535200px;}
.y52{bottom:786.535350px;}
.y25{bottom:809.035200px;}
.y51{bottom:809.035350px;}
.y24{bottom:831.535200px;}
.y50{bottom:831.535350px;}
.y23{bottom:854.035200px;}
.y4f{bottom:854.035350px;}
.y22{bottom:876.535200px;}
.y4e{bottom:876.535350px;}
.y4{bottom:893.358600px;}
.y21{bottom:899.035200px;}
.y4d{bottom:899.035350px;}
.y20{bottom:921.535200px;}
.y4c{bottom:921.535350px;}
.y3{bottom:923.358600px;}
.y1f{bottom:944.035200px;}
.y4b{bottom:944.035350px;}
.y2{bottom:953.358600px;}
.y1e{bottom:966.535200px;}
.y4a{bottom:966.535350px;}
.y1d{bottom:989.035200px;}
.y49{bottom:989.035350px;}
.y1c{bottom:1011.535200px;}
.y48{bottom:1011.535350px;}
.y1{bottom:1018.614600px;}
.y1b{bottom:1034.035200px;}
.y47{bottom:1034.035350px;}
.y1a{bottom:1056.535200px;}
.y46{bottom:1056.535350px;}
.y19{bottom:1079.035200px;}
.y45{bottom:1079.035350px;}
.y18{bottom:1101.535200px;}
.y44{bottom:1101.535350px;}
.y16{bottom:1116.352350px;}
.y15{bottom:1136.152350px;}
.y14{bottom:1155.952350px;}
.y17{bottom:1166.275950px;}
.y13{bottom:1175.752350px;}
.y12{bottom:1195.552350px;}
.h5{height:48.015000px;}
.h4{height:63.175781px;}
.h7{height:63.351562px;}
.h2{height:69.984000px;}
.h6{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.559100px;}
.x4{left:176.834700px;}
.xb{left:217.098450px;}
.x3{left:228.584700px;}
.x2{left:239.114700px;}
.x1{left:372.801450px;}
.x6{left:485.675850px;}
.x7{left:611.455350px;}
.xa{left:641.551350px;}
.x8{left:649.916850px;}
.x9{left:663.661350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.536000pt;}
.ls5{letter-spacing:1.600000pt;}
.ls4{letter-spacing:3.648000pt;}
.ls3{letter-spacing:3.712000pt;}
.ls8{letter-spacing:6.592000pt;}
.ls7{letter-spacing:6.656000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws9{word-spacing:-70.656000pt;}
.ws8{word-spacing:-65.600000pt;}
.ws7{word-spacing:-64.320000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.376000pt;}
.wsa{word-spacing:-50.553600pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2{word-spacing:-11.322667pt;}
.ws4{word-spacing:-0.140800pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-26.496000pt;}
._e{margin-left:-10.752000pt;}
._1{margin-left:-7.146667pt;}
._b{margin-left:-5.888000pt;}
._10{margin-left:-4.166400pt;}
._d{margin-left:-3.097600pt;}
._2{margin-left:-2.099200pt;}
._0{margin-left:-1.094400pt;}
._c{width:0.896000pt;}
._7{width:1.792000pt;}
._8{width:3.456000pt;}
._9{width:5.120000pt;}
._5{width:6.016000pt;}
._6{width:7.296000pt;}
._4{width:8.544000pt;}
._3{width:9.792000pt;}
._f{width:13.568000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:119.142400pt;}
.y6f{bottom:119.142533pt;}
.y11{bottom:122.757867pt;}
.y42{bottom:139.142400pt;}
.y6e{bottom:139.142533pt;}
.y10{bottom:142.757867pt;}
.y41{bottom:159.142400pt;}
.y6d{bottom:159.142533pt;}
.yf{bottom:162.757867pt;}
.y40{bottom:179.142400pt;}
.y6c{bottom:179.142533pt;}
.ye{bottom:182.757867pt;}
.y3f{bottom:199.142400pt;}
.y6b{bottom:199.142533pt;}
.yd{bottom:202.757867pt;}
.y3e{bottom:219.142400pt;}
.y6a{bottom:219.142533pt;}
.yc{bottom:222.757867pt;}
.y3d{bottom:239.142400pt;}
.y69{bottom:239.142533pt;}
.yb{bottom:242.757867pt;}
.y3c{bottom:259.142400pt;}
.y68{bottom:259.142533pt;}
.ya{bottom:262.757867pt;}
.y3b{bottom:279.142400pt;}
.y67{bottom:279.142533pt;}
.y9{bottom:282.757867pt;}
.y3a{bottom:299.142400pt;}
.y66{bottom:299.142533pt;}
.y8{bottom:302.757867pt;}
.y39{bottom:319.142400pt;}
.y65{bottom:319.142533pt;}
.y7{bottom:322.757867pt;}
.y38{bottom:339.142400pt;}
.y64{bottom:339.142533pt;}
.y6{bottom:342.757867pt;}
.y37{bottom:359.142400pt;}
.y63{bottom:359.142533pt;}
.y5{bottom:362.757867pt;}
.y36{bottom:379.142400pt;}
.y62{bottom:379.142533pt;}
.y35{bottom:399.142400pt;}
.y61{bottom:399.142533pt;}
.y34{bottom:419.142400pt;}
.y60{bottom:419.142533pt;}
.y33{bottom:439.142400pt;}
.y5f{bottom:439.142533pt;}
.y32{bottom:459.142400pt;}
.y5e{bottom:459.142533pt;}
.y31{bottom:479.142400pt;}
.y5d{bottom:479.142533pt;}
.y30{bottom:499.142400pt;}
.y5c{bottom:499.142533pt;}
.y2f{bottom:519.142400pt;}
.y5b{bottom:519.142533pt;}
.y2e{bottom:539.142400pt;}
.y5a{bottom:539.142533pt;}
.y2d{bottom:559.142400pt;}
.y59{bottom:559.142533pt;}
.y2c{bottom:579.142400pt;}
.y58{bottom:579.142533pt;}
.y2b{bottom:599.142400pt;}
.y57{bottom:599.142533pt;}
.y2a{bottom:619.142400pt;}
.y56{bottom:619.142533pt;}
.y29{bottom:639.142400pt;}
.y55{bottom:639.142533pt;}
.y28{bottom:659.142400pt;}
.y54{bottom:659.142533pt;}
.y27{bottom:679.142400pt;}
.y53{bottom:679.142533pt;}
.y26{bottom:699.142400pt;}
.y52{bottom:699.142533pt;}
.y25{bottom:719.142400pt;}
.y51{bottom:719.142533pt;}
.y24{bottom:739.142400pt;}
.y50{bottom:739.142533pt;}
.y23{bottom:759.142400pt;}
.y4f{bottom:759.142533pt;}
.y22{bottom:779.142400pt;}
.y4e{bottom:779.142533pt;}
.y4{bottom:794.096533pt;}
.y21{bottom:799.142400pt;}
.y4d{bottom:799.142533pt;}
.y20{bottom:819.142400pt;}
.y4c{bottom:819.142533pt;}
.y3{bottom:820.763200pt;}
.y1f{bottom:839.142400pt;}
.y4b{bottom:839.142533pt;}
.y2{bottom:847.429867pt;}
.y1e{bottom:859.142400pt;}
.y4a{bottom:859.142533pt;}
.y1d{bottom:879.142400pt;}
.y49{bottom:879.142533pt;}
.y1c{bottom:899.142400pt;}
.y48{bottom:899.142533pt;}
.y1{bottom:905.435200pt;}
.y1b{bottom:919.142400pt;}
.y47{bottom:919.142533pt;}
.y1a{bottom:939.142400pt;}
.y46{bottom:939.142533pt;}
.y19{bottom:959.142400pt;}
.y45{bottom:959.142533pt;}
.y18{bottom:979.142400pt;}
.y44{bottom:979.142533pt;}
.y16{bottom:992.313200pt;}
.y15{bottom:1009.913200pt;}
.y14{bottom:1027.513200pt;}
.y17{bottom:1036.689733pt;}
.y13{bottom:1045.113200pt;}
.y12{bottom:1062.713200pt;}
.h5{height:42.680000pt;}
.h4{height:56.156250pt;}
.h7{height:56.312500pt;}
.h2{height:62.208000pt;}
.h6{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.385867pt;}
.x4{left:157.186400pt;}
.xb{left:192.976400pt;}
.x3{left:203.186400pt;}
.x2{left:212.546400pt;}
.x1{left:331.379067pt;}
.x6{left:431.711867pt;}
.x7{left:543.515867pt;}
.xa{left:570.267867pt;}
.x8{left:577.703867pt;}
.x9{left:589.921200pt;}
}




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