
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_6a8dee0f519f05a6b46a5755.woff')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_3a0aabeba60b53312607c57f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7e2b94a0e5df769f4f64749d.woff')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_4669a71a1c27987639f34b31.woff')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_ba50a5e8995a0dccb0095ef5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_19821fa6b1e1c4415835a58f.woff')format("woff");}.ff7{font-family:ff7;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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-5.640000px;}
.ls1b{letter-spacing:-0.246600px;}
.ls11{letter-spacing:-0.186600px;}
.ls1e{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.084000px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.045000px;}
.ls10{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.095400px;}
.ls15{letter-spacing:0.097800px;}
.ls16{letter-spacing:0.098400px;}
.ls14{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.153600px;}
.lsf{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls18{letter-spacing:63.566640px;}
.ls1c{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;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.380000px;}
.wsc{word-spacing:-13.344600px;}
.wse{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.324200px;}
.wsf{word-spacing:-13.321800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:3.455640px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.893160px;}
._1{margin-left:-2.682720px;}
._0{margin-left:-1.110000px;}
._2{width:1.002324px;}
._3{width:2.583000px;}
._4{width:3.806352px;}
._5{width:5.733000px;}
._6{width:6.893676px;}
._7{width:8.116200px;}
._8{width:9.206448px;}
._c{width:10.307999px;}
._b{width:11.362800px;}
._13{width:14.246040px;}
._d{width:15.270480px;}
._e{width:16.533000px;}
._f{width:17.675280px;}
._16{width:23.627160px;}
._17{width:24.709320px;}
._9{width:27.715200px;}
._10{width:41.061960px;}
._18{width:45.570960px;}
._14{width:47.715480px;}
._15{width:48.717000px;}
._11{width:52.003800px;}
._12{width:61.382520px;}
.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;}
.fs8{font-size:47.880000px;}
.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;}
.y64{bottom:7.830000px;}
.y61{bottom:7.920000px;}
.y78{bottom:25.380000px;}
.y60{bottom:25.470000px;}
.y8c{bottom:29.880000px;}
.y86{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya5{bottom:111.360000px;}
.ya4{bottom:128.910000px;}
.yce{bottom:134.940000px;}
.y28{bottom:141.870000px;}
.ya3{bottom:146.460000px;}
.ycd{bottom:152.490000px;}
.y27{bottom:159.420000px;}
.ya2{bottom:164.100000px;}
.y26{bottom:176.970000px;}
.ycc{bottom:179.130000px;}
.y7e{bottom:180.300000px;}
.y5a{bottom:183.720000px;}
.y7d{bottom:192.450000px;}
.ycb{bottom:196.680000px;}
.ya1{bottom:199.650000px;}
.y25{bottom:212.610000px;}
.ya0{bottom:217.290000px;}
.y59{bottom:219.270000px;}
.y7c{bottom:219.810000px;}
.yca{bottom:223.320000px;}
.y24{bottom:230.160000px;}
.yf3{bottom:231.060000px;}
.y9f{bottom:234.840000px;}
.y58{bottom:236.910000px;}
.yc9{bottom:240.870000px;}
.y23{bottom:247.800000px;}
.yf2{bottom:248.610000px;}
.y9e{bottom:252.390000px;}
.y57{bottom:254.460000px;}
.yc8{bottom:258.420000px;}
.y7b{bottom:264.720000px;}
.y22{bottom:265.350000px;}
.yf1{bottom:266.250000px;}
.y9d{bottom:270.030000px;}
.y56{bottom:272.100000px;}
.y21{bottom:282.900000px;}
.yc7{bottom:285.060000px;}
.y9c{bottom:287.580000px;}
.y55{bottom:289.650000px;}
.y7a{bottom:292.080000px;}
.yf0{bottom:292.800000px;}
.yc6{bottom:302.610000px;}
.y9b{bottom:305.220000px;}
.y54{bottom:307.200000px;}
.y20{bottom:309.810000px;}
.yef{bottom:310.440000px;}
.y79{bottom:319.440000px;}
.y9a{bottom:322.770000px;}
.y53{bottom:324.840000px;}
.yc5{bottom:329.250000px;}
.yee{bottom:336.990000px;}
.y99{bottom:340.320000px;}
.y52{bottom:342.390000px;}
.yc4{bottom:346.800000px;}
.yed{bottom:354.540000px;}
.y98{bottom:357.960000px;}
.y1f{bottom:358.410000px;}
.y51{bottom:359.940000px;}
.y77{bottom:364.350000px;}
.yec{bottom:372.180000px;}
.y97{bottom:375.510000px;}
.y50{bottom:377.580000px;}
.yc3{bottom:390.990000px;}
.y96{bottom:393.150000px;}
.y4f{bottom:395.130000px;}
.y1e{bottom:395.490000px;}
.yeb{bottom:398.730000px;}
.yc2{bottom:408.540000px;}
.y76{bottom:409.260000px;}
.y95{bottom:410.700000px;}
.y4e{bottom:412.770000px;}
.y1d{bottom:413.040000px;}
.yea{bottom:416.370000px;}
.yc1{bottom:426.090000px;}
.y94{bottom:428.250000px;}
.y1c{bottom:430.590000px;}
.ye9{bottom:433.920000px;}
.y4d{bottom:439.680000px;}
.y1b{bottom:448.230000px;}
.yc0{bottom:452.730000px;}
.y75{bottom:454.170000px;}
.y93{bottom:455.160000px;}
.ye8{bottom:460.470000px;}
.y1a{bottom:465.780000px;}
.ybf{bottom:470.310000px;}
.ye7{bottom:478.140000px;}
.y19{bottom:483.450000px;}
.y4c{bottom:487.950000px;}
.ye6{bottom:495.690000px;}
.ybe{bottom:496.950000px;}
.y18{bottom:501.000000px;}
.y74{bottom:502.890000px;}
.y92{bottom:503.520000px;}
.y4b{bottom:505.500000px;}
.y17{bottom:518.550000px;}
.y73{bottom:520.440000px;}
.y91{bottom:521.070000px;}
.ye5{bottom:522.330000px;}
.y4a{bottom:523.140000px;}
.ybd{bottom:523.860000px;}
.y16{bottom:536.190000px;}
.y90{bottom:538.620000px;}
.ye4{bottom:539.880000px;}
.y49{bottom:540.690000px;}
.y72{bottom:547.080000px;}
.y15{bottom:553.740000px;}
.y8f{bottom:556.260000px;}
.ye3{bottom:557.430000px;}
.y48{bottom:558.330000px;}
.y71{bottom:564.630000px;}
.y14{bottom:571.380000px;}
.ybc{bottom:572.100000px;}
.y47{bottom:575.880000px;}
.ye2{bottom:584.070000px;}
.y13{bottom:588.930000px;}
.y8e{bottom:591.090000px;}
.y46{bottom:593.430000px;}
.ybb{bottom:599.010000px;}
.y70{bottom:600.270000px;}
.ye1{bottom:601.620000px;}
.y8d{bottom:603.240000px;}
.y12{bottom:606.480000px;}
.y45{bottom:611.070000px;}
.y6f{bottom:617.820000px;}
.ye0{bottom:619.260000px;}
.y11{bottom:624.120000px;}
.y44{bottom:628.620000px;}
.y6e{bottom:635.370000px;}
.yba{bottom:636.000000px;}
.ydf{bottom:645.810000px;}
.y43{bottom:646.260000px;}
.y10{bottom:651.030000px;}
.y8b{bottom:652.740000px;}
.y6d{bottom:653.010000px;}
.yb9{bottom:662.910000px;}
.yde{bottom:663.360000px;}
.y42{bottom:663.810000px;}
.y41{bottom:681.360000px;}
.y6c{bottom:687.840000px;}
.ydd{bottom:690.000000px;}
.yf{bottom:697.740000px;}
.y40{bottom:699.000000px;}
.y6b{bottom:699.990000px;}
.yb8{bottom:700.260000px;}
.y8a{bottom:702.150000px;}
.ydc{bottom:707.550000px;}
.y6a{bottom:727.350000px;}
.ye{bottom:733.380000px;}
.ydb{bottom:734.190000px;}
.y3f{bottom:734.550000px;}
.yb7{bottom:748.590000px;}
.y89{bottom:751.560000px;}
.yda{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.y69{bottom:754.710000px;}
.yb6{bottom:766.140000px;}
.yd{bottom:769.200000px;}
.y3d{bottom:769.740000px;}
.yd9{bottom:778.290000px;}
.y68{bottom:782.070000px;}
.yb5{bottom:783.690000px;}
.y3c{bottom:787.290000px;}
.y88{bottom:800.970000px;}
.yb4{bottom:801.330000px;}
.y3b{bottom:804.930000px;}
.yc{bottom:808.980000px;}
.y67{bottom:809.340000px;}
.yb3{bottom:818.880000px;}
.y3a{bottom:822.480000px;}
.yb{bottom:826.980000px;}
.yb2{bottom:836.520000px;}
.y66{bottom:836.700000px;}
.y39{bottom:840.030000px;}
.ya{bottom:844.980000px;}
.yd8{bottom:849.030000px;}
.y87{bottom:850.380000px;}
.yb1{bottom:854.070000px;}
.y38{bottom:857.670000px;}
.y9{bottom:862.980000px;}
.y65{bottom:864.060000px;}
.yd7{bottom:866.670000px;}
.yb0{bottom:871.620000px;}
.y37{bottom:875.220000px;}
.y8{bottom:880.980000px;}
.yd6{bottom:884.220000px;}
.yaf{bottom:889.260000px;}
.y63{bottom:891.420000px;}
.y85{bottom:899.790000px;}
.yae{bottom:906.810000px;}
.y36{bottom:910.860000px;}
.y7{bottom:913.110000px;}
.y62{bottom:918.690000px;}
.yad{bottom:924.450000px;}
.y35{bottom:928.410000px;}
.y6{bottom:931.560000px;}
.yac{bottom:942.000000px;}
.y34{bottom:945.960000px;}
.y84{bottom:949.200000px;}
.y5{bottom:950.010000px;}
.y33{bottom:963.600000px;}
.yab{bottom:968.910000px;}
.yd5{bottom:972.600000px;}
.y32{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y83{bottom:997.890000px;}
.y31{bottom:998.790000px;}
.yd4{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y82{bottom:1015.560000px;}
.y30{bottom:1016.370000px;}
.yd3{bottom:1016.820000px;}
.yaa{bottom:1017.180000px;}
.y5f{bottom:1029.960000px;}
.y2f{bottom:1033.920000px;}
.yd2{bottom:1034.370000px;}
.ya9{bottom:1034.820000px;}
.y5e{bottom:1047.510000px;}
.y81{bottom:1051.110000px;}
.ya8{bottom:1052.370000px;}
.yd1{bottom:1060.920000px;}
.y80{bottom:1068.660000px;}
.y2e{bottom:1069.560000px;}
.ya7{bottom:1069.920000px;}
.y5d{bottom:1074.150000px;}
.yd0{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.ya6{bottom:1087.560000px;}
.y5c{bottom:1091.700000px;}
.ycf{bottom:1096.110000px;}
.y7f{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y5b{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hf{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.h10{height:44.100000px;}
.hb{height:44.190000px;}
.h13{height:48.600000px;}
.h12{height:48.690000px;}
.h7{height:50.902383px;}
.h5{height:53.340820px;}
.h8{height:55.779258px;}
.h11{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:32.760000px;}
.wb{width:32.850000px;}
.w9{width:33.300000px;}
.wc{width:33.390000px;}
.w7{width:35.820000px;}
.w6{width:35.910000px;}
.w8{width:36.900000px;}
.wf{width:40.410000px;}
.w3{width:41.850000px;}
.w11{width:43.560000px;}
.w12{width:47.610000px;}
.w10{width:53.280000px;}
.wd{width:54.360000px;}
.we{width:62.100000px;}
.w13{width:67.320000px;}
.w14{width:74.880000px;}
.w4{width:563.190000px;}
.wa{width:580.740000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x14{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:71.550000px;}
.x11{left:95.039987px;}
.xc{left:102.870000px;}
.x1e{left:111.239987px;}
.x6{left:114.120000px;}
.x12{left:122.039987px;}
.x13{left:201.720000px;}
.x2{left:202.799987px;}
.xb{left:212.429987px;}
.x10{left:254.189987px;}
.x15{left:256.800000px;}
.x16{left:319.620000px;}
.x17{left:360.750000px;}
.x1d{left:386.759987px;}
.x18{left:414.750000px;}
.x19{left:459.030000px;}
.x1a{left:507.480000px;}
.x1b{left:548.610000px;}
.x1c{left:616.650000px;}
.x7{left:678.030000px;}
.xd{left:684.330000px;}
.x8{left:711.510000px;}
.xe{left:717.900000px;}
.x9{left:748.140000px;}
.xf{left:754.530000px;}
.xa{left:784.770000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-5.013333pt;}
.ls1b{letter-spacing:-0.219200pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1e{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.074667pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.040000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.084800pt;}
.ls15{letter-spacing:0.086933pt;}
.ls16{letter-spacing:0.087467pt;}
.ls14{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.136533pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls18{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.893333pt;}
.wsc{word-spacing:-11.861867pt;}
.wse{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.843733pt;}
.wsf{word-spacing:-11.841600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.071680pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.460587pt;}
._1{margin-left:-2.384640pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.890955pt;}
._3{width:2.296000pt;}
._4{width:3.383424pt;}
._5{width:5.096000pt;}
._6{width:6.127712pt;}
._7{width:7.214400pt;}
._8{width:8.183509pt;}
._c{width:9.162666pt;}
._b{width:10.100267pt;}
._13{width:12.663147pt;}
._d{width:13.573760pt;}
._e{width:14.696000pt;}
._f{width:15.711360pt;}
._16{width:21.001920pt;}
._17{width:21.963840pt;}
._9{width:24.635733pt;}
._10{width:36.499520pt;}
._18{width:40.507520pt;}
._14{width:42.413760pt;}
._15{width:43.304000pt;}
._11{width:46.225600pt;}
._12{width:54.562240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.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;}
.y64{bottom:6.960000pt;}
.y61{bottom:7.040000pt;}
.y78{bottom:22.560000pt;}
.y60{bottom:22.640000pt;}
.y8c{bottom:26.560000pt;}
.y86{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya5{bottom:98.986667pt;}
.ya4{bottom:114.586667pt;}
.yce{bottom:119.946667pt;}
.y28{bottom:126.106667pt;}
.ya3{bottom:130.186667pt;}
.ycd{bottom:135.546667pt;}
.y27{bottom:141.706667pt;}
.ya2{bottom:145.866667pt;}
.y26{bottom:157.306667pt;}
.ycc{bottom:159.226667pt;}
.y7e{bottom:160.266667pt;}
.y5a{bottom:163.306667pt;}
.y7d{bottom:171.066667pt;}
.ycb{bottom:174.826667pt;}
.ya1{bottom:177.466667pt;}
.y25{bottom:188.986667pt;}
.ya0{bottom:193.146667pt;}
.y59{bottom:194.906667pt;}
.y7c{bottom:195.386667pt;}
.yca{bottom:198.506667pt;}
.y24{bottom:204.586667pt;}
.yf3{bottom:205.386667pt;}
.y9f{bottom:208.746667pt;}
.y58{bottom:210.586667pt;}
.yc9{bottom:214.106667pt;}
.y23{bottom:220.266667pt;}
.yf2{bottom:220.986667pt;}
.y9e{bottom:224.346667pt;}
.y57{bottom:226.186667pt;}
.yc8{bottom:229.706667pt;}
.y7b{bottom:235.306667pt;}
.y22{bottom:235.866667pt;}
.yf1{bottom:236.666667pt;}
.y9d{bottom:240.026667pt;}
.y56{bottom:241.866667pt;}
.y21{bottom:251.466667pt;}
.yc7{bottom:253.386667pt;}
.y9c{bottom:255.626667pt;}
.y55{bottom:257.466667pt;}
.y7a{bottom:259.626667pt;}
.yf0{bottom:260.266667pt;}
.yc6{bottom:268.986667pt;}
.y9b{bottom:271.306667pt;}
.y54{bottom:273.066667pt;}
.y20{bottom:275.386667pt;}
.yef{bottom:275.946667pt;}
.y79{bottom:283.946667pt;}
.y9a{bottom:286.906667pt;}
.y53{bottom:288.746667pt;}
.yc5{bottom:292.666667pt;}
.yee{bottom:299.546667pt;}
.y99{bottom:302.506667pt;}
.y52{bottom:304.346667pt;}
.yc4{bottom:308.266667pt;}
.yed{bottom:315.146667pt;}
.y98{bottom:318.186667pt;}
.y1f{bottom:318.586667pt;}
.y51{bottom:319.946667pt;}
.y77{bottom:323.866667pt;}
.yec{bottom:330.826667pt;}
.y97{bottom:333.786667pt;}
.y50{bottom:335.626667pt;}
.yc3{bottom:347.546667pt;}
.y96{bottom:349.466667pt;}
.y4f{bottom:351.226667pt;}
.y1e{bottom:351.546667pt;}
.yeb{bottom:354.426667pt;}
.yc2{bottom:363.146667pt;}
.y76{bottom:363.786667pt;}
.y95{bottom:365.066667pt;}
.y4e{bottom:366.906667pt;}
.y1d{bottom:367.146667pt;}
.yea{bottom:370.106667pt;}
.yc1{bottom:378.746667pt;}
.y94{bottom:380.666667pt;}
.y1c{bottom:382.746667pt;}
.ye9{bottom:385.706667pt;}
.y4d{bottom:390.826667pt;}
.y1b{bottom:398.426667pt;}
.yc0{bottom:402.426667pt;}
.y75{bottom:403.706667pt;}
.y93{bottom:404.586667pt;}
.ye8{bottom:409.306667pt;}
.y1a{bottom:414.026667pt;}
.ybf{bottom:418.053333pt;}
.ye7{bottom:425.013333pt;}
.y19{bottom:429.733333pt;}
.y4c{bottom:433.733333pt;}
.ye6{bottom:440.613333pt;}
.ybe{bottom:441.733333pt;}
.y18{bottom:445.333333pt;}
.y74{bottom:447.013333pt;}
.y92{bottom:447.573333pt;}
.y4b{bottom:449.333333pt;}
.y17{bottom:460.933333pt;}
.y73{bottom:462.613333pt;}
.y91{bottom:463.173333pt;}
.ye5{bottom:464.293333pt;}
.y4a{bottom:465.013333pt;}
.ybd{bottom:465.653333pt;}
.y16{bottom:476.613333pt;}
.y90{bottom:478.773333pt;}
.ye4{bottom:479.893333pt;}
.y49{bottom:480.613333pt;}
.y72{bottom:486.293333pt;}
.y15{bottom:492.213333pt;}
.y8f{bottom:494.453333pt;}
.ye3{bottom:495.493333pt;}
.y48{bottom:496.293333pt;}
.y71{bottom:501.893333pt;}
.y14{bottom:507.893333pt;}
.ybc{bottom:508.533333pt;}
.y47{bottom:511.893333pt;}
.ye2{bottom:519.173333pt;}
.y13{bottom:523.493333pt;}
.y8e{bottom:525.413333pt;}
.y46{bottom:527.493333pt;}
.ybb{bottom:532.453333pt;}
.y70{bottom:533.573333pt;}
.ye1{bottom:534.773333pt;}
.y8d{bottom:536.213333pt;}
.y12{bottom:539.093333pt;}
.y45{bottom:543.173333pt;}
.y6f{bottom:549.173333pt;}
.ye0{bottom:550.453333pt;}
.y11{bottom:554.773333pt;}
.y44{bottom:558.773333pt;}
.y6e{bottom:564.773333pt;}
.yba{bottom:565.333333pt;}
.ydf{bottom:574.053333pt;}
.y43{bottom:574.453333pt;}
.y10{bottom:578.693333pt;}
.y8b{bottom:580.213333pt;}
.y6d{bottom:580.453333pt;}
.yb9{bottom:589.253333pt;}
.yde{bottom:589.653333pt;}
.y42{bottom:590.053333pt;}
.y41{bottom:605.653333pt;}
.y6c{bottom:611.413333pt;}
.ydd{bottom:613.333333pt;}
.yf{bottom:620.213333pt;}
.y40{bottom:621.333333pt;}
.y6b{bottom:622.213333pt;}
.yb8{bottom:622.453333pt;}
.y8a{bottom:624.133333pt;}
.ydc{bottom:628.933333pt;}
.y6a{bottom:646.533333pt;}
.ye{bottom:651.893333pt;}
.ydb{bottom:652.613333pt;}
.y3f{bottom:652.933333pt;}
.yb7{bottom:665.413333pt;}
.y89{bottom:668.053333pt;}
.yda{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.y69{bottom:670.853333pt;}
.yb6{bottom:681.013333pt;}
.yd{bottom:683.733333pt;}
.y3d{bottom:684.213333pt;}
.yd9{bottom:691.813333pt;}
.y68{bottom:695.173333pt;}
.yb5{bottom:696.613333pt;}
.y3c{bottom:699.813333pt;}
.y88{bottom:711.973333pt;}
.yb4{bottom:712.293333pt;}
.y3b{bottom:715.493333pt;}
.yc{bottom:719.093333pt;}
.y67{bottom:719.413333pt;}
.yb3{bottom:727.893333pt;}
.y3a{bottom:731.093333pt;}
.yb{bottom:735.093333pt;}
.yb2{bottom:743.573333pt;}
.y66{bottom:743.733333pt;}
.y39{bottom:746.693333pt;}
.ya{bottom:751.093333pt;}
.yd8{bottom:754.693333pt;}
.y87{bottom:755.893333pt;}
.yb1{bottom:759.173333pt;}
.y38{bottom:762.373333pt;}
.y9{bottom:767.093333pt;}
.y65{bottom:768.053333pt;}
.yd7{bottom:770.373333pt;}
.yb0{bottom:774.773333pt;}
.y37{bottom:777.973333pt;}
.y8{bottom:783.093333pt;}
.yd6{bottom:785.973333pt;}
.yaf{bottom:790.453333pt;}
.y63{bottom:792.373333pt;}
.y85{bottom:799.813333pt;}
.yae{bottom:806.053333pt;}
.y36{bottom:809.653333pt;}
.y7{bottom:811.653333pt;}
.y62{bottom:816.613333pt;}
.yad{bottom:821.733333pt;}
.y35{bottom:825.253333pt;}
.y6{bottom:828.053333pt;}
.yac{bottom:837.333333pt;}
.y34{bottom:840.853333pt;}
.y84{bottom:843.733333pt;}
.y5{bottom:844.453333pt;}
.y33{bottom:856.533333pt;}
.yab{bottom:861.253333pt;}
.yd5{bottom:864.533333pt;}
.y32{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y83{bottom:887.013333pt;}
.y31{bottom:887.813333pt;}
.yd4{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y82{bottom:902.720000pt;}
.y30{bottom:903.440000pt;}
.yd3{bottom:903.840000pt;}
.yaa{bottom:904.160000pt;}
.y5f{bottom:915.520000pt;}
.y2f{bottom:919.040000pt;}
.yd2{bottom:919.440000pt;}
.ya9{bottom:919.840000pt;}
.y5e{bottom:931.120000pt;}
.y81{bottom:934.320000pt;}
.ya8{bottom:935.440000pt;}
.yd1{bottom:943.040000pt;}
.y80{bottom:949.920000pt;}
.y2e{bottom:950.720000pt;}
.ya7{bottom:951.040000pt;}
.y5d{bottom:954.800000pt;}
.yd0{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.ya6{bottom:966.720000pt;}
.y5c{bottom:970.400000pt;}
.ycf{bottom:974.320000pt;}
.y7f{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y5b{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hf{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.h10{height:39.200000pt;}
.hb{height:39.280000pt;}
.h13{height:43.200000pt;}
.h12{height:43.280000pt;}
.h7{height:45.246562pt;}
.h5{height:47.414062pt;}
.h8{height:49.581562pt;}
.h11{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:29.120000pt;}
.wb{width:29.200000pt;}
.w9{width:29.600000pt;}
.wc{width:29.680000pt;}
.w7{width:31.840000pt;}
.w6{width:31.920000pt;}
.w8{width:32.800000pt;}
.wf{width:35.920000pt;}
.w3{width:37.200000pt;}
.w11{width:38.720000pt;}
.w12{width:42.320000pt;}
.w10{width:47.360000pt;}
.wd{width:48.320000pt;}
.we{width:55.200000pt;}
.w13{width:59.840000pt;}
.w14{width:66.560000pt;}
.w4{width:500.613333pt;}
.wa{width:516.213333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x14{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:63.600000pt;}
.x11{left:84.479988pt;}
.xc{left:91.440000pt;}
.x1e{left:98.879988pt;}
.x6{left:101.440000pt;}
.x12{left:108.479988pt;}
.x13{left:179.306667pt;}
.x2{left:180.266655pt;}
.xb{left:188.826655pt;}
.x10{left:225.946655pt;}
.x15{left:228.266667pt;}
.x16{left:284.106667pt;}
.x17{left:320.666667pt;}
.x1d{left:343.786655pt;}
.x18{left:368.666667pt;}
.x19{left:408.026667pt;}
.x1a{left:451.093333pt;}
.x1b{left:487.653333pt;}
.x1c{left:548.133333pt;}
.x7{left:602.693333pt;}
.xd{left:608.293333pt;}
.x8{left:632.453333pt;}
.xe{left:638.133333pt;}
.x9{left:665.013333pt;}
.xf{left:670.693333pt;}
.xa{left:697.573333pt;}
.x3{left:704.053322pt;}
}




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