
    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_fd7db4aba577066e8092dbba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_00944700e42ca021e3f543a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8d64958610d27a9c0736da96.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_2c7dab98979ec470d2399271.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f2a64d87e292657289c302cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_531c1caf8505ea889ae35acc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_5455f2ca3882ea24788a92a2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c3044d766c9efe775abf2694.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_a31eab331d9d32152a92fb51.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_c881b375cf19a97584c39428.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_7452bdda33f6b5516a951b0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_1e24b38184e2cc6bb3348294.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999023;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);}
.m2{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v5{vertical-align:-47.850767px;}
.v1{vertical-align:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-15.660000px;}
.lsa{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.370200px;}
.lsc{letter-spacing:-0.326400px;}
.ls16{letter-spacing:-0.281400px;}
.ls17{letter-spacing:-0.051899px;}
.ls12{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.010800px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.172800px;}
.ls4{letter-spacing:0.211680px;}
.ls14{letter-spacing:0.227520px;}
.ls15{letter-spacing:0.276000px;}
.ls1b{letter-spacing:0.306720px;}
.ls13{letter-spacing:0.319800px;}
.lsd{letter-spacing:0.351600px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732960px;}
.ls7{letter-spacing:2.692800px;}
.ls10{letter-spacing:17.226720px;}
.ls11{letter-spacing:33.066720px;}
.ls19{letter-spacing:47.466720px;}
.ls6{letter-spacing:72.449280px;}
.ls18{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.572800px;}
.wsa{word-spacing:-13.467000px;}
.ws4{word-spacing:-13.160400px;}
.ws8{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.111200px;}
.wsb{word-spacing:-10.888800px;}
.wsc{word-spacing:-10.331400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:22.305619px;}
.wse{word-spacing:167.218189px;}
._5{margin-left:-2.848800px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._2{width:2.246400px;}
._3{width:3.997440px;}
._6{width:5.451120px;}
._12{width:6.452636px;}
._7{width:7.589400px;}
._d{width:9.222720px;}
._c{width:10.398240px;}
._4{width:11.593201px;}
._9{width:15.059520px;}
._b{width:16.637040px;}
._a{width:18.047520px;}
._e{width:20.799360px;}
._8{width:22.708800px;}
._f{width:41.564671px;}
._10{width:46.600211px;}
._11{width:93.963544px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:52.002677px;}
.fs2{font-size:54.000000px;}
.fsb{font-size:56.984969px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:62.278655px;}
.fsa{font-size:62.382453px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y75{bottom:7.740000px;}
.y77{bottom:7.920000px;}
.y7e{bottom:12.420000px;}
.yab{bottom:13.727254px;}
.ya1{bottom:18.450103px;}
.yde{bottom:21.450000px;}
.y74{bottom:25.380000px;}
.ya3{bottom:29.712108px;}
.y7f{bottom:29.880000px;}
.y80{bottom:30.060000px;}
.y7d{bottom:34.380000px;}
.y7c{bottom:52.020000px;}
.ya4{bottom:55.142559px;}
.yae{bottom:63.264734px;}
.y2{bottom:73.296000px;}
.yaf{bottom:73.748307px;}
.y2b{bottom:74.196000px;}
.ya5{bottom:80.598959px;}
.y1{bottom:101.376000px;}
.yad{bottom:104.420545px;}
.ya6{bottom:106.029410px;}
.y98{bottom:121.536000px;}
.y47{bottom:130.896000px;}
.ya7{bottom:131.459861px;}
.y29{bottom:137.736000px;}
.y97{bottom:139.176000px;}
.ydc{bottom:141.156000px;}
.y9f{bottom:145.656000px;}
.y72{bottom:148.536000px;}
.y28{bottom:155.370000px;}
.y96{bottom:156.630000px;}
.ya8{bottom:156.890312px;}
.ydb{bottom:158.790000px;}
.y71{bottom:166.170000px;}
.y46{bottom:166.350000px;}
.y27{bottom:173.010000px;}
.y9e{bottom:180.570000px;}
.ya9{bottom:182.320763px;}
.y95{bottom:183.270000px;}
.y70{bottom:183.810000px;}
.y45{bottom:183.990000px;}
.yda{bottom:185.430000px;}
.y26{bottom:190.470000px;}
.y9d{bottom:192.090000px;}
.y6f{bottom:201.450000px;}
.y44{bottom:201.630000px;}
.yd9{bottom:203.070000px;}
.yaa{bottom:207.777163px;}
.y25{bottom:208.110000px;}
.yac{bottom:210.657551px;}
.y94{bottom:218.730000px;}
.y6e{bottom:218.910000px;}
.y24{bottom:225.750000px;}
.y43{bottom:228.270000px;}
.yd8{bottom:229.530000px;}
.y93{bottom:236.370000px;}
.y6d{bottom:236.550000px;}
.y23{bottom:243.210000px;}
.yd7{bottom:247.170000px;}
.y92{bottom:254.010000px;}
.y6c{bottom:254.190000px;}
.yb0{bottom:254.667800px;}
.y22{bottom:260.850000px;}
.yd6{bottom:264.810000px;}
.y6b{bottom:271.650000px;}
.y21{bottom:278.490000px;}
.yd5{bottom:282.270000px;}
.y6a{bottom:289.290000px;}
.y20{bottom:295.950000px;}
.y42{bottom:296.310000px;}
.y91{bottom:306.750000px;}
.y69{bottom:306.930000px;}
.yd4{bottom:308.955000px;}
.y1f{bottom:313.635000px;}
.y41{bottom:313.995000px;}
.y68{bottom:324.435000px;}
.yd3{bottom:326.595000px;}
.y40{bottom:331.635000px;}
.y1e{bottom:340.455000px;}
.y67{bottom:342.075000px;}
.yd2{bottom:344.055000px;}
.y3f{bottom:349.275000px;}
.y3e{bottom:366.735000px;}
.y66{bottom:368.535000px;}
.yd1{bottom:370.695000px;}
.y3d{bottom:384.375000px;}
.yd0{bottom:388.335000px;}
.y1d{bottom:389.055000px;}
.y3c{bottom:402.015000px;}
.y65{bottom:404.175000px;}
.ycf{bottom:405.975000px;}
.y3b{bottom:419.475000px;}
.y64{bottom:421.815000px;}
.y1c{bottom:426.135000px;}
.yce{bottom:432.435000px;}
.y3a{bottom:437.115000px;}
.y90{bottom:439.275000px;}
.y63{bottom:439.455000px;}
.y1b{bottom:443.775000px;}
.y8f{bottom:456.915000px;}
.y62{bottom:457.095000px;}
.ycd{bottom:459.075000px;}
.y1a{bottom:461.415000px;}
.y39{bottom:463.755000px;}
.ycc{bottom:476.715000px;}
.y19{bottom:478.875000px;}
.y61{bottom:483.555000px;}
.ycb{bottom:494.175000px;}
.y18{bottom:496.515000px;}
.y38{bottom:499.215000px;}
.y17{bottom:514.155000px;}
.y37{bottom:516.855000px;}
.y8e{bottom:519.015000px;}
.y60{bottom:519.195000px;}
.yca{bottom:520.815000px;}
.y16{bottom:531.615000px;}
.y36{bottom:534.495000px;}
.y8d{bottom:536.655000px;}
.y5f{bottom:536.835000px;}
.yc9{bottom:538.455000px;}
.y15{bottom:549.255000px;}
.y35{bottom:552.135000px;}
.y5e{bottom:554.295000px;}
.yc8{bottom:555.915000px;}
.y14{bottom:566.895000px;}
.y8c{bottom:571.935000px;}
.y34{bottom:578.595000px;}
.yc7{bottom:582.555000px;}
.y5d{bottom:589.965000px;}
.y13{bottom:593.745000px;}
.y8b{bottom:598.425000px;}
.yc6{bottom:600.225000px;}
.y5c{bottom:607.605000px;}
.y33{bottom:614.265000px;}
.yc5{bottom:617.865000px;}
.y5b{bottom:625.065000px;}
.y8a{bottom:631.005000px;}
.y12{bottom:641.985000px;}
.y5a{bottom:642.705000px;}
.yc4{bottom:644.325000px;}
.y32{bottom:646.845000px;}
.y59{bottom:660.345000px;}
.y89{bottom:666.645000px;}
.yc3{bottom:671.145000px;}
.y11{bottom:677.805000px;}
.y58{bottom:677.985000px;}
.y31{bottom:682.305000px;}
.y88{bottom:684.285000px;}
.y57{bottom:695.445000px;}
.y87{bottom:701.745000px;}
.y30{bottom:708.945000px;}
.y10{bottom:713.805000px;}
.y86{bottom:719.385000px;}
.yc2{bottom:719.565000px;}
.y56{bottom:722.085000px;}
.y85{bottom:737.025000px;}
.y2f{bottom:744.765000px;}
.yc1{bottom:746.385000px;}
.y9c{bottom:747.645000px;}
.yf{bottom:749.805000px;}
.y55{bottom:754.665000px;}
.ye{bottom:771.585000px;}
.y9b{bottom:779.865000px;}
.y84{bottom:781.125000px;}
.ya0{bottom:782.695139px;}
.yc0{bottom:783.645000px;}
.yd{bottom:785.805000px;}
.y54{bottom:790.485000px;}
.y2e{bottom:792.465000px;}
.ya2{bottom:801.249040px;}
.yc{bottom:807.585000px;}
.y83{bottom:811.005000px;}
.y2d{bottom:825.225000px;}
.yb{bottom:825.585000px;}
.ybf{bottom:832.065000px;}
.y82{bottom:838.365000px;}
.y53{bottom:838.725000px;}
.ya{bottom:839.805000px;}
.ybe{bottom:849.705000px;}
.yea{bottom:857.265000px;}
.y2c{bottom:857.445000px;}
.y9{bottom:861.630000px;}
.y81{bottom:865.770000px;}
.ybd{bottom:867.210000px;}
.y52{bottom:874.410000px;}
.ye9{bottom:874.950000px;}
.y8{bottom:875.850000px;}
.ybc{bottom:884.850000px;}
.y51{bottom:892.050000px;}
.y7b{bottom:893.130000px;}
.y7{bottom:897.630000px;}
.ye8{bottom:901.410000px;}
.ybb{bottom:902.490000px;}
.y50{bottom:909.690000px;}
.ye7{bottom:919.050000px;}
.yba{bottom:929.130000px;}
.y6{bottom:930.030000px;}
.y4f{bottom:936.150000px;}
.ye6{bottom:945.510000px;}
.y5{bottom:949.290000px;}
.ye5{bottom:963.150000px;}
.y7a{bottom:964.590000px;}
.y4e{bottom:971.790000px;}
.yb9{bottom:977.550000px;}
.ye4{bottom:980.610000px;}
.y4{bottom:987.630000px;}
.y4d{bottom:989.430000px;}
.y79{bottom:991.950000px;}
.yb8{bottom:995.190000px;}
.ye3{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.yb7{bottom:1012.830000px;}
.y78{bottom:1019.310000px;}
.y4c{bottom:1024.890000px;}
.ye2{bottom:1025.790000px;}
.yb6{bottom:1030.470000px;}
.ye1{bottom:1043.430000px;}
.y76{bottom:1046.670000px;}
.yb5{bottom:1047.930000px;}
.y4b{bottom:1060.530000px;}
.yb4{bottom:1065.570000px;}
.ye0{bottom:1069.890000px;}
.y73{bottom:1074.030000px;}
.yb3{bottom:1083.210000px;}
.ydf{bottom:1087.530000px;}
.y4a{bottom:1096.170000px;}
.yb2{bottom:1100.670000px;}
.y9a{bottom:1105.170000px;}
.ydd{bottom:1113.450000px;}
.y49{bottom:1113.810000px;}
.y99{bottom:1122.810000px;}
.yb1{bottom:1127.490000px;}
.y48{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h10{height:26.640000px;}
.h12{height:26.676000px;}
.h2{height:29.717578px;}
.h1c{height:35.676000px;}
.h8{height:36.698203px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.hc{height:41.974453px;}
.hf{height:44.100000px;}
.h14{height:45.248423px;}
.hb{height:50.597578px;}
.h7{height:51.998203px;}
.h9{height:56.084062px;}
.h18{height:57.430164px;}
.h5{height:57.636562px;}
.he{height:59.614102px;}
.h1b{height:61.423863px;}
.hd{height:62.211094px;}
.h19{height:62.765207px;}
.h1a{height:62.869816px;}
.h16{height:64.012644px;}
.h17{height:64.119331px;}
.ha{height:68.956875px;}
.h11{height:70.740000px;}
.h4{height:73.298672px;}
.h15{height:280.253948px;}
.h13{height:298.807797px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:30.419973px;}
.w4{width:135.756000px;}
.w3{width:170.310000px;}
.w5{width:448.305000px;}
.w7{width:468.001511px;}
.w6{width:586.496886px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1a{left:10.799973px;}
.x18{left:16.250043px;}
.x12{left:20.540064px;}
.x11{left:28.340089px;}
.x13{left:54.626175px;}
.x1{left:68.040000px;}
.x14{left:75.946236px;}
.x19{left:111.275987px;}
.x15{left:149.032475px;}
.xf{left:152.970000px;}
.x2{left:209.729987px;}
.xb{left:221.609987px;}
.xe{left:224.489987px;}
.x16{left:225.992724px;}
.x5{left:237.809987px;}
.x8{left:239.790000px;}
.xd{left:318.134987px;}
.x17{left:372.165194px;}
.x6{left:374.834987px;}
.x9{left:376.275000px;}
.x10{left:468.053505px;}
.x4{left:671.729987px;}
.xa{left:742.469987px;}
.xc{left:773.969987px;}
.x3{left:808.739987px;}
@media print{
.v5{vertical-align:-42.534015pt;}
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-13.920000pt;}
.lsa{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.329067pt;}
.lsc{letter-spacing:-0.290133pt;}
.ls16{letter-spacing:-0.250133pt;}
.ls17{letter-spacing:-0.046132pt;}
.ls12{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.009600pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.153600pt;}
.ls4{letter-spacing:0.188160pt;}
.ls14{letter-spacing:0.202240pt;}
.ls15{letter-spacing:0.245333pt;}
.ls1b{letter-spacing:0.272640pt;}
.ls13{letter-spacing:0.284267pt;}
.lsd{letter-spacing:0.312533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.651520pt;}
.ls7{letter-spacing:2.393600pt;}
.ls10{letter-spacing:15.312640pt;}
.ls11{letter-spacing:29.392640pt;}
.ls19{letter-spacing:42.192640pt;}
.ls6{letter-spacing:64.399360pt;}
.ls18{letter-spacing:72.272640pt;}
.ws6{word-spacing:-12.953600pt;}
.wsa{word-spacing:-11.970667pt;}
.ws4{word-spacing:-11.698133pt;}
.ws8{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.654400pt;}
.wsb{word-spacing:-9.678933pt;}
.wsc{word-spacing:-9.183467pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:19.827217pt;}
.wse{word-spacing:148.638390pt;}
._5{margin-left:-2.532267pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._2{width:1.996800pt;}
._3{width:3.553280pt;}
._6{width:4.845440pt;}
._12{width:5.735677pt;}
._7{width:6.746134pt;}
._d{width:8.197973pt;}
._c{width:9.242880pt;}
._4{width:10.305068pt;}
._9{width:13.386240pt;}
._b{width:14.788480pt;}
._a{width:16.042240pt;}
._e{width:18.488320pt;}
._8{width:20.185600pt;}
._f{width:36.946374pt;}
._10{width:41.422410pt;}
._11{width:83.523150pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:46.224602pt;}
.fs2{font-size:48.000000pt;}
.fsb{font-size:50.653306pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:55.358804pt;}
.fsa{font-size:55.451069pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:6.880000pt;}
.y77{bottom:7.040000pt;}
.y7e{bottom:11.040000pt;}
.yab{bottom:12.202003pt;}
.ya1{bottom:16.400092pt;}
.yde{bottom:19.066667pt;}
.y74{bottom:22.560000pt;}
.ya3{bottom:26.410763pt;}
.y7f{bottom:26.560000pt;}
.y80{bottom:26.720000pt;}
.y7d{bottom:30.560000pt;}
.y7c{bottom:46.240000pt;}
.ya4{bottom:49.015608pt;}
.yae{bottom:56.235319pt;}
.y2{bottom:65.152000pt;}
.yaf{bottom:65.554051pt;}
.y2b{bottom:65.952000pt;}
.ya5{bottom:71.643519pt;}
.y1{bottom:90.112000pt;}
.yad{bottom:92.818262pt;}
.ya6{bottom:94.248365pt;}
.y98{bottom:108.032000pt;}
.y47{bottom:116.352000pt;}
.ya7{bottom:116.853210pt;}
.y29{bottom:122.432000pt;}
.y97{bottom:123.712000pt;}
.ydc{bottom:125.472000pt;}
.y9f{bottom:129.472000pt;}
.y72{bottom:132.032000pt;}
.y28{bottom:138.106667pt;}
.y96{bottom:139.226667pt;}
.ya8{bottom:139.458055pt;}
.ydb{bottom:141.146667pt;}
.y71{bottom:147.706667pt;}
.y46{bottom:147.866667pt;}
.y27{bottom:153.786667pt;}
.y9e{bottom:160.506667pt;}
.ya9{bottom:162.062900pt;}
.y95{bottom:162.906667pt;}
.y70{bottom:163.386667pt;}
.y45{bottom:163.546667pt;}
.yda{bottom:164.826667pt;}
.y26{bottom:169.306667pt;}
.y9d{bottom:170.746667pt;}
.y6f{bottom:179.066667pt;}
.y44{bottom:179.226667pt;}
.yd9{bottom:180.506667pt;}
.yaa{bottom:184.690811pt;}
.y25{bottom:184.986667pt;}
.yac{bottom:187.251156pt;}
.y94{bottom:194.426667pt;}
.y6e{bottom:194.586667pt;}
.y24{bottom:200.666667pt;}
.y43{bottom:202.906667pt;}
.yd8{bottom:204.026667pt;}
.y93{bottom:210.106667pt;}
.y6d{bottom:210.266667pt;}
.y23{bottom:216.186667pt;}
.yd7{bottom:219.706667pt;}
.y92{bottom:225.786667pt;}
.y6c{bottom:225.946667pt;}
.yb0{bottom:226.371378pt;}
.y22{bottom:231.866667pt;}
.yd6{bottom:235.386667pt;}
.y6b{bottom:241.466667pt;}
.y21{bottom:247.546667pt;}
.yd5{bottom:250.906667pt;}
.y6a{bottom:257.146667pt;}
.y20{bottom:263.066667pt;}
.y42{bottom:263.386667pt;}
.y91{bottom:272.666667pt;}
.y69{bottom:272.826667pt;}
.yd4{bottom:274.626667pt;}
.y1f{bottom:278.786667pt;}
.y41{bottom:279.106667pt;}
.y68{bottom:288.386667pt;}
.yd3{bottom:290.306667pt;}
.y40{bottom:294.786667pt;}
.y1e{bottom:302.626667pt;}
.y67{bottom:304.066667pt;}
.yd2{bottom:305.826667pt;}
.y3f{bottom:310.466667pt;}
.y3e{bottom:325.986667pt;}
.y66{bottom:327.586667pt;}
.yd1{bottom:329.506667pt;}
.y3d{bottom:341.666667pt;}
.yd0{bottom:345.186667pt;}
.y1d{bottom:345.826667pt;}
.y3c{bottom:357.346667pt;}
.y65{bottom:359.266667pt;}
.ycf{bottom:360.866667pt;}
.y3b{bottom:372.866667pt;}
.y64{bottom:374.946667pt;}
.y1c{bottom:378.786667pt;}
.yce{bottom:384.386667pt;}
.y3a{bottom:388.546667pt;}
.y90{bottom:390.466667pt;}
.y63{bottom:390.626667pt;}
.y1b{bottom:394.466667pt;}
.y8f{bottom:406.146667pt;}
.y62{bottom:406.306667pt;}
.ycd{bottom:408.066667pt;}
.y1a{bottom:410.146667pt;}
.y39{bottom:412.226667pt;}
.ycc{bottom:423.746667pt;}
.y19{bottom:425.666667pt;}
.y61{bottom:429.826667pt;}
.ycb{bottom:439.266667pt;}
.y18{bottom:441.346667pt;}
.y38{bottom:443.746667pt;}
.y17{bottom:457.026667pt;}
.y37{bottom:459.426667pt;}
.y8e{bottom:461.346667pt;}
.y60{bottom:461.506667pt;}
.yca{bottom:462.946667pt;}
.y16{bottom:472.546667pt;}
.y36{bottom:475.106667pt;}
.y8d{bottom:477.026667pt;}
.y5f{bottom:477.186667pt;}
.yc9{bottom:478.626667pt;}
.y15{bottom:488.226667pt;}
.y35{bottom:490.786667pt;}
.y5e{bottom:492.706667pt;}
.yc8{bottom:494.146667pt;}
.y14{bottom:503.906667pt;}
.y8c{bottom:508.386667pt;}
.y34{bottom:514.306667pt;}
.yc7{bottom:517.826667pt;}
.y5d{bottom:524.413333pt;}
.y13{bottom:527.773333pt;}
.y8b{bottom:531.933333pt;}
.yc6{bottom:533.533333pt;}
.y5c{bottom:540.093333pt;}
.y33{bottom:546.013333pt;}
.yc5{bottom:549.213333pt;}
.y5b{bottom:555.613333pt;}
.y8a{bottom:560.893333pt;}
.y12{bottom:570.653333pt;}
.y5a{bottom:571.293333pt;}
.yc4{bottom:572.733333pt;}
.y32{bottom:574.973333pt;}
.y59{bottom:586.973333pt;}
.y89{bottom:592.573333pt;}
.yc3{bottom:596.573333pt;}
.y11{bottom:602.493333pt;}
.y58{bottom:602.653333pt;}
.y31{bottom:606.493333pt;}
.y88{bottom:608.253333pt;}
.y57{bottom:618.173333pt;}
.y87{bottom:623.773333pt;}
.y30{bottom:630.173333pt;}
.y10{bottom:634.493333pt;}
.y86{bottom:639.453333pt;}
.yc2{bottom:639.613333pt;}
.y56{bottom:641.853333pt;}
.y85{bottom:655.133333pt;}
.y2f{bottom:662.013333pt;}
.yc1{bottom:663.453333pt;}
.y9c{bottom:664.573333pt;}
.yf{bottom:666.493333pt;}
.y55{bottom:670.813333pt;}
.ye{bottom:685.853333pt;}
.y9b{bottom:693.213333pt;}
.y84{bottom:694.333333pt;}
.ya0{bottom:695.729013pt;}
.yc0{bottom:696.573333pt;}
.yd{bottom:698.493333pt;}
.y54{bottom:702.653333pt;}
.y2e{bottom:704.413333pt;}
.ya2{bottom:712.221369pt;}
.yc{bottom:717.853333pt;}
.y83{bottom:720.893333pt;}
.y2d{bottom:733.533333pt;}
.yb{bottom:733.853333pt;}
.ybf{bottom:739.613333pt;}
.y82{bottom:745.213333pt;}
.y53{bottom:745.533333pt;}
.ya{bottom:746.493333pt;}
.ybe{bottom:755.293333pt;}
.yea{bottom:762.013333pt;}
.y2c{bottom:762.173333pt;}
.y9{bottom:765.893333pt;}
.y81{bottom:769.573333pt;}
.ybd{bottom:770.853333pt;}
.y52{bottom:777.253333pt;}
.ye9{bottom:777.733333pt;}
.y8{bottom:778.533333pt;}
.ybc{bottom:786.533333pt;}
.y51{bottom:792.933333pt;}
.y7b{bottom:793.893333pt;}
.y7{bottom:797.893333pt;}
.ye8{bottom:801.253333pt;}
.ybb{bottom:802.213333pt;}
.y50{bottom:808.613333pt;}
.ye7{bottom:816.933333pt;}
.yba{bottom:825.893333pt;}
.y6{bottom:826.693333pt;}
.y4f{bottom:832.133333pt;}
.ye6{bottom:840.453333pt;}
.y5{bottom:843.813333pt;}
.ye5{bottom:856.133333pt;}
.y7a{bottom:857.413333pt;}
.y4e{bottom:863.813333pt;}
.yb9{bottom:868.933333pt;}
.ye4{bottom:871.653333pt;}
.y4{bottom:877.893333pt;}
.y4d{bottom:879.493333pt;}
.y79{bottom:881.733333pt;}
.yb8{bottom:884.613333pt;}
.ye3{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.yb7{bottom:900.293333pt;}
.y78{bottom:906.053333pt;}
.y4c{bottom:911.013333pt;}
.ye2{bottom:911.813333pt;}
.yb6{bottom:915.973333pt;}
.ye1{bottom:927.493333pt;}
.y76{bottom:930.373333pt;}
.yb5{bottom:931.493333pt;}
.y4b{bottom:942.693333pt;}
.yb4{bottom:947.173333pt;}
.ye0{bottom:951.013333pt;}
.y73{bottom:954.693333pt;}
.yb3{bottom:962.853333pt;}
.ydf{bottom:966.693333pt;}
.y4a{bottom:974.373333pt;}
.yb2{bottom:978.373333pt;}
.y9a{bottom:982.373333pt;}
.ydd{bottom:989.733333pt;}
.y49{bottom:990.053333pt;}
.y99{bottom:998.053333pt;}
.yb1{bottom:1002.213333pt;}
.y48{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h10{height:23.680000pt;}
.h12{height:23.712000pt;}
.h2{height:26.415625pt;}
.h1c{height:31.712000pt;}
.h8{height:32.620625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.hc{height:37.310625pt;}
.hf{height:39.200000pt;}
.h14{height:40.220820pt;}
.hb{height:44.975625pt;}
.h7{height:46.220625pt;}
.h9{height:49.852500pt;}
.h18{height:51.049035pt;}
.h5{height:51.232500pt;}
.he{height:52.990313pt;}
.h1b{height:54.598989pt;}
.hd{height:55.298750pt;}
.h19{height:55.791295pt;}
.h1a{height:55.884281pt;}
.h16{height:56.900128pt;}
.h17{height:56.994961pt;}
.ha{height:61.295000pt;}
.h11{height:62.880000pt;}
.h4{height:65.154375pt;}
.h15{height:249.114620pt;}
.h13{height:265.606931pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:27.039976pt;}
.w4{width:120.672000pt;}
.w3{width:151.386667pt;}
.w5{width:398.493333pt;}
.w7{width:416.001344pt;}
.w6{width:521.330566pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1a{left:9.599976pt;}
.x18{left:14.444483pt;}
.x12{left:18.257834pt;}
.x11{left:25.191191pt;}
.x13{left:48.556600pt;}
.x1{left:60.480000pt;}
.x14{left:67.507766pt;}
.x19{left:98.911988pt;}
.x15{left:132.473311pt;}
.xf{left:135.973333pt;}
.x2{left:186.426655pt;}
.xb{left:196.986655pt;}
.xe{left:199.546655pt;}
.x16{left:200.882421pt;}
.x5{left:211.386655pt;}
.x8{left:213.146667pt;}
.xd{left:282.786655pt;}
.x17{left:330.813506pt;}
.x6{left:333.186655pt;}
.x9{left:334.466667pt;}
.x10{left:416.047560pt;}
.x4{left:597.093322pt;}
.xa{left:659.973322pt;}
.xc{left:687.973322pt;}
.x3{left:718.879988pt;}
}




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