
    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_7484e25dc9ad02af84254836.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_311baf8f10e99b78b75499b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_9d12b69cfa374711b3a6abcc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_61b01d70b8e4d6b2dee6893d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_1418989b8d25aee115646bf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:38.880000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.250560px;}
.ls1{letter-spacing:0.289438px;}
.ls6{letter-spacing:0.397461px;}
.ls2{letter-spacing:0.705321px;}
.ls3{letter-spacing:22.294096px;}
.ls7{letter-spacing:30.353778px;}
.ls5{letter-spacing:33.232051px;}
.ls0{letter-spacing:251.096942px;}
.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:-60.120000px;}
.ws3{word-spacing:-20.880000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-13.679850px;}
.ws2{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-7.327729px;}
._c{margin-left:-5.462703px;}
._9{margin-left:-4.387492px;}
._7{margin-left:-3.124800px;}
._8{margin-left:-2.089649px;}
._3{margin-left:-1.033573px;}
._4{width:1.310400px;}
._6{width:2.973951px;}
._a{width:4.007243px;}
._b{width:5.019340px;}
._1b{width:6.058950px;}
._16{width:7.126641px;}
._12{width:8.809480px;}
._1a{width:10.293915px;}
._17{width:12.106827px;}
._10{width:13.697931px;}
._11{width:14.911519px;}
._15{width:16.474515px;}
._14{width:20.505957px;}
._13{width:22.516471px;}
._2f{width:24.633710px;}
._f{width:27.333337px;}
._e{width:28.491860px;}
._19{width:31.516393px;}
._18{width:33.180242px;}
._5{width:84.625119px;}
._2{width:107.870478px;}
._3b{width:126.809781px;}
._0{width:137.260955px;}
._1{width:161.870478px;}
._39{width:168.612981px;}
._23{width:215.779752px;}
._3d{width:234.003381px;}
._30{width:278.019902px;}
._1c{width:297.829285px;}
._24{width:303.923759px;}
._21{width:367.089752px;}
._3a{width:372.387381px;}
._3e{width:374.147479px;}
._38{width:398.166679px;}
._36{width:405.883430px;}
._1f{width:412.037352px;}
._2e{width:424.070537px;}
._22{width:425.827430px;}
._1e{width:429.859430px;}
._2c{width:431.787288px;}
._2b{width:451.022461px;}
._28{width:456.325580px;}
._35{width:470.501430px;}
._2a{width:496.405288px;}
._29{width:499.468201px;}
._34{width:512.982123px;}
._32{width:517.843430px;}
._2d{width:525.362077px;}
._37{width:538.313706px;}
._27{width:542.051677px;}
._26{width:543.747288px;}
._20{width:545.072181px;}
._33{width:555.003306px;}
._25{width:614.184504px;}
._31{width:627.136133px;}
._1d{width:630.014406px;}
._3c{width:723.112133px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.719400px;}
.fs8{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.400000px;}
.y2{bottom:35.640000px;}
.y21{bottom:50.040000px;}
.ya6{bottom:91.440000px;}
.y5d{bottom:91.800000px;}
.y40{bottom:93.240000px;}
.y1f{bottom:102.960000px;}
.y8b{bottom:105.840000px;}
.y5c{bottom:115.560000px;}
.y3f{bottom:116.640000px;}
.y74{bottom:118.080000px;}
.y1e{bottom:126.720000px;}
.ya5{bottom:131.400000px;}
.y5b{bottom:139.320000px;}
.y3e{bottom:140.400000px;}
.y73{bottom:141.479850px;}
.y1d{bottom:150.479850px;}
.y5a{bottom:163.080000px;}
.y3d{bottom:164.160000px;}
.y72{bottom:165.240000px;}
.ya4{bottom:173.520000px;}
.y1c{bottom:174.240000px;}
.y59{bottom:186.840000px;}
.y3c{bottom:187.920000px;}
.y71{bottom:189.360000px;}
.ya3{bottom:196.920000px;}
.y1b{bottom:198.000000px;}
.y3b{bottom:211.680000px;}
.y70{bottom:213.120000px;}
.ya2{bottom:220.680000px;}
.y58{bottom:225.720000px;}
.y3a{bottom:235.440000px;}
.y6f{bottom:236.879850px;}
.y1a{bottom:237.959850px;}
.ya1{bottom:244.440000px;}
.y57{bottom:249.120000px;}
.y39{bottom:259.560000px;}
.y6e{bottom:260.640000px;}
.ya0{bottom:268.200000px;}
.y56{bottom:273.959850px;}
.y19{bottom:280.080000px;}
.y6d{bottom:284.400000px;}
.y9f{bottom:291.959850px;}
.y55{bottom:298.440000px;}
.y38{bottom:299.160000px;}
.y8a{bottom:302.040000px;}
.yb4{bottom:303.480000px;}
.y18{bottom:304.200000px;}
.y6c{bottom:308.160000px;}
.y54{bottom:323.280000px;}
.y89{bottom:325.440000px;}
.yb3{bottom:327.240000px;}
.y6b{bottom:331.920000px;}
.y37{bottom:341.280000px;}
.y17{bottom:346.680000px;}
.y53{bottom:347.400000px;}
.y88{bottom:349.200000px;}
.yb2{bottom:351.000000px;}
.y6a{bottom:355.680000px;}
.y36{bottom:364.680000px;}
.y16{bottom:370.080000px;}
.y87{bottom:372.960000px;}
.y9e{bottom:374.040000px;}
.yb1{bottom:374.760000px;}
.y52{bottom:387.720000px;}
.y35{bottom:388.440000px;}
.y15{bottom:393.840000px;}
.y69{bottom:394.560000px;}
.y9d{bottom:397.440000px;}
.yb0{bottom:398.880000px;}
.y86{bottom:407.880000px;}
.y51{bottom:411.120000px;}
.y34{bottom:412.200000px;}
.y14{bottom:417.600000px;}
.y68{bottom:417.960000px;}
.y9c{bottom:421.200000px;}
.yaf{bottom:422.640000px;}
.y50{bottom:434.880000px;}
.y33{bottom:436.320000px;}
.y13{bottom:441.360000px;}
.y7b{bottom:443.160000px;}
.y9b{bottom:444.960000px;}
.yae{bottom:446.400000px;}
.y4f{bottom:458.640000px;}
.y32{bottom:460.080000px;}
.y12{bottom:465.120000px;}
.y7a{bottom:467.640000px;}
.y9a{bottom:468.720000px;}
.yad{bottom:470.160000px;}
.y4e{bottom:482.400000px;}
.y31{bottom:483.840000px;}
.y11{bottom:488.880000px;}
.y79{bottom:492.120000px;}
.y99{bottom:492.480000px;}
.yac{bottom:493.919850px;}
.y4d{bottom:506.160000px;}
.y30{bottom:507.600000px;}
.y10{bottom:512.640000px;}
.y98{bottom:516.240000px;}
.y78{bottom:516.600000px;}
.yab{bottom:517.680000px;}
.y4c{bottom:529.919850px;}
.y2f{bottom:531.360000px;}
.yf{bottom:536.759850px;}
.y97{bottom:540.360000px;}
.y77{bottom:541.080000px;}
.yaa{bottom:541.440000px;}
.y4b{bottom:553.680000px;}
.ye{bottom:560.520000px;}
.y96{bottom:564.120000px;}
.ya9{bottom:565.200000px;}
.y76{bottom:565.919850px;}
.y2e{bottom:571.320000px;}
.yd{bottom:584.280000px;}
.y95{bottom:587.880000px;}
.ya8{bottom:589.320000px;}
.y75{bottom:590.040000px;}
.y4a{bottom:592.560000px;}
.y85{bottom:603.000000px;}
.ya7{bottom:613.080000px;}
.y2d{bottom:613.440000px;}
.yc{bottom:624.240000px;}
.y94{bottom:627.840000px;}
.y49{bottom:631.800000px;}
.y2c{bottom:636.840000px;}
.y67{bottom:637.920000px;}
.y84{bottom:642.240000px;}
.y48{bottom:655.200000px;}
.y2b{bottom:660.600000px;}
.y66{bottom:661.320000px;}
.yb{bottom:665.280000px;}
.y83{bottom:665.640000px;}
.y93{bottom:669.600000px;}
.y47{bottom:678.960000px;}
.y65{bottom:682.920000px;}
.y2a{bottom:684.360000px;}
.y82{bottom:689.400000px;}
.y92{bottom:693.000000px;}
.ya{bottom:695.880000px;}
.y46{bottom:702.720000px;}
.y64{bottom:704.160000px;}
.y29{bottom:708.120000px;}
.y9{bottom:711.000000px;}
.y81{bottom:713.160000px;}
.y91{bottom:717.120000px;}
.y63{bottom:725.760000px;}
.y28{bottom:731.880000px;}
.y80{bottom:736.920000px;}
.y90{bottom:740.880000px;}
.y8{bottom:741.600000px;}
.y45{bottom:742.680000px;}
.y62{bottom:747.000000px;}
.y27{bottom:755.640000px;}
.y7{bottom:757.800000px;}
.y7f{bottom:761.760000px;}
.y8f{bottom:764.640000px;}
.y61{bottom:768.600000px;}
.y26{bottom:779.760000px;}
.y44{bottom:784.800000px;}
.y7e{bottom:786.240000px;}
.y8e{bottom:788.400000px;}
.y60{bottom:789.839850px;}
.y6{bottom:802.080000px;}
.y25{bottom:803.519850px;}
.y43{bottom:808.200000px;}
.y7d{bottom:810.720000px;}
.y5f{bottom:811.080000px;}
.y8d{bottom:812.160000px;}
.y24{bottom:827.280000px;}
.y4{bottom:828.000000px;}
.y42{bottom:831.960000px;}
.y3{bottom:833.400000px;}
.y7c{bottom:834.839850px;}
.y8c{bottom:835.920000px;}
.y23{bottom:851.040000px;}
.y5e{bottom:851.400000px;}
.y41{bottom:871.920000px;}
.y22{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y20{bottom:923.040000px;}
.h4{height:27.359850px;}
.h6{height:32.994844px;}
.h2{height:34.157813px;}
.hc{height:47.988281px;}
.hf{height:48.796875px;}
.he{height:49.042969px;}
.h8{height:49.992188px;}
.hb{height:51.679688px;}
.h10{height:52.031250px;}
.ha{height:56.604375px;}
.h9{height:57.990937px;}
.h7{height:59.235469px;}
.hd{height:59.948437px;}
.h3{height:65.387406px;}
.h5{height:75.965218px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w1{width:180.720000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.xc{left:108.000000px;}
.xb{left:113.400000px;}
.x6{left:143.280000px;}
.x8{left:174.960000px;}
.x5{left:185.400000px;}
.x3{left:186.480000px;}
.x7{left:200.520000px;}
.x9{left:261.360000px;}
.xa{left:338.760000px;}
.x4{left:575.280000px;}
.xe{left:595.440000px;}
.xd{left:619.919850px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:34.560000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.222720pt;}
.ls1{letter-spacing:0.257278pt;}
.ls6{letter-spacing:0.353298pt;}
.ls2{letter-spacing:0.626952pt;}
.ls3{letter-spacing:19.816974pt;}
.ls7{letter-spacing:26.981136pt;}
.ls5{letter-spacing:29.539601pt;}
.ls0{letter-spacing:223.197282pt;}
.ws0{word-spacing:-53.440000pt;}
.ws3{word-spacing:-18.560000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.159867pt;}
.ws2{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-6.513537pt;}
._c{margin-left:-4.855736pt;}
._9{margin-left:-3.899993pt;}
._7{margin-left:-2.777600pt;}
._8{margin-left:-1.857466pt;}
._3{margin-left:-0.918732pt;}
._4{width:1.164800pt;}
._6{width:2.643512pt;}
._a{width:3.561993pt;}
._b{width:4.461635pt;}
._1b{width:5.385734pt;}
._16{width:6.334792pt;}
._12{width:7.830649pt;}
._1a{width:9.150147pt;}
._17{width:10.761624pt;}
._10{width:12.175939pt;}
._11{width:13.254684pt;}
._15{width:14.644014pt;}
._14{width:18.227517pt;}
._13{width:20.014641pt;}
._2f{width:21.896631pt;}
._f{width:24.296300pt;}
._e{width:25.326098pt;}
._19{width:28.014571pt;}
._18{width:29.493548pt;}
._5{width:75.222328pt;}
._2{width:95.884869pt;}
._3b{width:112.719806pt;}
._0{width:122.009738pt;}
._1{width:143.884869pt;}
._39{width:149.878206pt;}
._23{width:191.804224pt;}
._3d{width:208.003006pt;}
._30{width:247.128802pt;}
._1c{width:264.737142pt;}
._24{width:270.154453pt;}
._21{width:326.302002pt;}
._3a{width:331.011006pt;}
._3e{width:332.575537pt;}
._38{width:353.925937pt;}
._36{width:360.785271pt;}
._1f{width:366.255424pt;}
._2e{width:376.951588pt;}
._22{width:378.513271pt;}
._1e{width:382.097271pt;}
._2c{width:383.810923pt;}
._2b{width:400.908854pt;}
._28{width:405.622738pt;}
._35{width:418.223494pt;}
._2a{width:441.249145pt;}
._29{width:443.971734pt;}
._34{width:455.984109pt;}
._32{width:460.305271pt;}
._2d{width:466.988513pt;}
._37{width:478.501072pt;}
._27{width:481.823713pt;}
._26{width:483.330923pt;}
._20{width:484.508606pt;}
._33{width:493.336272pt;}
._25{width:545.941781pt;}
._31{width:557.454340pt;}
._1d{width:560.012805pt;}
._3c{width:642.766340pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.639467pt;}
.fs8{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.800000pt;}
.y2{bottom:31.680000pt;}
.y21{bottom:44.480000pt;}
.ya6{bottom:81.280000pt;}
.y5d{bottom:81.600000pt;}
.y40{bottom:82.880000pt;}
.y1f{bottom:91.520000pt;}
.y8b{bottom:94.080000pt;}
.y5c{bottom:102.720000pt;}
.y3f{bottom:103.680000pt;}
.y74{bottom:104.960000pt;}
.y1e{bottom:112.640000pt;}
.ya5{bottom:116.800000pt;}
.y5b{bottom:123.840000pt;}
.y3e{bottom:124.800000pt;}
.y73{bottom:125.759867pt;}
.y1d{bottom:133.759867pt;}
.y5a{bottom:144.960000pt;}
.y3d{bottom:145.920000pt;}
.y72{bottom:146.880000pt;}
.ya4{bottom:154.240000pt;}
.y1c{bottom:154.880000pt;}
.y59{bottom:166.080000pt;}
.y3c{bottom:167.040000pt;}
.y71{bottom:168.320000pt;}
.ya3{bottom:175.040000pt;}
.y1b{bottom:176.000000pt;}
.y3b{bottom:188.160000pt;}
.y70{bottom:189.440000pt;}
.ya2{bottom:196.160000pt;}
.y58{bottom:200.640000pt;}
.y3a{bottom:209.280000pt;}
.y6f{bottom:210.559867pt;}
.y1a{bottom:211.519867pt;}
.ya1{bottom:217.280000pt;}
.y57{bottom:221.440000pt;}
.y39{bottom:230.720000pt;}
.y6e{bottom:231.680000pt;}
.ya0{bottom:238.400000pt;}
.y56{bottom:243.519867pt;}
.y19{bottom:248.960000pt;}
.y6d{bottom:252.800000pt;}
.y9f{bottom:259.519867pt;}
.y55{bottom:265.280000pt;}
.y38{bottom:265.920000pt;}
.y8a{bottom:268.480000pt;}
.yb4{bottom:269.760000pt;}
.y18{bottom:270.400000pt;}
.y6c{bottom:273.920000pt;}
.y54{bottom:287.360000pt;}
.y89{bottom:289.280000pt;}
.yb3{bottom:290.880000pt;}
.y6b{bottom:295.040000pt;}
.y37{bottom:303.360000pt;}
.y17{bottom:308.160000pt;}
.y53{bottom:308.800000pt;}
.y88{bottom:310.400000pt;}
.yb2{bottom:312.000000pt;}
.y6a{bottom:316.160000pt;}
.y36{bottom:324.160000pt;}
.y16{bottom:328.960000pt;}
.y87{bottom:331.520000pt;}
.y9e{bottom:332.480000pt;}
.yb1{bottom:333.120000pt;}
.y52{bottom:344.640000pt;}
.y35{bottom:345.280000pt;}
.y15{bottom:350.080000pt;}
.y69{bottom:350.720000pt;}
.y9d{bottom:353.280000pt;}
.yb0{bottom:354.560000pt;}
.y86{bottom:362.560000pt;}
.y51{bottom:365.440000pt;}
.y34{bottom:366.400000pt;}
.y14{bottom:371.200000pt;}
.y68{bottom:371.520000pt;}
.y9c{bottom:374.400000pt;}
.yaf{bottom:375.680000pt;}
.y50{bottom:386.560000pt;}
.y33{bottom:387.840000pt;}
.y13{bottom:392.320000pt;}
.y7b{bottom:393.920000pt;}
.y9b{bottom:395.520000pt;}
.yae{bottom:396.800000pt;}
.y4f{bottom:407.680000pt;}
.y32{bottom:408.960000pt;}
.y12{bottom:413.440000pt;}
.y7a{bottom:415.680000pt;}
.y9a{bottom:416.640000pt;}
.yad{bottom:417.920000pt;}
.y4e{bottom:428.800000pt;}
.y31{bottom:430.080000pt;}
.y11{bottom:434.560000pt;}
.y79{bottom:437.440000pt;}
.y99{bottom:437.760000pt;}
.yac{bottom:439.039867pt;}
.y4d{bottom:449.920000pt;}
.y30{bottom:451.200000pt;}
.y10{bottom:455.680000pt;}
.y98{bottom:458.880000pt;}
.y78{bottom:459.200000pt;}
.yab{bottom:460.160000pt;}
.y4c{bottom:471.039867pt;}
.y2f{bottom:472.320000pt;}
.yf{bottom:477.119867pt;}
.y97{bottom:480.320000pt;}
.y77{bottom:480.960000pt;}
.yaa{bottom:481.280000pt;}
.y4b{bottom:492.160000pt;}
.ye{bottom:498.240000pt;}
.y96{bottom:501.440000pt;}
.ya9{bottom:502.400000pt;}
.y76{bottom:503.039867pt;}
.y2e{bottom:507.840000pt;}
.yd{bottom:519.360000pt;}
.y95{bottom:522.560000pt;}
.ya8{bottom:523.840000pt;}
.y75{bottom:524.480000pt;}
.y4a{bottom:526.720000pt;}
.y85{bottom:536.000000pt;}
.ya7{bottom:544.960000pt;}
.y2d{bottom:545.280000pt;}
.yc{bottom:554.880000pt;}
.y94{bottom:558.080000pt;}
.y49{bottom:561.600000pt;}
.y2c{bottom:566.080000pt;}
.y67{bottom:567.040000pt;}
.y84{bottom:570.880000pt;}
.y48{bottom:582.400000pt;}
.y2b{bottom:587.200000pt;}
.y66{bottom:587.840000pt;}
.yb{bottom:591.360000pt;}
.y83{bottom:591.680000pt;}
.y93{bottom:595.200000pt;}
.y47{bottom:603.520000pt;}
.y65{bottom:607.040000pt;}
.y2a{bottom:608.320000pt;}
.y82{bottom:612.800000pt;}
.y92{bottom:616.000000pt;}
.ya{bottom:618.560000pt;}
.y46{bottom:624.640000pt;}
.y64{bottom:625.920000pt;}
.y29{bottom:629.440000pt;}
.y9{bottom:632.000000pt;}
.y81{bottom:633.920000pt;}
.y91{bottom:637.440000pt;}
.y63{bottom:645.120000pt;}
.y28{bottom:650.560000pt;}
.y80{bottom:655.040000pt;}
.y90{bottom:658.560000pt;}
.y8{bottom:659.200000pt;}
.y45{bottom:660.160000pt;}
.y62{bottom:664.000000pt;}
.y27{bottom:671.680000pt;}
.y7{bottom:673.600000pt;}
.y7f{bottom:677.120000pt;}
.y8f{bottom:679.680000pt;}
.y61{bottom:683.200000pt;}
.y26{bottom:693.120000pt;}
.y44{bottom:697.600000pt;}
.y7e{bottom:698.880000pt;}
.y8e{bottom:700.800000pt;}
.y60{bottom:702.079867pt;}
.y6{bottom:712.960000pt;}
.y25{bottom:714.239867pt;}
.y43{bottom:718.400000pt;}
.y7d{bottom:720.640000pt;}
.y5f{bottom:720.960000pt;}
.y8d{bottom:721.920000pt;}
.y24{bottom:735.360000pt;}
.y4{bottom:736.000000pt;}
.y42{bottom:739.520000pt;}
.y3{bottom:740.800000pt;}
.y7c{bottom:742.079867pt;}
.y8c{bottom:743.040000pt;}
.y23{bottom:756.480000pt;}
.y5e{bottom:756.800000pt;}
.y41{bottom:775.040000pt;}
.y22{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y20{bottom:820.480000pt;}
.h4{height:24.319867pt;}
.h6{height:29.328750pt;}
.h2{height:30.362500pt;}
.hc{height:42.656250pt;}
.hf{height:43.375000pt;}
.he{height:43.593750pt;}
.h8{height:44.437500pt;}
.hb{height:45.937500pt;}
.h10{height:46.250000pt;}
.ha{height:50.315000pt;}
.h9{height:51.547500pt;}
.h7{height:52.653750pt;}
.hd{height:53.287500pt;}
.h3{height:58.122139pt;}
.h5{height:67.524639pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w1{width:160.640000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.xc{left:96.000000pt;}
.xb{left:100.800000pt;}
.x6{left:127.360000pt;}
.x8{left:155.520000pt;}
.x5{left:164.800000pt;}
.x3{left:165.760000pt;}
.x7{left:178.240000pt;}
.x9{left:232.320000pt;}
.xa{left:301.120000pt;}
.x4{left:511.360000pt;}
.xe{left:529.280000pt;}
.xd{left:551.039867pt;}
}




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