
    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_522dbdaa701680412b1fce98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_cf8432667391d5dcad3c13f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_f1a7ec783d4cba46af864c23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992188;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_fbbe96e528f3799197abe9a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_9cff98d801d0d4fc95adf0fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-69.900000px;}
.v2{vertical-align:-23.700000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.700000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:29.922900px;}
.ls3{letter-spacing:35.544000px;}
.ls4{letter-spacing:40.122900px;}
.ls2{letter-spacing:107.022900px;}
.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:-60.871800px;}
.ws8{word-spacing:-53.459400px;}
.ws2{word-spacing:-40.032000px;}
.ws6{word-spacing:-33.443400px;}
.ws4{word-spacing:-30.024000px;}
.ws9{word-spacing:-26.604600px;}
.ws0{word-spacing:-17.430600px;}
.ws5{word-spacing:-16.596600px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:363.276000px;}
._6{margin-left:-12.000000px;}
._7{margin-left:-10.764000px;}
._9{margin-left:-8.822700px;}
._2{margin-left:-4.207200px;}
._5{margin-left:-2.709900px;}
._0{margin-left:-1.101300px;}
._1{width:1.090500px;}
._3{width:3.144600px;}
._8{width:265.485000px;}
._4{width:292.339800px;}
.fc4{color:rgb(166,187,200);}
.fc3{color:rgb(23,156,125);}
.fc2{color:rgb(0,91,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.300000px;}
.fs9{font-size:59.700000px;}
.fs4{font-size:62.700000px;}
.fs7{font-size:84.300000px;}
.fs1{font-size:95.700000px;}
.fs8{font-size:108.000000px;}
.fs6{font-size:120.300000px;}
.fs5{font-size:144.000000px;}
.fs3{font-size:192.300000px;}
.fs2{font-size:249.900000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:8.389500px;}
.y76{bottom:14.248500px;}
.y9{bottom:37.149000px;}
.y69{bottom:104.550000px;}
.y12{bottom:104.775000px;}
.y2f{bottom:113.286000px;}
.y75{bottom:128.379000px;}
.y36{bottom:129.634500px;}
.y1b{bottom:139.200000px;}
.y6c{bottom:158.025000px;}
.y2e{bottom:165.373500px;}
.y68{bottom:173.025000px;}
.y23{bottom:181.087500px;}
.y3f{bottom:181.125000px;}
.y1a{bottom:187.800000px;}
.y74{bottom:191.679000px;}
.y2d{bottom:211.459500px;}
.y11{bottom:211.612500px;}
.y8{bottom:214.650000px;}
.y6b{bottom:215.625000px;}
.y73{bottom:223.329000px;}
.y67{bottom:223.425000px;}
.y35{bottom:223.527000px;}
.y3e{bottom:229.725000px;}
.y60{bottom:230.925000px;}
.y45{bottom:232.425000px;}
.y19{bottom:236.400000px;}
.y22{bottom:245.887500px;}
.y7{bottom:246.300000px;}
.y4f{bottom:251.250000px;}
.y2c{bottom:254.928000px;}
.y72{bottom:254.979000px;}
.y4b{bottom:268.125000px;}
.y34{bottom:268.780500px;}
.y66{bottom:273.825000px;}
.y1{bottom:277.761000px;}
.y3d{bottom:278.325000px;}
.y5f{bottom:279.525000px;}
.y10{bottom:279.937500px;}
.y57{bottom:283.875000px;}
.y53{bottom:285.075000px;}
.y71{bottom:286.629000px;}
.y18{bottom:287.700000px;}
.y2b{bottom:288.540000px;}
.y44{bottom:297.225000px;}
.y4e{bottom:297.375000px;}
.y6{bottom:303.225000px;}
.y21{bottom:310.687500px;}
.y70{bottom:318.279000px;}
.y3c{bottom:326.925000px;}
.y65{bottom:327.750000px;}
.y5e{bottom:328.125000px;}
.y4a{bottom:332.925000px;}
.y2a{bottom:335.181000px;}
.yf{bottom:348.412500px;}
.y6f{bottom:349.929000px;}
.y17{bottom:352.500000px;}
.y43{bottom:362.025000px;}
.y5{bottom:371.925000px;}
.y29{bottom:374.794500px;}
.y20{bottom:375.487500px;}
.y3b{bottom:375.525000px;}
.y5d{bottom:376.725000px;}
.y56{bottom:377.775000px;}
.y52{bottom:378.975000px;}
.y64{bottom:397.350000px;}
.y49{bottom:397.725000px;}
.y6e{bottom:410.979000px;}
.ye{bottom:416.812500px;}
.y16{bottom:417.300000px;}
.y28{bottom:417.516000px;}
.y55{bottom:423.075000px;}
.y3a{bottom:424.125000px;}
.y51{bottom:424.275000px;}
.y5c{bottom:425.325000px;}
.y42{bottom:426.825000px;}
.y4{bottom:429.525000px;}
.y1f{bottom:440.287500px;}
.y27{bottom:454.081500px;}
.y63{bottom:454.950000px;}
.y48{bottom:462.525000px;}
.y6d{bottom:464.904000px;}
.y39{bottom:472.725000px;}
.y58{bottom:473.850000px;}
.y5b{bottom:473.925000px;}
.y54{bottom:475.050000px;}
.y15{bottom:482.100000px;}
.yd{bottom:485.212500px;}
.y41{bottom:491.625000px;}
.y3{bottom:495.450000px;}
.y1e{bottom:505.087500px;}
.y26{bottom:510.496500px;}
.y62{bottom:514.950000px;}
.y38{bottom:521.325000px;}
.y5a{bottom:522.525000px;}
.y47{bottom:527.325000px;}
.y2{bottom:538.800000px;}
.y14{bottom:546.900000px;}
.yc{bottom:553.612500px;}
.y40{bottom:556.425000px;}
.y4c{bottom:561.825000px;}
.y25{bottom:565.743000px;}
.y1d{bottom:569.887500px;}
.y37{bottom:569.925000px;}
.y59{bottom:571.125000px;}
.y50{bottom:571.650000px;}
.y61{bottom:586.950000px;}
.y46{bottom:592.125000px;}
.y13{bottom:611.700000px;}
.y24{bottom:626.644500px;}
.y33{bottom:663.892500px;}
.y32{bottom:681.892500px;}
.yb{bottom:686.775000px;}
.y1c{bottom:686.797500px;}
.y31{bottom:721.060500px;}
.ya{bottom:725.626500px;}
.y30{bottom:739.060500px;}
.y4d{bottom:750.450000px;}
.h1{height:36.804600px;}
.ha{height:45.491400px;}
.h5{height:49.223400px;}
.h8{height:64.236600px;}
.h2{height:72.923400px;}
.h9{height:82.296000px;}
.h7{height:91.668600px;}
.h6{height:109.728000px;}
.h4{height:146.532600px;}
.h3{height:195.356396px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:57.375000px;}
.x5{left:77.700000px;}
.x11{left:80.475000px;}
.x3{left:89.254500px;}
.xf{left:102.000000px;}
.xe{left:234.375000px;}
.x10{left:287.700000px;}
.x7{left:509.875500px;}
.x6{left:529.039500px;}
.xa{left:569.925000px;}
.x9{left:636.256500px;}
.x8{left:768.574500px;}
.xc{left:833.400000px;}
.xb{left:1038.375000px;}
.x1{left:1151.928000px;}
.xd{left:1307.100000px;}
.x13{left:1358.875500px;}
.x4{left:1412.100000px;}
.x12{left:1427.193000px;}
@media print{
.v3{vertical-align:-62.133333pt;}
.v2{vertical-align:-21.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:26.598133pt;}
.ls3{letter-spacing:31.594667pt;}
.ls4{letter-spacing:35.664800pt;}
.ls2{letter-spacing:95.131467pt;}
.ws3{word-spacing:-54.108267pt;}
.ws8{word-spacing:-47.519467pt;}
.ws2{word-spacing:-35.584000pt;}
.ws6{word-spacing:-29.727467pt;}
.ws4{word-spacing:-26.688000pt;}
.ws9{word-spacing:-23.648533pt;}
.ws0{word-spacing:-15.493867pt;}
.ws5{word-spacing:-14.752533pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:322.912000pt;}
._6{margin-left:-10.666667pt;}
._7{margin-left:-9.568000pt;}
._9{margin-left:-7.842400pt;}
._2{margin-left:-3.739733pt;}
._5{margin-left:-2.408800pt;}
._0{margin-left:-0.978933pt;}
._1{width:0.969333pt;}
._3{width:2.795200pt;}
._8{width:235.986667pt;}
._4{width:259.857600pt;}
.fs0{font-size:42.933333pt;}
.fs9{font-size:53.066667pt;}
.fs4{font-size:55.733333pt;}
.fs7{font-size:74.933333pt;}
.fs1{font-size:85.066667pt;}
.fs8{font-size:96.000000pt;}
.fs6{font-size:106.933333pt;}
.fs5{font-size:128.000000pt;}
.fs3{font-size:170.933333pt;}
.fs2{font-size:222.133333pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:7.457333pt;}
.y76{bottom:12.665333pt;}
.y9{bottom:33.021333pt;}
.y69{bottom:92.933333pt;}
.y12{bottom:93.133333pt;}
.y2f{bottom:100.698667pt;}
.y75{bottom:114.114667pt;}
.y36{bottom:115.230667pt;}
.y1b{bottom:123.733333pt;}
.y6c{bottom:140.466667pt;}
.y2e{bottom:146.998667pt;}
.y68{bottom:153.800000pt;}
.y23{bottom:160.966667pt;}
.y3f{bottom:161.000000pt;}
.y1a{bottom:166.933333pt;}
.y74{bottom:170.381333pt;}
.y2d{bottom:187.964000pt;}
.y11{bottom:188.100000pt;}
.y8{bottom:190.800000pt;}
.y6b{bottom:191.666667pt;}
.y73{bottom:198.514667pt;}
.y67{bottom:198.600000pt;}
.y35{bottom:198.690667pt;}
.y3e{bottom:204.200000pt;}
.y60{bottom:205.266667pt;}
.y45{bottom:206.600000pt;}
.y19{bottom:210.133333pt;}
.y22{bottom:218.566667pt;}
.y7{bottom:218.933333pt;}
.y4f{bottom:223.333333pt;}
.y2c{bottom:226.602667pt;}
.y72{bottom:226.648000pt;}
.y4b{bottom:238.333333pt;}
.y34{bottom:238.916000pt;}
.y66{bottom:243.400000pt;}
.y1{bottom:246.898667pt;}
.y3d{bottom:247.400000pt;}
.y5f{bottom:248.466667pt;}
.y10{bottom:248.833333pt;}
.y57{bottom:252.333333pt;}
.y53{bottom:253.400000pt;}
.y71{bottom:254.781333pt;}
.y18{bottom:255.733333pt;}
.y2b{bottom:256.480000pt;}
.y44{bottom:264.200000pt;}
.y4e{bottom:264.333333pt;}
.y6{bottom:269.533333pt;}
.y21{bottom:276.166667pt;}
.y70{bottom:282.914667pt;}
.y3c{bottom:290.600000pt;}
.y65{bottom:291.333333pt;}
.y5e{bottom:291.666667pt;}
.y4a{bottom:295.933333pt;}
.y2a{bottom:297.938667pt;}
.yf{bottom:309.700000pt;}
.y6f{bottom:311.048000pt;}
.y17{bottom:313.333333pt;}
.y43{bottom:321.800000pt;}
.y5{bottom:330.600000pt;}
.y29{bottom:333.150667pt;}
.y20{bottom:333.766667pt;}
.y3b{bottom:333.800000pt;}
.y5d{bottom:334.866667pt;}
.y56{bottom:335.800000pt;}
.y52{bottom:336.866667pt;}
.y64{bottom:353.200000pt;}
.y49{bottom:353.533333pt;}
.y6e{bottom:365.314667pt;}
.ye{bottom:370.500000pt;}
.y16{bottom:370.933333pt;}
.y28{bottom:371.125333pt;}
.y55{bottom:376.066667pt;}
.y3a{bottom:377.000000pt;}
.y51{bottom:377.133333pt;}
.y5c{bottom:378.066667pt;}
.y42{bottom:379.400000pt;}
.y4{bottom:381.800000pt;}
.y1f{bottom:391.366667pt;}
.y27{bottom:403.628000pt;}
.y63{bottom:404.400000pt;}
.y48{bottom:411.133333pt;}
.y6d{bottom:413.248000pt;}
.y39{bottom:420.200000pt;}
.y58{bottom:421.200000pt;}
.y5b{bottom:421.266667pt;}
.y54{bottom:422.266667pt;}
.y15{bottom:428.533333pt;}
.yd{bottom:431.300000pt;}
.y41{bottom:437.000000pt;}
.y3{bottom:440.400000pt;}
.y1e{bottom:448.966667pt;}
.y26{bottom:453.774667pt;}
.y62{bottom:457.733333pt;}
.y38{bottom:463.400000pt;}
.y5a{bottom:464.466667pt;}
.y47{bottom:468.733333pt;}
.y2{bottom:478.933333pt;}
.y14{bottom:486.133333pt;}
.yc{bottom:492.100000pt;}
.y40{bottom:494.600000pt;}
.y4c{bottom:499.400000pt;}
.y25{bottom:502.882667pt;}
.y1d{bottom:506.566667pt;}
.y37{bottom:506.600000pt;}
.y59{bottom:507.666667pt;}
.y50{bottom:508.133333pt;}
.y61{bottom:521.733333pt;}
.y46{bottom:526.333333pt;}
.y13{bottom:543.733333pt;}
.y24{bottom:557.017333pt;}
.y33{bottom:590.126667pt;}
.y32{bottom:606.126667pt;}
.yb{bottom:610.466667pt;}
.y1c{bottom:610.486667pt;}
.y31{bottom:640.942667pt;}
.ya{bottom:645.001333pt;}
.y30{bottom:656.942667pt;}
.y4d{bottom:667.066667pt;}
.h1{height:32.715200pt;}
.ha{height:40.436800pt;}
.h5{height:43.754133pt;}
.h8{height:57.099200pt;}
.h2{height:64.820800pt;}
.h9{height:73.152000pt;}
.h7{height:81.483200pt;}
.h6{height:97.536000pt;}
.h4{height:130.251200pt;}
.h3{height:173.650130pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.000000pt;}
.x5{left:69.066667pt;}
.x11{left:71.533333pt;}
.x3{left:79.337333pt;}
.xf{left:90.666667pt;}
.xe{left:208.333333pt;}
.x10{left:255.733333pt;}
.x7{left:453.222667pt;}
.x6{left:470.257333pt;}
.xa{left:506.600000pt;}
.x9{left:565.561333pt;}
.x8{left:683.177333pt;}
.xc{left:740.800000pt;}
.xb{left:923.000000pt;}
.x1{left:1023.936000pt;}
.xd{left:1161.866667pt;}
.x13{left:1207.889333pt;}
.x4{left:1255.200000pt;}
.x12{left:1268.616000pt;}
}




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