
    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_cc5599266a0c423c5a6a0b01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_5cee3aea7def134df1f6c5e6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_36af91ce70d998af3f25ea19.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_50a7cff37dfabfb5616965fc.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_f175358cf161f091faeebf76.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_37f621e83d92ed10cd52f87c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9122434fd9c9a5796fec61d3.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsc{letter-spacing:-0.413400px;}
.ls6{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.021960px;}
.lse{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.139800px;}
.ls9{letter-spacing:0.180000px;}
.lsd{letter-spacing:16.406640px;}
.lsb{letter-spacing:19.530000px;}
.ls1{letter-spacing:36.926640px;}
.ls2{letter-spacing:46.286640px;}
.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:-60.120000px;}
.ws2{word-spacing:-16.448040px;}
.ws9{word-spacing:-15.210000px;}
.ws8{word-spacing:-15.169800px;}
.ws0{word-spacing:-15.030000px;}
.wsb{word-spacing:-15.016680px;}
.ws7{word-spacing:-14.850000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:-10.530000px;}
.ws3{word-spacing:-10.350000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-3.767520px;}
._17{margin-left:-2.344680px;}
._0{margin-left:-1.202400px;}
._5{width:1.062120px;}
._10{width:2.825640px;}
._f{width:4.028040px;}
._e{width:5.230440px;}
._a{width:6.372720px;}
._b{width:7.796040px;}
._16{width:9.398280px;}
._1c{width:10.542000px;}
._15{width:11.543040px;}
._1b{width:12.552120px;}
._8{width:13.767480px;}
._c{width:16.533000px;}
._20{width:17.615160px;}
._9{width:19.599120px;}
._1e{width:21.282480px;}
._21{width:22.364640px;}
._19{width:23.687280px;}
._1a{width:24.829560px;}
._28{width:25.831560px;}
._1f{width:26.933760px;}
._18{width:28.617120px;}
._27{width:31.293000px;}
._22{width:32.344560px;}
._23{width:33.727320px;}
._13{width:34.749360px;}
._14{width:36.252360px;}
._11{width:38.236320px;}
._d{width:39.539160px;}
._26{width:40.852440px;}
._12{width:42.745320px;}
._4{width:50.670000px;}
._24{width:54.138960px;}
._25{width:55.308600px;}
._29{width:58.527360px;}
._2a{width:59.892960px;}
._2{width:93.090000px;}
._3{width:200.970000px;}
._1{width:735.748680px;}
._7{width:1007.302560px;}
._6{width:1108.740240px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:24.120000px;}
.fs3{font-size:29.880000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y16{bottom:3.240000px;}
.y2f{bottom:6.030000px;}
.y2d{bottom:6.750000px;}
.y4{bottom:8.460000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.y34{bottom:20.520000px;}
.y2c{bottom:24.030000px;}
.ya5{bottom:30.240000px;}
.y7{bottom:35.550000px;}
.y33{bottom:37.710000px;}
.y2b{bottom:41.310000px;}
.ya4{bottom:44.010000px;}
.y24{bottom:45.540000px;}
.y32{bottom:54.990000px;}
.y3{bottom:58.140000px;}
.y2a{bottom:58.500000px;}
.y23{bottom:62.820000px;}
.y31{bottom:72.270000px;}
.y29{bottom:75.810000px;}
.y22{bottom:80.010000px;}
.y30{bottom:89.460000px;}
.y28{bottom:93.090000px;}
.y21{bottom:97.290000px;}
.y27{bottom:110.280000px;}
.y20{bottom:114.570000px;}
.y61{bottom:117.000000px;}
.ya0{bottom:119.340000px;}
.y44{bottom:121.500000px;}
.y82{bottom:126.090000px;}
.y26{bottom:127.560000px;}
.y1f{bottom:131.760000px;}
.y60{bottom:134.190000px;}
.y9f{bottom:136.620000px;}
.y43{bottom:138.780000px;}
.y81{bottom:143.280000px;}
.y1e{bottom:149.040000px;}
.y5f{bottom:151.470000px;}
.y9e{bottom:153.810000px;}
.y42{bottom:156.090000px;}
.y80{bottom:160.590000px;}
.y1d{bottom:166.320000px;}
.y5e{bottom:168.780000px;}
.y9d{bottom:171.120000px;}
.y41{bottom:173.280000px;}
.y7f{bottom:177.780000px;}
.y1c{bottom:183.510000px;}
.y9c{bottom:188.400000px;}
.y40{bottom:190.560000px;}
.y7e{bottom:195.060000px;}
.y1b{bottom:200.820000px;}
.y9b{bottom:205.590000px;}
.y3f{bottom:207.840000px;}
.y7d{bottom:212.340000px;}
.y1a{bottom:218.100000px;}
.y9a{bottom:222.870000px;}
.y3e{bottom:225.030000px;}
.y7c{bottom:229.530000px;}
.y19{bottom:235.290000px;}
.y99{bottom:240.060000px;}
.y3d{bottom:242.310000px;}
.y7b{bottom:246.810000px;}
.y18{bottom:252.570000px;}
.y98{bottom:257.340000px;}
.y3c{bottom:259.590000px;}
.y7a{bottom:264.090000px;}
.y97{bottom:274.620000px;}
.y3b{bottom:276.780000px;}
.y79{bottom:281.280000px;}
.y96{bottom:291.810000px;}
.y3a{bottom:294.060000px;}
.y78{bottom:298.560000px;}
.y95{bottom:309.090000px;}
.y39{bottom:311.340000px;}
.y77{bottom:315.840000px;}
.y94{bottom:326.370000px;}
.y38{bottom:328.530000px;}
.y76{bottom:333.030000px;}
.y93{bottom:343.560000px;}
.y37{bottom:345.450000px;}
.y75{bottom:350.310000px;}
.y92{bottom:360.840000px;}
.y36{bottom:361.290000px;}
.y74{bottom:367.590000px;}
.y35{bottom:376.590000px;}
.y91{bottom:378.120000px;}
.y17{bottom:382.980000px;}
.y73{bottom:384.780000px;}
.y90{bottom:395.310000px;}
.y72{bottom:402.060000px;}
.y8f{bottom:412.590000px;}
.y71{bottom:419.340000px;}
.y8e{bottom:429.870000px;}
.y70{bottom:436.530000px;}
.y8d{bottom:447.060000px;}
.y6f{bottom:453.810000px;}
.y8c{bottom:464.340000px;}
.y6e{bottom:471.090000px;}
.y8b{bottom:481.620000px;}
.y2e{bottom:487.200000px;}
.y6d{bottom:488.280000px;}
.y8a{bottom:498.810000px;}
.y6c{bottom:505.560000px;}
.y25{bottom:507.990000px;}
.ya3{bottom:513.570000px;}
.y6b{bottom:522.750000px;}
.y6a{bottom:540.030000px;}
.y69{bottom:557.310000px;}
.ya1{bottom:569.550000px;}
.y68{bottom:574.530000px;}
.y89{bottom:589.740000px;}
.y67{bottom:591.810000px;}
.y88{bottom:607.020000px;}
.y66{bottom:609.090000px;}
.y87{bottom:624.210000px;}
.y65{bottom:626.280000px;}
.y86{bottom:641.490000px;}
.y64{bottom:643.560000px;}
.y15{bottom:650.310000px;}
.y85{bottom:658.770000px;}
.y5d{bottom:672.630000px;}
.y84{bottom:675.960000px;}
.y5c{bottom:682.260000px;}
.y14{bottom:684.870000px;}
.y83{bottom:693.240000px;}
.y5b{bottom:696.120000px;}
.y13{bottom:704.760000px;}
.y5a{bottom:710.520000px;}
.y59{bottom:727.710000px;}
.y12{bottom:733.200000px;}
.y58{bottom:744.990000px;}
.y11{bottom:750.840000px;}
.y57{bottom:762.270000px;}
.y10{bottom:774.690000px;}
.y56{bottom:779.460000px;}
.yf{bottom:787.020000px;}
.y55{bottom:796.740000px;}
.ye{bottom:808.260000px;}
.y54{bottom:814.020000px;}
.y53{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y52{bottom:848.490000px;}
.y51{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y50{bottom:882.960000px;}
.y4f{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y4e{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y4d{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y4c{bottom:951.990000px;}
.y4b{bottom:969.180000px;}
.y4a{bottom:986.460000px;}
.y49{bottom:1003.770000px;}
.y48{bottom:1020.960000px;}
.y47{bottom:1038.240000px;}
.y46{bottom:1055.520000px;}
.y63{bottom:1064.610000px;}
.y45{bottom:1072.710000px;}
.y62{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1b{height:13.800000px;}
.h14{height:17.018262px;}
.hc{height:17.280000px;}
.h12{height:20.070000px;}
.h18{height:21.607559px;}
.h1a{height:26.033203px;}
.h3{height:27.630000px;}
.hb{height:28.115859px;}
.h17{height:33.782520px;}
.h5{height:34.624160px;}
.h15{height:39.049805px;}
.h6{height:39.082324px;}
.h19{height:39.463594px;}
.hd{height:42.418652px;}
.h4{height:43.475449px;}
.h16{height:43.769004px;}
.h11{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:47.640762px;}
.hf{height:49.552031px;}
.h1{height:50.800781px;}
.h1c{height:55.170000px;}
.h9{height:65.526152px;}
.ha{height:76.201172px;}
.h13{height:103.500000px;}
.h10{height:141.600000px;}
.h7{height:153.930000px;}
.he{height:266.610000px;}
.h0{height:1188.000000px;}
.w2{width:38.070000px;}
.w6{width:273.540000px;}
.w7{width:356.880000px;}
.w5{width:535.290000px;}
.w3{width:769.050000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:6.660000px;}
.x4{left:8.640000px;}
.xf{left:20.160000px;}
.x2{left:53.999986px;}
.x11{left:59.669986px;}
.x1{left:60.749986px;}
.x3{left:69.390000px;}
.x1a{left:87.030000px;}
.x18{left:88.199986px;}
.x1b{left:93.810000px;}
.x5{left:108.540000px;}
.xb{left:227.009986px;}
.xa{left:305.039986px;}
.x14{left:315.389986px;}
.xc{left:337.529986px;}
.x15{left:350.219986px;}
.x8{left:353.549986px;}
.x7{left:459.029986px;}
.x13{left:461.819986px;}
.x9{left:464.159986px;}
.xd{left:475.889986px;}
.x12{left:478.229986px;}
.x16{left:479.759986px;}
.x17{left:506.759986px;}
.x19{left:526.559986px;}
.xe{left:597.480000px;}
.x6{left:812.430000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsc{letter-spacing:-0.367467pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.019520pt;}
.lse{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.124267pt;}
.ls9{letter-spacing:0.160000pt;}
.lsd{letter-spacing:14.583680pt;}
.lsb{letter-spacing:17.360000pt;}
.ls1{letter-spacing:32.823680pt;}
.ls2{letter-spacing:41.143680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws2{word-spacing:-14.620480pt;}
.ws9{word-spacing:-13.520000pt;}
.ws8{word-spacing:-13.484267pt;}
.ws0{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.348160pt;}
.ws7{word-spacing:-13.200000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:-9.360000pt;}
.ws3{word-spacing:-9.200000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-3.348907pt;}
._17{margin-left:-2.084160pt;}
._0{margin-left:-1.068800pt;}
._5{width:0.944107pt;}
._10{width:2.511680pt;}
._f{width:3.580480pt;}
._e{width:4.649280pt;}
._a{width:5.664640pt;}
._b{width:6.929813pt;}
._16{width:8.354027pt;}
._1c{width:9.370667pt;}
._15{width:10.260480pt;}
._1b{width:11.157440pt;}
._8{width:12.237760pt;}
._c{width:14.696000pt;}
._20{width:15.657920pt;}
._9{width:17.421440pt;}
._1e{width:18.917760pt;}
._21{width:19.879680pt;}
._19{width:21.055360pt;}
._1a{width:22.070720pt;}
._28{width:22.961387pt;}
._1f{width:23.941120pt;}
._18{width:25.437440pt;}
._27{width:27.816000pt;}
._22{width:28.750720pt;}
._23{width:29.979840pt;}
._13{width:30.888320pt;}
._14{width:32.224320pt;}
._11{width:33.987840pt;}
._d{width:35.145920pt;}
._26{width:36.313280pt;}
._12{width:37.995840pt;}
._4{width:45.040000pt;}
._24{width:48.123520pt;}
._25{width:49.163200pt;}
._29{width:52.024320pt;}
._2a{width:53.238187pt;}
._2{width:82.746667pt;}
._3{width:178.640000pt;}
._1{width:653.998827pt;}
._7{width:895.380053pt;}
._6{width:985.546880pt;}
.fs8{font-size:21.440000pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y16{bottom:2.880000pt;}
.y2f{bottom:5.360000pt;}
.y2d{bottom:6.000000pt;}
.y4{bottom:7.520000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.y34{bottom:18.240000pt;}
.y2c{bottom:21.360000pt;}
.ya5{bottom:26.880000pt;}
.y7{bottom:31.600000pt;}
.y33{bottom:33.520000pt;}
.y2b{bottom:36.720000pt;}
.ya4{bottom:39.120000pt;}
.y24{bottom:40.480000pt;}
.y32{bottom:48.880000pt;}
.y3{bottom:51.680000pt;}
.y2a{bottom:52.000000pt;}
.y23{bottom:55.840000pt;}
.y31{bottom:64.240000pt;}
.y29{bottom:67.386667pt;}
.y22{bottom:71.120000pt;}
.y30{bottom:79.520000pt;}
.y28{bottom:82.746667pt;}
.y21{bottom:86.480000pt;}
.y27{bottom:98.026667pt;}
.y20{bottom:101.840000pt;}
.y61{bottom:104.000000pt;}
.ya0{bottom:106.080000pt;}
.y44{bottom:108.000000pt;}
.y82{bottom:112.080000pt;}
.y26{bottom:113.386667pt;}
.y1f{bottom:117.120000pt;}
.y60{bottom:119.280000pt;}
.y9f{bottom:121.440000pt;}
.y43{bottom:123.360000pt;}
.y81{bottom:127.360000pt;}
.y1e{bottom:132.480000pt;}
.y5f{bottom:134.640000pt;}
.y9e{bottom:136.720000pt;}
.y42{bottom:138.746667pt;}
.y80{bottom:142.746667pt;}
.y1d{bottom:147.840000pt;}
.y5e{bottom:150.026667pt;}
.y9d{bottom:152.106667pt;}
.y41{bottom:154.026667pt;}
.y7f{bottom:158.026667pt;}
.y1c{bottom:163.120000pt;}
.y9c{bottom:167.466667pt;}
.y40{bottom:169.386667pt;}
.y7e{bottom:173.386667pt;}
.y1b{bottom:178.506667pt;}
.y9b{bottom:182.746667pt;}
.y3f{bottom:184.746667pt;}
.y7d{bottom:188.746667pt;}
.y1a{bottom:193.866667pt;}
.y9a{bottom:198.106667pt;}
.y3e{bottom:200.026667pt;}
.y7c{bottom:204.026667pt;}
.y19{bottom:209.146667pt;}
.y99{bottom:213.386667pt;}
.y3d{bottom:215.386667pt;}
.y7b{bottom:219.386667pt;}
.y18{bottom:224.506667pt;}
.y98{bottom:228.746667pt;}
.y3c{bottom:230.746667pt;}
.y7a{bottom:234.746667pt;}
.y97{bottom:244.106667pt;}
.y3b{bottom:246.026667pt;}
.y79{bottom:250.026667pt;}
.y96{bottom:259.386667pt;}
.y3a{bottom:261.386667pt;}
.y78{bottom:265.386667pt;}
.y95{bottom:274.746667pt;}
.y39{bottom:276.746667pt;}
.y77{bottom:280.746667pt;}
.y94{bottom:290.106667pt;}
.y38{bottom:292.026667pt;}
.y76{bottom:296.026667pt;}
.y93{bottom:305.386667pt;}
.y37{bottom:307.066667pt;}
.y75{bottom:311.386667pt;}
.y92{bottom:320.746667pt;}
.y36{bottom:321.146667pt;}
.y74{bottom:326.746667pt;}
.y35{bottom:334.746667pt;}
.y91{bottom:336.106667pt;}
.y17{bottom:340.426667pt;}
.y73{bottom:342.026667pt;}
.y90{bottom:351.386667pt;}
.y72{bottom:357.386667pt;}
.y8f{bottom:366.746667pt;}
.y71{bottom:372.746667pt;}
.y8e{bottom:382.106667pt;}
.y70{bottom:388.026667pt;}
.y8d{bottom:397.386667pt;}
.y6f{bottom:403.386667pt;}
.y8c{bottom:412.746667pt;}
.y6e{bottom:418.746667pt;}
.y8b{bottom:428.106667pt;}
.y2e{bottom:433.066667pt;}
.y6d{bottom:434.026667pt;}
.y8a{bottom:443.386667pt;}
.y6c{bottom:449.386667pt;}
.y25{bottom:451.546667pt;}
.ya3{bottom:456.506667pt;}
.y6b{bottom:464.666667pt;}
.y6a{bottom:480.026667pt;}
.y69{bottom:495.386667pt;}
.ya1{bottom:506.266667pt;}
.y68{bottom:510.693333pt;}
.y89{bottom:524.213333pt;}
.y67{bottom:526.053333pt;}
.y88{bottom:539.573333pt;}
.y66{bottom:541.413333pt;}
.y87{bottom:554.853333pt;}
.y65{bottom:556.693333pt;}
.y86{bottom:570.213333pt;}
.y64{bottom:572.053333pt;}
.y15{bottom:578.053333pt;}
.y85{bottom:585.573333pt;}
.y5d{bottom:597.893333pt;}
.y84{bottom:600.853333pt;}
.y5c{bottom:606.453333pt;}
.y14{bottom:608.773333pt;}
.y83{bottom:616.213333pt;}
.y5b{bottom:618.773333pt;}
.y13{bottom:626.453333pt;}
.y5a{bottom:631.573333pt;}
.y59{bottom:646.853333pt;}
.y12{bottom:651.733333pt;}
.y58{bottom:662.213333pt;}
.y11{bottom:667.413333pt;}
.y57{bottom:677.573333pt;}
.y10{bottom:688.613333pt;}
.y56{bottom:692.853333pt;}
.yf{bottom:699.573333pt;}
.y55{bottom:708.213333pt;}
.ye{bottom:718.453333pt;}
.y54{bottom:723.573333pt;}
.y53{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y52{bottom:754.213333pt;}
.y51{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y50{bottom:784.853333pt;}
.y4f{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y4e{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y4d{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y4c{bottom:846.213333pt;}
.y4b{bottom:861.493333pt;}
.y4a{bottom:876.853333pt;}
.y49{bottom:892.240000pt;}
.y48{bottom:907.520000pt;}
.y47{bottom:922.880000pt;}
.y46{bottom:938.240000pt;}
.y63{bottom:946.320000pt;}
.y45{bottom:953.520000pt;}
.y62{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1b{height:12.266667pt;}
.h14{height:15.127344pt;}
.hc{height:15.360000pt;}
.h12{height:17.840000pt;}
.h18{height:19.206719pt;}
.h1a{height:23.140625pt;}
.h3{height:24.560000pt;}
.hb{height:24.991875pt;}
.h17{height:30.028906pt;}
.h5{height:30.777031pt;}
.h15{height:34.710938pt;}
.h6{height:34.739844pt;}
.h19{height:35.078750pt;}
.hd{height:37.705469pt;}
.h4{height:38.644844pt;}
.h16{height:38.905781pt;}
.h11{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:42.347344pt;}
.hf{height:44.046250pt;}
.h1{height:45.156250pt;}
.h1c{height:49.040000pt;}
.h9{height:58.245469pt;}
.ha{height:67.734375pt;}
.h13{height:92.000000pt;}
.h10{height:125.866667pt;}
.h7{height:136.826667pt;}
.he{height:236.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:33.840000pt;}
.w6{width:243.146667pt;}
.w7{width:317.226667pt;}
.w5{width:475.813333pt;}
.w3{width:683.600000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.920000pt;}
.x4{left:7.680000pt;}
.xf{left:17.920000pt;}
.x2{left:47.999988pt;}
.x11{left:53.039988pt;}
.x1{left:53.999988pt;}
.x3{left:61.680000pt;}
.x1a{left:77.360000pt;}
.x18{left:78.399988pt;}
.x1b{left:83.386667pt;}
.x5{left:96.480000pt;}
.xb{left:201.786655pt;}
.xa{left:271.146655pt;}
.x14{left:280.346655pt;}
.xc{left:300.026655pt;}
.x15{left:311.306655pt;}
.x8{left:314.266655pt;}
.x7{left:408.026655pt;}
.x13{left:410.506655pt;}
.x9{left:412.586655pt;}
.xd{left:423.013321pt;}
.x12{left:425.093321pt;}
.x16{left:426.453321pt;}
.x17{left:450.453321pt;}
.x19{left:468.053321pt;}
.xe{left:531.093333pt;}
.x6{left:722.160000pt;}
}




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