
    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_defca4745d71b77212ec84c0.woff')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_d9a235825d1a07d3021ee8e2.woff')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_e86c68d246dc1f6d0a5a47ab.woff')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_39d8297d1ee89b9fd86c0401.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_adf1bb8be05157c140643e17.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_3370f374400ce9f71fb03a47.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_9dbeb94b52d709cae51a65e1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_57160c4248a3c18036ea4eb9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.108000px;}
.ls3{letter-spacing:-0.089400px;}
.ls5{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:1.800000px;}
.lsb{letter-spacing:43.866720px;}
.lsc{letter-spacing:46.026720px;}
.ls7{letter-spacing:64.170720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.wse{word-spacing:-16.740000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.135440px;}
._2{width:2.159040px;}
._3{width:3.296400px;}
._8{width:4.806000px;}
._7{width:5.832000px;}
._6{width:7.398000px;}
._9{width:8.426160px;}
._11{width:9.442080px;}
._e{width:10.458000px;}
._13{width:11.653200px;}
._f{width:12.728880px;}
._5{width:15.997680px;}
._4{width:17.118000px;}
._12{width:18.645120px;}
._c{width:20.198880px;}
._d{width:21.232560px;}
._10{width:22.673280px;}
._b{width:25.995600px;}
._a{width:27.489600px;}
._16{width:28.505520px;}
._15{width:29.557920px;}
._14{width:30.716640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:0.540000px;}
.y4b{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y58{bottom:5.010000px;}
.y3e{bottom:7.740000px;}
.y2{bottom:9.930000px;}
.y4a{bottom:10.260000px;}
.y4{bottom:22.710000px;}
.y3d{bottom:27.765000px;}
.y56{bottom:28.440000px;}
.y49{bottom:39.960000px;}
.y55{bottom:47.160000px;}
.y3c{bottom:47.565000px;}
.y3{bottom:47.910000px;}
.y48{bottom:51.120000px;}
.y7{bottom:57.060000px;}
.y47{bottom:62.454000px;}
.y54{bottom:66.234000px;}
.y3b{bottom:67.365000px;}
.y46{bottom:74.154000px;}
.y53{bottom:82.074000px;}
.y45{bottom:87.114000px;}
.y3a{bottom:87.165000px;}
.y7e{bottom:93.096000px;}
.y40{bottom:94.176000px;}
.y52{bottom:99.354000px;}
.y44{bottom:100.254000px;}
.y39{bottom:106.965000px;}
.y7d{bottom:113.976000px;}
.y51{bottom:114.114000px;}
.y50{bottom:122.034000px;}
.y43{bottom:122.214000px;}
.yad{bottom:123.516000px;}
.y38{bottom:126.945000px;}
.y7c{bottom:133.776000px;}
.y4f{bottom:137.514000px;}
.yac{bottom:143.316000px;}
.y37{bottom:146.745000px;}
.y4e{bottom:152.994000px;}
.y7b{bottom:154.650000px;}
.yab{bottom:163.110000px;}
.y36{bottom:166.545000px;}
.y4d{bottom:168.654000px;}
.y7a{bottom:175.530000px;}
.yaa{bottom:183.090000px;}
.y42{bottom:184.134000px;}
.y35{bottom:186.345000px;}
.y41{bottom:194.754000px;}
.y79{bottom:196.590000px;}
.y4c{bottom:199.614000px;}
.ya9{bottom:202.890000px;}
.y34{bottom:206.145000px;}
.y78{bottom:216.390000px;}
.ya8{bottom:222.690000px;}
.y33{bottom:226.125000px;}
.y77{bottom:237.270000px;}
.ya7{bottom:242.490000px;}
.y32{bottom:245.925000px;}
.y76{bottom:258.150000px;}
.ya6{bottom:262.290000px;}
.y31{bottom:265.725000px;}
.y1f{bottom:269.505000px;}
.y75{bottom:277.950000px;}
.ya5{bottom:282.270000px;}
.y30{bottom:285.555000px;}
.y1e{bottom:293.655000px;}
.y74{bottom:298.830000px;}
.ya4{bottom:302.070000px;}
.y2f{bottom:305.355000px;}
.y1d{bottom:317.775000px;}
.y73{bottom:318.810000px;}
.y11{bottom:318.990000px;}
.ya3{bottom:321.870000px;}
.y2e{bottom:325.335000px;}
.y72{bottom:339.735000px;}
.ya2{bottom:341.715000px;}
.y1c{bottom:342.075000px;}
.y2d{bottom:345.135000px;}
.y71{bottom:360.615000px;}
.ya1{bottom:361.515000px;}
.y2c{bottom:364.935000px;}
.y1b{bottom:366.195000px;}
.y70{bottom:381.495000px;}
.y2b{bottom:384.195000px;}
.y1a{bottom:390.315000px;}
.y6f{bottom:401.295000px;}
.y2a{bottom:402.015000px;}
.y19{bottom:414.435000px;}
.y29{bottom:420.015000px;}
.ya0{bottom:421.095000px;}
.y6e{bottom:422.355000px;}
.y28{bottom:437.835000px;}
.y18{bottom:438.555000px;}
.y9f{bottom:440.895000px;}
.y6d{bottom:442.155000px;}
.y27{bottom:455.655000px;}
.y9e{bottom:460.695000px;}
.y17{bottom:462.675000px;}
.y6c{bottom:463.035000px;}
.y26{bottom:473.475000px;}
.y9d{bottom:480.675000px;}
.y6b{bottom:482.835000px;}
.y16{bottom:486.975000px;}
.y25{bottom:491.295000px;}
.y9c{bottom:500.475000px;}
.y6a{bottom:503.715000px;}
.y24{bottom:509.115000px;}
.y15{bottom:511.095000px;}
.y9b{bottom:520.275000px;}
.y69{bottom:523.695000px;}
.y23{bottom:527.115000px;}
.y14{bottom:535.215000px;}
.y9a{bottom:540.075000px;}
.y68{bottom:543.495000px;}
.y22{bottom:544.980000px;}
.y13{bottom:559.380000px;}
.y99{bottom:559.875000px;}
.y21{bottom:562.800000px;}
.y67{bottom:563.295000px;}
.y98{bottom:579.855000px;}
.y20{bottom:580.620000px;}
.y66{bottom:583.095000px;}
.y12{bottom:583.500000px;}
.y97{bottom:599.685000px;}
.y65{bottom:602.925000px;}
.y96{bottom:619.485000px;}
.y64{bottom:622.905000px;}
.y95{bottom:639.285000px;}
.y63{bottom:642.705000px;}
.y94{bottom:659.085000px;}
.y62{bottom:662.505000px;}
.y93{bottom:680.145000px;}
.y61{bottom:682.305000px;}
.y92{bottom:701.025000px;}
.y60{bottom:702.105000px;}
.y91{bottom:721.905000px;}
.y5f{bottom:722.085000px;}
.y90{bottom:741.705000px;}
.y5e{bottom:741.885000px;}
.ybb{bottom:752.505000px;}
.y5d{bottom:758.445000px;}
.y8f{bottom:762.585000px;}
.yba{bottom:772.305000px;}
.y8e{bottom:783.645000px;}
.yb9{bottom:792.105000px;}
.y8d{bottom:803.445000px;}
.yb8{bottom:812.085000px;}
.y8c{bottom:824.325000px;}
.yb7{bottom:831.885000px;}
.y8b{bottom:844.125000px;}
.yb6{bottom:851.685000px;}
.y8a{bottom:865.050000px;}
.yb5{bottom:871.530000px;}
.y89{bottom:885.030000px;}
.yb4{bottom:891.330000px;}
.y88{bottom:905.910000px;}
.yb3{bottom:911.310000px;}
.y10{bottom:914.910000px;}
.yf{bottom:922.290000px;}
.y87{bottom:925.710000px;}
.yb2{bottom:931.110000px;}
.ye{bottom:942.090000px;}
.y86{bottom:946.590000px;}
.yb1{bottom:950.910000px;}
.y85{bottom:966.390000px;}
.yd{bottom:967.290000px;}
.yb0{bottom:970.710000px;}
.yc{bottom:981.870000px;}
.y84{bottom:987.270000px;}
.yaf{bottom:990.510000px;}
.yb{bottom:1006.890000px;}
.y83{bottom:1007.250000px;}
.yae{bottom:1010.490000px;}
.ya{bottom:1021.470000px;}
.y82{bottom:1028.130000px;}
.y5c{bottom:1030.290000px;}
.y9{bottom:1043.610000px;}
.y81{bottom:1047.930000px;}
.y5b{bottom:1050.090000px;}
.y80{bottom:1068.810000px;}
.y5a{bottom:1069.890000px;}
.y8{bottom:1072.230000px;}
.y57{bottom:1075.500000px;}
.y7f{bottom:1088.610000px;}
.y59{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.h12{height:4.021875px;}
.hb{height:4.165313px;}
.h17{height:9.329414px;}
.h15{height:21.114844px;}
.h14{height:25.136719px;}
.ha{height:27.147656px;}
.h19{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h16{height:38.100586px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h10{height:41.159180px;}
.h6{height:41.726953px;}
.h11{height:42.164648px;}
.h1c{height:43.156758px;}
.h1b{height:43.506914px;}
.h18{height:45.549492px;}
.h5{height:46.251562px;}
.h1d{height:48.027656px;}
.h9{height:48.312422px;}
.h8{height:59.436914px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h13{height:224.100000px;}
.hc{height:593.205000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x19{left:8.136000px;}
.x4{left:12.780000px;}
.x18{left:16.056000px;}
.x1d{left:18.216000px;}
.x16{left:19.656000px;}
.x17{left:26.136000px;}
.x1f{left:29.196000px;}
.x6{left:33.840000px;}
.x1e{left:47.736000px;}
.x11{left:50.796000px;}
.x10{left:54.936000px;}
.x21{left:57.096000px;}
.x1b{left:62.100000px;}
.x20{left:66.270000px;}
.x14{left:73.290000px;}
.x1{left:78.300000px;}
.x15{left:79.590000px;}
.x13{left:82.470000px;}
.x7{left:86.399987px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1c{left:106.770000px;}
.x25{left:113.435987px;}
.x12{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1a{left:219.090000px;}
.xd{left:328.754987px;}
.xa{left:366.914987px;}
.xb{left:391.754987px;}
.xc{left:458.354987px;}
.xe{left:572.504987px;}
.x24{left:694.049987px;}
.x9{left:766.049987px;}
.x8{left:784.229987px;}
.xf{left:806.729987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:1.600000pt;}
.lsb{letter-spacing:38.992640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls7{letter-spacing:57.040640pt;}
.wsb{word-spacing:-53.120000pt;}
.wse{word-spacing:-14.880000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.009280pt;}
._2{width:1.919147pt;}
._3{width:2.930133pt;}
._8{width:4.272000pt;}
._7{width:5.184000pt;}
._6{width:6.576000pt;}
._9{width:7.489920pt;}
._11{width:8.392960pt;}
._e{width:9.296000pt;}
._13{width:10.358400pt;}
._f{width:11.314560pt;}
._5{width:14.220160pt;}
._4{width:15.216000pt;}
._12{width:16.573440pt;}
._c{width:17.954560pt;}
._d{width:18.873387pt;}
._10{width:20.154027pt;}
._b{width:23.107200pt;}
._a{width:24.435200pt;}
._16{width:25.338240pt;}
._15{width:26.273707pt;}
._14{width:27.303680pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:0.480000pt;}
.y4b{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y58{bottom:4.453333pt;}
.y3e{bottom:6.880000pt;}
.y2{bottom:8.826667pt;}
.y4a{bottom:9.120000pt;}
.y4{bottom:20.186667pt;}
.y3d{bottom:24.680000pt;}
.y56{bottom:25.280000pt;}
.y49{bottom:35.520000pt;}
.y55{bottom:41.920000pt;}
.y3c{bottom:42.280000pt;}
.y3{bottom:42.586667pt;}
.y48{bottom:45.440000pt;}
.y7{bottom:50.720000pt;}
.y47{bottom:55.514667pt;}
.y54{bottom:58.874667pt;}
.y3b{bottom:59.880000pt;}
.y46{bottom:65.914667pt;}
.y53{bottom:72.954667pt;}
.y45{bottom:77.434667pt;}
.y3a{bottom:77.480000pt;}
.y7e{bottom:82.752000pt;}
.y40{bottom:83.712000pt;}
.y52{bottom:88.314667pt;}
.y44{bottom:89.114667pt;}
.y39{bottom:95.080000pt;}
.y7d{bottom:101.312000pt;}
.y51{bottom:101.434667pt;}
.y50{bottom:108.474667pt;}
.y43{bottom:108.634667pt;}
.yad{bottom:109.792000pt;}
.y38{bottom:112.840000pt;}
.y7c{bottom:118.912000pt;}
.y4f{bottom:122.234667pt;}
.yac{bottom:127.392000pt;}
.y37{bottom:130.440000pt;}
.y4e{bottom:135.994667pt;}
.y7b{bottom:137.466667pt;}
.yab{bottom:144.986667pt;}
.y36{bottom:148.040000pt;}
.y4d{bottom:149.914667pt;}
.y7a{bottom:156.026667pt;}
.yaa{bottom:162.746667pt;}
.y42{bottom:163.674667pt;}
.y35{bottom:165.640000pt;}
.y41{bottom:173.114667pt;}
.y79{bottom:174.746667pt;}
.y4c{bottom:177.434667pt;}
.ya9{bottom:180.346667pt;}
.y34{bottom:183.240000pt;}
.y78{bottom:192.346667pt;}
.ya8{bottom:197.946667pt;}
.y33{bottom:201.000000pt;}
.y77{bottom:210.906667pt;}
.ya7{bottom:215.546667pt;}
.y32{bottom:218.600000pt;}
.y76{bottom:229.466667pt;}
.ya6{bottom:233.146667pt;}
.y31{bottom:236.200000pt;}
.y1f{bottom:239.560000pt;}
.y75{bottom:247.066667pt;}
.ya5{bottom:250.906667pt;}
.y30{bottom:253.826667pt;}
.y1e{bottom:261.026667pt;}
.y74{bottom:265.626667pt;}
.ya4{bottom:268.506667pt;}
.y2f{bottom:271.426667pt;}
.y1d{bottom:282.466667pt;}
.y73{bottom:283.386667pt;}
.y11{bottom:283.546667pt;}
.ya3{bottom:286.106667pt;}
.y2e{bottom:289.186667pt;}
.y72{bottom:301.986667pt;}
.ya2{bottom:303.746667pt;}
.y1c{bottom:304.066667pt;}
.y2d{bottom:306.786667pt;}
.y71{bottom:320.546667pt;}
.ya1{bottom:321.346667pt;}
.y2c{bottom:324.386667pt;}
.y1b{bottom:325.506667pt;}
.y70{bottom:339.106667pt;}
.y2b{bottom:341.506667pt;}
.y1a{bottom:346.946667pt;}
.y6f{bottom:356.706667pt;}
.y2a{bottom:357.346667pt;}
.y19{bottom:368.386667pt;}
.y29{bottom:373.346667pt;}
.ya0{bottom:374.306667pt;}
.y6e{bottom:375.426667pt;}
.y28{bottom:389.186667pt;}
.y18{bottom:389.826667pt;}
.y9f{bottom:391.906667pt;}
.y6d{bottom:393.026667pt;}
.y27{bottom:405.026667pt;}
.y9e{bottom:409.506667pt;}
.y17{bottom:411.266667pt;}
.y6c{bottom:411.586667pt;}
.y26{bottom:420.866667pt;}
.y9d{bottom:427.266667pt;}
.y6b{bottom:429.186667pt;}
.y16{bottom:432.866667pt;}
.y25{bottom:436.706667pt;}
.y9c{bottom:444.866667pt;}
.y6a{bottom:447.746667pt;}
.y24{bottom:452.546667pt;}
.y15{bottom:454.306667pt;}
.y9b{bottom:462.466667pt;}
.y69{bottom:465.506667pt;}
.y23{bottom:468.546667pt;}
.y14{bottom:475.746667pt;}
.y9a{bottom:480.066667pt;}
.y68{bottom:483.106667pt;}
.y22{bottom:484.426667pt;}
.y13{bottom:497.226667pt;}
.y99{bottom:497.666667pt;}
.y21{bottom:500.266667pt;}
.y67{bottom:500.706667pt;}
.y98{bottom:515.426667pt;}
.y20{bottom:516.106667pt;}
.y66{bottom:518.306667pt;}
.y12{bottom:518.666667pt;}
.y97{bottom:533.053333pt;}
.y65{bottom:535.933333pt;}
.y96{bottom:550.653333pt;}
.y64{bottom:553.693333pt;}
.y95{bottom:568.253333pt;}
.y63{bottom:571.293333pt;}
.y94{bottom:585.853333pt;}
.y62{bottom:588.893333pt;}
.y93{bottom:604.573333pt;}
.y61{bottom:606.493333pt;}
.y92{bottom:623.133333pt;}
.y60{bottom:624.093333pt;}
.y91{bottom:641.693333pt;}
.y5f{bottom:641.853333pt;}
.y90{bottom:659.293333pt;}
.y5e{bottom:659.453333pt;}
.ybb{bottom:668.893333pt;}
.y5d{bottom:674.173333pt;}
.y8f{bottom:677.853333pt;}
.yba{bottom:686.493333pt;}
.y8e{bottom:696.573333pt;}
.yb9{bottom:704.093333pt;}
.y8d{bottom:714.173333pt;}
.yb8{bottom:721.853333pt;}
.y8c{bottom:732.733333pt;}
.yb7{bottom:739.453333pt;}
.y8b{bottom:750.333333pt;}
.yb6{bottom:757.053333pt;}
.y8a{bottom:768.933333pt;}
.yb5{bottom:774.693333pt;}
.y89{bottom:786.693333pt;}
.yb4{bottom:792.293333pt;}
.y88{bottom:805.253333pt;}
.yb3{bottom:810.053333pt;}
.y10{bottom:813.253333pt;}
.yf{bottom:819.813333pt;}
.y87{bottom:822.853333pt;}
.yb2{bottom:827.653333pt;}
.ye{bottom:837.413333pt;}
.y86{bottom:841.413333pt;}
.yb1{bottom:845.253333pt;}
.y85{bottom:859.013333pt;}
.yd{bottom:859.813333pt;}
.yb0{bottom:862.853333pt;}
.yc{bottom:872.773333pt;}
.y84{bottom:877.573333pt;}
.yaf{bottom:880.453333pt;}
.yb{bottom:895.013333pt;}
.y83{bottom:895.333333pt;}
.yae{bottom:898.213333pt;}
.ya{bottom:907.973333pt;}
.y82{bottom:913.893333pt;}
.y5c{bottom:915.813333pt;}
.y9{bottom:927.653333pt;}
.y81{bottom:931.493333pt;}
.y5b{bottom:933.413333pt;}
.y80{bottom:950.053333pt;}
.y5a{bottom:951.013333pt;}
.y8{bottom:953.093333pt;}
.y57{bottom:956.000000pt;}
.y7f{bottom:967.653333pt;}
.y59{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.h12{height:3.575000pt;}
.hb{height:3.702500pt;}
.h17{height:8.292813pt;}
.h15{height:18.768750pt;}
.h14{height:22.343750pt;}
.ha{height:24.131250pt;}
.h19{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h16{height:33.867188pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h10{height:36.585938pt;}
.h6{height:37.090625pt;}
.h11{height:37.479688pt;}
.h1c{height:38.361562pt;}
.h1b{height:38.672812pt;}
.h18{height:40.488438pt;}
.h5{height:41.112500pt;}
.h1d{height:42.691250pt;}
.h9{height:42.944375pt;}
.h8{height:52.832812pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h13{height:199.200000pt;}
.hc{height:527.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x19{left:7.232000pt;}
.x4{left:11.360000pt;}
.x18{left:14.272000pt;}
.x1d{left:16.192000pt;}
.x16{left:17.472000pt;}
.x17{left:23.232000pt;}
.x1f{left:25.952000pt;}
.x6{left:30.080000pt;}
.x1e{left:42.432000pt;}
.x11{left:45.152000pt;}
.x10{left:48.832000pt;}
.x21{left:50.752000pt;}
.x1b{left:55.200000pt;}
.x20{left:58.906667pt;}
.x14{left:65.146667pt;}
.x1{left:69.600000pt;}
.x15{left:70.746667pt;}
.x13{left:73.306667pt;}
.x7{left:76.799988pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1c{left:94.906667pt;}
.x25{left:100.831988pt;}
.x12{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1a{left:194.746667pt;}
.xd{left:292.226655pt;}
.xa{left:326.146655pt;}
.xb{left:348.226655pt;}
.xc{left:407.426655pt;}
.xe{left:508.893322pt;}
.x24{left:616.933322pt;}
.x9{left:680.933322pt;}
.x8{left:697.093322pt;}
.xf{left:717.093322pt;}
}




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