
    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_2a0a769dceabc35a940ff6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088867;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_8028888e7c891780b5ed7e65.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084473;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_6634050e3ec659dd09382179.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088867;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_9a49e82ad32c96899b8cd54c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084473;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_0a1715acc177af5e3d6af76c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_5576e839fbaa2413aeb37c64.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_e42039cc1c6a3030ede4c3ea.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_bd1b2a25a5c866f2af1a9872.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_9a69e3b5d1e2743c7f12d6ca.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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;}
.lsd{letter-spacing:-0.390000px;}
.ls11{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.137400px;}
.ls14{letter-spacing:-0.000003px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.033840px;}
.lsc{letter-spacing:0.042480px;}
.ls3{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.081360px;}
.ls2{letter-spacing:0.094800px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.202200px;}
.lsa{letter-spacing:0.222600px;}
.ls1{letter-spacing:0.383760px;}
.lse{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.411600px;}
.ls12{letter-spacing:20.160000px;}
.ls4{letter-spacing:36.000000px;}
.ls13{letter-spacing:38.160000px;}
.ls5{letter-spacing:59.760000px;}
.ls6{letter-spacing:95.400000px;}
.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:-21.188880px;}
.ws4{word-spacing:-20.756400px;}
.ws8{word-spacing:-18.453600px;}
.wsc{word-spacing:-18.000000px;}
.wse{word-spacing:-17.999997px;}
.wsa{word-spacing:-15.912000px;}
.ws9{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.552000px;}
.ws1{word-spacing:-14.716200px;}
.ws2{word-spacing:-14.493600px;}
.ws0{word-spacing:-14.356200px;}
.ws7{word-spacing:-13.428600px;}
.ws6{word-spacing:-10.628400px;}
.ws5{word-spacing:-10.533600px;}
.wsd{word-spacing:0.000000px;}
._1a{margin-left:-4.320000px;}
._1{margin-left:-2.202480px;}
._4{margin-left:-1.152000px;}
._0{width:1.152000px;}
._9{width:2.232000px;}
._1b{width:3.456000px;}
._14{width:8.640000px;}
._6{width:11.592000px;}
._1f{width:13.296011px;}
._17{width:15.120000px;}
._c{width:16.272000px;}
._f{width:20.280000px;}
._8{width:22.176000px;}
._11{width:23.832000px;}
._2{width:26.035920px;}
._21{width:27.532080px;}
._18{width:29.160000px;}
._19{width:30.168000px;}
._1d{width:31.248000px;}
._7{width:32.904000px;}
._10{width:34.056000px;}
._5{width:35.136000px;}
._3{width:36.216000px;}
._15{width:37.224000px;}
._16{width:38.232000px;}
._1c{width:39.240000px;}
._1e{width:41.328000px;}
._12{width:53.424000px;}
._13{width:54.432000px;}
._a{width:56.520000px;}
._b{width:59.904000px;}
._d{width:61.776000px;}
._20{width:71.208000px;}
._e{width:95.184000px;}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y7{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.900000px;}
.ya{bottom:1.260000px;}
.y10{bottom:2.430000px;}
.y4{bottom:3.690000px;}
.y6{bottom:7.110000px;}
.yd{bottom:15.030000px;}
.yc{bottom:29.070000px;}
.y8{bottom:43.380000px;}
.y5{bottom:44.190000px;}
.y3{bottom:46.440000px;}
.y2{bottom:51.120000px;}
.y3e{bottom:94.770000px;}
.y3d{bottom:118.620000px;}
.y3c{bottom:142.380000px;}
.y3b{bottom:166.230000px;}
.y3a{bottom:189.990000px;}
.y39{bottom:213.840000px;}
.y38{bottom:237.630000px;}
.y37{bottom:261.480000px;}
.y36{bottom:285.240000px;}
.y35{bottom:309.090000px;}
.y34{bottom:332.850000px;}
.y33{bottom:356.610000px;}
.y32{bottom:380.460000px;}
.y31{bottom:404.220000px;}
.y30{bottom:428.070000px;}
.y2f{bottom:451.830000px;}
.y2e{bottom:475.680000px;}
.y2d{bottom:499.440000px;}
.y2c{bottom:523.290000px;}
.y2b{bottom:547.050000px;}
.y2a{bottom:570.900000px;}
.y29{bottom:594.660000px;}
.y28{bottom:618.510000px;}
.y27{bottom:642.270000px;}
.y26{bottom:666.150000px;}
.y25{bottom:689.910000px;}
.y24{bottom:713.760000px;}
.y23{bottom:737.520000px;}
.y22{bottom:761.370000px;}
.y21{bottom:785.130000px;}
.y20{bottom:808.980000px;}
.y1f{bottom:829.770000px;}
.y1e{bottom:850.920000px;}
.y1d{bottom:871.980000px;}
.y49{bottom:880.440000px;}
.y1c{bottom:893.040000px;}
.y48{bottom:904.200000px;}
.y1b{bottom:914.190000px;}
.y47{bottom:928.050000px;}
.y1a{bottom:935.250000px;}
.y46{bottom:951.810000px;}
.y19{bottom:956.400000px;}
.y45{bottom:975.660000px;}
.y18{bottom:977.460000px;}
.y17{bottom:998.610000px;}
.y44{bottom:999.420000px;}
.y16{bottom:1019.670000px;}
.y43{bottom:1023.270000px;}
.y15{bottom:1041.450000px;}
.y42{bottom:1047.030000px;}
.y14{bottom:1066.140000px;}
.y41{bottom:1070.910000px;}
.y13{bottom:1090.710000px;}
.y40{bottom:1094.670000px;}
.y12{bottom:1115.370000px;}
.y3f{bottom:1118.430000px;}
.y11{bottom:1153.710000px;}
.yf{bottom:1156.320000px;}
.yb{bottom:1173.870000px;}
.y9{bottom:1213.830000px;}
.y1{bottom:1245.780000px;}
.hb{height:13.860000px;}
.hc{height:18.000000px;}
.h4{height:19.260000px;}
.h6{height:22.770000px;}
.h7{height:24.120000px;}
.h9{height:40.500000px;}
.ha{height:41.918379px;}
.h10{height:50.484375px;}
.hd{height:52.634355px;}
.h5{height:57.065977px;}
.h3{height:62.367188px;}
.h2{height:63.035156px;}
.hf{height:70.664062px;}
.he{height:73.435957px;}
.h11{height:74.953125px;}
.h8{height:84.151934px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:124.830000px;}
.w3{width:129.420000px;}
.w6{width:145.440000px;}
.w5{width:149.760000px;}
.w8{width:250.950000px;}
.w4{width:297.240000px;}
.w7{width:322.140000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x3{left:50.940000px;}
.x4{left:78.300000px;}
.x1{left:85.049987px;}
.x11{left:96.929987px;}
.x15{left:127.649987px;}
.x9{left:138.089987px;}
.x7{left:172.560000px;}
.xa{left:209.099987px;}
.x13{left:224.579987px;}
.x14{left:278.039987px;}
.x12{left:355.619987px;}
.xf{left:369.059987px;}
.xd{left:374.459987px;}
.xb{left:379.589987px;}
.xc{left:384.629987px;}
.xe{left:386.249987px;}
.x2{left:391.560000px;}
.x10{left:407.579987px;}
.x6{left:676.080000px;}
.x8{left:688.140000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.346667pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.122133pt;}
.ls14{letter-spacing:-0.000003pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.030080pt;}
.lsc{letter-spacing:0.037760pt;}
.ls3{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.072320pt;}
.ls2{letter-spacing:0.084267pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.179733pt;}
.lsa{letter-spacing:0.197867pt;}
.ls1{letter-spacing:0.341120pt;}
.lse{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.365867pt;}
.ls12{letter-spacing:17.920000pt;}
.ls4{letter-spacing:32.000000pt;}
.ls13{letter-spacing:33.920000pt;}
.ls5{letter-spacing:53.120000pt;}
.ls6{letter-spacing:84.800000pt;}
.ws3{word-spacing:-18.834560pt;}
.ws4{word-spacing:-18.450133pt;}
.ws8{word-spacing:-16.403200pt;}
.wsc{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.999997pt;}
.wsa{word-spacing:-14.144000pt;}
.ws9{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.081067pt;}
.ws2{word-spacing:-12.883200pt;}
.ws0{word-spacing:-12.761067pt;}
.ws7{word-spacing:-11.936533pt;}
.ws6{word-spacing:-9.447467pt;}
.ws5{word-spacing:-9.363200pt;}
.wsd{word-spacing:0.000000pt;}
._1a{margin-left:-3.840000pt;}
._1{margin-left:-1.957760pt;}
._4{margin-left:-1.024000pt;}
._0{width:1.024000pt;}
._9{width:1.984000pt;}
._1b{width:3.072000pt;}
._14{width:7.680000pt;}
._6{width:10.304000pt;}
._1f{width:11.818677pt;}
._17{width:13.440000pt;}
._c{width:14.464000pt;}
._f{width:18.026667pt;}
._8{width:19.712000pt;}
._11{width:21.184000pt;}
._2{width:23.143040pt;}
._21{width:24.472960pt;}
._18{width:25.920000pt;}
._19{width:26.816000pt;}
._1d{width:27.776000pt;}
._7{width:29.248000pt;}
._10{width:30.272000pt;}
._5{width:31.232000pt;}
._3{width:32.192000pt;}
._15{width:33.088000pt;}
._16{width:33.984000pt;}
._1c{width:34.880000pt;}
._1e{width:36.736000pt;}
._12{width:47.488000pt;}
._13{width:48.384000pt;}
._a{width:50.240000pt;}
._b{width:53.248000pt;}
._d{width:54.912000pt;}
._20{width:63.296000pt;}
._e{width:84.608000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y7{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.800000pt;}
.ya{bottom:1.120000pt;}
.y10{bottom:2.160000pt;}
.y4{bottom:3.280000pt;}
.y6{bottom:6.320000pt;}
.yd{bottom:13.360000pt;}
.yc{bottom:25.840000pt;}
.y8{bottom:38.560000pt;}
.y5{bottom:39.280000pt;}
.y3{bottom:41.280000pt;}
.y2{bottom:45.440000pt;}
.y3e{bottom:84.240000pt;}
.y3d{bottom:105.440000pt;}
.y3c{bottom:126.560000pt;}
.y3b{bottom:147.760000pt;}
.y3a{bottom:168.880000pt;}
.y39{bottom:190.080000pt;}
.y38{bottom:211.226667pt;}
.y37{bottom:232.426667pt;}
.y36{bottom:253.546667pt;}
.y35{bottom:274.746667pt;}
.y34{bottom:295.866667pt;}
.y33{bottom:316.986667pt;}
.y32{bottom:338.186667pt;}
.y31{bottom:359.306667pt;}
.y30{bottom:380.506667pt;}
.y2f{bottom:401.626667pt;}
.y2e{bottom:422.826667pt;}
.y2d{bottom:443.946667pt;}
.y2c{bottom:465.146667pt;}
.y2b{bottom:486.266667pt;}
.y2a{bottom:507.466667pt;}
.y29{bottom:528.586667pt;}
.y28{bottom:549.786667pt;}
.y27{bottom:570.906667pt;}
.y26{bottom:592.133333pt;}
.y25{bottom:613.253333pt;}
.y24{bottom:634.453333pt;}
.y23{bottom:655.573333pt;}
.y22{bottom:676.773333pt;}
.y21{bottom:697.893333pt;}
.y20{bottom:719.093333pt;}
.y1f{bottom:737.573333pt;}
.y1e{bottom:756.373333pt;}
.y1d{bottom:775.093333pt;}
.y49{bottom:782.613333pt;}
.y1c{bottom:793.813333pt;}
.y48{bottom:803.733333pt;}
.y1b{bottom:812.613333pt;}
.y47{bottom:824.933333pt;}
.y1a{bottom:831.333333pt;}
.y46{bottom:846.053333pt;}
.y19{bottom:850.133333pt;}
.y45{bottom:867.253333pt;}
.y18{bottom:868.853333pt;}
.y17{bottom:887.653333pt;}
.y44{bottom:888.373333pt;}
.y16{bottom:906.373333pt;}
.y43{bottom:909.573333pt;}
.y15{bottom:925.733333pt;}
.y42{bottom:930.693333pt;}
.y14{bottom:947.680000pt;}
.y41{bottom:951.920000pt;}
.y13{bottom:969.520000pt;}
.y40{bottom:973.040000pt;}
.y12{bottom:991.440000pt;}
.y3f{bottom:994.160000pt;}
.y11{bottom:1025.520000pt;}
.yf{bottom:1027.840000pt;}
.yb{bottom:1043.440000pt;}
.y9{bottom:1078.960000pt;}
.y1{bottom:1107.360000pt;}
.hb{height:12.320000pt;}
.hc{height:16.000000pt;}
.h4{height:17.120000pt;}
.h6{height:20.240000pt;}
.h7{height:21.440000pt;}
.h9{height:36.000000pt;}
.ha{height:37.260781pt;}
.h10{height:44.875000pt;}
.hd{height:46.786094pt;}
.h5{height:50.725312pt;}
.h3{height:55.437500pt;}
.h2{height:56.031250pt;}
.hf{height:62.812500pt;}
.he{height:65.276406pt;}
.h11{height:66.625000pt;}
.h8{height:74.801719pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:110.960000pt;}
.w3{width:115.040000pt;}
.w6{width:129.280000pt;}
.w5{width:133.120000pt;}
.w8{width:223.066667pt;}
.w4{width:264.213333pt;}
.w7{width:286.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x3{left:45.280000pt;}
.x4{left:69.600000pt;}
.x1{left:75.599988pt;}
.x11{left:86.159988pt;}
.x15{left:113.466655pt;}
.x9{left:122.746655pt;}
.x7{left:153.386667pt;}
.xa{left:185.866655pt;}
.x13{left:199.626655pt;}
.x14{left:247.146655pt;}
.x12{left:316.106655pt;}
.xf{left:328.053322pt;}
.xd{left:332.853322pt;}
.xb{left:337.413322pt;}
.xc{left:341.893322pt;}
.xe{left:343.333322pt;}
.x2{left:348.053333pt;}
.x10{left:362.293322pt;}
.x6{left:600.960000pt;}
.x8{left:611.680000pt;}
}




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