
    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_4a0288dd9b403781d69d5345.woff')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_5908d1debbb112868b2e537b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cbbf0665257130f6a6d7293b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_503acd551042fa5fc7777c8e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1f5cc8cc19925688a704b922.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_afc4df61ee23b409760b2b7e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:-77.760000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.506720px;}
.ls7{letter-spacing:46.002720px;}
.ls6{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.002720px;}
.ls3{letter-spacing:201.060000px;}
.ls2{letter-spacing:714.600000px;}
.ls5{letter-spacing:1138.656000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.833200px;}
.ws1{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._c{margin-left:-6.593280px;}
._a{margin-left:-5.434560px;}
._b{margin-left:-4.173840px;}
._7{margin-left:-2.629440px;}
._2{margin-left:-1.040640px;}
._1{width:1.185840px;}
._3{width:2.826720px;}
._9{width:4.500000px;}
._8{width:112.362000px;}
._4{width:372.365760px;}
._6{width:643.289760px;}
._5{width:1239.569760px;}
.fc4{color:transparent;}
.fc3{color:rgb(55,65,81);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.240000px;}
.yd8{bottom:20.340000px;}
.ydb{bottom:20.520000px;}
.ydd{bottom:20.550000px;}
.yc{bottom:36.720000px;}
.yd7{bottom:37.620000px;}
.ye0{bottom:37.800000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.ya5{bottom:115.236000px;}
.y3c{bottom:118.836000px;}
.y77{bottom:124.956000px;}
.yd0{bottom:128.016000px;}
.y6a{bottom:129.276000px;}
.yba{bottom:131.436000px;}
.ya4{bottom:132.516000px;}
.y3b{bottom:136.476000px;}
.y76{bottom:142.236000px;}
.ycf{bottom:145.296000px;}
.y69{bottom:146.376000px;}
.yb9{bottom:148.716000px;}
.ya3{bottom:149.796000px;}
.yd5{bottom:152.130000px;}
.y3a{bottom:154.110000px;}
.y75{bottom:159.330000px;}
.yce{bottom:162.570000px;}
.y68{bottom:163.650000px;}
.yb8{bottom:165.810000px;}
.ya2{bottom:167.970000px;}
.y39{bottom:171.210000px;}
.y74{bottom:176.610000px;}
.ycd{bottom:179.850000px;}
.y67{bottom:180.930000px;}
.yb7{bottom:184.170000px;}
.ya1{bottom:185.250000px;}
.y38{bottom:188.490000px;}
.y73{bottom:194.970000px;}
.ycc{bottom:196.950000px;}
.y66{bottom:198.210000px;}
.ye6{bottom:198.390000px;}
.yb6{bottom:201.450000px;}
.ya0{bottom:202.530000px;}
.y37{bottom:205.770000px;}
.y72{bottom:212.250000px;}
.ycb{bottom:215.310000px;}
.y65{bottom:215.490000px;}
.yb5{bottom:218.730000px;}
.y9f{bottom:220.890000px;}
.y36{bottom:223.050000px;}
.y71{bottom:229.530000px;}
.yca{bottom:232.590000px;}
.y64{bottom:232.770000px;}
.yb4{bottom:237.090000px;}
.y9e{bottom:238.170000px;}
.y35{bottom:240.330000px;}
.y70{bottom:247.710000px;}
.y63{bottom:249.870000px;}
.yb3{bottom:254.190000px;}
.ye5{bottom:254.550000px;}
.y9d{bottom:255.270000px;}
.y34{bottom:257.430000px;}
.y6f{bottom:264.990000px;}
.y62{bottom:267.150000px;}
.yb2{bottom:271.470000px;}
.y9c{bottom:272.550000px;}
.y33{bottom:274.710000px;}
.y6e{bottom:282.270000px;}
.y61{bottom:284.430000px;}
.yc9{bottom:285.510000px;}
.y9b{bottom:289.830000px;}
.y32{bottom:291.990000px;}
.ye4{bottom:293.610000px;}
.y6d{bottom:300.630000px;}
.y60{bottom:301.710000px;}
.yc8{bottom:302.610000px;}
.yb1{bottom:307.110000px;}
.y9a{bottom:308.190000px;}
.y31{bottom:309.270000px;}
.y6c{bottom:317.955000px;}
.y5f{bottom:319.035000px;}
.yc7{bottom:319.935000px;}
.yb0{bottom:324.435000px;}
.y99{bottom:325.515000px;}
.y30{bottom:326.595000px;}
.ye3{bottom:332.535000px;}
.y6b{bottom:335.235000px;}
.y5e{bottom:336.315000px;}
.yc6{bottom:337.215000px;}
.y98{bottom:342.795000px;}
.y2f{bottom:343.875000px;}
.y5d{bottom:353.415000px;}
.yc5{bottom:354.495000px;}
.y97{bottom:359.895000px;}
.y2e{bottom:360.975000px;}
.y5c{bottom:370.695000px;}
.ye2{bottom:371.595000px;}
.yc4{bottom:372.855000px;}
.yaf{bottom:377.175000px;}
.y2d{bottom:378.255000px;}
.y5b{bottom:387.975000px;}
.yc3{bottom:390.135000px;}
.y2c{bottom:395.535000px;}
.y5a{bottom:405.255000px;}
.yc2{bottom:407.235000px;}
.ye1{bottom:410.655000px;}
.y2b{bottom:412.815000px;}
.y59{bottom:422.535000px;}
.yc1{bottom:424.515000px;}
.y2a{bottom:430.095000px;}
.y96{bottom:431.175000px;}
.y58{bottom:439.635000px;}
.yc0{bottom:441.795000px;}
.y29{bottom:447.375000px;}
.y95{bottom:448.275000px;}
.y57{bottom:456.915000px;}
.ybf{bottom:459.075000px;}
.y28{bottom:464.475000px;}
.y94{bottom:465.555000px;}
.ydf{bottom:466.815000px;}
.y56{bottom:474.195000px;}
.ybe{bottom:476.355000px;}
.y27{bottom:481.755000px;}
.y93{bottom:482.835000px;}
.ybd{bottom:490.395000px;}
.y55{bottom:491.475000px;}
.y26{bottom:499.035000px;}
.yae{bottom:500.115000px;}
.y92{bottom:501.195000px;}
.y54{bottom:508.755000px;}
.y25{bottom:516.315000px;}
.y91{bottom:518.475000px;}
.yde{bottom:523.155000px;}
.y53{bottom:526.035000px;}
.y24{bottom:533.595000px;}
.y90{bottom:535.755000px;}
.y52{bottom:543.135000px;}
.y23{bottom:550.875000px;}
.y8f{bottom:552.855000px;}
.y51{bottom:560.415000px;}
.ydc{bottom:562.035000px;}
.y22{bottom:567.975000px;}
.yad{bottom:570.165000px;}
.y8e{bottom:571.245000px;}
.y50{bottom:577.725000px;}
.yac{bottom:587.445000px;}
.y8d{bottom:588.525000px;}
.y4f{bottom:595.005000px;}
.yda{bottom:601.125000px;}
.y21{bottom:604.725000px;}
.y8c{bottom:605.805000px;}
.yd4{bottom:606.885000px;}
.y4e{bottom:612.285000px;}
.y20{bottom:622.005000px;}
.y8b{bottom:623.085000px;}
.yd3{bottom:624.165000px;}
.y4d{bottom:629.565000px;}
.y1f{bottom:639.285000px;}
.yd6{bottom:640.185000px;}
.y8a{bottom:640.365000px;}
.yd2{bottom:641.265000px;}
.y4c{bottom:646.665000px;}
.y1e{bottom:656.565000px;}
.y89{bottom:657.465000px;}
.yab{bottom:658.545000px;}
.y4b{bottom:663.945000px;}
.y1d{bottom:673.845000px;}
.y88{bottom:674.745000px;}
.yaa{bottom:675.825000px;}
.y4a{bottom:681.225000px;}
.y1c{bottom:691.125000px;}
.y87{bottom:693.105000px;}
.y49{bottom:698.505000px;}
.y1b{bottom:708.225000px;}
.y86{bottom:710.385000px;}
.ya9{bottom:711.465000px;}
.y48{bottom:715.785000px;}
.y1a{bottom:725.505000px;}
.y85{bottom:727.665000px;}
.ya8{bottom:728.745000px;}
.y47{bottom:733.065000px;}
.y19{bottom:742.785000px;}
.y84{bottom:745.845000px;}
.y46{bottom:750.165000px;}
.y18{bottom:760.065000px;}
.y83{bottom:763.125000px;}
.yd1{bottom:764.205000px;}
.y45{bottom:767.445000px;}
.y17{bottom:777.345000px;}
.y82{bottom:780.405000px;}
.ya7{bottom:781.485000px;}
.y44{bottom:784.725000px;}
.y16{bottom:794.625000px;}
.y81{bottom:798.765000px;}
.y43{bottom:802.005000px;}
.y15{bottom:811.725000px;}
.y80{bottom:816.045000px;}
.y42{bottom:819.330000px;}
.y14{bottom:829.050000px;}
.y7f{bottom:833.370000px;}
.ya6{bottom:834.450000px;}
.y41{bottom:836.430000px;}
.y13{bottom:846.330000px;}
.ybc{bottom:850.470000px;}
.y7e{bottom:851.550000px;}
.y40{bottom:853.710000px;}
.y12{bottom:866.130000px;}
.y7d{bottom:868.830000px;}
.y3f{bottom:870.990000px;}
.y11{bottom:885.210000px;}
.y7c{bottom:886.110000px;}
.y3e{bottom:888.270000px;}
.ybb{bottom:903.390000px;}
.y10{bottom:904.290000px;}
.y7b{bottom:904.470000px;}
.y3d{bottom:905.550000px;}
.y7a{bottom:921.750000px;}
.yf{bottom:922.830000px;}
.y79{bottom:938.850000px;}
.ye{bottom:939.930000px;}
.y78{bottom:956.130000px;}
.yd{bottom:957.210000px;}
.y9{bottom:975.750000px;}
.y8{bottom:994.650000px;}
.y7{bottom:1011.930000px;}
.y6{bottom:1029.930000px;}
.y5{bottom:1046.670000px;}
.y4{bottom:1088.640000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.he{height:34.380000px;}
.h10{height:34.416000px;}
.hc{height:34.560000px;}
.hd{height:34.596000px;}
.hb{height:41.726953px;}
.ha{height:51.660000px;}
.hf{height:51.840000px;}
.h6{height:52.998047px;}
.h1{height:58.651172px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h2{height:65.010937px;}
.h3{height:65.884219px;}
.h7{height:66.757500px;}
.h4{height:72.562500px;}
.h0{height:1188.000000px;}
.w2{width:27.180000px;}
.w3{width:668.085000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:1.080000px;}
.x1{left:108.035986px;}
.xf{left:110.376000px;}
.xa{left:135.035986px;}
.x11{left:139.896000px;}
.x6{left:145.475986px;}
.xb{left:162.029986px;}
.x3{left:170.849986px;}
.x9{left:310.574986px;}
.xd{left:324.074986px;}
.x5{left:381.134986px;}
.x8{left:406.874986px;}
.x4{left:414.254986px;}
.x7{left:420.194986px;}
.x2{left:459.074986px;}
.xe{left:643.784986px;}
.xc{left:810.149986px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.672640pt;}
.ls7{letter-spacing:40.891307pt;}
.ls6{letter-spacing:40.912640pt;}
.lsa{letter-spacing:56.891307pt;}
.ls3{letter-spacing:178.720000pt;}
.ls2{letter-spacing:635.200000pt;}
.ls5{letter-spacing:1012.138667pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.185067pt;}
.ws1{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._c{margin-left:-5.860693pt;}
._a{margin-left:-4.830720pt;}
._b{margin-left:-3.710080pt;}
._7{margin-left:-2.337280pt;}
._2{margin-left:-0.925013pt;}
._1{width:1.054080pt;}
._3{width:2.512640pt;}
._9{width:4.000000pt;}
._8{width:99.877333pt;}
._4{width:330.991787pt;}
._6{width:571.813120pt;}
._5{width:1101.839787pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.880000pt;}
.yd8{bottom:18.080000pt;}
.ydb{bottom:18.240000pt;}
.ydd{bottom:18.266667pt;}
.yc{bottom:32.640000pt;}
.yd7{bottom:33.440000pt;}
.ye0{bottom:33.600000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.ya5{bottom:102.432000pt;}
.y3c{bottom:105.632000pt;}
.y77{bottom:111.072000pt;}
.yd0{bottom:113.792000pt;}
.y6a{bottom:114.912000pt;}
.yba{bottom:116.832000pt;}
.ya4{bottom:117.792000pt;}
.y3b{bottom:121.312000pt;}
.y76{bottom:126.432000pt;}
.ycf{bottom:129.152000pt;}
.y69{bottom:130.112000pt;}
.yb9{bottom:132.192000pt;}
.ya3{bottom:133.152000pt;}
.yd5{bottom:135.226667pt;}
.y3a{bottom:136.986667pt;}
.y75{bottom:141.626667pt;}
.yce{bottom:144.506667pt;}
.y68{bottom:145.466667pt;}
.yb8{bottom:147.386667pt;}
.ya2{bottom:149.306667pt;}
.y39{bottom:152.186667pt;}
.y74{bottom:156.986667pt;}
.ycd{bottom:159.866667pt;}
.y67{bottom:160.826667pt;}
.yb7{bottom:163.706667pt;}
.ya1{bottom:164.666667pt;}
.y38{bottom:167.546667pt;}
.y73{bottom:173.306667pt;}
.ycc{bottom:175.066667pt;}
.y66{bottom:176.186667pt;}
.ye6{bottom:176.346667pt;}
.yb6{bottom:179.066667pt;}
.ya0{bottom:180.026667pt;}
.y37{bottom:182.906667pt;}
.y72{bottom:188.666667pt;}
.ycb{bottom:191.386667pt;}
.y65{bottom:191.546667pt;}
.yb5{bottom:194.426667pt;}
.y9f{bottom:196.346667pt;}
.y36{bottom:198.266667pt;}
.y71{bottom:204.026667pt;}
.yca{bottom:206.746667pt;}
.y64{bottom:206.906667pt;}
.yb4{bottom:210.746667pt;}
.y9e{bottom:211.706667pt;}
.y35{bottom:213.626667pt;}
.y70{bottom:220.186667pt;}
.y63{bottom:222.106667pt;}
.yb3{bottom:225.946667pt;}
.ye5{bottom:226.266667pt;}
.y9d{bottom:226.906667pt;}
.y34{bottom:228.826667pt;}
.y6f{bottom:235.546667pt;}
.y62{bottom:237.466667pt;}
.yb2{bottom:241.306667pt;}
.y9c{bottom:242.266667pt;}
.y33{bottom:244.186667pt;}
.y6e{bottom:250.906667pt;}
.y61{bottom:252.826667pt;}
.yc9{bottom:253.786667pt;}
.y9b{bottom:257.626667pt;}
.y32{bottom:259.546667pt;}
.ye4{bottom:260.986667pt;}
.y6d{bottom:267.226667pt;}
.y60{bottom:268.186667pt;}
.yc8{bottom:268.986667pt;}
.yb1{bottom:272.986667pt;}
.y9a{bottom:273.946667pt;}
.y31{bottom:274.906667pt;}
.y6c{bottom:282.626667pt;}
.y5f{bottom:283.586667pt;}
.yc7{bottom:284.386667pt;}
.yb0{bottom:288.386667pt;}
.y99{bottom:289.346667pt;}
.y30{bottom:290.306667pt;}
.ye3{bottom:295.586667pt;}
.y6b{bottom:297.986667pt;}
.y5e{bottom:298.946667pt;}
.yc6{bottom:299.746667pt;}
.y98{bottom:304.706667pt;}
.y2f{bottom:305.666667pt;}
.y5d{bottom:314.146667pt;}
.yc5{bottom:315.106667pt;}
.y97{bottom:319.906667pt;}
.y2e{bottom:320.866667pt;}
.y5c{bottom:329.506667pt;}
.ye2{bottom:330.306667pt;}
.yc4{bottom:331.426667pt;}
.yaf{bottom:335.266667pt;}
.y2d{bottom:336.226667pt;}
.y5b{bottom:344.866667pt;}
.yc3{bottom:346.786667pt;}
.y2c{bottom:351.586667pt;}
.y5a{bottom:360.226667pt;}
.yc2{bottom:361.986667pt;}
.ye1{bottom:365.026667pt;}
.y2b{bottom:366.946667pt;}
.y59{bottom:375.586667pt;}
.yc1{bottom:377.346667pt;}
.y2a{bottom:382.306667pt;}
.y96{bottom:383.266667pt;}
.y58{bottom:390.786667pt;}
.yc0{bottom:392.706667pt;}
.y29{bottom:397.666667pt;}
.y95{bottom:398.466667pt;}
.y57{bottom:406.146667pt;}
.ybf{bottom:408.066667pt;}
.y28{bottom:412.866667pt;}
.y94{bottom:413.826667pt;}
.ydf{bottom:414.946667pt;}
.y56{bottom:421.506667pt;}
.ybe{bottom:423.426667pt;}
.y27{bottom:428.226667pt;}
.y93{bottom:429.186667pt;}
.ybd{bottom:435.906667pt;}
.y55{bottom:436.866667pt;}
.y26{bottom:443.586667pt;}
.yae{bottom:444.546667pt;}
.y92{bottom:445.506667pt;}
.y54{bottom:452.226667pt;}
.y25{bottom:458.946667pt;}
.y91{bottom:460.866667pt;}
.yde{bottom:465.026667pt;}
.y53{bottom:467.586667pt;}
.y24{bottom:474.306667pt;}
.y90{bottom:476.226667pt;}
.y52{bottom:482.786667pt;}
.y23{bottom:489.666667pt;}
.y8f{bottom:491.426667pt;}
.y51{bottom:498.146667pt;}
.ydc{bottom:499.586667pt;}
.y22{bottom:504.866667pt;}
.yad{bottom:506.813333pt;}
.y8e{bottom:507.773333pt;}
.y50{bottom:513.533333pt;}
.yac{bottom:522.173333pt;}
.y8d{bottom:523.133333pt;}
.y4f{bottom:528.893333pt;}
.yda{bottom:534.333333pt;}
.y21{bottom:537.533333pt;}
.y8c{bottom:538.493333pt;}
.yd4{bottom:539.453333pt;}
.y4e{bottom:544.253333pt;}
.y20{bottom:552.893333pt;}
.y8b{bottom:553.853333pt;}
.yd3{bottom:554.813333pt;}
.y4d{bottom:559.613333pt;}
.y1f{bottom:568.253333pt;}
.yd6{bottom:569.053333pt;}
.y8a{bottom:569.213333pt;}
.yd2{bottom:570.013333pt;}
.y4c{bottom:574.813333pt;}
.y1e{bottom:583.613333pt;}
.y89{bottom:584.413333pt;}
.yab{bottom:585.373333pt;}
.y4b{bottom:590.173333pt;}
.y1d{bottom:598.973333pt;}
.y88{bottom:599.773333pt;}
.yaa{bottom:600.733333pt;}
.y4a{bottom:605.533333pt;}
.y1c{bottom:614.333333pt;}
.y87{bottom:616.093333pt;}
.y49{bottom:620.893333pt;}
.y1b{bottom:629.533333pt;}
.y86{bottom:631.453333pt;}
.ya9{bottom:632.413333pt;}
.y48{bottom:636.253333pt;}
.y1a{bottom:644.893333pt;}
.y85{bottom:646.813333pt;}
.ya8{bottom:647.773333pt;}
.y47{bottom:651.613333pt;}
.y19{bottom:660.253333pt;}
.y84{bottom:662.973333pt;}
.y46{bottom:666.813333pt;}
.y18{bottom:675.613333pt;}
.y83{bottom:678.333333pt;}
.yd1{bottom:679.293333pt;}
.y45{bottom:682.173333pt;}
.y17{bottom:690.973333pt;}
.y82{bottom:693.693333pt;}
.ya7{bottom:694.653333pt;}
.y44{bottom:697.533333pt;}
.y16{bottom:706.333333pt;}
.y81{bottom:710.013333pt;}
.y43{bottom:712.893333pt;}
.y15{bottom:721.533333pt;}
.y80{bottom:725.373333pt;}
.y42{bottom:728.293333pt;}
.y14{bottom:736.933333pt;}
.y7f{bottom:740.773333pt;}
.ya6{bottom:741.733333pt;}
.y41{bottom:743.493333pt;}
.y13{bottom:752.293333pt;}
.ybc{bottom:755.973333pt;}
.y7e{bottom:756.933333pt;}
.y40{bottom:758.853333pt;}
.y12{bottom:769.893333pt;}
.y7d{bottom:772.293333pt;}
.y3f{bottom:774.213333pt;}
.y11{bottom:786.853333pt;}
.y7c{bottom:787.653333pt;}
.y3e{bottom:789.573333pt;}
.ybb{bottom:803.013333pt;}
.y10{bottom:803.813333pt;}
.y7b{bottom:803.973333pt;}
.y3d{bottom:804.933333pt;}
.y7a{bottom:819.333333pt;}
.yf{bottom:820.293333pt;}
.y79{bottom:834.533333pt;}
.ye{bottom:835.493333pt;}
.y78{bottom:849.893333pt;}
.yd{bottom:850.853333pt;}
.y9{bottom:867.333333pt;}
.y8{bottom:884.133333pt;}
.y7{bottom:899.493333pt;}
.y6{bottom:915.493333pt;}
.y5{bottom:930.373333pt;}
.y4{bottom:967.680000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.he{height:30.560000pt;}
.h10{height:30.592000pt;}
.hc{height:30.720000pt;}
.hd{height:30.752000pt;}
.hb{height:37.090625pt;}
.ha{height:45.920000pt;}
.hf{height:46.080000pt;}
.h6{height:47.109375pt;}
.h1{height:52.134375pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h2{height:57.787500pt;}
.h3{height:58.563750pt;}
.h7{height:59.340000pt;}
.h4{height:64.500000pt;}
.h0{height:1056.000000pt;}
.w2{width:24.160000pt;}
.w3{width:593.853333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:0.960000pt;}
.x1{left:96.031988pt;}
.xf{left:98.112000pt;}
.xa{left:120.031988pt;}
.x11{left:124.352000pt;}
.x6{left:129.311988pt;}
.xb{left:144.026655pt;}
.x3{left:151.866655pt;}
.x9{left:276.066655pt;}
.xd{left:288.066655pt;}
.x5{left:338.786655pt;}
.x8{left:361.666655pt;}
.x4{left:368.226655pt;}
.x7{left:373.506655pt;}
.x2{left:408.066655pt;}
.xe{left:572.253321pt;}
.xc{left:720.133321pt;}
}




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