
    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_9c9c5ff68a3a13bf8665a915.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_aedd65a20e75056d4b38896b.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_f3cb4e6606be7e1921ee6bd7.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_cb39f560c68cb47f9dacc6eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e5d8b2951d1bcdfba559c63b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_7628c4c5ca2d9324a5aec22f.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_ff6cbb2a9601530fea299dbc.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_2e4d2c3a37bcc1f87b7958dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.975586;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_901aebc8c8fd9f6d53276a13.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_270cf2055d0ffdece4bd190a.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.520000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:45.360000px;}
.ls1c{letter-spacing:-0.444600px;}
.ls15{letter-spacing:-0.202800px;}
.ls12{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.063600px;}
.ls1d{letter-spacing:-0.014760px;}
.ls18{letter-spacing:-0.007560px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.033120px;}
.ls4{letter-spacing:0.045000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls1b{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsd{letter-spacing:0.116400px;}
.ls17{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.133200px;}
.ls8{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:1.173600px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.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.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.218840px;}
.ws10{word-spacing:-13.211640px;}
.wse{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.wsd{word-spacing:4.802520px;}
._d{margin-left:-3.539639px;}
._c{margin-left:-2.137200px;}
._0{margin-left:-1.104000px;}
._2{width:1.090188px;}
._3{width:2.205000px;}
._4{width:3.261623px;}
._5{width:4.509000px;}
._6{width:5.609280px;}
._9{width:6.661080px;}
._10{width:7.665600px;}
._f{width:9.103092px;}
._8{width:10.220400px;}
._e{width:11.903760px;}
._13{width:14.609160px;}
._14{width:15.991920px;}
._a{width:17.254200px;}
._b{width:18.395883px;}
._12{width:19.442895px;}
._11{width:20.501757px;}
._7{width:25.370400px;}
._1{width:26.841600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.830000px;}
.y8c{bottom:7.920000px;}
.ya9{bottom:35.280000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y84{bottom:119.910000px;}
.y2a{bottom:126.930000px;}
.y83{bottom:137.460000px;}
.y29{bottom:144.570000px;}
.y57{bottom:146.640000px;}
.y82{bottom:155.100000px;}
.y28{bottom:162.120000px;}
.yae{bottom:168.510000px;}
.y81{bottom:172.650000px;}
.yd9{bottom:172.740000px;}
.y27{bottom:179.760000px;}
.y56{bottom:182.190000px;}
.yad{bottom:183.450000px;}
.y80{bottom:190.200000px;}
.yd8{bottom:190.290000px;}
.y26{bottom:197.310000px;}
.y55{bottom:199.830000px;}
.y7f{bottom:207.840000px;}
.yac{bottom:210.810000px;}
.y25{bottom:214.860000px;}
.yd7{bottom:216.840000px;}
.y54{bottom:226.380000px;}
.y24{bottom:232.500000px;}
.y7e{bottom:234.390000px;}
.yd6{bottom:234.480000px;}
.ya8{bottom:238.080000px;}
.y23{bottom:250.050000px;}
.yd5{bottom:261.030000px;}
.y53{bottom:261.930000px;}
.yab{bottom:265.440000px;}
.y22{bottom:267.690000px;}
.y7d{bottom:269.940000px;}
.yd4{bottom:278.580000px;}
.y52{bottom:279.570000px;}
.y21{bottom:285.240000px;}
.y7c{bottom:287.580000px;}
.yaa{bottom:292.800000px;}
.y20{bottom:302.790000px;}
.y7b{bottom:305.130000px;}
.yd3{bottom:305.220000px;}
.y51{bottom:306.120000px;}
.ya7{bottom:320.160000px;}
.y1f{bottom:320.430000px;}
.y7a{bottom:322.770000px;}
.y50{bottom:338.790000px;}
.y79{bottom:340.320000px;}
.y1e{bottom:347.340000px;}
.y4f{bottom:348.870000px;}
.yd2{bottom:349.410000px;}
.y78{bottom:357.870000px;}
.yd1{bottom:366.960000px;}
.ya6{bottom:368.850000px;}
.y77{bottom:375.510000px;}
.yd0{bottom:384.510000px;}
.ya5{bottom:386.400000px;}
.y76{bottom:393.060000px;}
.y4e{bottom:393.870000px;}
.y1d{bottom:395.940000px;}
.ycf{bottom:402.150000px;}
.y75{bottom:410.700000px;}
.y4d{bottom:411.510000px;}
.ya4{bottom:422.040000px;}
.yce{bottom:428.700000px;}
.y4c{bottom:429.060000px;}
.y1c{bottom:432.930000px;}
.y74{bottom:437.250000px;}
.ya3{bottom:439.590000px;}
.ycd{bottom:446.340000px;}
.y4b{bottom:446.700000px;}
.y1b{bottom:450.480000px;}
.ya2{bottom:457.140000px;}
.y4a{bottom:464.250000px;}
.y1a{bottom:468.120000px;}
.ycc{bottom:472.920000px;}
.y73{bottom:473.190000px;}
.ya1{bottom:474.810000px;}
.y19{bottom:485.700000px;}
.ycb{bottom:490.470000px;}
.y49{bottom:490.830000px;}
.ya0{bottom:492.360000px;}
.yf5{bottom:495.690000px;}
.y18{bottom:503.340000px;}
.yca{bottom:508.110000px;}
.y9f{bottom:510.000000px;}
.yf4{bottom:513.330000px;}
.y17{bottom:520.890000px;}
.y72{bottom:521.430000px;}
.y48{bottom:526.470000px;}
.y9e{bottom:527.550000px;}
.yc9{bottom:534.660000px;}
.y16{bottom:538.440000px;}
.y71{bottom:539.070000px;}
.yf3{bottom:539.880000px;}
.y47{bottom:544.020000px;}
.y9d{bottom:545.100000px;}
.yc8{bottom:552.300000px;}
.y15{bottom:556.080000px;}
.y70{bottom:556.620000px;}
.yf2{bottom:557.430000px;}
.y46{bottom:561.660000px;}
.y9c{bottom:562.740000px;}
.y14{bottom:573.630000px;}
.y6f{bottom:574.260000px;}
.yf1{bottom:575.070000px;}
.yc7{bottom:578.850000px;}
.y45{bottom:579.210000px;}
.y9b{bottom:580.290000px;}
.y13{bottom:591.270000px;}
.yc6{bottom:596.400000px;}
.y9a{bottom:597.840000px;}
.y6e{bottom:600.810000px;}
.yf0{bottom:601.620000px;}
.y44{bottom:605.760000px;}
.y12{bottom:608.820000px;}
.y99{bottom:615.480000px;}
.yef{bottom:619.260000px;}
.yc5{bottom:623.310000px;}
.y11{bottom:626.370000px;}
.y98{bottom:633.030000px;}
.y6d{bottom:636.360000px;}
.yee{bottom:636.810000px;}
.y43{bottom:641.400000px;}
.y10{bottom:644.010000px;}
.y97{bottom:650.670000px;}
.y6c{bottom:654.000000px;}
.y42{bottom:658.950000px;}
.yf{bottom:661.560000px;}
.yed{bottom:663.360000px;}
.y96{bottom:668.220000px;}
.y6b{bottom:671.550000px;}
.yc4{bottom:671.640000px;}
.y41{bottom:676.590000px;}
.ye{bottom:679.200000px;}
.yec{bottom:681.000000px;}
.y95{bottom:685.770000px;}
.y6a{bottom:689.190000px;}
.y40{bottom:694.140000px;}
.yd{bottom:696.750000px;}
.y94{bottom:703.410000px;}
.y69{bottom:706.740000px;}
.yeb{bottom:707.550000px;}
.y3f{bottom:711.690000px;}
.yc3{bottom:716.100000px;}
.y93{bottom:720.960000px;}
.yc{bottom:723.660000px;}
.y68{bottom:724.290000px;}
.yea{bottom:725.190000px;}
.y3e{bottom:738.330000px;}
.y92{bottom:738.600000px;}
.y67{bottom:741.930000px;}
.ye9{bottom:751.740000px;}
.yc2{bottom:753.450000px;}
.y91{bottom:756.150000px;}
.y66{bottom:768.480000px;}
.ye8{bottom:769.290000px;}
.yb{bottom:771.900000px;}
.y90{bottom:773.700000px;}
.y3d{bottom:773.880000px;}
.y8f{bottom:791.340000px;}
.y3c{bottom:791.520000px;}
.ye7{bottom:795.930000px;}
.yc1{bottom:801.600000px;}
.y65{bottom:804.030000px;}
.ya{bottom:807.720000px;}
.y3b{bottom:809.070000px;}
.ye6{bottom:813.480000px;}
.y8e{bottom:817.890000px;}
.yc0{bottom:819.330000px;}
.y64{bottom:821.670000px;}
.y3a{bottom:826.620000px;}
.ye5{bottom:831.030000px;}
.ybf{bottom:836.880000px;}
.y63{bottom:839.220000px;}
.y9{bottom:843.720000px;}
.y39{bottom:844.260000px;}
.y8d{bottom:850.920000px;}
.ybe{bottom:854.520000px;}
.y62{bottom:856.860000px;}
.ye4{bottom:857.670000px;}
.y38{bottom:870.810000px;}
.ybd{bottom:872.070000px;}
.y61{bottom:874.410000px;}
.y8b{bottom:878.190000px;}
.y8{bottom:883.500000px;}
.ye3{bottom:884.220000px;}
.ybc{bottom:889.620000px;}
.y60{bottom:900.960000px;}
.y7{bottom:901.500000px;}
.ye2{bottom:901.860000px;}
.y8a{bottom:905.550000px;}
.y37{bottom:906.450000px;}
.ybb{bottom:907.260000px;}
.y36{bottom:924.000000px;}
.yba{bottom:924.810000px;}
.ye1{bottom:928.410000px;}
.y88{bottom:932.910000px;}
.y6{bottom:933.630000px;}
.y5f{bottom:936.600000px;}
.y35{bottom:941.550000px;}
.yb9{bottom:942.450000px;}
.ye0{bottom:945.960000px;}
.y5{bottom:952.170000px;}
.y5e{bottom:954.150000px;}
.yb8{bottom:960.000000px;}
.y34{bottom:968.190000px;}
.ydf{bottom:972.600000px;}
.yb7{bottom:977.550000px;}
.y5d{bottom:980.790000px;}
.y87{bottom:981.600000px;}
.y4{bottom:989.700000px;}
.yde{bottom:990.150000px;}
.yb6{bottom:995.190000px;}
.y86{bottom:999.150000px;}
.y33{bottom:1004.100000px;}
.ydd{bottom:1007.790000px;}
.yb5{bottom:1012.770000px;}
.y3{bottom:1014.390000px;}
.y5c{bottom:1016.370000px;}
.yb4{bottom:1030.320000px;}
.y5b{bottom:1033.920000px;}
.ydc{bottom:1034.370000px;}
.y85{bottom:1034.820000px;}
.yb3{bottom:1047.960000px;}
.ydb{bottom:1051.920000px;}
.y32{bottom:1052.370000px;}
.y5a{bottom:1060.560000px;}
.yb2{bottom:1065.510000px;}
.y31{bottom:1069.920000px;}
.yda{bottom:1078.560000px;}
.yb1{bottom:1083.150000px;}
.y30{bottom:1087.560000px;}
.y59{bottom:1096.110000px;}
.yb0{bottom:1100.700000px;}
.y2f{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.yaf{bottom:1127.610000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.he{height:26.550000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hf{height:50.902383px;}
.h7{height:52.311445px;}
.h5{height:54.817383px;}
.h8{height:55.779258px;}
.hd{height:59.973223px;}
.h12{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h11{height:81.270000px;}
.hc{height:116.879062px;}
.hb{height:121.919062px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:64.740000px;}
.w5{width:100.890000px;}
.w7{width:102.990000px;}
.w6{width:113.850000px;}
.w3{width:117.270000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.650000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.x2{left:231.149987px;}
.x9{left:286.950000px;}
.x4{left:323.759987px;}
.x6{left:355.260000px;}
.xa{left:388.650000px;}
.x8{left:473.250000px;}
.x5{left:498.719987px;}
.xb{left:503.310000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.240000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.320000pt;}
.ls1c{letter-spacing:-0.395200pt;}
.ls15{letter-spacing:-0.180267pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls1d{letter-spacing:-0.013120pt;}
.ls18{letter-spacing:-0.006720pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.029440pt;}
.ls4{letter-spacing:0.040000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls1b{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsd{letter-spacing:0.103467pt;}
.ls17{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.118400pt;}
.ls8{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:1.043200pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.750080pt;}
.ws10{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.wsd{word-spacing:4.268907pt;}
._d{margin-left:-3.146345pt;}
._c{margin-left:-1.899734pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.969056pt;}
._3{width:1.960000pt;}
._4{width:2.899221pt;}
._5{width:4.008000pt;}
._6{width:4.986027pt;}
._9{width:5.920960pt;}
._10{width:6.813867pt;}
._f{width:8.091637pt;}
._8{width:9.084800pt;}
._e{width:10.581120pt;}
._13{width:12.985920pt;}
._14{width:14.215040pt;}
._a{width:15.337066pt;}
._b{width:16.351896pt;}
._12{width:17.282574pt;}
._11{width:18.223784pt;}
._7{width:22.551466pt;}
._1{width:23.859200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.960000pt;}
.y8c{bottom:7.040000pt;}
.ya9{bottom:31.360000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y84{bottom:106.586667pt;}
.y2a{bottom:112.826667pt;}
.y83{bottom:122.186667pt;}
.y29{bottom:128.506667pt;}
.y57{bottom:130.346667pt;}
.y82{bottom:137.866667pt;}
.y28{bottom:144.106667pt;}
.yae{bottom:149.786667pt;}
.y81{bottom:153.466667pt;}
.yd9{bottom:153.546667pt;}
.y27{bottom:159.786667pt;}
.y56{bottom:161.946667pt;}
.yad{bottom:163.066667pt;}
.y80{bottom:169.066667pt;}
.yd8{bottom:169.146667pt;}
.y26{bottom:175.386667pt;}
.y55{bottom:177.626667pt;}
.y7f{bottom:184.746667pt;}
.yac{bottom:187.386667pt;}
.y25{bottom:190.986667pt;}
.yd7{bottom:192.746667pt;}
.y54{bottom:201.226667pt;}
.y24{bottom:206.666667pt;}
.y7e{bottom:208.346667pt;}
.yd6{bottom:208.426667pt;}
.ya8{bottom:211.626667pt;}
.y23{bottom:222.266667pt;}
.yd5{bottom:232.026667pt;}
.y53{bottom:232.826667pt;}
.yab{bottom:235.946667pt;}
.y22{bottom:237.946667pt;}
.y7d{bottom:239.946667pt;}
.yd4{bottom:247.626667pt;}
.y52{bottom:248.506667pt;}
.y21{bottom:253.546667pt;}
.y7c{bottom:255.626667pt;}
.yaa{bottom:260.266667pt;}
.y20{bottom:269.146667pt;}
.y7b{bottom:271.226667pt;}
.yd3{bottom:271.306667pt;}
.y51{bottom:272.106667pt;}
.ya7{bottom:284.586667pt;}
.y1f{bottom:284.826667pt;}
.y7a{bottom:286.906667pt;}
.y50{bottom:301.146667pt;}
.y79{bottom:302.506667pt;}
.y1e{bottom:308.746667pt;}
.y4f{bottom:310.106667pt;}
.yd2{bottom:310.586667pt;}
.y78{bottom:318.106667pt;}
.yd1{bottom:326.186667pt;}
.ya6{bottom:327.866667pt;}
.y77{bottom:333.786667pt;}
.yd0{bottom:341.786667pt;}
.ya5{bottom:343.466667pt;}
.y76{bottom:349.386667pt;}
.y4e{bottom:350.106667pt;}
.y1d{bottom:351.946667pt;}
.ycf{bottom:357.466667pt;}
.y75{bottom:365.066667pt;}
.y4d{bottom:365.786667pt;}
.ya4{bottom:375.146667pt;}
.yce{bottom:381.066667pt;}
.y4c{bottom:381.386667pt;}
.y1c{bottom:384.826667pt;}
.y74{bottom:388.666667pt;}
.ya3{bottom:390.746667pt;}
.ycd{bottom:396.746667pt;}
.y4b{bottom:397.066667pt;}
.y1b{bottom:400.426667pt;}
.ya2{bottom:406.346667pt;}
.y4a{bottom:412.666667pt;}
.y1a{bottom:416.106667pt;}
.ycc{bottom:420.373333pt;}
.y73{bottom:420.613333pt;}
.ya1{bottom:422.053333pt;}
.y19{bottom:431.733333pt;}
.ycb{bottom:435.973333pt;}
.y49{bottom:436.293333pt;}
.ya0{bottom:437.653333pt;}
.yf5{bottom:440.613333pt;}
.y18{bottom:447.413333pt;}
.yca{bottom:451.653333pt;}
.y9f{bottom:453.333333pt;}
.yf4{bottom:456.293333pt;}
.y17{bottom:463.013333pt;}
.y72{bottom:463.493333pt;}
.y48{bottom:467.973333pt;}
.y9e{bottom:468.933333pt;}
.yc9{bottom:475.253333pt;}
.y16{bottom:478.613333pt;}
.y71{bottom:479.173333pt;}
.yf3{bottom:479.893333pt;}
.y47{bottom:483.573333pt;}
.y9d{bottom:484.533333pt;}
.yc8{bottom:490.933333pt;}
.y15{bottom:494.293333pt;}
.y70{bottom:494.773333pt;}
.yf2{bottom:495.493333pt;}
.y46{bottom:499.253333pt;}
.y9c{bottom:500.213333pt;}
.y14{bottom:509.893333pt;}
.y6f{bottom:510.453333pt;}
.yf1{bottom:511.173333pt;}
.yc7{bottom:514.533333pt;}
.y45{bottom:514.853333pt;}
.y9b{bottom:515.813333pt;}
.y13{bottom:525.573333pt;}
.yc6{bottom:530.133333pt;}
.y9a{bottom:531.413333pt;}
.y6e{bottom:534.053333pt;}
.yf0{bottom:534.773333pt;}
.y44{bottom:538.453333pt;}
.y12{bottom:541.173333pt;}
.y99{bottom:547.093333pt;}
.yef{bottom:550.453333pt;}
.yc5{bottom:554.053333pt;}
.y11{bottom:556.773333pt;}
.y98{bottom:562.693333pt;}
.y6d{bottom:565.653333pt;}
.yee{bottom:566.053333pt;}
.y43{bottom:570.133333pt;}
.y10{bottom:572.453333pt;}
.y97{bottom:578.373333pt;}
.y6c{bottom:581.333333pt;}
.y42{bottom:585.733333pt;}
.yf{bottom:588.053333pt;}
.yed{bottom:589.653333pt;}
.y96{bottom:593.973333pt;}
.y6b{bottom:596.933333pt;}
.yc4{bottom:597.013333pt;}
.y41{bottom:601.413333pt;}
.ye{bottom:603.733333pt;}
.yec{bottom:605.333333pt;}
.y95{bottom:609.573333pt;}
.y6a{bottom:612.613333pt;}
.y40{bottom:617.013333pt;}
.yd{bottom:619.333333pt;}
.y94{bottom:625.253333pt;}
.y69{bottom:628.213333pt;}
.yeb{bottom:628.933333pt;}
.y3f{bottom:632.613333pt;}
.yc3{bottom:636.533333pt;}
.y93{bottom:640.853333pt;}
.yc{bottom:643.253333pt;}
.y68{bottom:643.813333pt;}
.yea{bottom:644.613333pt;}
.y3e{bottom:656.293333pt;}
.y92{bottom:656.533333pt;}
.y67{bottom:659.493333pt;}
.ye9{bottom:668.213333pt;}
.yc2{bottom:669.733333pt;}
.y91{bottom:672.133333pt;}
.y66{bottom:683.093333pt;}
.ye8{bottom:683.813333pt;}
.yb{bottom:686.133333pt;}
.y90{bottom:687.733333pt;}
.y3d{bottom:687.893333pt;}
.y8f{bottom:703.413333pt;}
.y3c{bottom:703.573333pt;}
.ye7{bottom:707.493333pt;}
.yc1{bottom:712.533333pt;}
.y65{bottom:714.693333pt;}
.ya{bottom:717.973333pt;}
.y3b{bottom:719.173333pt;}
.ye6{bottom:723.093333pt;}
.y8e{bottom:727.013333pt;}
.yc0{bottom:728.293333pt;}
.y64{bottom:730.373333pt;}
.y3a{bottom:734.773333pt;}
.ye5{bottom:738.693333pt;}
.ybf{bottom:743.893333pt;}
.y63{bottom:745.973333pt;}
.y9{bottom:749.973333pt;}
.y39{bottom:750.453333pt;}
.y8d{bottom:756.373333pt;}
.ybe{bottom:759.573333pt;}
.y62{bottom:761.653333pt;}
.ye4{bottom:762.373333pt;}
.y38{bottom:774.053333pt;}
.ybd{bottom:775.173333pt;}
.y61{bottom:777.253333pt;}
.y8b{bottom:780.613333pt;}
.y8{bottom:785.333333pt;}
.ye3{bottom:785.973333pt;}
.ybc{bottom:790.773333pt;}
.y60{bottom:800.853333pt;}
.y7{bottom:801.333333pt;}
.ye2{bottom:801.653333pt;}
.y8a{bottom:804.933333pt;}
.y37{bottom:805.733333pt;}
.ybb{bottom:806.453333pt;}
.y36{bottom:821.333333pt;}
.yba{bottom:822.053333pt;}
.ye1{bottom:825.253333pt;}
.y88{bottom:829.253333pt;}
.y6{bottom:829.893333pt;}
.y5f{bottom:832.533333pt;}
.y35{bottom:836.933333pt;}
.yb9{bottom:837.733333pt;}
.ye0{bottom:840.853333pt;}
.y5{bottom:846.373333pt;}
.y5e{bottom:848.133333pt;}
.yb8{bottom:853.333333pt;}
.y34{bottom:860.613333pt;}
.ydf{bottom:864.533333pt;}
.yb7{bottom:868.933333pt;}
.y5d{bottom:871.813333pt;}
.y87{bottom:872.533333pt;}
.y4{bottom:879.733333pt;}
.yde{bottom:880.133333pt;}
.yb6{bottom:884.613333pt;}
.y86{bottom:888.133333pt;}
.y33{bottom:892.533333pt;}
.ydd{bottom:895.813333pt;}
.yb5{bottom:900.240000pt;}
.y3{bottom:901.680000pt;}
.y5c{bottom:903.440000pt;}
.yb4{bottom:915.840000pt;}
.y5b{bottom:919.040000pt;}
.ydc{bottom:919.440000pt;}
.y85{bottom:919.840000pt;}
.yb3{bottom:931.520000pt;}
.ydb{bottom:935.040000pt;}
.y32{bottom:935.440000pt;}
.y5a{bottom:942.720000pt;}
.yb2{bottom:947.120000pt;}
.y31{bottom:951.040000pt;}
.yda{bottom:958.720000pt;}
.yb1{bottom:962.800000pt;}
.y30{bottom:966.720000pt;}
.y59{bottom:974.320000pt;}
.yb0{bottom:978.400000pt;}
.y2f{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.yaf{bottom:1002.320000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hf{height:45.246562pt;}
.h7{height:46.499062pt;}
.h5{height:48.726562pt;}
.h8{height:49.581562pt;}
.hd{height:53.309531pt;}
.h12{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h11{height:72.240000pt;}
.hc{height:103.892500pt;}
.hb{height:108.372500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:57.546667pt;}
.w5{width:89.680000pt;}
.w7{width:91.546667pt;}
.w6{width:101.200000pt;}
.w3{width:104.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.800000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.x2{left:205.466655pt;}
.x9{left:255.066667pt;}
.x4{left:287.786655pt;}
.x6{left:315.786667pt;}
.xa{left:345.466667pt;}
.x8{left:420.666667pt;}
.x5{left:443.306655pt;}
.xb{left:447.386667pt;}
.x3{left:718.773322pt;}
}




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