
    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_ecd8f54ceeb64eeaf63e2c2e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.134277;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_4f5db32639322d4b831ab935.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_78b9301fac4197f03f6c27a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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_b43112452e97a8d0f879b941.woff')format("woff");}.ff4{font-family:ff4;line-height:1.456055;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_52e90c875fed647d13db9d27.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_2058029f41f554a47069b92b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_03ff267b3f93d8b41c417c56.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_0c2cb9ea3183ee3e8b3308a0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.034180;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_9bbc161036c77bae98b44907.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.708200px;}
.lsd{letter-spacing:-5.106000px;}
.ls14{letter-spacing:-2.622000px;}
.lsc{letter-spacing:-1.449000px;}
.ls5{letter-spacing:-1.344000px;}
.ls6{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-0.750000px;}
.ls12{letter-spacing:-0.621000px;}
.ls2{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.400000px;}
.ls3{letter-spacing:6.000000px;}
.ls9{letter-spacing:8.004000px;}
.ls15{letter-spacing:467.099400px;}
.ls7{letter-spacing:467.962200px;}
.lsf{letter-spacing:468.487200px;}
.ls11{letter-spacing:468.899400px;}
.ls13{letter-spacing:936.351000px;}
.ls0{letter-spacing:936.846000px;}
.lse{letter-spacing:939.471000px;}
.ls10{letter-spacing:943.521000px;}
.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;}
}
.ws11{word-spacing:-21.075000px;}
.ws8{word-spacing:-20.325000px;}
.ws2{word-spacing:-19.389000px;}
.wsa{word-spacing:-17.043000px;}
.wse{word-spacing:-16.422000px;}
.wsb{word-spacing:-15.594000px;}
.ws0{word-spacing:-14.820000px;}
.ws10{word-spacing:-14.421000px;}
.ws9{word-spacing:-13.902000px;}
.ws1{word-spacing:-13.560000px;}
.wsc{word-spacing:-11.937000px;}
.wsf{word-spacing:-11.303787px;}
.ws5{word-spacing:-6.000000px;}
.wsd{word-spacing:-2.400000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.240000px;}
.ws4{word-spacing:0.252000px;}
.ws7{word-spacing:1.344000px;}
._10{margin-left:-7.515600px;}
._8{margin-left:-6.496500px;}
._9{margin-left:-4.644000px;}
._a{margin-left:-2.712600px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._3{width:2.784300px;}
._b{width:4.207800px;}
._4{width:6.083400px;}
._5{width:7.363800px;}
._6{width:8.692800px;}
._7{width:9.870600px;}
._c{width:11.854200px;}
._d{width:13.058700px;}
._12{width:14.469000px;}
._f{width:15.511200px;}
._e{width:16.698000px;}
._11{width:18.209100px;}
._13{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y47{bottom:106.165350px;}
.y4d{bottom:106.182600px;}
.y1e{bottom:107.110200px;}
.y73{bottom:109.294800px;}
.y46{bottom:126.589350px;}
.y4c{bottom:126.606600px;}
.y1d{bottom:127.361700px;}
.y45{bottom:147.013350px;}
.y4b{bottom:147.030600px;}
.y1c{bottom:147.613200px;}
.y72{bottom:153.328650px;}
.y7c{bottom:153.333150px;}
.y44{bottom:167.437350px;}
.y4a{bottom:167.454600px;}
.y1b{bottom:167.864700px;}
.y71{bottom:173.580150px;}
.y7b{bottom:173.584650px;}
.y43{bottom:187.861350px;}
.y49{bottom:187.878600px;}
.y1a{bottom:188.116200px;}
.y70{bottom:193.831650px;}
.y7a{bottom:193.836150px;}
.y42{bottom:208.285350px;}
.y48{bottom:208.302600px;}
.y19{bottom:208.367700px;}
.y6f{bottom:214.083150px;}
.y79{bottom:214.087650px;}
.y18{bottom:228.619200px;}
.y41{bottom:228.709350px;}
.y6e{bottom:234.334650px;}
.y78{bottom:234.339150px;}
.y17{bottom:248.870700px;}
.y40{bottom:249.133350px;}
.y6d{bottom:254.586150px;}
.y77{bottom:254.590650px;}
.y16{bottom:269.122200px;}
.y3f{bottom:269.557350px;}
.y6c{bottom:274.837650px;}
.y76{bottom:274.842150px;}
.y3e{bottom:289.981350px;}
.y75{bottom:295.093650px;}
.y6b{bottom:295.156350px;}
.y3d{bottom:310.405350px;}
.y15{bottom:310.632000px;}
.y74{bottom:315.345150px;}
.y6a{bottom:315.407850px;}
.y3c{bottom:330.829350px;}
.y69{bottom:335.659350px;}
.y3b{bottom:351.253350px;}
.y68{bottom:355.910850px;}
.y3a{bottom:371.677350px;}
.y14{bottom:372.903450px;}
.y67{bottom:376.162350px;}
.y39{bottom:392.101350px;}
.y13{bottom:393.153450px;}
.y66{bottom:396.413850px;}
.y38{bottom:412.525350px;}
.y12{bottom:413.403450px;}
.y65{bottom:416.665350px;}
.y82{bottom:423.191550px;}
.y37{bottom:432.949350px;}
.y11{bottom:433.653450px;}
.y64{bottom:436.916850px;}
.y81{bottom:443.441550px;}
.y36{bottom:453.373350px;}
.y10{bottom:453.903450px;}
.y63{bottom:457.168350px;}
.y80{bottom:463.691550px;}
.y35{bottom:473.797350px;}
.yf{bottom:474.153450px;}
.y62{bottom:477.419850px;}
.y7f{bottom:483.941550px;}
.y34{bottom:494.221350px;}
.y61{bottom:497.671350px;}
.y7e{bottom:504.191550px;}
.y33{bottom:514.645350px;}
.y60{bottom:517.922850px;}
.y32{bottom:535.069350px;}
.y7d{bottom:537.191550px;}
.y5f{bottom:538.174350px;}
.ye{bottom:554.163450px;}
.y31{bottom:555.493350px;}
.y5e{bottom:558.425850px;}
.yd{bottom:575.163450px;}
.y30{bottom:575.917350px;}
.y5d{bottom:578.677350px;}
.yc{bottom:596.163450px;}
.y2f{bottom:596.341350px;}
.y5c{bottom:598.928850px;}
.y2e{bottom:616.765350px;}
.yb{bottom:617.163450px;}
.y5b{bottom:619.180350px;}
.y2d{bottom:637.189350px;}
.ya{bottom:638.163450px;}
.y5a{bottom:639.431850px;}
.y2c{bottom:657.613350px;}
.y9{bottom:659.163450px;}
.y59{bottom:659.683350px;}
.y2b{bottom:678.037350px;}
.y58{bottom:679.934850px;}
.y2a{bottom:698.461350px;}
.y57{bottom:700.186350px;}
.y8{bottom:709.927350px;}
.y29{bottom:718.885350px;}
.y56{bottom:720.437850px;}
.y28{bottom:739.309350px;}
.y55{bottom:740.689350px;}
.y7{bottom:741.427350px;}
.y27{bottom:759.733350px;}
.y54{bottom:760.940850px;}
.y26{bottom:780.157350px;}
.y53{bottom:781.192350px;}
.y25{bottom:800.581350px;}
.y52{bottom:801.443850px;}
.y6{bottom:802.688850px;}
.y24{bottom:821.005350px;}
.y51{bottom:821.695350px;}
.y5{bottom:832.193850px;}
.y23{bottom:841.429350px;}
.y50{bottom:841.946850px;}
.y4{bottom:853.193850px;}
.y22{bottom:861.853350px;}
.y4f{bottom:862.198350px;}
.y21{bottom:882.277350px;}
.y4e{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y20{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:948.189000px;}
.he{height:32.209406px;}
.hd{height:41.396484px;}
.ha{height:41.648438px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.h9{height:59.869629px;}
.h7{height:60.234375px;}
.h2{height:65.075684px;}
.hb{height:69.269531px;}
.h8{height:70.281738px;}
.h5{height:72.884766px;}
.h6{height:93.708984px;}
.hc{height:1020.472500px;}
.h0{height:1020.472503px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.835022px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.921400px;}
.x4{left:83.466450px;}
.x1{left:85.039350px;}
.x5{left:104.061000px;}
.x6{left:105.570150px;}
.x3{left:230.857950px;}
.x2{left:233.345250px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.851733pt;}
.lsd{letter-spacing:-4.538667pt;}
.ls14{letter-spacing:-2.330667pt;}
.lsc{letter-spacing:-1.288000pt;}
.ls5{letter-spacing:-1.194667pt;}
.ls6{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-0.666667pt;}
.ls12{letter-spacing:-0.552000pt;}
.ls2{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.866667pt;}
.lsa{letter-spacing:2.133333pt;}
.ls3{letter-spacing:5.333333pt;}
.ls9{letter-spacing:7.114667pt;}
.ls15{letter-spacing:415.199467pt;}
.ls7{letter-spacing:415.966400pt;}
.lsf{letter-spacing:416.433067pt;}
.ls11{letter-spacing:416.799467pt;}
.ls13{letter-spacing:832.312000pt;}
.ls0{letter-spacing:832.752000pt;}
.lse{letter-spacing:835.085333pt;}
.ls10{letter-spacing:838.685333pt;}
.ws11{word-spacing:-18.733333pt;}
.ws8{word-spacing:-18.066667pt;}
.ws2{word-spacing:-17.234667pt;}
.wsa{word-spacing:-15.149333pt;}
.wse{word-spacing:-14.597333pt;}
.wsb{word-spacing:-13.861333pt;}
.ws0{word-spacing:-13.173333pt;}
.ws10{word-spacing:-12.818667pt;}
.ws9{word-spacing:-12.357333pt;}
.ws1{word-spacing:-12.053333pt;}
.wsc{word-spacing:-10.610667pt;}
.wsf{word-spacing:-10.047811pt;}
.ws5{word-spacing:-5.333333pt;}
.wsd{word-spacing:-2.133333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.213333pt;}
.ws4{word-spacing:0.224000pt;}
.ws7{word-spacing:1.194667pt;}
._10{margin-left:-6.680533pt;}
._8{margin-left:-5.774667pt;}
._9{margin-left:-4.128000pt;}
._a{margin-left:-2.411200pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._3{width:2.474933pt;}
._b{width:3.740267pt;}
._4{width:5.407467pt;}
._5{width:6.545600pt;}
._6{width:7.726933pt;}
._7{width:8.773867pt;}
._c{width:10.537067pt;}
._d{width:11.607733pt;}
._12{width:12.861333pt;}
._f{width:13.787733pt;}
._e{width:14.842667pt;}
._11{width:16.185867pt;}
._13{width:38.617920pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y47{bottom:94.369200pt;}
.y4d{bottom:94.384533pt;}
.y1e{bottom:95.209067pt;}
.y73{bottom:97.150933pt;}
.y46{bottom:112.523867pt;}
.y4c{bottom:112.539200pt;}
.y1d{bottom:113.210400pt;}
.y45{bottom:130.678533pt;}
.y4b{bottom:130.693867pt;}
.y1c{bottom:131.211733pt;}
.y72{bottom:136.292133pt;}
.y7c{bottom:136.296133pt;}
.y44{bottom:148.833200pt;}
.y4a{bottom:148.848533pt;}
.y1b{bottom:149.213067pt;}
.y71{bottom:154.293467pt;}
.y7b{bottom:154.297467pt;}
.y43{bottom:166.987867pt;}
.y49{bottom:167.003200pt;}
.y1a{bottom:167.214400pt;}
.y70{bottom:172.294800pt;}
.y7a{bottom:172.298800pt;}
.y42{bottom:185.142533pt;}
.y48{bottom:185.157867pt;}
.y19{bottom:185.215733pt;}
.y6f{bottom:190.296133pt;}
.y79{bottom:190.300133pt;}
.y18{bottom:203.217067pt;}
.y41{bottom:203.297200pt;}
.y6e{bottom:208.297467pt;}
.y78{bottom:208.301467pt;}
.y17{bottom:221.218400pt;}
.y40{bottom:221.451867pt;}
.y6d{bottom:226.298800pt;}
.y77{bottom:226.302800pt;}
.y16{bottom:239.219733pt;}
.y3f{bottom:239.606533pt;}
.y6c{bottom:244.300133pt;}
.y76{bottom:244.304133pt;}
.y3e{bottom:257.761200pt;}
.y75{bottom:262.305467pt;}
.y6b{bottom:262.361200pt;}
.y3d{bottom:275.915867pt;}
.y15{bottom:276.117333pt;}
.y74{bottom:280.306800pt;}
.y6a{bottom:280.362533pt;}
.y3c{bottom:294.070533pt;}
.y69{bottom:298.363867pt;}
.y3b{bottom:312.225200pt;}
.y68{bottom:316.365200pt;}
.y3a{bottom:330.379867pt;}
.y14{bottom:331.469733pt;}
.y67{bottom:334.366533pt;}
.y39{bottom:348.534533pt;}
.y13{bottom:349.469733pt;}
.y66{bottom:352.367867pt;}
.y38{bottom:366.689200pt;}
.y12{bottom:367.469733pt;}
.y65{bottom:370.369200pt;}
.y82{bottom:376.170267pt;}
.y37{bottom:384.843867pt;}
.y11{bottom:385.469733pt;}
.y64{bottom:388.370533pt;}
.y81{bottom:394.170267pt;}
.y36{bottom:402.998533pt;}
.y10{bottom:403.469733pt;}
.y63{bottom:406.371867pt;}
.y80{bottom:412.170267pt;}
.y35{bottom:421.153200pt;}
.yf{bottom:421.469733pt;}
.y62{bottom:424.373200pt;}
.y7f{bottom:430.170267pt;}
.y34{bottom:439.307867pt;}
.y61{bottom:442.374533pt;}
.y7e{bottom:448.170267pt;}
.y33{bottom:457.462533pt;}
.y60{bottom:460.375867pt;}
.y32{bottom:475.617200pt;}
.y7d{bottom:477.503600pt;}
.y5f{bottom:478.377200pt;}
.ye{bottom:492.589733pt;}
.y31{bottom:493.771867pt;}
.y5e{bottom:496.378533pt;}
.yd{bottom:511.256400pt;}
.y30{bottom:511.926533pt;}
.y5d{bottom:514.379867pt;}
.yc{bottom:529.923067pt;}
.y2f{bottom:530.081200pt;}
.y5c{bottom:532.381200pt;}
.y2e{bottom:548.235867pt;}
.yb{bottom:548.589733pt;}
.y5b{bottom:550.382533pt;}
.y2d{bottom:566.390533pt;}
.ya{bottom:567.256400pt;}
.y5a{bottom:568.383867pt;}
.y2c{bottom:584.545200pt;}
.y9{bottom:585.923067pt;}
.y59{bottom:586.385200pt;}
.y2b{bottom:602.699867pt;}
.y58{bottom:604.386533pt;}
.y2a{bottom:620.854533pt;}
.y57{bottom:622.387867pt;}
.y8{bottom:631.046533pt;}
.y29{bottom:639.009200pt;}
.y56{bottom:640.389200pt;}
.y28{bottom:657.163867pt;}
.y55{bottom:658.390533pt;}
.y7{bottom:659.046533pt;}
.y27{bottom:675.318533pt;}
.y54{bottom:676.391867pt;}
.y26{bottom:693.473200pt;}
.y53{bottom:694.393200pt;}
.y25{bottom:711.627867pt;}
.y52{bottom:712.394533pt;}
.y6{bottom:713.501200pt;}
.y24{bottom:729.782533pt;}
.y51{bottom:730.395867pt;}
.y5{bottom:739.727867pt;}
.y23{bottom:747.937200pt;}
.y50{bottom:748.397200pt;}
.y4{bottom:758.394533pt;}
.y22{bottom:766.091867pt;}
.y4f{bottom:766.398533pt;}
.y21{bottom:784.246533pt;}
.y4e{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y20{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:842.834667pt;}
.he{height:28.630583pt;}
.hd{height:36.796875pt;}
.ha{height:37.020833pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.h9{height:53.217448pt;}
.h7{height:53.541667pt;}
.h2{height:57.845052pt;}
.hb{height:61.572917pt;}
.h8{height:62.472656pt;}
.h5{height:64.786458pt;}
.h6{height:83.296875pt;}
.hc{height:907.086667pt;}
.h0{height:907.086669pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.520020pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.930133pt;}
.x4{left:74.192400pt;}
.x1{left:75.590533pt;}
.x5{left:92.498667pt;}
.x6{left:93.840133pt;}
.x3{left:205.207067pt;}
.x2{left:207.418000pt;}
}




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