
    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_88c0e6262e93ba1e34643be0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0540f9952009530c831b10e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_3db7ca50a3531dd159191398.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5237c3568450e42a8026b616.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c7405ea22031ab4ddb43a4f1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_326fc146572763b1d26645cf.woff')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.223800px;}
.ls5{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.322800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.864000px;}
.ls1{letter-spacing:63.720000px;}
.ls12{letter-spacing:1020.569760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-24.262800px;}
.wse{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.792000px;}
.ws10{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.ws8{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.836200px;}
.ws6{word-spacing:0.000000px;}
.ws2{word-spacing:51.660000px;}
._3{margin-left:-2.167920px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._6{width:3.264000px;}
._5{width:4.512000px;}
._c{width:6.144000px;}
._d{width:7.632000px;}
._e{width:9.288000px;}
._7{width:10.848000px;}
._8{width:11.860080px;}
._9{width:13.824000px;}
._a{width:14.944080px;}
._b{width:16.159920px;}
._f{width:19.080000px;}
._10{width:20.288160px;}
._13{width:22.008000px;}
._14{width:23.712000px;}
._1a{width:24.812160px;}
._1d{width:26.451840px;}
._18{width:33.458880px;}
._15{width:34.704000px;}
._16{width:36.456000px;}
._20{width:39.240000px;}
._21{width:40.316160px;}
._11{width:42.264000px;}
._12{width:43.324080px;}
._4{width:63.996000px;}
._1e{width:92.808000px;}
._1f{width:94.288080px;}
._17{width:298.920000px;}
._19{width:553.032000px;}
._1b{width:929.136000px;}
._1c{width:1020.576000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.940000px;}
.y7{bottom:7.920000px;}
.y64{bottom:10.620000px;}
.y75{bottom:10.800000px;}
.y82{bottom:10.974000px;}
.y68{bottom:10.980000px;}
.y6a{bottom:11.160000px;}
.y66{bottom:11.205000px;}
.y9{bottom:23.220000px;}
.y5{bottom:25.380000px;}
.y6{bottom:33.120000px;}
.y8{bottom:40.500000px;}
.y4{bottom:42.660000px;}
.yd{bottom:60.660000px;}
.yc{bottom:97.236000px;}
.y80{bottom:121.716000px;}
.y61{bottom:138.816000px;}
.ya0{bottom:141.876000px;}
.y2a{bottom:145.476000px;}
.y81{bottom:145.836000px;}
.y5d{bottom:149.256000px;}
.y47{bottom:159.510000px;}
.y7f{bottom:169.950000px;}
.y9f{bottom:172.830000px;}
.y60{bottom:174.450000px;}
.y29{bottom:176.430000px;}
.y5c{bottom:180.210000px;}
.y46{bottom:190.650000px;}
.ya7{bottom:200.910000px;}
.y9e{bottom:203.970000px;}
.y28{bottom:207.390000px;}
.y5b{bottom:211.350000px;}
.y45{bottom:221.610000px;}
.ya6{bottom:232.050000px;}
.y9d{bottom:234.930000px;}
.y7e{bottom:237.090000px;}
.y27{bottom:238.530000px;}
.y5a{bottom:242.310000px;}
.y44{bottom:252.750000px;}
.ya5{bottom:263.010000px;}
.y9c{bottom:265.890000px;}
.y7d{bottom:268.050000px;}
.y26{bottom:269.490000px;}
.y59{bottom:273.450000px;}
.y43{bottom:283.710000px;}
.ya4{bottom:294.150000px;}
.y9b{bottom:297.030000px;}
.y7c{bottom:299.190000px;}
.y25{bottom:300.630000px;}
.y58{bottom:304.410000px;}
.y42{bottom:314.850000px;}
.ya3{bottom:325.155000px;}
.y9a{bottom:328.035000px;}
.y7b{bottom:330.195000px;}
.y24{bottom:331.635000px;}
.y57{bottom:335.595000px;}
.y41{bottom:345.855000px;}
.y7a{bottom:356.475000px;}
.y99{bottom:359.175000px;}
.ya2{bottom:360.795000px;}
.y23{bottom:362.775000px;}
.y56{bottom:366.555000px;}
.y79{bottom:367.995000px;}
.y40{bottom:376.995000px;}
.y98{bottom:390.135000px;}
.y78{bottom:392.115000px;}
.y22{bottom:393.735000px;}
.y55{bottom:397.695000px;}
.y3f{bottom:407.955000px;}
.y77{bottom:416.055000px;}
.y97{bottom:421.275000px;}
.y21{bottom:424.875000px;}
.y54{bottom:428.655000px;}
.y3e{bottom:439.095000px;}
.y76{bottom:440.175000px;}
.y96{bottom:452.235000px;}
.y20{bottom:455.835000px;}
.y53{bottom:459.795000px;}
.y74{bottom:464.115000px;}
.y3d{bottom:470.055000px;}
.y95{bottom:483.375000px;}
.y1f{bottom:486.975000px;}
.y52{bottom:490.755000px;}
.y3c{bottom:501.195000px;}
.y73{bottom:501.735000px;}
.y94{bottom:514.335000px;}
.y1e{bottom:517.575000px;}
.y51{bottom:521.895000px;}
.y72{bottom:531.435000px;}
.y3b{bottom:532.155000px;}
.y93{bottom:545.475000px;}
.y1d{bottom:549.075000px;}
.y50{bottom:552.855000px;}
.y71{bottom:562.395000px;}
.y3a{bottom:563.295000px;}
.y92{bottom:576.465000px;}
.y1c{bottom:580.065000px;}
.y4f{bottom:584.025000px;}
.y70{bottom:593.385000px;}
.y39{bottom:594.285000px;}
.y91{bottom:607.605000px;}
.y1b{bottom:611.205000px;}
.y4e{bottom:614.985000px;}
.y6f{bottom:624.525000px;}
.y38{bottom:625.425000px;}
.y90{bottom:638.565000px;}
.y4d{bottom:646.125000px;}
.y1a{bottom:649.005000px;}
.y6e{bottom:655.485000px;}
.y37{bottom:656.385000px;}
.y8f{bottom:669.705000px;}
.y4c{bottom:677.085000px;}
.y19{bottom:680.145000px;}
.y5f{bottom:681.765000px;}
.yaa{bottom:687.165000px;}
.y36{bottom:687.525000px;}
.y6d{bottom:693.465000px;}
.y8e{bottom:700.665000px;}
.y18{bottom:704.265000px;}
.y4b{bottom:708.225000px;}
.y6c{bottom:717.405000px;}
.y35{bottom:718.485000px;}
.y8d{bottom:731.805000px;}
.y4a{bottom:739.185000px;}
.y6b{bottom:741.525000px;}
.y17{bottom:742.245000px;}
.ya1{bottom:743.685000px;}
.y34{bottom:749.085000px;}
.y5e{bottom:749.445000px;}
.y8c{bottom:762.765000px;}
.y69{bottom:765.465000px;}
.y16{bottom:766.365000px;}
.y49{bottom:770.145000px;}
.y33{bottom:780.585000px;}
.y67{bottom:789.585000px;}
.y8b{bottom:793.905000px;}
.y15{bottom:797.505000px;}
.y48{bottom:805.785000px;}
.y32{bottom:811.545000px;}
.y65{bottom:813.525000px;}
.y8a{bottom:824.910000px;}
.y14{bottom:828.510000px;}
.y63{bottom:837.690000px;}
.y31{bottom:842.730000px;}
.y89{bottom:856.050000px;}
.y13{bottom:859.650000px;}
.y30{bottom:873.690000px;}
.y62{bottom:875.130000px;}
.y12{bottom:890.610000px;}
.y88{bottom:891.690000px;}
.y2f{bottom:904.830000px;}
.y87{bottom:928.410000px;}
.y11{bottom:932.730000px;}
.ya9{bottom:935.430000px;}
.y2e{bottom:935.790000px;}
.y86{bottom:959.550000px;}
.y2d{bottom:966.930000px;}
.y10{bottom:969.090000px;}
.y85{bottom:985.830000px;}
.y84{bottom:997.350000px;}
.y2c{bottom:997.890000px;}
.yf{bottom:1003.110000px;}
.y83{bottom:1021.290000px;}
.ya8{bottom:1028.670000px;}
.y2b{bottom:1029.030000px;}
.ye{bottom:1031.550000px;}
.yb{bottom:1045.410000px;}
.y3{bottom:1072.080000px;}
.y1{bottom:1128.240000px;}
.h1{height:17.280000px;}
.he{height:23.220000px;}
.h12{height:23.400000px;}
.h10{height:23.436000px;}
.h13{height:47.340000px;}
.ha{height:47.344922px;}
.h11{height:52.998047px;}
.hf{height:54.421875px;}
.h3{height:56.160000px;}
.h2{height:58.651172px;}
.h5{height:65.010937px;}
.h6{height:65.884219px;}
.hd{height:66.757500px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:74.704922px;}
.h4{height:77.837760px;}
.h8{height:84.898125px;}
.hc{height:96.508125px;}
.h0{height:1188.000000px;}
.w10{width:63.000000px;}
.wf{width:65.016000px;}
.w3{width:86.256000px;}
.w6{width:90.000000px;}
.w5{width:118.836000px;}
.wc{width:137.736000px;}
.wd{width:137.916000px;}
.w11{width:169.590000px;}
.w8{width:188.130000px;}
.w9{width:194.250000px;}
.w2{width:208.830000px;}
.wa{width:223.950000px;}
.w12{width:294.690000px;}
.wb{width:315.210000px;}
.we{width:465.015000px;}
.w4{width:470.055000px;}
.w1{width:556.305000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:7.740000px;}
.x9{left:13.320000px;}
.x4e{left:16.200000px;}
.x3{left:23.040000px;}
.x4b{left:24.660000px;}
.x4d{left:25.740000px;}
.x8{left:28.800000px;}
.x33{left:40.500000px;}
.x6{left:42.120000px;}
.x4{left:43.236000px;}
.xb{left:45.000000px;}
.x47{left:50.400000px;}
.x45{left:53.640000px;}
.x42{left:58.890000px;}
.x44{left:62.145000px;}
.x1{left:76.500000px;}
.x3d{left:79.740000px;}
.x10{left:84.959986px;}
.x35{left:87.120000px;}
.x39{left:90.360000px;}
.x3b{left:93.600000px;}
.x3a{left:96.660000px;}
.x3c{left:100.080000px;}
.x37{left:105.120000px;}
.x40{left:111.420000px;}
.x11{left:132.875986px;}
.x46{left:143.325000px;}
.x7{left:148.545000px;}
.x32{left:155.190000px;}
.x28{left:156.629986px;}
.x5{left:162.750000px;}
.x12{left:180.389986px;}
.x49{left:204.705000px;}
.x23{left:223.949986px;}
.x24{left:225.389986px;}
.xe{left:247.169986px;}
.x31{left:262.109986px;}
.x51{left:264.629986px;}
.x3f{left:281.009986px;}
.x25{left:296.534986px;}
.x26{left:297.974986px;}
.x1f{left:321.554986px;}
.x20{left:323.714986px;}
.x4c{left:332.175000px;}
.x34{left:344.055000px;}
.x54{left:352.694986px;}
.x48{left:353.774986px;}
.x27{left:362.234986px;}
.x4f{left:369.794986px;}
.x53{left:376.454986px;}
.x2a{left:377.534986px;}
.x50{left:392.294986px;}
.x3e{left:394.094986px;}
.x29{left:397.514986px;}
.x15{left:399.854986px;}
.x2f{left:400.934986px;}
.x30{left:402.374986px;}
.x16{left:403.994986px;}
.x55{left:409.394986px;}
.x19{left:446.474986px;}
.x1a{left:447.914986px;}
.x52{left:451.514986px;}
.xd{left:455.114986px;}
.x2d{left:463.034986px;}
.x2e{left:468.434986px;}
.x41{left:478.875000px;}
.x1b{left:518.864986px;}
.x1c{left:520.304986px;}
.x36{left:539.025000px;}
.x21{left:560.444986px;}
.x22{left:562.604986px;}
.x43{left:617.325000px;}
.x4a{left:627.585000px;}
.x2{left:632.805000px;}
.x1d{left:692.609986px;}
.x1e{left:694.949986px;}
.xf{left:696.389986px;}
.x17{left:745.709986px;}
.x18{left:749.849986px;}
.xa{left:751.650000px;}
.x13{left:755.429986px;}
.x14{left:757.049986px;}
.x2b{left:803.849986px;}
.x2c{left:807.629986px;}
.xc{left:832.829986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.198933pt;}
.ls5{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.286933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls1{letter-spacing:56.640000pt;}
.ls12{letter-spacing:907.173120pt;}
.wsb{word-spacing:-21.566933pt;}
.wse{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.704000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.521067pt;}
.ws6{word-spacing:0.000000pt;}
.ws2{word-spacing:45.920000pt;}
._3{margin-left:-1.927040pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._6{width:2.901333pt;}
._5{width:4.010667pt;}
._c{width:5.461333pt;}
._d{width:6.784000pt;}
._e{width:8.256000pt;}
._7{width:9.642667pt;}
._8{width:10.542293pt;}
._9{width:12.288000pt;}
._a{width:13.283627pt;}
._b{width:14.364373pt;}
._f{width:16.960000pt;}
._10{width:18.033920pt;}
._13{width:19.562667pt;}
._14{width:21.077333pt;}
._1a{width:22.055253pt;}
._1d{width:23.512747pt;}
._18{width:29.741227pt;}
._15{width:30.848000pt;}
._16{width:32.405333pt;}
._20{width:34.880000pt;}
._21{width:35.836587pt;}
._11{width:37.568000pt;}
._12{width:38.510293pt;}
._4{width:56.885333pt;}
._1e{width:82.496000pt;}
._1f{width:83.811627pt;}
._17{width:265.706667pt;}
._19{width:491.584000pt;}
._1b{width:825.898667pt;}
._1c{width:907.178667pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.280000pt;}
.y7{bottom:7.040000pt;}
.y64{bottom:9.440000pt;}
.y75{bottom:9.600000pt;}
.y82{bottom:9.754667pt;}
.y68{bottom:9.760000pt;}
.y6a{bottom:9.920000pt;}
.y66{bottom:9.960000pt;}
.y9{bottom:20.640000pt;}
.y5{bottom:22.560000pt;}
.y6{bottom:29.440000pt;}
.y8{bottom:36.000000pt;}
.y4{bottom:37.920000pt;}
.yd{bottom:53.920000pt;}
.yc{bottom:86.432000pt;}
.y80{bottom:108.192000pt;}
.y61{bottom:123.392000pt;}
.ya0{bottom:126.112000pt;}
.y2a{bottom:129.312000pt;}
.y81{bottom:129.632000pt;}
.y5d{bottom:132.672000pt;}
.y47{bottom:141.786667pt;}
.y7f{bottom:151.066667pt;}
.y9f{bottom:153.626667pt;}
.y60{bottom:155.066667pt;}
.y29{bottom:156.826667pt;}
.y5c{bottom:160.186667pt;}
.y46{bottom:169.466667pt;}
.ya7{bottom:178.586667pt;}
.y9e{bottom:181.306667pt;}
.y28{bottom:184.346667pt;}
.y5b{bottom:187.866667pt;}
.y45{bottom:196.986667pt;}
.ya6{bottom:206.266667pt;}
.y9d{bottom:208.826667pt;}
.y7e{bottom:210.746667pt;}
.y27{bottom:212.026667pt;}
.y5a{bottom:215.386667pt;}
.y44{bottom:224.666667pt;}
.ya5{bottom:233.786667pt;}
.y9c{bottom:236.346667pt;}
.y7d{bottom:238.266667pt;}
.y26{bottom:239.546667pt;}
.y59{bottom:243.066667pt;}
.y43{bottom:252.186667pt;}
.ya4{bottom:261.466667pt;}
.y9b{bottom:264.026667pt;}
.y7c{bottom:265.946667pt;}
.y25{bottom:267.226667pt;}
.y58{bottom:270.586667pt;}
.y42{bottom:279.866667pt;}
.ya3{bottom:289.026667pt;}
.y9a{bottom:291.586667pt;}
.y7b{bottom:293.506667pt;}
.y24{bottom:294.786667pt;}
.y57{bottom:298.306667pt;}
.y41{bottom:307.426667pt;}
.y7a{bottom:316.866667pt;}
.y99{bottom:319.266667pt;}
.ya2{bottom:320.706667pt;}
.y23{bottom:322.466667pt;}
.y56{bottom:325.826667pt;}
.y79{bottom:327.106667pt;}
.y40{bottom:335.106667pt;}
.y98{bottom:346.786667pt;}
.y78{bottom:348.546667pt;}
.y22{bottom:349.986667pt;}
.y55{bottom:353.506667pt;}
.y3f{bottom:362.626667pt;}
.y77{bottom:369.826667pt;}
.y97{bottom:374.466667pt;}
.y21{bottom:377.666667pt;}
.y54{bottom:381.026667pt;}
.y3e{bottom:390.306667pt;}
.y76{bottom:391.266667pt;}
.y96{bottom:401.986667pt;}
.y20{bottom:405.186667pt;}
.y53{bottom:408.706667pt;}
.y74{bottom:412.546667pt;}
.y3d{bottom:417.826667pt;}
.y95{bottom:429.666667pt;}
.y1f{bottom:432.866667pt;}
.y52{bottom:436.226667pt;}
.y3c{bottom:445.506667pt;}
.y73{bottom:445.986667pt;}
.y94{bottom:457.186667pt;}
.y1e{bottom:460.066667pt;}
.y51{bottom:463.906667pt;}
.y72{bottom:472.386667pt;}
.y3b{bottom:473.026667pt;}
.y93{bottom:484.866667pt;}
.y1d{bottom:488.066667pt;}
.y50{bottom:491.426667pt;}
.y71{bottom:499.906667pt;}
.y3a{bottom:500.706667pt;}
.y92{bottom:512.413333pt;}
.y1c{bottom:515.613333pt;}
.y4f{bottom:519.133333pt;}
.y70{bottom:527.453333pt;}
.y39{bottom:528.253333pt;}
.y91{bottom:540.093333pt;}
.y1b{bottom:543.293333pt;}
.y4e{bottom:546.653333pt;}
.y6f{bottom:555.133333pt;}
.y38{bottom:555.933333pt;}
.y90{bottom:567.613333pt;}
.y4d{bottom:574.333333pt;}
.y1a{bottom:576.893333pt;}
.y6e{bottom:582.653333pt;}
.y37{bottom:583.453333pt;}
.y8f{bottom:595.293333pt;}
.y4c{bottom:601.853333pt;}
.y19{bottom:604.573333pt;}
.y5f{bottom:606.013333pt;}
.yaa{bottom:610.813333pt;}
.y36{bottom:611.133333pt;}
.y6d{bottom:616.413333pt;}
.y8e{bottom:622.813333pt;}
.y18{bottom:626.013333pt;}
.y4b{bottom:629.533333pt;}
.y6c{bottom:637.693333pt;}
.y35{bottom:638.653333pt;}
.y8d{bottom:650.493333pt;}
.y4a{bottom:657.053333pt;}
.y6b{bottom:659.133333pt;}
.y17{bottom:659.773333pt;}
.ya1{bottom:661.053333pt;}
.y34{bottom:665.853333pt;}
.y5e{bottom:666.173333pt;}
.y8c{bottom:678.013333pt;}
.y69{bottom:680.413333pt;}
.y16{bottom:681.213333pt;}
.y49{bottom:684.573333pt;}
.y33{bottom:693.853333pt;}
.y67{bottom:701.853333pt;}
.y8b{bottom:705.693333pt;}
.y15{bottom:708.893333pt;}
.y48{bottom:716.253333pt;}
.y32{bottom:721.373333pt;}
.y65{bottom:723.133333pt;}
.y8a{bottom:733.253333pt;}
.y14{bottom:736.453333pt;}
.y63{bottom:744.613333pt;}
.y31{bottom:749.093333pt;}
.y89{bottom:760.933333pt;}
.y13{bottom:764.133333pt;}
.y30{bottom:776.613333pt;}
.y62{bottom:777.893333pt;}
.y12{bottom:791.653333pt;}
.y88{bottom:792.613333pt;}
.y2f{bottom:804.293333pt;}
.y87{bottom:825.253333pt;}
.y11{bottom:829.093333pt;}
.ya9{bottom:831.493333pt;}
.y2e{bottom:831.813333pt;}
.y86{bottom:852.933333pt;}
.y2d{bottom:859.493333pt;}
.y10{bottom:861.413333pt;}
.y85{bottom:876.293333pt;}
.y84{bottom:886.533333pt;}
.y2c{bottom:887.013333pt;}
.yf{bottom:891.653333pt;}
.y83{bottom:907.813333pt;}
.ya8{bottom:914.373333pt;}
.y2b{bottom:914.693333pt;}
.ye{bottom:916.933333pt;}
.yb{bottom:929.253333pt;}
.y3{bottom:952.960000pt;}
.y1{bottom:1002.880000pt;}
.h1{height:15.360000pt;}
.he{height:20.640000pt;}
.h12{height:20.800000pt;}
.h10{height:20.832000pt;}
.h13{height:42.080000pt;}
.ha{height:42.084375pt;}
.h11{height:47.109375pt;}
.hf{height:48.375000pt;}
.h3{height:49.920000pt;}
.h2{height:52.134375pt;}
.h5{height:57.787500pt;}
.h6{height:58.563750pt;}
.hd{height:59.340000pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:66.404375pt;}
.h4{height:69.189120pt;}
.h8{height:75.465000pt;}
.hc{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w10{width:56.000000pt;}
.wf{width:57.792000pt;}
.w3{width:76.672000pt;}
.w6{width:80.000000pt;}
.w5{width:105.632000pt;}
.wc{width:122.432000pt;}
.wd{width:122.592000pt;}
.w11{width:150.746667pt;}
.w8{width:167.226667pt;}
.w9{width:172.666667pt;}
.w2{width:185.626667pt;}
.wa{width:199.066667pt;}
.w12{width:261.946667pt;}
.wb{width:280.186667pt;}
.we{width:413.346667pt;}
.w4{width:417.826667pt;}
.w1{width:494.493333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:6.880000pt;}
.x9{left:11.840000pt;}
.x4e{left:14.400000pt;}
.x3{left:20.480000pt;}
.x4b{left:21.920000pt;}
.x4d{left:22.880000pt;}
.x8{left:25.600000pt;}
.x33{left:36.000000pt;}
.x6{left:37.440000pt;}
.x4{left:38.432000pt;}
.xb{left:40.000000pt;}
.x47{left:44.800000pt;}
.x45{left:47.680000pt;}
.x42{left:52.346667pt;}
.x44{left:55.240000pt;}
.x1{left:68.000000pt;}
.x3d{left:70.880000pt;}
.x10{left:75.519988pt;}
.x35{left:77.440000pt;}
.x39{left:80.320000pt;}
.x3b{left:83.200000pt;}
.x3a{left:85.920000pt;}
.x3c{left:88.960000pt;}
.x37{left:93.440000pt;}
.x40{left:99.040000pt;}
.x11{left:118.111988pt;}
.x46{left:127.400000pt;}
.x7{left:132.040000pt;}
.x32{left:137.946667pt;}
.x28{left:139.226655pt;}
.x5{left:144.666667pt;}
.x12{left:160.346655pt;}
.x49{left:181.960000pt;}
.x23{left:199.066655pt;}
.x24{left:200.346655pt;}
.xe{left:219.706655pt;}
.x31{left:232.986655pt;}
.x51{left:235.226655pt;}
.x3f{left:249.786655pt;}
.x25{left:263.586655pt;}
.x26{left:264.866655pt;}
.x1f{left:285.826655pt;}
.x20{left:287.746655pt;}
.x4c{left:295.266667pt;}
.x34{left:305.826667pt;}
.x54{left:313.506655pt;}
.x48{left:314.466655pt;}
.x27{left:321.986655pt;}
.x4f{left:328.706655pt;}
.x53{left:334.626655pt;}
.x2a{left:335.586655pt;}
.x50{left:348.706655pt;}
.x3e{left:350.306655pt;}
.x29{left:353.346655pt;}
.x15{left:355.426655pt;}
.x2f{left:356.386655pt;}
.x30{left:357.666655pt;}
.x16{left:359.106655pt;}
.x55{left:363.906655pt;}
.x19{left:396.866655pt;}
.x1a{left:398.146655pt;}
.x52{left:401.346655pt;}
.xd{left:404.546655pt;}
.x2d{left:411.586655pt;}
.x2e{left:416.386655pt;}
.x41{left:425.666667pt;}
.x1b{left:461.213321pt;}
.x1c{left:462.493321pt;}
.x36{left:479.133333pt;}
.x21{left:498.173321pt;}
.x22{left:500.093321pt;}
.x43{left:548.733333pt;}
.x4a{left:557.853333pt;}
.x2{left:562.493333pt;}
.x1d{left:615.653321pt;}
.x1e{left:617.733321pt;}
.xf{left:619.013321pt;}
.x17{left:662.853321pt;}
.x18{left:666.533321pt;}
.xa{left:668.133333pt;}
.x13{left:671.493321pt;}
.x14{left:672.933321pt;}
.x2b{left:714.533321pt;}
.x2c{left:717.893321pt;}
.xc{left:740.293321pt;}
}




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