
    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_13c9136e0adb02edca133731.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_bbe183509d85bd1d062ae42b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_c7e11c7ebdd2a95143386774.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_8a55e7cf9d4a831e014aaa6d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_60b50630886db1add58d1067.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{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:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.520000px;}
.ls18{letter-spacing:-7.200000px;}
.ls17{letter-spacing:-1.008000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.285000px;}
.ls16{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.285000px;}
.ls1c{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.574200px;}
.ls19{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.936000px;}
.ls7{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.072800px;}
.ls6{letter-spacing:1.224000px;}
.lsa{letter-spacing:3.024000px;}
.ls0{letter-spacing:4.200000px;}
.lsb{letter-spacing:5.040000px;}
.ls1f{letter-spacing:5.112000px;}
.ls20{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls13{letter-spacing:9.777600px;}
.ls2{letter-spacing:10.200000px;}
.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;}
}
.ws1f{word-spacing:-18.648000px;}
.ws8{word-spacing:-17.784000px;}
.ws1e{word-spacing:-17.640000px;}
.ws13{word-spacing:-17.424000px;}
.ws19{word-spacing:-17.136000px;}
.ws7{word-spacing:-16.860000px;}
.ws22{word-spacing:-15.732000px;}
.ws21{word-spacing:-14.820000px;}
.ws20{word-spacing:-12.139200px;}
.ws3{word-spacing:-10.200000px;}
.ws2{word-spacing:-6.600000px;}
.ws23{word-spacing:-6.000000px;}
.ws0{word-spacing:-4.200000px;}
.ws6{word-spacing:-1.224000px;}
.wsa{word-spacing:-1.008000px;}
.wsb{word-spacing:-0.936000px;}
.ws1c{word-spacing:-0.864000px;}
.ws4{word-spacing:-0.504000px;}
.wse{word-spacing:-0.432000px;}
.ws5{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.288000px;}
.ws24{word-spacing:-0.285000px;}
.ws9{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.072000px;}
.ws14{word-spacing:0.144000px;}
.ws15{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
.ws12{word-spacing:0.360000px;}
.ws1d{word-spacing:0.432000px;}
.wsd{word-spacing:0.504000px;}
.ws11{word-spacing:0.576000px;}
.ws10{word-spacing:0.648000px;}
.ws1a{word-spacing:0.720000px;}
.ws17{word-spacing:1.008000px;}
.ws18{word-spacing:7.200000px;}
._11{margin-left:-13.852800px;}
._9{margin-left:-10.281600px;}
._7{margin-left:-8.670000px;}
._5{margin-left:-6.796200px;}
._3{margin-left:-4.950000px;}
._0{margin-left:-3.150000px;}
._2{margin-left:-2.058000px;}
._d{margin-left:-1.044000px;}
._b{width:1.557600px;}
._f{width:2.769600px;}
._1{width:4.200000px;}
._10{width:5.473200px;}
._6{width:6.600000px;}
._e{width:7.670400px;}
._c{width:8.710800px;}
._a{width:10.200000px;}
._4{width:11.253000px;}
._8{width:17.401200px;}
._12{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y79{bottom:140.311950px;}
.y14{bottom:141.968100px;}
.y3a{bottom:142.932300px;}
.y5e{bottom:144.930300px;}
.y78{bottom:156.813450px;}
.y13{bottom:163.424100px;}
.y39{bottom:164.838300px;}
.y5d{bottom:166.674300px;}
.y77{bottom:178.864950px;}
.y12{bottom:184.880100px;}
.y38{bottom:186.744300px;}
.y5c{bottom:188.418300px;}
.y76{bottom:195.364950px;}
.y11{bottom:206.336100px;}
.y37{bottom:208.650300px;}
.y5b{bottom:210.162300px;}
.y10{bottom:227.792100px;}
.y36{bottom:230.556300px;}
.y5a{bottom:231.906300px;}
.yf{bottom:249.248100px;}
.y35{bottom:252.462300px;}
.y59{bottom:253.650300px;}
.ye{bottom:270.704100px;}
.y34{bottom:274.368300px;}
.y58{bottom:275.394300px;}
.yd{bottom:292.160100px;}
.y33{bottom:296.274300px;}
.y57{bottom:297.138300px;}
.yc{bottom:313.616100px;}
.y32{bottom:318.180300px;}
.y56{bottom:318.882300px;}
.y75{bottom:319.914300px;}
.yb{bottom:335.072100px;}
.y74{bottom:337.914300px;}
.y31{bottom:340.086300px;}
.y55{bottom:340.626300px;}
.y73{bottom:355.914300px;}
.ya{bottom:356.528100px;}
.y30{bottom:361.992300px;}
.y54{bottom:362.370300px;}
.y72{bottom:373.914300px;}
.y9{bottom:377.984100px;}
.y2f{bottom:383.898300px;}
.y53{bottom:384.114300px;}
.y8{bottom:399.440100px;}
.y2e{bottom:405.804300px;}
.y52{bottom:405.858300px;}
.y71{bottom:406.914300px;}
.y7{bottom:420.896100px;}
.y70{bottom:424.914300px;}
.y51{bottom:427.602300px;}
.y2d{bottom:427.710300px;}
.y6{bottom:442.352100px;}
.y6f{bottom:442.914300px;}
.y50{bottom:449.346300px;}
.y2c{bottom:449.616300px;}
.y6e{bottom:460.914300px;}
.y4f{bottom:471.090300px;}
.y2b{bottom:471.522300px;}
.y15{bottom:480.913650px;}
.y4e{bottom:492.834300px;}
.y2a{bottom:493.428300px;}
.y6d{bottom:493.914300px;}
.y4d{bottom:514.578300px;}
.y29{bottom:515.334300px;}
.y6c{bottom:515.514300px;}
.y4c{bottom:536.322300px;}
.y6b{bottom:537.114300px;}
.y28{bottom:537.240300px;}
.y4b{bottom:558.066300px;}
.y6a{bottom:558.714300px;}
.y27{bottom:559.146300px;}
.y4a{bottom:579.810300px;}
.y69{bottom:580.314300px;}
.y26{bottom:581.052300px;}
.y49{bottom:601.554300px;}
.y68{bottom:601.914300px;}
.y25{bottom:602.958300px;}
.y48{bottom:623.298300px;}
.y67{bottom:623.514300px;}
.y24{bottom:624.864300px;}
.y47{bottom:645.042300px;}
.y66{bottom:645.114300px;}
.y23{bottom:646.770300px;}
.y65{bottom:666.756300px;}
.y46{bottom:666.786300px;}
.y22{bottom:668.514300px;}
.y64{bottom:688.500300px;}
.y45{bottom:688.530300px;}
.y21{bottom:690.114300px;}
.y63{bottom:710.244300px;}
.y44{bottom:710.274300px;}
.y20{bottom:711.714300px;}
.y62{bottom:731.988300px;}
.y43{bottom:732.018300px;}
.y1f{bottom:733.314300px;}
.y61{bottom:753.732300px;}
.y42{bottom:753.762300px;}
.y1e{bottom:754.914300px;}
.y60{bottom:775.476300px;}
.y41{bottom:775.506300px;}
.y1d{bottom:776.514300px;}
.y5f{bottom:797.220300px;}
.y40{bottom:797.250300px;}
.y1c{bottom:798.114300px;}
.y3f{bottom:818.994300px;}
.y1b{bottom:819.714300px;}
.y5{bottom:824.850450px;}
.y3e{bottom:840.738300px;}
.y1a{bottom:841.314300px;}
.y4{bottom:855.450450px;}
.y3d{bottom:862.482300px;}
.y19{bottom:862.914300px;}
.y3c{bottom:884.226300px;}
.y18{bottom:884.514300px;}
.y3b{bottom:905.970300px;}
.y17{bottom:906.114300px;}
.y3{bottom:910.711800px;}
.y16{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.hb{height:26.199902px;}
.ha{height:30.568359px;}
.h8{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.hc{height:48.399902px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h9{height:63.202031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.775400px;}
.x1{left:106.456500px;}
.x7{left:119.053350px;}
.x6{left:150.670350px;}
.x5{left:353.518350px;}
.x2{left:572.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.573333pt;}
.ls18{letter-spacing:-6.400000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.253333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.253333pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.510400pt;}
.ls19{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.832000pt;}
.ls7{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:0.953600pt;}
.ls6{letter-spacing:1.088000pt;}
.lsa{letter-spacing:2.688000pt;}
.ls0{letter-spacing:3.733333pt;}
.lsb{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:4.544000pt;}
.ls20{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls13{letter-spacing:8.691200pt;}
.ls2{letter-spacing:9.066667pt;}
.ws1f{word-spacing:-16.576000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws1e{word-spacing:-15.680000pt;}
.ws13{word-spacing:-15.488000pt;}
.ws19{word-spacing:-15.232000pt;}
.ws7{word-spacing:-14.986667pt;}
.ws22{word-spacing:-13.984000pt;}
.ws21{word-spacing:-13.173333pt;}
.ws20{word-spacing:-10.790400pt;}
.ws3{word-spacing:-9.066667pt;}
.ws2{word-spacing:-5.866667pt;}
.ws23{word-spacing:-5.333333pt;}
.ws0{word-spacing:-3.733333pt;}
.ws6{word-spacing:-1.088000pt;}
.wsa{word-spacing:-0.896000pt;}
.wsb{word-spacing:-0.832000pt;}
.ws1c{word-spacing:-0.768000pt;}
.ws4{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.384000pt;}
.ws5{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.256000pt;}
.ws24{word-spacing:-0.253333pt;}
.ws9{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.064000pt;}
.ws14{word-spacing:0.128000pt;}
.ws15{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
.ws12{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.384000pt;}
.wsd{word-spacing:0.448000pt;}
.ws11{word-spacing:0.512000pt;}
.ws10{word-spacing:0.576000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws17{word-spacing:0.896000pt;}
.ws18{word-spacing:6.400000pt;}
._11{margin-left:-12.313600pt;}
._9{margin-left:-9.139200pt;}
._7{margin-left:-7.706667pt;}
._5{margin-left:-6.041067pt;}
._3{margin-left:-4.400000pt;}
._0{margin-left:-2.800000pt;}
._2{margin-left:-1.829333pt;}
._d{margin-left:-0.928000pt;}
._b{width:1.384533pt;}
._f{width:2.461867pt;}
._1{width:3.733333pt;}
._10{width:4.865067pt;}
._6{width:5.866667pt;}
._e{width:6.818133pt;}
._c{width:7.742933pt;}
._a{width:9.066667pt;}
._4{width:10.002667pt;}
._8{width:15.467733pt;}
._12{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y79{bottom:124.721733pt;}
.y14{bottom:126.193867pt;}
.y3a{bottom:127.050933pt;}
.y5e{bottom:128.826933pt;}
.y78{bottom:139.389733pt;}
.y13{bottom:145.265867pt;}
.y39{bottom:146.522933pt;}
.y5d{bottom:148.154933pt;}
.y77{bottom:158.991067pt;}
.y12{bottom:164.337867pt;}
.y38{bottom:165.994933pt;}
.y5c{bottom:167.482933pt;}
.y76{bottom:173.657733pt;}
.y11{bottom:183.409867pt;}
.y37{bottom:185.466933pt;}
.y5b{bottom:186.810933pt;}
.y10{bottom:202.481867pt;}
.y36{bottom:204.938933pt;}
.y5a{bottom:206.138933pt;}
.yf{bottom:221.553867pt;}
.y35{bottom:224.410933pt;}
.y59{bottom:225.466933pt;}
.ye{bottom:240.625867pt;}
.y34{bottom:243.882933pt;}
.y58{bottom:244.794933pt;}
.yd{bottom:259.697867pt;}
.y33{bottom:263.354933pt;}
.y57{bottom:264.122933pt;}
.yc{bottom:278.769867pt;}
.y32{bottom:282.826933pt;}
.y56{bottom:283.450933pt;}
.y75{bottom:284.368267pt;}
.yb{bottom:297.841867pt;}
.y74{bottom:300.368267pt;}
.y31{bottom:302.298933pt;}
.y55{bottom:302.778933pt;}
.y73{bottom:316.368267pt;}
.ya{bottom:316.913867pt;}
.y30{bottom:321.770933pt;}
.y54{bottom:322.106933pt;}
.y72{bottom:332.368267pt;}
.y9{bottom:335.985867pt;}
.y2f{bottom:341.242933pt;}
.y53{bottom:341.434933pt;}
.y8{bottom:355.057867pt;}
.y2e{bottom:360.714933pt;}
.y52{bottom:360.762933pt;}
.y71{bottom:361.701600pt;}
.y7{bottom:374.129867pt;}
.y70{bottom:377.701600pt;}
.y51{bottom:380.090933pt;}
.y2d{bottom:380.186933pt;}
.y6{bottom:393.201867pt;}
.y6f{bottom:393.701600pt;}
.y50{bottom:399.418933pt;}
.y2c{bottom:399.658933pt;}
.y6e{bottom:409.701600pt;}
.y4f{bottom:418.746933pt;}
.y2b{bottom:419.130933pt;}
.y15{bottom:427.478800pt;}
.y4e{bottom:438.074933pt;}
.y2a{bottom:438.602933pt;}
.y6d{bottom:439.034933pt;}
.y4d{bottom:457.402933pt;}
.y29{bottom:458.074933pt;}
.y6c{bottom:458.234933pt;}
.y4c{bottom:476.730933pt;}
.y6b{bottom:477.434933pt;}
.y28{bottom:477.546933pt;}
.y4b{bottom:496.058933pt;}
.y6a{bottom:496.634933pt;}
.y27{bottom:497.018933pt;}
.y4a{bottom:515.386933pt;}
.y69{bottom:515.834933pt;}
.y26{bottom:516.490933pt;}
.y49{bottom:534.714933pt;}
.y68{bottom:535.034933pt;}
.y25{bottom:535.962933pt;}
.y48{bottom:554.042933pt;}
.y67{bottom:554.234933pt;}
.y24{bottom:555.434933pt;}
.y47{bottom:573.370933pt;}
.y66{bottom:573.434933pt;}
.y23{bottom:574.906933pt;}
.y65{bottom:592.672267pt;}
.y46{bottom:592.698933pt;}
.y22{bottom:594.234933pt;}
.y64{bottom:612.000267pt;}
.y45{bottom:612.026933pt;}
.y21{bottom:613.434933pt;}
.y63{bottom:631.328267pt;}
.y44{bottom:631.354933pt;}
.y20{bottom:632.634933pt;}
.y62{bottom:650.656267pt;}
.y43{bottom:650.682933pt;}
.y1f{bottom:651.834933pt;}
.y61{bottom:669.984267pt;}
.y42{bottom:670.010933pt;}
.y1e{bottom:671.034933pt;}
.y60{bottom:689.312267pt;}
.y41{bottom:689.338933pt;}
.y1d{bottom:690.234933pt;}
.y5f{bottom:708.640267pt;}
.y40{bottom:708.666933pt;}
.y1c{bottom:709.434933pt;}
.y3f{bottom:727.994933pt;}
.y1b{bottom:728.634933pt;}
.y5{bottom:733.200400pt;}
.y3e{bottom:747.322933pt;}
.y1a{bottom:747.834933pt;}
.y4{bottom:760.400400pt;}
.y3d{bottom:766.650933pt;}
.y19{bottom:767.034933pt;}
.y3c{bottom:785.978933pt;}
.y18{bottom:786.234933pt;}
.y3b{bottom:805.306933pt;}
.y17{bottom:805.434933pt;}
.y3{bottom:809.521600pt;}
.y16{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.hb{height:23.288802pt;}
.ha{height:27.171875pt;}
.h8{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.hc{height:43.022135pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h9{height:56.179583pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.911467pt;}
.x1{left:94.628000pt;}
.x7{left:105.825200pt;}
.x6{left:133.929200pt;}
.x5{left:314.238533pt;}
.x2{left:508.590533pt;}
}




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