
    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_5c0bac6e2adb4a6ea6c7a289.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_f83256e315fcacbf0b1c4f19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_234f43c7e35a10c08f13b024.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c51d92f3f4b0fd8b16dff74.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2d4827d46fdc77c30dff35e6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c2c73fd7a514346ea56335f4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f3fc206467eb9a0be15a9e45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_f415abeeca230900cc663605.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d6fadcb485033c83ae1860f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.869629;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_26989fcc4a3cf3d1df94599d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_b473e017f0bf50bf2a0f6c3c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.015137;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;}
.m5{transform:matrix(0.000000,-0.249503,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249503,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249503,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249344,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249344,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249344,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249379,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249379,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249379,0.250000,0.000000,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);}
.m6{transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250623,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v3{vertical-align:-76.320000px;}
.v2{vertical-align:-27.360000px;}
.v7{vertical-align:-18.000000px;}
.v4{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v8{vertical-align:21.363414px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.984000px;}
.ls10{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.262200px;}
.ls18{letter-spacing:-0.242032px;}
.ls14{letter-spacing:-0.213634px;}
.ls16{letter-spacing:-0.213209px;}
.ls17{letter-spacing:-0.198995px;}
.ls15{letter-spacing:-0.165829px;}
.ls11{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls13{letter-spacing:-0.065663px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.540000px;}
.ls2{letter-spacing:195.816000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws0{word-spacing:-23.418720px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.ws12{word-spacing:-16.407600px;}
.ws9{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.145400px;}
.ws1d{word-spacing:-16.083184px;}
.ws1c{word-spacing:-16.061768px;}
.wse{word-spacing:-15.576000px;}
.ws15{word-spacing:-15.228000px;}
.ws13{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.508000px;}
.ws11{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.672000px;}
.ws1{word-spacing:-12.060000px;}
.ws1a{word-spacing:-10.866006px;}
.ws18{word-spacing:-10.835456px;}
.ws1b{word-spacing:-10.729182px;}
.ws5{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.000000px;}
.ws1e{word-spacing:0.000000px;}
.ws17{word-spacing:83.251754px;}
.ws16{word-spacing:94.562692px;}
.ws19{word-spacing:240.932112px;}
._0{margin-left:-5.812560px;}
._1{margin-left:-1.769040px;}
._2{width:1.600560px;}
._a{width:2.660160px;}
._b{width:3.877680px;}
._f{width:4.915920px;}
._3{width:7.418880px;}
._4{width:8.572320px;}
._9{width:9.604800px;}
._5{width:11.393280px;}
._6{width:12.453120px;}
._7{width:13.579200px;}
._8{width:15.072240px;}
._c{width:18.261120px;}
._12{width:21.347040px;}
._11{width:22.425360px;}
._10{width:23.430720px;}
._d{width:25.104960px;}
._e{width:26.379120px;}
._13{width:115.565367px;}
._14{width:1023.933754px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.000000px;}
.fsa{font-size:35.667128px;}
.fsd{font-size:35.772721px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.976459px;}
.fsc{font-size:39.086354px;}
.fs3{font-size:41.760000px;}
.fsb{font-size:45.752487px;}
.fse{font-size:45.881487px;}
.fs10{font-size:47.474257px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs11{font-size:71.069769px;}
.fs12{font-size:71.164529px;}
.fsf{font-size:71.211385px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:5.000943px;}
.y2a{bottom:28.113697px;}
.y34{bottom:28.193446px;}
.y2b{bottom:52.059617px;}
.y35{bottom:52.206884px;}
.y2c{bottom:90.838026px;}
.y36{bottom:91.094630px;}
.y3e{bottom:95.685574px;}
.y30{bottom:125.165100px;}
.y3a{bottom:125.518491px;}
.y2d{bottom:129.510528px;}
.y37{bottom:129.876169px;}
.y28{bottom:152.850000px;}
.y2e{bottom:168.288937px;}
.y27{bottom:168.510000px;}
.y38{bottom:168.763916px;}
.y26{bottom:179.490000px;}
.y25{bottom:187.590000px;}
.y33{bottom:198.697396px;}
.y3d{bottom:200.854391px;}
.y24{bottom:206.670000px;}
.y2f{bottom:207.069465px;}
.y39{bottom:207.653786px;}
.y32{bottom:212.685795px;}
.y3c{bottom:214.879044px;}
.y23{bottom:225.570000px;}
.y31{bottom:226.671017px;}
.y3b{bottom:228.903698px;}
.y22{bottom:244.650000px;}
.y21{bottom:262.830000px;}
.y20{bottom:276.870000px;}
.y29{bottom:276.915000px;}
.y1f{bottom:504.075000px;}
.y1e{bottom:523.155000px;}
.y1d{bottom:542.055000px;}
.y1c{bottom:560.955000px;}
.y1b{bottom:580.035000px;}
.y1a{bottom:598.965000px;}
.y19{bottom:618.045000px;}
.y18{bottom:636.945000px;}
.y17{bottom:655.845000px;}
.y16{bottom:674.925000px;}
.y15{bottom:693.825000px;}
.y14{bottom:712.905000px;}
.y13{bottom:731.805000px;}
.y12{bottom:750.885000px;}
.y11{bottom:769.785000px;}
.y10{bottom:788.685000px;}
.yf{bottom:807.765000px;}
.ye{bottom:826.665000px;}
.yd{bottom:845.745000px;}
.yc{bottom:864.690000px;}
.yb{bottom:902.670000px;}
.ya{bottom:930.570000px;}
.y9{bottom:956.490000px;}
.y8{bottom:968.550000px;}
.y7{bottom:994.290000px;}
.y6{bottom:1013.370000px;}
.y5{bottom:1025.610000px;}
.y4{bottom:1046.310000px;}
.y3{bottom:1067.550000px;}
.y2{bottom:1091.670000px;}
.y1{bottom:1115.790000px;}
.ha{height:17.666016px;}
.hf{height:25.984060px;}
.h12{height:26.060986px;}
.he{height:28.394959px;}
.h11{height:28.475019px;}
.h10{height:33.331401px;}
.h13{height:33.425380px;}
.hb{height:38.320312px;}
.hc{height:38.344313px;}
.h5{height:40.964766px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h15{height:60.727360px;}
.h2{height:61.329023px;}
.h14{height:61.558898px;}
.h6{height:64.978594px;}
.h7{height:65.010937px;}
.h4{height:72.562500px;}
.h3{height:87.859687px;}
.hd{height:223.277525px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:314.803775px;}
.w3{width:351.654130px;}
.w4{width:582.657488px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:16.758413px;}
.x12{left:25.125399px;}
.x11{left:31.513537px;}
.xd{left:35.242863px;}
.xb{left:41.612145px;}
.xc{left:44.902427px;}
.xa{left:84.176656px;}
.x10{left:92.942528px;}
.x6{left:127.656000px;}
.x1{left:143.316000px;}
.x15{left:147.951543px;}
.xf{left:155.100000px;}
.x4{left:160.770000px;}
.x7{left:180.750000px;}
.x5{left:274.755000px;}
.x13{left:376.994773px;}
.xe{left:386.073601px;}
.x2{left:396.255000px;}
.x9{left:422.953713px;}
.x3{left:446.505000px;}
.x8{left:738.000000px;}
@media print{
.v3{vertical-align:-67.840000pt;}
.v2{vertical-align:-24.320000pt;}
.v7{vertical-align:-16.000000pt;}
.v4{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v8{vertical-align:18.989701pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.874667pt;}
.ls10{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls18{letter-spacing:-0.215140pt;}
.ls14{letter-spacing:-0.189897pt;}
.ls16{letter-spacing:-0.189519pt;}
.ls17{letter-spacing:-0.176885pt;}
.ls15{letter-spacing:-0.147404pt;}
.ls11{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls13{letter-spacing:-0.058367pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls2{letter-spacing:174.058667pt;}
.ws8{word-spacing:-58.880000pt;}
.ws0{word-spacing:-20.816640pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.ws12{word-spacing:-14.584533pt;}
.ws9{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.351467pt;}
.ws1d{word-spacing:-14.296163pt;}
.ws1c{word-spacing:-14.277127pt;}
.wse{word-spacing:-13.845333pt;}
.ws15{word-spacing:-13.536000pt;}
.ws13{word-spacing:-13.344000pt;}
.ws14{word-spacing:-12.896000pt;}
.ws11{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.264000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-9.658672pt;}
.ws18{word-spacing:-9.631516pt;}
.ws1b{word-spacing:-9.537051pt;}
.ws5{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws1e{word-spacing:0.000000pt;}
.ws17{word-spacing:74.001559pt;}
.ws16{word-spacing:84.055727pt;}
.ws19{word-spacing:214.161877pt;}
._0{margin-left:-5.166720pt;}
._1{margin-left:-1.572480pt;}
._2{width:1.422720pt;}
._a{width:2.364587pt;}
._b{width:3.446827pt;}
._f{width:4.369707pt;}
._3{width:6.594560pt;}
._4{width:7.619840pt;}
._9{width:8.537600pt;}
._5{width:10.127360pt;}
._6{width:11.069440pt;}
._7{width:12.070400pt;}
._8{width:13.397547pt;}
._c{width:16.232107pt;}
._12{width:18.975147pt;}
._11{width:19.933653pt;}
._10{width:20.827307pt;}
._d{width:22.315520pt;}
._e{width:23.448107pt;}
._13{width:102.724771pt;}
._14{width:910.163337pt;}
.fs8{font-size:16.000000pt;}
.fsa{font-size:31.704114pt;}
.fsd{font-size:31.797974pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.645741pt;}
.fsc{font-size:34.743425pt;}
.fs3{font-size:37.120000pt;}
.fsb{font-size:40.668877pt;}
.fse{font-size:40.783544pt;}
.fs10{font-size:42.199339pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs11{font-size:63.173128pt;}
.fs12{font-size:63.257359pt;}
.fsf{font-size:63.299009pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:4.445282pt;}
.y2a{bottom:24.989953pt;}
.y34{bottom:25.060841pt;}
.y2b{bottom:46.275215pt;}
.y35{bottom:46.406119pt;}
.y2c{bottom:80.744912pt;}
.y36{bottom:80.973005pt;}
.y3e{bottom:85.053843pt;}
.y30{bottom:111.257867pt;}
.y3a{bottom:111.571992pt;}
.y2d{bottom:115.120469pt;}
.y37{bottom:115.445484pt;}
.y28{bottom:135.866667pt;}
.y2e{bottom:149.590166pt;}
.y27{bottom:149.786667pt;}
.y38{bottom:150.012370pt;}
.y26{bottom:159.546667pt;}
.y25{bottom:166.746667pt;}
.y33{bottom:176.619907pt;}
.y3d{bottom:178.537236pt;}
.y24{bottom:183.706667pt;}
.y2f{bottom:184.061747pt;}
.y39{bottom:184.581143pt;}
.y32{bottom:189.054040pt;}
.y3c{bottom:191.003595pt;}
.y23{bottom:200.506667pt;}
.y31{bottom:201.485348pt;}
.y3b{bottom:203.469953pt;}
.y22{bottom:217.466667pt;}
.y21{bottom:233.626667pt;}
.y20{bottom:246.106667pt;}
.y29{bottom:246.146667pt;}
.y1f{bottom:448.066667pt;}
.y1e{bottom:465.026667pt;}
.y1d{bottom:481.826667pt;}
.y1c{bottom:498.626667pt;}
.y1b{bottom:515.586667pt;}
.y1a{bottom:532.413333pt;}
.y19{bottom:549.373333pt;}
.y18{bottom:566.173333pt;}
.y17{bottom:582.973333pt;}
.y16{bottom:599.933333pt;}
.y15{bottom:616.733333pt;}
.y14{bottom:633.693333pt;}
.y13{bottom:650.493333pt;}
.y12{bottom:667.453333pt;}
.y11{bottom:684.253333pt;}
.y10{bottom:701.053333pt;}
.yf{bottom:718.013333pt;}
.ye{bottom:734.813333pt;}
.yd{bottom:751.773333pt;}
.yc{bottom:768.613333pt;}
.yb{bottom:802.373333pt;}
.ya{bottom:827.173333pt;}
.y9{bottom:850.213333pt;}
.y8{bottom:860.933333pt;}
.y7{bottom:883.813333pt;}
.y6{bottom:900.773333pt;}
.y5{bottom:911.653333pt;}
.y4{bottom:930.053333pt;}
.y3{bottom:948.933333pt;}
.y2{bottom:970.373333pt;}
.y1{bottom:991.813333pt;}
.ha{height:15.703125pt;}
.hf{height:23.096942pt;}
.h12{height:23.165321pt;}
.he{height:25.239964pt;}
.h11{height:25.311128pt;}
.h10{height:29.627912pt;}
.h13{height:29.711449pt;}
.hb{height:34.062500pt;}
.hc{height:34.083833pt;}
.h5{height:36.413125pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h15{height:53.979875pt;}
.h2{height:54.514687pt;}
.h14{height:54.719020pt;}
.h6{height:57.758750pt;}
.h7{height:57.787500pt;}
.h4{height:64.500000pt;}
.h3{height:78.097500pt;}
.hd{height:198.468911pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:279.825578pt;}
.w3{width:312.581449pt;}
.w4{width:517.917767pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:14.896367pt;}
.x12{left:22.333688pt;}
.x11{left:28.012033pt;}
.xd{left:31.326990pt;}
.xb{left:36.988573pt;}
.xc{left:39.913269pt;}
.xa{left:74.823694pt;}
.x10{left:82.615580pt;}
.x6{left:113.472000pt;}
.x1{left:127.392000pt;}
.x15{left:131.512483pt;}
.xf{left:137.866667pt;}
.x4{left:142.906667pt;}
.x7{left:160.666667pt;}
.x5{left:244.226667pt;}
.x13{left:335.106465pt;}
.xe{left:343.176534pt;}
.x2{left:352.226667pt;}
.x9{left:375.958856pt;}
.x3{left:396.893333pt;}
.x8{left:656.000000pt;}
}




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