
    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_62e125759aedab9fbcc00468.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_f1cd0ef549fcbadc961e48c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_54881e896efd32be63c5eae6.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_e7d55f911f7bca760a9572fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_f141d247ba9b118b38d53206.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_efdce326db5c7b3d928cf4da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_863e7b962f2ed71675ce9c7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_4103b11e298b03877ca43d92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_33600d4106254096c58c3c43.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls1f{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.618000px;}
.ls5{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.529200px;}
.lse{letter-spacing:-0.478200px;}
.lsd{letter-spacing:-0.270600px;}
.ls10{letter-spacing:-0.227400px;}
.ls16{letter-spacing:-0.184200px;}
.ls6{letter-spacing:-0.169800px;}
.lsf{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.085200px;}
.ls20{letter-spacing:-0.069000px;}
.ls14{letter-spacing:-0.054720px;}
.lsa{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.011520px;}
.ls1a{letter-spacing:0.023040px;}
.ls19{letter-spacing:0.054720px;}
.ls12{letter-spacing:0.100800px;}
.ls13{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.187200px;}
.ls7{letter-spacing:0.209400px;}
.ls1c{letter-spacing:0.276480px;}
.ls3{letter-spacing:0.319680px;}
.ls11{letter-spacing:0.319800px;}
.lsc{letter-spacing:0.328320px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:7.747200px;}
.ls18{letter-spacing:29.347200px;}
.ls1b{letter-spacing:39.161280px;}
.ls1e{letter-spacing:39.185280px;}
.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;}
}
.wse{word-spacing:-14.892600px;}
.ws11{word-spacing:-14.595840px;}
.ws10{word-spacing:-14.584320px;}
.ws6{word-spacing:-14.572800px;}
.ws13{word-spacing:-14.503800px;}
.ws12{word-spacing:-14.478000px;}
.wsf{word-spacing:-14.388600px;}
.wsd{word-spacing:-14.345400px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.356600px;}
.ws5{word-spacing:-13.147200px;}
.ws3{word-spacing:-12.977400px;}
.ws2{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.527600px;}
.wsb{word-spacing:-10.134600px;}
.wsc{word-spacing:-9.092400px;}
.ws9{word-spacing:-7.920000px;}
.ws8{word-spacing:-7.884000px;}
.wsa{word-spacing:0.000000px;}
._1e{margin-left:-5.181120px;}
._1d{margin-left:-4.158720px;}
._d{margin-left:-2.778960px;}
._2{margin-left:-1.476000px;}
._1{width:1.488000px;}
._8{width:2.569680px;}
._9{width:4.308720px;}
._a{width:5.318640px;}
._f{width:6.872400px;}
._7{width:8.067600px;}
._18{width:9.190080px;}
._b{width:10.236960px;}
._c{width:11.389920px;}
._15{width:13.049280px;}
._6{width:14.820480px;}
._e{width:16.195440px;}
._12{width:17.752320px;}
._1b{width:19.000800px;}
._1a{width:20.004480px;}
._21{width:21.130560px;}
._1c{width:22.190400px;}
._20{width:23.780160px;}
._28{width:24.867840px;}
._10{width:26.893440px;}
._11{width:28.271520px;}
._26{width:29.892960px;}
._25{width:30.934080px;}
._24{width:32.825760px;}
._1f{width:34.209120px;}
._13{width:35.438400px;}
._14{width:36.516960px;}
._19{width:38.069760px;}
._22{width:39.412800px;}
._23{width:40.706880px;}
._27{width:44.314560px;}
._16{width:46.896480px;}
._0{width:75.000000px;}
._3{width:181.458000px;}
._4{width:194.109840px;}
._5{width:202.852800px;}
._17{width:1112.887200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.610000px;}
.y52{bottom:26.310000px;}
.y51{bottom:45.030000px;}
.y50{bottom:55.650000px;}
.y7{bottom:56.520000px;}
.y4f{bottom:66.090000px;}
.y6{bottom:70.596000px;}
.y4e{bottom:76.710000px;}
.y4d{bottom:94.350000px;}
.y8a{bottom:113.796000px;}
.y89{bottom:133.236000px;}
.y3d{bottom:144.936000px;}
.y4c{bottom:147.270000px;}
.y88{bottom:152.490000px;}
.y4b{bottom:161.310000px;}
.y3c{bottom:164.370000px;}
.y87{bottom:171.930000px;}
.y4a{bottom:175.350000px;}
.y3b{bottom:183.630000px;}
.y49{bottom:189.390000px;}
.y86{bottom:191.190000px;}
.y3a{bottom:203.070000px;}
.y48{bottom:203.610000px;}
.y85{bottom:210.630000px;}
.y47{bottom:217.650000px;}
.y39{bottom:222.330000px;}
.y84{bottom:229.890000px;}
.y46{bottom:231.690000px;}
.y38{bottom:241.770000px;}
.y45{bottom:246.990000px;}
.y83{bottom:249.330000px;}
.y37{bottom:261.030000px;}
.y44{bottom:266.430000px;}
.y82{bottom:268.590000px;}
.y36{bottom:280.470000px;}
.y43{bottom:280.515000px;}
.y81{bottom:287.850000px;}
.y42{bottom:294.555000px;}
.y35{bottom:299.730000px;}
.y80{bottom:307.290000px;}
.y41{bottom:308.775000px;}
.y34{bottom:318.990000px;}
.y40{bottom:322.815000px;}
.y7f{bottom:326.550000px;}
.y3f{bottom:337.215000px;}
.y33{bottom:338.475000px;}
.y7e{bottom:346.035000px;}
.y32{bottom:357.555000px;}
.y7d{bottom:365.295000px;}
.y31{bottom:375.195000px;}
.y7c{bottom:384.735000px;}
.y30{bottom:392.655000px;}
.y7b{bottom:403.995000px;}
.y2f{bottom:410.295000px;}
.y7a{bottom:423.435000px;}
.y2e{bottom:427.935000px;}
.y79{bottom:442.695000px;}
.y2d{bottom:445.395000px;}
.y78{bottom:462.135000px;}
.y2c{bottom:463.035000px;}
.y2b{bottom:480.675000px;}
.y77{bottom:481.395000px;}
.y2a{bottom:498.135000px;}
.y76{bottom:500.835000px;}
.y29{bottom:515.775000px;}
.y75{bottom:520.095000px;}
.y28{bottom:533.415000px;}
.y74{bottom:539.535000px;}
.y27{bottom:551.055000px;}
.y73{bottom:558.795000px;}
.y8c{bottom:562.035000px;}
.y26{bottom:568.515000px;}
.y72{bottom:578.055000px;}
.y8b{bottom:579.675000px;}
.y25{bottom:586.155000px;}
.y71{bottom:597.495000px;}
.y3e{bottom:601.815000px;}
.y24{bottom:603.825000px;}
.y70{bottom:616.785000px;}
.y23{bottom:621.285000px;}
.y6f{bottom:636.225000px;}
.y22{bottom:641.085000px;}
.y6e{bottom:655.485000px;}
.y21{bottom:658.725000px;}
.y6d{bottom:674.925000px;}
.y20{bottom:676.365000px;}
.y1f{bottom:694.005000px;}
.y6c{bottom:694.185000px;}
.y1e{bottom:711.465000px;}
.y6b{bottom:713.625000px;}
.y1d{bottom:729.105000px;}
.y6a{bottom:732.885000px;}
.y1c{bottom:746.745000px;}
.y69{bottom:752.325000px;}
.y1b{bottom:764.205000px;}
.y68{bottom:771.585000px;}
.y1a{bottom:781.845000px;}
.y67{bottom:791.025000px;}
.y19{bottom:799.485000px;}
.y66{bottom:810.285000px;}
.y18{bottom:817.125000px;}
.y65{bottom:829.725000px;}
.y17{bottom:834.585000px;}
.y64{bottom:848.985000px;}
.y16{bottom:852.225000px;}
.y63{bottom:868.245000px;}
.y15{bottom:869.865000px;}
.y14{bottom:887.370000px;}
.y62{bottom:887.730000px;}
.y13{bottom:905.010000px;}
.y61{bottom:906.990000px;}
.y12{bottom:922.650000px;}
.y60{bottom:926.430000px;}
.y11{bottom:940.110000px;}
.y5f{bottom:945.690000px;}
.y10{bottom:957.750000px;}
.y5e{bottom:965.130000px;}
.yf{bottom:975.030000px;}
.y5d{bottom:984.390000px;}
.ye{bottom:991.410000px;}
.y5c{bottom:1003.830000px;}
.yd{bottom:1010.490000px;}
.y5b{bottom:1023.090000px;}
.yc{bottom:1028.310000px;}
.y5a{bottom:1042.530000px;}
.yb{bottom:1047.750000px;}
.y59{bottom:1061.790000px;}
.ya{bottom:1067.730000px;}
.y58{bottom:1081.230000px;}
.y9{bottom:1090.590000px;}
.y57{bottom:1100.490000px;}
.y8{bottom:1112.550000px;}
.y56{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y55{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y54{bottom:1197.540000px;}
.ha{height:30.480469px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.h7{height:56.084062px;}
.h6{height:65.837812px;}
.h8{height:349.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xb{left:113.616000px;}
.x3{left:129.455987px;}
.xc{left:134.994000px;}
.x5{left:138.635987px;}
.xf{left:140.075987px;}
.xa{left:162.029987px;}
.xe{left:216.029987px;}
.x7{left:320.474987px;}
.x9{left:336.494987px;}
.x4{left:367.454987px;}
.x6{left:411.014987px;}
.x2{left:448.274987px;}
.x8{left:562.424987px;}
.xd{left:571.424987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.549333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.470400pt;}
.lse{letter-spacing:-0.425067pt;}
.lsd{letter-spacing:-0.240533pt;}
.ls10{letter-spacing:-0.202133pt;}
.ls16{letter-spacing:-0.163733pt;}
.ls6{letter-spacing:-0.150933pt;}
.lsf{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls20{letter-spacing:-0.061333pt;}
.ls14{letter-spacing:-0.048640pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.010240pt;}
.ls1a{letter-spacing:0.020480pt;}
.ls19{letter-spacing:0.048640pt;}
.ls12{letter-spacing:0.089600pt;}
.ls13{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.166400pt;}
.ls7{letter-spacing:0.186133pt;}
.ls1c{letter-spacing:0.245760pt;}
.ls3{letter-spacing:0.284160pt;}
.ls11{letter-spacing:0.284267pt;}
.lsc{letter-spacing:0.291840pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:6.886400pt;}
.ls18{letter-spacing:26.086400pt;}
.ls1b{letter-spacing:34.810027pt;}
.ls1e{letter-spacing:34.831360pt;}
.wse{word-spacing:-13.237867pt;}
.ws11{word-spacing:-12.974080pt;}
.ws10{word-spacing:-12.963840pt;}
.ws6{word-spacing:-12.953600pt;}
.ws13{word-spacing:-12.892267pt;}
.ws12{word-spacing:-12.869333pt;}
.wsf{word-spacing:-12.789867pt;}
.wsd{word-spacing:-12.751467pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.872533pt;}
.ws5{word-spacing:-11.686400pt;}
.ws3{word-spacing:-11.535467pt;}
.ws2{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.357867pt;}
.wsb{word-spacing:-9.008533pt;}
.wsc{word-spacing:-8.082133pt;}
.ws9{word-spacing:-7.040000pt;}
.ws8{word-spacing:-7.008000pt;}
.wsa{word-spacing:0.000000pt;}
._1e{margin-left:-4.605440pt;}
._1d{margin-left:-3.696640pt;}
._d{margin-left:-2.470187pt;}
._2{margin-left:-1.312000pt;}
._1{width:1.322667pt;}
._8{width:2.284160pt;}
._9{width:3.829973pt;}
._a{width:4.727680pt;}
._f{width:6.108800pt;}
._7{width:7.171200pt;}
._18{width:8.168960pt;}
._b{width:9.099520pt;}
._c{width:10.124373pt;}
._15{width:11.599360pt;}
._6{width:13.173760pt;}
._e{width:14.395947pt;}
._12{width:15.779840pt;}
._1b{width:16.889600pt;}
._1a{width:17.781760pt;}
._21{width:18.782720pt;}
._1c{width:19.724800pt;}
._20{width:21.137920pt;}
._28{width:22.104747pt;}
._10{width:23.905280pt;}
._11{width:25.130240pt;}
._26{width:26.571520pt;}
._25{width:27.496960pt;}
._24{width:29.178453pt;}
._1f{width:30.408107pt;}
._13{width:31.500800pt;}
._14{width:32.459520pt;}
._19{width:33.839787pt;}
._22{width:35.033600pt;}
._23{width:36.183893pt;}
._27{width:39.390720pt;}
._16{width:41.685760pt;}
._0{width:66.666667pt;}
._3{width:161.296000pt;}
._4{width:172.542080pt;}
._5{width:180.313600pt;}
._17{width:989.233067pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:4.986667pt;}
.y52{bottom:23.386667pt;}
.y51{bottom:40.026667pt;}
.y50{bottom:49.466667pt;}
.y7{bottom:50.240000pt;}
.y4f{bottom:58.746667pt;}
.y6{bottom:62.752000pt;}
.y4e{bottom:68.186667pt;}
.y4d{bottom:83.866667pt;}
.y8a{bottom:101.152000pt;}
.y89{bottom:118.432000pt;}
.y3d{bottom:128.832000pt;}
.y4c{bottom:130.906667pt;}
.y88{bottom:135.546667pt;}
.y4b{bottom:143.386667pt;}
.y3c{bottom:146.106667pt;}
.y87{bottom:152.826667pt;}
.y4a{bottom:155.866667pt;}
.y3b{bottom:163.226667pt;}
.y49{bottom:168.346667pt;}
.y86{bottom:169.946667pt;}
.y3a{bottom:180.506667pt;}
.y48{bottom:180.986667pt;}
.y85{bottom:187.226667pt;}
.y47{bottom:193.466667pt;}
.y39{bottom:197.626667pt;}
.y84{bottom:204.346667pt;}
.y46{bottom:205.946667pt;}
.y38{bottom:214.906667pt;}
.y45{bottom:219.546667pt;}
.y83{bottom:221.626667pt;}
.y37{bottom:232.026667pt;}
.y44{bottom:236.826667pt;}
.y82{bottom:238.746667pt;}
.y36{bottom:249.306667pt;}
.y43{bottom:249.346667pt;}
.y81{bottom:255.866667pt;}
.y42{bottom:261.826667pt;}
.y35{bottom:266.426667pt;}
.y80{bottom:273.146667pt;}
.y41{bottom:274.466667pt;}
.y34{bottom:283.546667pt;}
.y40{bottom:286.946667pt;}
.y7f{bottom:290.266667pt;}
.y3f{bottom:299.746667pt;}
.y33{bottom:300.866667pt;}
.y7e{bottom:307.586667pt;}
.y32{bottom:317.826667pt;}
.y7d{bottom:324.706667pt;}
.y31{bottom:333.506667pt;}
.y7c{bottom:341.986667pt;}
.y30{bottom:349.026667pt;}
.y7b{bottom:359.106667pt;}
.y2f{bottom:364.706667pt;}
.y7a{bottom:376.386667pt;}
.y2e{bottom:380.386667pt;}
.y79{bottom:393.506667pt;}
.y2d{bottom:395.906667pt;}
.y78{bottom:410.786667pt;}
.y2c{bottom:411.586667pt;}
.y2b{bottom:427.266667pt;}
.y77{bottom:427.906667pt;}
.y2a{bottom:442.786667pt;}
.y76{bottom:445.186667pt;}
.y29{bottom:458.466667pt;}
.y75{bottom:462.306667pt;}
.y28{bottom:474.146667pt;}
.y74{bottom:479.586667pt;}
.y27{bottom:489.826667pt;}
.y73{bottom:496.706667pt;}
.y8c{bottom:499.586667pt;}
.y26{bottom:505.346667pt;}
.y72{bottom:513.826667pt;}
.y8b{bottom:515.266667pt;}
.y25{bottom:521.026667pt;}
.y71{bottom:531.106667pt;}
.y3e{bottom:534.946667pt;}
.y24{bottom:536.733333pt;}
.y70{bottom:548.253333pt;}
.y23{bottom:552.253333pt;}
.y6f{bottom:565.533333pt;}
.y22{bottom:569.853333pt;}
.y6e{bottom:582.653333pt;}
.y21{bottom:585.533333pt;}
.y6d{bottom:599.933333pt;}
.y20{bottom:601.213333pt;}
.y1f{bottom:616.893333pt;}
.y6c{bottom:617.053333pt;}
.y1e{bottom:632.413333pt;}
.y6b{bottom:634.333333pt;}
.y1d{bottom:648.093333pt;}
.y6a{bottom:651.453333pt;}
.y1c{bottom:663.773333pt;}
.y69{bottom:668.733333pt;}
.y1b{bottom:679.293333pt;}
.y68{bottom:685.853333pt;}
.y1a{bottom:694.973333pt;}
.y67{bottom:703.133333pt;}
.y19{bottom:710.653333pt;}
.y66{bottom:720.253333pt;}
.y18{bottom:726.333333pt;}
.y65{bottom:737.533333pt;}
.y17{bottom:741.853333pt;}
.y64{bottom:754.653333pt;}
.y16{bottom:757.533333pt;}
.y63{bottom:771.773333pt;}
.y15{bottom:773.213333pt;}
.y14{bottom:788.773333pt;}
.y62{bottom:789.093333pt;}
.y13{bottom:804.453333pt;}
.y61{bottom:806.213333pt;}
.y12{bottom:820.133333pt;}
.y60{bottom:823.493333pt;}
.y11{bottom:835.653333pt;}
.y5f{bottom:840.613333pt;}
.y10{bottom:851.333333pt;}
.y5e{bottom:857.893333pt;}
.yf{bottom:866.693333pt;}
.y5d{bottom:875.013333pt;}
.ye{bottom:881.253333pt;}
.y5c{bottom:892.293333pt;}
.yd{bottom:898.213333pt;}
.y5b{bottom:909.413333pt;}
.yc{bottom:914.053333pt;}
.y5a{bottom:926.693333pt;}
.yb{bottom:931.333333pt;}
.y59{bottom:943.813333pt;}
.ya{bottom:949.093333pt;}
.y58{bottom:961.093333pt;}
.y9{bottom:969.413333pt;}
.y57{bottom:978.213333pt;}
.y8{bottom:988.933333pt;}
.y56{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y55{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y54{bottom:1064.480000pt;}
.ha{height:27.093750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.h7{height:49.852500pt;}
.h6{height:58.522500pt;}
.h8{height:311.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xb{left:100.992000pt;}
.x3{left:115.071988pt;}
.xc{left:119.994667pt;}
.x5{left:123.231988pt;}
.xf{left:124.511988pt;}
.xa{left:144.026655pt;}
.xe{left:192.026655pt;}
.x7{left:284.866655pt;}
.x9{left:299.106655pt;}
.x4{left:326.626655pt;}
.x6{left:365.346655pt;}
.x2{left:398.466655pt;}
.x8{left:499.933322pt;}
.xd{left:507.933322pt;}
}




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