
    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_cabe7d167118eb7fbdc652db.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_f0d2f0955f959387a269b854.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea5e4aac4bdfb369fca4c25e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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;}
.m1{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);}
.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);}
.v3{vertical-align:-22.200000px;}
.v4{vertical-align:-14.400600px;}
.v5{vertical-align:-13.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:26.639400px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.006600px;}
.lsb{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.330000px;}
.lsf{letter-spacing:0.336000px;}
.lse{letter-spacing:0.336600px;}
.lsd{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.789000px;}
.lsc{letter-spacing:2.052000px;}
.ls1{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsa{letter-spacing:4.924200px;}
.ls11{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls8{letter-spacing:6.602400px;}
.ls6{letter-spacing:7.200000px;}
.ls4{letter-spacing:10.200000px;}
.ls12{letter-spacing:10.956000px;}
.ls13{letter-spacing:19.800000px;}
.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;}
}
.wsc{word-spacing:-36.102000px;}
.ws8{word-spacing:-27.432000px;}
.ws9{word-spacing:-22.860000px;}
.ws5{word-spacing:-20.232000px;}
.wsa{word-spacing:-18.546000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.wse{word-spacing:-16.632000px;}
.wsd{word-spacing:-16.302000px;}
.ws6{word-spacing:-16.017000px;}
.ws4{word-spacing:-14.079000px;}
.ws3{word-spacing:-12.139200px;}
.wsb{word-spacing:-11.127600px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2040.358200px;}
._e{margin-left:-20.652000px;}
._b{margin-left:-19.272000px;}
._5{margin-left:-16.866600px;}
._1b{margin-left:-15.342000px;}
._16{margin-left:-14.073000px;}
._8{margin-left:-10.905000px;}
._a{margin-left:-9.516000px;}
._6{margin-left:-7.629000px;}
._3{margin-left:-6.600000px;}
._15{margin-left:-5.047800px;}
._0{margin-left:-3.906000px;}
._2{margin-left:-2.640000px;}
._7{margin-left:-1.071000px;}
._4{width:1.926000px;}
._1{width:3.780000px;}
._12{width:5.580000px;}
._11{width:6.818333px;}
._f{width:7.832333px;}
._10{width:9.044467px;}
._9{width:10.791667px;}
._d{width:11.952000px;}
._c{width:13.689600px;}
._1a{width:14.747400px;}
._18{width:15.752400px;}
._17{width:17.295600px;}
._19{width:38.923800px;}
._13{width:56.923200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y51{bottom:171.813150px;}
.y42{bottom:177.363150px;}
.ya3{bottom:178.449750px;}
.y1e{bottom:182.738850px;}
.y41{bottom:188.313150px;}
.y50{bottom:193.863150px;}
.ya2{bottom:198.249600px;}
.y1d{bottom:204.338850px;}
.y40{bottom:204.813150px;}
.ya1{bottom:218.049750px;}
.y3f{bottom:221.313150px;}
.y1c{bottom:225.938850px;}
.y4f{bottom:226.863150px;}
.y3e{bottom:237.813150px;}
.ya0{bottom:237.849750px;}
.y73{bottom:243.363150px;}
.y1b{bottom:247.538850px;}
.y3d{bottom:254.313150px;}
.y9f{bottom:257.649750px;}
.y5e{bottom:268.012500px;}
.y1a{bottom:269.138850px;}
.y3c{bottom:270.813150px;}
.y9e{bottom:277.449750px;}
.y3b{bottom:287.313150px;}
.y4e{bottom:289.612500px;}
.y19{bottom:290.738850px;}
.y5d{bottom:292.863150px;}
.y9d{bottom:297.249750px;}
.y5c{bottom:303.813150px;}
.y3a{bottom:309.363150px;}
.y4d{bottom:311.212500px;}
.y18{bottom:312.338850px;}
.y9c{bottom:317.049750px;}
.y39{bottom:325.863150px;}
.y4c{bottom:332.812500px;}
.y17{bottom:333.938850px;}
.y72{bottom:337.508550px;}
.y38{bottom:342.363150px;}
.y37{bottom:353.313150px;}
.y4b{bottom:354.412500px;}
.y16{bottom:355.538850px;}
.y9b{bottom:358.449750px;}
.y71{bottom:359.408550px;}
.y80{bottom:364.808550px;}
.y5b{bottom:367.508550px;}
.y36{bottom:375.363150px;}
.y4a{bottom:376.012500px;}
.y15{bottom:377.138850px;}
.y70{bottom:381.308550px;}
.y7f{bottom:386.408550px;}
.y9a{bottom:388.553700px;}
.y5a{bottom:389.108550px;}
.y49{bottom:397.612500px;}
.y14{bottom:398.738850px;}
.y6f{bottom:403.208550px;}
.y7e{bottom:408.008550px;}
.y35{bottom:410.708550px;}
.y48{bottom:419.212500px;}
.y13{bottom:420.338850px;}
.y6e{bottom:425.108550px;}
.y7d{bottom:429.608550px;}
.y34{bottom:432.308550px;}
.y47{bottom:440.812500px;}
.y12{bottom:441.938850px;}
.y6d{bottom:447.008550px;}
.y7c{bottom:451.208550px;}
.y33{bottom:453.908550px;}
.y99{bottom:455.153700px;}
.y46{bottom:462.412500px;}
.y11{bottom:463.538850px;}
.y6c{bottom:468.908550px;}
.y7b{bottom:472.808550px;}
.y59{bottom:475.508550px;}
.y32{bottom:484.012500px;}
.y10{bottom:485.138850px;}
.y6b{bottom:490.808550px;}
.y7a{bottom:494.408550px;}
.y98{bottom:494.753700px;}
.y58{bottom:497.108550px;}
.y45{bottom:505.612500px;}
.yf{bottom:506.738850px;}
.y6a{bottom:512.708550px;}
.y97{bottom:514.703700px;}
.y79{bottom:516.008550px;}
.y57{bottom:518.708550px;}
.y44{bottom:527.212500px;}
.ye{bottom:528.338850px;}
.y69{bottom:534.608550px;}
.y96{bottom:534.653700px;}
.y78{bottom:537.608550px;}
.y56{bottom:540.308550px;}
.y43{bottom:548.812500px;}
.yd{bottom:549.938850px;}
.y95{bottom:554.603550px;}
.y68{bottom:556.508550px;}
.y77{bottom:559.208550px;}
.y55{bottom:561.908550px;}
.y31{bottom:570.412500px;}
.yc{bottom:571.538850px;}
.y94{bottom:574.553700px;}
.y67{bottom:578.408550px;}
.y76{bottom:580.808550px;}
.y54{bottom:583.508550px;}
.y30{bottom:592.012500px;}
.y93{bottom:594.503700px;}
.y66{bottom:600.308550px;}
.y75{bottom:602.408550px;}
.y53{bottom:605.108550px;}
.y2f{bottom:613.612500px;}
.y92{bottom:614.453550px;}
.y65{bottom:622.208550px;}
.y52{bottom:626.708550px;}
.y74{bottom:632.512500px;}
.y91{bottom:634.403700px;}
.y2e{bottom:635.212500px;}
.y64{bottom:644.108550px;}
.y90{bottom:654.353700px;}
.y2d{bottom:656.812500px;}
.y63{bottom:666.008550px;}
.y8f{bottom:674.303700px;}
.y2c{bottom:678.412500px;}
.yb{bottom:679.538850px;}
.yb0{bottom:683.010000px;}
.y62{bottom:687.908550px;}
.y8e{bottom:694.253700px;}
.y2b{bottom:700.012500px;}
.yaf{bottom:701.010000px;}
.y61{bottom:709.808550px;}
.ya{bottom:710.138850px;}
.y8d{bottom:714.203550px;}
.yae{bottom:719.010000px;}
.y2a{bottom:721.612500px;}
.y60{bottom:731.708550px;}
.y8c{bottom:734.153700px;}
.yad{bottom:737.010000px;}
.y29{bottom:743.212500px;}
.y8b{bottom:754.103700px;}
.y5f{bottom:762.112500px;}
.y28{bottom:764.812500px;}
.y8a{bottom:774.053700px;}
.y9{bottom:781.746600px;}
.y27{bottom:786.412500px;}
.y89{bottom:794.003700px;}
.yac{bottom:801.810000px;}
.y8{bottom:803.998650px;}
.y26{bottom:808.012500px;}
.y88{bottom:813.953550px;}
.yab{bottom:821.610000px;}
.y7{bottom:821.998650px;}
.y25{bottom:829.612500px;}
.y87{bottom:833.903700px;}
.yaa{bottom:841.410000px;}
.y24{bottom:851.212500px;}
.y6{bottom:852.754650px;}
.y86{bottom:853.703550px;}
.ya9{bottom:861.210000px;}
.y23{bottom:872.812500px;}
.y85{bottom:873.503700px;}
.y5{bottom:875.006550px;}
.ya8{bottom:881.010000px;}
.y4{bottom:893.006550px;}
.y84{bottom:893.303700px;}
.y22{bottom:894.412500px;}
.ya7{bottom:900.810000px;}
.y83{bottom:913.103700px;}
.y21{bottom:916.012500px;}
.ya6{bottom:920.610000px;}
.y82{bottom:932.903700px;}
.y20{bottom:937.612500px;}
.y3{bottom:939.919950px;}
.ya5{bottom:940.410000px;}
.y2{bottom:957.919950px;}
.y1f{bottom:959.212500px;}
.ya4{bottom:960.210000px;}
.y81{bottom:961.207650px;}
.hd{height:34.734375px;}
.h4{height:40.523438px;}
.h3{height:43.523438px;}
.ha{height:46.312500px;}
.h10{height:50.947266px;}
.h6{height:53.494629px;}
.he{height:54.996094px;}
.h5{height:56.041992px;}
.h2{height:57.890625px;}
.h7{height:60.785156px;}
.hc{height:61.136719px;}
.hf{height:63.679688px;}
.hb{height:69.468150px;}
.h9{height:69.468750px;}
.h8{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.xd{left:108.035400px;}
.x1{left:129.295350px;}
.xa{left:150.555150px;}
.x2{left:182.170350px;}
.x4{left:277.918050px;}
.x3{left:302.077950px;}
.x8{left:352.417800px;}
.xb{left:374.676600px;}
.x7{left:418.080900px;}
.x5{left:479.752500px;}
.xe{left:553.449450px;}
.x6{left:595.186500px;}
.xc{left:603.664350px;}
.x9{left:616.281000px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v4{vertical-align:-12.800533pt;}
.v5{vertical-align:-11.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:23.679467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.005867pt;}
.lsb{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.293333pt;}
.lsf{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.299200pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.701333pt;}
.lsc{letter-spacing:1.824000pt;}
.ls1{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsa{letter-spacing:4.377067pt;}
.ls11{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls8{letter-spacing:5.868800pt;}
.ls6{letter-spacing:6.400000pt;}
.ls4{letter-spacing:9.066667pt;}
.ls12{letter-spacing:9.738667pt;}
.ls13{letter-spacing:17.600000pt;}
.wsc{word-spacing:-32.090667pt;}
.ws8{word-spacing:-24.384000pt;}
.ws9{word-spacing:-20.320000pt;}
.ws5{word-spacing:-17.984000pt;}
.wsa{word-spacing:-16.485333pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.wse{word-spacing:-14.784000pt;}
.wsd{word-spacing:-14.490667pt;}
.ws6{word-spacing:-14.237333pt;}
.ws4{word-spacing:-12.514667pt;}
.ws3{word-spacing:-10.790400pt;}
.wsb{word-spacing:-9.891200pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-1813.651733pt;}
._e{margin-left:-18.357333pt;}
._b{margin-left:-17.130667pt;}
._5{margin-left:-14.992533pt;}
._1b{margin-left:-13.637333pt;}
._16{margin-left:-12.509333pt;}
._8{margin-left:-9.693333pt;}
._a{margin-left:-8.458667pt;}
._6{margin-left:-6.781333pt;}
._3{margin-left:-5.866667pt;}
._15{margin-left:-4.486933pt;}
._0{margin-left:-3.472000pt;}
._2{margin-left:-2.346667pt;}
._7{margin-left:-0.952000pt;}
._4{width:1.712000pt;}
._1{width:3.360000pt;}
._12{width:4.960000pt;}
._11{width:6.060741pt;}
._f{width:6.962074pt;}
._10{width:8.039526pt;}
._9{width:9.592593pt;}
._d{width:10.624000pt;}
._c{width:12.168533pt;}
._1a{width:13.108800pt;}
._18{width:14.002133pt;}
._17{width:15.373867pt;}
._19{width:34.598933pt;}
._13{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y51{bottom:152.722800pt;}
.y42{bottom:157.656133pt;}
.ya3{bottom:158.622000pt;}
.y1e{bottom:162.434533pt;}
.y41{bottom:167.389467pt;}
.y50{bottom:172.322800pt;}
.ya2{bottom:176.221867pt;}
.y1d{bottom:181.634533pt;}
.y40{bottom:182.056133pt;}
.ya1{bottom:193.822000pt;}
.y3f{bottom:196.722800pt;}
.y1c{bottom:200.834533pt;}
.y4f{bottom:201.656133pt;}
.y3e{bottom:211.389467pt;}
.ya0{bottom:211.422000pt;}
.y73{bottom:216.322800pt;}
.y1b{bottom:220.034533pt;}
.y3d{bottom:226.056133pt;}
.y9f{bottom:229.022000pt;}
.y5e{bottom:238.233333pt;}
.y1a{bottom:239.234533pt;}
.y3c{bottom:240.722800pt;}
.y9e{bottom:246.622000pt;}
.y3b{bottom:255.389467pt;}
.y4e{bottom:257.433333pt;}
.y19{bottom:258.434533pt;}
.y5d{bottom:260.322800pt;}
.y9d{bottom:264.222000pt;}
.y5c{bottom:270.056133pt;}
.y3a{bottom:274.989467pt;}
.y4d{bottom:276.633333pt;}
.y18{bottom:277.634533pt;}
.y9c{bottom:281.822000pt;}
.y39{bottom:289.656133pt;}
.y4c{bottom:295.833333pt;}
.y17{bottom:296.834533pt;}
.y72{bottom:300.007600pt;}
.y38{bottom:304.322800pt;}
.y37{bottom:314.056133pt;}
.y4b{bottom:315.033333pt;}
.y16{bottom:316.034533pt;}
.y9b{bottom:318.622000pt;}
.y71{bottom:319.474267pt;}
.y80{bottom:324.274267pt;}
.y5b{bottom:326.674267pt;}
.y36{bottom:333.656133pt;}
.y4a{bottom:334.233333pt;}
.y15{bottom:335.234533pt;}
.y70{bottom:338.940933pt;}
.y7f{bottom:343.474267pt;}
.y9a{bottom:345.381067pt;}
.y5a{bottom:345.874267pt;}
.y49{bottom:353.433333pt;}
.y14{bottom:354.434533pt;}
.y6f{bottom:358.407600pt;}
.y7e{bottom:362.674267pt;}
.y35{bottom:365.074267pt;}
.y48{bottom:372.633333pt;}
.y13{bottom:373.634533pt;}
.y6e{bottom:377.874267pt;}
.y7d{bottom:381.874267pt;}
.y34{bottom:384.274267pt;}
.y47{bottom:391.833333pt;}
.y12{bottom:392.834533pt;}
.y6d{bottom:397.340933pt;}
.y7c{bottom:401.074267pt;}
.y33{bottom:403.474267pt;}
.y99{bottom:404.581067pt;}
.y46{bottom:411.033333pt;}
.y11{bottom:412.034533pt;}
.y6c{bottom:416.807600pt;}
.y7b{bottom:420.274267pt;}
.y59{bottom:422.674267pt;}
.y32{bottom:430.233333pt;}
.y10{bottom:431.234533pt;}
.y6b{bottom:436.274267pt;}
.y7a{bottom:439.474267pt;}
.y98{bottom:439.781067pt;}
.y58{bottom:441.874267pt;}
.y45{bottom:449.433333pt;}
.yf{bottom:450.434533pt;}
.y6a{bottom:455.740933pt;}
.y97{bottom:457.514400pt;}
.y79{bottom:458.674267pt;}
.y57{bottom:461.074267pt;}
.y44{bottom:468.633333pt;}
.ye{bottom:469.634533pt;}
.y69{bottom:475.207600pt;}
.y96{bottom:475.247733pt;}
.y78{bottom:477.874267pt;}
.y56{bottom:480.274267pt;}
.y43{bottom:487.833333pt;}
.yd{bottom:488.834533pt;}
.y95{bottom:492.980933pt;}
.y68{bottom:494.674267pt;}
.y77{bottom:497.074267pt;}
.y55{bottom:499.474267pt;}
.y31{bottom:507.033333pt;}
.yc{bottom:508.034533pt;}
.y94{bottom:510.714400pt;}
.y67{bottom:514.140933pt;}
.y76{bottom:516.274267pt;}
.y54{bottom:518.674267pt;}
.y30{bottom:526.233333pt;}
.y93{bottom:528.447733pt;}
.y66{bottom:533.607600pt;}
.y75{bottom:535.474267pt;}
.y53{bottom:537.874267pt;}
.y2f{bottom:545.433333pt;}
.y92{bottom:546.180933pt;}
.y65{bottom:553.074267pt;}
.y52{bottom:557.074267pt;}
.y74{bottom:562.233333pt;}
.y91{bottom:563.914400pt;}
.y2e{bottom:564.633333pt;}
.y64{bottom:572.540933pt;}
.y90{bottom:581.647733pt;}
.y2d{bottom:583.833333pt;}
.y63{bottom:592.007600pt;}
.y8f{bottom:599.381067pt;}
.y2c{bottom:603.033333pt;}
.yb{bottom:604.034533pt;}
.yb0{bottom:607.120000pt;}
.y62{bottom:611.474267pt;}
.y8e{bottom:617.114400pt;}
.y2b{bottom:622.233333pt;}
.yaf{bottom:623.120000pt;}
.y61{bottom:630.940933pt;}
.ya{bottom:631.234533pt;}
.y8d{bottom:634.847600pt;}
.yae{bottom:639.120000pt;}
.y2a{bottom:641.433333pt;}
.y60{bottom:650.407600pt;}
.y8c{bottom:652.581067pt;}
.yad{bottom:655.120000pt;}
.y29{bottom:660.633333pt;}
.y8b{bottom:670.314400pt;}
.y5f{bottom:677.433333pt;}
.y28{bottom:679.833333pt;}
.y8a{bottom:688.047733pt;}
.y9{bottom:694.885867pt;}
.y27{bottom:699.033333pt;}
.y89{bottom:705.781067pt;}
.yac{bottom:712.720000pt;}
.y8{bottom:714.665467pt;}
.y26{bottom:718.233333pt;}
.y88{bottom:723.514267pt;}
.yab{bottom:730.320000pt;}
.y7{bottom:730.665467pt;}
.y25{bottom:737.433333pt;}
.y87{bottom:741.247733pt;}
.yaa{bottom:747.920000pt;}
.y24{bottom:756.633333pt;}
.y6{bottom:758.004133pt;}
.y86{bottom:758.847600pt;}
.ya9{bottom:765.520000pt;}
.y23{bottom:775.833333pt;}
.y85{bottom:776.447733pt;}
.y5{bottom:777.783600pt;}
.ya8{bottom:783.120000pt;}
.y4{bottom:793.783600pt;}
.y84{bottom:794.047733pt;}
.y22{bottom:795.033333pt;}
.ya7{bottom:800.720000pt;}
.y83{bottom:811.647733pt;}
.y21{bottom:814.233333pt;}
.ya6{bottom:818.320000pt;}
.y82{bottom:829.247733pt;}
.y20{bottom:833.433333pt;}
.y3{bottom:835.484400pt;}
.ya5{bottom:835.920000pt;}
.y2{bottom:851.484400pt;}
.y1f{bottom:852.633333pt;}
.ya4{bottom:853.520000pt;}
.y81{bottom:854.406800pt;}
.hd{height:30.875000pt;}
.h4{height:36.020833pt;}
.h3{height:38.687500pt;}
.ha{height:41.166667pt;}
.h10{height:45.286458pt;}
.h6{height:47.550781pt;}
.he{height:48.885417pt;}
.h5{height:49.815104pt;}
.h2{height:51.458333pt;}
.h7{height:54.031250pt;}
.hc{height:54.343750pt;}
.hf{height:56.604167pt;}
.hb{height:61.749467pt;}
.h9{height:61.750000pt;}
.h8{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.xd{left:96.031467pt;}
.x1{left:114.929200pt;}
.xa{left:133.826800pt;}
.x2{left:161.929200pt;}
.x4{left:247.038267pt;}
.x3{left:268.513733pt;}
.x8{left:313.260267pt;}
.xb{left:333.045867pt;}
.x7{left:371.627467pt;}
.x5{left:426.446667pt;}
.xe{left:491.955067pt;}
.x6{left:529.054667pt;}
.xc{left:536.590533pt;}
.x9{left:547.805333pt;}
}




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