
    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_b3481753aa79f4ad5b30fbc7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.856445;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_965bca025b27e480e04819d1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_22ef7708a4489c514de0d02b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_43436598603863986f181232.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.ls8{letter-spacing:-0.794880px;}
.ls9{letter-spacing:-0.596160px;}
.ls2{letter-spacing:-0.264960px;}
.lsc{letter-spacing:-0.132480px;}
.ls4{letter-spacing:-0.066240px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072864px;}
.ls0{letter-spacing:0.132480px;}
.ls7{letter-spacing:0.198720px;}
.ls5{letter-spacing:0.264960px;}
.lsa{letter-spacing:0.311328px;}
.ls6{letter-spacing:0.331200px;}
.ls1{letter-spacing:59.351040px;}
.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:-66.240000px;}
.ws4{word-spacing:-15.301440px;}
.ws1{word-spacing:-15.235200px;}
.ws6{word-spacing:-15.168960px;}
.ws3{word-spacing:-15.102720px;}
.ws2{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.904000px;}
.ws15{word-spacing:-14.837760px;}
.ws0{word-spacing:-14.705280px;}
.wsd{word-spacing:-0.728640px;}
.ws13{word-spacing:-0.529920px;}
.ws10{word-spacing:-0.331200px;}
.wsc{word-spacing:-0.132480px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.066240px;}
.wsf{word-spacing:0.132480px;}
.wsa{word-spacing:0.198720px;}
.wse{word-spacing:0.264960px;}
.ws9{word-spacing:0.397440px;}
.ws12{word-spacing:0.596160px;}
.ws11{word-spacing:0.794880px;}
.ws14{word-spacing:0.927360px;}
._1{margin-left:-1.722240px;}
._0{width:1.185696px;}
._2{width:848.998080px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:90.867600px;}
.y27{bottom:105.705360px;}
.y7d{bottom:108.000000px;}
.ye4{bottom:112.644000px;}
.ybe{bottom:122.240160px;}
.y4d{bottom:132.829920px;}
.ye3{bottom:135.149040px;}
.y26{bottom:139.537440px;}
.y7c{bottom:141.840000px;}
.ybd{bottom:144.016560px;}
.y4c{bottom:155.517120px;}
.ye2{bottom:156.925440px;}
.y25{bottom:161.131680px;}
.y7b{bottom:163.440000px;}
.ybc{bottom:165.792960px;}
.y4b{bottom:178.022160px;}
.ye1{bottom:179.612640px;}
.y24{bottom:183.818880px;}
.y7a{bottom:185.220000px;}
.ybb{bottom:187.569360px;}
.y4a{bottom:199.798560px;}
.ye0{bottom:201.206880px;}
.y23{bottom:206.506080px;}
.y79{bottom:207.009360px;}
.yba{bottom:209.163600px;}
.y49{bottom:222.485760px;}
.ydf{bottom:223.894080px;}
.y78{bottom:228.785760px;}
.y22{bottom:229.011120px;}
.yb9{bottom:230.940000px;}
.y48{bottom:244.990800px;}
.yde{bottom:246.581280px;}
.y77{bottom:250.380000px;}
.y21{bottom:250.787520px;}
.yb8{bottom:264.785760px;}
.y47{bottom:266.767200px;}
.ydd{bottom:269.086320px;}
.y20{bottom:273.474720px;}
.y76{bottom:284.220000px;}
.yb7{bottom:286.380000px;}
.ydc{bottom:290.862720px;}
.y1f{bottom:295.979760px;}
.y46{bottom:301.327920px;}
.yb6{bottom:308.176560px;}
.ydb{bottom:313.549920px;}
.y1e{bottom:317.756160px;}
.y75{bottom:317.880000px;}
.yb5{bottom:329.952960px;}
.y45{bottom:335.160000px;}
.yda{bottom:336.054960px;}
.y74{bottom:339.660000px;}
.yb4{bottom:351.729360px;}
.y1d{bottom:352.316880px;}
.yd9{bottom:358.742160px;}
.y73{bottom:361.440000px;}
.y44{bottom:368.820000px;}
.yb3{bottom:373.323600px;}
.yd8{bottom:380.518560px;}
.y72{bottom:383.040000px;}
.y9b{bottom:383.753520px;}
.y1c{bottom:386.148960px;}
.y43{bottom:390.600000px;}
.yb2{bottom:395.100000px;}
.yd7{bottom:403.023600px;}
.y71{bottom:404.820000px;}
.y42{bottom:412.380000px;}
.y9a{bottom:417.420000px;}
.y1b{bottom:419.815440px;}
.yd6{bottom:425.710800px;}
.y70{bottom:426.600000px;}
.yb1{bottom:428.940000px;}
.y41{bottom:434.160000px;}
.y1a{bottom:441.591840px;}
.yd5{bottom:447.487200px;}
.y99{bottom:451.260000px;}
.y6f{bottom:460.263600px;}
.yb0{bottom:462.600000px;}
.y40{bottom:467.820000px;}
.y98{bottom:472.860000px;}
.y19{bottom:475.258320px;}
.y6e{bottom:482.040000px;}
.yd4{bottom:482.047920px;}
.yaf{bottom:484.380000px;}
.y97{bottom:495.540000px;}
.y3f{bottom:501.480000px;}
.y6d{bottom:503.836560px;}
.yae{bottom:506.160000px;}
.y18{bottom:509.090400px;}
.yd3{bottom:515.880000px;}
.y96{bottom:517.320000px;}
.y3e{bottom:523.260000px;}
.y6c{bottom:525.612960px;}
.yad{bottom:527.760000px;}
.y17{bottom:530.866800px;}
.y95{bottom:539.820000px;}
.y3d{bottom:545.043600px;}
.y6b{bottom:547.207200px;}
.yac{bottom:549.540000px;}
.y16{bottom:552.461040px;}
.y94{bottom:561.600000px;}
.y3c{bottom:566.820000px;}
.y6a{bottom:568.983600px;}
.yd2{bottom:571.320000px;}
.yab{bottom:571.340160px;}
.y93{bottom:584.280000px;}
.y15{bottom:586.293120px;}
.y69{bottom:590.760000px;}
.yd1{bottom:593.100000px;}
.yaa{bottom:593.116560px;}
.y3b{bottom:600.480000px;}
.y92{bottom:605.880000px;}
.ya9{bottom:614.710800px;}
.yd0{bottom:614.716560px;}
.y14{bottom:619.959600px;}
.y68{bottom:624.420000px;}
.y91{bottom:628.516080px;}
.y3a{bottom:634.140000px;}
.ya8{bottom:636.487200px;}
.ycf{bottom:636.492960px;}
.y13{bottom:641.736000px;}
.y90{bottom:650.292480px;}
.y39{bottom:655.920000px;}
.y67{bottom:658.260000px;}
.ya7{bottom:658.263600px;}
.yce{bottom:658.269360px;}
.y12{bottom:663.512400px;}
.y8f{bottom:672.797520px;}
.y38{bottom:677.703600px;}
.y66{bottom:680.040000px;}
.ycd{bottom:680.045760px;}
.y11{bottom:685.106640px;}
.y8e{bottom:695.484720px;}
.y37{bottom:699.480000px;}
.ycc{bottom:701.640000px;}
.y65{bottom:701.656560px;}
.y10{bottom:706.883040px;}
.ya6{bottom:713.700000px;}
.y8d{bottom:718.171920px;}
.y36{bottom:721.087200px;}
.y64{bottom:723.432960px;}
.ycb{bottom:735.480000px;}
.y8c{bottom:739.766160px;}
.yf{bottom:740.715120px;}
.y35{bottom:742.863600px;}
.y63{bottom:745.209360px;}
.ya5{bottom:747.360000px;}
.y8b{bottom:762.453360px;}
.y34{bottom:764.640000px;}
.y62{bottom:766.985760px;}
.ya4{bottom:769.140000px;}
.ye{bottom:774.381600px;}
.y8a{bottom:785.140560px;}
.y61{bottom:788.580000px;}
.ya3{bottom:790.920000px;}
.yd{bottom:796.158000px;}
.y33{bottom:798.300000px;}
.y89{bottom:807.645600px;}
.ya2{bottom:812.700000px;}
.yc{bottom:817.934400px;}
.y60{bottom:822.420000px;}
.y88{bottom:829.422000px;}
.y32{bottom:832.140000px;}
.ya1{bottom:834.300000px;}
.yca{bottom:834.316560px;}
.yb{bottom:839.528640px;}
.yf1{bottom:840.240000px;}
.y87{bottom:852.109200px;}
.y31{bottom:853.920000px;}
.y5f{bottom:856.080000px;}
.yc9{bottom:856.092960px;}
.ya{bottom:873.360720px;}
.yf0{bottom:873.900000px;}
.y86{bottom:874.614240px;}
.y30{bottom:875.527200px;}
.y5e{bottom:877.860000px;}
.yc8{bottom:877.869360px;}
.ya0{bottom:877.880160px;}
.y85{bottom:896.390640px;}
.yef{bottom:896.580000px;}
.y2f{bottom:897.303600px;}
.y5d{bottom:899.640000px;}
.yc7{bottom:899.645760px;}
.y9f{bottom:899.656560px;}
.y9{bottom:907.027200px;}
.yee{bottom:918.360000px;}
.y2e{bottom:919.080000px;}
.y5c{bottom:921.240000px;}
.y9e{bottom:921.250800px;}
.y8{bottom:928.803600px;}
.y84{bottom:931.133520px;}
.yed{bottom:940.860000px;}
.y5b{bottom:943.020000px;}
.y9d{bottom:943.027200px;}
.y55{bottom:949.313520px;}
.y7{bottom:950.580000px;}
.y2d{bottom:952.740000px;}
.yc6{bottom:955.080000px;}
.yec{bottom:962.640000px;}
.y5a{bottom:964.800000px;}
.y9c{bottom:964.803600px;}
.y54{bottom:982.980000px;}
.y6{bottom:984.246480px;}
.yeb{bottom:985.320000px;}
.y59{bottom:986.580000px;}
.y2c{bottom:986.585760px;}
.yc5{bottom:988.740000px;}
.y83{bottom:998.460000px;}
.yea{bottom:1006.920000px;}
.y2b{bottom:1008.180000px;}
.y58{bottom:1008.190800px;}
.yc4{bottom:1010.520000px;}
.y53{bottom:1016.820000px;}
.y5{bottom:1018.078560px;}
.y82{bottom:1020.240000px;}
.ye9{bottom:1029.600000px;}
.y2a{bottom:1029.960000px;}
.y57{bottom:1029.967200px;}
.yc3{bottom:1032.300000px;}
.y81{bottom:1042.020000px;}
.y52{bottom:1050.480000px;}
.ye8{bottom:1051.380000px;}
.y29{bottom:1051.740000px;}
.y56{bottom:1051.743600px;}
.y4{bottom:1051.745040px;}
.yc2{bottom:1054.080000px;}
.y80{bottom:1063.809360px;}
.y51{bottom:1073.160000px;}
.y28{bottom:1073.520000px;}
.ye7{bottom:1074.062160px;}
.yc1{bottom:1075.680000px;}
.y7f{bottom:1085.403600px;}
.y3{bottom:1085.411520px;}
.ye6{bottom:1095.656400px;}
.y50{bottom:1095.660000px;}
.yc0{bottom:1097.460000px;}
.y7e{bottom:1107.180000px;}
.y2{bottom:1107.187920px;}
.y4f{bottom:1118.343600px;}
.ybf{bottom:1119.240000px;}
.y4e{bottom:1140.120000px;}
.y1{bottom:1141.020000px;}
.h2{height:44.925469px;}
.h3{height:45.895781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.200000px;}
.x2{left:133.192800px;}
.x3{left:160.202160px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.706560pt;}
.ls9{letter-spacing:-0.529920pt;}
.ls2{letter-spacing:-0.235520pt;}
.lsc{letter-spacing:-0.117760pt;}
.ls4{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064768pt;}
.ls0{letter-spacing:0.117760pt;}
.ls7{letter-spacing:0.176640pt;}
.ls5{letter-spacing:0.235520pt;}
.lsa{letter-spacing:0.276736pt;}
.ls6{letter-spacing:0.294400pt;}
.ls1{letter-spacing:52.756480pt;}
.ws7{word-spacing:-58.880000pt;}
.ws4{word-spacing:-13.601280pt;}
.ws1{word-spacing:-13.542400pt;}
.ws6{word-spacing:-13.483520pt;}
.ws3{word-spacing:-13.424640pt;}
.ws2{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.248000pt;}
.ws15{word-spacing:-13.189120pt;}
.ws0{word-spacing:-13.071360pt;}
.wsd{word-spacing:-0.647680pt;}
.ws13{word-spacing:-0.471040pt;}
.ws10{word-spacing:-0.294400pt;}
.wsc{word-spacing:-0.117760pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.058880pt;}
.wsf{word-spacing:0.117760pt;}
.wsa{word-spacing:0.176640pt;}
.wse{word-spacing:0.235520pt;}
.ws9{word-spacing:0.353280pt;}
.ws12{word-spacing:0.529920pt;}
.ws11{word-spacing:0.706560pt;}
.ws14{word-spacing:0.824320pt;}
._1{margin-left:-1.530880pt;}
._0{width:1.053952pt;}
._2{width:754.664960pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:80.771200pt;}
.y27{bottom:93.960320pt;}
.y7d{bottom:96.000000pt;}
.ye4{bottom:100.128000pt;}
.ybe{bottom:108.657920pt;}
.y4d{bottom:118.071040pt;}
.ye3{bottom:120.132480pt;}
.y26{bottom:124.033280pt;}
.y7c{bottom:126.080000pt;}
.ybd{bottom:128.014720pt;}
.y4c{bottom:138.237440pt;}
.ye2{bottom:139.489280pt;}
.y25{bottom:143.228160pt;}
.y7b{bottom:145.280000pt;}
.ybc{bottom:147.371520pt;}
.y4b{bottom:158.241920pt;}
.ye1{bottom:159.655680pt;}
.y24{bottom:163.394560pt;}
.y7a{bottom:164.640000pt;}
.ybb{bottom:166.728320pt;}
.y4a{bottom:177.598720pt;}
.ye0{bottom:178.850560pt;}
.y23{bottom:183.560960pt;}
.y79{bottom:184.008320pt;}
.yba{bottom:185.923200pt;}
.y49{bottom:197.765120pt;}
.ydf{bottom:199.016960pt;}
.y78{bottom:203.365120pt;}
.y22{bottom:203.565440pt;}
.yb9{bottom:205.280000pt;}
.y48{bottom:217.769600pt;}
.yde{bottom:219.183360pt;}
.y77{bottom:222.560000pt;}
.y21{bottom:222.922240pt;}
.yb8{bottom:235.365120pt;}
.y47{bottom:237.126400pt;}
.ydd{bottom:239.187840pt;}
.y20{bottom:243.088640pt;}
.y76{bottom:252.640000pt;}
.yb7{bottom:254.560000pt;}
.ydc{bottom:258.544640pt;}
.y1f{bottom:263.093120pt;}
.y46{bottom:267.847040pt;}
.yb6{bottom:273.934720pt;}
.ydb{bottom:278.711040pt;}
.y1e{bottom:282.449920pt;}
.y75{bottom:282.560000pt;}
.yb5{bottom:293.291520pt;}
.y45{bottom:297.920000pt;}
.yda{bottom:298.715520pt;}
.y74{bottom:301.920000pt;}
.yb4{bottom:312.648320pt;}
.y1d{bottom:313.170560pt;}
.yd9{bottom:318.881920pt;}
.y73{bottom:321.280000pt;}
.y44{bottom:327.840000pt;}
.yb3{bottom:331.843200pt;}
.yd8{bottom:338.238720pt;}
.y72{bottom:340.480000pt;}
.y9b{bottom:341.114240pt;}
.y1c{bottom:343.243520pt;}
.y43{bottom:347.200000pt;}
.yb2{bottom:351.200000pt;}
.yd7{bottom:358.243200pt;}
.y71{bottom:359.840000pt;}
.y42{bottom:366.560000pt;}
.y9a{bottom:371.040000pt;}
.y1b{bottom:373.169280pt;}
.yd6{bottom:378.409600pt;}
.y70{bottom:379.200000pt;}
.yb1{bottom:381.280000pt;}
.y41{bottom:385.920000pt;}
.y1a{bottom:392.526080pt;}
.yd5{bottom:397.766400pt;}
.y99{bottom:401.120000pt;}
.y6f{bottom:409.123200pt;}
.yb0{bottom:411.200000pt;}
.y40{bottom:415.840000pt;}
.y98{bottom:420.320000pt;}
.y19{bottom:422.451840pt;}
.y6e{bottom:428.480000pt;}
.yd4{bottom:428.487040pt;}
.yaf{bottom:430.560000pt;}
.y97{bottom:440.480000pt;}
.y3f{bottom:445.760000pt;}
.y6d{bottom:447.854720pt;}
.yae{bottom:449.920000pt;}
.y18{bottom:452.524800pt;}
.yd3{bottom:458.560000pt;}
.y96{bottom:459.840000pt;}
.y3e{bottom:465.120000pt;}
.y6c{bottom:467.211520pt;}
.yad{bottom:469.120000pt;}
.y17{bottom:471.881600pt;}
.y95{bottom:479.840000pt;}
.y3d{bottom:484.483200pt;}
.y6b{bottom:486.406400pt;}
.yac{bottom:488.480000pt;}
.y16{bottom:491.076480pt;}
.y94{bottom:499.200000pt;}
.y3c{bottom:503.840000pt;}
.y6a{bottom:505.763200pt;}
.yd2{bottom:507.840000pt;}
.yab{bottom:507.857920pt;}
.y93{bottom:519.360000pt;}
.y15{bottom:521.149440pt;}
.y69{bottom:525.120000pt;}
.yd1{bottom:527.200000pt;}
.yaa{bottom:527.214720pt;}
.y3b{bottom:533.760000pt;}
.y92{bottom:538.560000pt;}
.ya9{bottom:546.409600pt;}
.yd0{bottom:546.414720pt;}
.y14{bottom:551.075200pt;}
.y68{bottom:555.040000pt;}
.y91{bottom:558.680960pt;}
.y3a{bottom:563.680000pt;}
.ya8{bottom:565.766400pt;}
.ycf{bottom:565.771520pt;}
.y13{bottom:570.432000pt;}
.y90{bottom:578.037760pt;}
.y39{bottom:583.040000pt;}
.y67{bottom:585.120000pt;}
.ya7{bottom:585.123200pt;}
.yce{bottom:585.128320pt;}
.y12{bottom:589.788800pt;}
.y8f{bottom:598.042240pt;}
.y38{bottom:602.403200pt;}
.y66{bottom:604.480000pt;}
.ycd{bottom:604.485120pt;}
.y11{bottom:608.983680pt;}
.y8e{bottom:618.208640pt;}
.y37{bottom:621.760000pt;}
.ycc{bottom:623.680000pt;}
.y65{bottom:623.694720pt;}
.y10{bottom:628.340480pt;}
.ya6{bottom:634.400000pt;}
.y8d{bottom:638.375040pt;}
.y36{bottom:640.966400pt;}
.y64{bottom:643.051520pt;}
.ycb{bottom:653.760000pt;}
.y8c{bottom:657.569920pt;}
.yf{bottom:658.413440pt;}
.y35{bottom:660.323200pt;}
.y63{bottom:662.408320pt;}
.ya5{bottom:664.320000pt;}
.y8b{bottom:677.736320pt;}
.y34{bottom:679.680000pt;}
.y62{bottom:681.765120pt;}
.ya4{bottom:683.680000pt;}
.ye{bottom:688.339200pt;}
.y8a{bottom:697.902720pt;}
.y61{bottom:700.960000pt;}
.ya3{bottom:703.040000pt;}
.yd{bottom:707.696000pt;}
.y33{bottom:709.600000pt;}
.y89{bottom:717.907200pt;}
.ya2{bottom:722.400000pt;}
.yc{bottom:727.052800pt;}
.y60{bottom:731.040000pt;}
.y88{bottom:737.264000pt;}
.y32{bottom:739.680000pt;}
.ya1{bottom:741.600000pt;}
.yca{bottom:741.614720pt;}
.yb{bottom:746.247680pt;}
.yf1{bottom:746.880000pt;}
.y87{bottom:757.430400pt;}
.y31{bottom:759.040000pt;}
.y5f{bottom:760.960000pt;}
.yc9{bottom:760.971520pt;}
.ya{bottom:776.320640pt;}
.yf0{bottom:776.800000pt;}
.y86{bottom:777.434880pt;}
.y30{bottom:778.246400pt;}
.y5e{bottom:780.320000pt;}
.yc8{bottom:780.328320pt;}
.ya0{bottom:780.337920pt;}
.y85{bottom:796.791680pt;}
.yef{bottom:796.960000pt;}
.y2f{bottom:797.603200pt;}
.y5d{bottom:799.680000pt;}
.yc7{bottom:799.685120pt;}
.y9f{bottom:799.694720pt;}
.y9{bottom:806.246400pt;}
.yee{bottom:816.320000pt;}
.y2e{bottom:816.960000pt;}
.y5c{bottom:818.880000pt;}
.y9e{bottom:818.889600pt;}
.y8{bottom:825.603200pt;}
.y84{bottom:827.674240pt;}
.yed{bottom:836.320000pt;}
.y5b{bottom:838.240000pt;}
.y9d{bottom:838.246400pt;}
.y55{bottom:843.834240pt;}
.y7{bottom:844.960000pt;}
.y2d{bottom:846.880000pt;}
.yc6{bottom:848.960000pt;}
.yec{bottom:855.680000pt;}
.y5a{bottom:857.600000pt;}
.y9c{bottom:857.603200pt;}
.y54{bottom:873.760000pt;}
.y6{bottom:874.885760pt;}
.yeb{bottom:875.840000pt;}
.y59{bottom:876.960000pt;}
.y2c{bottom:876.965120pt;}
.yc5{bottom:878.880000pt;}
.y83{bottom:887.520000pt;}
.yea{bottom:895.040000pt;}
.y2b{bottom:896.160000pt;}
.y58{bottom:896.169600pt;}
.yc4{bottom:898.240000pt;}
.y53{bottom:903.840000pt;}
.y5{bottom:904.958720pt;}
.y82{bottom:906.880000pt;}
.ye9{bottom:915.200000pt;}
.y2a{bottom:915.520000pt;}
.y57{bottom:915.526400pt;}
.yc3{bottom:917.600000pt;}
.y81{bottom:926.240000pt;}
.y52{bottom:933.760000pt;}
.ye8{bottom:934.560000pt;}
.y29{bottom:934.880000pt;}
.y56{bottom:934.883200pt;}
.y4{bottom:934.884480pt;}
.yc2{bottom:936.960000pt;}
.y80{bottom:945.608320pt;}
.y51{bottom:953.920000pt;}
.y28{bottom:954.240000pt;}
.ye7{bottom:954.721920pt;}
.yc1{bottom:956.160000pt;}
.y7f{bottom:964.803200pt;}
.y3{bottom:964.810240pt;}
.ye6{bottom:973.916800pt;}
.y50{bottom:973.920000pt;}
.yc0{bottom:975.520000pt;}
.y7e{bottom:984.160000pt;}
.y2{bottom:984.167040pt;}
.y4f{bottom:994.083200pt;}
.ybf{bottom:994.880000pt;}
.y4e{bottom:1013.440000pt;}
.y1{bottom:1014.240000pt;}
.h2{height:39.933750pt;}
.h3{height:40.796250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.400000pt;}
.x2{left:118.393600pt;}
.x3{left:142.401920pt;}
}




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