
    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_1b6eead68491b0b25d825a6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071289;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_63c6b008a8157027be98efda.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.071289;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_d325ca4c79fa49ebdc27de35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999023;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_4fe0b8b8970ef8f3ca9098a5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1b6eead68491b0b25d825a6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071289;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_25b69d465e68f052422cf2f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965820;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_d9a234051c013c79a1b4e9fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968262;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(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.382200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.978000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015528px;}
.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:-32.508000px;}
.ws3{word-spacing:-18.060000px;}
.ws4{word-spacing:-2.706000px;}
.ws2{word-spacing:-1.254000px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:1.320000px;}
.ws5{word-spacing:11.946000px;}
._19{margin-left:-17.349600px;}
._18{margin-left:-12.784200px;}
._4{margin-left:-9.859200px;}
._5{margin-left:-8.448000px;}
._2{margin-left:-6.480000px;}
._11{margin-left:-5.445000px;}
._b{margin-left:-4.303200px;}
._0{margin-left:-3.234000px;}
._3{margin-left:-1.748400px;}
._e{width:1.049400px;}
._c{width:2.547600px;}
._8{width:3.557400px;}
._9{width:4.666200px;}
._10{width:6.388800px;}
._d{width:7.517400px;}
._17{width:8.613000px;}
._a{width:9.636000px;}
._7{width:11.563200px;}
._12{width:12.639000px;}
._f{width:13.761000px;}
._6{width:15.160200px;}
._14{width:17.193000px;}
._15{width:18.585600px;}
._13{width:20.902200px;}
._16{width:22.558800px;}
._1{width:133.664400px;}
.fc2{color:rgb(48,88,159);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(90,87,88);}
.fs6{font-size:38.478000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.042750px;}
.y41{bottom:106.299150px;}
.y1d{bottom:118.439700px;}
.y40{bottom:124.299150px;}
.y62{bottom:142.299150px;}
.y1c{bottom:145.439700px;}
.y61{bottom:160.299150px;}
.y1b{bottom:172.439700px;}
.y3f{bottom:174.826500px;}
.y60{bottom:178.299150px;}
.y5f{bottom:196.299150px;}
.y1a{bottom:199.439700px;}
.y3e{bottom:201.826500px;}
.y19{bottom:226.439700px;}
.y3d{bottom:228.826500px;}
.y5e{bottom:239.338350px;}
.y18{bottom:253.439700px;}
.y3c{bottom:255.826500px;}
.y5d{bottom:266.338350px;}
.y3b{bottom:282.826500px;}
.y17{bottom:293.195700px;}
.y5c{bottom:293.338350px;}
.y3a{bottom:309.826500px;}
.y16{bottom:320.195700px;}
.y5b{bottom:320.338350px;}
.y39{bottom:336.826500px;}
.y15{bottom:347.195700px;}
.y5a{bottom:347.338350px;}
.y6d{bottom:347.614800px;}
.y38{bottom:363.826500px;}
.y6c{bottom:365.614800px;}
.y14{bottom:374.195700px;}
.y59{bottom:374.338350px;}
.y6b{bottom:383.614800px;}
.y37{bottom:390.826500px;}
.y13{bottom:401.195700px;}
.y58{bottom:401.338350px;}
.y6a{bottom:401.614800px;}
.y36{bottom:417.826500px;}
.y12{bottom:428.195700px;}
.y57{bottom:428.338350px;}
.y35{bottom:444.826500px;}
.y11{bottom:455.195700px;}
.y56{bottom:455.338350px;}
.y69{bottom:462.474600px;}
.y34{bottom:471.826500px;}
.y68{bottom:480.474600px;}
.y10{bottom:482.195700px;}
.y55{bottom:482.338350px;}
.y67{bottom:498.474600px;}
.y33{bottom:498.826500px;}
.y66{bottom:516.474600px;}
.yf{bottom:521.951550px;}
.y54{bottom:522.094200px;}
.y32{bottom:525.826500px;}
.ye{bottom:548.951550px;}
.y53{bottom:549.094200px;}
.y31{bottom:552.826500px;}
.yd{bottom:575.951550px;}
.y52{bottom:576.094200px;}
.y30{bottom:592.582500px;}
.yc{bottom:602.951550px;}
.y51{bottom:603.094200px;}
.y2f{bottom:619.582500px;}
.yb{bottom:629.951550px;}
.y50{bottom:630.094200px;}
.y2e{bottom:646.582500px;}
.ya{bottom:656.951550px;}
.y4f{bottom:657.094200px;}
.y2d{bottom:673.582500px;}
.y9{bottom:683.951550px;}
.y4e{bottom:684.094200px;}
.y2c{bottom:700.582500px;}
.y8{bottom:710.951550px;}
.y4d{bottom:711.094200px;}
.y2b{bottom:727.582500px;}
.y7{bottom:737.951550px;}
.y4c{bottom:738.094200px;}
.y2a{bottom:754.582500px;}
.y4b{bottom:765.094200px;}
.y4a{bottom:792.094350px;}
.y29{bottom:794.338350px;}
.y28{bottom:818.338350px;}
.y49{bottom:819.094350px;}
.y6{bottom:832.423350px;}
.y27{bottom:842.338350px;}
.y48{bottom:846.094350px;}
.y5{bottom:856.423350px;}
.y26{bottom:866.338350px;}
.y47{bottom:873.094350px;}
.y65{bottom:885.850200px;}
.y25{bottom:890.338350px;}
.y46{bottom:900.094350px;}
.y64{bottom:912.850200px;}
.y24{bottom:927.094350px;}
.y63{bottom:939.850200px;}
.y23{bottom:954.094350px;}
.y4{bottom:961.210650px;}
.y45{bottom:966.850200px;}
.y22{bottom:981.094350px;}
.y44{bottom:993.850200px;}
.y21{bottom:1008.094350px;}
.y43{bottom:1020.850200px;}
.y20{bottom:1035.094350px;}
.y42{bottom:1047.850200px;}
.y3{bottom:1053.214500px;}
.y1f{bottom:1074.850200px;}
.y2{bottom:1089.214500px;}
.y1e{bottom:1101.850200px;}
.h9{height:47.402344px;}
.ha{height:50.208984px;}
.h7{height:52.142578px;}
.hb{height:53.789062px;}
.h2{height:56.191406px;}
.h8{height:61.810547px;}
.h6{height:71.718750px;}
.h3{height:80.583984px;}
.h5{height:80.683594px;}
.h4{height:94.804688px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:127.559100px;}
.x5{left:138.587550px;}
.x6{left:176.380500px;}
.x1{left:199.999050px;}
.x8{left:233.858250px;}
.xb{left:243.445200px;}
.xa{left:302.507700px;}
.x4{left:381.883500px;}
.xc{left:430.952400px;}
.xe{left:474.890400px;}
.x3{left:496.204650px;}
.x2{left:498.102300px;}
.x9{left:519.849450px;}
.xd{left:586.189200px;}
@media print{
.v1{vertical-align:-3.006400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013803pt;}
.ws0{word-spacing:-28.896000pt;}
.ws3{word-spacing:-16.053333pt;}
.ws4{word-spacing:-2.405333pt;}
.ws2{word-spacing:-1.114667pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:1.173333pt;}
.ws5{word-spacing:10.618667pt;}
._19{margin-left:-15.421867pt;}
._18{margin-left:-11.363733pt;}
._4{margin-left:-8.763733pt;}
._5{margin-left:-7.509333pt;}
._2{margin-left:-5.760000pt;}
._11{margin-left:-4.840000pt;}
._b{margin-left:-3.825067pt;}
._0{margin-left:-2.874667pt;}
._3{margin-left:-1.554133pt;}
._e{width:0.932800pt;}
._c{width:2.264533pt;}
._8{width:3.162133pt;}
._9{width:4.147733pt;}
._10{width:5.678933pt;}
._d{width:6.682133pt;}
._17{width:7.656000pt;}
._a{width:8.565333pt;}
._7{width:10.278400pt;}
._12{width:11.234667pt;}
._f{width:12.232000pt;}
._6{width:13.475733pt;}
._14{width:15.282667pt;}
._15{width:16.520533pt;}
._13{width:18.579733pt;}
._16{width:20.052267pt;}
._1{width:118.812800pt;}
.fs6{font-size:34.202667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.038000pt;}
.y41{bottom:94.488133pt;}
.y1d{bottom:105.279733pt;}
.y40{bottom:110.488133pt;}
.y62{bottom:126.488133pt;}
.y1c{bottom:129.279733pt;}
.y61{bottom:142.488133pt;}
.y1b{bottom:153.279733pt;}
.y3f{bottom:155.401333pt;}
.y60{bottom:158.488133pt;}
.y5f{bottom:174.488133pt;}
.y1a{bottom:177.279733pt;}
.y3e{bottom:179.401333pt;}
.y19{bottom:201.279733pt;}
.y3d{bottom:203.401333pt;}
.y5e{bottom:212.745200pt;}
.y18{bottom:225.279733pt;}
.y3c{bottom:227.401333pt;}
.y5d{bottom:236.745200pt;}
.y3b{bottom:251.401333pt;}
.y17{bottom:260.618400pt;}
.y5c{bottom:260.745200pt;}
.y3a{bottom:275.401333pt;}
.y16{bottom:284.618400pt;}
.y5b{bottom:284.745200pt;}
.y39{bottom:299.401333pt;}
.y15{bottom:308.618400pt;}
.y5a{bottom:308.745200pt;}
.y6d{bottom:308.990933pt;}
.y38{bottom:323.401333pt;}
.y6c{bottom:324.990933pt;}
.y14{bottom:332.618400pt;}
.y59{bottom:332.745200pt;}
.y6b{bottom:340.990933pt;}
.y37{bottom:347.401333pt;}
.y13{bottom:356.618400pt;}
.y58{bottom:356.745200pt;}
.y6a{bottom:356.990933pt;}
.y36{bottom:371.401333pt;}
.y12{bottom:380.618400pt;}
.y57{bottom:380.745200pt;}
.y35{bottom:395.401333pt;}
.y11{bottom:404.618400pt;}
.y56{bottom:404.745200pt;}
.y69{bottom:411.088533pt;}
.y34{bottom:419.401333pt;}
.y68{bottom:427.088533pt;}
.y10{bottom:428.618400pt;}
.y55{bottom:428.745200pt;}
.y67{bottom:443.088533pt;}
.y33{bottom:443.401333pt;}
.y66{bottom:459.088533pt;}
.yf{bottom:463.956933pt;}
.y54{bottom:464.083733pt;}
.y32{bottom:467.401333pt;}
.ye{bottom:487.956933pt;}
.y53{bottom:488.083733pt;}
.y31{bottom:491.401333pt;}
.yd{bottom:511.956933pt;}
.y52{bottom:512.083733pt;}
.y30{bottom:526.740000pt;}
.yc{bottom:535.956933pt;}
.y51{bottom:536.083733pt;}
.y2f{bottom:550.740000pt;}
.yb{bottom:559.956933pt;}
.y50{bottom:560.083733pt;}
.y2e{bottom:574.740000pt;}
.ya{bottom:583.956933pt;}
.y4f{bottom:584.083733pt;}
.y2d{bottom:598.740000pt;}
.y9{bottom:607.956933pt;}
.y4e{bottom:608.083733pt;}
.y2c{bottom:622.740000pt;}
.y8{bottom:631.956933pt;}
.y4d{bottom:632.083733pt;}
.y2b{bottom:646.740000pt;}
.y7{bottom:655.956933pt;}
.y4c{bottom:656.083733pt;}
.y2a{bottom:670.740000pt;}
.y4b{bottom:680.083733pt;}
.y4a{bottom:704.083867pt;}
.y29{bottom:706.078533pt;}
.y28{bottom:727.411867pt;}
.y49{bottom:728.083867pt;}
.y6{bottom:739.931867pt;}
.y27{bottom:748.745200pt;}
.y48{bottom:752.083867pt;}
.y5{bottom:761.265200pt;}
.y26{bottom:770.078533pt;}
.y47{bottom:776.083867pt;}
.y65{bottom:787.422400pt;}
.y25{bottom:791.411867pt;}
.y46{bottom:800.083867pt;}
.y64{bottom:811.422400pt;}
.y24{bottom:824.083867pt;}
.y63{bottom:835.422400pt;}
.y23{bottom:848.083867pt;}
.y4{bottom:854.409467pt;}
.y45{bottom:859.422400pt;}
.y22{bottom:872.083867pt;}
.y44{bottom:883.422400pt;}
.y21{bottom:896.083867pt;}
.y43{bottom:907.422400pt;}
.y20{bottom:920.083867pt;}
.y42{bottom:931.422400pt;}
.y3{bottom:936.190667pt;}
.y1f{bottom:955.422400pt;}
.y2{bottom:968.190667pt;}
.y1e{bottom:979.422400pt;}
.h9{height:42.135417pt;}
.ha{height:44.630208pt;}
.h7{height:46.348958pt;}
.hb{height:47.812500pt;}
.h2{height:49.947917pt;}
.h8{height:54.942708pt;}
.h6{height:63.750000pt;}
.h3{height:71.630208pt;}
.h5{height:71.718750pt;}
.h4{height:84.270833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.385867pt;}
.x5{left:123.188933pt;}
.x6{left:156.782667pt;}
.x1{left:177.776933pt;}
.x8{left:207.874000pt;}
.xb{left:216.395733pt;}
.xa{left:268.895733pt;}
.x4{left:339.452000pt;}
.xc{left:383.068800pt;}
.xe{left:422.124800pt;}
.x3{left:441.070800pt;}
.x2{left:442.757600pt;}
.x9{left:462.088400pt;}
.xd{left:521.057067pt;}
}




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