
    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_947aaee4ec5732695090dd67.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bc2ae6aba242229d5382bca7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.023000;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_b658bd8e3c422c0e9a5dee6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_f2e9f4de805de965c9a80dbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113000;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_7b676b0a5d1104688fd536a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.013000;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_3687c23f2ee5cc12394d4bdf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063000;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_a08914a78b84c0df1c27f6ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.094000;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_86acfb7508b3f972d59b53fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_eaad9c3da5f1abae6ee8c5fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.101000;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:ffa;src:url('chunks/assets/font_515adb28c0e1906a28b5aa5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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:ffb;src:url('chunks/assets/font_9e54fbfca72fc0458e6eb9b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113000;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.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);}
.m1{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);}
.m3{transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982600px;}
.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;}
}
.ws1{word-spacing:-36.720000px;}
.ws0{word-spacing:-18.889200px;}
.ws5{word-spacing:-17.976000px;}
.ws7{word-spacing:-16.776000px;}
.ws8{word-spacing:-16.128000px;}
.ws2{word-spacing:-15.408000px;}
.ws9{word-spacing:-12.582000px;}
.ws3{word-spacing:-10.800000px;}
.ws6{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-7.286400px;}
._3{margin-left:-5.616000px;}
._5{margin-left:-4.104000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.440000px;}
._2{width:1.720800px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,88,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(229,0,125);}
.fs1{font-size:31.482000px;}
.fs5{font-size:47.895600px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:7.800900px;}
.y3{bottom:44.314950px;}
.y28{bottom:44.332950px;}
.y4b{bottom:68.320950px;}
.y27{bottom:68.326950px;}
.y51{bottom:70.795588px;}
.y4a{bottom:92.314950px;}
.y26{bottom:92.320950px;}
.y52{bottom:113.398724px;}
.y25{bottom:116.314950px;}
.y49{bottom:140.326950px;}
.y48{bottom:164.320950px;}
.y47{bottom:188.314950px;}
.y46{bottom:212.314950px;}
.y45{bottom:236.302950px;}
.y44{bottom:284.308950px;}
.y43{bottom:332.314950px;}
.y5b{bottom:336.832950px;}
.y42{bottom:356.314950px;}
.y5a{bottom:356.326950px;}
.y41{bottom:380.320950px;}
.y40{bottom:404.314950px;}
.y17{bottom:428.278950px;}
.y2a{bottom:428.311950px;}
.y3f{bottom:428.314950px;}
.y3e{bottom:452.320950px;}
.y72{bottom:457.774950px;}
.y16{bottom:476.284950px;}
.y3d{bottom:476.314950px;}
.yd{bottom:476.326950px;}
.y71{bottom:477.268950px;}
.y70{bottom:496.762950px;}
.y15{bottom:500.287950px;}
.y3c{bottom:500.314950px;}
.yc{bottom:500.320950px;}
.y4e{bottom:509.326950px;}
.y6f{bottom:516.256950px;}
.y14{bottom:524.290950px;}
.y3b{bottom:524.338950px;}
.y4d{bottom:528.820950px;}
.y6e{bottom:535.750950px;}
.y4c{bottom:548.314950px;}
.yb{bottom:548.326950px;}
.y3a{bottom:548.332950px;}
.y6d{bottom:555.244950px;}
.y13{bottom:572.296950px;}
.ya{bottom:572.320950px;}
.y39{bottom:572.326950px;}
.y4f{bottom:574.312500px;}
.y6c{bottom:574.738950px;}
.y7e{bottom:574.846950px;}
.y6b{bottom:594.232950px;}
.y7d{bottom:594.340950px;}
.y12{bottom:596.299950px;}
.y9{bottom:596.314950px;}
.y38{bottom:596.320950px;}
.y6a{bottom:613.726950px;}
.y7c{bottom:613.834950px;}
.y11{bottom:620.302950px;}
.y8{bottom:620.314950px;}
.y69{bottom:633.220950px;}
.y7b{bottom:633.328950px;}
.y37{bottom:644.314950px;}
.y7{bottom:644.326950px;}
.y68{bottom:652.714950px;}
.y7a{bottom:652.822950px;}
.y59{bottom:653.326950px;}
.y10{bottom:668.308950px;}
.y36{bottom:668.314950px;}
.y6{bottom:668.320950px;}
.y67{bottom:672.208950px;}
.y79{bottom:672.316950px;}
.y58{bottom:672.820950px;}
.y66{bottom:691.702950px;}
.y78{bottom:691.810950px;}
.y35{bottom:692.308950px;}
.yf{bottom:692.311950px;}
.y5{bottom:692.314950px;}
.y65{bottom:711.196950px;}
.y77{bottom:711.304950px;}
.y4{bottom:716.308950px;}
.ye{bottom:716.314950px;}
.y64{bottom:730.690950px;}
.y76{bottom:730.798950px;}
.y34{bottom:740.314950px;}
.y57{bottom:740.320950px;}
.y63{bottom:750.184950px;}
.y75{bottom:750.292950px;}
.y56{bottom:764.314950px;}
.y62{bottom:769.678950px;}
.y74{bottom:769.786950px;}
.y33{bottom:788.314950px;}
.y61{bottom:789.172950px;}
.y73{bottom:789.280950px;}
.y55{bottom:812.326950px;}
.y32{bottom:836.314950px;}
.y54{bottom:836.320950px;}
.y31{bottom:860.314950px;}
.y29{bottom:884.314950px;}
.y30{bottom:884.326950px;}
.y53{bottom:908.314950px;}
.y2f{bottom:908.320950px;}
.y24{bottom:932.314950px;}
.y23{bottom:956.314950px;}
.y2e{bottom:980.314950px;}
.y22{bottom:980.356950px;}
.y1{bottom:984.330750px;}
.y2{bottom:984.337050px;}
.y2d{bottom:1004.314950px;}
.y60{bottom:1004.344950px;}
.y21{bottom:1004.350950px;}
.y2c{bottom:1028.326950px;}
.y5f{bottom:1028.338950px;}
.y20{bottom:1028.344950px;}
.y2b{bottom:1052.320950px;}
.y5e{bottom:1052.332950px;}
.y1f{bottom:1052.338950px;}
.y5d{bottom:1076.326950px;}
.y1e{bottom:1076.332950px;}
.y5c{bottom:1100.320950px;}
.y1d{bottom:1100.326950px;}
.y19{bottom:1124.314950px;}
.y1c{bottom:1124.320950px;}
.y1b{bottom:1148.314950px;}
.y18{bottom:1172.314950px;}
.y1a{bottom:1196.314950px;}
.hf{height:34.869306px;}
.h3{height:39.690000px;}
.h7{height:41.904000px;}
.h2{height:43.146000px;}
.h8{height:43.902000px;}
.h9{height:46.170000px;}
.h10{height:46.602000px;}
.hc{height:47.358000px;}
.hd{height:55.224000px;}
.h4{height:57.528000px;}
.h6{height:62.208000px;}
.h5{height:63.144000px;}
.hb{height:65.184000px;}
.he{height:129.600000px;}
.ha{height:147.264000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:235.702500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.451900px;}
.x6{left:42.519600px;}
.x1{left:52.644750px;}
.x2{left:69.141750px;}
.x3{left:85.638750px;}
.x4{left:102.135750px;}
.xc{left:114.355783px;}
.x5{left:118.632750px;}
.xd{left:219.191506px;}
.xe{left:296.058000px;}
.x7{left:297.111600px;}
.x8{left:298.181400px;}
.xa{left:299.314200px;}
.x9{left:300.394200px;}
.xf{left:579.882000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984533pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-32.640000pt;}
.ws0{word-spacing:-16.790400pt;}
.ws5{word-spacing:-15.978667pt;}
.ws7{word-spacing:-14.912000pt;}
.ws8{word-spacing:-14.336000pt;}
.ws2{word-spacing:-13.696000pt;}
.ws9{word-spacing:-11.184000pt;}
.ws3{word-spacing:-9.600000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-6.476800pt;}
._3{margin-left:-4.992000pt;}
._5{margin-left:-3.648000pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.529600pt;}
.fs1{font-size:27.984000pt;}
.fs5{font-size:42.573867pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:6.934133pt;}
.y3{bottom:39.391067pt;}
.y28{bottom:39.407067pt;}
.y4b{bottom:60.729733pt;}
.y27{bottom:60.735067pt;}
.y51{bottom:62.929411pt;}
.y4a{bottom:82.057733pt;}
.y26{bottom:82.063067pt;}
.y52{bottom:100.798866pt;}
.y25{bottom:103.391067pt;}
.y49{bottom:124.735067pt;}
.y48{bottom:146.063067pt;}
.y47{bottom:167.391067pt;}
.y46{bottom:188.724400pt;}
.y45{bottom:210.047067pt;}
.y44{bottom:252.719067pt;}
.y43{bottom:295.391067pt;}
.y5b{bottom:299.407067pt;}
.y42{bottom:316.724400pt;}
.y5a{bottom:316.735067pt;}
.y41{bottom:338.063067pt;}
.y40{bottom:359.391067pt;}
.y17{bottom:380.692400pt;}
.y2a{bottom:380.721733pt;}
.y3f{bottom:380.724400pt;}
.y3e{bottom:402.063067pt;}
.y72{bottom:406.911067pt;}
.y16{bottom:423.364400pt;}
.y3d{bottom:423.391067pt;}
.yd{bottom:423.401733pt;}
.y71{bottom:424.239067pt;}
.y70{bottom:441.567067pt;}
.y15{bottom:444.700400pt;}
.y3c{bottom:444.724400pt;}
.yc{bottom:444.729733pt;}
.y4e{bottom:452.735067pt;}
.y6f{bottom:458.895067pt;}
.y14{bottom:466.036400pt;}
.y3b{bottom:466.079067pt;}
.y4d{bottom:470.063067pt;}
.y6e{bottom:476.223067pt;}
.y4c{bottom:487.391067pt;}
.yb{bottom:487.401733pt;}
.y3a{bottom:487.407067pt;}
.y6d{bottom:493.551067pt;}
.y13{bottom:508.708400pt;}
.ya{bottom:508.729733pt;}
.y39{bottom:508.735067pt;}
.y4f{bottom:510.500000pt;}
.y6c{bottom:510.879067pt;}
.y7e{bottom:510.975067pt;}
.y6b{bottom:528.207067pt;}
.y7d{bottom:528.303067pt;}
.y12{bottom:530.044400pt;}
.y9{bottom:530.057733pt;}
.y38{bottom:530.063067pt;}
.y6a{bottom:545.535067pt;}
.y7c{bottom:545.631067pt;}
.y11{bottom:551.380400pt;}
.y8{bottom:551.391067pt;}
.y69{bottom:562.863067pt;}
.y7b{bottom:562.959067pt;}
.y37{bottom:572.724400pt;}
.y7{bottom:572.735067pt;}
.y68{bottom:580.191067pt;}
.y7a{bottom:580.287067pt;}
.y59{bottom:580.735067pt;}
.y10{bottom:594.052400pt;}
.y36{bottom:594.057733pt;}
.y6{bottom:594.063067pt;}
.y67{bottom:597.519067pt;}
.y79{bottom:597.615067pt;}
.y58{bottom:598.063067pt;}
.y66{bottom:614.847067pt;}
.y78{bottom:614.943067pt;}
.y35{bottom:615.385733pt;}
.yf{bottom:615.388400pt;}
.y5{bottom:615.391067pt;}
.y65{bottom:632.175067pt;}
.y77{bottom:632.271067pt;}
.y4{bottom:636.719067pt;}
.ye{bottom:636.724400pt;}
.y64{bottom:649.503067pt;}
.y76{bottom:649.599067pt;}
.y34{bottom:658.057733pt;}
.y57{bottom:658.063067pt;}
.y63{bottom:666.831067pt;}
.y75{bottom:666.927067pt;}
.y56{bottom:679.391067pt;}
.y62{bottom:684.159067pt;}
.y74{bottom:684.255067pt;}
.y33{bottom:700.724400pt;}
.y61{bottom:701.487067pt;}
.y73{bottom:701.583067pt;}
.y55{bottom:722.068400pt;}
.y32{bottom:743.391067pt;}
.y54{bottom:743.396400pt;}
.y31{bottom:764.724400pt;}
.y29{bottom:786.057733pt;}
.y30{bottom:786.068400pt;}
.y53{bottom:807.391067pt;}
.y2f{bottom:807.396400pt;}
.y24{bottom:828.724400pt;}
.y23{bottom:850.057733pt;}
.y2e{bottom:871.391067pt;}
.y22{bottom:871.428400pt;}
.y1{bottom:874.960667pt;}
.y2{bottom:874.966267pt;}
.y2d{bottom:892.724400pt;}
.y60{bottom:892.751067pt;}
.y21{bottom:892.756400pt;}
.y2c{bottom:914.068400pt;}
.y5f{bottom:914.079067pt;}
.y20{bottom:914.084400pt;}
.y2b{bottom:935.396400pt;}
.y5e{bottom:935.407067pt;}
.y1f{bottom:935.412400pt;}
.y5d{bottom:956.735067pt;}
.y1e{bottom:956.740400pt;}
.y5c{bottom:978.063067pt;}
.y1d{bottom:978.068400pt;}
.y19{bottom:999.391067pt;}
.y1c{bottom:999.396400pt;}
.y1b{bottom:1020.724400pt;}
.y18{bottom:1042.057733pt;}
.y1a{bottom:1063.391067pt;}
.hf{height:30.994939pt;}
.h3{height:35.280000pt;}
.h7{height:37.248000pt;}
.h2{height:38.352000pt;}
.h8{height:39.024000pt;}
.h9{height:41.040000pt;}
.h10{height:41.424000pt;}
.hc{height:42.096000pt;}
.hd{height:49.088000pt;}
.h4{height:51.136000pt;}
.h6{height:55.296000pt;}
.h5{height:56.128000pt;}
.hb{height:57.941333pt;}
.he{height:115.200000pt;}
.ha{height:130.901333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:209.513333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.512800pt;}
.x6{left:37.795200pt;}
.x1{left:46.795333pt;}
.x2{left:61.459333pt;}
.x3{left:76.123333pt;}
.x4{left:90.787333pt;}
.xc{left:101.649585pt;}
.x5{left:105.451333pt;}
.xd{left:194.836894pt;}
.xe{left:263.162667pt;}
.x7{left:264.099200pt;}
.x8{left:265.050133pt;}
.xa{left:266.057067pt;}
.x9{left:267.017067pt;}
.xf{left:515.450667pt;}
}




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