
    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_74ff3359aa21756f4e208998.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980469;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_223979afb38f5aad7b092313.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980469;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_45001d6bd5889bcad8e15bf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078125;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_497a6bc98e0e1b40e9e2b795.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010254;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_c411a7c22ba9b8226f74bef7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_5e9271b8eb1ea3be11668c0e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e26590528dc744f8db205f98.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f3c3573c5c561ac1ebf9b269.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0961b7eab84665cfcb3fd7aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4f4e7a8a1a2b32f04e3f9ce4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c8ca788ef6f567506492db58.woff2')format("woff");}.ffc{font-family:ffc;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;}
.lsa{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.270000px;}
.ls2{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.021240px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024120px;}
.lsc{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.360000px;}
.ls9{letter-spacing:2.160000px;}
.lsb{letter-spacing:5.400000px;}
.ls8{letter-spacing:6.480000px;}
.ls10{letter-spacing:7.200000px;}
.lse{letter-spacing:9.720000px;}
.ls11{letter-spacing:11.520000px;}
.ls12{letter-spacing:15.600000px;}
.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:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.640000px;}
.ws0{word-spacing:-16.128000px;}
.ws1{word-spacing:-15.030000px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-5.184000px;}
._7{margin-left:-4.176000px;}
._5{margin-left:-3.024000px;}
._1{margin-left:-1.234440px;}
._3{width:1.006560px;}
._b{width:2.041200px;}
._2{width:3.046680px;}
._0{width:4.140360px;}
._f{width:5.400000px;}
._10{width:6.480720px;}
._a{width:7.776000px;}
._9{width:8.784000px;}
._c{width:10.224000px;}
._d{width:11.880000px;}
._6{width:12.888000px;}
._e{width:13.931280px;}
._12{width:15.552000px;}
._13{width:16.560000px;}
._17{width:20.880000px;}
._18{width:22.320000px;}
._11{width:23.328000px;}
._16{width:25.272000px;}
._4{width:26.640000px;}
._19{width:27.648000px;}
._15{width:28.728000px;}
._14{width:29.880000px;}
._1a{width:31.056000px;}
._1b{width:132.984000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y35{bottom:56.970000px;}
.y5{bottom:57.960000px;}
.y34{bottom:77.670000px;}
.y4{bottom:79.920000px;}
.y33{bottom:98.370000px;}
.y2e{bottom:100.260000px;}
.y77{bottom:113.310000px;}
.y2d{bottom:117.540000px;}
.y32{bottom:119.070000px;}
.y2c{bottom:122.760000px;}
.y2b{bottom:135.990000px;}
.y76{bottom:144.360000px;}
.y92{bottom:169.920000px;}
.y75{bottom:175.410000px;}
.y55{bottom:180.270000px;}
.y2a{bottom:182.970000px;}
.y91{bottom:200.970000px;}
.y29{bottom:204.210000px;}
.y74{bottom:206.460000px;}
.y54{bottom:211.320000px;}
.y90{bottom:232.050000px;}
.y28{bottom:235.290000px;}
.y73{bottom:237.540000px;}
.y53{bottom:242.400000px;}
.y8f{bottom:263.100000px;}
.y27{bottom:266.340000px;}
.y72{bottom:268.590000px;}
.y52{bottom:273.450000px;}
.y8e{bottom:294.150000px;}
.y26{bottom:297.390000px;}
.y71{bottom:299.640000px;}
.y51{bottom:304.500000px;}
.y8d{bottom:325.200000px;}
.y25{bottom:328.440000px;}
.y70{bottom:330.690000px;}
.y50{bottom:335.550000px;}
.y8c{bottom:356.250000px;}
.y24{bottom:359.490000px;}
.y6f{bottom:361.740000px;}
.y4f{bottom:366.600000px;}
.y8b{bottom:387.210000px;}
.y23{bottom:390.540000px;}
.y6e{bottom:392.790000px;}
.y4e{bottom:395.220000px;}
.y8a{bottom:418.260000px;}
.y22{bottom:421.590000px;}
.y4d{bottom:423.480000px;}
.y6d{bottom:423.750000px;}
.y89{bottom:449.310000px;}
.y21{bottom:452.640000px;}
.y4c{bottom:454.530000px;}
.y6c{bottom:454.800000px;}
.y88{bottom:480.360000px;}
.y20{bottom:483.690000px;}
.y4b{bottom:485.580000px;}
.y6b{bottom:485.850000px;}
.y87{bottom:511.410000px;}
.y1f{bottom:514.740000px;}
.y4a{bottom:516.630000px;}
.y6a{bottom:516.900000px;}
.y86{bottom:542.460000px;}
.y1e{bottom:545.790000px;}
.y49{bottom:547.680000px;}
.y69{bottom:547.950000px;}
.y85{bottom:573.510000px;}
.y1d{bottom:576.840000px;}
.y48{bottom:578.730000px;}
.y68{bottom:579.000000px;}
.y84{bottom:604.560000px;}
.y1c{bottom:607.890000px;}
.y47{bottom:609.780000px;}
.y67{bottom:610.050000px;}
.y83{bottom:635.610000px;}
.y1b{bottom:638.940000px;}
.y46{bottom:640.830000px;}
.y66{bottom:641.100000px;}
.y82{bottom:666.690000px;}
.y1a{bottom:670.020000px;}
.y45{bottom:671.910000px;}
.y65{bottom:672.180000px;}
.y81{bottom:697.740000px;}
.y19{bottom:701.070000px;}
.y44{bottom:702.960000px;}
.y64{bottom:703.230000px;}
.y80{bottom:728.790000px;}
.y18{bottom:732.120000px;}
.y43{bottom:734.010000px;}
.y63{bottom:734.280000px;}
.y7f{bottom:759.840000px;}
.y17{bottom:763.170000px;}
.y42{bottom:765.060000px;}
.y62{bottom:765.330000px;}
.y7e{bottom:790.890000px;}
.y16{bottom:794.220000px;}
.y41{bottom:796.110000px;}
.y61{bottom:796.380000px;}
.y15{bottom:816.900000px;}
.y7d{bottom:821.940000px;}
.y40{bottom:827.160000px;}
.y60{bottom:827.430000px;}
.y14{bottom:838.140000px;}
.y7c{bottom:852.990000px;}
.y3f{bottom:858.210000px;}
.y5f{bottom:858.480000px;}
.y13{bottom:860.910000px;}
.y12{bottom:882.150000px;}
.y7b{bottom:884.040000px;}
.y3e{bottom:889.260000px;}
.y5e{bottom:889.530000px;}
.y11{bottom:904.920000px;}
.y7a{bottom:915.090000px;}
.y3d{bottom:920.220000px;}
.y5d{bottom:920.580000px;}
.yf{bottom:926.160000px;}
.y10{bottom:932.910000px;}
.y79{bottom:946.140000px;}
.ye{bottom:948.840000px;}
.y3c{bottom:951.270000px;}
.y5c{bottom:951.630000px;}
.yd{bottom:972.510000px;}
.y78{bottom:977.190000px;}
.y3b{bottom:979.980000px;}
.y5b{bottom:982.680000px;}
.y3a{bottom:1008.240000px;}
.yc{bottom:1008.690000px;}
.y5a{bottom:1013.730000px;}
.y39{bottom:1039.290000px;}
.y59{bottom:1044.780000px;}
.yb{bottom:1044.960000px;}
.y38{bottom:1070.370000px;}
.ya{bottom:1070.550000px;}
.y58{bottom:1075.860000px;}
.y9{bottom:1083.420000px;}
.y8{bottom:1097.460000px;}
.y37{bottom:1101.420000px;}
.y57{bottom:1106.910000px;}
.y7{bottom:1118.970000px;}
.y36{bottom:1132.470000px;}
.y56{bottom:1137.960000px;}
.y6{bottom:1140.390000px;}
.y31{bottom:1153.710000px;}
.y3{bottom:1159.200000px;}
.y30{bottom:1173.870000px;}
.y2{bottom:1179.000000px;}
.y2f{bottom:1193.940000px;}
.y1{bottom:1196.820000px;}
.hd{height:29.310996px;}
.ha{height:29.325586px;}
.h8{height:30.113438px;}
.h10{height:38.158594px;}
.h2{height:39.708984px;}
.h7{height:43.769004px;}
.h3{height:44.238691px;}
.hc{height:46.991602px;}
.h4{height:48.477129px;}
.h13{height:50.273438px;}
.h15{height:50.800781px;}
.h11{height:59.004492px;}
.h14{height:59.343750px;}
.hf{height:65.526152px;}
.h5{height:68.554688px;}
.he{height:70.628906px;}
.hb{height:70.664062px;}
.h6{height:71.613281px;}
.h12{height:72.562500px;}
.h9{height:84.535312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.649987px;}
.xd{left:132.509987px;}
.xa{left:170.219987px;}
.xf{left:180.839987px;}
.x5{left:184.889987px;}
.xc{left:212.699987px;}
.x4{left:233.939987px;}
.x10{left:316.829987px;}
.x9{left:323.849987px;}
.x6{left:342.839987px;}
.x11{left:344.819987px;}
.xe{left:371.129987px;}
.x12{left:374.549987px;}
.x13{left:390.119987px;}
.xb{left:399.659987px;}
.x2{left:432.869987px;}
.x3{left:446.549987px;}
.x7{left:544.379973px;}
.x8{left:550.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.018880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021440pt;}
.lsc{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls9{letter-spacing:1.920000pt;}
.lsb{letter-spacing:4.800000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls10{letter-spacing:6.400000pt;}
.lse{letter-spacing:8.640000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls12{letter-spacing:13.866667pt;}
.ws4{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.680000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws1{word-spacing:-13.360000pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-4.608000pt;}
._7{margin-left:-3.712000pt;}
._5{margin-left:-2.688000pt;}
._1{margin-left:-1.097280pt;}
._3{width:0.894720pt;}
._b{width:1.814400pt;}
._2{width:2.708160pt;}
._0{width:3.680320pt;}
._f{width:4.800000pt;}
._10{width:5.760640pt;}
._a{width:6.912000pt;}
._9{width:7.808000pt;}
._c{width:9.088000pt;}
._d{width:10.560000pt;}
._6{width:11.456000pt;}
._e{width:12.383360pt;}
._12{width:13.824000pt;}
._13{width:14.720000pt;}
._17{width:18.560000pt;}
._18{width:19.840000pt;}
._11{width:20.736000pt;}
._16{width:22.464000pt;}
._4{width:23.680000pt;}
._19{width:24.576000pt;}
._15{width:25.536000pt;}
._14{width:26.560000pt;}
._1a{width:27.605333pt;}
._1b{width:118.208000pt;}
.fs4{font-size:26.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:50.640000pt;}
.y5{bottom:51.520000pt;}
.y34{bottom:69.040000pt;}
.y4{bottom:71.040000pt;}
.y33{bottom:87.440000pt;}
.y2e{bottom:89.120000pt;}
.y77{bottom:100.720000pt;}
.y2d{bottom:104.480000pt;}
.y32{bottom:105.840000pt;}
.y2c{bottom:109.120000pt;}
.y2b{bottom:120.880000pt;}
.y76{bottom:128.320000pt;}
.y92{bottom:151.040000pt;}
.y75{bottom:155.920000pt;}
.y55{bottom:160.240000pt;}
.y2a{bottom:162.640000pt;}
.y91{bottom:178.640000pt;}
.y29{bottom:181.520000pt;}
.y74{bottom:183.520000pt;}
.y54{bottom:187.840000pt;}
.y90{bottom:206.266667pt;}
.y28{bottom:209.146667pt;}
.y73{bottom:211.146667pt;}
.y53{bottom:215.466667pt;}
.y8f{bottom:233.866667pt;}
.y27{bottom:236.746667pt;}
.y72{bottom:238.746667pt;}
.y52{bottom:243.066667pt;}
.y8e{bottom:261.466667pt;}
.y26{bottom:264.346667pt;}
.y71{bottom:266.346667pt;}
.y51{bottom:270.666667pt;}
.y8d{bottom:289.066667pt;}
.y25{bottom:291.946667pt;}
.y70{bottom:293.946667pt;}
.y50{bottom:298.266667pt;}
.y8c{bottom:316.666667pt;}
.y24{bottom:319.546667pt;}
.y6f{bottom:321.546667pt;}
.y4f{bottom:325.866667pt;}
.y8b{bottom:344.186667pt;}
.y23{bottom:347.146667pt;}
.y6e{bottom:349.146667pt;}
.y4e{bottom:351.306667pt;}
.y8a{bottom:371.786667pt;}
.y22{bottom:374.746667pt;}
.y4d{bottom:376.426667pt;}
.y6d{bottom:376.666667pt;}
.y89{bottom:399.386667pt;}
.y21{bottom:402.346667pt;}
.y4c{bottom:404.026667pt;}
.y6c{bottom:404.266667pt;}
.y88{bottom:426.986667pt;}
.y20{bottom:429.946667pt;}
.y4b{bottom:431.626667pt;}
.y6b{bottom:431.866667pt;}
.y87{bottom:454.586667pt;}
.y1f{bottom:457.546667pt;}
.y4a{bottom:459.226667pt;}
.y6a{bottom:459.466667pt;}
.y86{bottom:482.186667pt;}
.y1e{bottom:485.146667pt;}
.y49{bottom:486.826667pt;}
.y69{bottom:487.066667pt;}
.y85{bottom:509.786667pt;}
.y1d{bottom:512.746667pt;}
.y48{bottom:514.426667pt;}
.y68{bottom:514.666667pt;}
.y84{bottom:537.386667pt;}
.y1c{bottom:540.346667pt;}
.y47{bottom:542.026667pt;}
.y67{bottom:542.266667pt;}
.y83{bottom:564.986667pt;}
.y1b{bottom:567.946667pt;}
.y46{bottom:569.626667pt;}
.y66{bottom:569.866667pt;}
.y82{bottom:592.613333pt;}
.y1a{bottom:595.573333pt;}
.y45{bottom:597.253333pt;}
.y65{bottom:597.493333pt;}
.y81{bottom:620.213333pt;}
.y19{bottom:623.173333pt;}
.y44{bottom:624.853333pt;}
.y64{bottom:625.093333pt;}
.y80{bottom:647.813333pt;}
.y18{bottom:650.773333pt;}
.y43{bottom:652.453333pt;}
.y63{bottom:652.693333pt;}
.y7f{bottom:675.413333pt;}
.y17{bottom:678.373333pt;}
.y42{bottom:680.053333pt;}
.y62{bottom:680.293333pt;}
.y7e{bottom:703.013333pt;}
.y16{bottom:705.973333pt;}
.y41{bottom:707.653333pt;}
.y61{bottom:707.893333pt;}
.y15{bottom:726.133333pt;}
.y7d{bottom:730.613333pt;}
.y40{bottom:735.253333pt;}
.y60{bottom:735.493333pt;}
.y14{bottom:745.013333pt;}
.y7c{bottom:758.213333pt;}
.y3f{bottom:762.853333pt;}
.y5f{bottom:763.093333pt;}
.y13{bottom:765.253333pt;}
.y12{bottom:784.133333pt;}
.y7b{bottom:785.813333pt;}
.y3e{bottom:790.453333pt;}
.y5e{bottom:790.693333pt;}
.y11{bottom:804.373333pt;}
.y7a{bottom:813.413333pt;}
.y3d{bottom:817.973333pt;}
.y5d{bottom:818.293333pt;}
.yf{bottom:823.253333pt;}
.y10{bottom:829.253333pt;}
.y79{bottom:841.013333pt;}
.ye{bottom:843.413333pt;}
.y3c{bottom:845.573333pt;}
.y5c{bottom:845.893333pt;}
.yd{bottom:864.453333pt;}
.y78{bottom:868.613333pt;}
.y3b{bottom:871.093333pt;}
.y5b{bottom:873.493333pt;}
.y3a{bottom:896.213333pt;}
.yc{bottom:896.613333pt;}
.y5a{bottom:901.093333pt;}
.y39{bottom:923.813333pt;}
.y59{bottom:928.693333pt;}
.yb{bottom:928.853333pt;}
.y38{bottom:951.440000pt;}
.ya{bottom:951.600000pt;}
.y58{bottom:956.320000pt;}
.y9{bottom:963.040000pt;}
.y8{bottom:975.520000pt;}
.y37{bottom:979.040000pt;}
.y57{bottom:983.920000pt;}
.y7{bottom:994.640000pt;}
.y36{bottom:1006.640000pt;}
.y56{bottom:1011.520000pt;}
.y6{bottom:1013.680000pt;}
.y31{bottom:1025.520000pt;}
.y3{bottom:1030.400000pt;}
.y30{bottom:1043.440000pt;}
.y2{bottom:1048.000000pt;}
.y2f{bottom:1061.280000pt;}
.y1{bottom:1063.840000pt;}
.hd{height:26.054219pt;}
.ha{height:26.067187pt;}
.h8{height:26.767500pt;}
.h10{height:33.918750pt;}
.h2{height:35.296875pt;}
.h7{height:38.905781pt;}
.h3{height:39.323281pt;}
.hc{height:41.770312pt;}
.h4{height:43.090781pt;}
.h13{height:44.687500pt;}
.h15{height:45.156250pt;}
.h11{height:52.448437pt;}
.h14{height:52.750000pt;}
.hf{height:58.245469pt;}
.h5{height:60.937500pt;}
.he{height:62.781250pt;}
.hb{height:62.812500pt;}
.h6{height:63.656250pt;}
.h12{height:64.500000pt;}
.h9{height:75.142500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.466655pt;}
.xd{left:117.786655pt;}
.xa{left:151.306655pt;}
.xf{left:160.746655pt;}
.x5{left:164.346655pt;}
.xc{left:189.066655pt;}
.x4{left:207.946655pt;}
.x10{left:281.626655pt;}
.x9{left:287.866655pt;}
.x6{left:304.746655pt;}
.x11{left:306.506655pt;}
.xe{left:329.893322pt;}
.x12{left:332.933322pt;}
.x13{left:346.773322pt;}
.xb{left:355.253322pt;}
.x2{left:384.773322pt;}
.x3{left:396.933322pt;}
.x7{left:483.893310pt;}
.x8{left:489.253322pt;}
}




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