
    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_2aace411c14f866d6883bbd5.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_a88ca0f91bba12227757ca84.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_b37e347bef08df720e84302a.woff2')format("woff");}.ff3{font-family:ff3;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: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_f64e0ff0700cd6fd8060e9e4.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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_9eed4c094fa28f4aa7fcdbed.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a1d847be7fee77c4552c378b.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsa{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.045360px;}
.ls6{letter-spacing:-0.021960px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:16.406640px;}
.ls3{letter-spacing:36.926640px;}
.ls4{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;}
.ws3{word-spacing:-16.424640px;}
.ws7{word-spacing:-15.210000px;}
.ws9{word-spacing:-15.169800px;}
.ws0{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.850000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:-10.530000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._14{margin-left:-3.443640px;}
._12{margin-left:-2.344680px;}
._0{margin-left:-1.202400px;}
._5{width:1.110000px;}
._d{width:2.765520px;}
._f{width:3.847680px;}
._27{width:4.862520px;}
._e{width:5.891760px;}
._8{width:7.154280px;}
._9{width:8.416800px;}
._18{width:9.698400px;}
._26{width:10.922760px;}
._17{width:12.144240px;}
._a{width:13.226400px;}
._15{width:16.833600px;}
._1d{width:18.036000px;}
._1e{width:19.238400px;}
._23{width:20.320560px;}
._24{width:21.537360px;}
._25{width:22.545480px;}
._13{width:23.807160px;}
._c{width:25.010280px;}
._b{width:26.016840px;}
._10{width:27.084240px;}
._1f{width:28.331640px;}
._11{width:30.240360px;}
._16{width:31.406760px;}
._1c{width:32.560920px;}
._19{width:33.577920px;}
._1a{width:34.778520px;}
._20{width:38.356560px;}
._21{width:39.572760px;}
._22{width:41.182200px;}
._1b{width:42.925680px;}
._2c{width:45.029880px;}
._2a{width:47.494800px;}
._29{width:48.576960px;}
._28{width:50.861520px;}
._2d{width:52.605000px;}
._2b{width:53.927640px;}
._4{width:65.700000px;}
._2{width:93.090000px;}
._3{width:200.970000px;}
._1{width:735.748680px;}
._7{width:1129.105680px;}
._6{width:1190.373600px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fsa{font-size:18.000000px;}
.fsb{font-size:24.120000px;}
.fs4{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:96.120000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y15{bottom:3.240000px;}
.y2d{bottom:5.670000px;}
.y2f{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y9{bottom:14.040000px;}
.y2c{bottom:14.580000px;}
.y5{bottom:16.470000px;}
.y32{bottom:20.520000px;}
.y81{bottom:30.270000px;}
.y2b{bottom:31.860000px;}
.y7{bottom:35.550000px;}
.y31{bottom:37.800000px;}
.y80{bottom:44.130000px;}
.y2a{bottom:49.080000px;}
.y22{bottom:49.950000px;}
.y30{bottom:54.990000px;}
.y3{bottom:58.140000px;}
.y29{bottom:66.360000px;}
.y21{bottom:67.140000px;}
.y28{bottom:83.640000px;}
.y20{bottom:84.420000px;}
.y27{bottom:100.830000px;}
.y1f{bottom:101.700000px;}
.y43{bottom:117.270000px;}
.y26{bottom:118.110000px;}
.y1e{bottom:118.890000px;}
.y7b{bottom:124.020000px;}
.y42{bottom:134.550000px;}
.y25{bottom:135.390000px;}
.y1d{bottom:136.170000px;}
.y7a{bottom:141.210000px;}
.y24{bottom:150.420000px;}
.y41{bottom:151.740000px;}
.y1c{bottom:153.480000px;}
.y79{bottom:158.520000px;}
.y40{bottom:169.050000px;}
.y1b{bottom:170.670000px;}
.y78{bottom:175.800000px;}
.y3f{bottom:186.330000px;}
.y1a{bottom:187.950000px;}
.y77{bottom:192.990000px;}
.y3e{bottom:203.520000px;}
.y19{bottom:205.230000px;}
.y76{bottom:210.270000px;}
.y3d{bottom:220.800000px;}
.y18{bottom:222.420000px;}
.y75{bottom:227.460000px;}
.y17{bottom:238.080000px;}
.y74{bottom:244.740000px;}
.y3c{bottom:255.270000px;}
.y73{bottom:262.020000px;}
.y3b{bottom:272.550000px;}
.y72{bottom:279.210000px;}
.y3a{bottom:289.740000px;}
.y71{bottom:296.490000px;}
.y39{bottom:307.020000px;}
.y70{bottom:313.770000px;}
.y38{bottom:324.300000px;}
.y6f{bottom:330.960000px;}
.y37{bottom:341.490000px;}
.y6e{bottom:348.240000px;}
.y36{bottom:358.770000px;}
.y6d{bottom:365.520000px;}
.y35{bottom:376.050000px;}
.y6c{bottom:382.710000px;}
.y6b{bottom:399.990000px;}
.y34{bottom:405.210000px;}
.y6a{bottom:417.270000px;}
.y33{bottom:422.490000px;}
.y69{bottom:434.460000px;}
.y16{bottom:437.250000px;}
.y68{bottom:451.740000px;}
.y67{bottom:469.020000px;}
.y66{bottom:486.210000px;}
.y65{bottom:503.490000px;}
.y2e{bottom:507.000000px;}
.y64{bottom:520.770000px;}
.y23{bottom:527.790000px;}
.y7c{bottom:530.220000px;}
.y63{bottom:537.960000px;}
.y7f{bottom:544.980000px;}
.y62{bottom:555.240000px;}
.y61{bottom:572.430000px;}
.y60{bottom:589.740000px;}
.y7d{bottom:600.990000px;}
.y5f{bottom:607.020000px;}
.y5e{bottom:624.210000px;}
.y5d{bottom:641.490000px;}
.y5c{bottom:658.770000px;}
.y5b{bottom:675.960000px;}
.y14{bottom:683.070000px;}
.y5a{bottom:693.240000px;}
.y59{bottom:710.520000px;}
.y13{bottom:717.630000px;}
.y58{bottom:727.710000px;}
.y12{bottom:737.520000px;}
.y57{bottom:744.990000px;}
.y56{bottom:762.270000px;}
.y11{bottom:771.180000px;}
.y55{bottom:779.460000px;}
.y10{bottom:788.460000px;}
.y54{bottom:796.740000px;}
.yf{bottom:800.880000px;}
.y53{bottom:814.020000px;}
.ye{bottom:822.030000px;}
.y52{bottom:831.210000px;}
.y51{bottom:848.490000px;}
.yd{bottom:853.080000px;}
.y50{bottom:865.770000px;}
.y4f{bottom:882.960000px;}
.yc{bottom:884.130000px;}
.y4e{bottom:900.240000px;}
.yb{bottom:912.570000px;}
.y4d{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y4c{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y4b{bottom:951.990000px;}
.y4a{bottom:969.180000px;}
.y49{bottom:986.460000px;}
.y48{bottom:1003.770000px;}
.y47{bottom:1020.960000px;}
.y46{bottom:1038.240000px;}
.y45{bottom:1055.520000px;}
.y44{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h13{height:12.568359px;}
.h1a{height:13.770000px;}
.h15{height:16.841602px;}
.hf{height:17.280000px;}
.h16{height:20.070000px;}
.h11{height:20.863477px;}
.he{height:27.147656px;}
.h3{height:27.630000px;}
.hd{height:28.672031px;}
.h1c{height:33.431836px;}
.h5{height:33.782520px;}
.h6{height:39.082324px;}
.h4{height:41.978320px;}
.ha{height:42.418652px;}
.h18{height:43.769004px;}
.h14{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h19{height:49.552031px;}
.h1{height:50.800781px;}
.h1b{height:55.290000px;}
.h9{height:65.526152px;}
.hc{height:67.819043px;}
.h17{height:69.030000px;}
.hb{height:76.201172px;}
.h7{height:153.930000px;}
.h12{height:154.560000px;}
.h10{height:245.100000px;}
.h0{height:1188.000000px;}
.w2{width:38.070000px;}
.w6{width:249.600000px;}
.w7{width:371.370000px;}
.w5{width:559.230000px;}
.w3{width:769.050000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x4{left:8.640000px;}
.xf{left:20.160000px;}
.x10{left:26.910000px;}
.x2{left:53.999986px;}
.x1{left:60.749986px;}
.x3{left:69.390000px;}
.x18{left:78.390000px;}
.x16{left:86.759986px;}
.x14{left:88.199986px;}
.x19{left:101.190000px;}
.x5{left:108.540000px;}
.x8{left:116.099986px;}
.xc{left:119.969986px;}
.xb{left:329.339986px;}
.x9{left:410.969986px;}
.x7{left:459.029986px;}
.xa{left:465.779986px;}
.xd{left:475.889986px;}
.x12{left:479.309986px;}
.x15{left:505.319986px;}
.x13{left:506.759986px;}
.x17{left:526.559986px;}
.xe{left:621.420000px;}
.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;}
.lsa{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.040320pt;}
.ls6{letter-spacing:-0.019520pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:14.583680pt;}
.ls3{letter-spacing:32.823680pt;}
.ls4{letter-spacing:41.143680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws2{word-spacing:-14.620480pt;}
.ws3{word-spacing:-14.599680pt;}
.ws7{word-spacing:-13.520000pt;}
.ws9{word-spacing:-13.484267pt;}
.ws0{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.200000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:-9.360000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._14{margin-left:-3.061013pt;}
._12{margin-left:-2.084160pt;}
._0{margin-left:-1.068800pt;}
._5{width:0.986667pt;}
._d{width:2.458240pt;}
._f{width:3.420160pt;}
._27{width:4.322240pt;}
._e{width:5.237120pt;}
._8{width:6.359360pt;}
._9{width:7.481600pt;}
._18{width:8.620800pt;}
._26{width:9.709120pt;}
._17{width:10.794880pt;}
._a{width:11.756800pt;}
._15{width:14.963200pt;}
._1d{width:16.032000pt;}
._1e{width:17.100800pt;}
._23{width:18.062720pt;}
._24{width:19.144320pt;}
._25{width:20.040427pt;}
._13{width:21.161920pt;}
._c{width:22.231360pt;}
._b{width:23.126080pt;}
._10{width:24.074880pt;}
._1f{width:25.183680pt;}
._11{width:26.880320pt;}
._16{width:27.917120pt;}
._1c{width:28.943040pt;}
._19{width:29.847040pt;}
._1a{width:30.914240pt;}
._20{width:34.094720pt;}
._21{width:35.175787pt;}
._22{width:36.606400pt;}
._1b{width:38.156160pt;}
._2c{width:40.026560pt;}
._2a{width:42.217600pt;}
._29{width:43.179520pt;}
._28{width:45.210240pt;}
._2d{width:46.760000pt;}
._2b{width:47.935680pt;}
._4{width:58.400000pt;}
._2{width:82.746667pt;}
._3{width:178.640000pt;}
._1{width:653.998827pt;}
._7{width:1003.649493pt;}
._6{width:1058.109867pt;}
.fsa{font-size:16.000000pt;}
.fsb{font-size:21.440000pt;}
.fs4{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:85.440000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y15{bottom:2.880000pt;}
.y2d{bottom:5.040000pt;}
.y2f{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y9{bottom:12.480000pt;}
.y2c{bottom:12.960000pt;}
.y5{bottom:14.640000pt;}
.y32{bottom:18.240000pt;}
.y81{bottom:26.906667pt;}
.y2b{bottom:28.320000pt;}
.y7{bottom:31.600000pt;}
.y31{bottom:33.600000pt;}
.y80{bottom:39.226667pt;}
.y2a{bottom:43.626667pt;}
.y22{bottom:44.400000pt;}
.y30{bottom:48.880000pt;}
.y3{bottom:51.680000pt;}
.y29{bottom:58.986667pt;}
.y21{bottom:59.680000pt;}
.y28{bottom:74.346667pt;}
.y20{bottom:75.040000pt;}
.y27{bottom:89.626667pt;}
.y1f{bottom:90.400000pt;}
.y43{bottom:104.240000pt;}
.y26{bottom:104.986667pt;}
.y1e{bottom:105.680000pt;}
.y7b{bottom:110.240000pt;}
.y42{bottom:119.600000pt;}
.y25{bottom:120.346667pt;}
.y1d{bottom:121.040000pt;}
.y7a{bottom:125.520000pt;}
.y24{bottom:133.706667pt;}
.y41{bottom:134.880000pt;}
.y1c{bottom:136.426667pt;}
.y79{bottom:140.906667pt;}
.y40{bottom:150.266667pt;}
.y1b{bottom:151.706667pt;}
.y78{bottom:156.266667pt;}
.y3f{bottom:165.626667pt;}
.y1a{bottom:167.066667pt;}
.y77{bottom:171.546667pt;}
.y3e{bottom:180.906667pt;}
.y19{bottom:182.426667pt;}
.y76{bottom:186.906667pt;}
.y3d{bottom:196.266667pt;}
.y18{bottom:197.706667pt;}
.y75{bottom:202.186667pt;}
.y17{bottom:211.626667pt;}
.y74{bottom:217.546667pt;}
.y3c{bottom:226.906667pt;}
.y73{bottom:232.906667pt;}
.y3b{bottom:242.266667pt;}
.y72{bottom:248.186667pt;}
.y3a{bottom:257.546667pt;}
.y71{bottom:263.546667pt;}
.y39{bottom:272.906667pt;}
.y70{bottom:278.906667pt;}
.y38{bottom:288.266667pt;}
.y6f{bottom:294.186667pt;}
.y37{bottom:303.546667pt;}
.y6e{bottom:309.546667pt;}
.y36{bottom:318.906667pt;}
.y6d{bottom:324.906667pt;}
.y35{bottom:334.266667pt;}
.y6c{bottom:340.186667pt;}
.y6b{bottom:355.546667pt;}
.y34{bottom:360.186667pt;}
.y6a{bottom:370.906667pt;}
.y33{bottom:375.546667pt;}
.y69{bottom:386.186667pt;}
.y16{bottom:388.666667pt;}
.y68{bottom:401.546667pt;}
.y67{bottom:416.906667pt;}
.y66{bottom:432.186667pt;}
.y65{bottom:447.546667pt;}
.y2e{bottom:450.666667pt;}
.y64{bottom:462.906667pt;}
.y23{bottom:469.146667pt;}
.y7c{bottom:471.306667pt;}
.y63{bottom:478.186667pt;}
.y7f{bottom:484.426667pt;}
.y62{bottom:493.546667pt;}
.y61{bottom:508.826667pt;}
.y60{bottom:524.213333pt;}
.y7d{bottom:534.213333pt;}
.y5f{bottom:539.573333pt;}
.y5e{bottom:554.853333pt;}
.y5d{bottom:570.213333pt;}
.y5c{bottom:585.573333pt;}
.y5b{bottom:600.853333pt;}
.y14{bottom:607.173333pt;}
.y5a{bottom:616.213333pt;}
.y59{bottom:631.573333pt;}
.y13{bottom:637.893333pt;}
.y58{bottom:646.853333pt;}
.y12{bottom:655.573333pt;}
.y57{bottom:662.213333pt;}
.y56{bottom:677.573333pt;}
.y11{bottom:685.493333pt;}
.y55{bottom:692.853333pt;}
.y10{bottom:700.853333pt;}
.y54{bottom:708.213333pt;}
.yf{bottom:711.893333pt;}
.y53{bottom:723.573333pt;}
.ye{bottom:730.693333pt;}
.y52{bottom:738.853333pt;}
.y51{bottom:754.213333pt;}
.yd{bottom:758.293333pt;}
.y50{bottom:769.573333pt;}
.y4f{bottom:784.853333pt;}
.yc{bottom:785.893333pt;}
.y4e{bottom:800.213333pt;}
.yb{bottom:811.173333pt;}
.y4d{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y4c{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y4b{bottom:846.213333pt;}
.y4a{bottom:861.493333pt;}
.y49{bottom:876.853333pt;}
.y48{bottom:892.240000pt;}
.y47{bottom:907.520000pt;}
.y46{bottom:922.880000pt;}
.y45{bottom:938.240000pt;}
.y44{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h13{height:11.171875pt;}
.h1a{height:12.240000pt;}
.h15{height:14.970312pt;}
.hf{height:15.360000pt;}
.h16{height:17.840000pt;}
.h11{height:18.545312pt;}
.he{height:24.131250pt;}
.h3{height:24.560000pt;}
.hd{height:25.486250pt;}
.h1c{height:29.717188pt;}
.h5{height:30.028906pt;}
.h6{height:34.739844pt;}
.h4{height:37.314062pt;}
.ha{height:37.705469pt;}
.h18{height:38.905781pt;}
.h14{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h19{height:44.046250pt;}
.h1{height:45.156250pt;}
.h1b{height:49.146667pt;}
.h9{height:58.245469pt;}
.hc{height:60.283594pt;}
.h17{height:61.360000pt;}
.hb{height:67.734375pt;}
.h7{height:136.826667pt;}
.h12{height:137.386667pt;}
.h10{height:217.866667pt;}
.h0{height:1056.000000pt;}
.w2{width:33.840000pt;}
.w6{width:221.866667pt;}
.w7{width:330.106667pt;}
.w5{width:497.093333pt;}
.w3{width:683.600000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x4{left:7.680000pt;}
.xf{left:17.920000pt;}
.x10{left:23.920000pt;}
.x2{left:47.999988pt;}
.x1{left:53.999988pt;}
.x3{left:61.680000pt;}
.x18{left:69.680000pt;}
.x16{left:77.119988pt;}
.x14{left:78.399988pt;}
.x19{left:89.946667pt;}
.x5{left:96.480000pt;}
.x8{left:103.199988pt;}
.xc{left:106.639988pt;}
.xb{left:292.746655pt;}
.x9{left:365.306655pt;}
.x7{left:408.026655pt;}
.xa{left:414.026655pt;}
.xd{left:423.013321pt;}
.x12{left:426.053321pt;}
.x15{left:449.173321pt;}
.x13{left:450.453321pt;}
.x17{left:468.053321pt;}
.xe{left:552.373333pt;}
.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; }
  