
    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_df05633dd5b56123e344ce1a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_51a355be0aeefcf7e6e64d4f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_bc7c56e38cc00037d508bb93.woff')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_ae7a175c94e155db0093d118.woff')format("woff");}.ff4{font-family:ff4;line-height:1.019000;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_1f2d2afd33518fb613908384.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_0c1521856b514d6c72003ec2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.991000;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_c81baa998487ead4044216c6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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;}
.ls6{letter-spacing:-2.589600px;}
.ls7{letter-spacing:-2.490000px;}
.ls1{letter-spacing:-1.716000px;}
.ls8{letter-spacing:-1.650000px;}
.ls3{letter-spacing:-1.620000px;}
.ls2{letter-spacing:-1.560000px;}
.ls5{letter-spacing:-1.500000px;}
.ls4{letter-spacing:-0.690000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsd{word-spacing:-32.042400px;}
.ws9{word-spacing:-31.872000px;}
.wsc{word-spacing:-16.860000px;}
.ws7{word-spacing:-4.278000px;}
.ws4{word-spacing:-1.782000px;}
.wsb{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.060000px;}
.ws3{word-spacing:1.188000px;}
.wsa{word-spacing:1.500000px;}
.ws5{word-spacing:1.560000px;}
.ws6{word-spacing:1.620000px;}
.ws1{word-spacing:1.980000px;}
.ws2{word-spacing:5.082000px;}
._0{margin-left:-23.047800px;}
._6{margin-left:-14.807400px;}
._b{margin-left:-9.607200px;}
._7{margin-left:-5.915400px;}
._9{margin-left:-4.821600px;}
._3{margin-left:-3.426600px;}
._4{margin-left:-2.354400px;}
._1{margin-left:-1.339800px;}
._2{width:1.419000px;}
._8{width:2.541600px;}
._a{width:3.735600px;}
._5{width:61.620000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:99.600000px;}
.fs6{font-size:101.400000px;}
.fs4{font-size:138.000000px;}
.fs3{font-size:144.000000px;}
.fs0{font-size:215.400000px;}
.y0{bottom:0.000000px;}
.y68{bottom:20.416350px;}
.y18{bottom:21.150750px;}
.y6c{bottom:83.871600px;}
.y49{bottom:85.826250px;}
.y6b{bottom:100.071600px;}
.y48{bottom:115.826250px;}
.y6a{bottom:116.271600px;}
.y69{bottom:132.471600px;}
.y47{bottom:138.326250px;}
.y5a{bottom:140.640900px;}
.y59{bottom:160.140900px;}
.y46{bottom:160.826250px;}
.y27{bottom:167.744250px;}
.y17{bottom:169.979550px;}
.y58{bottom:179.640900px;}
.y26{bottom:187.244250px;}
.y45{bottom:190.826250px;}
.y16{bottom:190.979550px;}
.y57{bottom:199.140900px;}
.y25{bottom:206.744250px;}
.y44{bottom:213.326250px;}
.y91{bottom:216.441150px;}
.y56{bottom:218.640900px;}
.y15{bottom:220.979550px;}
.y24{bottom:226.244250px;}
.y90{bottom:235.941150px;}
.y43{bottom:243.326250px;}
.y23{bottom:245.744250px;}
.y14{bottom:250.979550px;}
.y8f{bottom:255.441150px;}
.y22{bottom:265.244250px;}
.y42{bottom:265.826250px;}
.y13{bottom:280.979550px;}
.y21{bottom:284.744250px;}
.y55{bottom:285.004800px;}
.y8e{bottom:287.242500px;}
.y41{bottom:295.826250px;}
.y12{bottom:300.479550px;}
.y20{bottom:317.744250px;}
.y40{bottom:318.326250px;}
.y11{bottom:333.479550px;}
.y1f{bottom:337.244250px;}
.y3f{bottom:348.326250px;}
.y10{bottom:354.479550px;}
.y1e{bottom:356.744250px;}
.y3e{bottom:370.826250px;}
.y1d{bottom:376.244250px;}
.y8d{bottom:382.822950px;}
.yf{bottom:388.979550px;}
.y1c{bottom:395.744250px;}
.y3d{bottom:400.826250px;}
.y8c{bottom:402.322950px;}
.ye{bottom:409.979550px;}
.y1b{bottom:415.244250px;}
.y70{bottom:415.456200px;}
.y54{bottom:416.585100px;}
.y8b{bottom:421.822950px;}
.y3c{bottom:423.326250px;}
.yd{bottom:430.979550px;}
.y6f{bottom:433.456200px;}
.y53{bottom:436.085100px;}
.y8a{bottom:441.322950px;}
.y3b{bottom:445.826250px;}
.y6e{bottom:451.456200px;}
.yc{bottom:451.979550px;}
.y6d{bottom:469.456200px;}
.yb{bottom:472.979550px;}
.y52{bottom:475.085100px;}
.y3a{bottom:475.826250px;}
.y89{bottom:480.322950px;}
.ya{bottom:493.979550px;}
.y51{bottom:497.585100px;}
.y39{bottom:498.326250px;}
.y88{bottom:499.822950px;}
.y9{bottom:514.979550px;}
.y87{bottom:519.322950px;}
.y50{bottom:520.085100px;}
.y8{bottom:535.979550px;}
.y86{bottom:538.822950px;}
.y4f{bottom:542.585100px;}
.y85{bottom:558.322950px;}
.y4e{bottom:565.085100px;}
.y4a{bottom:575.750100px;}
.y4d{bottom:595.085100px;}
.y84{bottom:597.322950px;}
.y4c{bottom:614.585100px;}
.y83{bottom:616.822950px;}
.y82{bottom:636.322950px;}
.y7{bottom:642.020250px;}
.y81{bottom:655.822950px;}
.y6{bottom:664.520250px;}
.y80{bottom:675.322950px;}
.y4b{bottom:684.485400px;}
.y5{bottom:687.020250px;}
.y38{bottom:703.991100px;}
.y4{bottom:709.520250px;}
.y37{bottom:726.491100px;}
.y93{bottom:729.149400px;}
.y3{bottom:745.520250px;}
.y36{bottom:756.491100px;}
.y2{bottom:768.020250px;}
.y35{bottom:778.991100px;}
.y7f{bottom:800.472600px;}
.y34{bottom:801.491100px;}
.y66{bottom:809.611500px;}
.y7e{bottom:824.472600px;}
.y33{bottom:831.491100px;}
.y65{bottom:832.111500px;}
.y7d{bottom:848.472600px;}
.y32{bottom:853.991100px;}
.y64{bottom:862.111500px;}
.y1a{bottom:866.202300px;}
.y7c{bottom:866.472600px;}
.y31{bottom:876.491100px;}
.y63{bottom:884.611500px;}
.y7b{bottom:890.472600px;}
.y30{bottom:906.491100px;}
.y19{bottom:907.602300px;}
.y7a{bottom:908.472600px;}
.y62{bottom:914.611500px;}
.y2f{bottom:928.991100px;}
.y79{bottom:932.472600px;}
.y61{bottom:937.111500px;}
.y78{bottom:956.472600px;}
.y2e{bottom:958.991100px;}
.y60{bottom:967.111500px;}
.y1{bottom:978.481650px;}
.y77{bottom:980.472600px;}
.y2d{bottom:981.491100px;}
.y5f{bottom:989.611500px;}
.y76{bottom:1004.472600px;}
.y2c{bottom:1011.491100px;}
.y5e{bottom:1019.611500px;}
.y2b{bottom:1033.991100px;}
.y75{bottom:1035.972600px;}
.y5d{bottom:1042.111500px;}
.y2a{bottom:1063.991100px;}
.y5c{bottom:1072.111500px;}
.y74{bottom:1074.972600px;}
.y29{bottom:1086.491100px;}
.y73{bottom:1094.472600px;}
.y5b{bottom:1094.611500px;}
.y72{bottom:1113.972600px;}
.y71{bottom:1133.472600px;}
.y67{bottom:1150.316400px;}
.y28{bottom:1170.478200px;}
.y92{bottom:1189.191450px;}
.hd{height:44.712000px;}
.h4{height:45.840000px;}
.h6{height:46.500000px;}
.h5{height:49.680000px;}
.h3{height:50.424000px;}
.hc{height:51.480000px;}
.ha{height:77.190000px;}
.h9{height:77.688000px;}
.hb{height:78.585000px;}
.h8{height:106.950000px;}
.h7{height:111.600000px;}
.h2{height:166.935000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:88.281300px;}
.x2{left:90.407250px;}
.x3{left:117.407250px;}
.x7{left:191.316300px;}
.x5{left:476.234250px;}
.x4{left:550.476150px;}
.x6{left:554.399700px;}
.x8{left:637.835550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.301867pt;}
.ls7{letter-spacing:-2.213333pt;}
.ls1{letter-spacing:-1.525333pt;}
.ls8{letter-spacing:-1.466667pt;}
.ls3{letter-spacing:-1.440000pt;}
.ls2{letter-spacing:-1.386667pt;}
.ls5{letter-spacing:-1.333333pt;}
.ls4{letter-spacing:-0.613333pt;}
.ls0{letter-spacing:0.000000pt;}
.wsd{word-spacing:-28.482133pt;}
.ws9{word-spacing:-28.330667pt;}
.wsc{word-spacing:-14.986667pt;}
.ws7{word-spacing:-3.802667pt;}
.ws4{word-spacing:-1.584000pt;}
.wsb{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053333pt;}
.ws3{word-spacing:1.056000pt;}
.wsa{word-spacing:1.333333pt;}
.ws5{word-spacing:1.386667pt;}
.ws6{word-spacing:1.440000pt;}
.ws1{word-spacing:1.760000pt;}
.ws2{word-spacing:4.517333pt;}
._0{margin-left:-20.486933pt;}
._6{margin-left:-13.162133pt;}
._b{margin-left:-8.539733pt;}
._7{margin-left:-5.258133pt;}
._9{margin-left:-4.285867pt;}
._3{margin-left:-3.045867pt;}
._4{margin-left:-2.092800pt;}
._1{margin-left:-1.190933pt;}
._2{width:1.261333pt;}
._8{width:2.259200pt;}
._a{width:3.320533pt;}
._5{width:54.773333pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:88.533333pt;}
.fs6{font-size:90.133333pt;}
.fs4{font-size:122.666667pt;}
.fs3{font-size:128.000000pt;}
.fs0{font-size:191.466667pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:18.147867pt;}
.y18{bottom:18.800667pt;}
.y6c{bottom:74.552533pt;}
.y49{bottom:76.290000pt;}
.y6b{bottom:88.952533pt;}
.y48{bottom:102.956667pt;}
.y6a{bottom:103.352533pt;}
.y69{bottom:117.752533pt;}
.y47{bottom:122.956667pt;}
.y5a{bottom:125.014133pt;}
.y59{bottom:142.347467pt;}
.y46{bottom:142.956667pt;}
.y27{bottom:149.106000pt;}
.y17{bottom:151.092933pt;}
.y58{bottom:159.680800pt;}
.y26{bottom:166.439333pt;}
.y45{bottom:169.623333pt;}
.y16{bottom:169.759600pt;}
.y57{bottom:177.014133pt;}
.y25{bottom:183.772667pt;}
.y44{bottom:189.623333pt;}
.y91{bottom:192.392133pt;}
.y56{bottom:194.347467pt;}
.y15{bottom:196.426267pt;}
.y24{bottom:201.106000pt;}
.y90{bottom:209.725467pt;}
.y43{bottom:216.290000pt;}
.y23{bottom:218.439333pt;}
.y14{bottom:223.092933pt;}
.y8f{bottom:227.058800pt;}
.y22{bottom:235.772667pt;}
.y42{bottom:236.290000pt;}
.y13{bottom:249.759600pt;}
.y21{bottom:253.106000pt;}
.y55{bottom:253.337600pt;}
.y8e{bottom:255.326667pt;}
.y41{bottom:262.956667pt;}
.y12{bottom:267.092933pt;}
.y20{bottom:282.439333pt;}
.y40{bottom:282.956667pt;}
.y11{bottom:296.426267pt;}
.y1f{bottom:299.772667pt;}
.y3f{bottom:309.623333pt;}
.y10{bottom:315.092933pt;}
.y1e{bottom:317.106000pt;}
.y3e{bottom:329.623333pt;}
.y1d{bottom:334.439333pt;}
.y8d{bottom:340.287067pt;}
.yf{bottom:345.759600pt;}
.y1c{bottom:351.772667pt;}
.y3d{bottom:356.290000pt;}
.y8c{bottom:357.620400pt;}
.ye{bottom:364.426267pt;}
.y1b{bottom:369.106000pt;}
.y70{bottom:369.294400pt;}
.y54{bottom:370.297867pt;}
.y8b{bottom:374.953733pt;}
.y3c{bottom:376.290000pt;}
.yd{bottom:383.092933pt;}
.y6f{bottom:385.294400pt;}
.y53{bottom:387.631200pt;}
.y8a{bottom:392.287067pt;}
.y3b{bottom:396.290000pt;}
.y6e{bottom:401.294400pt;}
.yc{bottom:401.759600pt;}
.y6d{bottom:417.294400pt;}
.yb{bottom:420.426267pt;}
.y52{bottom:422.297867pt;}
.y3a{bottom:422.956667pt;}
.y89{bottom:426.953733pt;}
.ya{bottom:439.092933pt;}
.y51{bottom:442.297867pt;}
.y39{bottom:442.956667pt;}
.y88{bottom:444.287067pt;}
.y9{bottom:457.759600pt;}
.y87{bottom:461.620400pt;}
.y50{bottom:462.297867pt;}
.y8{bottom:476.426267pt;}
.y86{bottom:478.953733pt;}
.y4f{bottom:482.297867pt;}
.y85{bottom:496.287067pt;}
.y4e{bottom:502.297867pt;}
.y4a{bottom:511.777867pt;}
.y4d{bottom:528.964533pt;}
.y84{bottom:530.953733pt;}
.y4c{bottom:546.297867pt;}
.y83{bottom:548.287067pt;}
.y82{bottom:565.620400pt;}
.y7{bottom:570.684667pt;}
.y81{bottom:582.953733pt;}
.y6{bottom:590.684667pt;}
.y80{bottom:600.287067pt;}
.y4b{bottom:608.431467pt;}
.y5{bottom:610.684667pt;}
.y38{bottom:625.769867pt;}
.y4{bottom:630.684667pt;}
.y37{bottom:645.769867pt;}
.y93{bottom:648.132800pt;}
.y3{bottom:662.684667pt;}
.y36{bottom:672.436533pt;}
.y2{bottom:682.684667pt;}
.y35{bottom:692.436533pt;}
.y7f{bottom:711.531200pt;}
.y34{bottom:712.436533pt;}
.y66{bottom:719.654667pt;}
.y7e{bottom:732.864533pt;}
.y33{bottom:739.103200pt;}
.y65{bottom:739.654667pt;}
.y7d{bottom:754.197867pt;}
.y32{bottom:759.103200pt;}
.y64{bottom:766.321333pt;}
.y1a{bottom:769.957600pt;}
.y7c{bottom:770.197867pt;}
.y31{bottom:779.103200pt;}
.y63{bottom:786.321333pt;}
.y7b{bottom:791.531200pt;}
.y30{bottom:805.769867pt;}
.y19{bottom:806.757600pt;}
.y7a{bottom:807.531200pt;}
.y62{bottom:812.988000pt;}
.y2f{bottom:825.769867pt;}
.y79{bottom:828.864533pt;}
.y61{bottom:832.988000pt;}
.y78{bottom:850.197867pt;}
.y2e{bottom:852.436533pt;}
.y60{bottom:859.654667pt;}
.y1{bottom:869.761467pt;}
.y77{bottom:871.531200pt;}
.y2d{bottom:872.436533pt;}
.y5f{bottom:879.654667pt;}
.y76{bottom:892.864533pt;}
.y2c{bottom:899.103200pt;}
.y5e{bottom:906.321333pt;}
.y2b{bottom:919.103200pt;}
.y75{bottom:920.864533pt;}
.y5d{bottom:926.321333pt;}
.y2a{bottom:945.769867pt;}
.y5c{bottom:952.988000pt;}
.y74{bottom:955.531200pt;}
.y29{bottom:965.769867pt;}
.y73{bottom:972.864533pt;}
.y5b{bottom:972.988000pt;}
.y72{bottom:990.197867pt;}
.y71{bottom:1007.531200pt;}
.y67{bottom:1022.503467pt;}
.y28{bottom:1040.425067pt;}
.y92{bottom:1057.059067pt;}
.hd{height:39.744000pt;}
.h4{height:40.746667pt;}
.h6{height:41.333333pt;}
.h5{height:44.160000pt;}
.h3{height:44.821333pt;}
.hc{height:45.760000pt;}
.ha{height:68.613333pt;}
.h9{height:69.056000pt;}
.hb{height:69.853333pt;}
.h8{height:95.066667pt;}
.h7{height:99.200000pt;}
.h2{height:148.386667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:78.472267pt;}
.x2{left:80.362000pt;}
.x3{left:104.362000pt;}
.x7{left:170.058933pt;}
.x5{left:423.319333pt;}
.x4{left:489.312133pt;}
.x6{left:492.799733pt;}
.x8{left:566.964933pt;}
}




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