
    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_4f41688554064315b24721e1.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_87b323c1bcf40826573128c8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cd251080e774a04b352d8977.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_a5fb138b80384e150ebe382e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_2aa8f891ecb95b59304bd401.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_b77a8f953a98ec59efcd42f7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.990000px;}
.lse{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.496200px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:3.060000px;}
.ls9{letter-spacing:25.505280px;}
.lsb{letter-spacing:29.105280px;}
.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;}
}
.ws4{word-spacing:-19.457280px;}
.ws9{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.wsf{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.563800px;}
.wse{word-spacing:-11.070000px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-7.659360px;}
._1{margin-left:-6.454080px;}
._5{margin-left:-5.356080px;}
._6{margin-left:-4.276800px;}
._7{margin-left:-3.010320px;}
._0{margin-left:-1.494000px;}
._2{width:1.015920px;}
._16{width:2.021520px;}
._3{width:3.050400px;}
._c{width:4.123440px;}
._b{width:5.199120px;}
._12{width:6.752880px;}
._d{width:8.426160px;}
._a{width:9.920160px;}
._15{width:10.995840px;}
._11{width:12.370320px;}
._10{width:13.565520px;}
._1a{width:14.837760px;}
._18{width:18.189360px;}
._19{width:19.215840px;}
._17{width:20.437920px;}
._9{width:22.350240px;}
._8{width:23.568960px;}
._1c{width:25.072560px;}
._1b{width:26.100000px;}
._f{width:27.429840px;}
._e{width:28.983600px;}
._14{width:31.134960px;}
._13{width:33.346080px;}
._26{width:34.511040px;}
._20{width:41.201280px;}
._21{width:42.231600px;}
._2c{width:44.248320px;}
._22{width:49.860000px;}
._25{width:51.300000px;}
._24{width:52.380240px;}
._23{width:53.739360px;}
._1f{width:65.606400px;}
._29{width:84.382560px;}
._27{width:116.449920px;}
._28{width:118.105920px;}
._1e{width:120.525600px;}
._1d{width:122.223600px;}
._2b{width:162.620400px;}
._2a{width:164.113200px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.520000px;}
.y35{bottom:3.240000px;}
.y4d{bottom:5.040000px;}
.y2{bottom:5.400000px;}
.y4e{bottom:16.200000px;}
.y5{bottom:19.470000px;}
.y34{bottom:20.520000px;}
.y8{bottom:23.430000px;}
.y33{bottom:37.800000px;}
.y4{bottom:39.450000px;}
.y7{bottom:43.410000px;}
.y32{bottom:54.900000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y31{bottom:72.180000px;}
.y30{bottom:89.460000px;}
.y2f{bottom:106.740000px;}
.y8f{bottom:110.376000px;}
.y58{bottom:120.636000px;}
.y2e{bottom:124.020000px;}
.y8e{bottom:124.236000px;}
.yac{bottom:127.116000px;}
.y8d{bottom:128.736000px;}
.y8c{bottom:137.916000px;}
.y2d{bottom:141.300000px;}
.y57{bottom:142.416000px;}
.yab{bottom:148.896000px;}
.y8b{bottom:151.770000px;}
.y8a{bottom:156.270000px;}
.y2c{bottom:158.400000px;}
.y56{bottom:164.190000px;}
.y89{bottom:165.630000px;}
.y95{bottom:170.130000px;}
.yaa{bottom:170.670000px;}
.y2b{bottom:175.680000px;}
.y88{bottom:179.310000px;}
.ya2{bottom:183.810000px;}
.y55{bottom:186.150000px;}
.ya9{bottom:192.450000px;}
.y2a{bottom:192.960000px;}
.y87{bottom:193.170000px;}
.y86{bottom:197.670000px;}
.y85{bottom:207.030000px;}
.y54{bottom:207.930000px;}
.y94{bottom:209.370000px;}
.y29{bottom:210.240000px;}
.ya1{bottom:211.530000px;}
.ya8{bottom:214.410000px;}
.y84{bottom:220.710000px;}
.ya7{bottom:223.230000px;}
.y83{bottom:225.210000px;}
.y28{bottom:227.520000px;}
.y53{bottom:229.710000px;}
.ya0{bottom:234.570000px;}
.y92{bottom:236.190000px;}
.y82{bottom:236.910000px;}
.y9f{bottom:239.070000px;}
.y93{bottom:242.130000px;}
.y27{bottom:244.620000px;}
.y9e{bottom:248.430000px;}
.y4b{bottom:250.920000px;}
.y52{bottom:251.490000px;}
.y91{bottom:257.970000px;}
.y26{bottom:261.900000px;}
.y9d{bottom:262.110000px;}
.y4a{bottom:264.600000px;}
.y51{bottom:273.270000px;}
.y9c{bottom:275.970000px;}
.y49{bottom:278.490000px;}
.y25{bottom:279.210000px;}
.y90{bottom:279.750000px;}
.y9b{bottom:280.470000px;}
.y9a{bottom:292.170000px;}
.y48{bottom:292.350000px;}
.y50{bottom:295.230000px;}
.y24{bottom:296.490000px;}
.y81{bottom:301.710000px;}
.y47{bottom:306.030000px;}
.y4c{bottom:310.710000px;}
.y23{bottom:313.770000px;}
.y46{bottom:319.890000px;}
.y80{bottom:323.490000px;}
.y22{bottom:331.050000px;}
.y45{bottom:333.750000px;}
.y15{bottom:338.295000px;}
.y7f{bottom:345.315000px;}
.y44{bottom:347.430000px;}
.y21{bottom:348.150000px;}
.y43{bottom:361.290000px;}
.y20{bottom:365.430000px;}
.y7e{bottom:367.095000px;}
.y42{bottom:375.150000px;}
.y1f{bottom:382.710000px;}
.y41{bottom:388.830000px;}
.y7d{bottom:388.875000px;}
.y1e{bottom:399.990000px;}
.y40{bottom:402.690000px;}
.y7c{bottom:410.835000px;}
.y3f{bottom:416.550000px;}
.y99{bottom:416.775000px;}
.y1d{bottom:417.270000px;}
.y3e{bottom:430.230000px;}
.y7b{bottom:432.615000px;}
.y1c{bottom:434.550000px;}
.y3d{bottom:444.090000px;}
.y1b{bottom:451.650000px;}
.y79{bottom:454.395000px;}
.y3c{bottom:457.950000px;}
.y7a{bottom:460.335000px;}
.y1a{bottom:468.930000px;}
.y3b{bottom:471.630000px;}
.y78{bottom:476.175000px;}
.y3a{bottom:485.490000px;}
.y19{bottom:486.210000px;}
.y77{bottom:497.955000px;}
.y39{bottom:499.350000px;}
.y18{bottom:503.490000px;}
.y38{bottom:513.030000px;}
.y76{bottom:519.915000px;}
.y17{bottom:520.770000px;}
.y37{bottom:526.890000px;}
.y16{bottom:538.095000px;}
.y36{bottom:540.795000px;}
.y75{bottom:541.695000px;}
.y98{bottom:547.635000px;}
.y74{bottom:563.475000px;}
.y73{bottom:585.255000px;}
.y72{bottom:607.245000px;}
.ya6{bottom:613.185000px;}
.y71{bottom:629.025000px;}
.y70{bottom:650.805000px;}
.y6e{bottom:672.585000px;}
.y6f{bottom:678.525000px;}
.y6d{bottom:694.365000px;}
.y6c{bottom:716.325000px;}
.ya5{bottom:722.265000px;}
.y6b{bottom:738.105000px;}
.y6a{bottom:759.885000px;}
.y69{bottom:781.665000px;}
.y68{bottom:803.625000px;}
.y67{bottom:825.405000px;}
.y97{bottom:831.345000px;}
.y66{bottom:847.185000px;}
.ya4{bottom:853.125000px;}
.y64{bottom:868.965000px;}
.y65{bottom:874.950000px;}
.y63{bottom:890.790000px;}
.y14{bottom:896.730000px;}
.y62{bottom:912.750000px;}
.y13{bottom:920.670000px;}
.y12{bottom:932.550000px;}
.y61{bottom:934.530000px;}
.y11{bottom:955.050000px;}
.y60{bottom:956.310000px;}
.y96{bottom:962.250000px;}
.y10{bottom:970.170000px;}
.y5f{bottom:978.090000px;}
.yf{bottom:991.950000px;}
.y5e{bottom:1000.050000px;}
.ye{bottom:1013.910000px;}
.y5d{bottom:1021.830000px;}
.yd{bottom:1035.690000px;}
.y5c{bottom:1043.610000px;}
.ya3{bottom:1049.550000px;}
.yc{bottom:1058.730000px;}
.y5a{bottom:1065.390000px;}
.y5b{bottom:1071.330000px;}
.yb{bottom:1084.470000px;}
.y59{bottom:1087.170000px;}
.y9{bottom:1107.510000px;}
.y1{bottom:1131.450000px;}
.h16{height:21.114844px;}
.hb{height:27.147656px;}
.h13{height:27.576000px;}
.h15{height:29.158594px;}
.h11{height:33.683203px;}
.h10{height:34.036523px;}
.h7{height:39.147891px;}
.h12{height:39.760312px;}
.hf{height:41.726953px;}
.h3{height:42.164648px;}
.hd{height:46.251562px;}
.h14{height:46.736719px;}
.h17{height:47.980898px;}
.hc{height:48.027656px;}
.h18{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.ha{height:53.224453px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h6{height:71.613281px;}
.h2{height:77.436000px;}
.he{height:551.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w8{width:115.050000px;}
.w7{width:201.990000px;}
.w4{width:255.090000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x14{left:30.600000px;}
.x2{left:70.374000px;}
.x1{left:108.036000px;}
.x1e{left:111.815987px;}
.x11{left:116.136000px;}
.x9{left:122.615987px;}
.xb{left:126.395987px;}
.x6{left:131.805000px;}
.x23{left:135.035987px;}
.x35{left:144.035987px;}
.xf{left:156.089987px;}
.x15{left:162.029987px;}
.x10{left:164.189987px;}
.xd{left:166.889987px;}
.x3{left:180.030000px;}
.x7{left:193.365000px;}
.x24{left:216.029987px;}
.x2b{left:236.729973px;}
.x2c{left:247.169987px;}
.x1b{left:304.094973px;}
.x1c{left:309.314987px;}
.x1d{left:324.074987px;}
.xe{left:352.694987px;}
.x2d{left:414.974973px;}
.xa{left:418.394987px;}
.x2f{left:422.714973px;}
.x2e{left:425.414987px;}
.x30{left:433.154987px;}
.x27{left:435.674973px;}
.x18{left:441.254973px;}
.xc{left:446.474987px;}
.x16{left:474.764973px;}
.x17{left:479.984987px;}
.x31{left:487.904973px;}
.x25{left:490.964973px;}
.x26{left:496.184987px;}
.x32{left:498.344987px;}
.x8{left:515.264987px;}
.x1f{left:525.164973px;}
.x20{left:530.384987px;}
.x28{left:536.144973px;}
.x21{left:547.124973px;}
.x22{left:552.344987px;}
.x5{left:554.685000px;}
.x12{left:575.925000px;}
.x33{left:596.444973px;}
.x34{left:606.884987px;}
.x29{left:662.549973px;}
.x2a{left:672.989987px;}
.x19{left:721.049973px;}
.x1a{left:726.269987px;}
.x13{left:777.930000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.880000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls9{letter-spacing:22.671360pt;}
.lsb{letter-spacing:25.871360pt;}
.ws4{word-spacing:-17.295360pt;}
.ws9{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws8{word-spacing:-10.278933pt;}
.wse{word-spacing:-9.840000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-6.808320pt;}
._1{margin-left:-5.736960pt;}
._5{margin-left:-4.760960pt;}
._6{margin-left:-3.801600pt;}
._7{margin-left:-2.675840pt;}
._0{margin-left:-1.328000pt;}
._2{width:0.903040pt;}
._16{width:1.796907pt;}
._3{width:2.711467pt;}
._c{width:3.665280pt;}
._b{width:4.621440pt;}
._12{width:6.002560pt;}
._d{width:7.489920pt;}
._a{width:8.817920pt;}
._15{width:9.774080pt;}
._11{width:10.995840pt;}
._10{width:12.058240pt;}
._1a{width:13.189120pt;}
._18{width:16.168320pt;}
._19{width:17.080747pt;}
._17{width:18.167040pt;}
._9{width:19.866880pt;}
._8{width:20.950187pt;}
._1c{width:22.286720pt;}
._1b{width:23.200000pt;}
._f{width:24.382080pt;}
._e{width:25.763200pt;}
._14{width:27.675520pt;}
._13{width:29.640960pt;}
._26{width:30.676480pt;}
._20{width:36.623360pt;}
._21{width:37.539200pt;}
._2c{width:39.331840pt;}
._22{width:44.320000pt;}
._25{width:45.600000pt;}
._24{width:46.560213pt;}
._23{width:47.768320pt;}
._1f{width:58.316800pt;}
._29{width:75.006720pt;}
._27{width:103.511040pt;}
._28{width:104.983040pt;}
._1e{width:107.133867pt;}
._1d{width:108.643200pt;}
._2b{width:144.551467pt;}
._2a{width:145.878400pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.240000pt;}
.y35{bottom:2.880000pt;}
.y4d{bottom:4.480000pt;}
.y2{bottom:4.800000pt;}
.y4e{bottom:14.400000pt;}
.y5{bottom:17.306667pt;}
.y34{bottom:18.240000pt;}
.y8{bottom:20.826667pt;}
.y33{bottom:33.600000pt;}
.y4{bottom:35.066667pt;}
.y7{bottom:38.586667pt;}
.y32{bottom:48.800000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y31{bottom:64.160000pt;}
.y30{bottom:79.520000pt;}
.y2f{bottom:94.880000pt;}
.y8f{bottom:98.112000pt;}
.y58{bottom:107.232000pt;}
.y2e{bottom:110.240000pt;}
.y8e{bottom:110.432000pt;}
.yac{bottom:112.992000pt;}
.y8d{bottom:114.432000pt;}
.y8c{bottom:122.592000pt;}
.y2d{bottom:125.600000pt;}
.y57{bottom:126.592000pt;}
.yab{bottom:132.352000pt;}
.y8b{bottom:134.906667pt;}
.y8a{bottom:138.906667pt;}
.y2c{bottom:140.800000pt;}
.y56{bottom:145.946667pt;}
.y89{bottom:147.226667pt;}
.y95{bottom:151.226667pt;}
.yaa{bottom:151.706667pt;}
.y2b{bottom:156.160000pt;}
.y88{bottom:159.386667pt;}
.ya2{bottom:163.386667pt;}
.y55{bottom:165.466667pt;}
.ya9{bottom:171.066667pt;}
.y2a{bottom:171.520000pt;}
.y87{bottom:171.706667pt;}
.y86{bottom:175.706667pt;}
.y85{bottom:184.026667pt;}
.y54{bottom:184.826667pt;}
.y94{bottom:186.106667pt;}
.y29{bottom:186.880000pt;}
.ya1{bottom:188.026667pt;}
.ya8{bottom:190.586667pt;}
.y84{bottom:196.186667pt;}
.ya7{bottom:198.426667pt;}
.y83{bottom:200.186667pt;}
.y28{bottom:202.240000pt;}
.y53{bottom:204.186667pt;}
.ya0{bottom:208.506667pt;}
.y92{bottom:209.946667pt;}
.y82{bottom:210.586667pt;}
.y9f{bottom:212.506667pt;}
.y93{bottom:215.226667pt;}
.y27{bottom:217.440000pt;}
.y9e{bottom:220.826667pt;}
.y4b{bottom:223.040000pt;}
.y52{bottom:223.546667pt;}
.y91{bottom:229.306667pt;}
.y26{bottom:232.800000pt;}
.y9d{bottom:232.986667pt;}
.y4a{bottom:235.200000pt;}
.y51{bottom:242.906667pt;}
.y9c{bottom:245.306667pt;}
.y49{bottom:247.546667pt;}
.y25{bottom:248.186667pt;}
.y90{bottom:248.666667pt;}
.y9b{bottom:249.306667pt;}
.y9a{bottom:259.706667pt;}
.y48{bottom:259.866667pt;}
.y50{bottom:262.426667pt;}
.y24{bottom:263.546667pt;}
.y81{bottom:268.186667pt;}
.y47{bottom:272.026667pt;}
.y4c{bottom:276.186667pt;}
.y23{bottom:278.906667pt;}
.y46{bottom:284.346667pt;}
.y80{bottom:287.546667pt;}
.y22{bottom:294.266667pt;}
.y45{bottom:296.666667pt;}
.y15{bottom:300.706667pt;}
.y7f{bottom:306.946667pt;}
.y44{bottom:308.826667pt;}
.y21{bottom:309.466667pt;}
.y43{bottom:321.146667pt;}
.y20{bottom:324.826667pt;}
.y7e{bottom:326.306667pt;}
.y42{bottom:333.466667pt;}
.y1f{bottom:340.186667pt;}
.y41{bottom:345.626667pt;}
.y7d{bottom:345.666667pt;}
.y1e{bottom:355.546667pt;}
.y40{bottom:357.946667pt;}
.y7c{bottom:365.186667pt;}
.y3f{bottom:370.266667pt;}
.y99{bottom:370.466667pt;}
.y1d{bottom:370.906667pt;}
.y3e{bottom:382.426667pt;}
.y7b{bottom:384.546667pt;}
.y1c{bottom:386.266667pt;}
.y3d{bottom:394.746667pt;}
.y1b{bottom:401.466667pt;}
.y79{bottom:403.906667pt;}
.y3c{bottom:407.066667pt;}
.y7a{bottom:409.186667pt;}
.y1a{bottom:416.826667pt;}
.y3b{bottom:419.226667pt;}
.y78{bottom:423.266667pt;}
.y3a{bottom:431.546667pt;}
.y19{bottom:432.186667pt;}
.y77{bottom:442.626667pt;}
.y39{bottom:443.866667pt;}
.y18{bottom:447.546667pt;}
.y38{bottom:456.026667pt;}
.y76{bottom:462.146667pt;}
.y17{bottom:462.906667pt;}
.y37{bottom:468.346667pt;}
.y16{bottom:478.306667pt;}
.y36{bottom:480.706667pt;}
.y75{bottom:481.506667pt;}
.y98{bottom:486.786667pt;}
.y74{bottom:500.866667pt;}
.y73{bottom:520.226667pt;}
.y72{bottom:539.773333pt;}
.ya6{bottom:545.053333pt;}
.y71{bottom:559.133333pt;}
.y70{bottom:578.493333pt;}
.y6e{bottom:597.853333pt;}
.y6f{bottom:603.133333pt;}
.y6d{bottom:617.213333pt;}
.y6c{bottom:636.733333pt;}
.ya5{bottom:642.013333pt;}
.y6b{bottom:656.093333pt;}
.y6a{bottom:675.453333pt;}
.y69{bottom:694.813333pt;}
.y68{bottom:714.333333pt;}
.y67{bottom:733.693333pt;}
.y97{bottom:738.973333pt;}
.y66{bottom:753.053333pt;}
.ya4{bottom:758.333333pt;}
.y64{bottom:772.413333pt;}
.y65{bottom:777.733333pt;}
.y63{bottom:791.813333pt;}
.y14{bottom:797.093333pt;}
.y62{bottom:811.333333pt;}
.y13{bottom:818.373333pt;}
.y12{bottom:828.933333pt;}
.y61{bottom:830.693333pt;}
.y11{bottom:848.933333pt;}
.y60{bottom:850.053333pt;}
.y96{bottom:855.333333pt;}
.y10{bottom:862.373333pt;}
.y5f{bottom:869.413333pt;}
.yf{bottom:881.733333pt;}
.y5e{bottom:888.933333pt;}
.ye{bottom:901.253333pt;}
.y5d{bottom:908.293333pt;}
.yd{bottom:920.613333pt;}
.y5c{bottom:927.653333pt;}
.ya3{bottom:932.933333pt;}
.yc{bottom:941.093333pt;}
.y5a{bottom:947.013333pt;}
.y5b{bottom:952.293333pt;}
.yb{bottom:963.973333pt;}
.y59{bottom:966.373333pt;}
.y9{bottom:984.453333pt;}
.y1{bottom:1005.733333pt;}
.h16{height:18.768750pt;}
.hb{height:24.131250pt;}
.h13{height:24.512000pt;}
.h15{height:25.918750pt;}
.h11{height:29.940625pt;}
.h10{height:30.254687pt;}
.h7{height:34.798125pt;}
.h12{height:35.342500pt;}
.hf{height:37.090625pt;}
.h3{height:37.479688pt;}
.hd{height:41.112500pt;}
.h14{height:41.543750pt;}
.h17{height:42.649687pt;}
.hc{height:42.691250pt;}
.h18{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.ha{height:47.310625pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h6{height:63.656250pt;}
.h2{height:68.832000pt;}
.he{height:490.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w8{width:102.266667pt;}
.w7{width:179.546667pt;}
.w4{width:226.746667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x14{left:27.200000pt;}
.x2{left:62.554667pt;}
.x1{left:96.032000pt;}
.x1e{left:99.391988pt;}
.x11{left:103.232000pt;}
.x9{left:108.991988pt;}
.xb{left:112.351988pt;}
.x6{left:117.160000pt;}
.x23{left:120.031988pt;}
.x35{left:128.031988pt;}
.xf{left:138.746655pt;}
.x15{left:144.026655pt;}
.x10{left:145.946655pt;}
.xd{left:148.346655pt;}
.x3{left:160.026667pt;}
.x7{left:171.880000pt;}
.x24{left:192.026655pt;}
.x2b{left:210.426643pt;}
.x2c{left:219.706655pt;}
.x1b{left:270.306643pt;}
.x1c{left:274.946655pt;}
.x1d{left:288.066655pt;}
.xe{left:313.506655pt;}
.x2d{left:368.866643pt;}
.xa{left:371.906655pt;}
.x2f{left:375.746643pt;}
.x2e{left:378.146655pt;}
.x30{left:385.026655pt;}
.x27{left:387.266643pt;}
.x18{left:392.226643pt;}
.xc{left:396.866655pt;}
.x16{left:422.013310pt;}
.x17{left:426.653322pt;}
.x31{left:433.693310pt;}
.x25{left:436.413310pt;}
.x26{left:441.053322pt;}
.x32{left:442.973322pt;}
.x8{left:458.013322pt;}
.x1f{left:466.813310pt;}
.x20{left:471.453322pt;}
.x28{left:476.573310pt;}
.x21{left:486.333310pt;}
.x22{left:490.973322pt;}
.x5{left:493.053333pt;}
.x12{left:511.933333pt;}
.x33{left:530.173310pt;}
.x34{left:539.453322pt;}
.x29{left:588.933310pt;}
.x2a{left:598.213322pt;}
.x19{left:640.933310pt;}
.x1a{left:645.573322pt;}
.x13{left:691.493333pt;}
}




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