
    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_6d0621a89526833ad0c181d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_d08912f71376d521b5802760.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024000;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_a7af3ba94e4f1f008564002f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972941;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_0f86dabadb68ca105f2fc904.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.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:-0.720000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:2614.745400px;}
._8{margin-left:-14.580000px;}
._7{margin-left:-13.380000px;}
._d{margin-left:-5.760000px;}
._c{margin-left:-4.500000px;}
._6{margin-left:-3.420000px;}
._1{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._5{width:1.380000px;}
._2{width:3.060000px;}
._3{width:4.140000px;}
._9{width:5.640000px;}
._a{width:7.500000px;}
._4{width:8.700000px;}
._e{width:9.900000px;}
._b{width:12.300000px;}
._10{width:13.620000px;}
._f{width:15.180000px;}
._11{width:16.260000px;}
.fc4{color:rgb(85,111,144);}
.fc2{color:rgb(224,222,204);}
.fc1{color:rgb(122,124,69);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:120.000000px;}
.fs3{font-size:168.000000px;}
.fs2{font-size:720.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:90.776850px;}
.y22{bottom:91.637700px;}
.y6b{bottom:109.722450px;}
.y41{bottom:110.276850px;}
.y57{bottom:110.472450px;}
.y84{bottom:110.712000px;}
.y21{bottom:111.137700px;}
.y6a{bottom:129.222450px;}
.y40{bottom:129.776850px;}
.y56{bottom:129.972450px;}
.y83{bottom:130.212000px;}
.y20{bottom:130.637700px;}
.y69{bottom:148.722450px;}
.y3f{bottom:149.276850px;}
.y55{bottom:149.472450px;}
.y82{bottom:149.712000px;}
.y1f{bottom:150.137700px;}
.y68{bottom:168.222450px;}
.y3e{bottom:168.776850px;}
.y54{bottom:168.972450px;}
.y81{bottom:169.212000px;}
.y1e{bottom:169.637700px;}
.y67{bottom:187.722450px;}
.y3d{bottom:188.276850px;}
.y6d{bottom:188.472450px;}
.y80{bottom:188.712000px;}
.y1d{bottom:189.137700px;}
.y66{bottom:207.222450px;}
.y3c{bottom:207.776850px;}
.y53{bottom:207.972450px;}
.y7f{bottom:208.212000px;}
.y1c{bottom:208.637700px;}
.y65{bottom:226.722450px;}
.y3b{bottom:227.276850px;}
.y52{bottom:227.472450px;}
.y7e{bottom:227.712000px;}
.y1b{bottom:228.137700px;}
.y64{bottom:246.222450px;}
.y3a{bottom:246.776850px;}
.y51{bottom:246.972450px;}
.y7d{bottom:247.212000px;}
.y1a{bottom:247.637700px;}
.y63{bottom:265.722450px;}
.y39{bottom:266.276850px;}
.y50{bottom:266.472450px;}
.y7c{bottom:266.712000px;}
.y19{bottom:267.137700px;}
.y62{bottom:285.222450px;}
.y38{bottom:285.776850px;}
.y4f{bottom:285.972450px;}
.y7b{bottom:286.212000px;}
.y18{bottom:286.637700px;}
.y61{bottom:304.722450px;}
.y37{bottom:305.276850px;}
.y4e{bottom:305.472450px;}
.y7a{bottom:305.712000px;}
.y17{bottom:306.137700px;}
.y23{bottom:307.637700px;}
.y60{bottom:324.222450px;}
.y36{bottom:324.776850px;}
.y4d{bottom:324.972450px;}
.y79{bottom:325.212000px;}
.y16{bottom:325.637700px;}
.y5f{bottom:343.722450px;}
.y35{bottom:344.276850px;}
.y4c{bottom:344.472450px;}
.y78{bottom:344.712000px;}
.y15{bottom:345.137700px;}
.y5e{bottom:363.222450px;}
.y34{bottom:363.776850px;}
.y4b{bottom:363.972450px;}
.y77{bottom:364.212000px;}
.y14{bottom:364.637700px;}
.y5d{bottom:382.722450px;}
.y33{bottom:383.276850px;}
.y4a{bottom:383.472450px;}
.y76{bottom:383.712000px;}
.y13{bottom:384.137700px;}
.y5c{bottom:402.222450px;}
.y32{bottom:402.776850px;}
.y49{bottom:402.972450px;}
.y75{bottom:403.212000px;}
.y12{bottom:403.637700px;}
.y5b{bottom:421.722450px;}
.y31{bottom:422.276850px;}
.y48{bottom:422.472450px;}
.y74{bottom:422.712000px;}
.y11{bottom:423.137700px;}
.y5a{bottom:441.222450px;}
.y30{bottom:441.776850px;}
.y47{bottom:441.972450px;}
.y73{bottom:442.212000px;}
.y10{bottom:442.637700px;}
.y59{bottom:460.722450px;}
.y2f{bottom:461.276850px;}
.y46{bottom:461.472450px;}
.y87{bottom:461.712000px;}
.y72{bottom:461.715300px;}
.yf{bottom:462.137700px;}
.y2e{bottom:480.776850px;}
.y6c{bottom:480.972450px;}
.y86{bottom:481.212000px;}
.y71{bottom:481.215300px;}
.ye{bottom:481.637700px;}
.y58{bottom:499.722450px;}
.y2d{bottom:500.276850px;}
.y45{bottom:500.472450px;}
.y85{bottom:500.712000px;}
.y70{bottom:500.715300px;}
.yd{bottom:501.137700px;}
.y2c{bottom:519.776850px;}
.yc{bottom:520.637700px;}
.y2b{bottom:539.276850px;}
.yb{bottom:540.137700px;}
.ya{bottom:559.637700px;}
.y9{bottom:579.137700px;}
.y89{bottom:582.566250px;}
.y6f{bottom:598.287750px;}
.y8{bottom:598.637700px;}
.y88{bottom:599.066250px;}
.y44{bottom:612.721200px;}
.y7{bottom:618.137700px;}
.y6{bottom:637.637700px;}
.y5{bottom:657.137700px;}
.y4{bottom:676.637700px;}
.y3{bottom:696.137700px;}
.y2{bottom:715.637700px;}
.y1{bottom:735.137700px;}
.y29{bottom:828.129150px;}
.y28{bottom:865.629150px;}
.y27{bottom:903.117150px;}
.y26{bottom:951.123150px;}
.y25{bottom:999.129150px;}
.y24{bottom:1089.567000px;}
.y6e{bottom:1180.550400px;}
.y2a{bottom:1194.078600px;}
.y43{bottom:1194.180300px;}
.h9{height:29.400000px;}
.h8{height:36.240000px;}
.h2{height:45.300000px;}
.h7{height:46.560000px;}
.h3{height:55.872000px;}
.h6{height:93.120000px;}
.h5{height:130.368000px;}
.h4{height:526.997647px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:39.213450px;}
.x7{left:77.105850px;}
.x1{left:85.039350px;}
.x2{left:100.039350px;}
.x9{left:152.626350px;}
.x3{left:334.939350px;}
.x4{left:349.939350px;}
.xa{left:467.715600px;}
.x5{left:584.899200px;}
.x6{left:599.899200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ws0{word-spacing:-0.640000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:2324.218133pt;}
._8{margin-left:-12.960000pt;}
._7{margin-left:-11.893333pt;}
._d{margin-left:-5.120000pt;}
._c{margin-left:-4.000000pt;}
._6{margin-left:-3.040000pt;}
._1{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._5{width:1.226667pt;}
._2{width:2.720000pt;}
._3{width:3.680000pt;}
._9{width:5.013333pt;}
._a{width:6.666667pt;}
._4{width:7.733333pt;}
._e{width:8.800000pt;}
._b{width:10.933333pt;}
._10{width:12.106667pt;}
._f{width:13.493333pt;}
._11{width:14.453333pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:640.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:80.690533pt;}
.y22{bottom:81.455733pt;}
.y6b{bottom:97.531067pt;}
.y41{bottom:98.023867pt;}
.y57{bottom:98.197733pt;}
.y84{bottom:98.410667pt;}
.y21{bottom:98.789067pt;}
.y6a{bottom:114.864400pt;}
.y40{bottom:115.357200pt;}
.y56{bottom:115.531067pt;}
.y83{bottom:115.744000pt;}
.y20{bottom:116.122400pt;}
.y69{bottom:132.197733pt;}
.y3f{bottom:132.690533pt;}
.y55{bottom:132.864400pt;}
.y82{bottom:133.077333pt;}
.y1f{bottom:133.455733pt;}
.y68{bottom:149.531067pt;}
.y3e{bottom:150.023867pt;}
.y54{bottom:150.197733pt;}
.y81{bottom:150.410667pt;}
.y1e{bottom:150.789067pt;}
.y67{bottom:166.864400pt;}
.y3d{bottom:167.357200pt;}
.y6d{bottom:167.531067pt;}
.y80{bottom:167.744000pt;}
.y1d{bottom:168.122400pt;}
.y66{bottom:184.197733pt;}
.y3c{bottom:184.690533pt;}
.y53{bottom:184.864400pt;}
.y7f{bottom:185.077333pt;}
.y1c{bottom:185.455733pt;}
.y65{bottom:201.531067pt;}
.y3b{bottom:202.023867pt;}
.y52{bottom:202.197733pt;}
.y7e{bottom:202.410667pt;}
.y1b{bottom:202.789067pt;}
.y64{bottom:218.864400pt;}
.y3a{bottom:219.357200pt;}
.y51{bottom:219.531067pt;}
.y7d{bottom:219.744000pt;}
.y1a{bottom:220.122400pt;}
.y63{bottom:236.197733pt;}
.y39{bottom:236.690533pt;}
.y50{bottom:236.864400pt;}
.y7c{bottom:237.077333pt;}
.y19{bottom:237.455733pt;}
.y62{bottom:253.531067pt;}
.y38{bottom:254.023867pt;}
.y4f{bottom:254.197733pt;}
.y7b{bottom:254.410667pt;}
.y18{bottom:254.789067pt;}
.y61{bottom:270.864400pt;}
.y37{bottom:271.357200pt;}
.y4e{bottom:271.531067pt;}
.y7a{bottom:271.744000pt;}
.y17{bottom:272.122400pt;}
.y23{bottom:273.455733pt;}
.y60{bottom:288.197733pt;}
.y36{bottom:288.690533pt;}
.y4d{bottom:288.864400pt;}
.y79{bottom:289.077333pt;}
.y16{bottom:289.455733pt;}
.y5f{bottom:305.531067pt;}
.y35{bottom:306.023867pt;}
.y4c{bottom:306.197733pt;}
.y78{bottom:306.410667pt;}
.y15{bottom:306.789067pt;}
.y5e{bottom:322.864400pt;}
.y34{bottom:323.357200pt;}
.y4b{bottom:323.531067pt;}
.y77{bottom:323.744000pt;}
.y14{bottom:324.122400pt;}
.y5d{bottom:340.197733pt;}
.y33{bottom:340.690533pt;}
.y4a{bottom:340.864400pt;}
.y76{bottom:341.077333pt;}
.y13{bottom:341.455733pt;}
.y5c{bottom:357.531067pt;}
.y32{bottom:358.023867pt;}
.y49{bottom:358.197733pt;}
.y75{bottom:358.410667pt;}
.y12{bottom:358.789067pt;}
.y5b{bottom:374.864400pt;}
.y31{bottom:375.357200pt;}
.y48{bottom:375.531067pt;}
.y74{bottom:375.744000pt;}
.y11{bottom:376.122400pt;}
.y5a{bottom:392.197733pt;}
.y30{bottom:392.690533pt;}
.y47{bottom:392.864400pt;}
.y73{bottom:393.077333pt;}
.y10{bottom:393.455733pt;}
.y59{bottom:409.531067pt;}
.y2f{bottom:410.023867pt;}
.y46{bottom:410.197733pt;}
.y87{bottom:410.410667pt;}
.y72{bottom:410.413600pt;}
.yf{bottom:410.789067pt;}
.y2e{bottom:427.357200pt;}
.y6c{bottom:427.531067pt;}
.y86{bottom:427.744000pt;}
.y71{bottom:427.746933pt;}
.ye{bottom:428.122400pt;}
.y58{bottom:444.197733pt;}
.y2d{bottom:444.690533pt;}
.y45{bottom:444.864400pt;}
.y85{bottom:445.077333pt;}
.y70{bottom:445.080267pt;}
.yd{bottom:445.455733pt;}
.y2c{bottom:462.023867pt;}
.yc{bottom:462.789067pt;}
.y2b{bottom:479.357200pt;}
.yb{bottom:480.122400pt;}
.ya{bottom:497.455733pt;}
.y9{bottom:514.789067pt;}
.y89{bottom:517.836667pt;}
.y6f{bottom:531.811333pt;}
.y8{bottom:532.122400pt;}
.y88{bottom:532.503333pt;}
.y44{bottom:544.641067pt;}
.y7{bottom:549.455733pt;}
.y6{bottom:566.789067pt;}
.y5{bottom:584.122400pt;}
.y4{bottom:601.455733pt;}
.y3{bottom:618.789067pt;}
.y2{bottom:636.122400pt;}
.y1{bottom:653.455733pt;}
.y29{bottom:736.114800pt;}
.y28{bottom:769.448133pt;}
.y27{bottom:802.770800pt;}
.y26{bottom:845.442800pt;}
.y25{bottom:888.114800pt;}
.y24{bottom:968.504000pt;}
.y6e{bottom:1049.378133pt;}
.y2a{bottom:1061.403200pt;}
.y43{bottom:1061.493600pt;}
.h9{height:26.133333pt;}
.h8{height:32.213333pt;}
.h2{height:40.266667pt;}
.h7{height:41.386667pt;}
.h3{height:49.664000pt;}
.h6{height:82.773333pt;}
.h5{height:115.882667pt;}
.h4{height:468.442353pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:34.856400pt;}
.x7{left:68.538533pt;}
.x1{left:75.590533pt;}
.x2{left:88.923867pt;}
.x9{left:135.667867pt;}
.x3{left:297.723867pt;}
.x4{left:311.057200pt;}
.xa{left:415.747200pt;}
.x5{left:519.910400pt;}
.x6{left:533.243733pt;}
}




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