
    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_d772e54bb964acbd7f7bb9b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7368a40fcc62797708d54354.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_9c5ff770b370559b0ffcb4c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_861b3bcb1fbf4f1de448f7ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e546f4d36890815351a1f9c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v4{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.269400px;}
.ls5{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.289440px;}
.ls3{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.720000px;}
.lsb{letter-spacing:5.040000px;}
.ls4{letter-spacing:15.120000px;}
.ls2{letter-spacing:64.397280px;}
.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:-23.921280px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-12.349440px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-4.896000px;}
._10{margin-left:-3.528000px;}
._20{margin-left:-2.505600px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._8{width:2.771520px;}
._d{width:3.977280px;}
._b{width:5.040000px;}
._c{width:7.020000px;}
._9{width:8.712000px;}
._a{width:9.792000px;}
._19{width:11.177280px;}
._e{width:12.701760px;}
._7{width:13.831680px;}
._6{width:15.130080px;}
._18{width:16.848000px;}
._1f{width:19.008000px;}
._14{width:20.664000px;}
._15{width:21.833760px;}
._17{width:22.968000px;}
._16{width:23.976000px;}
._1b{width:25.344000px;}
._1c{width:27.197760px;}
._21{width:30.888000px;}
._f{width:35.352000px;}
._1a{width:37.212000px;}
._12{width:44.136000px;}
._13{width:45.144000px;}
._1d{width:52.128000px;}
._1e{width:53.328000px;}
._2{width:67.440720px;}
._3{width:68.538480px;}
._5{width:102.201600px;}
._4{width:103.382400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y64{bottom:9.900000px;}
.y68{bottom:9.945000px;}
.y62{bottom:10.080000px;}
.y6{bottom:82.116000px;}
.y5{bottom:109.296000px;}
.y4{bottom:134.496000px;}
.y3{bottom:153.750000px;}
.y2{bottom:172.650000px;}
.y6e{bottom:198.750000px;}
.yaf{bottom:206.310000px;}
.y31{bottom:207.750000px;}
.y8f{bottom:218.010000px;}
.y86{bottom:220.350000px;}
.y4f{bottom:221.250000px;}
.y6d{bottom:221.970000px;}
.y30{bottom:228.450000px;}
.yae{bottom:232.950000px;}
.y6c{bottom:239.250000px;}
.y2f{bottom:249.150000px;}
.y85{bottom:251.490000px;}
.y4e{bottom:252.210000px;}
.yad{bottom:253.650000px;}
.y6b{bottom:254.010000px;}
.y2e{bottom:269.850000px;}
.y8e{bottom:280.110000px;}
.yac{bottom:280.290000px;}
.y6a{bottom:280.650000px;}
.y84{bottom:282.450000px;}
.y4d{bottom:283.350000px;}
.y2d{bottom:290.550000px;}
.yab{bottom:307.110000px;}
.y69{bottom:307.290000px;}
.y2c{bottom:311.250000px;}
.y83{bottom:313.590000px;}
.y4c{bottom:314.310000px;}
.yaa{bottom:327.810000px;}
.y2b{bottom:331.950000px;}
.y67{bottom:334.110000px;}
.y8d{bottom:342.255000px;}
.y82{bottom:344.595000px;}
.y4b{bottom:345.495000px;}
.y2a{bottom:352.695000px;}
.ya9{bottom:354.495000px;}
.y66{bottom:360.795000px;}
.y4a{bottom:372.675000px;}
.y29{bottom:373.395000px;}
.y81{bottom:375.735000px;}
.ya8{bottom:381.135000px;}
.y65{bottom:387.435000px;}
.y28{bottom:394.095000px;}
.ya7{bottom:401.835000px;}
.y8c{bottom:404.355000px;}
.y49{bottom:405.255000px;}
.y80{bottom:406.695000px;}
.y63{bottom:414.255000px;}
.y27{bottom:414.795000px;}
.ya6{bottom:428.655000px;}
.y26{bottom:435.495000px;}
.y48{bottom:436.395000px;}
.y7f{bottom:437.835000px;}
.y61{bottom:441.615000px;}
.ya5{bottom:455.295000px;}
.y25{bottom:456.195000px;}
.yca{bottom:457.635000px;}
.y8b{bottom:466.455000px;}
.y47{bottom:467.355000px;}
.y7e{bottom:468.795000px;}
.ya4{bottom:475.995000px;}
.y24{bottom:476.895000px;}
.y60{bottom:479.055000px;}
.yc9{bottom:484.275000px;}
.y23{bottom:497.595000px;}
.y46{bottom:498.495000px;}
.y5f{bottom:499.755000px;}
.y7d{bottom:499.935000px;}
.ya3{bottom:502.635000px;}
.yc8{bottom:504.975000px;}
.y22{bottom:518.295000px;}
.yc7{bottom:525.675000px;}
.y8a{bottom:528.555000px;}
.y45{bottom:529.455000px;}
.y5e{bottom:530.895000px;}
.y21{bottom:538.995000px;}
.yc6{bottom:552.315000px;}
.ya2{bottom:556.095000px;}
.y20{bottom:559.695000px;}
.y44{bottom:560.595000px;}
.y5d{bottom:561.855000px;}
.y7c{bottom:562.035000px;}
.yc5{bottom:579.135000px;}
.y1f{bottom:580.395000px;}
.ya1{bottom:582.735000px;}
.y89{bottom:590.655000px;}
.y43{bottom:591.555000px;}
.y5c{bottom:592.815000px;}
.y7b{bottom:592.995000px;}
.y1e{bottom:601.095000px;}
.ya0{bottom:603.435000px;}
.yc4{bottom:605.805000px;}
.y1d{bottom:621.645000px;}
.y42{bottom:622.545000px;}
.y5b{bottom:623.985000px;}
.y7a{bottom:624.165000px;}
.y9f{bottom:630.285000px;}
.yc3{bottom:632.445000px;}
.y1c{bottom:642.345000px;}
.y88{bottom:652.785000px;}
.yc2{bottom:653.145000px;}
.y41{bottom:653.685000px;}
.y5a{bottom:654.945000px;}
.y79{bottom:655.125000px;}
.y9e{bottom:656.925000px;}
.y1b{bottom:663.045000px;}
.yc1{bottom:673.845000px;}
.y9d{bottom:683.565000px;}
.y1a{bottom:683.745000px;}
.y40{bottom:684.645000px;}
.y59{bottom:686.085000px;}
.y78{bottom:686.265000px;}
.yc0{bottom:700.665000px;}
.y19{bottom:704.445000px;}
.y9c{bottom:710.385000px;}
.y58{bottom:713.265000px;}
.y87{bottom:714.885000px;}
.y3f{bottom:715.785000px;}
.y77{bottom:717.225000px;}
.y18{bottom:725.145000px;}
.ybf{bottom:727.305000px;}
.y9b{bottom:731.085000px;}
.y76{bottom:744.045000px;}
.y17{bottom:745.845000px;}
.y3e{bottom:746.745000px;}
.ybe{bottom:748.005000px;}
.y9a{bottom:757.725000px;}
.y16{bottom:766.545000px;}
.y75{bottom:769.965000px;}
.ybd{bottom:774.645000px;}
.y57{bottom:776.985000px;}
.y3d{bottom:777.885000px;}
.y99{bottom:784.905000px;}
.y15{bottom:787.245000px;}
.ybc{bottom:801.465000px;}
.y74{bottom:802.005000px;}
.y14{bottom:807.945000px;}
.y3c{bottom:808.845000px;}
.ybb{bottom:822.165000px;}
.y98{bottom:827.925000px;}
.y13{bottom:828.645000px;}
.y56{bottom:839.085000px;}
.y3b{bottom:839.985000px;}
.yba{bottom:848.805000px;}
.y12{bottom:849.345000px;}
.y73{bottom:855.285000px;}
.y97{bottom:858.885000px;}
.y11{bottom:870.045000px;}
.y3a{bottom:870.990000px;}
.yb9{bottom:875.490000px;}
.y72{bottom:882.150000px;}
.y96{bottom:890.070000px;}
.y10{bottom:890.790000px;}
.yb8{bottom:896.190000px;}
.y55{bottom:901.230000px;}
.y39{bottom:902.130000px;}
.y71{bottom:908.790000px;}
.yf{bottom:911.490000px;}
.y95{bottom:921.030000px;}
.yb7{bottom:923.010000px;}
.ye{bottom:932.190000px;}
.y38{bottom:933.090000px;}
.y70{bottom:936.330000px;}
.yb6{bottom:949.650000px;}
.y94{bottom:952.170000px;}
.yd{bottom:954.330000px;}
.y54{bottom:963.330000px;}
.y37{bottom:964.230000px;}
.yb5{bottom:970.350000px;}
.y6f{bottom:973.590000px;}
.yc{bottom:981.870000px;}
.y93{bottom:983.130000px;}
.y53{bottom:994.290000px;}
.y36{bottom:995.190000px;}
.yb4{bottom:996.990000px;}
.yb{bottom:1009.410000px;}
.y92{bottom:1014.270000px;}
.yb3{bottom:1023.810000px;}
.y52{bottom:1025.430000px;}
.y35{bottom:1026.330000px;}
.ya{bottom:1037.130000px;}
.yb2{bottom:1044.510000px;}
.y91{bottom:1045.230000px;}
.y51{bottom:1056.390000px;}
.y34{bottom:1057.290000px;}
.y9{bottom:1064.670000px;}
.yb1{bottom:1071.150000px;}
.y90{bottom:1076.370000px;}
.y50{bottom:1087.530000px;}
.y33{bottom:1088.430000px;}
.y8{bottom:1092.210000px;}
.yb0{bottom:1097.790000px;}
.y32{bottom:1115.610000px;}
.y7{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.hc{height:26.640000px;}
.hd{height:26.676000px;}
.ha{height:26.820000px;}
.hf{height:26.856000px;}
.he{height:53.573906px;}
.h7{height:59.343750px;}
.h3{height:59.383125px;}
.hb{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:65.884219px;}
.h9{height:70.606406px;}
.h10{height:70.786406px;}
.h8{height:74.820586px;}
.h6{height:78.927188px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:94.716000px;}
.w6{width:104.256000px;}
.w9{width:105.156000px;}
.wc{width:107.100000px;}
.wb{width:114.696000px;}
.wa{width:114.840000px;}
.w5{width:115.020000px;}
.w7{width:117.720000px;}
.w8{width:238.530000px;}
.w3{width:248.610000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:12.960000px;}
.xf{left:19.080000px;}
.x9{left:22.860000px;}
.x1f{left:26.460000px;}
.x1d{left:28.080000px;}
.x11{left:31.500000px;}
.x26{left:33.300000px;}
.x19{left:36.000000px;}
.x22{left:41.220000px;}
.xd{left:42.300000px;}
.x20{left:44.460000px;}
.xb{left:45.540000px;}
.x15{left:47.340000px;}
.x25{left:50.394000px;}
.x12{left:52.020000px;}
.x23{left:53.460000px;}
.x16{left:57.420000px;}
.x13{left:58.860000px;}
.x17{left:63.894000px;}
.x14{left:67.494000px;}
.x24{left:74.514000px;}
.x10{left:76.494000px;}
.x21{left:83.154000px;}
.x1b{left:86.214000px;}
.x7{left:91.254000px;}
.x1a{left:95.214000px;}
.x2{left:127.655987px;}
.x6{left:170.129987px;}
.x27{left:232.049987px;}
.x4{left:272.909987px;}
.x5{left:284.114987px;}
.x1c{left:366.195000px;}
.x8{left:376.275000px;}
.xa{left:470.985000px;}
.x1{left:489.164987px;}
.xc{left:586.005000px;}
.xe{left:690.270000px;}
.x1e{left:700.890000px;}
.x3{left:808.169987px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.239467pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.257280pt;}
.ls3{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls4{letter-spacing:13.440000pt;}
.ls2{letter-spacing:57.242027pt;}
.ws0{word-spacing:-21.263360pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-10.977280pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-4.352000pt;}
._10{margin-left:-3.136000pt;}
._20{margin-left:-2.227200pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._8{width:2.463573pt;}
._d{width:3.535360pt;}
._b{width:4.480000pt;}
._c{width:6.240000pt;}
._9{width:7.744000pt;}
._a{width:8.704000pt;}
._19{width:9.935360pt;}
._e{width:11.290453pt;}
._7{width:12.294827pt;}
._6{width:13.448960pt;}
._18{width:14.976000pt;}
._1f{width:16.896000pt;}
._14{width:18.368000pt;}
._15{width:19.407787pt;}
._17{width:20.416000pt;}
._16{width:21.312000pt;}
._1b{width:22.528000pt;}
._1c{width:24.175787pt;}
._21{width:27.456000pt;}
._f{width:31.424000pt;}
._1a{width:33.077333pt;}
._12{width:39.232000pt;}
._13{width:40.128000pt;}
._1d{width:46.336000pt;}
._1e{width:47.402667pt;}
._2{width:59.947307pt;}
._3{width:60.923093pt;}
._5{width:90.845867pt;}
._4{width:91.895467pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:8.800000pt;}
.y68{bottom:8.840000pt;}
.y62{bottom:8.960000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:97.152000pt;}
.y4{bottom:119.552000pt;}
.y3{bottom:136.666667pt;}
.y2{bottom:153.466667pt;}
.y6e{bottom:176.666667pt;}
.yaf{bottom:183.386667pt;}
.y31{bottom:184.666667pt;}
.y8f{bottom:193.786667pt;}
.y86{bottom:195.866667pt;}
.y4f{bottom:196.666667pt;}
.y6d{bottom:197.306667pt;}
.y30{bottom:203.066667pt;}
.yae{bottom:207.066667pt;}
.y6c{bottom:212.666667pt;}
.y2f{bottom:221.466667pt;}
.y85{bottom:223.546667pt;}
.y4e{bottom:224.186667pt;}
.yad{bottom:225.466667pt;}
.y6b{bottom:225.786667pt;}
.y2e{bottom:239.866667pt;}
.y8e{bottom:248.986667pt;}
.yac{bottom:249.146667pt;}
.y6a{bottom:249.466667pt;}
.y84{bottom:251.066667pt;}
.y4d{bottom:251.866667pt;}
.y2d{bottom:258.266667pt;}
.yab{bottom:272.986667pt;}
.y69{bottom:273.146667pt;}
.y2c{bottom:276.666667pt;}
.y83{bottom:278.746667pt;}
.y4c{bottom:279.386667pt;}
.yaa{bottom:291.386667pt;}
.y2b{bottom:295.066667pt;}
.y67{bottom:296.986667pt;}
.y8d{bottom:304.226667pt;}
.y82{bottom:306.306667pt;}
.y4b{bottom:307.106667pt;}
.y2a{bottom:313.506667pt;}
.ya9{bottom:315.106667pt;}
.y66{bottom:320.706667pt;}
.y4a{bottom:331.266667pt;}
.y29{bottom:331.906667pt;}
.y81{bottom:333.986667pt;}
.ya8{bottom:338.786667pt;}
.y65{bottom:344.386667pt;}
.y28{bottom:350.306667pt;}
.ya7{bottom:357.186667pt;}
.y8c{bottom:359.426667pt;}
.y49{bottom:360.226667pt;}
.y80{bottom:361.506667pt;}
.y63{bottom:368.226667pt;}
.y27{bottom:368.706667pt;}
.ya6{bottom:381.026667pt;}
.y26{bottom:387.106667pt;}
.y48{bottom:387.906667pt;}
.y7f{bottom:389.186667pt;}
.y61{bottom:392.546667pt;}
.ya5{bottom:404.706667pt;}
.y25{bottom:405.506667pt;}
.yca{bottom:406.786667pt;}
.y8b{bottom:414.626667pt;}
.y47{bottom:415.426667pt;}
.y7e{bottom:416.706667pt;}
.ya4{bottom:423.106667pt;}
.y24{bottom:423.906667pt;}
.y60{bottom:425.826667pt;}
.yc9{bottom:430.466667pt;}
.y23{bottom:442.306667pt;}
.y46{bottom:443.106667pt;}
.y5f{bottom:444.226667pt;}
.y7d{bottom:444.386667pt;}
.ya3{bottom:446.786667pt;}
.yc8{bottom:448.866667pt;}
.y22{bottom:460.706667pt;}
.yc7{bottom:467.266667pt;}
.y8a{bottom:469.826667pt;}
.y45{bottom:470.626667pt;}
.y5e{bottom:471.906667pt;}
.y21{bottom:479.106667pt;}
.yc6{bottom:490.946667pt;}
.ya2{bottom:494.306667pt;}
.y20{bottom:497.506667pt;}
.y44{bottom:498.306667pt;}
.y5d{bottom:499.426667pt;}
.y7c{bottom:499.586667pt;}
.yc5{bottom:514.786667pt;}
.y1f{bottom:515.906667pt;}
.ya1{bottom:517.986667pt;}
.y89{bottom:525.026667pt;}
.y43{bottom:525.826667pt;}
.y5c{bottom:526.946667pt;}
.y7b{bottom:527.106667pt;}
.y1e{bottom:534.306667pt;}
.ya0{bottom:536.386667pt;}
.yc4{bottom:538.493333pt;}
.y1d{bottom:552.573333pt;}
.y42{bottom:553.373333pt;}
.y5b{bottom:554.653333pt;}
.y7a{bottom:554.813333pt;}
.y9f{bottom:560.253333pt;}
.yc3{bottom:562.173333pt;}
.y1c{bottom:570.973333pt;}
.y88{bottom:580.253333pt;}
.yc2{bottom:580.573333pt;}
.y41{bottom:581.053333pt;}
.y5a{bottom:582.173333pt;}
.y79{bottom:582.333333pt;}
.y9e{bottom:583.933333pt;}
.y1b{bottom:589.373333pt;}
.yc1{bottom:598.973333pt;}
.y9d{bottom:607.613333pt;}
.y1a{bottom:607.773333pt;}
.y40{bottom:608.573333pt;}
.y59{bottom:609.853333pt;}
.y78{bottom:610.013333pt;}
.yc0{bottom:622.813333pt;}
.y19{bottom:626.173333pt;}
.y9c{bottom:631.453333pt;}
.y58{bottom:634.013333pt;}
.y87{bottom:635.453333pt;}
.y3f{bottom:636.253333pt;}
.y77{bottom:637.533333pt;}
.y18{bottom:644.573333pt;}
.ybf{bottom:646.493333pt;}
.y9b{bottom:649.853333pt;}
.y76{bottom:661.373333pt;}
.y17{bottom:662.973333pt;}
.y3e{bottom:663.773333pt;}
.ybe{bottom:664.893333pt;}
.y9a{bottom:673.533333pt;}
.y16{bottom:681.373333pt;}
.y75{bottom:684.413333pt;}
.ybd{bottom:688.573333pt;}
.y57{bottom:690.653333pt;}
.y3d{bottom:691.453333pt;}
.y99{bottom:697.693333pt;}
.y15{bottom:699.773333pt;}
.ybc{bottom:712.413333pt;}
.y74{bottom:712.893333pt;}
.y14{bottom:718.173333pt;}
.y3c{bottom:718.973333pt;}
.ybb{bottom:730.813333pt;}
.y98{bottom:735.933333pt;}
.y13{bottom:736.573333pt;}
.y56{bottom:745.853333pt;}
.y3b{bottom:746.653333pt;}
.yba{bottom:754.493333pt;}
.y12{bottom:754.973333pt;}
.y73{bottom:760.253333pt;}
.y97{bottom:763.453333pt;}
.y11{bottom:773.373333pt;}
.y3a{bottom:774.213333pt;}
.yb9{bottom:778.213333pt;}
.y72{bottom:784.133333pt;}
.y96{bottom:791.173333pt;}
.y10{bottom:791.813333pt;}
.yb8{bottom:796.613333pt;}
.y55{bottom:801.093333pt;}
.y39{bottom:801.893333pt;}
.y71{bottom:807.813333pt;}
.yf{bottom:810.213333pt;}
.y95{bottom:818.693333pt;}
.yb7{bottom:820.453333pt;}
.ye{bottom:828.613333pt;}
.y38{bottom:829.413333pt;}
.y70{bottom:832.293333pt;}
.yb6{bottom:844.133333pt;}
.y94{bottom:846.373333pt;}
.yd{bottom:848.293333pt;}
.y54{bottom:856.293333pt;}
.y37{bottom:857.093333pt;}
.yb5{bottom:862.533333pt;}
.y6f{bottom:865.413333pt;}
.yc{bottom:872.773333pt;}
.y93{bottom:873.893333pt;}
.y53{bottom:883.813333pt;}
.y36{bottom:884.613333pt;}
.yb4{bottom:886.213333pt;}
.yb{bottom:897.253333pt;}
.y92{bottom:901.573333pt;}
.yb3{bottom:910.053333pt;}
.y52{bottom:911.493333pt;}
.y35{bottom:912.293333pt;}
.ya{bottom:921.893333pt;}
.yb2{bottom:928.453333pt;}
.y91{bottom:929.093333pt;}
.y51{bottom:939.013333pt;}
.y34{bottom:939.813333pt;}
.y9{bottom:946.373333pt;}
.yb1{bottom:952.133333pt;}
.y90{bottom:956.773333pt;}
.y50{bottom:966.693333pt;}
.y33{bottom:967.493333pt;}
.y8{bottom:970.853333pt;}
.yb0{bottom:975.813333pt;}
.y32{bottom:991.653333pt;}
.y7{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.hc{height:23.680000pt;}
.hd{height:23.712000pt;}
.ha{height:23.840000pt;}
.hf{height:23.872000pt;}
.he{height:47.621250pt;}
.h7{height:52.750000pt;}
.h3{height:52.785000pt;}
.hb{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:58.563750pt;}
.h9{height:62.761250pt;}
.h10{height:62.921250pt;}
.h8{height:66.507188pt;}
.h6{height:70.157500pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:84.192000pt;}
.w6{width:92.672000pt;}
.w9{width:93.472000pt;}
.wc{width:95.200000pt;}
.wb{width:101.952000pt;}
.wa{width:102.080000pt;}
.w5{width:102.240000pt;}
.w7{width:104.640000pt;}
.w8{width:212.026667pt;}
.w3{width:220.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:11.520000pt;}
.xf{left:16.960000pt;}
.x9{left:20.320000pt;}
.x1f{left:23.520000pt;}
.x1d{left:24.960000pt;}
.x11{left:28.000000pt;}
.x26{left:29.600000pt;}
.x19{left:32.000000pt;}
.x22{left:36.640000pt;}
.xd{left:37.600000pt;}
.x20{left:39.520000pt;}
.xb{left:40.480000pt;}
.x15{left:42.080000pt;}
.x25{left:44.794667pt;}
.x12{left:46.240000pt;}
.x23{left:47.520000pt;}
.x16{left:51.040000pt;}
.x13{left:52.320000pt;}
.x17{left:56.794667pt;}
.x14{left:59.994667pt;}
.x24{left:66.234667pt;}
.x10{left:67.994667pt;}
.x21{left:73.914667pt;}
.x1b{left:76.634667pt;}
.x7{left:81.114667pt;}
.x1a{left:84.634667pt;}
.x2{left:113.471988pt;}
.x6{left:151.226655pt;}
.x27{left:206.266655pt;}
.x4{left:242.586655pt;}
.x5{left:252.546655pt;}
.x1c{left:325.506667pt;}
.x8{left:334.466667pt;}
.xa{left:418.653333pt;}
.x1{left:434.813322pt;}
.xc{left:520.893333pt;}
.xe{left:613.573333pt;}
.x1e{left:623.013333pt;}
.x3{left:718.373322pt;}
}




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