
    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_55494286410b230b7d94b10e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_1aa8c1989c8b824b8054d08c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_2c70d63f5d860b36eabfdfad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.783691;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_3d9a16c2927099cc1f5b865a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_e82908f1ef351828054baeaa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_d60349b6dfdafe84b97e7ad6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_b3de3433865b3b5a16c08345.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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);}
.v1{vertical-align:-84.360000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.036000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.123000px;}
.lsd{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.157200px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:13.536000px;}
.ls6{letter-spacing:67.067280px;}
.ls1{letter-spacing:69.336000px;}
.ls2{letter-spacing:156.744000px;}
.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;}
}
.ws9{word-spacing:-89.064000px;}
.wsa{word-spacing:-88.920000px;}
.ws6{word-spacing:-88.776000px;}
.ws7{word-spacing:-88.740000px;}
.ws8{word-spacing:-88.272000px;}
.ws28{word-spacing:-84.240000px;}
.wsd{word-spacing:-66.173760px;}
.wsf{word-spacing:-59.544000px;}
.ws11{word-spacing:-59.472000px;}
.ws10{word-spacing:-59.400000px;}
.ws14{word-spacing:-59.256000px;}
.ws0{word-spacing:-59.184000px;}
.ws12{word-spacing:-59.040000px;}
.ws15{word-spacing:-58.968000px;}
.ws13{word-spacing:-58.824000px;}
.ws4{word-spacing:-49.680000px;}
.ws3{word-spacing:-49.500000px;}
.ws2a{word-spacing:-29.592000px;}
.ws22{word-spacing:-27.174240px;}
.ws23{word-spacing:-17.863920px;}
.ws1c{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.286704px;}
.ws2{word-spacing:-0.195984px;}
.ws1b{word-spacing:-0.072000px;}
.ws2b{word-spacing:0.000000px;}
.ws21{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
.ws5{word-spacing:0.324000px;}
.wsb{word-spacing:0.432000px;}
.ws1e{word-spacing:5.328000px;}
.ws1f{word-spacing:6.192000px;}
.ws1d{word-spacing:6.408000px;}
.ws18{word-spacing:6.480000px;}
.ws20{word-spacing:8.064000px;}
.ws29{word-spacing:16.759440px;}
.ws24{word-spacing:65.964240px;}
.ws25{word-spacing:66.919680px;}
.ws26{word-spacing:116.206560px;}
.ws27{word-spacing:123.880320px;}
.wse{word-spacing:128.232000px;}
.ws16{word-spacing:192.600000px;}
.ws17{word-spacing:192.672000px;}
.ws1{word-spacing:3770.836320px;}
._f{margin-left:-27.360000px;}
._10{margin-left:-22.014720px;}
._e{margin-left:-20.852640px;}
._4{margin-left:-18.792000px;}
._19{margin-left:-17.280000px;}
._a{margin-left:-16.200000px;}
._8{margin-left:-14.580000px;}
._b{margin-left:-13.491360px;}
._18{margin-left:-12.375360px;}
._17{margin-left:-9.816000px;}
._9{margin-left:-5.760000px;}
._1{margin-left:-3.888000px;}
._0{margin-left:-2.808000px;}
._5{margin-left:-1.620000px;}
._2{width:1.080000px;}
._3{width:2.208000px;}
._6{width:5.760000px;}
._7{width:7.200000px;}
._11{width:8.208000px;}
._1b{width:13.572000px;}
._1c{width:15.192000px;}
._1d{width:60.552000px;}
._1f{width:67.716000px;}
._d{width:86.868000px;}
._1a{width:88.668000px;}
._c{width:90.144000px;}
._20{width:117.552960px;}
._14{width:151.608000px;}
._15{width:152.700000px;}
._16{width:153.708000px;}
._12{width:156.936000px;}
._1e{width:253.476000px;}
._13{width:291.648000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:84.240000px;}
.fs1{font-size:107.280000px;}
.fsb{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fs2{font-size:180.000000px;}
.fs3{font-size:180.144000px;}
.fs0{font-size:216.000000px;}
.fs8{font-size:216.144000px;}
.fs7{font-size:239.760000px;}
.fs5{font-size:288.000000px;}
.fs6{font-size:324.000000px;}
.fs4{font-size:516.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:170.355000px;}
.y7{bottom:236.085000px;}
.y5{bottom:299.730000px;}
.y4{bottom:381.600000px;}
.y6{bottom:426.990000px;}
.y2{bottom:504.030000px;}
.y3{bottom:595.545000px;}
.y1{bottom:687.930000px;}
.y31{bottom:835.590000px;}
.y28{bottom:857.445000px;}
.y30{bottom:860.790000px;}
.y2f{bottom:885.990000px;}
.y35{bottom:891.510000px;}
.y2e{bottom:911.190000px;}
.y27{bottom:922.245000px;}
.y34{bottom:923.910000px;}
.y26{bottom:1005.045000px;}
.y2d{bottom:1046.730000px;}
.y2c{bottom:1082.955000px;}
.y25{bottom:1087.890000px;}
.y24{bottom:1152.690000px;}
.y23{bottom:1217.490000px;}
.y22{bottom:1301.550000px;}
.y2b{bottom:1316.010000px;}
.y33{bottom:1348.230000px;}
.y2a{bottom:1352.190000px;}
.y32{bottom:1380.630000px;}
.y29{bottom:2082.930000px;}
.y16{bottom:2182.170000px;}
.y21{bottom:2298.600000px;}
.y20{bottom:2363.400000px;}
.y1f{bottom:2446.200000px;}
.y1e{bottom:2511.000000px;}
.y1d{bottom:2593.800000px;}
.y1c{bottom:2658.600000px;}
.y1b{bottom:2742.660000px;}
.y17{bottom:3018.630000px;}
.y1a{bottom:3322.470000px;}
.y19{bottom:3394.470000px;}
.y18{bottom:3542.940000px;}
.y10{bottom:3654.645000px;}
.y14{bottom:3818.190000px;}
.yf{bottom:3821.970000px;}
.y13{bottom:3915.390000px;}
.ye{bottom:3919.170000px;}
.y12{bottom:4012.590000px;}
.yd{bottom:4016.415000px;}
.y11{bottom:4109.790000px;}
.yc{bottom:4113.615000px;}
.yb{bottom:4224.675000px;}
.y15{bottom:4228.770000px;}
.ya{bottom:4645.695000px;}
.y9{bottom:4784.835000px;}
.hc{height:64.249453px;}
.h3{height:92.769961px;}
.hd{height:93.392578px;}
.hb{height:119.594180px;}
.h5{height:155.742188px;}
.h4{height:155.866781px;}
.h2{height:186.785156px;}
.ha{height:186.909680px;}
.h9{height:207.448594px;}
.h7{height:249.046875px;}
.h8{height:280.177734px;}
.h6{height:446.416523px;}
.h0{height:5021.640000px;}
.h1{height:5022.000000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x18{left:112.139947px;}
.xa{left:143.099947px;}
.x9{left:158.834947px;}
.xc{left:163.184947px;}
.x6{left:182.519947px;}
.x13{left:275.429947px;}
.x14{left:468.689947px;}
.x15{left:480.389947px;}
.x17{left:528.809947px;}
.x16{left:534.569947px;}
.xb{left:661.349947px;}
.x2{left:948.059947px;}
.x4{left:1173.959947px;}
.x5{left:1584.389947px;}
.xe{left:1610.714947px;}
.x1c{left:1614.344947px;}
.xd{left:1628.174947px;}
.x1b{left:1633.064947px;}
.xf{left:1737.929947px;}
.x10{left:1825.769947px;}
.x3{left:1912.529947px;}
.x1a{left:1918.694947px;}
.x19{left:1923.374947px;}
.x1{left:2033.354947px;}
.x11{left:2145.629947px;}
.x12{left:2233.469947px;}
.x7{left:2299.169947px;}
.x8{left:2380.169947px;}
@media print{
.v1{vertical-align:-74.986667pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.109333pt;}
.lsd{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.139733pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:12.032000pt;}
.ls6{letter-spacing:59.615360pt;}
.ls1{letter-spacing:61.632000pt;}
.ls2{letter-spacing:139.328000pt;}
.ws9{word-spacing:-79.168000pt;}
.wsa{word-spacing:-79.040000pt;}
.ws6{word-spacing:-78.912000pt;}
.ws7{word-spacing:-78.880000pt;}
.ws8{word-spacing:-78.464000pt;}
.ws28{word-spacing:-74.880000pt;}
.wsd{word-spacing:-58.821120pt;}
.wsf{word-spacing:-52.928000pt;}
.ws11{word-spacing:-52.864000pt;}
.ws10{word-spacing:-52.800000pt;}
.ws14{word-spacing:-52.672000pt;}
.ws0{word-spacing:-52.608000pt;}
.ws12{word-spacing:-52.480000pt;}
.ws15{word-spacing:-52.416000pt;}
.ws13{word-spacing:-52.288000pt;}
.ws4{word-spacing:-44.160000pt;}
.ws3{word-spacing:-44.000000pt;}
.ws2a{word-spacing:-26.304000pt;}
.ws22{word-spacing:-24.154880pt;}
.ws23{word-spacing:-15.879040pt;}
.ws1c{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.254848pt;}
.ws2{word-spacing:-0.174208pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws2b{word-spacing:0.000000pt;}
.ws21{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
.ws5{word-spacing:0.288000pt;}
.wsb{word-spacing:0.384000pt;}
.ws1e{word-spacing:4.736000pt;}
.ws1f{word-spacing:5.504000pt;}
.ws1d{word-spacing:5.696000pt;}
.ws18{word-spacing:5.760000pt;}
.ws20{word-spacing:7.168000pt;}
.ws29{word-spacing:14.897280pt;}
.ws24{word-spacing:58.634880pt;}
.ws25{word-spacing:59.484160pt;}
.ws26{word-spacing:103.294720pt;}
.ws27{word-spacing:110.115840pt;}
.wse{word-spacing:113.984000pt;}
.ws16{word-spacing:171.200000pt;}
.ws17{word-spacing:171.264000pt;}
.ws1{word-spacing:3351.854507pt;}
._f{margin-left:-24.320000pt;}
._10{margin-left:-19.568640pt;}
._e{margin-left:-18.535680pt;}
._4{margin-left:-16.704000pt;}
._19{margin-left:-15.360000pt;}
._a{margin-left:-14.400000pt;}
._8{margin-left:-12.960000pt;}
._b{margin-left:-11.992320pt;}
._18{margin-left:-11.000320pt;}
._17{margin-left:-8.725333pt;}
._9{margin-left:-5.120000pt;}
._1{margin-left:-3.456000pt;}
._0{margin-left:-2.496000pt;}
._5{margin-left:-1.440000pt;}
._2{width:0.960000pt;}
._3{width:1.962667pt;}
._6{width:5.120000pt;}
._7{width:6.400000pt;}
._11{width:7.296000pt;}
._1b{width:12.064000pt;}
._1c{width:13.504000pt;}
._1d{width:53.824000pt;}
._1f{width:60.192000pt;}
._d{width:77.216000pt;}
._1a{width:78.816000pt;}
._c{width:80.128000pt;}
._20{width:104.491520pt;}
._14{width:134.762667pt;}
._15{width:135.733333pt;}
._16{width:136.629333pt;}
._12{width:139.498667pt;}
._1e{width:225.312000pt;}
._13{width:259.242667pt;}
.fsa{font-size:74.880000pt;}
.fs1{font-size:95.360000pt;}
.fsb{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fs2{font-size:160.000000pt;}
.fs3{font-size:160.128000pt;}
.fs0{font-size:192.000000pt;}
.fs8{font-size:192.128000pt;}
.fs7{font-size:213.120000pt;}
.fs5{font-size:256.000000pt;}
.fs6{font-size:288.000000pt;}
.fs4{font-size:458.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:151.426667pt;}
.y7{bottom:209.853333pt;}
.y5{bottom:266.426667pt;}
.y4{bottom:339.200000pt;}
.y6{bottom:379.546667pt;}
.y2{bottom:448.026667pt;}
.y3{bottom:529.373333pt;}
.y1{bottom:611.493333pt;}
.y31{bottom:742.746667pt;}
.y28{bottom:762.173333pt;}
.y30{bottom:765.146667pt;}
.y2f{bottom:787.546667pt;}
.y35{bottom:792.453333pt;}
.y2e{bottom:809.946667pt;}
.y27{bottom:819.773333pt;}
.y34{bottom:821.253333pt;}
.y26{bottom:893.373333pt;}
.y2d{bottom:930.426667pt;}
.y2c{bottom:962.626667pt;}
.y25{bottom:967.013333pt;}
.y24{bottom:1024.613333pt;}
.y23{bottom:1082.213333pt;}
.y22{bottom:1156.933333pt;}
.y2b{bottom:1169.786667pt;}
.y33{bottom:1198.426667pt;}
.y2a{bottom:1201.946667pt;}
.y32{bottom:1227.226667pt;}
.y29{bottom:1851.493333pt;}
.y16{bottom:1939.706667pt;}
.y21{bottom:2043.200000pt;}
.y20{bottom:2100.800000pt;}
.y1f{bottom:2174.400000pt;}
.y1e{bottom:2232.000000pt;}
.y1d{bottom:2305.600000pt;}
.y1c{bottom:2363.200000pt;}
.y1b{bottom:2437.920000pt;}
.y17{bottom:2683.226667pt;}
.y1a{bottom:2953.306667pt;}
.y19{bottom:3017.306667pt;}
.y18{bottom:3149.280000pt;}
.y10{bottom:3248.573333pt;}
.y14{bottom:3393.946667pt;}
.yf{bottom:3397.306667pt;}
.y13{bottom:3480.346667pt;}
.ye{bottom:3483.706667pt;}
.y12{bottom:3566.746667pt;}
.yd{bottom:3570.146667pt;}
.y11{bottom:3653.146667pt;}
.yc{bottom:3656.546667pt;}
.yb{bottom:3755.266667pt;}
.y15{bottom:3758.906667pt;}
.ya{bottom:4129.506667pt;}
.y9{bottom:4253.186667pt;}
.hc{height:57.110625pt;}
.h3{height:82.462187pt;}
.hd{height:83.015625pt;}
.hb{height:106.305937pt;}
.h5{height:138.437500pt;}
.h4{height:138.548250pt;}
.h2{height:166.031250pt;}
.ha{height:166.141938pt;}
.h9{height:184.398750pt;}
.h7{height:221.375000pt;}
.h8{height:249.046875pt;}
.h6{height:396.814687pt;}
.h0{height:4463.680000pt;}
.h1{height:4464.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x18{left:99.679953pt;}
.xa{left:127.199953pt;}
.x9{left:141.186619pt;}
.xc{left:145.053286pt;}
.x6{left:162.239953pt;}
.x13{left:244.826619pt;}
.x14{left:416.613286pt;}
.x15{left:427.013286pt;}
.x17{left:470.053286pt;}
.x16{left:475.173286pt;}
.xb{left:587.866619pt;}
.x2{left:842.719953pt;}
.x4{left:1043.519953pt;}
.x5{left:1408.346619pt;}
.xe{left:1431.746619pt;}
.x1c{left:1434.973286pt;}
.xd{left:1447.266619pt;}
.x1b{left:1451.613286pt;}
.xf{left:1544.826619pt;}
.x10{left:1622.906619pt;}
.x3{left:1700.026619pt;}
.x1a{left:1705.506619pt;}
.x19{left:1709.666619pt;}
.x1{left:1807.426619pt;}
.x11{left:1907.226619pt;}
.x12{left:1985.306619pt;}
.x7{left:2043.706619pt;}
.x8{left:2115.706619pt;}
}




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