
    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_3c5f1e66703dfa7eadac83ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_ebfdf8272b586f5780d18867.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_e955f1f57c2c9e913f3c72d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084473;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ef6ca8a7a9ea8bb286ad969f.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_b536a483272e2444b7cfb8f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_badc1279bbb171cb34d8000c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084473;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_fba908f8397f4b6c07df283b.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.360000px;}
.ls2{letter-spacing:5.040000px;}
.lsc{letter-spacing:95.184000px;}
.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:-16.200000px;}
.ws6{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.984000px;}
.ws0{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.768000px;}
.ws4{word-spacing:-15.696000px;}
.ws2{word-spacing:-15.624000px;}
.ws5{word-spacing:-15.552000px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-4.032000px;}
._5{margin-left:-3.006720px;}
._0{margin-left:-1.457280px;}
._2{width:1.056000px;}
._1{width:2.141283px;}
._15{width:3.147840px;}
._6{width:4.248000px;}
._4{width:6.048000px;}
._3{width:7.344000px;}
._a{width:8.928000px;}
._11{width:12.674880px;}
._10{width:14.469120px;}
._e{width:16.848000px;}
._d{width:17.928000px;}
._7{width:19.152000px;}
._8{width:20.177280px;}
._f{width:21.356160px;}
._1a{width:23.107680px;}
._13{width:24.816000px;}
._14{width:26.052000px;}
._c{width:28.008000px;}
._b{width:29.088000px;}
._16{width:31.968000px;}
._18{width:33.336000px;}
._19{width:34.440000px;}
._1b{width:49.896000px;}
._1c{width:51.216000px;}
._9{width:53.831997px;}
._12{width:68.808000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(5,57,118);}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:7.200000px;}
.y3d{bottom:19.260000px;}
.y6{bottom:21.240000px;}
.y3e{bottom:31.500000px;}
.y41{bottom:31.545000px;}
.y5{bottom:54.396000px;}
.y4{bottom:75.636000px;}
.y31{bottom:122.616000px;}
.y30{bottom:146.916000px;}
.y75{bottom:160.410000px;}
.y2f{bottom:171.030000px;}
.y74{bottom:184.710000px;}
.y57{bottom:193.890000px;}
.y2e{bottom:195.330000px;}
.y73{bottom:209.010000px;}
.y56{bottom:218.190000px;}
.y2d{bottom:219.630000px;}
.y72{bottom:233.310000px;}
.y55{bottom:242.490000px;}
.y2c{bottom:243.930000px;}
.y71{bottom:257.610000px;}
.y54{bottom:266.790000px;}
.y2b{bottom:268.230000px;}
.y70{bottom:281.955000px;}
.y53{bottom:291.135000px;}
.y2a{bottom:292.395000px;}
.y6f{bottom:306.075000px;}
.y52{bottom:315.435000px;}
.y29{bottom:316.695000px;}
.y6e{bottom:330.375000px;}
.y51{bottom:339.555000px;}
.y28{bottom:340.995000px;}
.y8d{bottom:345.135000px;}
.y6d{bottom:354.675000px;}
.y50{bottom:363.855000px;}
.y27{bottom:365.295000px;}
.y8c{bottom:369.255000px;}
.y6c{bottom:378.975000px;}
.y4f{bottom:388.155000px;}
.y26{bottom:389.595000px;}
.y8b{bottom:393.555000px;}
.y6b{bottom:403.275000px;}
.y4e{bottom:412.455000px;}
.y25{bottom:413.895000px;}
.y8a{bottom:417.855000px;}
.y6a{bottom:427.395000px;}
.y4d{bottom:436.755000px;}
.y24{bottom:438.015000px;}
.y89{bottom:442.155000px;}
.y69{bottom:451.695000px;}
.y4c{bottom:460.875000px;}
.y23{bottom:462.315000px;}
.y88{bottom:466.455000px;}
.y68{bottom:475.995000px;}
.y4b{bottom:485.175000px;}
.y22{bottom:486.615000px;}
.y87{bottom:490.755000px;}
.y67{bottom:500.295000px;}
.y4a{bottom:509.475000px;}
.y21{bottom:510.915000px;}
.y86{bottom:514.875000px;}
.y66{bottom:524.595000px;}
.y49{bottom:533.775000px;}
.y20{bottom:535.215000px;}
.y85{bottom:539.175000px;}
.y65{bottom:548.895000px;}
.y48{bottom:558.075000px;}
.y1f{bottom:559.515000px;}
.y84{bottom:563.475000px;}
.y64{bottom:573.045000px;}
.y47{bottom:582.405000px;}
.y1e{bottom:583.665000px;}
.y83{bottom:587.805000px;}
.y63{bottom:597.345000px;}
.y46{bottom:606.525000px;}
.y1d{bottom:607.965000px;}
.y82{bottom:612.105000px;}
.y62{bottom:621.645000px;}
.y45{bottom:630.825000px;}
.y1c{bottom:632.265000px;}
.y81{bottom:637.485000px;}
.y61{bottom:645.945000px;}
.y44{bottom:652.785000px;}
.y1b{bottom:656.565000px;}
.y80{bottom:664.665000px;}
.y60{bottom:670.245000px;}
.y1a{bottom:680.865000px;}
.y7f{bottom:688.965000px;}
.y5f{bottom:694.545000px;}
.y19{bottom:704.985000px;}
.y43{bottom:707.325000px;}
.y7e{bottom:713.085000px;}
.y5e{bottom:718.665000px;}
.y18{bottom:729.285000px;}
.y7d{bottom:737.385000px;}
.y5d{bottom:742.965000px;}
.y17{bottom:753.585000px;}
.y7c{bottom:761.685000px;}
.y42{bottom:761.865000px;}
.y5c{bottom:767.265000px;}
.y16{bottom:777.885000px;}
.y7b{bottom:785.985000px;}
.y5b{bottom:791.565000px;}
.y15{bottom:802.185000px;}
.y7a{bottom:810.285000px;}
.y5a{bottom:815.865000px;}
.y40{bottom:816.405000px;}
.y14{bottom:826.485000px;}
.y79{bottom:834.585000px;}
.y59{bottom:839.985000px;}
.y13{bottom:850.650000px;}
.y78{bottom:858.750000px;}
.y58{bottom:860.370000px;}
.y3c{bottom:870.990000px;}
.y12{bottom:874.950000px;}
.y77{bottom:883.050000px;}
.y11{bottom:899.250000px;}
.y76{bottom:907.350000px;}
.y10{bottom:923.550000px;}
.y3b{bottom:931.650000px;}
.yf{bottom:947.850000px;}
.y3a{bottom:955.950000px;}
.ye{bottom:972.150000px;}
.y39{bottom:980.070000px;}
.yd{bottom:996.270000px;}
.y38{bottom:1004.370000px;}
.yc{bottom:1020.570000px;}
.y37{bottom:1028.670000px;}
.yb{bottom:1044.870000px;}
.y36{bottom:1052.970000px;}
.ya{bottom:1069.170000px;}
.y35{bottom:1077.270000px;}
.y9{bottom:1093.470000px;}
.y34{bottom:1101.570000px;}
.y8{bottom:1118.850000px;}
.y33{bottom:1125.690000px;}
.y7{bottom:1147.140000px;}
.y32{bottom:1150.020000px;}
.y3{bottom:1174.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1223.820000px;}
.h6{height:36.720000px;}
.h2{height:48.138750px;}
.h9{height:48.600000px;}
.ha{height:48.636000px;}
.h3{height:60.960938px;}
.h4{height:62.367188px;}
.h7{height:65.010937px;}
.h5{height:65.884219px;}
.h8{height:71.324297px;}
.hb{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:24.660000px;}
.w4{width:79.056000px;}
.w7{width:163.290000px;}
.w5{width:171.390000px;}
.w6{width:291.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.980000px;}
.x10{left:3.780000px;}
.x18{left:5.796000px;}
.x21{left:9.360000px;}
.x1b{left:10.800000px;}
.x19{left:13.500000px;}
.x28{left:14.940000px;}
.x22{left:19.476000px;}
.x16{left:21.240000px;}
.x23{left:22.860000px;}
.x1d{left:25.380000px;}
.x25{left:29.160000px;}
.x26{left:32.760000px;}
.x27{left:33.840000px;}
.x12{left:38.340000px;}
.x1e{left:44.820000px;}
.x1c{left:50.580000px;}
.x17{left:56.025000px;}
.x20{left:62.820000px;}
.x1a{left:64.080000px;}
.x4{left:84.959987px;}
.xf{left:88.380000px;}
.x14{left:98.100000px;}
.x24{left:110.880000px;}
.xe{left:127.475987px;}
.x6{left:130.535987px;}
.x11{left:171.030000px;}
.x2a{left:260.309987px;}
.x13{left:346.035000px;}
.x7{left:389.054987px;}
.x5{left:434.235000px;}
.xd{left:447.014987px;}
.xc{left:484.634987px;}
.xa{left:505.004987px;}
.x8{left:512.564987px;}
.xb{left:518.504987px;}
.x2{left:539.744987px;}
.x3{left:584.384987px;}
.x9{left:611.924987px;}
.x15{left:641.445000px;}
.x1{left:681.044987px;}
.x29{left:717.089987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2{letter-spacing:4.480000pt;}
.lsc{letter-spacing:84.608000pt;}
.ws1{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.208000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.952000pt;}
.ws2{word-spacing:-13.888000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-3.584000pt;}
._5{margin-left:-2.672640pt;}
._0{margin-left:-1.295360pt;}
._2{width:0.938667pt;}
._1{width:1.903363pt;}
._15{width:2.798080pt;}
._6{width:3.776000pt;}
._4{width:5.376000pt;}
._3{width:6.528000pt;}
._a{width:7.936000pt;}
._11{width:11.266560pt;}
._10{width:12.861440pt;}
._e{width:14.976000pt;}
._d{width:15.936000pt;}
._7{width:17.024000pt;}
._8{width:17.935360pt;}
._f{width:18.983253pt;}
._1a{width:20.540160pt;}
._13{width:22.058667pt;}
._14{width:23.157333pt;}
._c{width:24.896000pt;}
._b{width:25.856000pt;}
._16{width:28.416000pt;}
._18{width:29.632000pt;}
._19{width:30.613333pt;}
._1b{width:44.352000pt;}
._1c{width:45.525333pt;}
._9{width:47.850664pt;}
._12{width:61.162667pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:6.400000pt;}
.y3d{bottom:17.120000pt;}
.y6{bottom:18.880000pt;}
.y3e{bottom:28.000000pt;}
.y41{bottom:28.040000pt;}
.y5{bottom:48.352000pt;}
.y4{bottom:67.232000pt;}
.y31{bottom:108.992000pt;}
.y30{bottom:130.592000pt;}
.y75{bottom:142.586667pt;}
.y2f{bottom:152.026667pt;}
.y74{bottom:164.186667pt;}
.y57{bottom:172.346667pt;}
.y2e{bottom:173.626667pt;}
.y73{bottom:185.786667pt;}
.y56{bottom:193.946667pt;}
.y2d{bottom:195.226667pt;}
.y72{bottom:207.386667pt;}
.y55{bottom:215.546667pt;}
.y2c{bottom:216.826667pt;}
.y71{bottom:228.986667pt;}
.y54{bottom:237.146667pt;}
.y2b{bottom:238.426667pt;}
.y70{bottom:250.626667pt;}
.y53{bottom:258.786667pt;}
.y2a{bottom:259.906667pt;}
.y6f{bottom:272.066667pt;}
.y52{bottom:280.386667pt;}
.y29{bottom:281.506667pt;}
.y6e{bottom:293.666667pt;}
.y51{bottom:301.826667pt;}
.y28{bottom:303.106667pt;}
.y8d{bottom:306.786667pt;}
.y6d{bottom:315.266667pt;}
.y50{bottom:323.426667pt;}
.y27{bottom:324.706667pt;}
.y8c{bottom:328.226667pt;}
.y6c{bottom:336.866667pt;}
.y4f{bottom:345.026667pt;}
.y26{bottom:346.306667pt;}
.y8b{bottom:349.826667pt;}
.y6b{bottom:358.466667pt;}
.y4e{bottom:366.626667pt;}
.y25{bottom:367.906667pt;}
.y8a{bottom:371.426667pt;}
.y6a{bottom:379.906667pt;}
.y4d{bottom:388.226667pt;}
.y24{bottom:389.346667pt;}
.y89{bottom:393.026667pt;}
.y69{bottom:401.506667pt;}
.y4c{bottom:409.666667pt;}
.y23{bottom:410.946667pt;}
.y88{bottom:414.626667pt;}
.y68{bottom:423.106667pt;}
.y4b{bottom:431.266667pt;}
.y22{bottom:432.546667pt;}
.y87{bottom:436.226667pt;}
.y67{bottom:444.706667pt;}
.y4a{bottom:452.866667pt;}
.y21{bottom:454.146667pt;}
.y86{bottom:457.666667pt;}
.y66{bottom:466.306667pt;}
.y49{bottom:474.466667pt;}
.y20{bottom:475.746667pt;}
.y85{bottom:479.266667pt;}
.y65{bottom:487.906667pt;}
.y48{bottom:496.066667pt;}
.y1f{bottom:497.346667pt;}
.y84{bottom:500.866667pt;}
.y64{bottom:509.373333pt;}
.y47{bottom:517.693333pt;}
.y1e{bottom:518.813333pt;}
.y83{bottom:522.493333pt;}
.y63{bottom:530.973333pt;}
.y46{bottom:539.133333pt;}
.y1d{bottom:540.413333pt;}
.y82{bottom:544.093333pt;}
.y62{bottom:552.573333pt;}
.y45{bottom:560.733333pt;}
.y1c{bottom:562.013333pt;}
.y81{bottom:566.653333pt;}
.y61{bottom:574.173333pt;}
.y44{bottom:580.253333pt;}
.y1b{bottom:583.613333pt;}
.y80{bottom:590.813333pt;}
.y60{bottom:595.773333pt;}
.y1a{bottom:605.213333pt;}
.y7f{bottom:612.413333pt;}
.y5f{bottom:617.373333pt;}
.y19{bottom:626.653333pt;}
.y43{bottom:628.733333pt;}
.y7e{bottom:633.853333pt;}
.y5e{bottom:638.813333pt;}
.y18{bottom:648.253333pt;}
.y7d{bottom:655.453333pt;}
.y5d{bottom:660.413333pt;}
.y17{bottom:669.853333pt;}
.y7c{bottom:677.053333pt;}
.y42{bottom:677.213333pt;}
.y5c{bottom:682.013333pt;}
.y16{bottom:691.453333pt;}
.y7b{bottom:698.653333pt;}
.y5b{bottom:703.613333pt;}
.y15{bottom:713.053333pt;}
.y7a{bottom:720.253333pt;}
.y5a{bottom:725.213333pt;}
.y40{bottom:725.693333pt;}
.y14{bottom:734.653333pt;}
.y79{bottom:741.853333pt;}
.y59{bottom:746.653333pt;}
.y13{bottom:756.133333pt;}
.y78{bottom:763.333333pt;}
.y58{bottom:764.773333pt;}
.y3c{bottom:774.213333pt;}
.y12{bottom:777.733333pt;}
.y77{bottom:784.933333pt;}
.y11{bottom:799.333333pt;}
.y76{bottom:806.533333pt;}
.y10{bottom:820.933333pt;}
.y3b{bottom:828.133333pt;}
.yf{bottom:842.533333pt;}
.y3a{bottom:849.733333pt;}
.ye{bottom:864.133333pt;}
.y39{bottom:871.173333pt;}
.yd{bottom:885.573333pt;}
.y38{bottom:892.773333pt;}
.yc{bottom:907.173333pt;}
.y37{bottom:914.373333pt;}
.yb{bottom:928.773333pt;}
.y36{bottom:935.973333pt;}
.ya{bottom:950.373333pt;}
.y35{bottom:957.573333pt;}
.y9{bottom:971.973333pt;}
.y34{bottom:979.173333pt;}
.y8{bottom:994.533333pt;}
.y33{bottom:1000.613333pt;}
.y7{bottom:1019.680000pt;}
.y32{bottom:1022.240000pt;}
.y3{bottom:1043.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1087.840000pt;}
.h6{height:32.640000pt;}
.h2{height:42.790000pt;}
.h9{height:43.200000pt;}
.ha{height:43.232000pt;}
.h3{height:54.187500pt;}
.h4{height:55.437500pt;}
.h7{height:57.787500pt;}
.h5{height:58.563750pt;}
.h8{height:63.399375pt;}
.hb{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.920000pt;}
.w4{width:70.272000pt;}
.w7{width:145.146667pt;}
.w5{width:152.346667pt;}
.w6{width:259.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.760000pt;}
.x10{left:3.360000pt;}
.x18{left:5.152000pt;}
.x21{left:8.320000pt;}
.x1b{left:9.600000pt;}
.x19{left:12.000000pt;}
.x28{left:13.280000pt;}
.x22{left:17.312000pt;}
.x16{left:18.880000pt;}
.x23{left:20.320000pt;}
.x1d{left:22.560000pt;}
.x25{left:25.920000pt;}
.x26{left:29.120000pt;}
.x27{left:30.080000pt;}
.x12{left:34.080000pt;}
.x1e{left:39.840000pt;}
.x1c{left:44.960000pt;}
.x17{left:49.800000pt;}
.x20{left:55.840000pt;}
.x1a{left:56.960000pt;}
.x4{left:75.519988pt;}
.xf{left:78.560000pt;}
.x14{left:87.200000pt;}
.x24{left:98.560000pt;}
.xe{left:113.311988pt;}
.x6{left:116.031988pt;}
.x11{left:152.026667pt;}
.x2a{left:231.386655pt;}
.x13{left:307.586667pt;}
.x7{left:345.826655pt;}
.x5{left:385.986667pt;}
.xd{left:397.346655pt;}
.xc{left:430.786655pt;}
.xa{left:448.893322pt;}
.x8{left:455.613322pt;}
.xb{left:460.893322pt;}
.x2{left:479.773322pt;}
.x3{left:519.453322pt;}
.x9{left:543.933322pt;}
.x15{left:570.173333pt;}
.x1{left:605.373322pt;}
.x29{left:637.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; }
  