
    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_fe8ea791f3e2934db20af903.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_8423e0943b8598cbaceea273.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_a402f8fb19995ae988da92c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.453000;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_8a12e60d9b0b7790f1da54d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_7086366079e7886f72d7a4b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_1958b4cf0eb82f59813e0d13.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_062fef00984836adf7dc7c5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a2a13cf738c13313dfb89684.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bbe785f1a53c7559658dd245.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986053px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.ws7{word-spacing:-22.416000px;}
.ws31{word-spacing:-18.183288px;}
.ws2f{word-spacing:-3.259639px;}
.ws28{word-spacing:-2.605093px;}
.ws1a{word-spacing:-2.474184px;}
.ws43{word-spacing:-2.408729px;}
.ws14{word-spacing:-2.081456px;}
.ws3a{word-spacing:-2.016002px;}
.ws11{word-spacing:-1.296001px;}
.ws2a{word-spacing:-0.968728px;}
.ws12{word-spacing:-0.837819px;}
.ws42{word-spacing:-0.576000px;}
.ws2e{word-spacing:-0.510546px;}
.ws6{word-spacing:0.000000px;}
.ws21{word-spacing:0.340364px;}
.ws10{word-spacing:0.471273px;}
.ws26{word-spacing:0.798546px;}
.ws19{word-spacing:0.929455px;}
.wse{word-spacing:0.994910px;}
.wsc{word-spacing:1.191274px;}
.ws3d{word-spacing:1.322183px;}
.ws30{word-spacing:1.387638px;}
.ws34{word-spacing:1.453092px;}
.ws23{word-spacing:1.780365px;}
.ws17{word-spacing:1.976729px;}
.wsa{word-spacing:2.002911px;}
.ws22{word-spacing:2.304002px;}
.ws2c{word-spacing:2.762184px;}
.ws1c{word-spacing:3.089457px;}
.ws4{word-spacing:3.613094px;}
.ws36{word-spacing:3.678549px;}
.ws32{word-spacing:3.874912px;}
.ws9{word-spacing:4.162913px;}
.ws20{word-spacing:4.202185px;}
.ws29{word-spacing:4.483200px;}
.ws1d{word-spacing:4.791277px;}
.ws3b{word-spacing:5.053095px;}
.wsd{word-spacing:5.314914px;}
.ws38{word-spacing:5.576732px;}
.ws37{word-spacing:5.838550px;}
.ws18{word-spacing:6.231278px;}
.ws27{word-spacing:6.362187px;}
.ws33{word-spacing:6.624006px;}
.ws15{word-spacing:6.689460px;}
.ws2d{word-spacing:6.951279px;}
.ws1e{word-spacing:7.213097px;}
.ws2b{word-spacing:7.344006px;}
.ws13{word-spacing:7.671279px;}
.ws3f{word-spacing:8.653098px;}
.ws1f{word-spacing:8.718553px;}
.wsf{word-spacing:9.373099px;}
.wsb{word-spacing:10.093099px;}
.ws3c{word-spacing:10.420372px;}
.ws5{word-spacing:10.878555px;}
.ws40{word-spacing:10.944009px;}
.ws39{word-spacing:11.402191px;}
.ws3e{word-spacing:12.056737px;}
.ws1b{word-spacing:12.711283px;}
.ws41{word-spacing:13.365829px;}
.ws35{word-spacing:14.216739px;}
.ws25{word-spacing:23.367292px;}
.ws24{word-spacing:25.723658px;}
.ws2{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws8{word-spacing:39.639306px;}
.ws1{word-spacing:54.432472px;}
.ws16{word-spacing:58.281600px;}
._24{margin-left:-32.270907px;}
._9{margin-left:-6.218187px;}
._0{margin-left:-4.610401px;}
._22{margin-left:-3.338185px;}
._1{margin-left:-2.223667px;}
._14{margin-left:-1.052641px;}
._20{width:1.181761px;}
._2{width:2.223667px;}
._19{width:17.239560px;}
._1b{width:18.325499px;}
._1c{width:20.812774px;}
._11{width:22.909110px;}
._15{width:24.870959px;}
._18{width:26.901841px;}
._16{width:28.210933px;}
._17{width:29.775335px;}
._1f{width:31.220055px;}
._2a{width:33.970937px;}
._1a{width:36.596278px;}
._25{width:38.092788px;}
._1d{width:40.060004px;}
._1e{width:43.660007px;}
._27{width:45.160096px;}
._28{width:49.874616px;}
._26{width:52.885528px;}
._29{width:58.840107px;}
._7{width:60.545505px;}
._4{width:66.894601px;}
._21{width:75.272790px;}
._23{width:80.697600px;}
._f{width:886.649801px;}
._10{width:924.546225px;}
._8{width:936.329842px;}
._b{width:942.086269px;}
._12{width:1175.299219px;}
._d{width:1232.704693px;}
._e{width:1253.384768px;}
._a{width:1303.595603px;}
._c{width:1331.281109px;}
._6{width:1616.070496px;}
._5{width:1718.575978px;}
._3{width:2079.361733px;}
._13{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y29{bottom:93.813000px;}
.y28{bottom:176.005500px;}
.y27{bottom:196.329000px;}
.y6f{bottom:204.450000px;}
.y26{bottom:216.652500px;}
.y6e{bottom:224.773500px;}
.y6d{bottom:245.097000px;}
.y25{bottom:252.913500px;}
.y4d{bottom:254.092500px;}
.y6c{bottom:265.420500px;}
.y4c{bottom:274.416000px;}
.y6b{bottom:285.744000px;}
.y4b{bottom:294.739500px;}
.y24{bottom:298.023000px;}
.y4a{bottom:315.064500px;}
.y23{bottom:318.348000px;}
.y6a{bottom:322.273500px;}
.y49{bottom:335.388000px;}
.y22{bottom:338.671500px;}
.y21{bottom:358.995000px;}
.y69{bottom:367.854000px;}
.y48{bottom:371.916000px;}
.y20{bottom:379.318500px;}
.y68{bottom:388.177500px;}
.y1f{bottom:399.642000px;}
.y67{bottom:408.501000px;}
.y47{bottom:417.496500px;}
.y1e{bottom:419.967000px;}
.y46{bottom:437.820000px;}
.y1d{bottom:440.290500px;}
.y66{bottom:445.029000px;}
.y45{bottom:458.143500px;}
.y1c{bottom:460.614000px;}
.y44{bottom:478.468500px;}
.y1b{bottom:480.937500px;}
.y65{bottom:490.609500px;}
.y1a{bottom:501.261000px;}
.y43{bottom:507.246000px;}
.y64{bottom:510.933000px;}
.y19{bottom:521.586000px;}
.y63{bottom:531.258000px;}
.y7{bottom:532.603500px;}
.y18{bottom:541.909500px;}
.y42{bottom:543.774000px;}
.y62{bottom:551.581500px;}
.y17{bottom:562.233000px;}
.y41{bottom:564.099000px;}
.y6{bottom:569.326500px;}
.y61{bottom:571.905000px;}
.y60{bottom:592.228500px;}
.y5{bottom:598.059000px;}
.y16{bottom:599.635500px;}
.y40{bottom:602.355000px;}
.y76{bottom:613.366500px;}
.y5f{bottom:628.756500px;}
.y75{bottom:633.690000px;}
.y3f{bottom:636.127500px;}
.y15{bottom:638.266500px;}
.y74{bottom:654.013500px;}
.y3e{bottom:669.901500px;}
.y5e{bottom:674.337000px;}
.y14{bottom:674.953500px;}
.y3d{bottom:690.225000px;}
.y5d{bottom:694.662000px;}
.y13{bottom:711.642000px;}
.y5c{bottom:714.985500px;}
.y3c{bottom:728.482500px;}
.y5b{bottom:735.309000px;}
.y12{bottom:748.329000px;}
.y5a{bottom:755.632500px;}
.y3b{bottom:757.260000px;}
.y4{bottom:759.814500px;}
.y73{bottom:775.956000px;}
.y11{bottom:785.016000px;}
.y59{bottom:792.160500px;}
.y3a{bottom:793.788000px;}
.y3{bottom:797.095500px;}
.y72{bottom:812.485500px;}
.y39{bottom:814.113000px;}
.y10{bottom:821.703000px;}
.y38{bottom:834.436500px;}
.y58{bottom:837.741000px;}
.y2{bottom:841.927500px;}
.y37{bottom:854.760000px;}
.y57{bottom:858.066000px;}
.yf{bottom:858.391500px;}
.y36{bottom:875.083500px;}
.y56{bottom:878.389500px;}
.ye{bottom:895.078500px;}
.y35{bottom:895.407000px;}
.y55{bottom:898.713000px;}
.y34{bottom:915.730500px;}
.y54{bottom:919.036500px;}
.yd{bottom:931.765500px;}
.y33{bottom:936.055500px;}
.y71{bottom:939.360000px;}
.y53{bottom:955.564500px;}
.y32{bottom:956.379000px;}
.yc{bottom:968.454000px;}
.y70{bottom:975.889500px;}
.y31{bottom:976.702500px;}
.y30{bottom:997.026000px;}
.y52{bottom:1001.145000px;}
.yb{bottom:1005.141000px;}
.y2f{bottom:1017.349500px;}
.y51{bottom:1021.470000px;}
.ya{bottom:1025.464500px;}
.y2e{bottom:1037.674500px;}
.y50{bottom:1041.793500px;}
.y9{bottom:1045.788000px;}
.y2d{bottom:1057.998000px;}
.y4f{bottom:1062.117000px;}
.y2c{bottom:1078.321500px;}
.y4e{bottom:1082.440500px;}
.y8{bottom:1082.476500px;}
.y1{bottom:1087.587000px;}
.y2b{bottom:1098.645000px;}
.y2a{bottom:1118.968500px;}
.h6{height:23.111494px;}
.h2{height:41.484266px;}
.h7{height:46.865494px;}
.h9{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x7{left:164.010000px;}
.x9{left:168.336000px;}
.x1{left:286.581000px;}
.x6{left:308.905500px;}
.x8{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654270pt;}
.ls2{letter-spacing:29.090933pt;}
.ws7{word-spacing:-19.925333pt;}
.ws31{word-spacing:-16.162923pt;}
.ws2f{word-spacing:-2.897457pt;}
.ws28{word-spacing:-2.315638pt;}
.ws1a{word-spacing:-2.199275pt;}
.ws43{word-spacing:-2.141093pt;}
.ws14{word-spacing:-1.850183pt;}
.ws3a{word-spacing:-1.792001pt;}
.ws11{word-spacing:-1.152001pt;}
.ws2a{word-spacing:-0.861092pt;}
.ws12{word-spacing:-0.744728pt;}
.ws42{word-spacing:-0.512000pt;}
.ws2e{word-spacing:-0.453819pt;}
.ws6{word-spacing:0.000000pt;}
.ws21{word-spacing:0.302546pt;}
.ws10{word-spacing:0.418909pt;}
.ws26{word-spacing:0.709819pt;}
.ws19{word-spacing:0.826183pt;}
.wse{word-spacing:0.884364pt;}
.wsc{word-spacing:1.058910pt;}
.ws3d{word-spacing:1.175274pt;}
.ws30{word-spacing:1.233456pt;}
.ws34{word-spacing:1.291637pt;}
.ws23{word-spacing:1.582547pt;}
.ws17{word-spacing:1.757092pt;}
.wsa{word-spacing:1.780365pt;}
.ws22{word-spacing:2.048002pt;}
.ws2c{word-spacing:2.455275pt;}
.ws1c{word-spacing:2.746184pt;}
.ws4{word-spacing:3.211639pt;}
.ws36{word-spacing:3.269821pt;}
.ws32{word-spacing:3.444367pt;}
.ws9{word-spacing:3.700367pt;}
.ws20{word-spacing:3.735276pt;}
.ws29{word-spacing:3.985067pt;}
.ws1d{word-spacing:4.258913pt;}
.ws3b{word-spacing:4.491640pt;}
.wsd{word-spacing:4.724368pt;}
.ws38{word-spacing:4.957095pt;}
.ws37{word-spacing:5.189823pt;}
.ws18{word-spacing:5.538914pt;}
.ws27{word-spacing:5.655277pt;}
.ws33{word-spacing:5.888005pt;}
.ws15{word-spacing:5.946187pt;}
.ws2d{word-spacing:6.178914pt;}
.ws1e{word-spacing:6.411642pt;}
.ws2b{word-spacing:6.528005pt;}
.ws13{word-spacing:6.818915pt;}
.ws3f{word-spacing:7.691643pt;}
.ws1f{word-spacing:7.749825pt;}
.wsf{word-spacing:8.331643pt;}
.wsb{word-spacing:8.971644pt;}
.ws3c{word-spacing:9.262553pt;}
.ws5{word-spacing:9.669826pt;}
.ws40{word-spacing:9.728008pt;}
.ws39{word-spacing:10.135281pt;}
.ws3e{word-spacing:10.717100pt;}
.ws1b{word-spacing:11.298919pt;}
.ws41{word-spacing:11.880737pt;}
.ws35{word-spacing:12.637101pt;}
.ws25{word-spacing:20.770926pt;}
.ws24{word-spacing:22.865474pt;}
.ws2{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws8{word-spacing:35.234938pt;}
.ws1{word-spacing:48.384419pt;}
.ws16{word-spacing:51.805867pt;}
._24{margin-left:-28.685251pt;}
._9{margin-left:-5.527277pt;}
._0{margin-left:-4.098134pt;}
._22{margin-left:-2.967275pt;}
._1{margin-left:-1.976593pt;}
._14{margin-left:-0.935681pt;}
._20{width:1.050454pt;}
._2{width:1.976593pt;}
._19{width:15.324053pt;}
._1b{width:16.289332pt;}
._1c{width:18.500243pt;}
._11{width:20.363653pt;}
._15{width:22.107519pt;}
._18{width:23.912747pt;}
._16{width:25.076385pt;}
._17{width:26.466964pt;}
._1f{width:27.751160pt;}
._2a{width:30.196389pt;}
._1a{width:32.530025pt;}
._25{width:33.860256pt;}
._1d{width:35.608893pt;}
._1e{width:38.808895pt;}
._27{width:40.142307pt;}
._28{width:44.332992pt;}
._26{width:47.009358pt;}
._29{width:52.302317pt;}
._7{width:53.818227pt;}
._4{width:59.461868pt;}
._21{width:66.909147pt;}
._23{width:71.731200pt;}
._f{width:788.133156pt;}
._10{width:821.818867pt;}
._8{width:832.293193pt;}
._b{width:837.410017pt;}
._12{width:1044.710417pt;}
._d{width:1095.737505pt;}
._e{width:1114.119794pt;}
._a{width:1158.751647pt;}
._c{width:1183.360986pt;}
._6{width:1436.507107pt;}
._5{width:1527.623091pt;}
._3{width:1848.321540pt;}
._13{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:83.389333pt;}
.y28{bottom:156.449333pt;}
.y27{bottom:174.514667pt;}
.y6f{bottom:181.733333pt;}
.y26{bottom:192.580000pt;}
.y6e{bottom:199.798667pt;}
.y6d{bottom:217.864000pt;}
.y25{bottom:224.812000pt;}
.y4d{bottom:225.860000pt;}
.y6c{bottom:235.929333pt;}
.y4c{bottom:243.925333pt;}
.y6b{bottom:253.994667pt;}
.y4b{bottom:261.990667pt;}
.y24{bottom:264.909333pt;}
.y4a{bottom:280.057333pt;}
.y23{bottom:282.976000pt;}
.y6a{bottom:286.465333pt;}
.y49{bottom:298.122667pt;}
.y22{bottom:301.041333pt;}
.y21{bottom:319.106667pt;}
.y69{bottom:326.981333pt;}
.y48{bottom:330.592000pt;}
.y20{bottom:337.172000pt;}
.y68{bottom:345.046667pt;}
.y1f{bottom:355.237333pt;}
.y67{bottom:363.112000pt;}
.y47{bottom:371.108000pt;}
.y1e{bottom:373.304000pt;}
.y46{bottom:389.173333pt;}
.y1d{bottom:391.369333pt;}
.y66{bottom:395.581333pt;}
.y45{bottom:407.238667pt;}
.y1c{bottom:409.434667pt;}
.y44{bottom:425.305333pt;}
.y1b{bottom:427.500000pt;}
.y65{bottom:436.097333pt;}
.y1a{bottom:445.565333pt;}
.y43{bottom:450.885333pt;}
.y64{bottom:454.162667pt;}
.y19{bottom:463.632000pt;}
.y63{bottom:472.229333pt;}
.y7{bottom:473.425333pt;}
.y18{bottom:481.697333pt;}
.y42{bottom:483.354667pt;}
.y62{bottom:490.294667pt;}
.y17{bottom:499.762667pt;}
.y41{bottom:501.421333pt;}
.y6{bottom:506.068000pt;}
.y61{bottom:508.360000pt;}
.y60{bottom:526.425333pt;}
.y5{bottom:531.608000pt;}
.y16{bottom:533.009333pt;}
.y40{bottom:535.426667pt;}
.y76{bottom:545.214667pt;}
.y5f{bottom:558.894667pt;}
.y75{bottom:563.280000pt;}
.y3f{bottom:565.446667pt;}
.y15{bottom:567.348000pt;}
.y74{bottom:581.345333pt;}
.y3e{bottom:595.468000pt;}
.y5e{bottom:599.410667pt;}
.y14{bottom:599.958667pt;}
.y3d{bottom:613.533333pt;}
.y5d{bottom:617.477333pt;}
.y13{bottom:632.570667pt;}
.y5c{bottom:635.542667pt;}
.y3c{bottom:647.540000pt;}
.y5b{bottom:653.608000pt;}
.y12{bottom:665.181333pt;}
.y5a{bottom:671.673333pt;}
.y3b{bottom:673.120000pt;}
.y4{bottom:675.390667pt;}
.y73{bottom:689.738667pt;}
.y11{bottom:697.792000pt;}
.y59{bottom:704.142667pt;}
.y3a{bottom:705.589333pt;}
.y3{bottom:708.529333pt;}
.y72{bottom:722.209333pt;}
.y39{bottom:723.656000pt;}
.y10{bottom:730.402667pt;}
.y38{bottom:741.721333pt;}
.y58{bottom:744.658667pt;}
.y2{bottom:748.380000pt;}
.y37{bottom:759.786667pt;}
.y57{bottom:762.725333pt;}
.yf{bottom:763.014667pt;}
.y36{bottom:777.852000pt;}
.y56{bottom:780.790667pt;}
.ye{bottom:795.625333pt;}
.y35{bottom:795.917333pt;}
.y55{bottom:798.856000pt;}
.y34{bottom:813.982667pt;}
.y54{bottom:816.921333pt;}
.yd{bottom:828.236000pt;}
.y33{bottom:832.049333pt;}
.y71{bottom:834.986667pt;}
.y53{bottom:849.390667pt;}
.y32{bottom:850.114667pt;}
.yc{bottom:860.848000pt;}
.y70{bottom:867.457333pt;}
.y31{bottom:868.180000pt;}
.y30{bottom:886.245333pt;}
.y52{bottom:889.906667pt;}
.yb{bottom:893.458667pt;}
.y2f{bottom:904.310667pt;}
.y51{bottom:907.973333pt;}
.ya{bottom:911.524000pt;}
.y2e{bottom:922.377333pt;}
.y50{bottom:926.038667pt;}
.y9{bottom:929.589333pt;}
.y2d{bottom:940.442667pt;}
.y4f{bottom:944.104000pt;}
.y2c{bottom:958.508000pt;}
.y4e{bottom:962.169333pt;}
.y8{bottom:962.201333pt;}
.y1{bottom:966.744000pt;}
.y2b{bottom:976.573333pt;}
.y2a{bottom:994.638667pt;}
.h6{height:20.543550pt;}
.h2{height:36.874903pt;}
.h7{height:41.658217pt;}
.h9{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x7{left:145.786667pt;}
.x9{left:149.632000pt;}
.x1{left:254.738667pt;}
.x6{left:274.582667pt;}
.x8{left:389.748000pt;}
}




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