
    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_fd44037877c8c4907247762e.woff2')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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_4a444ad32d5de328c4d9efc7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9d0ce1b6da279c2ecbf2b3b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_3bc51e1b56f7bebde16c3690.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_d7c4a4fc49b7471b885cc4a0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_efbf441d50c4c459efab0355.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls3{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-4.680000px;}
._c{margin-left:-3.456000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._3{width:3.369600px;}
._4{width:4.911120px;}
._b{width:6.680880px;}
._e{width:8.034240px;}
._37{width:9.072000px;}
._a{width:10.080000px;}
._13{width:11.664000px;}
._7{width:13.392000px;}
._8{width:14.519520px;}
._11{width:16.009920px;}
._16{width:19.296000px;}
._17{width:20.376000px;}
._f{width:22.320000px;}
._9{width:23.472000px;}
._12{width:24.605760px;}
._3d{width:25.704000px;}
._45{width:26.729280px;}
._15{width:28.584000px;}
._44{width:29.878080px;}
._33{width:31.320000px;}
._23{width:33.768000px;}
._1a{width:37.152000px;}
._31{width:41.400000px;}
._3a{width:42.461760px;}
._34{width:43.560000px;}
._22{width:44.784000px;}
._40{width:47.016000px;}
._2a{width:48.816000px;}
._5{width:52.144560px;}
._6{width:53.349120px;}
._14{width:55.272000px;}
._10{width:57.000000px;}
._2{width:58.883760px;}
._28{width:63.432000px;}
._26{width:69.192000px;}
._3b{width:71.442240px;}
._2e{width:73.223040px;}
._39{width:77.993280px;}
._1d{width:85.985280px;}
._2f{width:89.136000px;}
._38{width:90.377280px;}
._36{width:93.096000px;}
._20{width:101.088000px;}
._27{width:105.480000px;}
._2c{width:108.504000px;}
._1e{width:112.896000px;}
._24{width:117.000000px;}
._21{width:129.024000px;}
._35{width:133.128000px;}
._32{width:136.943040px;}
._18{width:145.080000px;}
._2d{width:150.048000px;}
._43{width:152.568000px;}
._29{width:161.064000px;}
._1f{width:169.128000px;}
._19{width:177.264000px;}
._25{width:181.656000px;}
._1b{width:185.256000px;}
._1c{width:189.144000px;}
._2b{width:197.280000px;}
._3c{width:201.240000px;}
._30{width:217.008000px;}
._3e{width:265.320000px;}
._41{width:273.168000px;}
._42{width:278.280000px;}
._3f{width:309.816000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.960000px;}
.y78{bottom:24.480000px;}
.y5a{bottom:24.660000px;}
.y6f{bottom:24.705000px;}
.y6c{bottom:45.180000px;}
.y5e{bottom:45.360000px;}
.y66{bottom:45.405000px;}
.y5{bottom:57.420000px;}
.y6b{bottom:65.880000px;}
.y77{bottom:65.910000px;}
.y5d{bottom:66.060000px;}
.y65{bottom:66.105000px;}
.y4{bottom:76.896000px;}
.y6a{bottom:86.610000px;}
.y62{bottom:86.760000px;}
.y64{bottom:86.805000px;}
.y3{bottom:96.156000px;}
.y61{bottom:107.460000px;}
.y7a{bottom:107.505000px;}
.y2{bottom:115.236000px;}
.y1{bottom:134.136000px;}
.y53{bottom:154.110000px;}
.y71{bottom:162.750000px;}
.y29{bottom:166.350000px;}
.y5c{bottom:170.310000px;}
.y43{bottom:180.930000px;}
.y52{bottom:185.070000px;}
.y92{bottom:185.430000px;}
.y28{bottom:187.050000px;}
.y70{bottom:204.870000px;}
.y91{bottom:206.130000px;}
.y42{bottom:212.070000px;}
.y51{bottom:216.210000px;}
.y27{bottom:222.870000px;}
.y7b{bottom:225.570000px;}
.y90{bottom:241.950000px;}
.y41{bottom:243.030000px;}
.y26{bottom:243.570000px;}
.y50{bottom:247.170000px;}
.yaf{bottom:248.250000px;}
.y59{bottom:253.830000px;}
.y8f{bottom:262.650000px;}
.y25{bottom:264.270000px;}
.yae{bottom:268.950000px;}
.y40{bottom:274.170000px;}
.y4f{bottom:278.310000px;}
.y24{bottom:284.970000px;}
.y8e{bottom:298.290000px;}
.yad{bottom:304.770000px;}
.y3f{bottom:305.130000px;}
.y23{bottom:305.670000px;}
.y6e{bottom:309.090000px;}
.y4e{bottom:309.270000px;}
.y58{bottom:319.035000px;}
.yac{bottom:325.515000px;}
.y22{bottom:326.415000px;}
.y3e{bottom:336.315000px;}
.y4d{bottom:340.275000px;}
.y21{bottom:347.115000px;}
.y8d{bottom:354.675000px;}
.y57{bottom:360.255000px;}
.yab{bottom:361.155000px;}
.y3d{bottom:367.275000px;}
.y20{bottom:367.815000px;}
.y4c{bottom:371.415000px;}
.y8c{bottom:375.375000px;}
.yaa{bottom:381.855000px;}
.y1f{bottom:388.515000px;}
.y56{bottom:393.735000px;}
.y4b{bottom:402.375000px;}
.y1e{bottom:409.215000px;}
.y8b{bottom:411.015000px;}
.y6d{bottom:413.355000px;}
.y3c{bottom:415.515000px;}
.ya9{bottom:417.495000px;}
.y8a{bottom:431.715000px;}
.y4a{bottom:433.515000px;}
.y79{bottom:434.055000px;}
.ya8{bottom:438.195000px;}
.y1d{bottom:444.855000px;}
.y3b{bottom:464.475000px;}
.y89{bottom:467.535000px;}
.ya7{bottom:473.835000px;}
.y1c{bottom:480.495000px;}
.y88{bottom:488.235000px;}
.ya6{bottom:494.535000px;}
.y3a{bottom:495.615000px;}
.y69{bottom:497.055000px;}
.y1b{bottom:501.195000px;}
.ya5{bottom:515.235000px;}
.y76{bottom:517.755000px;}
.y39{bottom:526.575000px;}
.y87{bottom:536.295000px;}
.y1a{bottom:536.835000px;}
.ya4{bottom:551.055000px;}
.y19{bottom:557.535000px;}
.y38{bottom:557.715000px;}
.y86{bottom:570.525000px;}
.ya3{bottom:571.785000px;}
.y18{bottom:578.265000px;}
.y37{bottom:588.705000px;}
.y17{bottom:598.965000px;}
.y68{bottom:601.305000px;}
.y85{bottom:601.485000px;}
.ya2{bottom:607.425000px;}
.y16{bottom:619.665000px;}
.y36{bottom:619.845000px;}
.y75{bottom:622.005000px;}
.ya1{bottom:628.125000px;}
.y84{bottom:632.625000px;}
.y15{bottom:640.365000px;}
.y35{bottom:650.805000px;}
.y14{bottom:661.065000px;}
.y83{bottom:663.585000px;}
.ya0{bottom:663.765000px;}
.y13{bottom:681.765000px;}
.y34{bottom:681.945000px;}
.y9f{bottom:684.465000px;}
.y67{bottom:684.825000px;}
.y82{bottom:694.725000px;}
.y12{bottom:702.465000px;}
.y9e{bottom:705.165000px;}
.y33{bottom:712.905000px;}
.y11{bottom:723.165000px;}
.y81{bottom:725.685000px;}
.y74{bottom:726.225000px;}
.y9d{bottom:740.985000px;}
.y10{bottom:743.865000px;}
.y32{bottom:744.045000px;}
.y80{bottom:756.825000px;}
.y9c{bottom:761.685000px;}
.y31{bottom:775.005000px;}
.yf{bottom:779.685000px;}
.y63{bottom:789.045000px;}
.y9b{bottom:797.325000px;}
.ye{bottom:800.385000px;}
.y7f{bottom:804.885000px;}
.y30{bottom:806.145000px;}
.y73{bottom:809.745000px;}
.y9a{bottom:818.025000px;}
.yd{bottom:836.070000px;}
.y2f{bottom:837.150000px;}
.y55{bottom:850.470000px;}
.y99{bottom:853.710000px;}
.y7e{bottom:856.230000px;}
.yc{bottom:856.770000px;}
.y2e{bottom:868.290000px;}
.y98{bottom:874.410000px;}
.y49{bottom:885.390000px;}
.y54{bottom:888.450000px;}
.y60{bottom:893.310000px;}
.y7d{bottom:897.450000px;}
.yb{bottom:899.070000px;}
.y2d{bottom:899.250000px;}
.y97{bottom:910.230000px;}
.y7c{bottom:914.010000px;}
.y48{bottom:919.410000px;}
.ya{bottom:923.190000px;}
.y2c{bottom:930.390000px;}
.y96{bottom:930.930000px;}
.y9{bottom:947.310000px;}
.y47{bottom:950.550000px;}
.y2b{bottom:961.350000px;}
.y95{bottom:966.570000px;}
.y46{bottom:981.510000px;}
.y94{bottom:987.270000px;}
.y8{bottom:992.490000px;}
.y72{bottom:997.530000px;}
.y45{bottom:1012.650000px;}
.y7{bottom:1016.610000px;}
.y5f{bottom:1018.230000px;}
.y93{bottom:1022.910000px;}
.y2a{bottom:1040.550000px;}
.y6{bottom:1040.730000px;}
.y44{bottom:1043.610000px;}
.h7{height:41.400000px;}
.h5{height:52.628906px;}
.h2{height:55.825312px;}
.h6{height:56.084062px;}
.h1{height:59.383125px;}
.he{height:62.100000px;}
.h8{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:74.820586px;}
.h9{height:82.800000px;}
.hf{height:82.836000px;}
.hd{height:103.356000px;}
.hc{height:103.500000px;}
.hb{height:103.536000px;}
.ha{height:124.200000px;}
.h10{height:124.236000px;}
.h0{height:1188.000000px;}
.w3{width:140.220000px;}
.w2{width:140.436000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.xd{left:13.680000px;}
.x13{left:27.180000px;}
.xb{left:28.614000px;}
.x11{left:31.140000px;}
.xf{left:39.990000px;}
.x1{left:127.655986px;}
.x3{left:135.755986px;}
.x9{left:158.069986px;}
.x4{left:160.589986px;}
.x15{left:170.129986px;}
.x5{left:174.269986px;}
.x7{left:181.649986px;}
.xc{left:269.535000px;}
.x6{left:298.874986px;}
.xe{left:410.475000px;}
.x8{left:480.344986px;}
.x10{left:551.625000px;}
.x12{left:692.790000px;}
.xa{left:799.199986px;}
.x2{left:833.219986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-4.160000pt;}
._c{margin-left:-3.072000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._3{width:2.995200pt;}
._4{width:4.365440pt;}
._b{width:5.938560pt;}
._e{width:7.141547pt;}
._37{width:8.064000pt;}
._a{width:8.960000pt;}
._13{width:10.368000pt;}
._7{width:11.904000pt;}
._8{width:12.906240pt;}
._11{width:14.231040pt;}
._16{width:17.152000pt;}
._17{width:18.112000pt;}
._f{width:19.840000pt;}
._9{width:20.864000pt;}
._12{width:21.871787pt;}
._3d{width:22.848000pt;}
._45{width:23.759360pt;}
._15{width:25.408000pt;}
._44{width:26.558293pt;}
._33{width:27.840000pt;}
._23{width:30.016000pt;}
._1a{width:33.024000pt;}
._31{width:36.800000pt;}
._3a{width:37.743787pt;}
._34{width:38.720000pt;}
._22{width:39.808000pt;}
._40{width:41.792000pt;}
._2a{width:43.392000pt;}
._5{width:46.350720pt;}
._6{width:47.421440pt;}
._14{width:49.130667pt;}
._10{width:50.666667pt;}
._2{width:52.341120pt;}
._28{width:56.384000pt;}
._26{width:61.504000pt;}
._3b{width:63.504213pt;}
._2e{width:65.087147pt;}
._39{width:69.327360pt;}
._1d{width:76.431360pt;}
._2f{width:79.232000pt;}
._38{width:80.335360pt;}
._36{width:82.752000pt;}
._20{width:89.856000pt;}
._27{width:93.760000pt;}
._2c{width:96.448000pt;}
._1e{width:100.352000pt;}
._24{width:104.000000pt;}
._21{width:114.688000pt;}
._35{width:118.336000pt;}
._32{width:121.727147pt;}
._18{width:128.960000pt;}
._2d{width:133.376000pt;}
._43{width:135.616000pt;}
._29{width:143.168000pt;}
._1f{width:150.336000pt;}
._19{width:157.568000pt;}
._25{width:161.472000pt;}
._1b{width:164.672000pt;}
._1c{width:168.128000pt;}
._2b{width:175.360000pt;}
._3c{width:178.880000pt;}
._30{width:192.896000pt;}
._3e{width:235.840000pt;}
._41{width:242.816000pt;}
._42{width:247.360000pt;}
._3f{width:275.392000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.520000pt;}
.y78{bottom:21.760000pt;}
.y5a{bottom:21.920000pt;}
.y6f{bottom:21.960000pt;}
.y6c{bottom:40.160000pt;}
.y5e{bottom:40.320000pt;}
.y66{bottom:40.360000pt;}
.y5{bottom:51.040000pt;}
.y6b{bottom:58.560000pt;}
.y77{bottom:58.586667pt;}
.y5d{bottom:58.720000pt;}
.y65{bottom:58.760000pt;}
.y4{bottom:68.352000pt;}
.y6a{bottom:76.986667pt;}
.y62{bottom:77.120000pt;}
.y64{bottom:77.160000pt;}
.y3{bottom:85.472000pt;}
.y61{bottom:95.520000pt;}
.y7a{bottom:95.560000pt;}
.y2{bottom:102.432000pt;}
.y1{bottom:119.232000pt;}
.y53{bottom:136.986667pt;}
.y71{bottom:144.666667pt;}
.y29{bottom:147.866667pt;}
.y5c{bottom:151.386667pt;}
.y43{bottom:160.826667pt;}
.y52{bottom:164.506667pt;}
.y92{bottom:164.826667pt;}
.y28{bottom:166.266667pt;}
.y70{bottom:182.106667pt;}
.y91{bottom:183.226667pt;}
.y42{bottom:188.506667pt;}
.y51{bottom:192.186667pt;}
.y27{bottom:198.106667pt;}
.y7b{bottom:200.506667pt;}
.y90{bottom:215.066667pt;}
.y41{bottom:216.026667pt;}
.y26{bottom:216.506667pt;}
.y50{bottom:219.706667pt;}
.yaf{bottom:220.666667pt;}
.y59{bottom:225.626667pt;}
.y8f{bottom:233.466667pt;}
.y25{bottom:234.906667pt;}
.yae{bottom:239.066667pt;}
.y40{bottom:243.706667pt;}
.y4f{bottom:247.386667pt;}
.y24{bottom:253.306667pt;}
.y8e{bottom:265.146667pt;}
.yad{bottom:270.906667pt;}
.y3f{bottom:271.226667pt;}
.y23{bottom:271.706667pt;}
.y6e{bottom:274.746667pt;}
.y4e{bottom:274.906667pt;}
.y58{bottom:283.586667pt;}
.yac{bottom:289.346667pt;}
.y22{bottom:290.146667pt;}
.y3e{bottom:298.946667pt;}
.y4d{bottom:302.466667pt;}
.y21{bottom:308.546667pt;}
.y8d{bottom:315.266667pt;}
.y57{bottom:320.226667pt;}
.yab{bottom:321.026667pt;}
.y3d{bottom:326.466667pt;}
.y20{bottom:326.946667pt;}
.y4c{bottom:330.146667pt;}
.y8c{bottom:333.666667pt;}
.yaa{bottom:339.426667pt;}
.y1f{bottom:345.346667pt;}
.y56{bottom:349.986667pt;}
.y4b{bottom:357.666667pt;}
.y1e{bottom:363.746667pt;}
.y8b{bottom:365.346667pt;}
.y6d{bottom:367.426667pt;}
.y3c{bottom:369.346667pt;}
.ya9{bottom:371.106667pt;}
.y8a{bottom:383.746667pt;}
.y4a{bottom:385.346667pt;}
.y79{bottom:385.826667pt;}
.ya8{bottom:389.506667pt;}
.y1d{bottom:395.426667pt;}
.y3b{bottom:412.866667pt;}
.y89{bottom:415.586667pt;}
.ya7{bottom:421.186667pt;}
.y1c{bottom:427.106667pt;}
.y88{bottom:433.986667pt;}
.ya6{bottom:439.586667pt;}
.y3a{bottom:440.546667pt;}
.y69{bottom:441.826667pt;}
.y1b{bottom:445.506667pt;}
.ya5{bottom:457.986667pt;}
.y76{bottom:460.226667pt;}
.y39{bottom:468.066667pt;}
.y87{bottom:476.706667pt;}
.y1a{bottom:477.186667pt;}
.ya4{bottom:489.826667pt;}
.y19{bottom:495.586667pt;}
.y38{bottom:495.746667pt;}
.y86{bottom:507.133333pt;}
.ya3{bottom:508.253333pt;}
.y18{bottom:514.013333pt;}
.y37{bottom:523.293333pt;}
.y17{bottom:532.413333pt;}
.y68{bottom:534.493333pt;}
.y85{bottom:534.653333pt;}
.ya2{bottom:539.933333pt;}
.y16{bottom:550.813333pt;}
.y36{bottom:550.973333pt;}
.y75{bottom:552.893333pt;}
.ya1{bottom:558.333333pt;}
.y84{bottom:562.333333pt;}
.y15{bottom:569.213333pt;}
.y35{bottom:578.493333pt;}
.y14{bottom:587.613333pt;}
.y83{bottom:589.853333pt;}
.ya0{bottom:590.013333pt;}
.y13{bottom:606.013333pt;}
.y34{bottom:606.173333pt;}
.y9f{bottom:608.413333pt;}
.y67{bottom:608.733333pt;}
.y82{bottom:617.533333pt;}
.y12{bottom:624.413333pt;}
.y9e{bottom:626.813333pt;}
.y33{bottom:633.693333pt;}
.y11{bottom:642.813333pt;}
.y81{bottom:645.053333pt;}
.y74{bottom:645.533333pt;}
.y9d{bottom:658.653333pt;}
.y10{bottom:661.213333pt;}
.y32{bottom:661.373333pt;}
.y80{bottom:672.733333pt;}
.y9c{bottom:677.053333pt;}
.y31{bottom:688.893333pt;}
.yf{bottom:693.053333pt;}
.y63{bottom:701.373333pt;}
.y9b{bottom:708.733333pt;}
.ye{bottom:711.453333pt;}
.y7f{bottom:715.453333pt;}
.y30{bottom:716.573333pt;}
.y73{bottom:719.773333pt;}
.y9a{bottom:727.133333pt;}
.yd{bottom:743.173333pt;}
.y2f{bottom:744.133333pt;}
.y55{bottom:755.973333pt;}
.y99{bottom:758.853333pt;}
.y7e{bottom:761.093333pt;}
.yc{bottom:761.573333pt;}
.y2e{bottom:771.813333pt;}
.y98{bottom:777.253333pt;}
.y49{bottom:787.013333pt;}
.y54{bottom:789.733333pt;}
.y60{bottom:794.053333pt;}
.y7d{bottom:797.733333pt;}
.yb{bottom:799.173333pt;}
.y2d{bottom:799.333333pt;}
.y97{bottom:809.093333pt;}
.y7c{bottom:812.453333pt;}
.y48{bottom:817.253333pt;}
.ya{bottom:820.613333pt;}
.y2c{bottom:827.013333pt;}
.y96{bottom:827.493333pt;}
.y9{bottom:842.053333pt;}
.y47{bottom:844.933333pt;}
.y2b{bottom:854.533333pt;}
.y95{bottom:859.173333pt;}
.y46{bottom:872.453333pt;}
.y94{bottom:877.573333pt;}
.y8{bottom:882.213333pt;}
.y72{bottom:886.693333pt;}
.y45{bottom:900.133333pt;}
.y7{bottom:903.653333pt;}
.y5f{bottom:905.093333pt;}
.y93{bottom:909.253333pt;}
.y2a{bottom:924.933333pt;}
.y6{bottom:925.093333pt;}
.y44{bottom:927.653333pt;}
.h7{height:36.800000pt;}
.h5{height:46.781250pt;}
.h2{height:49.622500pt;}
.h6{height:49.852500pt;}
.h1{height:52.785000pt;}
.he{height:55.200000pt;}
.h8{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:66.507188pt;}
.h9{height:73.600000pt;}
.hf{height:73.632000pt;}
.hd{height:91.872000pt;}
.hc{height:92.000000pt;}
.hb{height:92.032000pt;}
.ha{height:110.400000pt;}
.h10{height:110.432000pt;}
.h0{height:1056.000000pt;}
.w3{width:124.640000pt;}
.w2{width:124.832000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.xd{left:12.160000pt;}
.x13{left:24.160000pt;}
.xb{left:25.434667pt;}
.x11{left:27.680000pt;}
.xf{left:35.546667pt;}
.x1{left:113.471988pt;}
.x3{left:120.671988pt;}
.x9{left:140.506655pt;}
.x4{left:142.746655pt;}
.x15{left:151.226655pt;}
.x5{left:154.906655pt;}
.x7{left:161.466655pt;}
.xc{left:239.586667pt;}
.x6{left:265.666655pt;}
.xe{left:364.866667pt;}
.x8{left:426.973321pt;}
.x10{left:490.333333pt;}
.x12{left:615.813333pt;}
.xa{left:710.399988pt;}
.x2{left:740.639988pt;}
}




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