
    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_44ac567f7fdb7fde89e78f4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944336;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_62a67c24ab7e568aeffa5199.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.820312;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_75bd33f2d878a614edac8c6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.774902;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_c8947f114ec2785087d415a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_5f7aaf35deaf26364086e932.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_394ff4837139a27547797f4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_c2d3da6dbcfa41d8c5392084.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.348600px;}
.lsd{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006480px;}
.ls1{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.146880px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:6.624000px;}
.lsb{letter-spacing:10.944000px;}
.ls7{letter-spacing:12.240000px;}
.ls8{letter-spacing:33.984000px;}
.ls9{letter-spacing:38.304000px;}
.lsa{letter-spacing:46.224000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.566480px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-11.929200px;}
._0{margin-left:-1.090800px;}
._2{width:1.150560px;}
._9{width:2.450160px;}
._4{width:4.305600px;}
._3{width:5.829120px;}
._10{width:6.845760px;}
._8{width:8.346240px;}
._e{width:9.407520px;}
._7{width:10.849440px;}
._6{width:11.972160px;}
._5{width:13.181760px;}
._f{width:15.043680px;}
._11{width:16.061760px;}
._14{width:19.224000px;}
._c{width:20.468160px;}
._d{width:22.183440px;}
._17{width:23.400000px;}
._b{width:25.158720px;}
._a{width:26.297280px;}
._19{width:28.142640px;}
._12{width:29.232000px;}
._13{width:30.312000px;}
._15{width:31.610880px;}
._16{width:32.748480px;}
._1a{width:33.848640px;}
._18{width:37.728000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:56.340000px;}
.y4{bottom:56.520000px;}
.y3{bottom:76.356000px;}
.y4f{bottom:123.696000px;}
.y74{bottom:127.296000px;}
.y8c{bottom:128.736000px;}
.y4e{bottom:144.396000px;}
.y73{bottom:147.816000px;}
.y4d{bottom:165.090000px;}
.y8b{bottom:166.710000px;}
.y72{bottom:168.510000px;}
.y4c{bottom:185.790000px;}
.y71{bottom:189.210000px;}
.y8a{bottom:204.690000px;}
.y4b{bottom:206.490000px;}
.y70{bottom:209.910000px;}
.y89{bottom:223.590000px;}
.y4a{bottom:227.190000px;}
.y6f{bottom:230.610000px;}
.y88{bottom:242.670000px;}
.y49{bottom:247.890000px;}
.y6e{bottom:251.310000px;}
.y87{bottom:261.570000px;}
.y48{bottom:268.590000px;}
.y6d{bottom:272.010000px;}
.y86{bottom:280.650000px;}
.y47{bottom:289.290000px;}
.y6c{bottom:292.710000px;}
.y85{bottom:299.550000px;}
.y46{bottom:309.990000px;}
.y6b{bottom:313.410000px;}
.y84{bottom:318.450000px;}
.y45{bottom:330.690000px;}
.y6a{bottom:334.110000px;}
.y83{bottom:337.575000px;}
.y44{bottom:351.435000px;}
.y69{bottom:354.855000px;}
.y82{bottom:356.475000px;}
.y43{bottom:372.135000px;}
.y68{bottom:375.555000px;}
.y42{bottom:392.835000px;}
.y81{bottom:394.455000px;}
.y67{bottom:396.255000px;}
.y41{bottom:413.535000px;}
.y66{bottom:416.955000px;}
.y80{bottom:432.435000px;}
.y40{bottom:434.235000px;}
.y65{bottom:437.655000px;}
.y7f{bottom:451.335000px;}
.y3f{bottom:454.935000px;}
.y64{bottom:458.355000px;}
.y7e{bottom:470.415000px;}
.y3e{bottom:475.635000px;}
.y63{bottom:479.055000px;}
.y7d{bottom:489.315000px;}
.y3d{bottom:496.335000px;}
.y62{bottom:499.755000px;}
.y7c{bottom:508.395000px;}
.yad{bottom:513.435000px;}
.y3c{bottom:517.035000px;}
.y61{bottom:520.455000px;}
.y7b{bottom:527.295000px;}
.yac{bottom:532.335000px;}
.y3b{bottom:537.735000px;}
.y60{bottom:541.155000px;}
.y7a{bottom:546.195000px;}
.yab{bottom:551.235000px;}
.y3a{bottom:558.435000px;}
.y5f{bottom:561.855000px;}
.y79{bottom:565.275000px;}
.yaa{bottom:570.315000px;}
.y5e{bottom:578.595000px;}
.y39{bottom:579.135000px;}
.y78{bottom:584.175000px;}
.ya9{bottom:589.215000px;}
.y38{bottom:599.835000px;}
.y77{bottom:603.435000px;}
.ya8{bottom:608.325000px;}
.y37{bottom:620.565000px;}
.y76{bottom:624.165000px;}
.ya7{bottom:627.225000px;}
.y75{bottom:640.905000px;}
.y36{bottom:641.265000px;}
.ya6{bottom:646.125000px;}
.y35{bottom:661.965000px;}
.ya5{bottom:665.205000px;}
.y1b{bottom:671.685000px;}
.y34{bottom:682.665000px;}
.ya4{bottom:684.105000px;}
.y1a{bottom:690.585000px;}
.ya3{bottom:703.185000px;}
.y33{bottom:703.365000px;}
.y19{bottom:709.665000px;}
.ya2{bottom:722.085000px;}
.y32{bottom:724.065000px;}
.y18{bottom:728.565000px;}
.ya1{bottom:740.985000px;}
.y31{bottom:744.765000px;}
.y5d{bottom:746.565000px;}
.y17{bottom:747.645000px;}
.ya0{bottom:760.065000px;}
.y30{bottom:765.465000px;}
.y5c{bottom:765.825000px;}
.y16{bottom:766.545000px;}
.y9f{bottom:778.965000px;}
.y15{bottom:785.445000px;}
.y2f{bottom:786.165000px;}
.y5b{bottom:786.525000px;}
.y9e{bottom:798.045000px;}
.y14{bottom:804.525000px;}
.y2e{bottom:806.865000px;}
.y5a{bottom:807.225000px;}
.y9d{bottom:816.945000px;}
.y13{bottom:823.425000px;}
.y2d{bottom:827.565000px;}
.y59{bottom:827.925000px;}
.y9c{bottom:835.845000px;}
.y12{bottom:842.505000px;}
.y2c{bottom:848.265000px;}
.y58{bottom:848.625000px;}
.y9b{bottom:854.925000px;}
.y11{bottom:861.405000px;}
.y2b{bottom:868.965000px;}
.y57{bottom:869.325000px;}
.y9a{bottom:873.870000px;}
.y10{bottom:880.530000px;}
.y2a{bottom:889.710000px;}
.y56{bottom:890.070000px;}
.y99{bottom:892.950000px;}
.yf{bottom:899.430000px;}
.y29{bottom:910.410000px;}
.y55{bottom:910.770000px;}
.y98{bottom:911.850000px;}
.ye{bottom:918.330000px;}
.y97{bottom:930.930000px;}
.y28{bottom:931.110000px;}
.y54{bottom:931.470000px;}
.yd{bottom:940.830000px;}
.y96{bottom:949.830000px;}
.y27{bottom:951.810000px;}
.y53{bottom:952.170000px;}
.yc{bottom:961.530000px;}
.y95{bottom:968.730000px;}
.y26{bottom:972.510000px;}
.y52{bottom:972.870000px;}
.yb{bottom:981.870000px;}
.y94{bottom:987.810000px;}
.y51{bottom:989.610000px;}
.y25{bottom:993.210000px;}
.ya{bottom:1001.130000px;}
.y93{bottom:1006.710000px;}
.y24{bottom:1013.910000px;}
.y92{bottom:1025.790000px;}
.y9{bottom:1025.970000px;}
.y23{bottom:1034.610000px;}
.y91{bottom:1044.690000px;}
.y8{bottom:1053.870000px;}
.y22{bottom:1055.310000px;}
.y90{bottom:1063.590000px;}
.y21{bottom:1076.010000px;}
.y7{bottom:1081.590000px;}
.y8f{bottom:1082.670000px;}
.y20{bottom:1096.710000px;}
.y8e{bottom:1101.570000px;}
.y6{bottom:1109.310000px;}
.y1f{bottom:1117.410000px;}
.y8d{bottom:1120.650000px;}
.y5{bottom:1135.230000px;}
.y1e{bottom:1138.140000px;}
.y50{bottom:1139.580000px;}
.y2{bottom:1157.580000px;}
.y1{bottom:1182.420000px;}
.y1c{bottom:1193.220000px;}
.hc{height:46.251562px;}
.h3{height:48.774375px;}
.ha{height:50.273438px;}
.h4{height:50.326875px;}
.h2{height:63.180000px;}
.h7{height:65.010937px;}
.h8{height:66.757500px;}
.h9{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:74.004654px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:12.239987px;}
.xe{left:108.035987px;}
.x1{left:110.375987px;}
.x12{left:114.875987px;}
.x5{left:124.955987px;}
.x11{left:135.035987px;}
.x4{left:145.115987px;}
.x10{left:148.535987px;}
.xf{left:150.509987px;}
.x9{left:170.309987px;}
.xa{left:227.009987px;}
.x13{left:271.649987px;}
.x6{left:279.974987px;}
.x8{left:284.654987px;}
.xb{left:406.694987px;}
.x7{left:446.654987px;}
.x15{left:649.004987px;}
.x16{left:657.149987px;}
.x14{left:663.629987px;}
.x3{left:773.249987px;}
.xd{left:776.129987px;}
.x2{left:807.089987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.309867pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005760pt;}
.ls1{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.130560pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:5.888000pt;}
.lsb{letter-spacing:9.728000pt;}
.ls7{letter-spacing:10.880000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls9{letter-spacing:34.048000pt;}
.lsa{letter-spacing:41.088000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.725760pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-10.603733pt;}
._0{margin-left:-0.969600pt;}
._2{width:1.022720pt;}
._9{width:2.177920pt;}
._4{width:3.827200pt;}
._3{width:5.181440pt;}
._10{width:6.085120pt;}
._8{width:7.418880pt;}
._e{width:8.362240pt;}
._7{width:9.643947pt;}
._6{width:10.641920pt;}
._5{width:11.717120pt;}
._f{width:13.372160pt;}
._11{width:14.277120pt;}
._14{width:17.088000pt;}
._c{width:18.193920pt;}
._d{width:19.718613pt;}
._17{width:20.800000pt;}
._b{width:22.363307pt;}
._a{width:23.375360pt;}
._19{width:25.015680pt;}
._12{width:25.984000pt;}
._13{width:26.944000pt;}
._15{width:28.098560pt;}
._16{width:29.109760pt;}
._1a{width:30.087680pt;}
._18{width:33.536000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:50.080000pt;}
.y4{bottom:50.240000pt;}
.y3{bottom:67.872000pt;}
.y4f{bottom:109.952000pt;}
.y74{bottom:113.152000pt;}
.y8c{bottom:114.432000pt;}
.y4e{bottom:128.352000pt;}
.y73{bottom:131.392000pt;}
.y4d{bottom:146.746667pt;}
.y8b{bottom:148.186667pt;}
.y72{bottom:149.786667pt;}
.y4c{bottom:165.146667pt;}
.y71{bottom:168.186667pt;}
.y8a{bottom:181.946667pt;}
.y4b{bottom:183.546667pt;}
.y70{bottom:186.586667pt;}
.y89{bottom:198.746667pt;}
.y4a{bottom:201.946667pt;}
.y6f{bottom:204.986667pt;}
.y88{bottom:215.706667pt;}
.y49{bottom:220.346667pt;}
.y6e{bottom:223.386667pt;}
.y87{bottom:232.506667pt;}
.y48{bottom:238.746667pt;}
.y6d{bottom:241.786667pt;}
.y86{bottom:249.466667pt;}
.y47{bottom:257.146667pt;}
.y6c{bottom:260.186667pt;}
.y85{bottom:266.266667pt;}
.y46{bottom:275.546667pt;}
.y6b{bottom:278.586667pt;}
.y84{bottom:283.066667pt;}
.y45{bottom:293.946667pt;}
.y6a{bottom:296.986667pt;}
.y83{bottom:300.066667pt;}
.y44{bottom:312.386667pt;}
.y69{bottom:315.426667pt;}
.y82{bottom:316.866667pt;}
.y43{bottom:330.786667pt;}
.y68{bottom:333.826667pt;}
.y42{bottom:349.186667pt;}
.y81{bottom:350.626667pt;}
.y67{bottom:352.226667pt;}
.y41{bottom:367.586667pt;}
.y66{bottom:370.626667pt;}
.y80{bottom:384.386667pt;}
.y40{bottom:385.986667pt;}
.y65{bottom:389.026667pt;}
.y7f{bottom:401.186667pt;}
.y3f{bottom:404.386667pt;}
.y64{bottom:407.426667pt;}
.y7e{bottom:418.146667pt;}
.y3e{bottom:422.786667pt;}
.y63{bottom:425.826667pt;}
.y7d{bottom:434.946667pt;}
.y3d{bottom:441.186667pt;}
.y62{bottom:444.226667pt;}
.y7c{bottom:451.906667pt;}
.yad{bottom:456.386667pt;}
.y3c{bottom:459.586667pt;}
.y61{bottom:462.626667pt;}
.y7b{bottom:468.706667pt;}
.yac{bottom:473.186667pt;}
.y3b{bottom:477.986667pt;}
.y60{bottom:481.026667pt;}
.y7a{bottom:485.506667pt;}
.yab{bottom:489.986667pt;}
.y3a{bottom:496.386667pt;}
.y5f{bottom:499.426667pt;}
.y79{bottom:502.466667pt;}
.yaa{bottom:506.946667pt;}
.y5e{bottom:514.306667pt;}
.y39{bottom:514.786667pt;}
.y78{bottom:519.266667pt;}
.ya9{bottom:523.746667pt;}
.y38{bottom:533.186667pt;}
.y77{bottom:536.386667pt;}
.ya8{bottom:540.733333pt;}
.y37{bottom:551.613333pt;}
.y76{bottom:554.813333pt;}
.ya7{bottom:557.533333pt;}
.y75{bottom:569.693333pt;}
.y36{bottom:570.013333pt;}
.ya6{bottom:574.333333pt;}
.y35{bottom:588.413333pt;}
.ya5{bottom:591.293333pt;}
.y1b{bottom:597.053333pt;}
.y34{bottom:606.813333pt;}
.ya4{bottom:608.093333pt;}
.y1a{bottom:613.853333pt;}
.ya3{bottom:625.053333pt;}
.y33{bottom:625.213333pt;}
.y19{bottom:630.813333pt;}
.ya2{bottom:641.853333pt;}
.y32{bottom:643.613333pt;}
.y18{bottom:647.613333pt;}
.ya1{bottom:658.653333pt;}
.y31{bottom:662.013333pt;}
.y5d{bottom:663.613333pt;}
.y17{bottom:664.573333pt;}
.ya0{bottom:675.613333pt;}
.y30{bottom:680.413333pt;}
.y5c{bottom:680.733333pt;}
.y16{bottom:681.373333pt;}
.y9f{bottom:692.413333pt;}
.y15{bottom:698.173333pt;}
.y2f{bottom:698.813333pt;}
.y5b{bottom:699.133333pt;}
.y9e{bottom:709.373333pt;}
.y14{bottom:715.133333pt;}
.y2e{bottom:717.213333pt;}
.y5a{bottom:717.533333pt;}
.y9d{bottom:726.173333pt;}
.y13{bottom:731.933333pt;}
.y2d{bottom:735.613333pt;}
.y59{bottom:735.933333pt;}
.y9c{bottom:742.973333pt;}
.y12{bottom:748.893333pt;}
.y2c{bottom:754.013333pt;}
.y58{bottom:754.333333pt;}
.y9b{bottom:759.933333pt;}
.y11{bottom:765.693333pt;}
.y2b{bottom:772.413333pt;}
.y57{bottom:772.733333pt;}
.y9a{bottom:776.773333pt;}
.y10{bottom:782.693333pt;}
.y2a{bottom:790.853333pt;}
.y56{bottom:791.173333pt;}
.y99{bottom:793.733333pt;}
.yf{bottom:799.493333pt;}
.y29{bottom:809.253333pt;}
.y55{bottom:809.573333pt;}
.y98{bottom:810.533333pt;}
.ye{bottom:816.293333pt;}
.y97{bottom:827.493333pt;}
.y28{bottom:827.653333pt;}
.y54{bottom:827.973333pt;}
.yd{bottom:836.293333pt;}
.y96{bottom:844.293333pt;}
.y27{bottom:846.053333pt;}
.y53{bottom:846.373333pt;}
.yc{bottom:854.693333pt;}
.y95{bottom:861.093333pt;}
.y26{bottom:864.453333pt;}
.y52{bottom:864.773333pt;}
.yb{bottom:872.773333pt;}
.y94{bottom:878.053333pt;}
.y51{bottom:879.653333pt;}
.y25{bottom:882.853333pt;}
.ya{bottom:889.893333pt;}
.y93{bottom:894.853333pt;}
.y24{bottom:901.253333pt;}
.y92{bottom:911.813333pt;}
.y9{bottom:911.973333pt;}
.y23{bottom:919.653333pt;}
.y91{bottom:928.613333pt;}
.y8{bottom:936.773333pt;}
.y22{bottom:938.053333pt;}
.y90{bottom:945.413333pt;}
.y21{bottom:956.453333pt;}
.y7{bottom:961.413333pt;}
.y8f{bottom:962.373333pt;}
.y20{bottom:974.853333pt;}
.y8e{bottom:979.173333pt;}
.y6{bottom:986.053333pt;}
.y1f{bottom:993.253333pt;}
.y8d{bottom:996.133333pt;}
.y5{bottom:1009.093333pt;}
.y1e{bottom:1011.680000pt;}
.y50{bottom:1012.960000pt;}
.y2{bottom:1028.960000pt;}
.y1{bottom:1051.040000pt;}
.y1c{bottom:1060.640000pt;}
.hc{height:41.112500pt;}
.h3{height:43.355000pt;}
.ha{height:44.687500pt;}
.h4{height:44.735000pt;}
.h2{height:56.160000pt;}
.h7{height:57.787500pt;}
.h8{height:59.340000pt;}
.h9{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:65.781915pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:10.879988pt;}
.xe{left:96.031988pt;}
.x1{left:98.111988pt;}
.x12{left:102.111988pt;}
.x5{left:111.071988pt;}
.x11{left:120.031988pt;}
.x4{left:128.991988pt;}
.x10{left:132.031988pt;}
.xf{left:133.786655pt;}
.x9{left:151.386655pt;}
.xa{left:201.786655pt;}
.x13{left:241.466655pt;}
.x6{left:248.866655pt;}
.x8{left:253.026655pt;}
.xb{left:361.506655pt;}
.x7{left:397.026655pt;}
.x15{left:576.893322pt;}
.x16{left:584.133322pt;}
.x14{left:589.893322pt;}
.x3{left:687.333322pt;}
.xd{left:689.893322pt;}
.x2{left:717.413322pt;}
}




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