
    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_99e7f6d8219b7dac643fc602.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_d98d0c8cf7e3e8913ef8c699.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_97eef079fcfc0509a6e7061f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.061035;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_761d48ca046b6bbda431e16b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_5d836db21832a6d266a4fdee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_0e89c8fdf3ad6f9dbf8705fc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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;}
.m4{transform:matrix(0.000000,-0.249906,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249906,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249906,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.249906,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249906,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249906,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,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);}
.m2{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.120000px;}
.v3{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.800000px;}
.v1{vertical-align:18.000000px;}
.ls16{letter-spacing:-1.224000px;}
.ls14{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.306600px;}
.ls19{letter-spacing:-0.183651px;}
.ls1a{letter-spacing:-0.118544px;}
.ls18{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.028080px;}
.ls13{letter-spacing:-0.017280px;}
.ls12{letter-spacing:-0.008640px;}
.lsc{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.017690px;}
.ls0{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.102720px;}
.ls9{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.300353px;}
.ls10{letter-spacing:0.380400px;}
.ls3{letter-spacing:0.702720px;}
.ls7{letter-spacing:0.774000px;}
.ls1{letter-spacing:0.931680px;}
.ls2{letter-spacing:2.483280px;}
.ls8{letter-spacing:3.365280px;}
.lsa{letter-spacing:4.428000px;}
.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;}
}
.wsa{word-spacing:-54.000000px;}
.ws1{word-spacing:-23.390640px;}
.ws8{word-spacing:-22.940040px;}
.ws0{word-spacing:-20.016000px;}
.wse{word-spacing:-18.305520px;}
.ws5{word-spacing:-16.993680px;}
.ws2{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.506480px;}
.ws3{word-spacing:-16.306680px;}
.wsc{word-spacing:-15.228000px;}
.wsb{word-spacing:-15.138000px;}
.wsd{word-spacing:-14.508000px;}
.ws4{word-spacing:-10.808640px;}
.ws9{word-spacing:-10.791360px;}
.wsf{word-spacing:0.000000px;}
._d{margin-left:-5.064480px;}
._6{margin-left:-2.598960px;}
._0{margin-left:-1.466640px;}
._1{width:1.619760px;}
._5{width:2.843520px;}
._4{width:4.422240px;}
._2{width:6.334560px;}
._3{width:7.768800px;}
._c{width:8.784720px;}
._b{width:13.667040px;}
._a{width:14.999760px;}
._7{width:18.237120px;}
._8{width:19.362240px;}
._9{width:20.693280px;}
._e{width:220.953669px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:14.593839px;}
.fsc{font-size:14.599353px;}
.fs9{font-size:25.060127px;}
.fsb{font-size:25.207540px;}
.fsa{font-size:35.982244px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.155045px;}
.fs8{font-size:38.274280px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y1f{bottom:-29.700000px;}
.y31{bottom:-26.100000px;}
.y1e{bottom:-12.420000px;}
.y42{bottom:-0.164003px;}
.y0{bottom:0.000000px;}
.y64{bottom:1.620000px;}
.y30{bottom:2.700000px;}
.y25{bottom:3.960000px;}
.y1d{bottom:4.860000px;}
.y5e{bottom:5.760000px;}
.y37{bottom:5.940000px;}
.y7{bottom:10.620000px;}
.y63{bottom:18.720000px;}
.y2f{bottom:19.620000px;}
.y24{bottom:20.700000px;}
.y35{bottom:20.880000px;}
.y1c{bottom:22.140000px;}
.y62{bottom:35.496000px;}
.y5c{bottom:35.951657px;}
.y55{bottom:35.951666px;}
.y52{bottom:35.951671px;}
.y4b{bottom:35.951679px;}
.y57{bottom:36.541311px;}
.y4d{bottom:36.541325px;}
.y23{bottom:37.440000px;}
.y34{bottom:37.620000px;}
.y2e{bottom:38.160000px;}
.y48{bottom:39.231612px;}
.y1b{bottom:39.420000px;}
.y5b{bottom:40.558298px;}
.y54{bottom:40.558307px;}
.y51{bottom:40.558312px;}
.y4a{bottom:40.558320px;}
.y56{bottom:41.147952px;}
.y4c{bottom:41.147966px;}
.y5f{bottom:44.100000px;}
.y43{bottom:49.329372px;}
.y61{bottom:52.236000px;}
.y33{bottom:54.360000px;}
.y3d{bottom:54.446484px;}
.y59{bottom:56.663122px;}
.y4f{bottom:56.663135px;}
.y1a{bottom:56.700000px;}
.y2d{bottom:56.925000px;}
.y22{bottom:58.710000px;}
.y5a{bottom:61.417169px;}
.y53{bottom:61.417178px;}
.y50{bottom:61.417183px;}
.y49{bottom:61.417191px;}
.y58{bottom:61.638291px;}
.y4e{bottom:61.638305px;}
.y60{bottom:68.976000px;}
.y19{bottom:73.800000px;}
.y47{bottom:74.278932px;}
.y2c{bottom:75.645000px;}
.y44{bottom:85.334876px;}
.y18{bottom:91.080000px;}
.y45{bottom:102.434730px;}
.y17{bottom:108.360000px;}
.y16{bottom:125.640000px;}
.y2a{bottom:128.160000px;}
.y15{bottom:142.920000px;}
.y5{bottom:143.856000px;}
.y14{bottom:160.200000px;}
.y29{bottom:162.540000px;}
.y32{bottom:167.610000px;}
.y13{bottom:177.300000px;}
.y4{bottom:178.230000px;}
.y12{bottom:194.760000px;}
.y28{bottom:196.740000px;}
.y46{bottom:204.264531px;}
.y11{bottom:212.445000px;}
.y3{bottom:212.610000px;}
.y40{bottom:214.308926px;}
.y3c{bottom:215.799338px;}
.y3f{bottom:221.649295px;}
.y3b{bottom:222.866462px;}
.y10{bottom:230.085000px;}
.y3e{bottom:231.125958px;}
.y27{bottom:231.150000px;}
.y3a{bottom:232.579110px;}
.y2{bottom:246.990000px;}
.yf{bottom:247.365000px;}
.ye{bottom:264.645000px;}
.y2b{bottom:275.250000px;}
.yd{bottom:281.925000px;}
.yc{bottom:299.205000px;}
.yb{bottom:316.485000px;}
.ya{bottom:333.585000px;}
.y26{bottom:350.175000px;}
.y9{bottom:350.865000px;}
.y39{bottom:370.014948px;}
.y41{bottom:380.230350px;}
.y38{bottom:588.165000px;}
.y36{bottom:588.525000px;}
.y5d{bottom:589.965000px;}
.y8{bottom:615.525000px;}
.y1{bottom:990.330000px;}
.y21{bottom:1013.370000px;}
.y20{bottom:1083.960000px;}
.y6{bottom:1114.740000px;}
.h18{height:11.087897px;}
.h17{height:11.092086px;}
.h6{height:18.900000px;}
.h14{height:19.039823px;}
.h16{height:19.151822px;}
.h19{height:21.240000px;}
.he{height:21.420000px;}
.h15{height:27.338072px;}
.h3{height:30.240000px;}
.h8{height:32.273438px;}
.h11{height:34.205402px;}
.h12{height:34.312294px;}
.ha{height:48.410156px;}
.h9{height:50.273438px;}
.h5{height:53.573906px;}
.hf{height:59.383125px;}
.h2{height:64.546875px;}
.h7{height:66.816000px;}
.hd{height:66.960000px;}
.h1{height:75.519844px;}
.h1a{height:81.576000px;}
.hc{height:88.416000px;}
.h13{height:205.087701px;}
.h10{height:245.325057px;}
.hb{height:248.070000px;}
.h4{height:364.890000px;}
.h0{height:1188.000000px;}
.w5{width:44.280000px;}
.w4{width:44.460000px;}
.w6{width:143.229897px;}
.w7{width:306.180879px;}
.w3{width:805.650000px;}
.w2{width:805.830000px;}
.w8{width:833.940000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:10.800000px;}
.x12{left:31.756480px;}
.x11{left:41.493719px;}
.x14{left:42.672077px;}
.xb{left:44.460000px;}
.x6{left:50.436000px;}
.x1{left:53.999986px;}
.x2{left:56.700000px;}
.x13{left:62.455570px;}
.x15{left:64.423637px;}
.x16{left:68.257812px;}
.x17{left:97.272182px;}
.x10{left:99.202536px;}
.x3{left:105.690000px;}
.xe{left:107.808230px;}
.x8{left:114.150000px;}
.x7{left:116.130000px;}
.xf{left:117.962364px;}
.x1a{left:119.171211px;}
.x18{left:134.655374px;}
.x5{left:137.010000px;}
.x19{left:138.673882px;}
.x1b{left:160.271830px;}
.x1c{left:161.347120px;}
.x1d{left:196.816296px;}
.x1e{left:197.922309px;}
.x21{left:218.675387px;}
.x1f{left:234.159549px;}
.x20{left:238.552872px;}
.x22{left:264.728480px;}
.x23{left:265.942021px;}
.x9{left:269.715000px;}
.xc{left:329.475000px;}
.xa{left:402.735000px;}
.x24{left:683.250000px;}
.xd{left:707.430383px;}
@media print{
.v2{vertical-align:-16.106667pt;}
.v3{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.600000pt;}
.v1{vertical-align:16.000000pt;}
.ls16{letter-spacing:-1.088000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.272533pt;}
.ls19{letter-spacing:-0.163246pt;}
.ls1a{letter-spacing:-0.105373pt;}
.ls18{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.024960pt;}
.ls13{letter-spacing:-0.015360pt;}
.ls12{letter-spacing:-0.007680pt;}
.lsc{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.015724pt;}
.ls0{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.091307pt;}
.ls9{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.266980pt;}
.ls10{letter-spacing:0.338133pt;}
.ls3{letter-spacing:0.624640pt;}
.ls7{letter-spacing:0.688000pt;}
.ls1{letter-spacing:0.828160pt;}
.ls2{letter-spacing:2.207360pt;}
.ls8{letter-spacing:2.991360pt;}
.lsa{letter-spacing:3.936000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws1{word-spacing:-20.791680pt;}
.ws8{word-spacing:-20.391147pt;}
.ws0{word-spacing:-17.792000pt;}
.wse{word-spacing:-16.271573pt;}
.ws5{word-spacing:-15.105493pt;}
.ws2{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.672427pt;}
.ws3{word-spacing:-14.494827pt;}
.wsc{word-spacing:-13.536000pt;}
.wsb{word-spacing:-13.456000pt;}
.wsd{word-spacing:-12.896000pt;}
.ws4{word-spacing:-9.607680pt;}
.ws9{word-spacing:-9.592320pt;}
.wsf{word-spacing:0.000000pt;}
._d{margin-left:-4.501760pt;}
._6{margin-left:-2.310187pt;}
._0{margin-left:-1.303680pt;}
._1{width:1.439787pt;}
._5{width:2.527573pt;}
._4{width:3.930880pt;}
._2{width:5.630720pt;}
._3{width:6.905600pt;}
._c{width:7.808640pt;}
._b{width:12.148480pt;}
._a{width:13.333120pt;}
._7{width:16.210773pt;}
._8{width:17.210880pt;}
._9{width:18.394027pt;}
._e{width:196.403261pt;}
.fsd{font-size:12.972301pt;}
.fsc{font-size:12.977203pt;}
.fs9{font-size:22.275669pt;}
.fsb{font-size:22.406702pt;}
.fsa{font-size:31.984216pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:33.915596pt;}
.fs8{font-size:34.021582pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y1f{bottom:-26.400000pt;}
.y31{bottom:-23.200000pt;}
.y1e{bottom:-11.040000pt;}
.y42{bottom:-0.145780pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.440000pt;}
.y30{bottom:2.400000pt;}
.y25{bottom:3.520000pt;}
.y1d{bottom:4.320000pt;}
.y5e{bottom:5.120000pt;}
.y37{bottom:5.280000pt;}
.y7{bottom:9.440000pt;}
.y63{bottom:16.640000pt;}
.y2f{bottom:17.440000pt;}
.y24{bottom:18.400000pt;}
.y35{bottom:18.560000pt;}
.y1c{bottom:19.680000pt;}
.y62{bottom:31.552000pt;}
.y5c{bottom:31.957029pt;}
.y55{bottom:31.957037pt;}
.y52{bottom:31.957041pt;}
.y4b{bottom:31.957048pt;}
.y57{bottom:32.481166pt;}
.y4d{bottom:32.481177pt;}
.y23{bottom:33.280000pt;}
.y34{bottom:33.440000pt;}
.y2e{bottom:33.920000pt;}
.y48{bottom:34.872544pt;}
.y1b{bottom:35.040000pt;}
.y5b{bottom:36.051821pt;}
.y54{bottom:36.051829pt;}
.y51{bottom:36.051833pt;}
.y4a{bottom:36.051840pt;}
.y56{bottom:36.575958pt;}
.y4c{bottom:36.575970pt;}
.y5f{bottom:39.200000pt;}
.y43{bottom:43.848331pt;}
.y61{bottom:46.432000pt;}
.y33{bottom:48.320000pt;}
.y3d{bottom:48.396874pt;}
.y59{bottom:50.367219pt;}
.y4f{bottom:50.367231pt;}
.y1a{bottom:50.400000pt;}
.y2d{bottom:50.600000pt;}
.y22{bottom:52.186667pt;}
.y5a{bottom:54.593039pt;}
.y53{bottom:54.593047pt;}
.y50{bottom:54.593052pt;}
.y49{bottom:54.593059pt;}
.y58{bottom:54.789592pt;}
.y4e{bottom:54.789604pt;}
.y60{bottom:61.312000pt;}
.y19{bottom:65.600000pt;}
.y47{bottom:66.025717pt;}
.y2c{bottom:67.240000pt;}
.y44{bottom:75.853223pt;}
.y18{bottom:80.960000pt;}
.y45{bottom:91.053094pt;}
.y17{bottom:96.320000pt;}
.y16{bottom:111.680000pt;}
.y2a{bottom:113.920000pt;}
.y15{bottom:127.040000pt;}
.y5{bottom:127.872000pt;}
.y14{bottom:142.400000pt;}
.y29{bottom:144.480000pt;}
.y32{bottom:148.986667pt;}
.y13{bottom:157.600000pt;}
.y4{bottom:158.426667pt;}
.y12{bottom:173.120000pt;}
.y28{bottom:174.880000pt;}
.y46{bottom:181.568472pt;}
.y11{bottom:188.840000pt;}
.y3{bottom:188.986667pt;}
.y40{bottom:190.496823pt;}
.y3c{bottom:191.821634pt;}
.y3f{bottom:197.021596pt;}
.y3b{bottom:198.103522pt;}
.y10{bottom:204.520000pt;}
.y3e{bottom:205.445296pt;}
.y27{bottom:205.466667pt;}
.y3a{bottom:206.736986pt;}
.y2{bottom:219.546667pt;}
.yf{bottom:219.880000pt;}
.ye{bottom:235.240000pt;}
.y2b{bottom:244.666667pt;}
.yd{bottom:250.600000pt;}
.yc{bottom:265.960000pt;}
.yb{bottom:281.320000pt;}
.ya{bottom:296.520000pt;}
.y26{bottom:311.266667pt;}
.y9{bottom:311.880000pt;}
.y39{bottom:328.902176pt;}
.y41{bottom:337.982533pt;}
.y38{bottom:522.813333pt;}
.y36{bottom:523.133333pt;}
.y5d{bottom:524.413333pt;}
.y8{bottom:547.133333pt;}
.y1{bottom:880.293333pt;}
.y21{bottom:900.773333pt;}
.y20{bottom:963.520000pt;}
.y6{bottom:990.880000pt;}
.h18{height:9.855909pt;}
.h17{height:9.859632pt;}
.h6{height:16.800000pt;}
.h14{height:16.924287pt;}
.h16{height:17.023842pt;}
.h19{height:18.880000pt;}
.he{height:19.040000pt;}
.h15{height:24.300508pt;}
.h3{height:26.880000pt;}
.h8{height:28.687500pt;}
.h11{height:30.404801pt;}
.h12{height:30.499817pt;}
.ha{height:43.031250pt;}
.h9{height:44.687500pt;}
.h5{height:47.621250pt;}
.hf{height:52.785000pt;}
.h2{height:57.375000pt;}
.h7{height:59.392000pt;}
.hd{height:59.520000pt;}
.h1{height:67.128750pt;}
.h1a{height:72.512000pt;}
.hc{height:78.592000pt;}
.h13{height:182.300178pt;}
.h10{height:218.066717pt;}
.hb{height:220.506667pt;}
.h4{height:324.346667pt;}
.h0{height:1056.000000pt;}
.w5{width:39.360000pt;}
.w4{width:39.520000pt;}
.w6{width:127.315464pt;}
.w7{width:272.160781pt;}
.w3{width:716.133333pt;}
.w2{width:716.293333pt;}
.w8{width:741.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.600000pt;}
.x12{left:28.227982pt;}
.x11{left:36.883306pt;}
.x14{left:37.930735pt;}
.xb{left:39.520000pt;}
.x6{left:44.832000pt;}
.x1{left:47.999988pt;}
.x2{left:50.400000pt;}
.x13{left:55.516063pt;}
.x15{left:57.265455pt;}
.x16{left:60.673610pt;}
.x17{left:86.464161pt;}
.x10{left:88.180032pt;}
.x3{left:93.946667pt;}
.xe{left:95.829538pt;}
.x8{left:101.466667pt;}
.x7{left:103.226667pt;}
.xf{left:104.855434pt;}
.x1a{left:105.929965pt;}
.x18{left:119.693665pt;}
.x5{left:121.786667pt;}
.x19{left:123.265673pt;}
.x1b{left:142.463849pt;}
.x1c{left:143.419662pt;}
.x1d{left:174.947819pt;}
.x1e{left:175.930941pt;}
.x21{left:194.378121pt;}
.x1f{left:208.141821pt;}
.x20{left:212.046998pt;}
.x22{left:235.314204pt;}
.x23{left:236.392908pt;}
.x9{left:239.746667pt;}
.xc{left:292.866667pt;}
.xa{left:357.986667pt;}
.x24{left:607.333333pt;}
.xd{left:628.827007pt;}
}




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