
    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_7eef0b242d7753c24b37f07d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_8dc949ec93843bab2687c67e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_5c3dc3fa60fbc58acebec056.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_ac306dc8973968502af49074.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912500;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_4866cf64276e0041f7fa28ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_31c9c504e98c4ef085ae7650.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.820801;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_cbe836b6a69b53c212b4be4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls16{letter-spacing:-5.904000px;}
.ls1{letter-spacing:-5.760000px;}
.ls15{letter-spacing:-3.585600px;}
.ls17{letter-spacing:-1.553112px;}
.ls18{letter-spacing:-1.164834px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.210000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.367200px;}
.lse{letter-spacing:0.381600px;}
.ls3{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.080000px;}
.ls7{letter-spacing:5.184000px;}
.ls5{letter-spacing:6.480000px;}
.ls9{letter-spacing:6.544800px;}
.ls6{letter-spacing:6.552000px;}
.ls13{letter-spacing:9.072000px;}
.ls14{letter-spacing:9.144000px;}
.lsf{letter-spacing:11.858400px;}
.lsd{letter-spacing:11.952000px;}
.ls11{letter-spacing:13.176000px;}
.ls10{letter-spacing:13.226400px;}
.ls12{letter-spacing:13.248000px;}
.lsb{letter-spacing:13.320000px;}
.lsa{letter-spacing:13.392000px;}
.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;}
}
.ws10{word-spacing:-81.144000px;}
.wsf{word-spacing:-72.381600px;}
.wsc{word-spacing:-72.367200px;}
.wsb{word-spacing:-72.360000px;}
.ws0{word-spacing:-72.000000px;}
.ws6{word-spacing:-60.000000px;}
.wse{word-spacing:-58.752000px;}
.wsd{word-spacing:-58.680000px;}
.ws8{word-spacing:-54.000000px;}
.ws5{word-spacing:-47.448000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-12.738000px;}
.ws3{word-spacing:-10.494000px;}
.ws11{word-spacing:-8.940888px;}
.wsa{word-spacing:-8.745000px;}
.ws7{word-spacing:-7.870500px;}
.ws12{word-spacing:-6.705666px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:3.441600px;}
._13{margin-left:-18.296400px;}
._14{margin-left:-8.784000px;}
._12{margin-left:-7.764000px;}
._2{margin-left:-6.132000px;}
._11{margin-left:-4.515600px;}
._3{margin-left:-3.504000px;}
._1{margin-left:-2.040000px;}
._0{margin-left:-1.008000px;}
._4{width:1.320000px;}
._5{width:3.168000px;}
._6{width:5.112000px;}
._8{width:6.854400px;}
._e{width:7.974600px;}
._b{width:9.108000px;}
._c{width:10.332000px;}
._d{width:12.132000px;}
._16{width:13.248000px;}
._15{width:14.414400px;}
._7{width:15.768000px;}
._f{width:19.144800px;}
._a{width:28.123200px;}
._9{width:29.296800px;}
._10{width:40.500000px;}
.fc2{color:rgb(128,130,133);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs4{font-size:41.976000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:127.558950px;}
.y6b{bottom:127.559100px;}
.y3f{bottom:132.054450px;}
.y3e{bottom:143.758950px;}
.y6a{bottom:148.254600px;}
.yc{bottom:160.602600px;}
.y3d{bottom:164.454450px;}
.y69{bottom:164.454600px;}
.y89{bottom:176.158950px;}
.y3c{bottom:180.654450px;}
.y68{bottom:180.654600px;}
.yb{bottom:183.102600px;}
.y3b{bottom:192.358950px;}
.y88{bottom:196.854450px;}
.ya{bottom:205.602600px;}
.y3a{bottom:208.558950px;}
.y39{bottom:224.758950px;}
.y9{bottom:228.102600px;}
.y38{bottom:240.958950px;}
.y67{bottom:243.359400px;}
.y8{bottom:250.602600px;}
.y37{bottom:257.158950px;}
.y66{bottom:265.859400px;}
.y7{bottom:273.102600px;}
.y36{bottom:277.854450px;}
.y65{bottom:288.359400px;}
.y35{bottom:294.054450px;}
.y6{bottom:295.602600px;}
.y34{bottom:310.254450px;}
.y64{bottom:310.859400px;}
.y5{bottom:318.102600px;}
.y63{bottom:333.359400px;}
.y62{bottom:355.859400px;}
.y61{bottom:378.359400px;}
.y33{bottom:380.761800px;}
.y32{bottom:400.261800px;}
.y60{bottom:400.859400px;}
.y31{bottom:419.761800px;}
.y5f{bottom:423.359400px;}
.y30{bottom:439.261800px;}
.y5e{bottom:445.859400px;}
.y5d{bottom:468.359400px;}
.y2f{bottom:471.517650px;}
.y5c{bottom:490.859400px;}
.y2e{bottom:494.017650px;}
.y5b{bottom:513.359400px;}
.y2d{bottom:516.517650px;}
.y87{bottom:525.523350px;}
.y5a{bottom:535.859400px;}
.y2c{bottom:539.017650px;}
.y86{bottom:548.023350px;}
.y59{bottom:558.359400px;}
.y2b{bottom:561.517650px;}
.y85{bottom:570.523350px;}
.y58{bottom:580.859400px;}
.y2a{bottom:584.017650px;}
.y84{bottom:593.023350px;}
.y57{bottom:603.359400px;}
.y29{bottom:606.517650px;}
.y83{bottom:615.523350px;}
.y56{bottom:625.859400px;}
.y28{bottom:629.017650px;}
.y55{bottom:648.359400px;}
.y82{bottom:650.779350px;}
.y27{bottom:651.517650px;}
.y81{bottom:670.279350px;}
.y54{bottom:670.859400px;}
.y26{bottom:674.017650px;}
.y80{bottom:689.779350px;}
.y53{bottom:693.359400px;}
.y25{bottom:696.517650px;}
.y7f{bottom:709.279350px;}
.y52{bottom:715.859400px;}
.y24{bottom:719.017650px;}
.y7e{bottom:728.779350px;}
.y51{bottom:738.359400px;}
.y23{bottom:741.517650px;}
.y7d{bottom:748.279350px;}
.y50{bottom:760.859400px;}
.y22{bottom:764.017650px;}
.y7c{bottom:767.779350px;}
.y4f{bottom:783.359400px;}
.y21{bottom:786.517650px;}
.y7b{bottom:787.279350px;}
.y4e{bottom:805.859400px;}
.y7a{bottom:806.779350px;}
.y20{bottom:809.017650px;}
.y79{bottom:826.279350px;}
.y4d{bottom:828.359400px;}
.y1f{bottom:831.517650px;}
.y78{bottom:845.779350px;}
.y4c{bottom:850.859400px;}
.y1e{bottom:854.017650px;}
.y77{bottom:865.279350px;}
.y4b{bottom:873.359400px;}
.y1d{bottom:876.517650px;}
.y76{bottom:884.779350px;}
.y4{bottom:893.358600px;}
.y1c{bottom:899.017650px;}
.y75{bottom:904.279350px;}
.y4a{bottom:908.615400px;}
.y1b{bottom:921.517650px;}
.y3{bottom:923.358600px;}
.y74{bottom:923.779350px;}
.y49{bottom:928.115400px;}
.y73{bottom:943.279350px;}
.y1a{bottom:944.017650px;}
.y48{bottom:947.615400px;}
.y2{bottom:953.358600px;}
.y72{bottom:962.779350px;}
.y19{bottom:966.517650px;}
.y47{bottom:967.115400px;}
.y71{bottom:982.279350px;}
.y46{bottom:986.615400px;}
.y18{bottom:989.017650px;}
.y70{bottom:1001.779350px;}
.y45{bottom:1006.115400px;}
.y17{bottom:1011.517650px;}
.y1{bottom:1018.614600px;}
.y44{bottom:1025.615400px;}
.y16{bottom:1034.017650px;}
.y6f{bottom:1034.035200px;}
.y43{bottom:1045.115400px;}
.y15{bottom:1056.517650px;}
.y6e{bottom:1056.535200px;}
.y42{bottom:1064.615400px;}
.y14{bottom:1079.017650px;}
.y6d{bottom:1079.035200px;}
.y41{bottom:1084.115400px;}
.y13{bottom:1101.517650px;}
.y6c{bottom:1101.535200px;}
.y40{bottom:1103.615400px;}
.y11{bottom:1116.352350px;}
.y10{bottom:1136.152350px;}
.yf{bottom:1155.952350px;}
.y12{bottom:1166.275950px;}
.ye{bottom:1175.752350px;}
.yd{bottom:1195.552350px;}
.h8{height:29.399836px;}
.h9{height:47.381836px;}
.ha{height:47.513672px;}
.h5{height:48.015000px;}
.h7{height:52.646484px;}
.h4{height:63.175781px;}
.h2{height:69.984000px;}
.h6{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.559100px;}
.xb{left:148.818900px;}
.x3{left:217.423800px;}
.x2{left:277.693800px;}
.x4{left:306.673800px;}
.x1{left:386.562450px;}
.x6{left:485.675850px;}
.x7{left:611.455350px;}
.xa{left:641.551350px;}
.x8{left:649.916850px;}
.x9{left:703.822350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls16{letter-spacing:-5.248000pt;}
.ls1{letter-spacing:-5.120000pt;}
.ls15{letter-spacing:-3.187200pt;}
.ls17{letter-spacing:-1.380544pt;}
.ls18{letter-spacing:-1.035408pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.186667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.326400pt;}
.lse{letter-spacing:0.339200pt;}
.ls3{letter-spacing:0.896000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls7{letter-spacing:4.608000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls9{letter-spacing:5.817600pt;}
.ls6{letter-spacing:5.824000pt;}
.ls13{letter-spacing:8.064000pt;}
.ls14{letter-spacing:8.128000pt;}
.lsf{letter-spacing:10.540800pt;}
.lsd{letter-spacing:10.624000pt;}
.ls11{letter-spacing:11.712000pt;}
.ls10{letter-spacing:11.756800pt;}
.ls12{letter-spacing:11.776000pt;}
.lsb{letter-spacing:11.840000pt;}
.lsa{letter-spacing:11.904000pt;}
.ws10{word-spacing:-72.128000pt;}
.wsf{word-spacing:-64.339200pt;}
.wsc{word-spacing:-64.326400pt;}
.wsb{word-spacing:-64.320000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.333333pt;}
.wse{word-spacing:-52.224000pt;}
.wsd{word-spacing:-52.160000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws5{word-spacing:-42.176000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-11.322667pt;}
.ws3{word-spacing:-9.328000pt;}
.ws11{word-spacing:-7.947456pt;}
.wsa{word-spacing:-7.773333pt;}
.ws7{word-spacing:-6.996000pt;}
.ws12{word-spacing:-5.960592pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:3.059200pt;}
._13{margin-left:-16.263467pt;}
._14{margin-left:-7.808000pt;}
._12{margin-left:-6.901333pt;}
._2{margin-left:-5.450667pt;}
._11{margin-left:-4.013867pt;}
._3{margin-left:-3.114667pt;}
._1{margin-left:-1.813333pt;}
._0{margin-left:-0.896000pt;}
._4{width:1.173333pt;}
._5{width:2.816000pt;}
._6{width:4.544000pt;}
._8{width:6.092800pt;}
._e{width:7.088533pt;}
._b{width:8.096000pt;}
._c{width:9.184000pt;}
._d{width:10.784000pt;}
._16{width:11.776000pt;}
._15{width:12.812800pt;}
._7{width:14.016000pt;}
._f{width:17.017600pt;}
._a{width:24.998400pt;}
._9{width:26.041600pt;}
._10{width:36.000000pt;}
.fs6{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs4{font-size:37.312000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:113.385733pt;}
.y6b{bottom:113.385867pt;}
.y3f{bottom:117.381733pt;}
.y3e{bottom:127.785733pt;}
.y6a{bottom:131.781867pt;}
.yc{bottom:142.757867pt;}
.y3d{bottom:146.181733pt;}
.y69{bottom:146.181867pt;}
.y89{bottom:156.585733pt;}
.y3c{bottom:160.581733pt;}
.y68{bottom:160.581867pt;}
.yb{bottom:162.757867pt;}
.y3b{bottom:170.985733pt;}
.y88{bottom:174.981733pt;}
.ya{bottom:182.757867pt;}
.y3a{bottom:185.385733pt;}
.y39{bottom:199.785733pt;}
.y9{bottom:202.757867pt;}
.y38{bottom:214.185733pt;}
.y67{bottom:216.319467pt;}
.y8{bottom:222.757867pt;}
.y37{bottom:228.585733pt;}
.y66{bottom:236.319467pt;}
.y7{bottom:242.757867pt;}
.y36{bottom:246.981733pt;}
.y65{bottom:256.319467pt;}
.y35{bottom:261.381733pt;}
.y6{bottom:262.757867pt;}
.y34{bottom:275.781733pt;}
.y64{bottom:276.319467pt;}
.y5{bottom:282.757867pt;}
.y63{bottom:296.319467pt;}
.y62{bottom:316.319467pt;}
.y61{bottom:336.319467pt;}
.y33{bottom:338.454933pt;}
.y32{bottom:355.788267pt;}
.y60{bottom:356.319467pt;}
.y31{bottom:373.121600pt;}
.y5f{bottom:376.319467pt;}
.y30{bottom:390.454933pt;}
.y5e{bottom:396.319467pt;}
.y5d{bottom:416.319467pt;}
.y2f{bottom:419.126800pt;}
.y5c{bottom:436.319467pt;}
.y2e{bottom:439.126800pt;}
.y5b{bottom:456.319467pt;}
.y2d{bottom:459.126800pt;}
.y87{bottom:467.131867pt;}
.y5a{bottom:476.319467pt;}
.y2c{bottom:479.126800pt;}
.y86{bottom:487.131867pt;}
.y59{bottom:496.319467pt;}
.y2b{bottom:499.126800pt;}
.y85{bottom:507.131867pt;}
.y58{bottom:516.319467pt;}
.y2a{bottom:519.126800pt;}
.y84{bottom:527.131867pt;}
.y57{bottom:536.319467pt;}
.y29{bottom:539.126800pt;}
.y83{bottom:547.131867pt;}
.y56{bottom:556.319467pt;}
.y28{bottom:559.126800pt;}
.y55{bottom:576.319467pt;}
.y82{bottom:578.470533pt;}
.y27{bottom:579.126800pt;}
.y81{bottom:595.803867pt;}
.y54{bottom:596.319467pt;}
.y26{bottom:599.126800pt;}
.y80{bottom:613.137200pt;}
.y53{bottom:616.319467pt;}
.y25{bottom:619.126800pt;}
.y7f{bottom:630.470533pt;}
.y52{bottom:636.319467pt;}
.y24{bottom:639.126800pt;}
.y7e{bottom:647.803867pt;}
.y51{bottom:656.319467pt;}
.y23{bottom:659.126800pt;}
.y7d{bottom:665.137200pt;}
.y50{bottom:676.319467pt;}
.y22{bottom:679.126800pt;}
.y7c{bottom:682.470533pt;}
.y4f{bottom:696.319467pt;}
.y21{bottom:699.126800pt;}
.y7b{bottom:699.803867pt;}
.y4e{bottom:716.319467pt;}
.y7a{bottom:717.137200pt;}
.y20{bottom:719.126800pt;}
.y79{bottom:734.470533pt;}
.y4d{bottom:736.319467pt;}
.y1f{bottom:739.126800pt;}
.y78{bottom:751.803867pt;}
.y4c{bottom:756.319467pt;}
.y1e{bottom:759.126800pt;}
.y77{bottom:769.137200pt;}
.y4b{bottom:776.319467pt;}
.y1d{bottom:779.126800pt;}
.y76{bottom:786.470533pt;}
.y4{bottom:794.096533pt;}
.y1c{bottom:799.126800pt;}
.y75{bottom:803.803867pt;}
.y4a{bottom:807.658133pt;}
.y1b{bottom:819.126800pt;}
.y3{bottom:820.763200pt;}
.y74{bottom:821.137200pt;}
.y49{bottom:824.991467pt;}
.y73{bottom:838.470533pt;}
.y1a{bottom:839.126800pt;}
.y48{bottom:842.324800pt;}
.y2{bottom:847.429867pt;}
.y72{bottom:855.803867pt;}
.y19{bottom:859.126800pt;}
.y47{bottom:859.658133pt;}
.y71{bottom:873.137200pt;}
.y46{bottom:876.991467pt;}
.y18{bottom:879.126800pt;}
.y70{bottom:890.470533pt;}
.y45{bottom:894.324800pt;}
.y17{bottom:899.126800pt;}
.y1{bottom:905.435200pt;}
.y44{bottom:911.658133pt;}
.y16{bottom:919.126800pt;}
.y6f{bottom:919.142400pt;}
.y43{bottom:928.991467pt;}
.y15{bottom:939.126800pt;}
.y6e{bottom:939.142400pt;}
.y42{bottom:946.324800pt;}
.y14{bottom:959.126800pt;}
.y6d{bottom:959.142400pt;}
.y41{bottom:963.658133pt;}
.y13{bottom:979.126800pt;}
.y6c{bottom:979.142400pt;}
.y40{bottom:980.991467pt;}
.y11{bottom:992.313200pt;}
.y10{bottom:1009.913200pt;}
.yf{bottom:1027.513200pt;}
.y12{bottom:1036.689733pt;}
.ye{bottom:1045.113200pt;}
.yd{bottom:1062.713200pt;}
.h8{height:26.133188pt;}
.h9{height:42.117188pt;}
.ha{height:42.234375pt;}
.h5{height:42.680000pt;}
.h7{height:46.796875pt;}
.h4{height:56.156250pt;}
.h2{height:62.208000pt;}
.h6{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.385867pt;}
.xb{left:132.283467pt;}
.x3{left:193.265600pt;}
.x2{left:246.838933pt;}
.x4{left:272.598933pt;}
.x1{left:343.611067pt;}
.x6{left:431.711867pt;}
.x7{left:543.515867pt;}
.xa{left:570.267867pt;}
.x8{left:577.703867pt;}
.x9{left:625.619867pt;}
}




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