
    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_f61ea933d19c8dad3c49088c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_051bacd2aaf1dff37314151a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_f61ea933d19c8dad3c49088c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_051bacd2aaf1dff37314151a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_1f26be4bbfb9774dc241ba84.woff')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_a7c6fe3a923ca9cf93e14a5b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_99f9d3308211d6b3c31e2e2a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.076000;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);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.819000px;}
.ls1d{letter-spacing:-0.730800px;}
.ls1c{letter-spacing:-0.497700px;}
.ls1f{letter-spacing:-0.308700px;}
.ls1b{letter-spacing:-0.081900px;}
.lsd{letter-spacing:-0.068400px;}
.ls12{letter-spacing:-0.031500px;}
.ls11{letter-spacing:-0.025200px;}
.ls15{letter-spacing:-0.018900px;}
.lsf{letter-spacing:-0.011400px;}
.ls14{letter-spacing:-0.006300px;}
.lsc{letter-spacing:-0.005700px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002100px;}
.lsb{letter-spacing:0.011400px;}
.ls16{letter-spacing:0.012600px;}
.ls13{letter-spacing:0.018900px;}
.ls18{letter-spacing:0.025200px;}
.ls1a{letter-spacing:0.031500px;}
.ls6{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.094500px;}
.ls20{letter-spacing:0.107100px;}
.lse{letter-spacing:0.165300px;}
.ls3{letter-spacing:0.371826px;}
.ls4{letter-spacing:0.536490px;}
.lsa{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.791322px;}
.ls7{letter-spacing:0.960000px;}
.ls1{letter-spacing:1.200000px;}
.ls10{letter-spacing:20.496000px;}
.ls8{letter-spacing:28.680000px;}
.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;}
}
.ws7{word-spacing:-34.050000px;}
.ws17{word-spacing:-28.680000px;}
.ws12{word-spacing:-27.240000px;}
.ws0{word-spacing:-19.068000px;}
.wsf{word-spacing:-17.706000px;}
.ws5{word-spacing:-16.344000px;}
.ws1{word-spacing:-14.301000px;}
.ws10{word-spacing:-13.279500px;}
.wse{word-spacing:-4.506516px;}
.ws14{word-spacing:-4.350000px;}
.ws39{word-spacing:-1.761000px;}
.ws2f{word-spacing:-1.753800px;}
.ws31{word-spacing:-1.750800px;}
.ws35{word-spacing:-1.750200px;}
.ws2d{word-spacing:-1.749600px;}
.ws3c{word-spacing:-1.741800px;}
.ws37{word-spacing:-1.741200px;}
.wsb{word-spacing:-1.200000px;}
.ws16{word-spacing:-0.960000px;}
.ws18{word-spacing:-0.600000px;}
.ws19{word-spacing:-0.576000px;}
.wsc{word-spacing:-0.305088px;}
.ws2{word-spacing:-0.168000px;}
.ws3d{word-spacing:-0.163800px;}
.ws1d{word-spacing:-0.114000px;}
.ws30{word-spacing:-0.088200px;}
.ws11{word-spacing:-0.078000px;}
.ws28{word-spacing:-0.056700px;}
.ws32{word-spacing:-0.050400px;}
.ws2c{word-spacing:-0.044100px;}
.ws23{word-spacing:-0.037800px;}
.ws34{word-spacing:-0.031500px;}
.ws2a{word-spacing:-0.025200px;}
.ws25{word-spacing:-0.012600px;}
.ws1a{word-spacing:-0.011400px;}
.wsa{word-spacing:0.000000px;}
.ws1e{word-spacing:0.005700px;}
.ws36{word-spacing:0.006300px;}
.ws27{word-spacing:0.012600px;}
.ws20{word-spacing:0.018900px;}
.ws1b{word-spacing:0.022800px;}
.ws1f{word-spacing:0.034200px;}
.ws38{word-spacing:0.037800px;}
.ws3a{word-spacing:0.044100px;}
.ws2e{word-spacing:0.056700px;}
.ws1c{word-spacing:0.068400px;}
.wsd{word-spacing:0.076272px;}
.ws33{word-spacing:0.094500px;}
.ws4{word-spacing:0.144000px;}
.ws3e{word-spacing:0.201600px;}
.ws3{word-spacing:0.648000px;}
.ws15{word-spacing:0.936000px;}
.ws13{word-spacing:0.960000px;}
.ws8{word-spacing:1.200000px;}
.ws9{word-spacing:1.500000px;}
.ws2b{word-spacing:1.612800px;}
.ws6{word-spacing:1.950000px;}
.ws3f{word-spacing:2.022300px;}
.ws3b{word-spacing:13.237326px;}
.ws41{word-spacing:24.913980px;}
.ws24{word-spacing:28.479000px;}
.ws22{word-spacing:28.486800px;}
.ws26{word-spacing:28.489200px;}
.ws21{word-spacing:28.490400px;}
.ws29{word-spacing:28.495800px;}
.ws40{word-spacing:31.739886px;}
._4{margin-left:-16.410000px;}
._6{margin-left:-12.092430px;}
._7{margin-left:-6.185400px;}
._1{margin-left:-4.411200px;}
._0{margin-left:-2.900400px;}
._2{margin-left:-1.318800px;}
._3{width:1.170000px;}
._5{width:3.300000px;}
._e{width:15.380400px;}
._12{width:19.004550px;}
._f{width:21.138750px;}
._d{width:24.223650px;}
._9{width:29.259420px;}
._8{width:31.235400px;}
._10{width:32.510850px;}
._11{width:36.882450px;}
._a{width:39.377250px;}
._b{width:43.745850px;}
._c{width:46.082250px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs7{font-size:58.500000px;}
.fs1{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:95.340000px;}
.fs5{font-size:119.220000px;}
.fs8{font-size:120.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:100.779750px;}
.y5{bottom:119.535750px;}
.y2e{bottom:129.706905px;}
.y4{bottom:157.029750px;}
.y1b{bottom:167.165842px;}
.y15{bottom:167.481900px;}
.y2c{bottom:168.360441px;}
.y1a{bottom:184.907049px;}
.y14{bottom:189.891900px;}
.y2b{bottom:198.272369px;}
.y2a{bottom:219.828449px;}
.y19{bottom:220.389406px;}
.y13{bottom:234.711900px;}
.y18{bottom:238.130557px;}
.y29{bottom:249.740550px;}
.y28{bottom:271.296441px;}
.y17{bottom:273.612786px;}
.y27{bottom:301.208424px;}
.y16{bottom:309.095400px;}
.y26{bottom:322.764441px;}
.y25{bottom:352.676399px;}
.y24{bottom:382.588508px;}
.y23{bottom:404.144399px;}
.y22{bottom:434.056477px;}
.y21{bottom:455.612368px;}
.y20{bottom:485.524657px;}
.y1f{bottom:507.080517px;}
.y1e{bottom:536.992286px;}
.yc{bottom:565.240050px;}
.y1d{bottom:566.904504px;}
.y12{bottom:586.834650px;}
.y1c{bottom:596.816400px;}
.yb{bottom:603.537304px;}
.y9{bottom:611.181750px;}
.y11{bottom:633.919500px;}
.ya{bottom:637.471050px;}
.y37{bottom:649.650667px;}
.y8{bottom:656.219250px;}
.y2d{bottom:674.916600px;}
.y10{bottom:675.529500px;}
.y36{bottom:679.350601px;}
.y35{bottom:700.800604px;}
.y7{bottom:701.219250px;}
.y34{bottom:730.500601px;}
.y33{bottom:751.950605px;}
.y32{bottom:781.650695px;}
.yf{bottom:802.969500px;}
.y31{bottom:803.100668px;}
.ye{bottom:827.247150px;}
.y30{bottom:832.800596px;}
.yd{bottom:851.524650px;}
.y2f{bottom:854.250600px;}
.y3{bottom:863.803650px;}
.y2{bottom:889.003050px;}
.y1{bottom:914.203050px;}
.hb{height:46.626000px;}
.hc{height:46.683000px;}
.hd{height:51.534000px;}
.hf{height:51.534093px;}
.h11{height:51.534123px;}
.he{height:51.534255px;}
.h10{height:51.597000px;}
.h4{height:58.896000px;}
.h9{height:63.804000px;}
.h2{height:68.712000px;}
.h3{height:68.713200px;}
.h7{height:77.988120px;}
.h8{height:97.521960px;}
.ha{height:98.160000px;}
.h5{height:122.700000px;}
.h6{height:1020.465030px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w3{width:722.812530px;}
.w2{width:722.812605px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:121.080450px;}
.x7{left:123.064500px;}
.x9{left:128.014500px;}
.xe{left:130.991400px;}
.x19{left:139.034482px;}
.x1c{left:140.292465px;}
.x1d{left:156.042463px;}
.x1{left:157.750500px;}
.xf{left:163.177050px;}
.xd{left:165.042450px;}
.xc{left:170.570295px;}
.x10{left:198.536850px;}
.xa{left:202.107345px;}
.x4{left:205.694850px;}
.x15{left:251.773042px;}
.x3{left:261.527400px;}
.x13{left:272.898795px;}
.x17{left:287.612162px;}
.x18{left:296.874675px;}
.x11{left:303.350850px;}
.x8{left:307.939500px;}
.x5{left:310.508850px;}
.x16{left:317.487273px;}
.xb{left:319.642545px;}
.x1a{left:322.543995px;}
.x14{left:333.048230px;}
.x12{left:335.372850px;}
.x6{left:342.530850px;}
.x1b{left:575.656695px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.728000pt;}
.ls1d{letter-spacing:-0.649600pt;}
.ls1c{letter-spacing:-0.442400pt;}
.ls1f{letter-spacing:-0.274400pt;}
.ls1b{letter-spacing:-0.072800pt;}
.lsd{letter-spacing:-0.060800pt;}
.ls12{letter-spacing:-0.028000pt;}
.ls11{letter-spacing:-0.022400pt;}
.ls15{letter-spacing:-0.016800pt;}
.lsf{letter-spacing:-0.010133pt;}
.ls14{letter-spacing:-0.005600pt;}
.lsc{letter-spacing:-0.005067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001867pt;}
.lsb{letter-spacing:0.010133pt;}
.ls16{letter-spacing:0.011200pt;}
.ls13{letter-spacing:0.016800pt;}
.ls18{letter-spacing:0.022400pt;}
.ls1a{letter-spacing:0.028000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.084000pt;}
.ls20{letter-spacing:0.095200pt;}
.lse{letter-spacing:0.146933pt;}
.ls3{letter-spacing:0.330512pt;}
.ls4{letter-spacing:0.476880pt;}
.lsa{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.703397pt;}
.ls7{letter-spacing:0.853333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls10{letter-spacing:18.218667pt;}
.ls8{letter-spacing:25.493333pt;}
.ws7{word-spacing:-30.266667pt;}
.ws17{word-spacing:-25.493333pt;}
.ws12{word-spacing:-24.213333pt;}
.ws0{word-spacing:-16.949333pt;}
.wsf{word-spacing:-15.738667pt;}
.ws5{word-spacing:-14.528000pt;}
.ws1{word-spacing:-12.712000pt;}
.ws10{word-spacing:-11.804000pt;}
.wse{word-spacing:-4.005792pt;}
.ws14{word-spacing:-3.866667pt;}
.ws39{word-spacing:-1.565333pt;}
.ws2f{word-spacing:-1.558933pt;}
.ws31{word-spacing:-1.556267pt;}
.ws35{word-spacing:-1.555733pt;}
.ws2d{word-spacing:-1.555200pt;}
.ws3c{word-spacing:-1.548267pt;}
.ws37{word-spacing:-1.547733pt;}
.wsb{word-spacing:-1.066667pt;}
.ws16{word-spacing:-0.853333pt;}
.ws18{word-spacing:-0.533333pt;}
.ws19{word-spacing:-0.512000pt;}
.wsc{word-spacing:-0.271189pt;}
.ws2{word-spacing:-0.149333pt;}
.ws3d{word-spacing:-0.145600pt;}
.ws1d{word-spacing:-0.101333pt;}
.ws30{word-spacing:-0.078400pt;}
.ws11{word-spacing:-0.069333pt;}
.ws28{word-spacing:-0.050400pt;}
.ws32{word-spacing:-0.044800pt;}
.ws2c{word-spacing:-0.039200pt;}
.ws23{word-spacing:-0.033600pt;}
.ws34{word-spacing:-0.028000pt;}
.ws2a{word-spacing:-0.022400pt;}
.ws25{word-spacing:-0.011200pt;}
.ws1a{word-spacing:-0.010133pt;}
.wsa{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.005067pt;}
.ws36{word-spacing:0.005600pt;}
.ws27{word-spacing:0.011200pt;}
.ws20{word-spacing:0.016800pt;}
.ws1b{word-spacing:0.020267pt;}
.ws1f{word-spacing:0.030400pt;}
.ws38{word-spacing:0.033600pt;}
.ws3a{word-spacing:0.039200pt;}
.ws2e{word-spacing:0.050400pt;}
.ws1c{word-spacing:0.060800pt;}
.wsd{word-spacing:0.067797pt;}
.ws33{word-spacing:0.084000pt;}
.ws4{word-spacing:0.128000pt;}
.ws3e{word-spacing:0.179200pt;}
.ws3{word-spacing:0.576000pt;}
.ws15{word-spacing:0.832000pt;}
.ws13{word-spacing:0.853333pt;}
.ws8{word-spacing:1.066667pt;}
.ws9{word-spacing:1.333333pt;}
.ws2b{word-spacing:1.433600pt;}
.ws6{word-spacing:1.733333pt;}
.ws3f{word-spacing:1.797600pt;}
.ws3b{word-spacing:11.766512pt;}
.ws41{word-spacing:22.145760pt;}
.ws24{word-spacing:25.314667pt;}
.ws22{word-spacing:25.321600pt;}
.ws26{word-spacing:25.323733pt;}
.ws21{word-spacing:25.324800pt;}
.ws29{word-spacing:25.329600pt;}
.ws40{word-spacing:28.213232pt;}
._4{margin-left:-14.586667pt;}
._6{margin-left:-10.748827pt;}
._7{margin-left:-5.498133pt;}
._1{margin-left:-3.921067pt;}
._0{margin-left:-2.578133pt;}
._2{margin-left:-1.172267pt;}
._3{width:1.040000pt;}
._5{width:2.933333pt;}
._e{width:13.671467pt;}
._12{width:16.892933pt;}
._f{width:18.790000pt;}
._d{width:21.532133pt;}
._9{width:26.008373pt;}
._8{width:27.764800pt;}
._10{width:28.898533pt;}
._11{width:32.784400pt;}
._a{width:35.002000pt;}
._b{width:38.885200pt;}
._c{width:40.962000pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs7{font-size:52.000000pt;}
.fs1{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:84.746667pt;}
.fs5{font-size:105.973333pt;}
.fs8{font-size:106.666667pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:89.582000pt;}
.y5{bottom:106.254000pt;}
.y2e{bottom:115.295027pt;}
.y4{bottom:139.582000pt;}
.y1b{bottom:148.591859pt;}
.y15{bottom:148.872800pt;}
.y2c{bottom:149.653725pt;}
.y1a{bottom:164.361821pt;}
.y14{bottom:168.792800pt;}
.y2b{bottom:176.242106pt;}
.y2a{bottom:195.403066pt;}
.y19{bottom:195.901695pt;}
.y13{bottom:208.632800pt;}
.y18{bottom:211.671606pt;}
.y29{bottom:221.991600pt;}
.y28{bottom:241.152392pt;}
.y17{bottom:243.211365pt;}
.y27{bottom:267.740821pt;}
.y16{bottom:274.751467pt;}
.y26{bottom:286.901725pt;}
.y25{bottom:313.490133pt;}
.y24{bottom:340.078674pt;}
.y23{bottom:359.239466pt;}
.y22{bottom:385.827979pt;}
.y21{bottom:404.988771pt;}
.y20{bottom:431.577473pt;}
.y1f{bottom:450.738237pt;}
.y1e{bottom:477.326477pt;}
.yc{bottom:502.435600pt;}
.y1d{bottom:503.915115pt;}
.y12{bottom:521.630800pt;}
.y1c{bottom:530.503467pt;}
.yb{bottom:536.477603pt;}
.y9{bottom:543.272667pt;}
.y11{bottom:563.484000pt;}
.ya{bottom:566.640933pt;}
.y37{bottom:577.467260pt;}
.y8{bottom:583.306000pt;}
.y2d{bottom:599.925867pt;}
.y10{bottom:600.470667pt;}
.y36{bottom:603.867201pt;}
.y35{bottom:622.933871pt;}
.y7{bottom:623.306000pt;}
.y34{bottom:649.333867pt;}
.y33{bottom:668.400537pt;}
.y32{bottom:694.800618pt;}
.yf{bottom:713.750667pt;}
.y31{bottom:713.867260pt;}
.ye{bottom:735.330800pt;}
.y30{bottom:740.267197pt;}
.yd{bottom:756.910800pt;}
.y2f{bottom:759.333867pt;}
.y3{bottom:767.825467pt;}
.y2{bottom:790.224933pt;}
.y1{bottom:812.624933pt;}
.hb{height:41.445333pt;}
.hc{height:41.496000pt;}
.hd{height:45.808000pt;}
.hf{height:45.808083pt;}
.h11{height:45.808109pt;}
.he{height:45.808227pt;}
.h10{height:45.864000pt;}
.h4{height:52.352000pt;}
.h9{height:56.714667pt;}
.h2{height:61.077333pt;}
.h3{height:61.078400pt;}
.h7{height:69.322773pt;}
.h8{height:86.686187pt;}
.ha{height:87.253333pt;}
.h5{height:109.066667pt;}
.h6{height:907.080027pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w3{width:642.500027pt;}
.w2{width:642.500093pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:107.627067pt;}
.x7{left:109.390667pt;}
.x9{left:113.790667pt;}
.xe{left:116.436800pt;}
.x19{left:123.586207pt;}
.x1c{left:124.704413pt;}
.x1d{left:138.704412pt;}
.x1{left:140.222667pt;}
.xf{left:145.046267pt;}
.xd{left:146.704400pt;}
.xc{left:151.618040pt;}
.x10{left:176.477200pt;}
.xa{left:179.650973pt;}
.x4{left:182.839867pt;}
.x15{left:223.798259pt;}
.x3{left:232.468800pt;}
.x13{left:242.576707pt;}
.x17{left:255.655255pt;}
.x18{left:263.888600pt;}
.x11{left:269.645200pt;}
.x8{left:273.724000pt;}
.x5{left:276.007867pt;}
.x16{left:282.210909pt;}
.xb{left:284.126706pt;}
.x1a{left:286.705773pt;}
.x14{left:296.042871pt;}
.x12{left:298.109200pt;}
.x6{left:304.471867pt;}
.x1b{left:511.694840pt;}
}




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