
    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_da05e99d44ce25f50fc26b54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_c468399505d25b24db334cd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_0676c18a192bf31f60fc874d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_f63bacc125ca5685b248ebfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_49f98162af301d26898781bc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a5eef1a8423e66960cbb039.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_9b06eddb0b0ad4dab0f08c44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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:ff9;src:url('chunks/assets/font_0a143be7cfa0f64b76de956e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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:ffa;src:url('chunks/assets/font_12f5080b267addc49d103100.woff2')format("woff");}.ffa{font-family:ffa;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:-1.200000px;}
.ls4{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.384000px;}
.ls11{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.084000px;}
.lsa{letter-spacing:0.144000px;}
.lse{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.624000px;}
.ls8{letter-spacing:10.800000px;}
.lsc{letter-spacing:11.184000px;}
.ls7{letter-spacing:21.600000px;}
.ls6{letter-spacing:25.140000px;}
.ls10{letter-spacing:145.584000px;}
.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;}
}
.ws4{word-spacing:-20.016000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.616000px;}
.ws0{word-spacing:-16.008000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-4.464000px;}
._a{margin-left:-2.880000px;}
._2{margin-left:-1.536000px;}
._3{width:1.152000px;}
._4{width:2.808000px;}
._16{width:4.260000px;}
._15{width:5.574000px;}
._14{width:6.786000px;}
._10{width:7.848000px;}
._11{width:9.024000px;}
._f{width:10.944000px;}
._1c{width:12.168000px;}
._25{width:13.536000px;}
._e{width:14.694000px;}
._8{width:15.912000px;}
._9{width:19.182000px;}
._24{width:20.376000px;}
._1f{width:21.384000px;}
._1a{width:23.490000px;}
._19{width:24.552000px;}
._1d{width:25.584000px;}
._13{width:26.928000px;}
._12{width:27.936000px;}
._28{width:29.088000px;}
._18{width:30.192000px;}
._21{width:32.112000px;}
._20{width:33.552000px;}
._1b{width:34.584000px;}
._5{width:35.928000px;}
._26{width:37.368000px;}
._2a{width:38.736000px;}
._7{width:40.632000px;}
._6{width:41.832000px;}
._d{width:45.432000px;}
._27{width:52.314000px;}
._29{width:54.366000px;}
._23{width:55.440000px;}
._22{width:56.952000px;}
._c{width:69.858000px;}
._b{width:70.920000px;}
._1e{width:127.368000px;}
._0{width:292.446000px;}
._1{width:1423.116000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(204,0,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:19.537500px;}
.y6{bottom:43.537500px;}
.y5{bottom:68.737500px;}
.y56{bottom:96.937500px;}
.y7c{bottom:102.937500px;}
.y31{bottom:114.937500px;}
.y55{bottom:120.637500px;}
.y7b{bottom:126.937500px;}
.y30{bottom:138.937500px;}
.y54{bottom:144.337500px;}
.y7a{bottom:150.630000px;}
.y2f{bottom:162.630000px;}
.y53{bottom:168.330000px;}
.y79{bottom:174.375000px;}
.y2e{bottom:186.375000px;}
.y52{bottom:192.075000px;}
.y78{bottom:198.375000px;}
.y2d{bottom:210.375000px;}
.y51{bottom:215.775000px;}
.y77{bottom:222.075000px;}
.y2c{bottom:234.075000px;}
.y76{bottom:245.775000px;}
.y50{bottom:251.775000px;}
.y2b{bottom:257.775000px;}
.y75{bottom:269.775000px;}
.y4f{bottom:275.475000px;}
.y2a{bottom:281.775000px;}
.y74{bottom:293.475000px;}
.y4e{bottom:299.175000px;}
.y29{bottom:305.475000px;}
.y73{bottom:317.175000px;}
.y4d{bottom:323.175000px;}
.y28{bottom:329.175000px;}
.y72{bottom:341.220000px;}
.y4c{bottom:346.905000px;}
.y27{bottom:353.205000px;}
.y71{bottom:364.905000px;}
.y4b{bottom:370.905000px;}
.y26{bottom:376.905000px;}
.y70{bottom:388.920000px;}
.y4a{bottom:394.605000px;}
.y25{bottom:400.905000px;}
.y6f{bottom:412.620000px;}
.y49{bottom:418.320000px;}
.y24{bottom:424.620000px;}
.y6e{bottom:436.320000px;}
.y48{bottom:442.320000px;}
.y23{bottom:448.320000px;}
.y6d{bottom:460.320000px;}
.y47{bottom:466.005000px;}
.y22{bottom:472.320000px;}
.y6c{bottom:484.005000px;}
.y46{bottom:489.705000px;}
.y21{bottom:496.005000px;}
.y6b{bottom:507.750000px;}
.y45{bottom:513.750000px;}
.y20{bottom:519.750000px;}
.y6a{bottom:531.750000px;}
.y44{bottom:537.450000px;}
.y1f{bottom:543.750000px;}
.y69{bottom:555.450000px;}
.y43{bottom:561.150000px;}
.y1e{bottom:567.450000px;}
.y68{bottom:579.150000px;}
.y42{bottom:585.150000px;}
.y1d{bottom:591.150000px;}
.y67{bottom:603.150000px;}
.y41{bottom:608.850000px;}
.y1c{bottom:615.150000px;}
.y66{bottom:626.850000px;}
.y1b{bottom:638.850000px;}
.y40{bottom:644.550000px;}
.y65{bottom:650.550000px;}
.y1a{bottom:662.550000px;}
.y3f{bottom:668.550000px;}
.y64{bottom:674.550000px;}
.y19{bottom:686.595000px;}
.y3e{bottom:692.280000px;}
.y63{bottom:698.280000px;}
.y18{bottom:710.280000px;}
.y3d{bottom:715.980000px;}
.y62{bottom:721.995000px;}
.y17{bottom:733.995000px;}
.y3c{bottom:739.980000px;}
.y61{bottom:745.980000px;}
.y16{bottom:757.980000px;}
.y3b{bottom:763.680000px;}
.y60{bottom:769.695000px;}
.y15{bottom:781.695000px;}
.y3a{bottom:787.380000px;}
.y5f{bottom:793.380000px;}
.y14{bottom:805.380000px;}
.y39{bottom:811.380000px;}
.y5e{bottom:817.380000px;}
.y13{bottom:829.380000px;}
.y38{bottom:835.080000px;}
.y5d{bottom:841.080000px;}
.y12{bottom:853.125000px;}
.y37{bottom:858.825000px;}
.y5c{bottom:864.825000px;}
.y11{bottom:876.825000px;}
.y36{bottom:882.825000px;}
.y5b{bottom:888.825000px;}
.y10{bottom:900.825000px;}
.y35{bottom:906.525000px;}
.y5a{bottom:912.525000px;}
.yf{bottom:924.525000px;}
.y34{bottom:930.225000px;}
.y59{bottom:936.225000px;}
.ye{bottom:948.225000px;}
.y33{bottom:954.225000px;}
.y58{bottom:960.225000px;}
.yd{bottom:972.225000px;}
.y32{bottom:977.925000px;}
.y57{bottom:983.925000px;}
.yc{bottom:995.925000px;}
.yb{bottom:1019.670000px;}
.ya{bottom:1043.655000px;}
.y9{bottom:1067.355000px;}
.y8{bottom:1091.070000px;}
.y4{bottom:1127.955000px;}
.y3{bottom:1151.955000px;}
.y2{bottom:1176.870000px;}
.y1{bottom:1207.800000px;}
.h9{height:50.484375px;}
.h6{height:50.800781px;}
.h4{height:66.978516px;}
.h8{height:70.628906px;}
.ha{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:76.546875px;}
.h5{height:82.441406px;}
.h3{height:86.115234px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.299987px;}
.x4{left:84.937487px;}
.x6{left:101.137487px;}
.x1{left:106.537487px;}
.xa{left:141.337487px;}
.x9{left:317.504987px;}
.x7{left:342.119987px;}
.xb{left:343.919987px;}
.x8{left:446.249987px;}
.x2{left:546.494987px;}
.x3{left:645.494987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.341333pt;}
.ls11{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.074667pt;}
.lsa{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.554667pt;}
.ls8{letter-spacing:9.600000pt;}
.lsc{letter-spacing:9.941333pt;}
.ls7{letter-spacing:19.200000pt;}
.ls6{letter-spacing:22.346667pt;}
.ls10{letter-spacing:129.408000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.658667pt;}
.ws0{word-spacing:-14.229333pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-3.968000pt;}
._a{margin-left:-2.560000pt;}
._2{margin-left:-1.365333pt;}
._3{width:1.024000pt;}
._4{width:2.496000pt;}
._16{width:3.786667pt;}
._15{width:4.954667pt;}
._14{width:6.032000pt;}
._10{width:6.976000pt;}
._11{width:8.021333pt;}
._f{width:9.728000pt;}
._1c{width:10.816000pt;}
._25{width:12.032000pt;}
._e{width:13.061333pt;}
._8{width:14.144000pt;}
._9{width:17.050667pt;}
._24{width:18.112000pt;}
._1f{width:19.008000pt;}
._1a{width:20.880000pt;}
._19{width:21.824000pt;}
._1d{width:22.741333pt;}
._13{width:23.936000pt;}
._12{width:24.832000pt;}
._28{width:25.856000pt;}
._18{width:26.837333pt;}
._21{width:28.544000pt;}
._20{width:29.824000pt;}
._1b{width:30.741333pt;}
._5{width:31.936000pt;}
._26{width:33.216000pt;}
._2a{width:34.432000pt;}
._7{width:36.117333pt;}
._6{width:37.184000pt;}
._d{width:40.384000pt;}
._27{width:46.501333pt;}
._29{width:48.325333pt;}
._23{width:49.280000pt;}
._22{width:50.624000pt;}
._c{width:62.096000pt;}
._b{width:63.040000pt;}
._1e{width:113.216000pt;}
._0{width:259.952000pt;}
._1{width:1264.992000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:17.366667pt;}
.y6{bottom:38.700000pt;}
.y5{bottom:61.100000pt;}
.y56{bottom:86.166667pt;}
.y7c{bottom:91.500000pt;}
.y31{bottom:102.166667pt;}
.y55{bottom:107.233333pt;}
.y7b{bottom:112.833333pt;}
.y30{bottom:123.500000pt;}
.y54{bottom:128.300000pt;}
.y7a{bottom:133.893333pt;}
.y2f{bottom:144.560000pt;}
.y53{bottom:149.626667pt;}
.y79{bottom:155.000000pt;}
.y2e{bottom:165.666667pt;}
.y52{bottom:170.733333pt;}
.y78{bottom:176.333333pt;}
.y2d{bottom:187.000000pt;}
.y51{bottom:191.800000pt;}
.y77{bottom:197.400000pt;}
.y2c{bottom:208.066667pt;}
.y76{bottom:218.466667pt;}
.y50{bottom:223.800000pt;}
.y2b{bottom:229.133333pt;}
.y75{bottom:239.800000pt;}
.y4f{bottom:244.866667pt;}
.y2a{bottom:250.466667pt;}
.y74{bottom:260.866667pt;}
.y4e{bottom:265.933333pt;}
.y29{bottom:271.533333pt;}
.y73{bottom:281.933333pt;}
.y4d{bottom:287.266667pt;}
.y28{bottom:292.600000pt;}
.y72{bottom:303.306667pt;}
.y4c{bottom:308.360000pt;}
.y27{bottom:313.960000pt;}
.y71{bottom:324.360000pt;}
.y4b{bottom:329.693333pt;}
.y26{bottom:335.026667pt;}
.y70{bottom:345.706667pt;}
.y4a{bottom:350.760000pt;}
.y25{bottom:356.360000pt;}
.y6f{bottom:366.773333pt;}
.y49{bottom:371.840000pt;}
.y24{bottom:377.440000pt;}
.y6e{bottom:387.840000pt;}
.y48{bottom:393.173333pt;}
.y23{bottom:398.506667pt;}
.y6d{bottom:409.173333pt;}
.y47{bottom:414.226667pt;}
.y22{bottom:419.840000pt;}
.y6c{bottom:430.226667pt;}
.y46{bottom:435.293333pt;}
.y21{bottom:440.893333pt;}
.y6b{bottom:451.333333pt;}
.y45{bottom:456.666667pt;}
.y20{bottom:462.000000pt;}
.y6a{bottom:472.666667pt;}
.y44{bottom:477.733333pt;}
.y1f{bottom:483.333333pt;}
.y69{bottom:493.733333pt;}
.y43{bottom:498.800000pt;}
.y1e{bottom:504.400000pt;}
.y68{bottom:514.800000pt;}
.y42{bottom:520.133333pt;}
.y1d{bottom:525.466667pt;}
.y67{bottom:536.133333pt;}
.y41{bottom:541.200000pt;}
.y1c{bottom:546.800000pt;}
.y66{bottom:557.200000pt;}
.y1b{bottom:567.866667pt;}
.y40{bottom:572.933333pt;}
.y65{bottom:578.266667pt;}
.y1a{bottom:588.933333pt;}
.y3f{bottom:594.266667pt;}
.y64{bottom:599.600000pt;}
.y19{bottom:610.306667pt;}
.y3e{bottom:615.360000pt;}
.y63{bottom:620.693333pt;}
.y18{bottom:631.360000pt;}
.y3d{bottom:636.426667pt;}
.y62{bottom:641.773333pt;}
.y17{bottom:652.440000pt;}
.y3c{bottom:657.760000pt;}
.y61{bottom:663.093333pt;}
.y16{bottom:673.760000pt;}
.y3b{bottom:678.826667pt;}
.y60{bottom:684.173333pt;}
.y15{bottom:694.840000pt;}
.y3a{bottom:699.893333pt;}
.y5f{bottom:705.226667pt;}
.y14{bottom:715.893333pt;}
.y39{bottom:721.226667pt;}
.y5e{bottom:726.560000pt;}
.y13{bottom:737.226667pt;}
.y38{bottom:742.293333pt;}
.y5d{bottom:747.626667pt;}
.y12{bottom:758.333333pt;}
.y37{bottom:763.400000pt;}
.y5c{bottom:768.733333pt;}
.y11{bottom:779.400000pt;}
.y36{bottom:784.733333pt;}
.y5b{bottom:790.066667pt;}
.y10{bottom:800.733333pt;}
.y35{bottom:805.800000pt;}
.y5a{bottom:811.133333pt;}
.yf{bottom:821.800000pt;}
.y34{bottom:826.866667pt;}
.y59{bottom:832.200000pt;}
.ye{bottom:842.866667pt;}
.y33{bottom:848.200000pt;}
.y58{bottom:853.533333pt;}
.yd{bottom:864.200000pt;}
.y32{bottom:869.266667pt;}
.y57{bottom:874.600000pt;}
.yc{bottom:885.266667pt;}
.yb{bottom:906.373333pt;}
.ya{bottom:927.693333pt;}
.y9{bottom:948.760000pt;}
.y8{bottom:969.840000pt;}
.y4{bottom:1002.626667pt;}
.y3{bottom:1023.960000pt;}
.y2{bottom:1046.106667pt;}
.y1{bottom:1073.600000pt;}
.h9{height:44.875000pt;}
.h6{height:45.156250pt;}
.h4{height:59.536458pt;}
.h8{height:62.781250pt;}
.ha{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:68.041667pt;}
.h5{height:73.281250pt;}
.h3{height:76.546875pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.599988pt;}
.x4{left:75.499988pt;}
.x6{left:89.899988pt;}
.x1{left:94.699988pt;}
.xa{left:125.633322pt;}
.x9{left:282.226655pt;}
.x7{left:304.106655pt;}
.xb{left:305.706655pt;}
.x8{left:396.666655pt;}
.x2{left:485.773322pt;}
.x3{left:573.773322pt;}
}




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