
    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_1fe0bbafde6add1f3a0938c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f2fc60553ba28b621911c5e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_3d6115e5cc8d7c1d66ddbad8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9d688926c6dd3d46a8f1798a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_6948ca3507ddc761342bcea2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_4a46dd9974a3e59f26567725.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_68fc8e2c30fcd55bafe7d1c2.woff2')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);}
.v8{vertical-align:-64.080000px;}
.v7{vertical-align:-61.920000px;}
.v6{vertical-align:-36.000000px;}
.v5{vertical-align:-33.000000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-4.503000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.220800px;}
.ls14{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.027360px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.738000px;}
.ls1e{letter-spacing:2.988000px;}
.ls3{letter-spacing:5.940000px;}
.ls2{letter-spacing:13.140000px;}
.ls1c{letter-spacing:30.348000px;}
.ls1b{letter-spacing:35.460000px;}
.ls17{letter-spacing:191.844000px;}
.ls16{letter-spacing:314.964000px;}
.lse{letter-spacing:328.644000px;}
.ls4{letter-spacing:428.298000px;}
.lsd{letter-spacing:1117.920000px;}
.ls1a{letter-spacing:1188.480000px;}
.ls5{letter-spacing:1278.540000px;}
.ls19{letter-spacing:1308.720000px;}
.ls18{letter-spacing:1326.720000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.669200px;}
.ws2{word-spacing:-14.580000px;}
.wse{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws1{word-spacing:-14.192640px;}
.ws3{word-spacing:-13.999200px;}
.ws11{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.374000px;}
.ws8{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.780000px;}
.ws9{word-spacing:-12.672000px;}
.ws5{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.252000px;}
.ws6{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._2{margin-left:-2.371680px;}
._0{margin-left:-1.368000px;}
._1{width:1.683360px;}
._3{width:3.672000px;}
._4{width:4.728000px;}
._6{width:5.898000px;}
._7{width:7.050000px;}
._a{width:8.694000px;}
._9{width:9.882000px;}
._5{width:12.350640px;}
._8{width:1041.420000px;}
._b{width:1157.244000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:74.880000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y79{bottom:2.880000px;}
.y82{bottom:3.234000px;}
.y7d{bottom:3.240000px;}
.y7f{bottom:3.420000px;}
.y78{bottom:18.360000px;}
.y7c{bottom:18.900000px;}
.y7a{bottom:33.840000px;}
.y2{bottom:57.960000px;}
.y1{bottom:76.860000px;}
.y9f{bottom:96.840000px;}
.y3e{bottom:100.109250px;}
.y84{bottom:105.120000px;}
.y9e{bottom:112.320000px;}
.y3d{bottom:115.769250px;}
.y83{bottom:126.180000px;}
.y9d{bottom:127.980000px;}
.y3c{bottom:131.249250px;}
.y9c{bottom:143.136000px;}
.y3b{bottom:146.759250px;}
.y81{bottom:147.096000px;}
.y3a{bottom:162.239250px;}
.y80{bottom:167.970000px;}
.y9b{bottom:174.810000px;}
.y39{bottom:177.899250px;}
.y7e{bottom:188.850000px;}
.y9a{bottom:190.290000px;}
.y38{bottom:193.379250px;}
.y99{bottom:205.770000px;}
.y37{bottom:208.859250px;}
.y7b{bottom:220.710000px;}
.y98{bottom:221.250000px;}
.y36{bottom:224.339250px;}
.y97{bottom:236.910000px;}
.y35{bottom:239.999250px;}
.y96{bottom:252.390000px;}
.y77{bottom:252.570000px;}
.y34{bottom:255.479250px;}
.y95{bottom:267.870000px;}
.y33{bottom:271.139250px;}
.y94{bottom:283.350000px;}
.y32{bottom:286.619250px;}
.y93{bottom:299.010000px;}
.y31{bottom:302.099250px;}
.y92{bottom:314.490000px;}
.y30{bottom:317.579250px;}
.y76{bottom:318.810000px;}
.y91{bottom:329.790000px;}
.y2f{bottom:333.239250px;}
.y75{bottom:334.470000px;}
.y90{bottom:345.450000px;}
.y2e{bottom:348.719250px;}
.y74{bottom:349.950000px;}
.y8f{bottom:361.290000px;}
.y2d{bottom:364.199250px;}
.y73{bottom:365.610000px;}
.y8e{bottom:376.590000px;}
.y2c{bottom:379.679250px;}
.y72{bottom:381.270000px;}
.y8d{bottom:392.655000px;}
.y2b{bottom:395.384250px;}
.y71{bottom:396.795000px;}
.y2a{bottom:410.684250px;}
.y70{bottom:412.455000px;}
.y8c{bottom:423.795000px;}
.y6f{bottom:428.115000px;}
.y8b{bottom:436.035000px;}
.y29{bottom:441.644250px;}
.y6e{bottom:443.595000px;}
.y6d{bottom:459.255000px;}
.ybf{bottom:459.435000px;}
.y28{bottom:459.824250px;}
.y27{bottom:472.604250px;}
.y6c{bottom:474.735000px;}
.ybe{bottom:474.915000px;}
.y26{bottom:488.804250px;}
.y6b{bottom:490.215000px;}
.ybd{bottom:490.395000px;}
.y6a{bottom:505.875000px;}
.y25{bottom:507.164250px;}
.y69{bottom:521.355000px;}
.ybc{bottom:521.535000px;}
.y24{bottom:522.644250px;}
.y68{bottom:536.835000px;}
.ybb{bottom:537.015000px;}
.y23{bottom:538.124250px;}
.y67{bottom:552.315000px;}
.yba{bottom:552.495000px;}
.y22{bottom:553.604250px;}
.y66{bottom:567.975000px;}
.y21{bottom:569.084250px;}
.y65{bottom:583.455000px;}
.yb9{bottom:583.635000px;}
.y20{bottom:584.744250px;}
.y64{bottom:598.935000px;}
.yb8{bottom:599.115000px;}
.y1f{bottom:600.224250px;}
.y63{bottom:614.235000px;}
.yb7{bottom:614.595000px;}
.y1e{bottom:615.704250px;}
.y62{bottom:629.895000px;}
.yb6{bottom:630.075000px;}
.y1d{bottom:631.364250px;}
.y61{bottom:645.765000px;}
.y1c{bottom:653.534250px;}
.yb5{bottom:661.245000px;}
.y60{bottom:661.425000px;}
.yb4{bottom:676.725000px;}
.y5f{bottom:676.905000px;}
.y1b{bottom:688.604250px;}
.yb3{bottom:692.205000px;}
.y5e{bottom:692.385000px;}
.y18{bottom:695.835000px;}
.yb2{bottom:707.865000px;}
.y5d{bottom:708.045000px;}
.y17{bottom:711.315000px;}
.yb1{bottom:723.345000px;}
.y5c{bottom:723.525000px;}
.y1a{bottom:731.010000px;}
.y8a{bottom:731.985000px;}
.yb0{bottom:738.825000px;}
.y5b{bottom:739.185000px;}
.y16{bottom:745.875000px;}
.yaf{bottom:754.305000px;}
.y5a{bottom:754.665000px;}
.y89{bottom:763.125000px;}
.y15{bottom:766.035000px;}
.y19{bottom:769.290000px;}
.yae{bottom:769.965000px;}
.y59{bottom:770.145000px;}
.y88{bottom:775.545000px;}
.yad{bottom:785.445000px;}
.y58{bottom:785.625000px;}
.y14{bottom:798.435000px;}
.y57{bottom:801.285000px;}
.y13{bottom:816.255000px;}
.yac{bottom:816.405000px;}
.y56{bottom:816.765000px;}
.yab{bottom:831.705000px;}
.y55{bottom:832.425000px;}
.y12{bottom:838.755000px;}
.y11{bottom:847.215000px;}
.y54{bottom:847.905000px;}
.y53{bottom:863.205000px;}
.y10{bottom:872.775000px;}
.yaa{bottom:878.685000px;}
.y52{bottom:878.865000px;}
.ya9{bottom:894.030000px;}
.y51{bottom:894.750000px;}
.yf{bottom:911.880000px;}
.ya8{bottom:925.530000px;}
.y50{bottom:926.070000px;}
.ya7{bottom:941.190000px;}
.y4f{bottom:941.550000px;}
.ye{bottom:955.080000px;}
.ya6{bottom:956.670000px;}
.y4e{bottom:957.030000px;}
.ya5{bottom:972.150000px;}
.y4d{bottom:972.510000px;}
.ya4{bottom:987.810000px;}
.y4c{bottom:988.170000px;}
.yd{bottom:997.380000px;}
.ya3{bottom:1003.290000px;}
.y4b{bottom:1003.650000px;}
.ya2{bottom:1018.770000px;}
.y4a{bottom:1019.130000px;}
.y9{bottom:1030.500000px;}
.ya1{bottom:1034.430000px;}
.y49{bottom:1034.610000px;}
.y87{bottom:1037.670000px;}
.yc{bottom:1039.320000px;}
.y86{bottom:1049.910000px;}
.y48{bottom:1050.090000px;}
.yb{bottom:1055.700000px;}
.y8{bottom:1058.760000px;}
.ya0{bottom:1065.210000px;}
.y47{bottom:1065.750000px;}
.ya{bottom:1071.360000px;}
.y46{bottom:1081.230000px;}
.y7{bottom:1086.660000px;}
.y45{bottom:1096.710000px;}
.y6{bottom:1105.740000px;}
.y44{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.y43{bottom:1127.850000px;}
.y4{bottom:1140.300000px;}
.y42{bottom:1143.330000px;}
.y3{bottom:1158.360000px;}
.y41{bottom:1158.840000px;}
.y85{bottom:1159.020000px;}
.y40{bottom:1175.220000px;}
.y3f{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h16{height:20.160000px;}
.h17{height:20.196000px;}
.h14{height:31.140000px;}
.hc{height:35.314453px;}
.h11{height:38.158594px;}
.h13{height:46.440000px;}
.h12{height:47.344922px;}
.h6{height:48.616875px;}
.he{height:52.971680px;}
.h10{height:52.998047px;}
.hd{height:53.314453px;}
.h15{height:53.332031px;}
.hf{height:54.421875px;}
.h18{height:55.503491px;}
.h8{height:55.796836px;}
.h7{height:57.324375px;}
.h9{height:58.621992px;}
.h3{height:60.226875px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:75.465000px;}
.ha{height:84.898125px;}
.h0{height:1263.000000px;}
.w3{width:116.676000px;}
.w6{width:122.076000px;}
.w5{width:164.370000px;}
.w4{width:164.550000px;}
.w2{width:169.050000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.xc{left:-277.986000px;}
.xd{left:-163.656000px;}
.xe{left:-50.181000px;}
.x0{left:0.000000px;}
.x23{left:8.100000px;}
.x16{left:15.660000px;}
.x1e{left:24.120000px;}
.x1c{left:25.560000px;}
.x19{left:28.440000px;}
.x2{left:29.940000px;}
.x15{left:36.945000px;}
.x1f{left:39.780000px;}
.x24{left:44.820000px;}
.x26{left:47.160000px;}
.x22{left:48.240000px;}
.x25{left:49.320000px;}
.x20{left:50.436000px;}
.x12{left:53.676000px;}
.x17{left:58.545000px;}
.x4{left:62.100000px;}
.x11{left:65.880000px;}
.x2c{left:74.339987px;}
.x21{left:78.870000px;}
.x1a{left:82.290000px;}
.x13{left:84.450000px;}
.xa{left:103.785000px;}
.x6{left:166.995000px;}
.x5{left:207.570000px;}
.xb{left:225.489000px;}
.x14{left:235.290000px;}
.x3{left:277.890000px;}
.x18{left:352.335000px;}
.x2b{left:393.014987px;}
.xf{left:394.252500px;}
.x2a{left:407.594987px;}
.x10{left:422.714987px;}
.x9{left:438.585000px;}
.x1{left:440.700000px;}
.x8{left:478.830000px;}
.x7{left:510.870000px;}
.x1b{left:517.245000px;}
.x29{left:630.869987px;}
.x28{left:634.289987px;}
.x27{left:671.369987px;}
.x1d{left:681.990000px;}
@media print{
.v8{vertical-align:-56.960000pt;}
.v7{vertical-align:-55.040000pt;}
.v6{vertical-align:-32.000000pt;}
.v5{vertical-align:-29.333333pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-4.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.196267pt;}
.ls14{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.024320pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.656000pt;}
.ls1e{letter-spacing:2.656000pt;}
.ls3{letter-spacing:5.280000pt;}
.ls2{letter-spacing:11.680000pt;}
.ls1c{letter-spacing:26.976000pt;}
.ls1b{letter-spacing:31.520000pt;}
.ls17{letter-spacing:170.528000pt;}
.ls16{letter-spacing:279.968000pt;}
.lse{letter-spacing:292.128000pt;}
.ls4{letter-spacing:380.709333pt;}
.lsd{letter-spacing:993.706667pt;}
.ls1a{letter-spacing:1056.426667pt;}
.ls5{letter-spacing:1136.480000pt;}
.ls19{letter-spacing:1163.306667pt;}
.ls18{letter-spacing:1179.306667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.817067pt;}
.ws2{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws1{word-spacing:-12.615680pt;}
.ws3{word-spacing:-12.443733pt;}
.ws11{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws8{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.360000pt;}
.ws9{word-spacing:-11.264000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.224000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._2{margin-left:-2.108160pt;}
._0{margin-left:-1.216000pt;}
._1{width:1.496320pt;}
._3{width:3.264000pt;}
._4{width:4.202667pt;}
._6{width:5.242667pt;}
._7{width:6.266667pt;}
._a{width:7.728000pt;}
._9{width:8.784000pt;}
._5{width:10.978347pt;}
._8{width:925.706667pt;}
._b{width:1028.661333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:66.560000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.560000pt;}
.y82{bottom:2.874667pt;}
.y7d{bottom:2.880000pt;}
.y7f{bottom:3.040000pt;}
.y78{bottom:16.320000pt;}
.y7c{bottom:16.800000pt;}
.y7a{bottom:30.080000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:68.320000pt;}
.y9f{bottom:86.080000pt;}
.y3e{bottom:88.986000pt;}
.y84{bottom:93.440000pt;}
.y9e{bottom:99.840000pt;}
.y3d{bottom:102.906000pt;}
.y83{bottom:112.160000pt;}
.y9d{bottom:113.760000pt;}
.y3c{bottom:116.666000pt;}
.y9c{bottom:127.232000pt;}
.y3b{bottom:130.452667pt;}
.y81{bottom:130.752000pt;}
.y3a{bottom:144.212667pt;}
.y80{bottom:149.306667pt;}
.y9b{bottom:155.386667pt;}
.y39{bottom:158.132667pt;}
.y7e{bottom:167.866667pt;}
.y9a{bottom:169.146667pt;}
.y38{bottom:171.892667pt;}
.y99{bottom:182.906667pt;}
.y37{bottom:185.652667pt;}
.y7b{bottom:196.186667pt;}
.y98{bottom:196.666667pt;}
.y36{bottom:199.412667pt;}
.y97{bottom:210.586667pt;}
.y35{bottom:213.332667pt;}
.y96{bottom:224.346667pt;}
.y77{bottom:224.506667pt;}
.y34{bottom:227.092667pt;}
.y95{bottom:238.106667pt;}
.y33{bottom:241.012667pt;}
.y94{bottom:251.866667pt;}
.y32{bottom:254.772667pt;}
.y93{bottom:265.786667pt;}
.y31{bottom:268.532667pt;}
.y92{bottom:279.546667pt;}
.y30{bottom:282.292667pt;}
.y76{bottom:283.386667pt;}
.y91{bottom:293.146667pt;}
.y2f{bottom:296.212667pt;}
.y75{bottom:297.306667pt;}
.y90{bottom:307.066667pt;}
.y2e{bottom:309.972667pt;}
.y74{bottom:311.066667pt;}
.y8f{bottom:321.146667pt;}
.y2d{bottom:323.732667pt;}
.y73{bottom:324.986667pt;}
.y8e{bottom:334.746667pt;}
.y2c{bottom:337.492667pt;}
.y72{bottom:338.906667pt;}
.y8d{bottom:349.026667pt;}
.y2b{bottom:351.452667pt;}
.y71{bottom:352.706667pt;}
.y2a{bottom:365.052667pt;}
.y70{bottom:366.626667pt;}
.y8c{bottom:376.706667pt;}
.y6f{bottom:380.546667pt;}
.y8b{bottom:387.586667pt;}
.y29{bottom:392.572667pt;}
.y6e{bottom:394.306667pt;}
.y6d{bottom:408.226667pt;}
.ybf{bottom:408.386667pt;}
.y28{bottom:408.732667pt;}
.y27{bottom:420.092667pt;}
.y6c{bottom:421.986667pt;}
.ybe{bottom:422.146667pt;}
.y26{bottom:434.492667pt;}
.y6b{bottom:435.746667pt;}
.ybd{bottom:435.906667pt;}
.y6a{bottom:449.666667pt;}
.y25{bottom:450.812667pt;}
.y69{bottom:463.426667pt;}
.ybc{bottom:463.586667pt;}
.y24{bottom:464.572667pt;}
.y68{bottom:477.186667pt;}
.ybb{bottom:477.346667pt;}
.y23{bottom:478.332667pt;}
.y67{bottom:490.946667pt;}
.yba{bottom:491.106667pt;}
.y22{bottom:492.092667pt;}
.y66{bottom:504.866667pt;}
.y21{bottom:505.852667pt;}
.y65{bottom:518.626667pt;}
.yb9{bottom:518.786667pt;}
.y20{bottom:519.772667pt;}
.y64{bottom:532.386667pt;}
.yb8{bottom:532.546667pt;}
.y1f{bottom:533.532667pt;}
.y63{bottom:545.986667pt;}
.yb7{bottom:546.306667pt;}
.y1e{bottom:547.292667pt;}
.y62{bottom:559.906667pt;}
.yb6{bottom:560.066667pt;}
.y1d{bottom:561.212667pt;}
.y61{bottom:574.013333pt;}
.y1c{bottom:580.919333pt;}
.yb5{bottom:587.773333pt;}
.y60{bottom:587.933333pt;}
.yb4{bottom:601.533333pt;}
.y5f{bottom:601.693333pt;}
.y1b{bottom:612.092667pt;}
.yb3{bottom:615.293333pt;}
.y5e{bottom:615.453333pt;}
.y18{bottom:618.520000pt;}
.yb2{bottom:629.213333pt;}
.y5d{bottom:629.373333pt;}
.y17{bottom:632.280000pt;}
.yb1{bottom:642.973333pt;}
.y5c{bottom:643.133333pt;}
.y1a{bottom:649.786667pt;}
.y8a{bottom:650.653333pt;}
.yb0{bottom:656.733333pt;}
.y5b{bottom:657.053333pt;}
.y16{bottom:663.000000pt;}
.yaf{bottom:670.493333pt;}
.y5a{bottom:670.813333pt;}
.y89{bottom:678.333333pt;}
.y15{bottom:680.920000pt;}
.y19{bottom:683.813333pt;}
.yae{bottom:684.413333pt;}
.y59{bottom:684.573333pt;}
.y88{bottom:689.373333pt;}
.yad{bottom:698.173333pt;}
.y58{bottom:698.333333pt;}
.y14{bottom:709.720000pt;}
.y57{bottom:712.253333pt;}
.y13{bottom:725.560000pt;}
.yac{bottom:725.693333pt;}
.y56{bottom:726.013333pt;}
.yab{bottom:739.293333pt;}
.y55{bottom:739.933333pt;}
.y12{bottom:745.560000pt;}
.y11{bottom:753.080000pt;}
.y54{bottom:753.693333pt;}
.y53{bottom:767.293333pt;}
.y10{bottom:775.800000pt;}
.yaa{bottom:781.053333pt;}
.y52{bottom:781.213333pt;}
.ya9{bottom:794.693333pt;}
.y51{bottom:795.333333pt;}
.yf{bottom:810.560000pt;}
.ya8{bottom:822.693333pt;}
.y50{bottom:823.173333pt;}
.ya7{bottom:836.613333pt;}
.y4f{bottom:836.933333pt;}
.ye{bottom:848.960000pt;}
.ya6{bottom:850.373333pt;}
.y4e{bottom:850.693333pt;}
.ya5{bottom:864.133333pt;}
.y4d{bottom:864.453333pt;}
.ya4{bottom:878.053333pt;}
.y4c{bottom:878.373333pt;}
.yd{bottom:886.560000pt;}
.ya3{bottom:891.813333pt;}
.y4b{bottom:892.133333pt;}
.ya2{bottom:905.573333pt;}
.y4a{bottom:905.893333pt;}
.y9{bottom:916.000000pt;}
.ya1{bottom:919.493333pt;}
.y49{bottom:919.653333pt;}
.y87{bottom:922.373333pt;}
.yc{bottom:923.840000pt;}
.y86{bottom:933.253333pt;}
.y48{bottom:933.413333pt;}
.yb{bottom:938.400000pt;}
.y8{bottom:941.120000pt;}
.ya0{bottom:946.853333pt;}
.y47{bottom:947.333333pt;}
.ya{bottom:952.320000pt;}
.y46{bottom:961.093333pt;}
.y7{bottom:965.920000pt;}
.y45{bottom:974.853333pt;}
.y6{bottom:982.880000pt;}
.y44{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.y43{bottom:1002.533333pt;}
.y4{bottom:1013.600000pt;}
.y42{bottom:1016.293333pt;}
.y3{bottom:1029.653333pt;}
.y41{bottom:1030.080000pt;}
.y85{bottom:1030.240000pt;}
.y40{bottom:1044.640000pt;}
.y3f{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h16{height:17.920000pt;}
.h17{height:17.952000pt;}
.h14{height:27.680000pt;}
.hc{height:31.390625pt;}
.h11{height:33.918750pt;}
.h13{height:41.280000pt;}
.h12{height:42.084375pt;}
.h6{height:43.215000pt;}
.he{height:47.085938pt;}
.h10{height:47.109375pt;}
.hd{height:47.390625pt;}
.h15{height:47.406250pt;}
.hf{height:48.375000pt;}
.h18{height:49.336436pt;}
.h8{height:49.597187pt;}
.h7{height:50.955000pt;}
.h9{height:52.108438pt;}
.h3{height:53.535000pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:67.080000pt;}
.ha{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w3{width:103.712000pt;}
.w6{width:108.512000pt;}
.w5{width:146.106667pt;}
.w4{width:146.266667pt;}
.w2{width:150.266667pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.xc{left:-247.098667pt;}
.xd{left:-145.472000pt;}
.xe{left:-44.605333pt;}
.x0{left:0.000000pt;}
.x23{left:7.200000pt;}
.x16{left:13.920000pt;}
.x1e{left:21.440000pt;}
.x1c{left:22.720000pt;}
.x19{left:25.280000pt;}
.x2{left:26.613333pt;}
.x15{left:32.840000pt;}
.x1f{left:35.360000pt;}
.x24{left:39.840000pt;}
.x26{left:41.920000pt;}
.x22{left:42.880000pt;}
.x25{left:43.840000pt;}
.x20{left:44.832000pt;}
.x12{left:47.712000pt;}
.x17{left:52.040000pt;}
.x4{left:55.200000pt;}
.x11{left:58.560000pt;}
.x2c{left:66.079988pt;}
.x21{left:70.106667pt;}
.x1a{left:73.146667pt;}
.x13{left:75.066667pt;}
.xa{left:92.253333pt;}
.x6{left:148.440000pt;}
.x5{left:184.506667pt;}
.xb{left:200.434667pt;}
.x14{left:209.146667pt;}
.x3{left:247.013333pt;}
.x18{left:313.186667pt;}
.x2b{left:349.346655pt;}
.xf{left:350.446667pt;}
.x2a{left:362.306655pt;}
.x10{left:375.746655pt;}
.x9{left:389.853333pt;}
.x1{left:391.733333pt;}
.x8{left:425.626667pt;}
.x7{left:454.106667pt;}
.x1b{left:459.773333pt;}
.x29{left:560.773321pt;}
.x28{left:563.813321pt;}
.x27{left:596.773321pt;}
.x1d{left:606.213333pt;}
}




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