
    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_06ef51cbd4c007b43cb90f8a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_40507df4798c52f0ea404843.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4aa176118d18ca1a22a702ff.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d2490d1f0c044ba907c641a7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dc2cb9ec554f2d9bd9973023.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a27bc88f6e6b71cb97a25097.woff')format("woff");}.ff6{font-family:ff6;line-height:0.968262;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_4bd5228e5c4c954c17097e20.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_5db263613a62cf334198f094.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f4ee658d653cc4aabb8ce5bb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_69c4966de41a2a3a10ff205a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-97.200000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.lsc{letter-spacing:-2.448000px;}
.ls12{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.037440px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.lse{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.656000px;}
.ls7{letter-spacing:1.944000px;}
.ls4{letter-spacing:64.170720px;}
.lsb{letter-spacing:190.800000px;}
.ls13{letter-spacing:389.640000px;}
.ls0{letter-spacing:1039.457280px;}
.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:-59.760000px;}
.ws0{word-spacing:-23.381280px;}
.ws5{word-spacing:-19.656000px;}
.ws9{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-5.886000px;}
._d{margin-left:-4.212000px;}
._2{margin-left:-3.132000px;}
._9{margin-left:-2.131680px;}
._0{margin-left:-1.072320px;}
._1{width:1.512000px;}
._4{width:2.584320px;}
._15{width:3.744000px;}
._5{width:5.017680px;}
._1f{width:6.034320px;}
._19{width:7.078320px;}
._21{width:8.185680px;}
._a{width:9.360000px;}
._b{width:10.812000px;}
._e{width:12.276000px;}
._6{width:13.536000px;}
._8{width:15.048000px;}
._c{width:16.128000px;}
._7{width:19.728000px;}
._16{width:20.808000px;}
._f{width:22.176000px;}
._10{width:23.268000px;}
._1e{width:24.403680px;}
._18{width:25.404000px;}
._17{width:27.000000px;}
._1c{width:33.672000px;}
._1d{width:34.740000px;}
._22{width:35.800320px;}
._13{width:37.560000px;}
._14{width:38.616000px;}
._11{width:43.608000px;}
._12{width:45.120000px;}
._1a{width:57.744000px;}
._1b{width:58.824000px;}
._24{width:61.615680px;}
._25{width:66.964320px;}
._26{width:139.228320px;}
._20{width:176.400000px;}
._23{width:191.520000px;}
._27{width:386.371680px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,128,128);}
.fc2{color:rgb(50,62,79);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y7{bottom:18.000000px;}
.y5{bottom:22.500000px;}
.y8{bottom:22.680000px;}
.y4{bottom:41.400000px;}
.ya3{bottom:91.980000px;}
.y7e{bottom:93.420000px;}
.y5f{bottom:97.560000px;}
.y9e{bottom:108.720000px;}
.ya2{bottom:115.740000px;}
.y7d{bottom:117.180000px;}
.y5e{bottom:121.320000px;}
.y34{bottom:127.980000px;}
.y9d{bottom:132.480000px;}
.ya1{bottom:139.500000px;}
.y33{bottom:151.920000px;}
.y9c{bottom:156.420000px;}
.y7c{bottom:161.820000px;}
.ya0{bottom:163.260000px;}
.y5d{bottom:166.140000px;}
.y32{bottom:175.680000px;}
.y9b{bottom:180.180000px;}
.y9f{bottom:187.200000px;}
.y31{bottom:199.470000px;}
.y9a{bottom:203.970000px;}
.y7b{bottom:206.850000px;}
.y5c{bottom:210.990000px;}
.y30{bottom:223.230000px;}
.y99{bottom:227.730000px;}
.y7a{bottom:230.610000px;}
.y5b{bottom:234.750000px;}
.y2f{bottom:247.170000px;}
.y98{bottom:251.670000px;}
.y79{bottom:254.370000px;}
.y5a{bottom:258.510000px;}
.y2e{bottom:270.930000px;}
.y97{bottom:275.430000px;}
.y78{bottom:278.130000px;}
.y59{bottom:282.450000px;}
.y2d{bottom:294.690000px;}
.y96{bottom:299.190000px;}
.y58{bottom:306.210000px;}
.y2c{bottom:318.450000px;}
.y77{bottom:322.950000px;}
.y57{bottom:329.970000px;}
.y2b{bottom:342.390000px;}
.y76{bottom:346.890000px;}
.ya4{bottom:352.290000px;}
.y56{bottom:353.730000px;}
.y2a{bottom:366.150000px;}
.y95{bottom:367.770000px;}
.y75{bottom:370.650000px;}
.y55{bottom:377.670000px;}
.y29{bottom:389.910000px;}
.y94{bottom:391.530000px;}
.y74{bottom:394.410000px;}
.y54{bottom:401.430000px;}
.y28{bottom:413.670000px;}
.y93{bottom:415.290000px;}
.y53{bottom:425.190000px;}
.y27{bottom:437.655000px;}
.y73{bottom:439.275000px;}
.y52{bottom:448.995000px;}
.y92{bottom:460.335000px;}
.y26{bottom:461.415000px;}
.y51{bottom:472.935000px;}
.y72{bottom:484.095000px;}
.y25{bottom:485.175000px;}
.y50{bottom:496.695000px;}
.y71{bottom:507.855000px;}
.y24{bottom:508.935000px;}
.y4f{bottom:520.455000px;}
.y70{bottom:531.615000px;}
.y23{bottom:532.875000px;}
.y4e{bottom:544.215000px;}
.y6f{bottom:555.555000px;}
.y22{bottom:556.635000px;}
.y4d{bottom:567.975000px;}
.y6e{bottom:579.135000px;}
.y91{bottom:579.315000px;}
.y21{bottom:580.395000px;}
.y4c{bottom:591.915000px;}
.y90{bottom:603.075000px;}
.y20{bottom:604.155000px;}
.y4b{bottom:615.675000px;}
.y6d{bottom:624.135000px;}
.y8f{bottom:626.835000px;}
.y1f{bottom:627.915000px;}
.y4a{bottom:639.435000px;}
.y6c{bottom:647.895000px;}
.y8e{bottom:650.595000px;}
.y1e{bottom:651.855000px;}
.y49{bottom:663.195000px;}
.y6b{bottom:671.685000px;}
.y8d{bottom:674.565000px;}
.y1d{bottom:675.645000px;}
.y48{bottom:687.165000px;}
.y6a{bottom:695.445000px;}
.y8c{bottom:696.885000px;}
.y1c{bottom:699.405000px;}
.y47{bottom:710.925000px;}
.y8b{bottom:722.085000px;}
.y1b{bottom:723.165000px;}
.y46{bottom:734.685000px;}
.y69{bottom:740.265000px;}
.y8a{bottom:745.845000px;}
.y1a{bottom:747.105000px;}
.y45{bottom:758.445000px;}
.y68{bottom:764.205000px;}
.y89{bottom:769.605000px;}
.y19{bottom:770.865000px;}
.y44{bottom:782.385000px;}
.y67{bottom:787.785000px;}
.y18{bottom:794.625000px;}
.y43{bottom:806.145000px;}
.y88{bottom:814.605000px;}
.y17{bottom:818.385000px;}
.y42{bottom:829.905000px;}
.y66{bottom:832.785000px;}
.y87{bottom:838.185000px;}
.y16{bottom:842.325000px;}
.y41{bottom:853.665000px;}
.y65{bottom:856.545000px;}
.y15{bottom:866.085000px;}
.y40{bottom:877.605000px;}
.y64{bottom:880.305000px;}
.y86{bottom:883.185000px;}
.y14{bottom:888.405000px;}
.y3f{bottom:901.365000px;}
.y63{bottom:904.065000px;}
.y85{bottom:906.945000px;}
.y13{bottom:912.210000px;}
.y3e{bottom:925.170000px;}
.y62{bottom:928.050000px;}
.y84{bottom:930.750000px;}
.y12{bottom:937.590000px;}
.y3d{bottom:948.930000px;}
.y61{bottom:951.810000px;}
.y83{bottom:954.510000px;}
.y11{bottom:961.350000px;}
.y3c{bottom:972.870000px;}
.y60{bottom:975.570000px;}
.y82{bottom:978.270000px;}
.y10{bottom:985.110000px;}
.y3b{bottom:996.630000px;}
.yf{bottom:1008.870000px;}
.y3a{bottom:1020.390000px;}
.y81{bottom:1023.270000px;}
.ye{bottom:1032.810000px;}
.y39{bottom:1044.150000px;}
.y80{bottom:1047.030000px;}
.yd{bottom:1056.570000px;}
.y38{bottom:1067.910000px;}
.y7f{bottom:1070.790000px;}
.yc{bottom:1080.330000px;}
.y37{bottom:1091.850000px;}
.yb{bottom:1104.090000px;}
.y36{bottom:1115.610000px;}
.ya{bottom:1135.050000px;}
.y35{bottom:1139.370000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1209.060000px;}
.y1{bottom:1233.180000px;}
.h4{height:37.980000px;}
.h7{height:47.344922px;}
.h9{height:50.273438px;}
.h5{height:54.421875px;}
.hb{height:61.423863px;}
.h3{height:65.010937px;}
.h6{height:70.628906px;}
.ha{height:70.664062px;}
.h8{height:72.562500px;}
.hc{height:76.424062px;}
.h2{height:87.859687px;}
.h0{height:1263.420000px;}
.h1{height:1263.750000px;}
.w3{width:23.760000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:3.600000px;}
.x17{left:57.959987px;}
.x1{left:84.995987px;}
.xf{left:138.095987px;}
.x5{left:145.115987px;}
.x13{left:148.895987px;}
.xb{left:162.209987px;}
.x8{left:232.049987px;}
.xa{left:281.414987px;}
.x18{left:296.174987px;}
.x7{left:302.474987px;}
.x6{left:303.914987px;}
.x16{left:306.254987px;}
.x15{left:307.694987px;}
.xc{left:310.034987px;}
.x14{left:322.814987px;}
.x9{left:336.134987px;}
.x1d{left:338.474987px;}
.x1b{left:347.654987px;}
.x1a{left:360.254987px;}
.x12{left:364.034987px;}
.x19{left:375.734987px;}
.x10{left:382.034987px;}
.xe{left:383.294987px;}
.x11{left:400.214987px;}
.x1c{left:406.154987px;}
.xd{left:432.824987px;}
.x3{left:442.365000px;}
.x2{left:457.664987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.lsc{letter-spacing:-2.176000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.472000pt;}
.ls7{letter-spacing:1.728000pt;}
.ls4{letter-spacing:57.040640pt;}
.lsb{letter-spacing:169.600000pt;}
.ls13{letter-spacing:346.346667pt;}
.ls0{letter-spacing:923.962027pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-20.783360pt;}
.ws5{word-spacing:-17.472000pt;}
.ws9{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-5.232000pt;}
._d{margin-left:-3.744000pt;}
._2{margin-left:-2.784000pt;}
._9{margin-left:-1.894827pt;}
._0{margin-left:-0.953173pt;}
._1{width:1.344000pt;}
._4{width:2.297173pt;}
._15{width:3.328000pt;}
._5{width:4.460160pt;}
._1f{width:5.363840pt;}
._19{width:6.291840pt;}
._21{width:7.276160pt;}
._a{width:8.320000pt;}
._b{width:9.610667pt;}
._e{width:10.912000pt;}
._6{width:12.032000pt;}
._8{width:13.376000pt;}
._c{width:14.336000pt;}
._7{width:17.536000pt;}
._16{width:18.496000pt;}
._f{width:19.712000pt;}
._10{width:20.682667pt;}
._1e{width:21.692160pt;}
._18{width:22.581333pt;}
._17{width:24.000000pt;}
._1c{width:29.930667pt;}
._1d{width:30.880000pt;}
._22{width:31.822507pt;}
._13{width:33.386667pt;}
._14{width:34.325333pt;}
._11{width:38.762667pt;}
._12{width:40.106667pt;}
._1a{width:51.328000pt;}
._1b{width:52.288000pt;}
._24{width:54.769493pt;}
._25{width:59.523840pt;}
._26{width:123.758507pt;}
._20{width:156.800000pt;}
._23{width:170.240000pt;}
._27{width:343.441493pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y7{bottom:16.000000pt;}
.y5{bottom:20.000000pt;}
.y8{bottom:20.160000pt;}
.y4{bottom:36.800000pt;}
.ya3{bottom:81.760000pt;}
.y7e{bottom:83.040000pt;}
.y5f{bottom:86.720000pt;}
.y9e{bottom:96.640000pt;}
.ya2{bottom:102.880000pt;}
.y7d{bottom:104.160000pt;}
.y5e{bottom:107.840000pt;}
.y34{bottom:113.760000pt;}
.y9d{bottom:117.760000pt;}
.ya1{bottom:124.000000pt;}
.y33{bottom:135.040000pt;}
.y9c{bottom:139.040000pt;}
.y7c{bottom:143.840000pt;}
.ya0{bottom:145.120000pt;}
.y5d{bottom:147.680000pt;}
.y32{bottom:156.160000pt;}
.y9b{bottom:160.160000pt;}
.y9f{bottom:166.400000pt;}
.y31{bottom:177.306667pt;}
.y9a{bottom:181.306667pt;}
.y7b{bottom:183.866667pt;}
.y5c{bottom:187.546667pt;}
.y30{bottom:198.426667pt;}
.y99{bottom:202.426667pt;}
.y7a{bottom:204.986667pt;}
.y5b{bottom:208.666667pt;}
.y2f{bottom:219.706667pt;}
.y98{bottom:223.706667pt;}
.y79{bottom:226.106667pt;}
.y5a{bottom:229.786667pt;}
.y2e{bottom:240.826667pt;}
.y97{bottom:244.826667pt;}
.y78{bottom:247.226667pt;}
.y59{bottom:251.066667pt;}
.y2d{bottom:261.946667pt;}
.y96{bottom:265.946667pt;}
.y58{bottom:272.186667pt;}
.y2c{bottom:283.066667pt;}
.y77{bottom:287.066667pt;}
.y57{bottom:293.306667pt;}
.y2b{bottom:304.346667pt;}
.y76{bottom:308.346667pt;}
.ya4{bottom:313.146667pt;}
.y56{bottom:314.426667pt;}
.y2a{bottom:325.466667pt;}
.y95{bottom:326.906667pt;}
.y75{bottom:329.466667pt;}
.y55{bottom:335.706667pt;}
.y29{bottom:346.586667pt;}
.y94{bottom:348.026667pt;}
.y74{bottom:350.586667pt;}
.y54{bottom:356.826667pt;}
.y28{bottom:367.706667pt;}
.y93{bottom:369.146667pt;}
.y53{bottom:377.946667pt;}
.y27{bottom:389.026667pt;}
.y73{bottom:390.466667pt;}
.y52{bottom:399.106667pt;}
.y92{bottom:409.186667pt;}
.y26{bottom:410.146667pt;}
.y51{bottom:420.386667pt;}
.y72{bottom:430.306667pt;}
.y25{bottom:431.266667pt;}
.y50{bottom:441.506667pt;}
.y71{bottom:451.426667pt;}
.y24{bottom:452.386667pt;}
.y4f{bottom:462.626667pt;}
.y70{bottom:472.546667pt;}
.y23{bottom:473.666667pt;}
.y4e{bottom:483.746667pt;}
.y6f{bottom:493.826667pt;}
.y22{bottom:494.786667pt;}
.y4d{bottom:504.866667pt;}
.y6e{bottom:514.786667pt;}
.y91{bottom:514.946667pt;}
.y21{bottom:515.906667pt;}
.y4c{bottom:526.146667pt;}
.y90{bottom:536.066667pt;}
.y20{bottom:537.026667pt;}
.y4b{bottom:547.266667pt;}
.y6d{bottom:554.786667pt;}
.y8f{bottom:557.186667pt;}
.y1f{bottom:558.146667pt;}
.y4a{bottom:568.386667pt;}
.y6c{bottom:575.906667pt;}
.y8e{bottom:578.306667pt;}
.y1e{bottom:579.426667pt;}
.y49{bottom:589.506667pt;}
.y6b{bottom:597.053333pt;}
.y8d{bottom:599.613333pt;}
.y1d{bottom:600.573333pt;}
.y48{bottom:610.813333pt;}
.y6a{bottom:618.173333pt;}
.y8c{bottom:619.453333pt;}
.y1c{bottom:621.693333pt;}
.y47{bottom:631.933333pt;}
.y8b{bottom:641.853333pt;}
.y1b{bottom:642.813333pt;}
.y46{bottom:653.053333pt;}
.y69{bottom:658.013333pt;}
.y8a{bottom:662.973333pt;}
.y1a{bottom:664.093333pt;}
.y45{bottom:674.173333pt;}
.y68{bottom:679.293333pt;}
.y89{bottom:684.093333pt;}
.y19{bottom:685.213333pt;}
.y44{bottom:695.453333pt;}
.y67{bottom:700.253333pt;}
.y18{bottom:706.333333pt;}
.y43{bottom:716.573333pt;}
.y88{bottom:724.093333pt;}
.y17{bottom:727.453333pt;}
.y42{bottom:737.693333pt;}
.y66{bottom:740.253333pt;}
.y87{bottom:745.053333pt;}
.y16{bottom:748.733333pt;}
.y41{bottom:758.813333pt;}
.y65{bottom:761.373333pt;}
.y15{bottom:769.853333pt;}
.y40{bottom:780.093333pt;}
.y64{bottom:782.493333pt;}
.y86{bottom:785.053333pt;}
.y14{bottom:789.693333pt;}
.y3f{bottom:801.213333pt;}
.y63{bottom:803.613333pt;}
.y85{bottom:806.173333pt;}
.y13{bottom:810.853333pt;}
.y3e{bottom:822.373333pt;}
.y62{bottom:824.933333pt;}
.y84{bottom:827.333333pt;}
.y12{bottom:833.413333pt;}
.y3d{bottom:843.493333pt;}
.y61{bottom:846.053333pt;}
.y83{bottom:848.453333pt;}
.y11{bottom:854.533333pt;}
.y3c{bottom:864.773333pt;}
.y60{bottom:867.173333pt;}
.y82{bottom:869.573333pt;}
.y10{bottom:875.653333pt;}
.y3b{bottom:885.893333pt;}
.yf{bottom:896.773333pt;}
.y3a{bottom:907.013333pt;}
.y81{bottom:909.573333pt;}
.ye{bottom:918.053333pt;}
.y39{bottom:928.133333pt;}
.y80{bottom:930.693333pt;}
.yd{bottom:939.173333pt;}
.y38{bottom:949.253333pt;}
.y7f{bottom:951.813333pt;}
.yc{bottom:960.293333pt;}
.y37{bottom:970.533333pt;}
.yb{bottom:981.413333pt;}
.y36{bottom:991.653333pt;}
.ya{bottom:1008.933333pt;}
.y35{bottom:1012.773333pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1074.720000pt;}
.y1{bottom:1096.160000pt;}
.h4{height:33.760000pt;}
.h7{height:42.084375pt;}
.h9{height:44.687500pt;}
.h5{height:48.375000pt;}
.hb{height:54.598989pt;}
.h3{height:57.787500pt;}
.h6{height:62.781250pt;}
.ha{height:62.812500pt;}
.h8{height:64.500000pt;}
.hc{height:67.932500pt;}
.h2{height:78.097500pt;}
.h0{height:1123.040000pt;}
.h1{height:1123.333333pt;}
.w3{width:21.120000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:3.200000pt;}
.x17{left:51.519988pt;}
.x1{left:75.551988pt;}
.xf{left:122.751988pt;}
.x5{left:128.991988pt;}
.x13{left:132.351988pt;}
.xb{left:144.186655pt;}
.x8{left:206.266655pt;}
.xa{left:250.146655pt;}
.x18{left:263.266655pt;}
.x7{left:268.866655pt;}
.x6{left:270.146655pt;}
.x16{left:272.226655pt;}
.x15{left:273.506655pt;}
.xc{left:275.586655pt;}
.x14{left:286.946655pt;}
.x9{left:298.786655pt;}
.x1d{left:300.866655pt;}
.x1b{left:309.026655pt;}
.x1a{left:320.226655pt;}
.x12{left:323.586655pt;}
.x19{left:333.986655pt;}
.x10{left:339.586655pt;}
.xe{left:340.706655pt;}
.x11{left:355.746655pt;}
.x1c{left:361.026655pt;}
.xd{left:384.733321pt;}
.x3{left:393.213333pt;}
.x2{left:406.813321pt;}
}




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