
    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_20ae28433773de654aff0c07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_88f50fabce9b4f2cdbe5c8ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_c9b214a6968631db870d82a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_4cd7862d26b0ee73ea546232.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_ec0beb001712c9b8d5ff4b14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_0406cf0bcdcc073e789a2cd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v2{vertical-align:-21.660000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.660000px;}
.v3{vertical-align:27.600000px;}
.lsd{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.024000px;}
.lsc{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024000px;}
.ls19{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.348000px;}
.ls13{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.540000px;}
.lse{letter-spacing:0.552000px;}
.ls1{letter-spacing:0.600000px;}
.ls14{letter-spacing:3.600000px;}
.ls1b{letter-spacing:6.852000px;}
.ls18{letter-spacing:7.200000px;}
.ls15{letter-spacing:9.600000px;}
.ls1a{letter-spacing:40.452000px;}
.ls7{letter-spacing:71.340000px;}
.ls2{letter-spacing:71.400000px;}
.ls9{letter-spacing:71.460000px;}
.ls6{letter-spacing:71.520000px;}
.lsa{letter-spacing:91.740000px;}
.ls5{letter-spacing:91.800000px;}
.ls8{letter-spacing:91.860000px;}
.ls4{letter-spacing:91.920000px;}
.ls3{letter-spacing:93.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.024000px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.976000px;}
.ws4{word-spacing:-17.100000px;}
.wse{word-spacing:-16.848000px;}
.ws8{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.900000px;}
.wsb{word-spacing:-15.600000px;}
.ws1{word-spacing:-15.000000px;}
.wsf{word-spacing:-14.760000px;}
.ws0{word-spacing:-13.800000px;}
.wsa{word-spacing:-11.856000px;}
.ws2{word-spacing:-9.900000px;}
.ws9{word-spacing:0.000000px;}
._c{margin-left:-4.608000px;}
._f{margin-left:-3.120000px;}
._4{margin-left:-2.100000px;}
._0{margin-left:-1.020000px;}
._3{width:1.080000px;}
._5{width:2.160000px;}
._6{width:3.720000px;}
._1{width:4.740000px;}
._7{width:5.940000px;}
._8{width:7.272000px;}
._9{width:8.604000px;}
._10{width:9.672000px;}
._e{width:10.812000px;}
._d{width:12.312000px;}
._a{width:13.896000px;}
._b{width:15.276000px;}
._14{width:16.788000px;}
._12{width:19.248000px;}
._11{width:20.292000px;}
._17{width:21.384000px;}
._18{width:22.974000px;}
._16{width:24.060000px;}
._15{width:25.128000px;}
._13{width:29.088000px;}
._2{width:143.580000px;}
.fc7{color:transparent;}
.fc6{color:rgb(62,61,64);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(192,0,0);}
.fc0{color:rgb(0,176,240);}
.fs3{font-size:39.600000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.yde{bottom:-25.845000px;}
.ydd{bottom:-6.900000px;}
.y0{bottom:0.000000px;}
.y34{bottom:4.500000px;}
.y66{bottom:9.000000px;}
.y69{bottom:9.285000px;}
.y61{bottom:9.300000px;}
.y6b{bottom:9.315000px;}
.ydc{bottom:11.985000px;}
.y6d{bottom:13.800000px;}
.y64{bottom:13.830000px;}
.y68{bottom:14.100000px;}
.y33{bottom:22.185000px;}
.y5{bottom:24.337500px;}
.ydb{bottom:29.100000px;}
.yda{bottom:46.500000px;}
.yc5{bottom:59.737500px;}
.y88{bottom:60.937500px;}
.y31{bottom:62.437500px;}
.y7a{bottom:62.737500px;}
.ya6{bottom:63.037500px;}
.yd9{bottom:63.600000px;}
.y5d{bottom:74.737500px;}
.yc4{bottom:78.637500px;}
.yd8{bottom:80.985000px;}
.y87{bottom:84.637500px;}
.y30{bottom:86.137500px;}
.y79{bottom:86.737500px;}
.ya5{bottom:87.037500px;}
.yc3{bottom:97.837500px;}
.yd7{bottom:98.100000px;}
.y5c{bottom:98.437500px;}
.y86{bottom:108.337500px;}
.y2f{bottom:109.837500px;}
.y78{bottom:110.437500px;}
.ya4{bottom:110.737500px;}
.yd6{bottom:115.485000px;}
.yc2{bottom:116.737500px;}
.y5b{bottom:131.437500px;}
.y85{bottom:132.337500px;}
.yd5{bottom:132.600000px;}
.y77{bottom:133.537500px;}
.y2e{bottom:133.837500px;}
.ya3{bottom:134.737500px;}
.yc1{bottom:135.637500px;}
.yd4{bottom:150.030000px;}
.y76{bottom:151.830000px;}
.yc0{bottom:154.530000px;}
.y5a{bottom:155.145000px;}
.y84{bottom:156.045000px;}
.y2d{bottom:157.530000px;}
.ya2{bottom:158.430000px;}
.yd3{bottom:167.130000px;}
.ybf{bottom:173.775000px;}
.y59{bottom:178.875000px;}
.ya1{bottom:182.175000px;}
.yd2{bottom:184.530000px;}
.y83{bottom:188.175000px;}
.y2c{bottom:190.275000px;}
.ybe{bottom:192.675000px;}
.yd1{bottom:201.630000px;}
.y58{bottom:202.875000px;}
.ya0{bottom:206.175000px;}
.y82{bottom:206.475000px;}
.ybd{bottom:211.575000px;}
.y2b{bottom:214.275000px;}
.y57{bottom:226.575000px;}
.ybc{bottom:230.475000px;}
.y2a{bottom:237.975000px;}
.y9f{bottom:238.875000px;}
.ybb{bottom:249.675000px;}
.y56{bottom:259.275000px;}
.y29{bottom:261.975000px;}
.y9e{bottom:262.575000px;}
.yba{bottom:268.575000px;}
.y55{bottom:283.275000px;}
.y28{bottom:285.675000px;}
.y9d{bottom:286.575000px;}
.yb9{bottom:287.475000px;}
.yb8{bottom:306.375000px;}
.y54{bottom:306.975000px;}
.y27{bottom:309.375000px;}
.y9c{bottom:310.275000px;}
.yb7{bottom:325.575000px;}
.y53{bottom:330.705000px;}
.y26{bottom:333.420000px;}
.y9b{bottom:334.005000px;}
.yb6{bottom:344.505000px;}
.y52{bottom:354.720000px;}
.y25{bottom:357.120000px;}
.y9a{bottom:358.005000px;}
.yb5{bottom:363.420000px;}
.y24{bottom:380.820000px;}
.y99{bottom:381.720000px;}
.yb4{bottom:382.320000px;}
.y51{bottom:387.420000px;}
.yb3{bottom:401.505000px;}
.y23{bottom:404.820000px;}
.y98{bottom:405.420000px;}
.y50{bottom:411.120000px;}
.yb2{bottom:420.405000px;}
.y22{bottom:428.505000px;}
.y97{bottom:429.420000px;}
.y4f{bottom:435.120000px;}
.yb1{bottom:439.320000px;}
.y75{bottom:446.820000px;}
.y21{bottom:452.220000px;}
.y96{bottom:453.120000px;}
.yb0{bottom:458.205000px;}
.y4e{bottom:458.820000px;}
.y74{bottom:470.820000px;}
.y20{bottom:476.220000px;}
.y95{bottom:476.820000px;}
.yaf{bottom:477.405000px;}
.y4d{bottom:482.505000px;}
.y73{bottom:494.550000px;}
.y81{bottom:494.850000px;}
.yae{bottom:496.350000px;}
.y1f{bottom:499.950000px;}
.y94{bottom:500.850000px;}
.y4c{bottom:506.550000px;}
.yad{bottom:515.550000px;}
.y72{bottom:518.250000px;}
.y80{bottom:518.550000px;}
.y1e{bottom:523.650000px;}
.y93{bottom:524.550000px;}
.y4b{bottom:530.250000px;}
.yac{bottom:539.250000px;}
.y71{bottom:542.250000px;}
.y7f{bottom:542.550000px;}
.y1d{bottom:547.650000px;}
.y92{bottom:548.250000px;}
.y4a{bottom:553.950000px;}
.yab{bottom:562.950000px;}
.y70{bottom:565.950000px;}
.y7e{bottom:566.250000px;}
.y1c{bottom:571.350000px;}
.y91{bottom:572.250000px;}
.y49{bottom:577.950000px;}
.y6f{bottom:586.050000px;}
.yaa{bottom:586.950000px;}
.y7d{bottom:590.250000px;}
.y1b{bottom:595.050000px;}
.y90{bottom:595.950000px;}
.y48{bottom:601.650000px;}
.ya9{bottom:610.650000px;}
.y7c{bottom:613.050000px;}
.y1a{bottom:619.050000px;}
.y6e{bottom:619.650000px;}
.y47{bottom:625.650000px;}
.ya8{bottom:634.650000px;}
.ycf{bottom:636.750000px;}
.y7b{bottom:640.350000px;}
.y19{bottom:641.880000px;}
.y8f{bottom:643.695000px;}
.y46{bottom:649.395000px;}
.y6c{bottom:652.980000px;}
.ya7{bottom:658.380000px;}
.y18{bottom:663.480000px;}
.yd0{bottom:665.595000px;}
.y8e{bottom:667.380000px;}
.y17{bottom:680.880000px;}
.y45{bottom:682.095000px;}
.y6a{bottom:686.280000px;}
.y8d{bottom:691.080000px;}
.y16{bottom:698.280000px;}
.y44{bottom:706.080000px;}
.y15{bottom:715.380000px;}
.y67{bottom:719.595000px;}
.y8c{bottom:724.095000px;}
.y43{bottom:729.795000px;}
.y14{bottom:734.880000px;}
.y8b{bottom:746.895000px;}
.y65{bottom:753.195000px;}
.y42{bottom:753.495000px;}
.y32{bottom:762.195000px;}
.y8a{bottom:768.795000px;}
.y41{bottom:777.495000px;}
.y63{bottom:786.495000px;}
.y89{bottom:796.380000px;}
.y40{bottom:801.225000px;}
.y13{bottom:818.625000px;}
.y62{bottom:819.825000px;}
.y3f{bottom:824.925000px;}
.y12{bottom:837.225000px;}
.y3e{bottom:848.925000px;}
.y60{bottom:853.125000px;}
.y11{bottom:860.025000px;}
.y3d{bottom:872.625000px;}
.y10{bottom:877.125000px;}
.yf{bottom:894.525000px;}
.y3c{bottom:896.325000px;}
.y5f{bottom:899.625000px;}
.ye{bottom:911.625000px;}
.yce{bottom:914.325000px;}
.y3b{bottom:920.325000px;}
.y5e{bottom:921.525000px;}
.yd{bottom:923.625000px;}
.ycd{bottom:931.725000px;}
.yc{bottom:940.725000px;}
.y3a{bottom:944.025000px;}
.ycc{bottom:950.625000px;}
.yb{bottom:961.755000px;}
.y39{bottom:967.755000px;}
.ycb{bottom:969.570000px;}
.ya{bottom:983.370000px;}
.yca{bottom:988.755000px;}
.y38{bottom:991.755000px;}
.y9{bottom:1001.670000px;}
.yc9{bottom:1007.670000px;}
.y37{bottom:1015.455000px;}
.y8{bottom:1025.955000px;}
.yc8{bottom:1026.570000px;}
.y36{bottom:1039.170000px;}
.yc7{bottom:1045.455000px;}
.y7{bottom:1048.755000px;}
.y35{bottom:1063.170000px;}
.yc6{bottom:1064.670000px;}
.y6{bottom:1066.170000px;}
.y4{bottom:1083.570000px;}
.y3{bottom:1102.170000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1136.700000px;}
.he{height:27.600000px;}
.hd{height:27.622500px;}
.hf{height:27.637500px;}
.hb{height:27.900000px;}
.h5{height:33.025781px;}
.h8{height:36.000000px;}
.h3{height:42.333984px;}
.hc{height:46.567383px;}
.h1{height:50.039062px;}
.h7{height:50.800781px;}
.h11{height:50.941406px;}
.h10{height:51.996094px;}
.h9{height:54.685781px;}
.h2{height:55.042969px;}
.h4{height:59.267578px;}
.h6{height:60.046875px;}
.ha{height:67.631250px;}
.h12{height:215.415000px;}
.h0{height:1188.000000px;}
.w5{width:90.937500px;}
.w3{width:165.030000px;}
.w6{width:167.175000px;}
.w4{width:244.575000px;}
.w2{width:807.255000px;}
.w7{width:807.570000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:10.837500px;}
.x16{left:19.545000px;}
.x18{left:28.785000px;}
.x12{left:32.092500px;}
.x20{left:37.230000px;}
.x1{left:53.999986px;}
.x21{left:57.037500px;}
.x19{left:58.237500px;}
.x23{left:61.830000px;}
.x1b{left:69.030000px;}
.x7{left:72.037486px;}
.x10{left:79.837486px;}
.x2b{left:81.037486px;}
.x1c{left:82.537500px;}
.x14{left:89.745000px;}
.x22{left:90.945000px;}
.x4{left:93.037486px;}
.x1d{left:97.830000px;}
.x1e{left:102.945000px;}
.x1a{left:105.330000px;}
.x1f{left:107.430000px;}
.xa{left:120.037486px;}
.xc{left:122.737486px;}
.x8{left:147.637486px;}
.x6{left:161.144986px;}
.xe{left:167.744986px;}
.x2a{left:173.429986px;}
.x5{left:180.674986px;}
.x9{left:195.674986px;}
.x27{left:240.074986px;}
.x25{left:250.274986px;}
.xf{left:264.974986px;}
.x13{left:289.575000px;}
.xb{left:294.674986px;}
.x29{left:322.919986px;}
.x3{left:358.904986px;}
.xd{left:387.104986px;}
.x2{left:459.149986px;}
.x15{left:535.350000px;}
.x24{left:615.779986px;}
.x17{left:627.495000px;}
.x26{left:750.824986px;}
.x28{left:761.624986px;}
@media print{
.v2{vertical-align:-19.253333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.253333pt;}
.v3{vertical-align:24.533333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.021333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021333pt;}
.ls19{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.309333pt;}
.ls13{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.490667pt;}
.ls1{letter-spacing:0.533333pt;}
.ls14{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:6.090667pt;}
.ls18{letter-spacing:6.400000pt;}
.ls15{letter-spacing:8.533333pt;}
.ls1a{letter-spacing:35.957333pt;}
.ls7{letter-spacing:63.413333pt;}
.ls2{letter-spacing:63.466667pt;}
.ls9{letter-spacing:63.520000pt;}
.ls6{letter-spacing:63.573333pt;}
.lsa{letter-spacing:81.546667pt;}
.ls5{letter-spacing:81.600000pt;}
.ls8{letter-spacing:81.653333pt;}
.ls4{letter-spacing:81.706667pt;}
.ls3{letter-spacing:82.666667pt;}
.ws7{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.021333pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.978667pt;}
.ws4{word-spacing:-15.200000pt;}
.wse{word-spacing:-14.976000pt;}
.ws8{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.133333pt;}
.wsb{word-spacing:-13.866667pt;}
.ws1{word-spacing:-13.333333pt;}
.wsf{word-spacing:-13.120000pt;}
.ws0{word-spacing:-12.266667pt;}
.wsa{word-spacing:-10.538667pt;}
.ws2{word-spacing:-8.800000pt;}
.ws9{word-spacing:0.000000pt;}
._c{margin-left:-4.096000pt;}
._f{margin-left:-2.773333pt;}
._4{margin-left:-1.866667pt;}
._0{margin-left:-0.906667pt;}
._3{width:0.960000pt;}
._5{width:1.920000pt;}
._6{width:3.306667pt;}
._1{width:4.213333pt;}
._7{width:5.280000pt;}
._8{width:6.464000pt;}
._9{width:7.648000pt;}
._10{width:8.597333pt;}
._e{width:9.610667pt;}
._d{width:10.944000pt;}
._a{width:12.352000pt;}
._b{width:13.578667pt;}
._14{width:14.922667pt;}
._12{width:17.109333pt;}
._11{width:18.037333pt;}
._17{width:19.008000pt;}
._18{width:20.421333pt;}
._16{width:21.386667pt;}
._15{width:22.336000pt;}
._13{width:25.856000pt;}
._2{width:127.626667pt;}
.fs3{font-size:35.200000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.yde{bottom:-22.973333pt;}
.ydd{bottom:-6.133333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:4.000000pt;}
.y66{bottom:8.000000pt;}
.y69{bottom:8.253333pt;}
.y61{bottom:8.266667pt;}
.y6b{bottom:8.280000pt;}
.ydc{bottom:10.653333pt;}
.y6d{bottom:12.266667pt;}
.y64{bottom:12.293333pt;}
.y68{bottom:12.533333pt;}
.y33{bottom:19.720000pt;}
.y5{bottom:21.633333pt;}
.ydb{bottom:25.866667pt;}
.yda{bottom:41.333333pt;}
.yc5{bottom:53.100000pt;}
.y88{bottom:54.166667pt;}
.y31{bottom:55.500000pt;}
.y7a{bottom:55.766667pt;}
.ya6{bottom:56.033333pt;}
.yd9{bottom:56.533333pt;}
.y5d{bottom:66.433333pt;}
.yc4{bottom:69.900000pt;}
.yd8{bottom:71.986667pt;}
.y87{bottom:75.233333pt;}
.y30{bottom:76.566667pt;}
.y79{bottom:77.100000pt;}
.ya5{bottom:77.366667pt;}
.yc3{bottom:86.966667pt;}
.yd7{bottom:87.200000pt;}
.y5c{bottom:87.500000pt;}
.y86{bottom:96.300000pt;}
.y2f{bottom:97.633333pt;}
.y78{bottom:98.166667pt;}
.ya4{bottom:98.433333pt;}
.yd6{bottom:102.653333pt;}
.yc2{bottom:103.766667pt;}
.y5b{bottom:116.833333pt;}
.y85{bottom:117.633333pt;}
.yd5{bottom:117.866667pt;}
.y77{bottom:118.700000pt;}
.y2e{bottom:118.966667pt;}
.ya3{bottom:119.766667pt;}
.yc1{bottom:120.566667pt;}
.yd4{bottom:133.360000pt;}
.y76{bottom:134.960000pt;}
.yc0{bottom:137.360000pt;}
.y5a{bottom:137.906667pt;}
.y84{bottom:138.706667pt;}
.y2d{bottom:140.026667pt;}
.ya2{bottom:140.826667pt;}
.yd3{bottom:148.560000pt;}
.ybf{bottom:154.466667pt;}
.y59{bottom:159.000000pt;}
.ya1{bottom:161.933333pt;}
.yd2{bottom:164.026667pt;}
.y83{bottom:167.266667pt;}
.y2c{bottom:169.133333pt;}
.ybe{bottom:171.266667pt;}
.yd1{bottom:179.226667pt;}
.y58{bottom:180.333333pt;}
.ya0{bottom:183.266667pt;}
.y82{bottom:183.533333pt;}
.ybd{bottom:188.066667pt;}
.y2b{bottom:190.466667pt;}
.y57{bottom:201.400000pt;}
.ybc{bottom:204.866667pt;}
.y2a{bottom:211.533333pt;}
.y9f{bottom:212.333333pt;}
.ybb{bottom:221.933333pt;}
.y56{bottom:230.466667pt;}
.y29{bottom:232.866667pt;}
.y9e{bottom:233.400000pt;}
.yba{bottom:238.733333pt;}
.y55{bottom:251.800000pt;}
.y28{bottom:253.933333pt;}
.y9d{bottom:254.733333pt;}
.yb9{bottom:255.533333pt;}
.yb8{bottom:272.333333pt;}
.y54{bottom:272.866667pt;}
.y27{bottom:275.000000pt;}
.y9c{bottom:275.800000pt;}
.yb7{bottom:289.400000pt;}
.y53{bottom:293.960000pt;}
.y26{bottom:296.373333pt;}
.y9b{bottom:296.893333pt;}
.yb6{bottom:306.226667pt;}
.y52{bottom:315.306667pt;}
.y25{bottom:317.440000pt;}
.y9a{bottom:318.226667pt;}
.yb5{bottom:323.040000pt;}
.y24{bottom:338.506667pt;}
.y99{bottom:339.306667pt;}
.yb4{bottom:339.840000pt;}
.y51{bottom:344.373333pt;}
.yb3{bottom:356.893333pt;}
.y23{bottom:359.840000pt;}
.y98{bottom:360.373333pt;}
.y50{bottom:365.440000pt;}
.yb2{bottom:373.693333pt;}
.y22{bottom:380.893333pt;}
.y97{bottom:381.706667pt;}
.y4f{bottom:386.773333pt;}
.yb1{bottom:390.506667pt;}
.y75{bottom:397.173333pt;}
.y21{bottom:401.973333pt;}
.y96{bottom:402.773333pt;}
.yb0{bottom:407.293333pt;}
.y4e{bottom:407.840000pt;}
.y74{bottom:418.506667pt;}
.y20{bottom:423.306667pt;}
.y95{bottom:423.840000pt;}
.yaf{bottom:424.360000pt;}
.y4d{bottom:428.893333pt;}
.y73{bottom:439.600000pt;}
.y81{bottom:439.866667pt;}
.yae{bottom:441.200000pt;}
.y1f{bottom:444.400000pt;}
.y94{bottom:445.200000pt;}
.y4c{bottom:450.266667pt;}
.yad{bottom:458.266667pt;}
.y72{bottom:460.666667pt;}
.y80{bottom:460.933333pt;}
.y1e{bottom:465.466667pt;}
.y93{bottom:466.266667pt;}
.y4b{bottom:471.333333pt;}
.yac{bottom:479.333333pt;}
.y71{bottom:482.000000pt;}
.y7f{bottom:482.266667pt;}
.y1d{bottom:486.800000pt;}
.y92{bottom:487.333333pt;}
.y4a{bottom:492.400000pt;}
.yab{bottom:500.400000pt;}
.y70{bottom:503.066667pt;}
.y7e{bottom:503.333333pt;}
.y1c{bottom:507.866667pt;}
.y91{bottom:508.666667pt;}
.y49{bottom:513.733333pt;}
.y6f{bottom:520.933333pt;}
.yaa{bottom:521.733333pt;}
.y7d{bottom:524.666667pt;}
.y1b{bottom:528.933333pt;}
.y90{bottom:529.733333pt;}
.y48{bottom:534.800000pt;}
.ya9{bottom:542.800000pt;}
.y7c{bottom:544.933333pt;}
.y1a{bottom:550.266667pt;}
.y6e{bottom:550.800000pt;}
.y47{bottom:556.133333pt;}
.ya8{bottom:564.133333pt;}
.ycf{bottom:566.000000pt;}
.y7b{bottom:569.200000pt;}
.y19{bottom:570.560000pt;}
.y8f{bottom:572.173333pt;}
.y46{bottom:577.240000pt;}
.y6c{bottom:580.426667pt;}
.ya7{bottom:585.226667pt;}
.y18{bottom:589.760000pt;}
.yd0{bottom:591.640000pt;}
.y8e{bottom:593.226667pt;}
.y17{bottom:605.226667pt;}
.y45{bottom:606.306667pt;}
.y6a{bottom:610.026667pt;}
.y8d{bottom:614.293333pt;}
.y16{bottom:620.693333pt;}
.y44{bottom:627.626667pt;}
.y15{bottom:635.893333pt;}
.y67{bottom:639.640000pt;}
.y8c{bottom:643.640000pt;}
.y43{bottom:648.706667pt;}
.y14{bottom:653.226667pt;}
.y8b{bottom:663.906667pt;}
.y65{bottom:669.506667pt;}
.y42{bottom:669.773333pt;}
.y32{bottom:677.506667pt;}
.y8a{bottom:683.373333pt;}
.y41{bottom:691.106667pt;}
.y63{bottom:699.106667pt;}
.y89{bottom:707.893333pt;}
.y40{bottom:712.200000pt;}
.y13{bottom:727.666667pt;}
.y62{bottom:728.733333pt;}
.y3f{bottom:733.266667pt;}
.y12{bottom:744.200000pt;}
.y3e{bottom:754.600000pt;}
.y60{bottom:758.333333pt;}
.y11{bottom:764.466667pt;}
.y3d{bottom:775.666667pt;}
.y10{bottom:779.666667pt;}
.yf{bottom:795.133333pt;}
.y3c{bottom:796.733333pt;}
.y5f{bottom:799.666667pt;}
.ye{bottom:810.333333pt;}
.yce{bottom:812.733333pt;}
.y3b{bottom:818.066667pt;}
.y5e{bottom:819.133333pt;}
.yd{bottom:821.000000pt;}
.ycd{bottom:828.200000pt;}
.yc{bottom:836.200000pt;}
.y3a{bottom:839.133333pt;}
.ycc{bottom:845.000000pt;}
.yb{bottom:854.893333pt;}
.y39{bottom:860.226667pt;}
.ycb{bottom:861.840000pt;}
.ya{bottom:874.106667pt;}
.yca{bottom:878.893333pt;}
.y38{bottom:881.560000pt;}
.y9{bottom:890.373333pt;}
.yc9{bottom:895.706667pt;}
.y37{bottom:902.626667pt;}
.y8{bottom:911.960000pt;}
.yc8{bottom:912.506667pt;}
.y36{bottom:923.706667pt;}
.yc7{bottom:929.293333pt;}
.y7{bottom:932.226667pt;}
.y35{bottom:945.040000pt;}
.yc6{bottom:946.373333pt;}
.y6{bottom:947.706667pt;}
.y4{bottom:963.173333pt;}
.y3{bottom:979.706667pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1010.400000pt;}
.he{height:24.533333pt;}
.hd{height:24.553333pt;}
.hf{height:24.566667pt;}
.hb{height:24.800000pt;}
.h5{height:29.356250pt;}
.h8{height:32.000000pt;}
.h3{height:37.630208pt;}
.hc{height:41.393229pt;}
.h1{height:44.479167pt;}
.h7{height:45.156250pt;}
.h11{height:45.281250pt;}
.h10{height:46.218750pt;}
.h9{height:48.609583pt;}
.h2{height:48.927083pt;}
.h4{height:52.682292pt;}
.h6{height:53.375000pt;}
.ha{height:60.116667pt;}
.h12{height:191.480000pt;}
.h0{height:1056.000000pt;}
.w5{width:80.833333pt;}
.w3{width:146.693333pt;}
.w6{width:148.600000pt;}
.w4{width:217.400000pt;}
.w2{width:717.560000pt;}
.w7{width:717.840000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:9.633333pt;}
.x16{left:17.373333pt;}
.x18{left:25.586667pt;}
.x12{left:28.526667pt;}
.x20{left:33.093333pt;}
.x1{left:47.999988pt;}
.x21{left:50.700000pt;}
.x19{left:51.766667pt;}
.x23{left:54.960000pt;}
.x1b{left:61.360000pt;}
.x7{left:64.033321pt;}
.x10{left:70.966655pt;}
.x2b{left:72.033321pt;}
.x1c{left:73.366667pt;}
.x14{left:79.773333pt;}
.x22{left:80.840000pt;}
.x4{left:82.699988pt;}
.x1d{left:86.960000pt;}
.x1e{left:91.506667pt;}
.x1a{left:93.626667pt;}
.x1f{left:95.493333pt;}
.xa{left:106.699988pt;}
.xc{left:109.099988pt;}
.x8{left:131.233321pt;}
.x6{left:143.239988pt;}
.xe{left:149.106655pt;}
.x2a{left:154.159988pt;}
.x5{left:160.599988pt;}
.x9{left:173.933321pt;}
.x27{left:213.399988pt;}
.x25{left:222.466655pt;}
.xf{left:235.533321pt;}
.x13{left:257.400000pt;}
.xb{left:261.933321pt;}
.x29{left:287.039988pt;}
.x3{left:319.026655pt;}
.xd{left:344.093321pt;}
.x2{left:408.133321pt;}
.x15{left:475.866667pt;}
.x24{left:547.359988pt;}
.x17{left:557.773333pt;}
.x26{left:667.399988pt;}
.x28{left:676.999988pt;}
}




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