
    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_6167e3a572de3071dead5325.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e39782d596a41507136fab88.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6b4bc7b6fa10d53911c7d222.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45110ea9baad3aa905a476b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b96821414b00481c791c7015.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5aff80ba554b4b123c73fa37.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_b181160d77d7e2bd67a39bb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.360000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:31.626720px;}
.ls4{letter-spacing:49.602720px;}
.ls1{letter-spacing:49.626720px;}
.ls0{letter-spacing:983.160000px;}
.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:-32.808240px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-3.944160px;}
._7{margin-left:-2.629440px;}
._3{margin-left:-1.015920px;}
._0{width:1.015920px;}
._1{width:2.762880px;}
._5{width:4.183200px;}
._d{width:5.199120px;}
._4{width:6.215040px;}
._6{width:7.470000px;}
._e{width:8.545680px;}
._8{width:9.561600px;}
._c{width:10.995840px;}
._10{width:12.848400px;}
._11{width:13.914000px;}
._a{width:16.135200px;}
._9{width:17.151120px;}
._12{width:18.346320px;}
._f{width:20.079360px;}
._18{width:21.214800px;}
._14{width:22.290480px;}
._13{width:23.904000px;}
._17{width:25.278480px;}
._16{width:29.687040px;}
._15{width:31.254480px;}
._19{width:116.774640px;}
._2{width:768.843360px;}
._1a{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y42{bottom:55.800000px;}
.y3f{bottom:104.760000px;}
.y7f{bottom:105.840000px;}
.ydb{bottom:118.800000px;}
.y3e{bottom:122.040000px;}
.y7e{bottom:123.120000px;}
.yb3{bottom:132.840000px;}
.yda{bottom:136.116000px;}
.y41{bottom:138.276000px;}
.y3d{bottom:139.356000px;}
.y7d{bottom:140.436000px;}
.yd9{bottom:153.390000px;}
.y40{bottom:155.550000px;}
.y3c{bottom:156.630000px;}
.y7c{bottom:157.710000px;}
.yb2{bottom:167.430000px;}
.yd8{bottom:170.670000px;}
.y3b{bottom:173.910000px;}
.y7b{bottom:174.990000px;}
.yb1{bottom:184.710000px;}
.yd7{bottom:187.770000px;}
.y3a{bottom:191.010000px;}
.y7a{bottom:192.090000px;}
.yb0{bottom:201.810000px;}
.yd6{bottom:205.050000px;}
.y39{bottom:208.290000px;}
.y79{bottom:209.370000px;}
.yaf{bottom:219.090000px;}
.yd5{bottom:222.330000px;}
.y38{bottom:225.570000px;}
.y78{bottom:227.730000px;}
.yae{bottom:236.370000px;}
.yd4{bottom:239.610000px;}
.y37{bottom:242.850000px;}
.y77{bottom:245.010000px;}
.yad{bottom:253.650000px;}
.yd3{bottom:256.890000px;}
.y36{bottom:260.130000px;}
.y76{bottom:263.370000px;}
.yac{bottom:270.930000px;}
.yd2{bottom:274.170000px;}
.y35{bottom:277.410000px;}
.y75{bottom:280.650000px;}
.yab{bottom:288.030000px;}
.yd1{bottom:291.270000px;}
.y34{bottom:294.510000px;}
.y74{bottom:298.830000px;}
.yaa{bottom:305.310000px;}
.yd0{bottom:308.550000px;}
.y33{bottom:311.790000px;}
.y73{bottom:316.110000px;}
.ya9{bottom:322.590000px;}
.ycf{bottom:325.830000px;}
.y32{bottom:329.070000px;}
.y72{bottom:333.390000px;}
.ya8{bottom:339.870000px;}
.yce{bottom:343.110000px;}
.y31{bottom:346.350000px;}
.y71{bottom:351.750000px;}
.ya7{bottom:357.150000px;}
.ycd{bottom:360.390000px;}
.y30{bottom:363.630000px;}
.y70{bottom:369.030000px;}
.ya6{bottom:374.430000px;}
.ycc{bottom:377.670000px;}
.y2f{bottom:380.730000px;}
.y6f{bottom:387.255000px;}
.ya5{bottom:391.575000px;}
.ycb{bottom:394.815000px;}
.y2e{bottom:398.055000px;}
.y6e{bottom:404.535000px;}
.ya4{bottom:408.855000px;}
.yca{bottom:412.095000px;}
.y2d{bottom:415.335000px;}
.y6d{bottom:421.815000px;}
.ya3{bottom:426.135000px;}
.yc9{bottom:429.375000px;}
.y2c{bottom:432.615000px;}
.y6c{bottom:439.095000px;}
.ya2{bottom:443.415000px;}
.yc8{bottom:446.655000px;}
.y2b{bottom:449.895000px;}
.y6b{bottom:456.375000px;}
.ya1{bottom:460.695000px;}
.yc7{bottom:463.935000px;}
.y2a{bottom:467.175000px;}
.y6a{bottom:473.655000px;}
.ya0{bottom:477.975000px;}
.yc6{bottom:481.035000px;}
.y29{bottom:484.275000px;}
.y69{bottom:490.755000px;}
.y9f{bottom:495.075000px;}
.yc5{bottom:498.315000px;}
.y28{bottom:501.555000px;}
.y68{bottom:508.035000px;}
.y9e{bottom:512.355000px;}
.yc4{bottom:515.595000px;}
.y27{bottom:518.835000px;}
.y67{bottom:526.395000px;}
.y9d{bottom:529.635000px;}
.y26{bottom:536.115000px;}
.y66{bottom:543.675000px;}
.y9c{bottom:546.915000px;}
.yc3{bottom:550.155000px;}
.y25{bottom:553.395000px;}
.y65{bottom:560.955000px;}
.y9b{bottom:564.195000px;}
.yc2{bottom:567.435000px;}
.y24{bottom:570.675000px;}
.y64{bottom:579.315000px;}
.y9a{bottom:581.295000px;}
.yc1{bottom:584.535000px;}
.y23{bottom:587.775000px;}
.y63{bottom:596.415000px;}
.y99{bottom:598.575000px;}
.yc0{bottom:601.815000px;}
.y22{bottom:605.055000px;}
.y62{bottom:613.695000px;}
.y98{bottom:615.855000px;}
.ybf{bottom:619.095000px;}
.y21{bottom:622.335000px;}
.y61{bottom:632.055000px;}
.y97{bottom:633.135000px;}
.ybe{bottom:636.375000px;}
.y20{bottom:639.615000px;}
.y60{bottom:649.365000px;}
.y96{bottom:650.445000px;}
.ybd{bottom:653.685000px;}
.y1f{bottom:656.925000px;}
.y5f{bottom:666.645000px;}
.y95{bottom:667.725000px;}
.ybc{bottom:670.965000px;}
.y1e{bottom:674.025000px;}
.y5e{bottom:683.745000px;}
.y94{bottom:684.825000px;}
.ybb{bottom:688.065000px;}
.y1d{bottom:691.305000px;}
.y5d{bottom:702.105000px;}
.yba{bottom:705.345000px;}
.y1c{bottom:708.585000px;}
.y5c{bottom:719.385000px;}
.yb9{bottom:722.625000px;}
.y1b{bottom:725.865000px;}
.y5b{bottom:736.665000px;}
.y93{bottom:737.745000px;}
.yb8{bottom:739.905000px;}
.y1a{bottom:743.145000px;}
.y5a{bottom:753.945000px;}
.y92{bottom:755.025000px;}
.yb7{bottom:757.185000px;}
.y19{bottom:760.425000px;}
.y59{bottom:771.225000px;}
.y91{bottom:773.385000px;}
.yb6{bottom:774.465000px;}
.y18{bottom:777.525000px;}
.y58{bottom:788.325000px;}
.y90{bottom:790.485000px;}
.yb5{bottom:791.565000px;}
.y17{bottom:794.805000px;}
.y57{bottom:805.605000px;}
.y8f{bottom:808.845000px;}
.y16{bottom:812.085000px;}
.y56{bottom:822.885000px;}
.y8e{bottom:826.125000px;}
.y15{bottom:829.365000px;}
.y8d{bottom:843.405000px;}
.y14{bottom:846.645000px;}
.y55{bottom:857.445000px;}
.y8c{bottom:860.685000px;}
.y13{bottom:863.925000px;}
.y54{bottom:874.725000px;}
.y8b{bottom:877.785000px;}
.y12{bottom:881.025000px;}
.y53{bottom:891.825000px;}
.y8a{bottom:895.110000px;}
.y11{bottom:898.350000px;}
.y52{bottom:910.230000px;}
.y89{bottom:912.390000px;}
.y10{bottom:915.630000px;}
.y51{bottom:927.510000px;}
.y88{bottom:929.670000px;}
.yf{bottom:932.910000px;}
.y50{bottom:945.870000px;}
.y87{bottom:946.950000px;}
.ye{bottom:950.190000px;}
.y4f{bottom:963.150000px;}
.y86{bottom:964.230000px;}
.yd{bottom:967.470000px;}
.y4e{bottom:981.330000px;}
.yc{bottom:984.570000px;}
.y4d{bottom:998.610000px;}
.yb{bottom:1001.850000px;}
.y85{bottom:1015.890000px;}
.y4c{bottom:1016.970000px;}
.ya{bottom:1019.130000px;}
.y84{bottom:1033.170000px;}
.y4b{bottom:1034.250000px;}
.y9{bottom:1036.410000px;}
.y83{bottom:1050.450000px;}
.y4a{bottom:1051.530000px;}
.y8{bottom:1053.690000px;}
.y82{bottom:1067.730000px;}
.y49{bottom:1068.810000px;}
.y7{bottom:1070.790000px;}
.y48{bottom:1085.910000px;}
.y6{bottom:1088.070000px;}
.y47{bottom:1103.190000px;}
.yb4{bottom:1104.270000px;}
.y5{bottom:1105.350000px;}
.y46{bottom:1120.470000px;}
.y81{bottom:1121.550000px;}
.y4{bottom:1122.630000px;}
.y45{bottom:1138.830000px;}
.y80{bottom:1139.910000px;}
.y44{bottom:1156.140000px;}
.y3{bottom:1157.220000px;}
.y43{bottom:1173.240000px;}
.y2{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h8{height:52.998047px;}
.h6{height:53.573906px;}
.h4{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h7{height:61.423863px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.xa{left:136.115987px;}
.x2{left:237.989987px;}
.x5{left:358.274987px;}
.xc{left:457.304987px;}
.x3{left:461.444987px;}
.xb{left:487.004987px;}
.x8{left:537.944987px;}
.xd{left:599.324987px;}
.x4{left:667.229987px;}
.x7{left:692.249987px;}
.x6{left:713.489987px;}
.x9{left:786.749987px;}
@media print{
.v1{vertical-align:-61.546667pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:28.112640pt;}
.ls4{letter-spacing:44.091307pt;}
.ls1{letter-spacing:44.112640pt;}
.ls0{letter-spacing:873.920000pt;}
.ws1{word-spacing:-29.162880pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-3.505920pt;}
._7{margin-left:-2.337280pt;}
._3{margin-left:-0.903040pt;}
._0{width:0.903040pt;}
._1{width:2.455893pt;}
._5{width:3.718400pt;}
._d{width:4.621440pt;}
._4{width:5.524480pt;}
._6{width:6.640000pt;}
._e{width:7.596160pt;}
._8{width:8.499200pt;}
._c{width:9.774080pt;}
._10{width:11.420800pt;}
._11{width:12.368000pt;}
._a{width:14.342400pt;}
._9{width:15.245440pt;}
._12{width:16.307840pt;}
._f{width:17.848320pt;}
._18{width:18.857600pt;}
._14{width:19.813760pt;}
._13{width:21.248000pt;}
._17{width:22.469760pt;}
._16{width:26.388480pt;}
._15{width:27.781760pt;}
._19{width:103.799680pt;}
._2{width:683.416320pt;}
._1a{width:754.858667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:49.600000pt;}
.y3f{bottom:93.120000pt;}
.y7f{bottom:94.080000pt;}
.ydb{bottom:105.600000pt;}
.y3e{bottom:108.480000pt;}
.y7e{bottom:109.440000pt;}
.yb3{bottom:118.080000pt;}
.yda{bottom:120.992000pt;}
.y41{bottom:122.912000pt;}
.y3d{bottom:123.872000pt;}
.y7d{bottom:124.832000pt;}
.yd9{bottom:136.346667pt;}
.y40{bottom:138.266667pt;}
.y3c{bottom:139.226667pt;}
.y7c{bottom:140.186667pt;}
.yb2{bottom:148.826667pt;}
.yd8{bottom:151.706667pt;}
.y3b{bottom:154.586667pt;}
.y7b{bottom:155.546667pt;}
.yb1{bottom:164.186667pt;}
.yd7{bottom:166.906667pt;}
.y3a{bottom:169.786667pt;}
.y7a{bottom:170.746667pt;}
.yb0{bottom:179.386667pt;}
.yd6{bottom:182.266667pt;}
.y39{bottom:185.146667pt;}
.y79{bottom:186.106667pt;}
.yaf{bottom:194.746667pt;}
.yd5{bottom:197.626667pt;}
.y38{bottom:200.506667pt;}
.y78{bottom:202.426667pt;}
.yae{bottom:210.106667pt;}
.yd4{bottom:212.986667pt;}
.y37{bottom:215.866667pt;}
.y77{bottom:217.786667pt;}
.yad{bottom:225.466667pt;}
.yd3{bottom:228.346667pt;}
.y36{bottom:231.226667pt;}
.y76{bottom:234.106667pt;}
.yac{bottom:240.826667pt;}
.yd2{bottom:243.706667pt;}
.y35{bottom:246.586667pt;}
.y75{bottom:249.466667pt;}
.yab{bottom:256.026667pt;}
.yd1{bottom:258.906667pt;}
.y34{bottom:261.786667pt;}
.y74{bottom:265.626667pt;}
.yaa{bottom:271.386667pt;}
.yd0{bottom:274.266667pt;}
.y33{bottom:277.146667pt;}
.y73{bottom:280.986667pt;}
.ya9{bottom:286.746667pt;}
.ycf{bottom:289.626667pt;}
.y32{bottom:292.506667pt;}
.y72{bottom:296.346667pt;}
.ya8{bottom:302.106667pt;}
.yce{bottom:304.986667pt;}
.y31{bottom:307.866667pt;}
.y71{bottom:312.666667pt;}
.ya7{bottom:317.466667pt;}
.ycd{bottom:320.346667pt;}
.y30{bottom:323.226667pt;}
.y70{bottom:328.026667pt;}
.ya6{bottom:332.826667pt;}
.ycc{bottom:335.706667pt;}
.y2f{bottom:338.426667pt;}
.y6f{bottom:344.226667pt;}
.ya5{bottom:348.066667pt;}
.ycb{bottom:350.946667pt;}
.y2e{bottom:353.826667pt;}
.y6e{bottom:359.586667pt;}
.ya4{bottom:363.426667pt;}
.yca{bottom:366.306667pt;}
.y2d{bottom:369.186667pt;}
.y6d{bottom:374.946667pt;}
.ya3{bottom:378.786667pt;}
.yc9{bottom:381.666667pt;}
.y2c{bottom:384.546667pt;}
.y6c{bottom:390.306667pt;}
.ya2{bottom:394.146667pt;}
.yc8{bottom:397.026667pt;}
.y2b{bottom:399.906667pt;}
.y6b{bottom:405.666667pt;}
.ya1{bottom:409.506667pt;}
.yc7{bottom:412.386667pt;}
.y2a{bottom:415.266667pt;}
.y6a{bottom:421.026667pt;}
.ya0{bottom:424.866667pt;}
.yc6{bottom:427.586667pt;}
.y29{bottom:430.466667pt;}
.y69{bottom:436.226667pt;}
.y9f{bottom:440.066667pt;}
.yc5{bottom:442.946667pt;}
.y28{bottom:445.826667pt;}
.y68{bottom:451.586667pt;}
.y9e{bottom:455.426667pt;}
.yc4{bottom:458.306667pt;}
.y27{bottom:461.186667pt;}
.y67{bottom:467.906667pt;}
.y9d{bottom:470.786667pt;}
.y26{bottom:476.546667pt;}
.y66{bottom:483.266667pt;}
.y9c{bottom:486.146667pt;}
.yc3{bottom:489.026667pt;}
.y25{bottom:491.906667pt;}
.y65{bottom:498.626667pt;}
.y9b{bottom:501.506667pt;}
.yc2{bottom:504.386667pt;}
.y24{bottom:507.266667pt;}
.y64{bottom:514.946667pt;}
.y9a{bottom:516.706667pt;}
.yc1{bottom:519.586667pt;}
.y23{bottom:522.466667pt;}
.y63{bottom:530.146667pt;}
.y99{bottom:532.066667pt;}
.yc0{bottom:534.946667pt;}
.y22{bottom:537.826667pt;}
.y62{bottom:545.506667pt;}
.y98{bottom:547.426667pt;}
.ybf{bottom:550.306667pt;}
.y21{bottom:553.186667pt;}
.y61{bottom:561.826667pt;}
.y97{bottom:562.786667pt;}
.ybe{bottom:565.666667pt;}
.y20{bottom:568.546667pt;}
.y60{bottom:577.213333pt;}
.y96{bottom:578.173333pt;}
.ybd{bottom:581.053333pt;}
.y1f{bottom:583.933333pt;}
.y5f{bottom:592.573333pt;}
.y95{bottom:593.533333pt;}
.ybc{bottom:596.413333pt;}
.y1e{bottom:599.133333pt;}
.y5e{bottom:607.773333pt;}
.y94{bottom:608.733333pt;}
.ybb{bottom:611.613333pt;}
.y1d{bottom:614.493333pt;}
.y5d{bottom:624.093333pt;}
.yba{bottom:626.973333pt;}
.y1c{bottom:629.853333pt;}
.y5c{bottom:639.453333pt;}
.yb9{bottom:642.333333pt;}
.y1b{bottom:645.213333pt;}
.y5b{bottom:654.813333pt;}
.y93{bottom:655.773333pt;}
.yb8{bottom:657.693333pt;}
.y1a{bottom:660.573333pt;}
.y5a{bottom:670.173333pt;}
.y92{bottom:671.133333pt;}
.yb7{bottom:673.053333pt;}
.y19{bottom:675.933333pt;}
.y59{bottom:685.533333pt;}
.y91{bottom:687.453333pt;}
.yb6{bottom:688.413333pt;}
.y18{bottom:691.133333pt;}
.y58{bottom:700.733333pt;}
.y90{bottom:702.653333pt;}
.yb5{bottom:703.613333pt;}
.y17{bottom:706.493333pt;}
.y57{bottom:716.093333pt;}
.y8f{bottom:718.973333pt;}
.y16{bottom:721.853333pt;}
.y56{bottom:731.453333pt;}
.y8e{bottom:734.333333pt;}
.y15{bottom:737.213333pt;}
.y8d{bottom:749.693333pt;}
.y14{bottom:752.573333pt;}
.y55{bottom:762.173333pt;}
.y8c{bottom:765.053333pt;}
.y13{bottom:767.933333pt;}
.y54{bottom:777.533333pt;}
.y8b{bottom:780.253333pt;}
.y12{bottom:783.133333pt;}
.y53{bottom:792.733333pt;}
.y8a{bottom:795.653333pt;}
.y11{bottom:798.533333pt;}
.y52{bottom:809.093333pt;}
.y89{bottom:811.013333pt;}
.y10{bottom:813.893333pt;}
.y51{bottom:824.453333pt;}
.y88{bottom:826.373333pt;}
.yf{bottom:829.253333pt;}
.y50{bottom:840.773333pt;}
.y87{bottom:841.733333pt;}
.ye{bottom:844.613333pt;}
.y4f{bottom:856.133333pt;}
.y86{bottom:857.093333pt;}
.yd{bottom:859.973333pt;}
.y4e{bottom:872.293333pt;}
.yc{bottom:875.173333pt;}
.y4d{bottom:887.653333pt;}
.yb{bottom:890.533333pt;}
.y85{bottom:903.013333pt;}
.y4c{bottom:903.973333pt;}
.ya{bottom:905.893333pt;}
.y84{bottom:918.373333pt;}
.y4b{bottom:919.333333pt;}
.y9{bottom:921.253333pt;}
.y83{bottom:933.733333pt;}
.y4a{bottom:934.693333pt;}
.y8{bottom:936.613333pt;}
.y82{bottom:949.093333pt;}
.y49{bottom:950.053333pt;}
.y7{bottom:951.813333pt;}
.y48{bottom:965.253333pt;}
.y6{bottom:967.173333pt;}
.y47{bottom:980.613333pt;}
.yb4{bottom:981.573333pt;}
.y5{bottom:982.533333pt;}
.y46{bottom:995.973333pt;}
.y81{bottom:996.933333pt;}
.y4{bottom:997.893333pt;}
.y45{bottom:1012.293333pt;}
.y80{bottom:1013.253333pt;}
.y44{bottom:1027.680000pt;}
.y3{bottom:1028.640000pt;}
.y43{bottom:1042.880000pt;}
.y2{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h8{height:47.109375pt;}
.h6{height:47.621250pt;}
.h4{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h7{height:54.598989pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.xa{left:120.991988pt;}
.x2{left:211.546655pt;}
.x5{left:318.466655pt;}
.xc{left:406.493322pt;}
.x3{left:410.173322pt;}
.xb{left:432.893322pt;}
.x8{left:478.173322pt;}
.xd{left:532.733322pt;}
.x4{left:593.093322pt;}
.x7{left:615.333322pt;}
.x6{left:634.213322pt;}
.x9{left:699.333322pt;}
}




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