
    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_f76106541e2bac20fd781958.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_26730ef36a1022008b3c0ec6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_fb4a0206a50e4a4191047f9f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8b580b133abf025ffacd891a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_acf8faa9b73bd6e2b36f76c1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_b1e98f62d7e86a48e45ec073.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_fdf9c3492900d0d9f4762cd6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls9{letter-spacing:7.200000px;}
.ls1{letter-spacing:2004.036000px;}
.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;}
}
.ws6{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-9.071520px;}
._18{margin-left:-8.064000px;}
._15{margin-left:-6.838560px;}
._1{margin-left:-5.472480px;}
._4{margin-left:-3.744000px;}
._8{margin-left:-2.606880px;}
._0{margin-left:-1.457280px;}
._2{width:1.166880px;}
._3{width:2.679840px;}
._12{width:4.121280px;}
._5{width:5.688000px;}
._13{width:7.056000px;}
._14{width:8.414880px;}
._d{width:9.561120px;}
._6{width:11.304000px;}
._7{width:12.873120px;}
._c{width:14.760000px;}
._b{width:16.289280px;}
._9{width:19.656000px;}
._a{width:20.664000px;}
._1a{width:21.922560px;}
._19{width:23.544000px;}
._1c{width:24.840000px;}
._1b{width:26.280000px;}
._10{width:27.360000px;}
._11{width:28.656000px;}
._e{width:30.000000px;}
._f{width:31.248000px;}
._1e{width:33.192000px;}
._16{width:36.504000px;}
._17{width:37.656000px;}
._21{width:38.784000px;}
._20{width:42.132960px;}
._1f{width:48.312000px;}
._2a{width:61.848000px;}
._29{width:132.696000px;}
._27{width:152.940000px;}
._26{width:154.200000px;}
._23{width:277.320000px;}
._25{width:339.192000px;}
._24{width:340.680000px;}
._22{width:674.652000px;}
._28{width:681.276000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.060000px;}
.y8a{bottom:89.676000px;}
.y65{bottom:93.096000px;}
.y89{bottom:94.896000px;}
.y98{bottom:99.396000px;}
.y9b{bottom:100.656000px;}
.y9e{bottom:103.536000px;}
.y34{bottom:105.336000px;}
.y88{bottom:107.496000px;}
.ya1{bottom:113.796000px;}
.y97{bottom:116.676000px;}
.y9a{bottom:117.936000px;}
.y64{bottom:124.236000px;}
.y33{bottom:126.036000px;}
.y96{bottom:130.716000px;}
.y99{bottom:131.976000px;}
.y76{bottom:134.496000px;}
.y87{bottom:144.936000px;}
.y32{bottom:146.736000px;}
.y63{bottom:155.190000px;}
.y75{bottom:165.630000px;}
.y31{bottom:167.430000px;}
.y62{bottom:175.890000px;}
.y8b{bottom:186.330000px;}
.y30{bottom:188.130000px;}
.y61{bottom:196.590000px;}
.y86{bottom:207.030000px;}
.y2f{bottom:208.830000px;}
.y60{bottom:217.290000px;}
.y74{bottom:227.730000px;}
.y2e{bottom:231.150000px;}
.y5f{bottom:237.990000px;}
.y85{bottom:248.430000px;}
.y2d{bottom:251.850000px;}
.y5e{bottom:258.690000px;}
.y9f{bottom:269.130000px;}
.y2c{bottom:272.550000px;}
.y5d{bottom:279.390000px;}
.y73{bottom:289.830000px;}
.y2b{bottom:293.250000px;}
.y5c{bottom:300.090000px;}
.y84{bottom:310.530000px;}
.y2a{bottom:313.950000px;}
.y5b{bottom:320.790000px;}
.y9d{bottom:331.230000px;}
.y29{bottom:334.650000px;}
.y5a{bottom:341.535000px;}
.y72{bottom:351.975000px;}
.y28{bottom:355.395000px;}
.y59{bottom:362.235000px;}
.y83{bottom:372.675000px;}
.y27{bottom:376.095000px;}
.y95{bottom:376.815000px;}
.y58{bottom:382.935000px;}
.y26{bottom:396.795000px;}
.y57{bottom:403.635000px;}
.y94{bottom:407.775000px;}
.y71{bottom:414.075000px;}
.y25{bottom:417.495000px;}
.y56{bottom:424.335000px;}
.y82{bottom:434.775000px;}
.y24{bottom:438.195000px;}
.y93{bottom:438.915000px;}
.y55{bottom:445.035000px;}
.y23{bottom:458.895000px;}
.y54{bottom:465.735000px;}
.y92{bottom:469.875000px;}
.y70{bottom:476.175000px;}
.y22{bottom:479.595000px;}
.y53{bottom:486.435000px;}
.y81{bottom:496.875000px;}
.y21{bottom:500.295000px;}
.y91{bottom:501.015000px;}
.y52{bottom:507.135000px;}
.y20{bottom:520.995000px;}
.y51{bottom:527.835000px;}
.y90{bottom:531.975000px;}
.y6f{bottom:538.275000px;}
.y1f{bottom:541.695000px;}
.y50{bottom:548.535000px;}
.y80{bottom:558.975000px;}
.y1e{bottom:562.395000px;}
.y8f{bottom:562.935000px;}
.y4f{bottom:569.235000px;}
.y1d{bottom:583.095000px;}
.y4e{bottom:589.935000px;}
.y8e{bottom:594.075000px;}
.y6e{bottom:600.375000px;}
.y1c{bottom:603.825000px;}
.y4d{bottom:610.665000px;}
.y8d{bottom:614.085000px;}
.y7f{bottom:621.105000px;}
.y1b{bottom:624.525000px;}
.y4c{bottom:631.365000px;}
.y1a{bottom:645.225000px;}
.y4b{bottom:652.065000px;}
.y8c{bottom:655.665000px;}
.y7e{bottom:658.905000px;}
.y6d{bottom:662.505000px;}
.y19{bottom:665.925000px;}
.y4a{bottom:672.765000px;}
.y7d{bottom:683.205000px;}
.y18{bottom:686.625000px;}
.y49{bottom:693.465000px;}
.y17{bottom:707.325000px;}
.y48{bottom:714.165000px;}
.y6c{bottom:724.605000px;}
.y16{bottom:728.025000px;}
.y47{bottom:734.865000px;}
.y7c{bottom:745.305000px;}
.y15{bottom:748.725000px;}
.y46{bottom:755.565000px;}
.y14{bottom:769.425000px;}
.y45{bottom:776.265000px;}
.y6b{bottom:786.705000px;}
.y13{bottom:790.125000px;}
.y44{bottom:796.965000px;}
.y7b{bottom:807.405000px;}
.y12{bottom:810.825000px;}
.y43{bottom:817.665000px;}
.y9c{bottom:828.105000px;}
.y11{bottom:831.525000px;}
.y42{bottom:838.365000px;}
.y6a{bottom:848.805000px;}
.y10{bottom:852.225000px;}
.y41{bottom:859.065000px;}
.y7a{bottom:869.505000px;}
.yf{bottom:872.970000px;}
.y40{bottom:879.810000px;}
.ye{bottom:893.670000px;}
.y3f{bottom:900.510000px;}
.y69{bottom:910.950000px;}
.yd{bottom:914.370000px;}
.y3e{bottom:921.210000px;}
.y79{bottom:931.650000px;}
.yc{bottom:935.070000px;}
.y3d{bottom:941.910000px;}
.ya0{bottom:952.350000px;}
.yb{bottom:955.770000px;}
.y3c{bottom:962.610000px;}
.y68{bottom:973.050000px;}
.ya{bottom:976.470000px;}
.y3b{bottom:983.310000px;}
.y78{bottom:993.750000px;}
.y9{bottom:997.710000px;}
.y3a{bottom:1004.010000px;}
.y77{bottom:1014.450000px;}
.y8{bottom:1021.830000px;}
.y39{bottom:1024.710000px;}
.y67{bottom:1035.150000px;}
.y7{bottom:1045.410000px;}
.y38{bottom:1066.110000px;}
.y6{bottom:1067.370000px;}
.y37{bottom:1086.810000px;}
.y5{bottom:1095.090000px;}
.y66{bottom:1097.250000px;}
.y36{bottom:1107.510000px;}
.y4{bottom:1122.630000px;}
.y35{bottom:1128.210000px;}
.y2{bottom:1172.700000px;}
.y1{bottom:1194.120000px;}
.h8{height:34.855313px;}
.h7{height:43.246406px;}
.h9{height:53.573906px;}
.h5{height:63.949219px;}
.h2{height:64.546875px;}
.h3{height:65.884219px;}
.h6{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:83.879987px;}
.x1{left:84.959987px;}
.x2{left:88.199987px;}
.xd{left:89.855987px;}
.x4{left:92.555987px;}
.x9{left:127.475987px;}
.x8{left:138.095987px;}
.x14{left:172.829987px;}
.xf{left:188.849987px;}
.x12{left:190.469987px;}
.x6{left:234.209987px;}
.x5{left:305.894987px;}
.xc{left:342.794987px;}
.x10{left:357.014987px;}
.x3{left:386.714987px;}
.xa{left:493.304973px;}
.xb{left:499.424987px;}
.x13{left:606.344987px;}
.x11{left:610.124987px;}
.xe{left:789.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls9{letter-spacing:6.400000pt;}
.ls1{letter-spacing:1781.365333pt;}
.ws6{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-8.063573pt;}
._18{margin-left:-7.168000pt;}
._15{margin-left:-6.078720pt;}
._1{margin-left:-4.864427pt;}
._4{margin-left:-3.328000pt;}
._8{margin-left:-2.317227pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.037227pt;}
._3{width:2.382080pt;}
._12{width:3.663360pt;}
._5{width:5.056000pt;}
._13{width:6.272000pt;}
._14{width:7.479893pt;}
._d{width:8.498773pt;}
._6{width:10.048000pt;}
._7{width:11.442773pt;}
._c{width:13.120000pt;}
._b{width:14.479360pt;}
._9{width:17.472000pt;}
._a{width:18.368000pt;}
._1a{width:19.486720pt;}
._19{width:20.928000pt;}
._1c{width:22.080000pt;}
._1b{width:23.360000pt;}
._10{width:24.320000pt;}
._11{width:25.472000pt;}
._e{width:26.666667pt;}
._f{width:27.776000pt;}
._1e{width:29.504000pt;}
._16{width:32.448000pt;}
._17{width:33.472000pt;}
._21{width:34.474667pt;}
._20{width:37.451520pt;}
._1f{width:42.944000pt;}
._2a{width:54.976000pt;}
._29{width:117.952000pt;}
._27{width:135.946667pt;}
._26{width:137.066667pt;}
._23{width:246.506667pt;}
._25{width:301.504000pt;}
._24{width:302.826667pt;}
._22{width:599.690667pt;}
._28{width:605.578667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.720000pt;}
.y8a{bottom:79.712000pt;}
.y65{bottom:82.752000pt;}
.y89{bottom:84.352000pt;}
.y98{bottom:88.352000pt;}
.y9b{bottom:89.472000pt;}
.y9e{bottom:92.032000pt;}
.y34{bottom:93.632000pt;}
.y88{bottom:95.552000pt;}
.ya1{bottom:101.152000pt;}
.y97{bottom:103.712000pt;}
.y9a{bottom:104.832000pt;}
.y64{bottom:110.432000pt;}
.y33{bottom:112.032000pt;}
.y96{bottom:116.192000pt;}
.y99{bottom:117.312000pt;}
.y76{bottom:119.552000pt;}
.y87{bottom:128.832000pt;}
.y32{bottom:130.432000pt;}
.y63{bottom:137.946667pt;}
.y75{bottom:147.226667pt;}
.y31{bottom:148.826667pt;}
.y62{bottom:156.346667pt;}
.y8b{bottom:165.626667pt;}
.y30{bottom:167.226667pt;}
.y61{bottom:174.746667pt;}
.y86{bottom:184.026667pt;}
.y2f{bottom:185.626667pt;}
.y60{bottom:193.146667pt;}
.y74{bottom:202.426667pt;}
.y2e{bottom:205.466667pt;}
.y5f{bottom:211.546667pt;}
.y85{bottom:220.826667pt;}
.y2d{bottom:223.866667pt;}
.y5e{bottom:229.946667pt;}
.y9f{bottom:239.226667pt;}
.y2c{bottom:242.266667pt;}
.y5d{bottom:248.346667pt;}
.y73{bottom:257.626667pt;}
.y2b{bottom:260.666667pt;}
.y5c{bottom:266.746667pt;}
.y84{bottom:276.026667pt;}
.y2a{bottom:279.066667pt;}
.y5b{bottom:285.146667pt;}
.y9d{bottom:294.426667pt;}
.y29{bottom:297.466667pt;}
.y5a{bottom:303.586667pt;}
.y72{bottom:312.866667pt;}
.y28{bottom:315.906667pt;}
.y59{bottom:321.986667pt;}
.y83{bottom:331.266667pt;}
.y27{bottom:334.306667pt;}
.y95{bottom:334.946667pt;}
.y58{bottom:340.386667pt;}
.y26{bottom:352.706667pt;}
.y57{bottom:358.786667pt;}
.y94{bottom:362.466667pt;}
.y71{bottom:368.066667pt;}
.y25{bottom:371.106667pt;}
.y56{bottom:377.186667pt;}
.y82{bottom:386.466667pt;}
.y24{bottom:389.506667pt;}
.y93{bottom:390.146667pt;}
.y55{bottom:395.586667pt;}
.y23{bottom:407.906667pt;}
.y54{bottom:413.986667pt;}
.y92{bottom:417.666667pt;}
.y70{bottom:423.266667pt;}
.y22{bottom:426.306667pt;}
.y53{bottom:432.386667pt;}
.y81{bottom:441.666667pt;}
.y21{bottom:444.706667pt;}
.y91{bottom:445.346667pt;}
.y52{bottom:450.786667pt;}
.y20{bottom:463.106667pt;}
.y51{bottom:469.186667pt;}
.y90{bottom:472.866667pt;}
.y6f{bottom:478.466667pt;}
.y1f{bottom:481.506667pt;}
.y50{bottom:487.586667pt;}
.y80{bottom:496.866667pt;}
.y1e{bottom:499.906667pt;}
.y8f{bottom:500.386667pt;}
.y4f{bottom:505.986667pt;}
.y1d{bottom:518.306667pt;}
.y4e{bottom:524.386667pt;}
.y8e{bottom:528.066667pt;}
.y6e{bottom:533.666667pt;}
.y1c{bottom:536.733333pt;}
.y4d{bottom:542.813333pt;}
.y8d{bottom:545.853333pt;}
.y7f{bottom:552.093333pt;}
.y1b{bottom:555.133333pt;}
.y4c{bottom:561.213333pt;}
.y1a{bottom:573.533333pt;}
.y4b{bottom:579.613333pt;}
.y8c{bottom:582.813333pt;}
.y7e{bottom:585.693333pt;}
.y6d{bottom:588.893333pt;}
.y19{bottom:591.933333pt;}
.y4a{bottom:598.013333pt;}
.y7d{bottom:607.293333pt;}
.y18{bottom:610.333333pt;}
.y49{bottom:616.413333pt;}
.y17{bottom:628.733333pt;}
.y48{bottom:634.813333pt;}
.y6c{bottom:644.093333pt;}
.y16{bottom:647.133333pt;}
.y47{bottom:653.213333pt;}
.y7c{bottom:662.493333pt;}
.y15{bottom:665.533333pt;}
.y46{bottom:671.613333pt;}
.y14{bottom:683.933333pt;}
.y45{bottom:690.013333pt;}
.y6b{bottom:699.293333pt;}
.y13{bottom:702.333333pt;}
.y44{bottom:708.413333pt;}
.y7b{bottom:717.693333pt;}
.y12{bottom:720.733333pt;}
.y43{bottom:726.813333pt;}
.y9c{bottom:736.093333pt;}
.y11{bottom:739.133333pt;}
.y42{bottom:745.213333pt;}
.y6a{bottom:754.493333pt;}
.y10{bottom:757.533333pt;}
.y41{bottom:763.613333pt;}
.y7a{bottom:772.893333pt;}
.yf{bottom:775.973333pt;}
.y40{bottom:782.053333pt;}
.ye{bottom:794.373333pt;}
.y3f{bottom:800.453333pt;}
.y69{bottom:809.733333pt;}
.yd{bottom:812.773333pt;}
.y3e{bottom:818.853333pt;}
.y79{bottom:828.133333pt;}
.yc{bottom:831.173333pt;}
.y3d{bottom:837.253333pt;}
.ya0{bottom:846.533333pt;}
.yb{bottom:849.573333pt;}
.y3c{bottom:855.653333pt;}
.y68{bottom:864.933333pt;}
.ya{bottom:867.973333pt;}
.y3b{bottom:874.053333pt;}
.y78{bottom:883.333333pt;}
.y9{bottom:886.853333pt;}
.y3a{bottom:892.453333pt;}
.y77{bottom:901.733333pt;}
.y8{bottom:908.293333pt;}
.y39{bottom:910.853333pt;}
.y67{bottom:920.133333pt;}
.y7{bottom:929.253333pt;}
.y38{bottom:947.653333pt;}
.y6{bottom:948.773333pt;}
.y37{bottom:966.053333pt;}
.y5{bottom:973.413333pt;}
.y66{bottom:975.333333pt;}
.y36{bottom:984.453333pt;}
.y4{bottom:997.893333pt;}
.y35{bottom:1002.853333pt;}
.y2{bottom:1042.400000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:30.982500pt;}
.h7{height:38.441250pt;}
.h9{height:47.621250pt;}
.h5{height:56.843750pt;}
.h2{height:57.375000pt;}
.h3{height:58.563750pt;}
.h6{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:74.559988pt;}
.x1{left:75.519988pt;}
.x2{left:78.399988pt;}
.xd{left:79.871988pt;}
.x4{left:82.271988pt;}
.x9{left:113.311988pt;}
.x8{left:122.751988pt;}
.x14{left:153.626655pt;}
.xf{left:167.866655pt;}
.x12{left:169.306655pt;}
.x6{left:208.186655pt;}
.x5{left:271.906655pt;}
.xc{left:304.706655pt;}
.x10{left:317.346655pt;}
.x3{left:343.746655pt;}
.xa{left:438.493310pt;}
.xb{left:443.933322pt;}
.x13{left:538.973322pt;}
.x11{left:542.333322pt;}
.xe{left:702.053322pt;}
}




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