
    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_af1606a63c812e1d87ef43f5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6d30f1e034bb190f6016acd3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5aa96da403e270917e818f46.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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;}
.v1{vertical-align:16.878000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:19.913430px;}
.ls0{letter-spacing:25.392770px;}
.ls6{letter-spacing:209.747430px;}
.ls5{letter-spacing:219.599430px;}
.ls2{letter-spacing:377.213430px;}
.ls1{letter-spacing:602.303430px;}
.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;}
}
.wsd{word-spacing:-71.731020px;}
.ws1{word-spacing:-54.486868px;}
.ws9{word-spacing:-47.820660px;}
.ws8{word-spacing:-45.405736px;}
.ws6{word-spacing:-30.939967px;}
.ws3{word-spacing:-30.892146px;}
.ws2{word-spacing:-30.270478px;}
.ws5{word-spacing:-25.344950px;}
.ws4{word-spacing:-25.297129px;}
.ws7{word-spacing:-22.307732px;}
.ws0{word-spacing:-19.337484px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:460.130391px;}
.wsf{word-spacing:462.760527px;}
.wse{word-spacing:525.405591px;}
.wsc{word-spacing:526.792391px;}
.ws12{word-spacing:562.697539px;}
.ws14{word-spacing:571.735644px;}
.ws10{word-spacing:584.798851px;}
.ws11{word-spacing:588.090310px;}
.ws13{word-spacing:597.128414px;}
._a{margin-left:-25.793268px;}
._4{margin-left:-24.771102px;}
._5b{margin-left:-6.599254px;}
._11{margin-left:-4.208218px;}
._13{margin-left:-3.058132px;}
._0{margin-left:-1.703611px;}
._8{width:1.434620px;}
._1{width:2.668393px;}
._5{width:18.615337px;}
._6{width:25.175105px;}
._12{width:26.965839px;}
._9{width:30.897268px;}
._7{width:33.900016px;}
._10{width:35.094070px;}
._3{width:40.075397px;}
._e{width:41.805097px;}
._d{width:46.263835px;}
._c{width:50.632347px;}
._25{width:59.375327px;}
._3d{width:64.970345px;}
._4e{width:91.319528px;}
._4a{width:102.682913px;}
._20{width:128.219145px;}
._37{width:140.688382px;}
._59{width:144.033438px;}
._4b{width:168.962348px;}
._4f{width:187.265705px;}
._28{width:195.903312px;}
._3f{width:202.723734px;}
._44{width:204.080645px;}
._1c{width:212.132448px;}
._57{width:237.889851px;}
._47{width:238.892914px;}
._15{width:251.871416px;}
._3b{width:253.736422px;}
._49{width:267.281625px;}
._23{width:275.955097px;}
._55{width:277.724461px;}
._1e{width:284.437286px;}
._58{width:290.988716px;}
._2a{width:294.670907px;}
._53{width:297.301043px;}
._17{width:320.237028px;}
._19{width:327.601409px;}
._40{width:331.474883px;}
._56{width:344.721206px;}
._35{width:355.164042px;}
._21{width:362.624065px;}
._39{width:365.074874px;}
._1b{width:369.940626px;}
._4c{width:371.231784px;}
._54{width:374.465656px;}
._14{width:379.170013px;}
._45{width:380.604633px;}
._2f{width:385.655691px;}
._48{width:386.934892px;}
._26{width:393.002140px;}
._3c{width:407.987939px;}
._46{width:410.618075px;}
._5a{width:415.591424px;}
._30{width:423.882330px;}
._1f{width:428.281831px;}
._16{width:439.950072px;}
._33{width:446.358040px;}
._34{width:449.352810px;}
._1d{width:451.379210px;}
._24{width:461.355795px;}
._4d{width:464.721174px;}
._36{width:470.985680px;}
._43{width:501.208337px;}
._3e{width:504.394389px;}
._50{width:515.145871px;}
._2c{width:537.151541px;}
._42{width:546.924888px;}
._18{width:549.172459px;}
._2d{width:554.767477px;}
._2e{width:568.396365px;}
._41{width:573.495243px;}
._38{width:575.904208px;}
._29{width:584.015788px;}
._2b{width:586.406821px;}
._1a{width:612.325619px;}
._51{width:617.476083px;}
._32{width:622.194607px;}
._31{width:625.302950px;}
._3a{width:632.619511px;}
._27{width:633.767207px;}
._5c{width:635.154006px;}
._22{width:676.949263px;}
._52{width:771.667823px;}
._5d{width:958.815871px;}
._5e{width:1071.116713px;}
._f{width:2225.430054px;}
._2{width:2290.794920px;}
._b{width:2300.938877px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:29.887920px;}
.fs4{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs5{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y30{bottom:40.207500px;}
.y82{bottom:116.305500px;}
.y51{bottom:121.908000px;}
.y2f{bottom:131.922000px;}
.y81{bottom:136.330500px;}
.y2e{bottom:146.866500px;}
.y80{bottom:156.654000px;}
.y50{bottom:157.773000px;}
.y2d{bottom:166.293000px;}
.yae{bottom:170.529000px;}
.y7f{bottom:176.977500px;}
.y2c{bottom:181.237500px;}
.yad{bottom:189.955500px;}
.y7e{bottom:197.301000px;}
.y2b{bottom:200.664000px;}
.yac{bottom:209.383500px;}
.y2a{bottom:215.608500px;}
.y7d{bottom:217.624500px;}
.yab{bottom:224.326500px;}
.y29{bottom:230.551500px;}
.y7c{bottom:237.948000px;}
.yaa{bottom:243.754500px;}
.y28{bottom:249.979500px;}
.y4f{bottom:257.398500px;}
.y7b{bottom:258.273000px;}
.ya9{bottom:258.697500px;}
.y27{bottom:269.406000px;}
.y4e{bottom:276.826500px;}
.ya8{bottom:278.125500px;}
.y7a{bottom:278.596500px;}
.y26{bottom:288.834000px;}
.y4d{bottom:296.253000px;}
.y79{bottom:298.920000px;}
.y25{bottom:308.260500px;}
.y4c{bottom:311.197500px;}
.ya7{bottom:319.071000px;}
.y78{bottom:319.243500px;}
.ya6{bottom:339.096000px;}
.y77{bottom:339.567000px;}
.y24{bottom:344.148000px;}
.y4b{bottom:347.085000px;}
.ya5{bottom:359.419500px;}
.y76{bottom:359.890500px;}
.ya4{bottom:379.744500px;}
.y75{bottom:380.215500px;}
.ya3{bottom:400.068000px;}
.y74{bottom:400.539000px;}
.y23{bottom:403.176000px;}
.y4a{bottom:406.113000px;}
.y22{bottom:418.120500px;}
.y73{bottom:420.862500px;}
.ya2{bottom:420.988500px;}
.y49{bottom:425.541000px;}
.y21{bottom:433.065000px;}
.ya1{bottom:441.013500px;}
.y72{bottom:441.186000px;}
.y48{bottom:444.967500px;}
.y20{bottom:452.491500px;}
.y47{bottom:459.912000px;}
.ya0{bottom:460.441500px;}
.y71{bottom:461.509500px;}
.y1f{bottom:471.919500px;}
.y70{bottom:481.833000px;}
.y46{bottom:495.799500px;}
.y9f{bottom:496.329000px;}
.y6f{bottom:502.158000px;}
.y1e{bottom:507.807000px;}
.y6e{bottom:522.481500px;}
.y6d{bottom:542.805000px;}
.y45{bottom:554.827500px;}
.y9e{bottom:555.357000px;}
.y6c{bottom:563.128500px;}
.y1d{bottom:566.835000px;}
.y44{bottom:569.772000px;}
.y9d{bottom:570.301500px;}
.y1c{bottom:581.779500px;}
.y6b{bottom:583.452000px;}
.y43{bottom:589.198500px;}
.y9c{bottom:589.728000px;}
.y1b{bottom:601.206000px;}
.y6a{bottom:603.775500px;}
.y42{bottom:608.626500px;}
.y9b{bottom:609.156000px;}
.y1a{bottom:616.150500px;}
.y41{bottom:623.569500px;}
.y9a{bottom:624.099000px;}
.y69{bottom:624.100500px;}
.y19{bottom:631.093500px;}
.y99{bottom:643.527000px;}
.y68{bottom:644.424000px;}
.y18{bottom:646.038000px;}
.y98{bottom:658.470000px;}
.y40{bottom:659.457000px;}
.y17{bottom:660.982500px;}
.y67{bottom:664.747500px;}
.y97{bottom:677.898000px;}
.y16{bottom:680.409000px;}
.y66{bottom:685.071000px;}
.y96{bottom:692.841000px;}
.y3f{bottom:695.323500px;}
.y15{bottom:700.434000px;}
.y65{bottom:705.394500px;}
.y95{bottom:712.269000px;}
.y64{bottom:725.718000px;}
.y94{bottom:731.695500px;}
.y14{bottom:736.321500px;}
.y63{bottom:746.640000px;}
.y93{bottom:751.123500px;}
.y62{bottom:766.665000px;}
.y13{bottom:772.186500px;}
.y61{bottom:786.091500px;}
.y92{bottom:787.011000px;}
.y3e{bottom:795.163500px;}
.y3d{bottom:814.591500px;}
.y60{bottom:821.979000px;}
.y3c{bottom:829.536000px;}
.y12{bottom:833.920500px;}
.y11{bottom:848.865000px;}
.y10{bottom:863.809500px;}
.y3b{bottom:865.422000px;}
.yf{bottom:878.752500px;}
.y5f{bottom:881.008500px;}
.ye{bottom:893.697000px;}
.y5e{bottom:900.435000px;}
.y91{bottom:905.815500px;}
.y5d{bottom:915.379500px;}
.yd{bottom:923.584500px;}
.y3a{bottom:924.451500px;}
.y90{bottom:925.242000px;}
.y5c{bottom:934.806000px;}
.yc{bottom:938.529000px;}
.y39{bottom:943.878000px;}
.y8f{bottom:944.670000px;}
.yb{bottom:953.472000px;}
.y5b{bottom:954.234000px;}
.y8e{bottom:959.613000px;}
.y38{bottom:963.306000px;}
.ya{bottom:968.416500px;}
.y5a{bottom:969.177000px;}
.y37{bottom:978.249000px;}
.y8d{bottom:979.041000px;}
.y59{bottom:988.605000px;}
.y8c{bottom:993.984000px;}
.y36{bottom:997.677000px;}
.y9{bottom:998.304000px;}
.y58{bottom:1008.031500px;}
.y8b{bottom:1008.928500px;}
.y8{bottom:1013.248500px;}
.y57{bottom:1022.976000px;}
.y8a{bottom:1023.873000px;}
.y7{bottom:1028.193000px;}
.y35{bottom:1033.564500px;}
.y89{bottom:1038.816000px;}
.y56{bottom:1042.402500px;}
.y6{bottom:1043.136000px;}
.y88{bottom:1053.760500px;}
.y5{bottom:1058.080500px;}
.y87{bottom:1068.705000px;}
.y4{bottom:1073.025000px;}
.y55{bottom:1083.349500px;}
.y86{bottom:1083.648000px;}
.y3{bottom:1087.968000px;}
.y34{bottom:1092.592500px;}
.y85{bottom:1098.592500px;}
.y1{bottom:1103.661000px;}
.y54{bottom:1103.971500px;}
.y33{bottom:1112.020500px;}
.y84{bottom:1113.535500px;}
.y2{bottom:1117.855500px;}
.y53{bottom:1123.996500px;}
.y32{bottom:1126.963500px;}
.y83{bottom:1128.480000px;}
.y52{bottom:1143.424500px;}
.y31{bottom:1162.851000px;}
.h2{height:22.415940px;}
.h4{height:35.865495px;}
.h8{height:40.528020px;}
.h7{height:43.771110px;}
.h6{height:43.777110px;}
.h5{height:53.798265px;}
.h3{height:64.557900px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x9{left:110.094000px;}
.x3{left:114.927000px;}
.x4{left:138.837000px;}
.x5{left:276.595500px;}
.x8{left:442.720500px;}
.x6{left:450.069000px;}
.x1{left:618.369000px;}
.x7{left:641.619000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.002667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:17.700827pt;}
.ls0{letter-spacing:22.571352pt;}
.ls6{letter-spacing:186.442160pt;}
.ls5{letter-spacing:195.199493pt;}
.ls2{letter-spacing:335.300827pt;}
.ls1{letter-spacing:535.380827pt;}
.wsd{word-spacing:-63.760907pt;}
.ws1{word-spacing:-48.432771pt;}
.ws9{word-spacing:-42.507253pt;}
.ws8{word-spacing:-40.360654pt;}
.ws6{word-spacing:-27.502193pt;}
.ws3{word-spacing:-27.459686pt;}
.ws2{word-spacing:-26.907091pt;}
.ws5{word-spacing:-22.528844pt;}
.ws4{word-spacing:-22.486337pt;}
.ws7{word-spacing:-19.829095pt;}
.ws0{word-spacing:-17.188875pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:409.004792pt;}
.wsf{word-spacing:411.342691pt;}
.wse{word-spacing:467.027192pt;}
.wsc{word-spacing:468.259903pt;}
.ws12{word-spacing:500.175590pt;}
.ws14{word-spacing:508.209461pt;}
.ws10{word-spacing:519.821201pt;}
.ws11{word-spacing:522.746942pt;}
.ws13{word-spacing:530.780813pt;}
._a{margin-left:-22.927349pt;}
._4{margin-left:-22.018757pt;}
._5b{margin-left:-5.866003pt;}
._11{margin-left:-3.740638pt;}
._13{margin-left:-2.718339pt;}
._0{margin-left:-1.514321pt;}
._8{width:1.275218pt;}
._1{width:2.371905pt;}
._5{width:16.546966pt;}
._6{width:22.377871pt;}
._12{width:23.969635pt;}
._9{width:27.464238pt;}
._7{width:30.133347pt;}
._10{width:31.194729pt;}
._3{width:35.622575pt;}
._e{width:37.160086pt;}
._d{width:41.123408pt;}
._c{width:45.006531pt;}
._25{width:52.778069pt;}
._3d{width:57.751417pt;}
._4e{width:81.172914pt;}
._4a{width:91.273700pt;}
._20{width:113.972574pt;}
._37{width:125.056339pt;}
._59{width:128.029722pt;}
._4b{width:150.188754pt;}
._4f{width:166.458404pt;}
._28{width:174.136277pt;}
._3f{width:180.198874pt;}
._44{width:181.405017pt;}
._1c{width:188.562176pt;}
._57{width:211.457645pt;}
._47{width:212.349257pt;}
._15{width:223.885703pt;}
._3b{width:225.543486pt;}
._49{width:237.583666pt;}
._23{width:245.293419pt;}
._55{width:246.866188pt;}
._1e{width:252.833143pt;}
._58{width:258.656637pt;}
._2a{width:261.929695pt;}
._53{width:264.267594pt;}
._17{width:284.655136pt;}
._19{width:291.201253pt;}
._40{width:294.644340pt;}
._56{width:306.418849pt;}
._35{width:315.701371pt;}
._21{width:322.332502pt;}
._39{width:324.511000pt;}
._1b{width:328.836112pt;}
._4c{width:329.983808pt;}
._54{width:332.858361pt;}
._14{width:337.040012pt;}
._45{width:338.315229pt;}
._2f{width:342.805058pt;}
._48{width:343.942127pt;}
._26{width:349.335235pt;}
._3c{width:362.655946pt;}
._46{width:364.993845pt;}
._5a{width:369.414599pt;}
._30{width:376.784294pt;}
._1f{width:380.694961pt;}
._16{width:391.066731pt;}
._33{width:396.762703pt;}
._34{width:399.424720pt;}
._1d{width:401.225964pt;}
._24{width:410.094040pt;}
._4d{width:413.085488pt;}
._36{width:418.653938pt;}
._43{width:445.518522pt;}
._3e{width:448.350568pt;}
._50{width:457.907441pt;}
._2c{width:477.468037pt;}
._42{width:486.155456pt;}
._18{width:488.153297pt;}
._2d{width:493.126646pt;}
._2e{width:505.241213pt;}
._41{width:509.773549pt;}
._38{width:511.914852pt;}
._29{width:519.125145pt;}
._2b{width:521.250508pt;}
._1a{width:544.289439pt;}
._51{width:548.867630pt;}
._32{width:553.061873pt;}
._31{width:555.824845pt;}
._3a{width:562.328454pt;}
._27{width:563.348628pt;}
._5c{width:564.581339pt;}
._22{width:601.732678pt;}
._52{width:685.926954pt;}
._5d{width:852.280774pt;}
._5e{width:952.103745pt;}
._f{width:1978.160048pt;}
._2{width:2036.262151pt;}
._b{width:2045.279001pt;}
.fs0{font-size:26.567040pt;}
.fs4{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs5{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:35.740000pt;}
.y82{bottom:103.382667pt;}
.y51{bottom:108.362667pt;}
.y2f{bottom:117.264000pt;}
.y81{bottom:121.182667pt;}
.y2e{bottom:130.548000pt;}
.y80{bottom:139.248000pt;}
.y50{bottom:140.242667pt;}
.y2d{bottom:147.816000pt;}
.yae{bottom:151.581333pt;}
.y7f{bottom:157.313333pt;}
.y2c{bottom:161.100000pt;}
.yad{bottom:168.849333pt;}
.y7e{bottom:175.378667pt;}
.y2b{bottom:178.368000pt;}
.yac{bottom:186.118667pt;}
.y2a{bottom:191.652000pt;}
.y7d{bottom:193.444000pt;}
.yab{bottom:199.401333pt;}
.y29{bottom:204.934667pt;}
.y7c{bottom:211.509333pt;}
.yaa{bottom:216.670667pt;}
.y28{bottom:222.204000pt;}
.y4f{bottom:228.798667pt;}
.y7b{bottom:229.576000pt;}
.ya9{bottom:229.953333pt;}
.y27{bottom:239.472000pt;}
.y4e{bottom:246.068000pt;}
.ya8{bottom:247.222667pt;}
.y7a{bottom:247.641333pt;}
.y26{bottom:256.741333pt;}
.y4d{bottom:263.336000pt;}
.y79{bottom:265.706667pt;}
.y25{bottom:274.009333pt;}
.y4c{bottom:276.620000pt;}
.ya7{bottom:283.618667pt;}
.y78{bottom:283.772000pt;}
.ya6{bottom:301.418667pt;}
.y77{bottom:301.837333pt;}
.y24{bottom:305.909333pt;}
.y4b{bottom:308.520000pt;}
.ya5{bottom:319.484000pt;}
.y76{bottom:319.902667pt;}
.ya4{bottom:337.550667pt;}
.y75{bottom:337.969333pt;}
.ya3{bottom:355.616000pt;}
.y74{bottom:356.034667pt;}
.y23{bottom:358.378667pt;}
.y4a{bottom:360.989333pt;}
.y22{bottom:371.662667pt;}
.y73{bottom:374.100000pt;}
.ya2{bottom:374.212000pt;}
.y49{bottom:378.258667pt;}
.y21{bottom:384.946667pt;}
.ya1{bottom:392.012000pt;}
.y72{bottom:392.165333pt;}
.y48{bottom:395.526667pt;}
.y20{bottom:402.214667pt;}
.y47{bottom:408.810667pt;}
.ya0{bottom:409.281333pt;}
.y71{bottom:410.230667pt;}
.y1f{bottom:419.484000pt;}
.y70{bottom:428.296000pt;}
.y46{bottom:440.710667pt;}
.y9f{bottom:441.181333pt;}
.y6f{bottom:446.362667pt;}
.y1e{bottom:451.384000pt;}
.y6e{bottom:464.428000pt;}
.y6d{bottom:482.493333pt;}
.y45{bottom:493.180000pt;}
.y9e{bottom:493.650667pt;}
.y6c{bottom:500.558667pt;}
.y1d{bottom:503.853333pt;}
.y44{bottom:506.464000pt;}
.y9d{bottom:506.934667pt;}
.y1c{bottom:517.137333pt;}
.y6b{bottom:518.624000pt;}
.y43{bottom:523.732000pt;}
.y9c{bottom:524.202667pt;}
.y1b{bottom:534.405333pt;}
.y6a{bottom:536.689333pt;}
.y42{bottom:541.001333pt;}
.y9b{bottom:541.472000pt;}
.y1a{bottom:547.689333pt;}
.y41{bottom:554.284000pt;}
.y9a{bottom:554.754667pt;}
.y69{bottom:554.756000pt;}
.y19{bottom:560.972000pt;}
.y99{bottom:572.024000pt;}
.y68{bottom:572.821333pt;}
.y18{bottom:574.256000pt;}
.y98{bottom:585.306667pt;}
.y40{bottom:586.184000pt;}
.y17{bottom:587.540000pt;}
.y67{bottom:590.886667pt;}
.y97{bottom:602.576000pt;}
.y16{bottom:604.808000pt;}
.y66{bottom:608.952000pt;}
.y96{bottom:615.858667pt;}
.y3f{bottom:618.065333pt;}
.y15{bottom:622.608000pt;}
.y65{bottom:627.017333pt;}
.y95{bottom:633.128000pt;}
.y64{bottom:645.082667pt;}
.y94{bottom:650.396000pt;}
.y14{bottom:654.508000pt;}
.y63{bottom:663.680000pt;}
.y93{bottom:667.665333pt;}
.y62{bottom:681.480000pt;}
.y13{bottom:686.388000pt;}
.y61{bottom:698.748000pt;}
.y92{bottom:699.565333pt;}
.y3e{bottom:706.812000pt;}
.y3d{bottom:724.081333pt;}
.y60{bottom:730.648000pt;}
.y3c{bottom:737.365333pt;}
.y12{bottom:741.262667pt;}
.y11{bottom:754.546667pt;}
.y10{bottom:767.830667pt;}
.y3b{bottom:769.264000pt;}
.yf{bottom:781.113333pt;}
.y5f{bottom:783.118667pt;}
.ye{bottom:794.397333pt;}
.y5e{bottom:800.386667pt;}
.y91{bottom:805.169333pt;}
.y5d{bottom:813.670667pt;}
.yd{bottom:820.964000pt;}
.y3a{bottom:821.734667pt;}
.y90{bottom:822.437333pt;}
.y5c{bottom:830.938667pt;}
.yc{bottom:834.248000pt;}
.y39{bottom:839.002667pt;}
.y8f{bottom:839.706667pt;}
.yb{bottom:847.530667pt;}
.y5b{bottom:848.208000pt;}
.y8e{bottom:852.989333pt;}
.y38{bottom:856.272000pt;}
.ya{bottom:860.814667pt;}
.y5a{bottom:861.490667pt;}
.y37{bottom:869.554667pt;}
.y8d{bottom:870.258667pt;}
.y59{bottom:878.760000pt;}
.y8c{bottom:883.541333pt;}
.y36{bottom:886.824000pt;}
.y9{bottom:887.381333pt;}
.y58{bottom:896.028000pt;}
.y8b{bottom:896.825333pt;}
.y8{bottom:900.665333pt;}
.y57{bottom:909.312000pt;}
.y8a{bottom:910.109333pt;}
.y7{bottom:913.949333pt;}
.y35{bottom:918.724000pt;}
.y89{bottom:923.392000pt;}
.y56{bottom:926.580000pt;}
.y6{bottom:927.232000pt;}
.y88{bottom:936.676000pt;}
.y5{bottom:940.516000pt;}
.y87{bottom:949.960000pt;}
.y4{bottom:953.800000pt;}
.y55{bottom:962.977333pt;}
.y86{bottom:963.242667pt;}
.y3{bottom:967.082667pt;}
.y34{bottom:971.193333pt;}
.y85{bottom:976.526667pt;}
.y1{bottom:981.032000pt;}
.y54{bottom:981.308000pt;}
.y33{bottom:988.462667pt;}
.y84{bottom:989.809333pt;}
.y2{bottom:993.649333pt;}
.y53{bottom:999.108000pt;}
.y32{bottom:1001.745333pt;}
.y83{bottom:1003.093333pt;}
.y52{bottom:1016.377333pt;}
.y31{bottom:1033.645333pt;}
.h2{height:19.925280pt;}
.h4{height:31.880440pt;}
.h8{height:36.024906pt;}
.h7{height:38.907653pt;}
.h6{height:38.912987pt;}
.h5{height:47.820680pt;}
.h3{height:57.384800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x9{left:97.861333pt;}
.x3{left:102.157333pt;}
.x4{left:123.410667pt;}
.x5{left:245.862667pt;}
.x8{left:393.529333pt;}
.x6{left:400.061333pt;}
.x1{left:549.661333pt;}
.x7{left:570.328000pt;}
}




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