
    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_8015d752bcf95b86c86b9aae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_078f24feeb222992f6fc723e.woff2')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_a8b916d75b9d079b15751671.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a1c90dc5ed08f2323868b0ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_fe2729d7feda8fc6ffd464e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_1338ff077a8d53a4268e59be.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-2.736000px;}
.ls5{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.406200px;}
.ls2{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.152400px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.lsa{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.982080px;}
.ls9{letter-spacing:1.162080px;}
.ls4{letter-spacing:1.584000px;}
.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.584000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.407600px;}
.ws3{word-spacing:-15.264000px;}
.ws8{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-3.480000px;}
._2{margin-left:-2.232000px;}
._0{margin-left:-1.008000px;}
._1{width:1.080000px;}
._3{width:2.832000px;}
._7{width:3.876000px;}
._6{width:5.400000px;}
._9{width:198.156000px;}
._4{width:845.268000px;}
._8{width:847.104000px;}
.fc3{color:rgb(14,16,26);}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:3.240000px;}
.y5f{bottom:3.600000px;}
.y67{bottom:6.840000px;}
.y65{bottom:7.200000px;}
.y5e{bottom:22.320000px;}
.y69{bottom:22.680000px;}
.y6f{bottom:22.725000px;}
.y78{bottom:41.394000px;}
.y5d{bottom:41.400000px;}
.y7b{bottom:41.805000px;}
.y5c{bottom:60.480000px;}
.y5b{bottom:79.560000px;}
.y5a{bottom:98.310000px;}
.ybf{bottom:111.960000px;}
.y63{bottom:115.200000px;}
.y59{bottom:117.390000px;}
.y77{bottom:118.116000px;}
.y39{bottom:128.196000px;}
.y90{bottom:128.556000px;}
.yaa{bottom:132.516000px;}
.y3a{bottom:135.036000px;}
.y4a{bottom:140.076000px;}
.ybe{bottom:153.390000px;}
.y62{bottom:156.630000px;}
.yc8{bottom:159.150000px;}
.y38{bottom:169.590000px;}
.y8f{bottom:169.950000px;}
.ya9{bottom:173.910000px;}
.y76{bottom:175.710000px;}
.y57{bottom:176.430000px;}
.y49{bottom:181.470000px;}
.ybd{bottom:194.790000px;}
.y61{bottom:198.030000px;}
.y75{bottom:199.110000px;}
.yc7{bottom:200.550000px;}
.y37{bottom:210.990000px;}
.y8e{bottom:211.350000px;}
.ya8{bottom:215.310000px;}
.y55{bottom:217.830000px;}
.y48{bottom:222.870000px;}
.y56{bottom:224.670000px;}
.y60{bottom:232.995000px;}
.ybc{bottom:236.235000px;}
.y74{bottom:237.675000px;}
.yc6{bottom:241.995000px;}
.y58{bottom:249.555000px;}
.y35{bottom:252.435000px;}
.y8d{bottom:252.795000px;}
.ya7{bottom:256.755000px;}
.y36{bottom:259.275000px;}
.y47{bottom:264.315000px;}
.y73{bottom:276.555000px;}
.ybb{bottom:277.635000px;}
.yc5{bottom:283.395000px;}
.y34{bottom:293.835000px;}
.y8c{bottom:294.195000px;}
.ya6{bottom:298.155000px;}
.y46{bottom:305.715000px;}
.y72{bottom:315.075000px;}
.yba{bottom:319.035000px;}
.yc4{bottom:324.795000px;}
.y32{bottom:334.875000px;}
.y8b{bottom:335.595000px;}
.ya5{bottom:339.555000px;}
.y33{bottom:341.715000px;}
.y45{bottom:347.145000px;}
.y71{bottom:353.985000px;}
.yb9{bottom:360.465000px;}
.yc3{bottom:366.225000px;}
.ya4{bottom:374.145000px;}
.y31{bottom:376.305000px;}
.y44{bottom:388.545000px;}
.y8a{bottom:388.905000px;}
.ya3{bottom:390.705000px;}
.y70{bottom:392.505000px;}
.yf0{bottom:399.705000px;}
.yb8{bottom:401.865000px;}
.yef{bottom:406.545000px;}
.yc2{bottom:407.625000px;}
.ya2{bottom:408.705000px;}
.y30{bottom:417.705000px;}
.y20{bottom:420.225000px;}
.yee{bottom:420.585000px;}
.ya1{bottom:426.705000px;}
.y43{bottom:429.945000px;}
.y89{bottom:430.305000px;}
.yed{bottom:441.105000px;}
.y1f{bottom:442.905000px;}
.yb7{bottom:443.265000px;}
.ya0{bottom:444.705000px;}
.yc1{bottom:449.025000px;}
.y6e{bottom:450.105000px;}
.yec{bottom:462.030000px;}
.y9f{bottom:462.750000px;}
.y1e{bottom:465.270000px;}
.y2f{bottom:471.390000px;}
.y88{bottom:471.750000px;}
.y42{bottom:478.230000px;}
.y9e{bottom:480.750000px;}
.yeb{bottom:482.550000px;}
.yb6{bottom:484.710000px;}
.y6d{bottom:489.030000px;}
.yea{bottom:489.390000px;}
.yc0{bottom:490.470000px;}
.y9d{bottom:498.750000px;}
.y1d{bottom:499.470000px;}
.ye9{bottom:503.430000px;}
.y41{bottom:512.790000px;}
.y87{bottom:513.150000px;}
.y9c{bottom:516.750000px;}
.ye8{bottom:523.950000px;}
.y2e{bottom:524.670000px;}
.yb5{bottom:526.110000px;}
.y1c{bottom:533.670000px;}
.y9b{bottom:534.750000px;}
.ye7{bottom:544.830000px;}
.y6c{bottom:546.630000px;}
.ye6{bottom:551.670000px;}
.y9a{bottom:552.750000px;}
.y40{bottom:554.190000px;}
.y86{bottom:554.550000px;}
.y1b{bottom:555.990000px;}
.ye5{bottom:565.350000px;}
.y2d{bottom:566.070000px;}
.yb4{bottom:567.510000px;}
.y6b{bottom:569.700000px;}
.y99{bottom:570.780000px;}
.y1a{bottom:578.340000px;}
.ye4{bottom:586.260000px;}
.y85{bottom:588.780000px;}
.ye3{bottom:593.100000px;}
.y3f{bottom:595.620000px;}
.y98{bottom:606.780000px;}
.y2c{bottom:607.500000px;}
.y6a{bottom:608.580000px;}
.yb3{bottom:608.940000px;}
.y19{bottom:612.900000px;}
.y97{bottom:624.780000px;}
.ye2{bottom:627.660000px;}
.y3e{bottom:637.020000px;}
.y84{bottom:642.420000px;}
.y96{bottom:642.780000px;}
.yb2{bottom:643.140000px;}
.y54{bottom:643.860000px;}
.y18{bottom:647.100000px;}
.ye1{bottom:648.180000px;}
.y2b{bottom:648.900000px;}
.ye0{bottom:655.020000px;}
.y95{bottom:660.780000px;}
.ydf{bottom:669.060000px;}
.yb1{bottom:678.060000px;}
.y53{bottom:678.420000px;}
.y94{bottom:678.780000px;}
.y17{bottom:681.660000px;}
.y83{bottom:683.850000px;}
.y68{bottom:686.010000px;}
.yde{bottom:689.610000px;}
.y2a{bottom:690.330000px;}
.yb0{bottom:694.650000px;}
.y92{bottom:696.810000px;}
.y3d{bottom:697.170000px;}
.y16{bottom:704.010000px;}
.y66{bottom:709.410000px;}
.ydd{bottom:710.490000px;}
.yaf{bottom:712.650000px;}
.ydc{bottom:717.330000px;}
.y52{bottom:719.850000px;}
.y91{bottom:720.930000px;}
.y82{bottom:725.250000px;}
.yae{bottom:730.650000px;}
.ydb{bottom:731.010000px;}
.y29{bottom:731.730000px;}
.y64{bottom:732.450000px;}
.y15{bottom:738.210000px;}
.yad{bottom:748.650000px;}
.yda{bottom:751.890000px;}
.y14{bottom:760.530000px;}
.y50{bottom:761.250000px;}
.y81{bottom:766.650000px;}
.y51{bottom:768.090000px;}
.yd9{bottom:772.410000px;}
.y28{bottom:773.130000px;}
.y13{bottom:782.850000px;}
.yac{bottom:784.650000px;}
.yd8{bottom:793.290000px;}
.y4f{bottom:802.695000px;}
.y12{bottom:805.215000px;}
.y80{bottom:808.095000px;}
.yd7{bottom:813.855000px;}
.y27{bottom:814.575000px;}
.yab{bottom:820.695000px;}
.y3c{bottom:821.415000px;}
.y11{bottom:827.535000px;}
.y8{bottom:834.735000px;}
.y4e{bottom:844.095000px;}
.y7f{bottom:849.495000px;}
.y10{bottom:849.855000px;}
.yd6{bottom:855.255000px;}
.y26{bottom:855.975000px;}
.y7{bottom:857.055000px;}
.yd5{bottom:862.095000px;}
.yf{bottom:872.175000px;}
.yd4{bottom:876.135000px;}
.y4d{bottom:885.495000px;}
.y7e{bottom:890.895000px;}
.y6{bottom:891.255000px;}
.ye{bottom:894.495000px;}
.yd3{bottom:896.655000px;}
.y25{bottom:897.375000px;}
.yd{bottom:916.845000px;}
.yd2{bottom:917.565000px;}
.yd1{bottom:924.405000px;}
.y5{bottom:925.485000px;}
.y4c{bottom:926.925000px;}
.y7d{bottom:932.325000px;}
.yd0{bottom:938.085000px;}
.y23{bottom:938.805000px;}
.yc{bottom:939.165000px;}
.ycf{bottom:944.925000px;}
.y24{bottom:945.645000px;}
.yce{bottom:958.965000px;}
.y4{bottom:960.045000px;}
.yb{bottom:961.485000px;}
.y7c{bottom:966.885000px;}
.ycd{bottom:979.485000px;}
.y22{bottom:980.205000px;}
.y7a{bottom:983.445000px;}
.ya{bottom:984.165000px;}
.ycc{bottom:986.325000px;}
.y3{bottom:994.245000px;}
.ycb{bottom:1000.365000px;}
.y9{bottom:1006.485000px;}
.yca{bottom:1020.885000px;}
.y21{bottom:1021.605000px;}
.yc9{bottom:1027.770000px;}
.y3b{bottom:1028.490000px;}
.y2{bottom:1028.850000px;}
.y79{bottom:1041.450000px;}
.yf1{bottom:1041.810000px;}
.y1{bottom:1063.050000px;}
.y4b{bottom:1069.890000px;}
.h13{height:17.280000px;}
.h15{height:17.316000px;}
.hb{height:22.320000px;}
.h9{height:22.680000px;}
.hd{height:37.800000px;}
.h10{height:37.836000px;}
.he{height:38.160000px;}
.hc{height:38.196000px;}
.h3{height:46.638281px;}
.h5{height:51.679688px;}
.hf{height:56.880000px;}
.h11{height:56.916000px;}
.h14{height:59.357813px;}
.h7{height:65.010937px;}
.h8{height:65.884219px;}
.ha{height:66.757500px;}
.h12{height:67.824844px;}
.h4{height:70.628906px;}
.h2{height:70.664062px;}
.h1{height:72.562500px;}
.h6{height:132.876000px;}
.h0{height:1188.000000px;}
.w9{width:79.956000px;}
.w7{width:109.476000px;}
.w4{width:203.865000px;}
.w6{width:305.430000px;}
.w8{width:309.390000px;}
.w5{width:496.260000px;}
.w3{width:700.845000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:7.920000px;}
.x26{left:23.040000px;}
.x28{left:32.400000px;}
.x29{left:36.000000px;}
.x24{left:41.040000px;}
.x25{left:44.640000px;}
.x3{left:108.035986px;}
.x4{left:111.635986px;}
.x2c{left:114.155986px;}
.x2d{left:120.275986px;}
.x1{left:127.115986px;}
.x7{left:162.074986px;}
.x13{left:194.474973px;}
.x14{left:200.594986px;}
.x5{left:216.074986px;}
.x8{left:261.464973px;}
.x9{left:267.584986px;}
.x22{left:313.350000px;}
.x2{left:346.469986px;}
.x15{left:359.429973px;}
.x16{left:365.549986px;}
.xa{left:388.949986px;}
.x23{left:414.900000px;}
.x2a{left:415.979986px;}
.x2b{left:417.419986px;}
.x27{left:419.220000px;}
.x11{left:424.619973px;}
.x6{left:425.699986px;}
.x12{left:430.739986px;}
.x17{left:445.139973px;}
.x18{left:451.259986px;}
.x1b{left:455.939973px;}
.x19{left:460.619973px;}
.x1a{left:466.739986px;}
.x1c{left:468.179986px;}
.xb{left:488.729973px;}
.xc{left:494.849986px;}
.xf{left:506.369973px;}
.x10{left:512.489986px;}
.xd{left:678.524973px;}
.xe{left:684.644986px;}
.x1f{left:758.849973px;}
.x20{left:771.089986px;}
.x1d{left:775.769973px;}
.x1e{left:788.009986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-2.432000pt;}
.ls5{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.361067pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.lsa{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.872960pt;}
.ls9{letter-spacing:1.032960pt;}
.ls4{letter-spacing:1.408000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.584533pt;}
.ws3{word-spacing:-13.568000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-3.093333pt;}
._2{margin-left:-1.984000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.960000pt;}
._3{width:2.517333pt;}
._7{width:3.445333pt;}
._6{width:4.800000pt;}
._9{width:176.138667pt;}
._4{width:751.349333pt;}
._8{width:752.981333pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:2.880000pt;}
.y5f{bottom:3.200000pt;}
.y67{bottom:6.080000pt;}
.y65{bottom:6.400000pt;}
.y5e{bottom:19.840000pt;}
.y69{bottom:20.160000pt;}
.y6f{bottom:20.200000pt;}
.y78{bottom:36.794667pt;}
.y5d{bottom:36.800000pt;}
.y7b{bottom:37.160000pt;}
.y5c{bottom:53.760000pt;}
.y5b{bottom:70.720000pt;}
.y5a{bottom:87.386667pt;}
.ybf{bottom:99.520000pt;}
.y63{bottom:102.400000pt;}
.y59{bottom:104.346667pt;}
.y77{bottom:104.992000pt;}
.y39{bottom:113.952000pt;}
.y90{bottom:114.272000pt;}
.yaa{bottom:117.792000pt;}
.y3a{bottom:120.032000pt;}
.y4a{bottom:124.512000pt;}
.ybe{bottom:136.346667pt;}
.y62{bottom:139.226667pt;}
.yc8{bottom:141.466667pt;}
.y38{bottom:150.746667pt;}
.y8f{bottom:151.066667pt;}
.ya9{bottom:154.586667pt;}
.y76{bottom:156.186667pt;}
.y57{bottom:156.826667pt;}
.y49{bottom:161.306667pt;}
.ybd{bottom:173.146667pt;}
.y61{bottom:176.026667pt;}
.y75{bottom:176.986667pt;}
.yc7{bottom:178.266667pt;}
.y37{bottom:187.546667pt;}
.y8e{bottom:187.866667pt;}
.ya8{bottom:191.386667pt;}
.y55{bottom:193.626667pt;}
.y48{bottom:198.106667pt;}
.y56{bottom:199.706667pt;}
.y60{bottom:207.106667pt;}
.ybc{bottom:209.986667pt;}
.y74{bottom:211.266667pt;}
.yc6{bottom:215.106667pt;}
.y58{bottom:221.826667pt;}
.y35{bottom:224.386667pt;}
.y8d{bottom:224.706667pt;}
.ya7{bottom:228.226667pt;}
.y36{bottom:230.466667pt;}
.y47{bottom:234.946667pt;}
.y73{bottom:245.826667pt;}
.ybb{bottom:246.786667pt;}
.yc5{bottom:251.906667pt;}
.y34{bottom:261.186667pt;}
.y8c{bottom:261.506667pt;}
.ya6{bottom:265.026667pt;}
.y46{bottom:271.746667pt;}
.y72{bottom:280.066667pt;}
.yba{bottom:283.586667pt;}
.yc4{bottom:288.706667pt;}
.y32{bottom:297.666667pt;}
.y8b{bottom:298.306667pt;}
.ya5{bottom:301.826667pt;}
.y33{bottom:303.746667pt;}
.y45{bottom:308.573333pt;}
.y71{bottom:314.653333pt;}
.yb9{bottom:320.413333pt;}
.yc3{bottom:325.533333pt;}
.ya4{bottom:332.573333pt;}
.y31{bottom:334.493333pt;}
.y44{bottom:345.373333pt;}
.y8a{bottom:345.693333pt;}
.ya3{bottom:347.293333pt;}
.y70{bottom:348.893333pt;}
.yf0{bottom:355.293333pt;}
.yb8{bottom:357.213333pt;}
.yef{bottom:361.373333pt;}
.yc2{bottom:362.333333pt;}
.ya2{bottom:363.293333pt;}
.y30{bottom:371.293333pt;}
.y20{bottom:373.533333pt;}
.yee{bottom:373.853333pt;}
.ya1{bottom:379.293333pt;}
.y43{bottom:382.173333pt;}
.y89{bottom:382.493333pt;}
.yed{bottom:392.093333pt;}
.y1f{bottom:393.693333pt;}
.yb7{bottom:394.013333pt;}
.ya0{bottom:395.293333pt;}
.yc1{bottom:399.133333pt;}
.y6e{bottom:400.093333pt;}
.yec{bottom:410.693333pt;}
.y9f{bottom:411.333333pt;}
.y1e{bottom:413.573333pt;}
.y2f{bottom:419.013333pt;}
.y88{bottom:419.333333pt;}
.y42{bottom:425.093333pt;}
.y9e{bottom:427.333333pt;}
.yeb{bottom:428.933333pt;}
.yb6{bottom:430.853333pt;}
.y6d{bottom:434.693333pt;}
.yea{bottom:435.013333pt;}
.yc0{bottom:435.973333pt;}
.y9d{bottom:443.333333pt;}
.y1d{bottom:443.973333pt;}
.ye9{bottom:447.493333pt;}
.y41{bottom:455.813333pt;}
.y87{bottom:456.133333pt;}
.y9c{bottom:459.333333pt;}
.ye8{bottom:465.733333pt;}
.y2e{bottom:466.373333pt;}
.yb5{bottom:467.653333pt;}
.y1c{bottom:474.373333pt;}
.y9b{bottom:475.333333pt;}
.ye7{bottom:484.293333pt;}
.y6c{bottom:485.893333pt;}
.ye6{bottom:490.373333pt;}
.y9a{bottom:491.333333pt;}
.y40{bottom:492.613333pt;}
.y86{bottom:492.933333pt;}
.y1b{bottom:494.213333pt;}
.ye5{bottom:502.533333pt;}
.y2d{bottom:503.173333pt;}
.yb4{bottom:504.453333pt;}
.y6b{bottom:506.400000pt;}
.y99{bottom:507.360000pt;}
.y1a{bottom:514.080000pt;}
.ye4{bottom:521.120000pt;}
.y85{bottom:523.360000pt;}
.ye3{bottom:527.200000pt;}
.y3f{bottom:529.440000pt;}
.y98{bottom:539.360000pt;}
.y2c{bottom:540.000000pt;}
.y6a{bottom:540.960000pt;}
.yb3{bottom:541.280000pt;}
.y19{bottom:544.800000pt;}
.y97{bottom:555.360000pt;}
.ye2{bottom:557.920000pt;}
.y3e{bottom:566.240000pt;}
.y84{bottom:571.040000pt;}
.y96{bottom:571.360000pt;}
.yb2{bottom:571.680000pt;}
.y54{bottom:572.320000pt;}
.y18{bottom:575.200000pt;}
.ye1{bottom:576.160000pt;}
.y2b{bottom:576.800000pt;}
.ye0{bottom:582.240000pt;}
.y95{bottom:587.360000pt;}
.ydf{bottom:594.720000pt;}
.yb1{bottom:602.720000pt;}
.y53{bottom:603.040000pt;}
.y94{bottom:603.360000pt;}
.y17{bottom:605.920000pt;}
.y83{bottom:607.866667pt;}
.y68{bottom:609.786667pt;}
.yde{bottom:612.986667pt;}
.y2a{bottom:613.626667pt;}
.yb0{bottom:617.466667pt;}
.y92{bottom:619.386667pt;}
.y3d{bottom:619.706667pt;}
.y16{bottom:625.786667pt;}
.y66{bottom:630.586667pt;}
.ydd{bottom:631.546667pt;}
.yaf{bottom:633.466667pt;}
.ydc{bottom:637.626667pt;}
.y52{bottom:639.866667pt;}
.y91{bottom:640.826667pt;}
.y82{bottom:644.666667pt;}
.yae{bottom:649.466667pt;}
.ydb{bottom:649.786667pt;}
.y29{bottom:650.426667pt;}
.y64{bottom:651.066667pt;}
.y15{bottom:656.186667pt;}
.yad{bottom:665.466667pt;}
.yda{bottom:668.346667pt;}
.y14{bottom:676.026667pt;}
.y50{bottom:676.666667pt;}
.y81{bottom:681.466667pt;}
.y51{bottom:682.746667pt;}
.yd9{bottom:686.586667pt;}
.y28{bottom:687.226667pt;}
.y13{bottom:695.866667pt;}
.yac{bottom:697.466667pt;}
.yd8{bottom:705.146667pt;}
.y4f{bottom:713.506667pt;}
.y12{bottom:715.746667pt;}
.y80{bottom:718.306667pt;}
.yd7{bottom:723.426667pt;}
.y27{bottom:724.066667pt;}
.yab{bottom:729.506667pt;}
.y3c{bottom:730.146667pt;}
.y11{bottom:735.586667pt;}
.y8{bottom:741.986667pt;}
.y4e{bottom:750.306667pt;}
.y7f{bottom:755.106667pt;}
.y10{bottom:755.426667pt;}
.yd6{bottom:760.226667pt;}
.y26{bottom:760.866667pt;}
.y7{bottom:761.826667pt;}
.yd5{bottom:766.306667pt;}
.yf{bottom:775.266667pt;}
.yd4{bottom:778.786667pt;}
.y4d{bottom:787.106667pt;}
.y7e{bottom:791.906667pt;}
.y6{bottom:792.226667pt;}
.ye{bottom:795.106667pt;}
.yd3{bottom:797.026667pt;}
.y25{bottom:797.666667pt;}
.yd{bottom:814.973333pt;}
.yd2{bottom:815.613333pt;}
.yd1{bottom:821.693333pt;}
.y5{bottom:822.653333pt;}
.y4c{bottom:823.933333pt;}
.y7d{bottom:828.733333pt;}
.yd0{bottom:833.853333pt;}
.y23{bottom:834.493333pt;}
.yc{bottom:834.813333pt;}
.ycf{bottom:839.933333pt;}
.y24{bottom:840.573333pt;}
.yce{bottom:852.413333pt;}
.y4{bottom:853.373333pt;}
.yb{bottom:854.653333pt;}
.y7c{bottom:859.453333pt;}
.ycd{bottom:870.653333pt;}
.y22{bottom:871.293333pt;}
.y7a{bottom:874.173333pt;}
.ya{bottom:874.813333pt;}
.ycc{bottom:876.733333pt;}
.y3{bottom:883.773333pt;}
.ycb{bottom:889.213333pt;}
.y9{bottom:894.653333pt;}
.yca{bottom:907.453333pt;}
.y21{bottom:908.093333pt;}
.yc9{bottom:913.573333pt;}
.y3b{bottom:914.213333pt;}
.y2{bottom:914.533333pt;}
.y79{bottom:925.733333pt;}
.yf1{bottom:926.053333pt;}
.y1{bottom:944.933333pt;}
.y4b{bottom:951.013333pt;}
.h13{height:15.360000pt;}
.h15{height:15.392000pt;}
.hb{height:19.840000pt;}
.h9{height:20.160000pt;}
.hd{height:33.600000pt;}
.h10{height:33.632000pt;}
.he{height:33.920000pt;}
.hc{height:33.952000pt;}
.h3{height:41.456250pt;}
.h5{height:45.937500pt;}
.hf{height:50.560000pt;}
.h11{height:50.592000pt;}
.h14{height:52.762500pt;}
.h7{height:57.787500pt;}
.h8{height:58.563750pt;}
.ha{height:59.340000pt;}
.h12{height:60.288750pt;}
.h4{height:62.781250pt;}
.h2{height:62.812500pt;}
.h1{height:64.500000pt;}
.h6{height:118.112000pt;}
.h0{height:1056.000000pt;}
.w9{width:71.072000pt;}
.w7{width:97.312000pt;}
.w4{width:181.213333pt;}
.w6{width:271.493333pt;}
.w8{width:275.013333pt;}
.w5{width:441.120000pt;}
.w3{width:622.973333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.040000pt;}
.x26{left:20.480000pt;}
.x28{left:28.800000pt;}
.x29{left:32.000000pt;}
.x24{left:36.480000pt;}
.x25{left:39.680000pt;}
.x3{left:96.031988pt;}
.x4{left:99.231988pt;}
.x2c{left:101.471988pt;}
.x2d{left:106.911988pt;}
.x1{left:112.991988pt;}
.x7{left:144.066655pt;}
.x13{left:172.866642pt;}
.x14{left:178.306655pt;}
.x5{left:192.066655pt;}
.x8{left:232.413309pt;}
.x9{left:237.853321pt;}
.x22{left:278.533333pt;}
.x2{left:307.973321pt;}
.x15{left:319.493309pt;}
.x16{left:324.933321pt;}
.xa{left:345.733321pt;}
.x23{left:368.800000pt;}
.x2a{left:369.759988pt;}
.x2b{left:371.039988pt;}
.x27{left:372.640000pt;}
.x11{left:377.439976pt;}
.x6{left:378.399988pt;}
.x12{left:382.879988pt;}
.x17{left:395.679976pt;}
.x18{left:401.119988pt;}
.x1b{left:405.279976pt;}
.x19{left:409.439976pt;}
.x1a{left:414.879988pt;}
.x1c{left:416.159988pt;}
.xb{left:434.426642pt;}
.xc{left:439.866655pt;}
.xf{left:450.106642pt;}
.x10{left:455.546655pt;}
.xd{left:603.133309pt;}
.xe{left:608.573321pt;}
.x1f{left:674.533309pt;}
.x20{left:685.413321pt;}
.x1d{left:689.573309pt;}
.x1e{left:700.453321pt;}
}




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