
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_64afb7ae6bac92fe09efc5d2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_95997f580b747db94f049e83.woff2')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_f1d375818a54eb0689f540c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.773438;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ead0f3c368954bd7c8d84eb0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_60fe0747671bc9f1b5810128.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_05200fab87a5d17b65520614.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_ed4f7fcab3b2542c13aa9468.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_18599f08f0d9e9b9ce716eb4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.v1{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.908000px;}
.ls10{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.313920px;}
.lsf{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls12{letter-spacing:2.160000px;}
.lsb{letter-spacing:5.040000px;}
.ls9{letter-spacing:6.480000px;}
.lsc{letter-spacing:7.920000px;}
.ls14{letter-spacing:9.360000px;}
.ls11{letter-spacing:13.680000px;}
.lsd{letter-spacing:15.120000px;}
.ls16{letter-spacing:16.306560px;}
.ls13{letter-spacing:18.000000px;}
.ls15{letter-spacing:46.546560px;}
.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;}
}
.ws0{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.099840px;}
.ws9{word-spacing:-14.613000px;}
.ws4{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.212000px;}
.ws6{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.928000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-3.576960px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:4.807200px;}
._9{width:6.393600px;}
._e{width:7.577280px;}
._b{width:8.824320px;}
._c{width:10.013760px;}
._a{width:11.350080px;}
._f{width:12.625920px;}
._13{width:13.737600px;}
._6{width:16.591680px;}
._8{width:17.928000px;}
._7{width:18.972000px;}
._14{width:20.865600px;}
._15{width:23.794560px;}
._12{width:25.557120px;}
._11{width:27.216000px;}
._d{width:28.287360px;}
._16{width:39.827520px;}
._17{width:41.181120px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y59{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y57{bottom:10.795500px;}
.y42{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y56{bottom:26.275500px;}
.y4a{bottom:30.595500px;}
.y41{bottom:38.160000px;}
.y49{bottom:42.475500px;}
.y55{bottom:43.915500px;}
.y3{bottom:44.280000px;}
.y40{bottom:55.440000px;}
.y48{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y54{bottom:59.794500px;}
.y47{bottom:68.434500px;}
.y3f{bottom:72.360000px;}
.y53{bottom:75.274500px;}
.y52{bottom:88.234500px;}
.y46{bottom:90.034500px;}
.y51{bottom:94.354500px;}
.y43{bottom:96.880500px;}
.y3e{bottom:99.000000px;}
.y92{bottom:102.276000px;}
.y50{bottom:110.194500px;}
.y3d{bottom:116.325000px;}
.y91{bottom:119.556000px;}
.y4f{bottom:125.674500px;}
.y3c{bottom:133.605000px;}
.y90{bottom:136.836000px;}
.y4e{bottom:141.154500px;}
.y3b{bottom:150.885000px;}
.y45{bottom:152.674500px;}
.y8f{bottom:154.155000px;}
.y4d{bottom:156.634500px;}
.y44{bottom:163.474500px;}
.y3a{bottom:168.165000px;}
.y8e{bottom:171.435000px;}
.y4c{bottom:172.114500px;}
.y39{bottom:185.445000px;}
.y8d{bottom:188.715000px;}
.y38{bottom:202.725000px;}
.yb6{bottom:205.635000px;}
.y8c{bottom:205.995000px;}
.y37{bottom:220.005000px;}
.y8b{bottom:223.275000px;}
.yb5{bottom:232.275000px;}
.y36{bottom:236.565000px;}
.y8a{bottom:239.835000px;}
.yb4{bottom:249.195000px;}
.y35{bottom:263.235000px;}
.y89{bottom:266.475000px;}
.y34{bottom:280.515000px;}
.y88{bottom:283.785000px;}
.ye{bottom:289.905000px;}
.y33{bottom:297.795000px;}
.y87{bottom:301.065000px;}
.y32{bottom:315.075000px;}
.y86{bottom:318.345000px;}
.y31{bottom:332.355000px;}
.y85{bottom:335.625000px;}
.y30{bottom:349.635000px;}
.yb3{bottom:352.545000px;}
.y84{bottom:352.905000px;}
.y1d{bottom:359.355000px;}
.y2f{bottom:366.915000px;}
.y83{bottom:370.185000px;}
.yb2{bottom:379.185000px;}
.y1c{bottom:383.505000px;}
.y2e{bottom:384.225000px;}
.y82{bottom:387.465000px;}
.yb1{bottom:396.465000px;}
.y2d{bottom:401.505000px;}
.y81{bottom:404.745000px;}
.y1b{bottom:407.985000px;}
.yb0{bottom:413.790000px;}
.y2c{bottom:418.785000px;}
.y80{bottom:422.070000px;}
.yaf{bottom:431.070000px;}
.y1a{bottom:432.105000px;}
.y2b{bottom:435.705000px;}
.y7f{bottom:439.350000px;}
.yae{bottom:448.350000px;}
.y2a{bottom:452.985000px;}
.y19{bottom:456.225000px;}
.y7e{bottom:456.270000px;}
.yad{bottom:465.270000px;}
.y29{bottom:470.265000px;}
.y7d{bottom:473.550000px;}
.y18{bottom:480.345000px;}
.yac{bottom:482.550000px;}
.y28{bottom:487.545000px;}
.y7c{bottom:490.830000px;}
.yab{bottom:499.830000px;}
.y17{bottom:504.465000px;}
.y7b{bottom:508.110000px;}
.yaa{bottom:517.110000px;}
.y7a{bottom:525.390000px;}
.y16{bottom:528.630000px;}
.y27{bottom:530.430000px;}
.ya9{bottom:534.390000px;}
.yb8{bottom:542.340000px;}
.y79{bottom:542.700000px;}
.y26{bottom:545.910000px;}
.ya8{bottom:551.700000px;}
.y15{bottom:552.750000px;}
.y78{bottom:559.620000px;}
.y25{bottom:561.390000px;}
.ya7{bottom:568.980000px;}
.y14{bottom:576.870000px;}
.y24{bottom:577.230000px;}
.y77{bottom:586.260000px;}
.y23{bottom:592.710000px;}
.y13{bottom:600.990000px;}
.y76{bottom:603.540000px;}
.y22{bottom:608.190000px;}
.ya6{bottom:620.460000px;}
.y75{bottom:620.820000px;}
.y21{bottom:623.670000px;}
.y12{bottom:625.110000px;}
.y74{bottom:638.100000px;}
.y20{bottom:639.150000px;}
.ya5{bottom:647.100000px;}
.y11{bottom:649.260000px;}
.y1f{bottom:654.660000px;}
.y73{bottom:655.020000px;}
.ya4{bottom:664.020000px;}
.y72{bottom:672.330000px;}
.y10{bottom:673.380000px;}
.ya3{bottom:681.330000px;}
.y1e{bottom:685.260000px;}
.y71{bottom:689.610000px;}
.yf{bottom:697.500000px;}
.ya2{bottom:698.610000px;}
.y70{bottom:706.890000px;}
.ya1{bottom:715.890000px;}
.yb7{bottom:723.810000px;}
.y6f{bottom:724.170000px;}
.ya0{bottom:733.170000px;}
.y6e{bottom:741.090000px;}
.y9f{bottom:750.450000px;}
.y6d{bottom:767.730000px;}
.y6c{bottom:785.010000px;}
.y6b{bottom:802.335000px;}
.y6a{bottom:819.615000px;}
.y9e{bottom:836.535000px;}
.y69{bottom:836.895000px;}
.y68{bottom:854.175000px;}
.y9d{bottom:863.175000px;}
.y67{bottom:871.095000px;}
.y9c{bottom:880.095000px;}
.y66{bottom:888.375000px;}
.y9b{bottom:897.375000px;}
.y65{bottom:905.655000px;}
.y9a{bottom:914.655000px;}
.y64{bottom:922.935000px;}
.y99{bottom:931.935000px;}
.y63{bottom:940.245000px;}
.y98{bottom:949.245000px;}
.y62{bottom:957.525000px;}
.y97{bottom:966.525000px;}
.y61{bottom:974.805000px;}
.y96{bottom:983.805000px;}
.y60{bottom:992.085000px;}
.yd{bottom:999.645000px;}
.y95{bottom:1001.085000px;}
.yc{bottom:1005.045000px;}
.y5f{bottom:1009.365000px;}
.y94{bottom:1018.005000px;}
.yb{bottom:1022.325000px;}
.y5e{bottom:1026.285000px;}
.y93{bottom:1035.645000px;}
.ya{bottom:1039.245000px;}
.y5d{bottom:1052.925000px;}
.y9{bottom:1058.685000px;}
.y5c{bottom:1069.890000px;}
.y8{bottom:1086.450000px;}
.y5b{bottom:1087.170000px;}
.y58{bottom:1089.720000px;}
.y5a{bottom:1104.450000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.ha{height:4.165313px;}
.h15{height:5.650313px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.h6{height:30.077578px;}
.h12{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.hf{height:42.229688px;}
.he{height:53.677969px;}
.h14{height:55.147500px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.h10{height:60.155156px;}
.h9{height:60.952500px;}
.h18{height:62.163910px;}
.h17{height:63.455625px;}
.h8{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h11{height:192.285000px;}
.hb{height:706.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x14{left:14.386500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:20.866500px;}
.x15{left:26.266500px;}
.x1d{left:29.146500px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x6{left:50.055000px;}
.xe{left:55.102500px;}
.x13{left:57.982500px;}
.x19{left:62.295000px;}
.x1e{left:66.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x11{left:90.025500px;}
.x21{left:91.836000px;}
.x12{left:94.345500px;}
.x2{left:95.425500px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x22{left:118.836000px;}
.x10{left:124.585500px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xb{left:288.105000px;}
.xc{left:600.735000px;}
.xa{left:642.135000px;}
.x9{left:766.050000px;}
.x8{left:799.530000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.696000pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.279040pt;}
.lsf{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.920000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls9{letter-spacing:5.760000pt;}
.lsc{letter-spacing:7.040000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls11{letter-spacing:12.160000pt;}
.lsd{letter-spacing:13.440000pt;}
.ls16{letter-spacing:14.494720pt;}
.ls13{letter-spacing:16.000000pt;}
.ls15{letter-spacing:41.374720pt;}
.ws0{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.422080pt;}
.ws9{word-spacing:-12.989333pt;}
.ws4{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.744000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.936000pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-3.179520pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.273067pt;}
._9{width:5.683200pt;}
._e{width:6.735360pt;}
._b{width:7.843840pt;}
._c{width:8.901120pt;}
._a{width:10.088960pt;}
._f{width:11.223040pt;}
._13{width:12.211200pt;}
._6{width:14.748160pt;}
._8{width:15.936000pt;}
._7{width:16.864000pt;}
._14{width:18.547200pt;}
._15{width:21.150720pt;}
._12{width:22.717440pt;}
._11{width:24.192000pt;}
._d{width:25.144320pt;}
._16{width:35.402240pt;}
._17{width:36.605440pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y57{bottom:9.596000pt;}
.y42{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y56{bottom:23.356000pt;}
.y4a{bottom:27.196000pt;}
.y41{bottom:33.920000pt;}
.y49{bottom:37.756000pt;}
.y55{bottom:39.036000pt;}
.y3{bottom:39.360000pt;}
.y40{bottom:49.280000pt;}
.y48{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y54{bottom:53.150667pt;}
.y47{bottom:60.830667pt;}
.y3f{bottom:64.320000pt;}
.y53{bottom:66.910667pt;}
.y52{bottom:78.430667pt;}
.y46{bottom:80.030667pt;}
.y51{bottom:83.870667pt;}
.y43{bottom:86.116000pt;}
.y3e{bottom:88.000000pt;}
.y92{bottom:90.912000pt;}
.y50{bottom:97.950667pt;}
.y3d{bottom:103.400000pt;}
.y91{bottom:106.272000pt;}
.y4f{bottom:111.710667pt;}
.y3c{bottom:118.760000pt;}
.y90{bottom:121.632000pt;}
.y4e{bottom:125.470667pt;}
.y3b{bottom:134.120000pt;}
.y45{bottom:135.710667pt;}
.y8f{bottom:137.026667pt;}
.y4d{bottom:139.230667pt;}
.y44{bottom:145.310667pt;}
.y3a{bottom:149.480000pt;}
.y8e{bottom:152.386667pt;}
.y4c{bottom:152.990667pt;}
.y39{bottom:164.840000pt;}
.y8d{bottom:167.746667pt;}
.y38{bottom:180.200000pt;}
.yb6{bottom:182.786667pt;}
.y8c{bottom:183.106667pt;}
.y37{bottom:195.560000pt;}
.y8b{bottom:198.466667pt;}
.yb5{bottom:206.466667pt;}
.y36{bottom:210.280000pt;}
.y8a{bottom:213.186667pt;}
.yb4{bottom:221.506667pt;}
.y35{bottom:233.986667pt;}
.y89{bottom:236.866667pt;}
.y34{bottom:249.346667pt;}
.y88{bottom:252.253333pt;}
.ye{bottom:257.693333pt;}
.y33{bottom:264.706667pt;}
.y87{bottom:267.613333pt;}
.y32{bottom:280.066667pt;}
.y86{bottom:282.973333pt;}
.y31{bottom:295.426667pt;}
.y85{bottom:298.333333pt;}
.y30{bottom:310.786667pt;}
.yb3{bottom:313.373333pt;}
.y84{bottom:313.693333pt;}
.y1d{bottom:319.426667pt;}
.y2f{bottom:326.146667pt;}
.y83{bottom:329.053333pt;}
.yb2{bottom:337.053333pt;}
.y1c{bottom:340.893333pt;}
.y2e{bottom:341.533333pt;}
.y82{bottom:344.413333pt;}
.yb1{bottom:352.413333pt;}
.y2d{bottom:356.893333pt;}
.y81{bottom:359.773333pt;}
.y1b{bottom:362.653333pt;}
.yb0{bottom:367.813333pt;}
.y2c{bottom:372.253333pt;}
.y80{bottom:375.173333pt;}
.yaf{bottom:383.173333pt;}
.y1a{bottom:384.093333pt;}
.y2b{bottom:387.293333pt;}
.y7f{bottom:390.533333pt;}
.yae{bottom:398.533333pt;}
.y2a{bottom:402.653333pt;}
.y19{bottom:405.533333pt;}
.y7e{bottom:405.573333pt;}
.yad{bottom:413.573333pt;}
.y29{bottom:418.013333pt;}
.y7d{bottom:420.933333pt;}
.y18{bottom:426.973333pt;}
.yac{bottom:428.933333pt;}
.y28{bottom:433.373333pt;}
.y7c{bottom:436.293333pt;}
.yab{bottom:444.293333pt;}
.y17{bottom:448.413333pt;}
.y7b{bottom:451.653333pt;}
.yaa{bottom:459.653333pt;}
.y7a{bottom:467.013333pt;}
.y16{bottom:469.893333pt;}
.y27{bottom:471.493333pt;}
.ya9{bottom:475.013333pt;}
.yb8{bottom:482.080000pt;}
.y79{bottom:482.400000pt;}
.y26{bottom:485.253333pt;}
.ya8{bottom:490.400000pt;}
.y15{bottom:491.333333pt;}
.y78{bottom:497.440000pt;}
.y25{bottom:499.013333pt;}
.ya7{bottom:505.760000pt;}
.y14{bottom:512.773333pt;}
.y24{bottom:513.093333pt;}
.y77{bottom:521.120000pt;}
.y23{bottom:526.853333pt;}
.y13{bottom:534.213333pt;}
.y76{bottom:536.480000pt;}
.y22{bottom:540.613333pt;}
.ya6{bottom:551.520000pt;}
.y75{bottom:551.840000pt;}
.y21{bottom:554.373333pt;}
.y12{bottom:555.653333pt;}
.y74{bottom:567.200000pt;}
.y20{bottom:568.133333pt;}
.ya5{bottom:575.200000pt;}
.y11{bottom:577.120000pt;}
.y1f{bottom:581.920000pt;}
.y73{bottom:582.240000pt;}
.ya4{bottom:590.240000pt;}
.y72{bottom:597.626667pt;}
.y10{bottom:598.560000pt;}
.ya3{bottom:605.626667pt;}
.y1e{bottom:609.120000pt;}
.y71{bottom:612.986667pt;}
.yf{bottom:620.000000pt;}
.ya2{bottom:620.986667pt;}
.y70{bottom:628.346667pt;}
.ya1{bottom:636.346667pt;}
.yb7{bottom:643.386667pt;}
.y6f{bottom:643.706667pt;}
.ya0{bottom:651.706667pt;}
.y6e{bottom:658.746667pt;}
.y9f{bottom:667.066667pt;}
.y6d{bottom:682.426667pt;}
.y6c{bottom:697.786667pt;}
.y6b{bottom:713.186667pt;}
.y6a{bottom:728.546667pt;}
.y9e{bottom:743.586667pt;}
.y69{bottom:743.906667pt;}
.y68{bottom:759.266667pt;}
.y9d{bottom:767.266667pt;}
.y67{bottom:774.306667pt;}
.y9c{bottom:782.306667pt;}
.y66{bottom:789.666667pt;}
.y9b{bottom:797.666667pt;}
.y65{bottom:805.026667pt;}
.y9a{bottom:813.026667pt;}
.y64{bottom:820.386667pt;}
.y99{bottom:828.386667pt;}
.y63{bottom:835.773333pt;}
.y98{bottom:843.773333pt;}
.y62{bottom:851.133333pt;}
.y97{bottom:859.133333pt;}
.y61{bottom:866.493333pt;}
.y96{bottom:874.493333pt;}
.y60{bottom:881.853333pt;}
.yd{bottom:888.573333pt;}
.y95{bottom:889.853333pt;}
.yc{bottom:893.373333pt;}
.y5f{bottom:897.213333pt;}
.y94{bottom:904.893333pt;}
.yb{bottom:908.733333pt;}
.y5e{bottom:912.253333pt;}
.y93{bottom:920.573333pt;}
.ya{bottom:923.773333pt;}
.y5d{bottom:935.933333pt;}
.y9{bottom:941.053333pt;}
.y5c{bottom:951.013333pt;}
.y8{bottom:965.733333pt;}
.y5b{bottom:966.373333pt;}
.y58{bottom:968.640000pt;}
.y5a{bottom:981.733333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.ha{height:3.702500pt;}
.h15{height:5.022500pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.h6{height:26.735625pt;}
.h12{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.hf{height:37.537500pt;}
.he{height:47.713750pt;}
.h14{height:49.020000pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.h10{height:53.471250pt;}
.h9{height:54.180000pt;}
.h18{height:55.256809pt;}
.h17{height:56.405000pt;}
.h8{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h11{height:170.920000pt;}
.hb{height:628.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x14{left:12.788000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:18.548000pt;}
.x15{left:23.348000pt;}
.x1d{left:25.908000pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x6{left:44.493333pt;}
.xe{left:48.980000pt;}
.x13{left:51.540000pt;}
.x19{left:55.373333pt;}
.x1e{left:58.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x11{left:80.022667pt;}
.x21{left:81.632000pt;}
.x12{left:83.862667pt;}
.x2{left:84.822667pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x22{left:105.632000pt;}
.x10{left:110.742667pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xb{left:256.093333pt;}
.xc{left:533.986667pt;}
.xa{left:570.786667pt;}
.x9{left:680.933333pt;}
.x8{left:710.693333pt;}
.xd{left:717.413333pt;}
}




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