
    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_23166db5d8601f2b7e114eec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9048cd4567aedfe2a6faa46f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_843f201533022a99d29b940c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8ef3925c7213e7430fa07de3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eebf23a1297c802d83bf4a93.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0bcc8567c69af777d15ef508.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a26751de5f9a6beb8471f769.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.ls12{letter-spacing:12.720000px;}
.ls11{letter-spacing:14.160000px;}
.ls9{letter-spacing:65.117280px;}
.ls7{letter-spacing:65.837280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.ws9{word-spacing:-40.608000px;}
.ws0{word-spacing:-23.921280px;}
.ws1{word-spacing:-23.598600px;}
.ws8{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.568000px;}
.ws10{word-spacing:-17.280000px;}
.wsa{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.993280px;}
.wsf{word-spacing:-13.860000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-8.820000px;}
._6{margin-left:-7.354320px;}
._5{margin-left:-5.492640px;}
._d{margin-left:-3.741120px;}
._4{margin-left:-2.515920px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._12{width:2.801760px;}
._f{width:3.804000px;}
._e{width:5.112000px;}
._a{width:6.408000px;}
._10{width:7.704000px;}
._9{width:9.029760px;}
._b{width:10.283760px;}
._14{width:11.375520px;}
._3{width:12.658080px;}
._8{width:14.317920px;}
._c{width:15.562080px;}
._2{width:17.524080px;}
._13{width:19.584000px;}
._17{width:21.167040px;}
._18{width:22.331520px;}
._15{width:24.264000px;}
._11{width:28.237680px;}
._16{width:32.760000px;}
.fc2{color:rgb(13,40,64);}
.fc1{color:rgb(0,0,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.980000px;}
.y4{bottom:87.480000px;}
.y3{bottom:106.380000px;}
.y2c{bottom:106.560000px;}
.y2{bottom:125.460000px;}
.y1{bottom:144.396000px;}
.y96{bottom:165.090000px;}
.y2b{bottom:178.770000px;}
.y95{bottom:185.790000px;}
.y4b{bottom:188.130000px;}
.y68{bottom:196.410000px;}
.y94{bottom:206.670000px;}
.y4a{bottom:219.090000px;}
.y2a{bottom:220.170000px;}
.y67{bottom:233.310000px;}
.y93{bottom:233.850000px;}
.y29{bottom:240.870000px;}
.y49{bottom:250.230000px;}
.y92{bottom:257.610000px;}
.y28{bottom:261.570000px;}
.y66{bottom:270.390000px;}
.y91{bottom:278.490000px;}
.y48{bottom:281.190000px;}
.y27{bottom:282.270000px;}
.y26{bottom:302.970000px;}
.y65{bottom:307.470000px;}
.y90{bottom:309.450000px;}
.y47{bottom:312.330000px;}
.y25{bottom:323.670000px;}
.y8f{bottom:340.590000px;}
.y46{bottom:343.290000px;}
.y24{bottom:344.370000px;}
.y64{bottom:344.550000px;}
.y23{bottom:365.070000px;}
.y8e{bottom:371.550000px;}
.y45{bottom:374.430000px;}
.y63{bottom:381.630000px;}
.y22{bottom:385.770000px;}
.y8d{bottom:402.555000px;}
.y44{bottom:405.435000px;}
.y21{bottom:406.515000px;}
.y62{bottom:418.755000px;}
.y20{bottom:427.215000px;}
.y8c{bottom:433.695000px;}
.y43{bottom:436.575000px;}
.y1f{bottom:448.095000px;}
.y61{bottom:449.895000px;}
.y8b{bottom:464.655000px;}
.y42{bottom:467.535000px;}
.y1e{bottom:468.795000px;}
.y60{bottom:480.855000px;}
.y1d{bottom:489.495000px;}
.y41{bottom:498.675000px;}
.y8a{bottom:503.895000px;}
.y1c{bottom:510.195000px;}
.y5f{bottom:511.995000px;}
.y7f{bottom:522.975000px;}
.y40{bottom:529.635000px;}
.y89{bottom:538.095000px;}
.y5e{bottom:542.955000px;}
.y7e{bottom:546.375000px;}
.y1b{bottom:551.595000px;}
.y3f{bottom:560.775000px;}
.y7d{bottom:567.075000px;}
.y88{bottom:569.055000px;}
.y1a{bottom:572.295000px;}
.y5d{bottom:574.095000px;}
.y3e{bottom:591.735000px;}
.y19{bottom:592.995000px;}
.y87{bottom:600.195000px;}
.y5c{bottom:605.055000px;}
.y7c{bottom:610.095000px;}
.y18{bottom:613.695000px;}
.y3d{bottom:622.695000px;}
.y86{bottom:631.155000px;}
.y17{bottom:634.395000px;}
.y5b{bottom:636.195000px;}
.y7b{bottom:641.085000px;}
.y85{bottom:651.345000px;}
.y3c{bottom:653.865000px;}
.y16{bottom:655.125000px;}
.y5a{bottom:667.185000px;}
.y7a{bottom:672.225000px;}
.y15{bottom:675.825000px;}
.ya6{bottom:680.145000px;}
.y3b{bottom:684.825000px;}
.y14{bottom:696.525000px;}
.y59{bottom:698.145000px;}
.ya5{bottom:700.845000px;}
.y79{bottom:703.185000px;}
.y3a{bottom:715.965000px;}
.y13{bottom:717.225000px;}
.ya4{bottom:721.545000px;}
.y78{bottom:723.345000px;}
.y74{bottom:727.125000px;}
.y58{bottom:737.565000px;}
.y12{bottom:737.925000px;}
.ya3{bottom:742.245000px;}
.y39{bottom:746.925000px;}
.y73{bottom:747.825000px;}
.y11{bottom:758.625000px;}
.ya2{bottom:762.945000px;}
.y57{bottom:773.745000px;}
.y38{bottom:778.065000px;}
.y10{bottom:779.325000px;}
.y72{bottom:780.585000px;}
.ya1{bottom:783.645000px;}
.yf{bottom:800.205000px;}
.ya0{bottom:804.345000px;}
.y71{bottom:807.765000px;}
.y56{bottom:808.125000px;}
.y37{bottom:809.025000px;}
.ye{bottom:820.905000px;}
.y9f{bottom:825.045000px;}
.y70{bottom:831.345000px;}
.y55{bottom:839.265000px;}
.y36{bottom:840.165000px;}
.yd{bottom:841.605000px;}
.y9e{bottom:845.745000px;}
.y9d{bottom:866.445000px;}
.y54{bottom:870.225000px;}
.y35{bottom:871.125000px;}
.y6f{bottom:877.425000px;}
.yc{bottom:883.005000px;}
.y9c{bottom:887.145000px;}
.y53{bottom:901.410000px;}
.y34{bottom:902.310000px;}
.yb{bottom:903.750000px;}
.y9b{bottom:907.890000px;}
.y6e{bottom:908.430000px;}
.y9a{bottom:928.590000px;}
.y52{bottom:932.370000px;}
.y33{bottom:933.270000px;}
.y6d{bottom:939.390000px;}
.ya{bottom:946.410000px;}
.y99{bottom:949.290000px;}
.y51{bottom:963.510000px;}
.y32{bottom:964.410000px;}
.y6c{bottom:970.350000px;}
.y98{bottom:973.770000px;}
.y9{bottom:973.950000px;}
.y50{bottom:994.470000px;}
.y31{bottom:995.370000px;}
.y6b{bottom:1007.430000px;}
.y84{bottom:1009.050000px;}
.y8{bottom:1022.370000px;}
.y4f{bottom:1025.610000px;}
.y30{bottom:1026.510000px;}
.y83{bottom:1032.090000px;}
.y97{bottom:1035.870000px;}
.y6a{bottom:1044.510000px;}
.y7{bottom:1049.910000px;}
.y82{bottom:1052.070000px;}
.y4e{bottom:1056.570000px;}
.y2f{bottom:1057.470000px;}
.y77{bottom:1071.150000px;}
.y6{bottom:1076.730000px;}
.y81{bottom:1077.270000px;}
.y69{bottom:1081.590000px;}
.y4d{bottom:1087.710000px;}
.y2e{bottom:1088.430000px;}
.y76{bottom:1094.190000px;}
.y80{bottom:1097.970000px;}
.y75{bottom:1114.170000px;}
.y2d{bottom:1115.790000px;}
.y4c{bottom:1118.670000px;}
.h9{height:49.255313px;}
.h3{height:53.573906px;}
.h7{height:59.343750px;}
.h2{height:59.383125px;}
.h6{height:64.546875px;}
.h8{height:74.820586px;}
.h4{height:75.519844px;}
.h5{height:85.052461px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x4{left:119.195987px;}
.x6{left:127.655987px;}
.x10{left:141.155987px;}
.x3{left:149.075987px;}
.xe{left:160.229987px;}
.x8{left:170.489987px;}
.x11{left:176.069987px;}
.x12{left:198.389987px;}
.xc{left:213.149987px;}
.x13{left:233.309987px;}
.x14{left:246.629987px;}
.xa{left:256.214987px;}
.x5{left:262.514987px;}
.x15{left:281.594987px;}
.x16{left:294.914987px;}
.xb{left:301.754987px;}
.x17{left:329.834987px;}
.x9{left:334.694987px;}
.xd{left:337.214987px;}
.x18{left:343.154987px;}
.x19{left:378.074987px;}
.x1a{left:463.424987px;}
.x1b{left:498.164987px;}
.x1c{left:538.664987px;}
.x1d{left:573.584987px;}
.x1e{left:652.469987px;}
.x1f{left:687.209987px;}
.x2{left:787.859987px;}
.xf{left:807.839987px;}
.x7{left:809.099987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls12{letter-spacing:11.306667pt;}
.ls11{letter-spacing:12.586667pt;}
.ls9{letter-spacing:57.882027pt;}
.ls7{letter-spacing:58.522027pt;}
.wse{word-spacing:-53.120000pt;}
.ws9{word-spacing:-36.096000pt;}
.ws0{word-spacing:-21.263360pt;}
.ws1{word-spacing:-20.976533pt;}
.ws8{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws10{word-spacing:-15.360000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.327360pt;}
.wsf{word-spacing:-12.320000pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-7.840000pt;}
._6{margin-left:-6.537173pt;}
._5{margin-left:-4.882347pt;}
._d{margin-left:-3.325440pt;}
._4{margin-left:-2.236373pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._12{width:2.490453pt;}
._f{width:3.381333pt;}
._e{width:4.544000pt;}
._a{width:5.696000pt;}
._10{width:6.848000pt;}
._9{width:8.026453pt;}
._b{width:9.141120pt;}
._14{width:10.111573pt;}
._3{width:11.251627pt;}
._8{width:12.727040pt;}
._c{width:13.832960pt;}
._2{width:15.576960pt;}
._13{width:17.408000pt;}
._17{width:18.815147pt;}
._18{width:19.850240pt;}
._15{width:21.568000pt;}
._11{width:25.100160pt;}
._16{width:29.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:73.760000pt;}
.y4{bottom:77.760000pt;}
.y3{bottom:94.560000pt;}
.y2c{bottom:94.720000pt;}
.y2{bottom:111.520000pt;}
.y1{bottom:128.352000pt;}
.y96{bottom:146.746667pt;}
.y2b{bottom:158.906667pt;}
.y95{bottom:165.146667pt;}
.y4b{bottom:167.226667pt;}
.y68{bottom:174.586667pt;}
.y94{bottom:183.706667pt;}
.y4a{bottom:194.746667pt;}
.y2a{bottom:195.706667pt;}
.y67{bottom:207.386667pt;}
.y93{bottom:207.866667pt;}
.y29{bottom:214.106667pt;}
.y49{bottom:222.426667pt;}
.y92{bottom:228.986667pt;}
.y28{bottom:232.506667pt;}
.y66{bottom:240.346667pt;}
.y91{bottom:247.546667pt;}
.y48{bottom:249.946667pt;}
.y27{bottom:250.906667pt;}
.y26{bottom:269.306667pt;}
.y65{bottom:273.306667pt;}
.y90{bottom:275.066667pt;}
.y47{bottom:277.626667pt;}
.y25{bottom:287.706667pt;}
.y8f{bottom:302.746667pt;}
.y46{bottom:305.146667pt;}
.y24{bottom:306.106667pt;}
.y64{bottom:306.266667pt;}
.y23{bottom:324.506667pt;}
.y8e{bottom:330.266667pt;}
.y45{bottom:332.826667pt;}
.y63{bottom:339.226667pt;}
.y22{bottom:342.906667pt;}
.y8d{bottom:357.826667pt;}
.y44{bottom:360.386667pt;}
.y21{bottom:361.346667pt;}
.y62{bottom:372.226667pt;}
.y20{bottom:379.746667pt;}
.y8c{bottom:385.506667pt;}
.y43{bottom:388.066667pt;}
.y1f{bottom:398.306667pt;}
.y61{bottom:399.906667pt;}
.y8b{bottom:413.026667pt;}
.y42{bottom:415.586667pt;}
.y1e{bottom:416.706667pt;}
.y60{bottom:427.426667pt;}
.y1d{bottom:435.106667pt;}
.y41{bottom:443.266667pt;}
.y8a{bottom:447.906667pt;}
.y1c{bottom:453.506667pt;}
.y5f{bottom:455.106667pt;}
.y7f{bottom:464.866667pt;}
.y40{bottom:470.786667pt;}
.y89{bottom:478.306667pt;}
.y5e{bottom:482.626667pt;}
.y7e{bottom:485.666667pt;}
.y1b{bottom:490.306667pt;}
.y3f{bottom:498.466667pt;}
.y7d{bottom:504.066667pt;}
.y88{bottom:505.826667pt;}
.y1a{bottom:508.706667pt;}
.y5d{bottom:510.306667pt;}
.y3e{bottom:525.986667pt;}
.y19{bottom:527.106667pt;}
.y87{bottom:533.506667pt;}
.y5c{bottom:537.826667pt;}
.y7c{bottom:542.306667pt;}
.y18{bottom:545.506667pt;}
.y3d{bottom:553.506667pt;}
.y86{bottom:561.026667pt;}
.y17{bottom:563.906667pt;}
.y5b{bottom:565.506667pt;}
.y7b{bottom:569.853333pt;}
.y85{bottom:578.973333pt;}
.y3c{bottom:581.213333pt;}
.y16{bottom:582.333333pt;}
.y5a{bottom:593.053333pt;}
.y7a{bottom:597.533333pt;}
.y15{bottom:600.733333pt;}
.ya6{bottom:604.573333pt;}
.y3b{bottom:608.733333pt;}
.y14{bottom:619.133333pt;}
.y59{bottom:620.573333pt;}
.ya5{bottom:622.973333pt;}
.y79{bottom:625.053333pt;}
.y3a{bottom:636.413333pt;}
.y13{bottom:637.533333pt;}
.ya4{bottom:641.373333pt;}
.y78{bottom:642.973333pt;}
.y74{bottom:646.333333pt;}
.y58{bottom:655.613333pt;}
.y12{bottom:655.933333pt;}
.ya3{bottom:659.773333pt;}
.y39{bottom:663.933333pt;}
.y73{bottom:664.733333pt;}
.y11{bottom:674.333333pt;}
.ya2{bottom:678.173333pt;}
.y57{bottom:687.773333pt;}
.y38{bottom:691.613333pt;}
.y10{bottom:692.733333pt;}
.y72{bottom:693.853333pt;}
.ya1{bottom:696.573333pt;}
.yf{bottom:711.293333pt;}
.ya0{bottom:714.973333pt;}
.y71{bottom:718.013333pt;}
.y56{bottom:718.333333pt;}
.y37{bottom:719.133333pt;}
.ye{bottom:729.693333pt;}
.y9f{bottom:733.373333pt;}
.y70{bottom:738.973333pt;}
.y55{bottom:746.013333pt;}
.y36{bottom:746.813333pt;}
.yd{bottom:748.093333pt;}
.y9e{bottom:751.773333pt;}
.y9d{bottom:770.173333pt;}
.y54{bottom:773.533333pt;}
.y35{bottom:774.333333pt;}
.y6f{bottom:779.933333pt;}
.yc{bottom:784.893333pt;}
.y9c{bottom:788.573333pt;}
.y53{bottom:801.253333pt;}
.y34{bottom:802.053333pt;}
.yb{bottom:803.333333pt;}
.y9b{bottom:807.013333pt;}
.y6e{bottom:807.493333pt;}
.y9a{bottom:825.413333pt;}
.y52{bottom:828.773333pt;}
.y33{bottom:829.573333pt;}
.y6d{bottom:835.013333pt;}
.ya{bottom:841.253333pt;}
.y99{bottom:843.813333pt;}
.y51{bottom:856.453333pt;}
.y32{bottom:857.253333pt;}
.y6c{bottom:862.533333pt;}
.y98{bottom:865.573333pt;}
.y9{bottom:865.733333pt;}
.y50{bottom:883.973333pt;}
.y31{bottom:884.773333pt;}
.y6b{bottom:895.493333pt;}
.y84{bottom:896.933333pt;}
.y8{bottom:908.773333pt;}
.y4f{bottom:911.653333pt;}
.y30{bottom:912.453333pt;}
.y83{bottom:917.413333pt;}
.y97{bottom:920.773333pt;}
.y6a{bottom:928.453333pt;}
.y7{bottom:933.253333pt;}
.y82{bottom:935.173333pt;}
.y4e{bottom:939.173333pt;}
.y2f{bottom:939.973333pt;}
.y77{bottom:952.133333pt;}
.y6{bottom:957.093333pt;}
.y81{bottom:957.573333pt;}
.y69{bottom:961.413333pt;}
.y4d{bottom:966.853333pt;}
.y2e{bottom:967.493333pt;}
.y76{bottom:972.613333pt;}
.y80{bottom:975.973333pt;}
.y75{bottom:990.373333pt;}
.y2d{bottom:991.813333pt;}
.y4c{bottom:994.373333pt;}
.h9{height:43.782500pt;}
.h3{height:47.621250pt;}
.h7{height:52.750000pt;}
.h2{height:52.785000pt;}
.h6{height:57.375000pt;}
.h8{height:66.507188pt;}
.h4{height:67.128750pt;}
.h5{height:75.602187pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x4{left:105.951988pt;}
.x6{left:113.471988pt;}
.x10{left:125.471988pt;}
.x3{left:132.511988pt;}
.xe{left:142.426655pt;}
.x8{left:151.546655pt;}
.x11{left:156.506655pt;}
.x12{left:176.346655pt;}
.xc{left:189.466655pt;}
.x13{left:207.386655pt;}
.x14{left:219.226655pt;}
.xa{left:227.746655pt;}
.x5{left:233.346655pt;}
.x15{left:250.306655pt;}
.x16{left:262.146655pt;}
.xb{left:268.226655pt;}
.x17{left:293.186655pt;}
.x9{left:297.506655pt;}
.xd{left:299.746655pt;}
.x18{left:305.026655pt;}
.x19{left:336.066655pt;}
.x1a{left:411.933321pt;}
.x1b{left:442.813321pt;}
.x1c{left:478.813321pt;}
.x1d{left:509.853321pt;}
.x1e{left:579.973321pt;}
.x1f{left:610.853321pt;}
.x2{left:700.319988pt;}
.xf{left:718.079988pt;}
.x7{left:719.199988pt;}
}




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