
    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_a6d17f3a133d1386c1a5040a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_849a74b67404c76224c14c3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_23a27758b3cd656a73333a95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bd8ab873a25b7fa4a674d9c9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4300a5342bbf7433fff608c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.ls3{letter-spacing:0.378602px;}
.ls2{letter-spacing:64.076494px;}
.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;}
}
.ws2{word-spacing:-35.855986px;}
.ws3{word-spacing:-14.939994px;}
.ws0{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-3.391807px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._d{width:2.316986px;}
._12{width:3.376140px;}
._9{width:4.416691px;}
._8{width:6.018912px;}
._14{width:7.137908px;}
._15{width:9.101175px;}
._17{width:10.218385px;}
._13{width:11.258689px;}
._16{width:12.480524px;}
._11{width:13.539896px;}
._7{width:16.774303px;}
._19{width:18.076025px;}
._c{width:19.129271px;}
._b{width:20.236619px;}
._1c{width:22.896315px;}
._a{width:24.420473px;}
._5{width:25.813577px;}
._6{width:27.078617px;}
._1b{width:28.214673px;}
._f{width:33.366390px;}
._10{width:93.126361px;}
._1{width:100.137638px;}
._1a{width:109.016743px;}
._e{width:211.638515px;}
._3{width:231.194081px;}
._4{width:1036.867572px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fs8{font-size:30.239988px;}
.fs5{font-size:41.759983px;}
.fs6{font-size:45.359982px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs7{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.058928px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.y73{bottom:136.739945px;}
.yb4{bottom:143.039943px;}
.y42{bottom:143.939942px;}
.y8f{bottom:151.499939px;}
.y72{bottom:155.279938px;}
.yb3{bottom:161.579935px;}
.y41{bottom:162.479935px;}
.y8e{bottom:170.039932px;}
.y71{bottom:173.999930px;}
.yb2{bottom:180.119928px;}
.y40{bottom:181.199928px;}
.y8d{bottom:188.759924px;}
.y70{bottom:197.219921px;}
.yb1{bottom:199.559920px;}
.y3f{bottom:199.739920px;}
.y8c{bottom:207.299917px;}
.y6f{bottom:215.759914px;}
.yb0{bottom:218.099913px;}
.y3e{bottom:218.459913px;}
.y8b{bottom:226.019910px;}
.y6e{bottom:234.479906px;}
.y3d{bottom:236.999905px;}
.yaf{bottom:237.539905px;}
.y8a{bottom:248.879900px;}
.y6d{bottom:253.019899px;}
.yae{bottom:256.799897px;}
.y3c{bottom:260.039896px;}
.y6c{bottom:271.739891px;}
.yad{bottom:275.519890px;}
.y3b{bottom:282.719887px;}
.y6b{bottom:290.279884px;}
.yac{bottom:294.059882px;}
.y3a{bottom:301.439879px;}
.y6a{bottom:308.999876px;}
.yab{bottom:313.499875px;}
.y39{bottom:324.299870px;}
.y89{bottom:327.539869px;}
.y69{bottom:331.859867px;}
.yaa{bottom:332.039867px;}
.y88{bottom:346.259861px;}
.y38{bottom:347.159861px;}
.ya9{bottom:350.579860px;}
.y68{bottom:354.719858px;}
.y87{bottom:364.979854px;}
.y37{bottom:365.879854px;}
.ya8{bottom:370.019852px;}
.y67{bottom:373.259851px;}
.y86{bottom:383.519847px;}
.y36{bottom:384.419846px;}
.ya7{bottom:388.739845px;}
.y66{bottom:396.299841px;}
.y35{bottom:403.139839px;}
.y85{bottom:406.559837px;}
.ya6{bottom:407.279837px;}
.y65{bottom:418.979832px;}
.y34{bottom:421.679831px;}
.ya5{bottom:426.539829px;}
.y84{bottom:429.239828px;}
.y64{bottom:437.699825px;}
.y33{bottom:440.399824px;}
.ya4{bottom:445.259822px;}
.y83{bottom:447.959821px;}
.y63{bottom:456.419817px;}
.y32{bottom:458.939816px;}
.ya3{bottom:464.519814px;}
.y82{bottom:470.819812px;}
.y62{bottom:474.959810px;}
.y31{bottom:477.659809px;}
.ya2{bottom:483.239807px;}
.y61{bottom:493.679803px;}
.y30{bottom:496.199802px;}
.ya1{bottom:502.499799px;}
.y60{bottom:512.219795px;}
.y2f{bottom:514.919794px;}
.ya0{bottom:521.219792px;}
.y5f{bottom:530.939788px;}
.y2e{bottom:533.639787px;}
.y9f{bottom:539.759784px;}
.y81{bottom:549.479780px;}
.y5e{bottom:553.799778px;}
.y2d{bottom:556.499777px;}
.y9e{bottom:559.199776px;}
.y80{bottom:568.199773px;}
.y2c{bottom:571.799771px;}
.y5d{bottom:576.659769px;}
.y2b{bottom:577.379769px;}
.y9d{bottom:577.739769px;}
.y2a{bottom:584.939766px;}
.y7f{bottom:586.739765px;}
.y5c{bottom:595.199762px;}
.y9c{bottom:596.279761px;}
.y29{bottom:596.459761px;}
.y7e{bottom:605.459758px;}
.y28{bottom:606.539757px;}
.y5b{bottom:613.919754px;}
.y9b{bottom:615.719754px;}
.y27{bottom:622.919751px;}
.y7d{bottom:628.319749px;}
.y5a{bottom:632.459747px;}
.y26{bottom:634.079746px;}
.y9a{bottom:634.439746px;}
.y59{bottom:651.179740px;}
.y25{bottom:652.799739px;}
.y99{bottom:652.979739px;}
.y58{bottom:669.899732px;}
.y24{bottom:671.339731px;}
.y98{bottom:672.239731px;}
.y57{bottom:688.439725px;}
.y23{bottom:690.059724px;}
.y97{bottom:690.959724px;}
.y56{bottom:707.159717px;}
.y22{bottom:708.779716px;}
.y96{bottom:709.499716px;}
.y55{bottom:725.699710px;}
.y21{bottom:727.319709px;}
.y95{bottom:728.939708px;}
.y7c{bottom:744.419702px;}
.y20{bottom:746.039702px;}
.y94{bottom:747.479701px;}
.y54{bottom:748.739701px;}
.y7b{bottom:762.959695px;}
.y1f{bottom:764.579694px;}
.y93{bottom:766.199694px;}
.y53{bottom:771.419691px;}
.y7a{bottom:781.679687px;}
.y1e{bottom:783.299687px;}
.y92{bottom:785.459686px;}
.y52{bottom:790.139684px;}
.y1d{bottom:801.839679px;}
.y91{bottom:804.179678px;}
.y79{bottom:804.539678px;}
.y51{bottom:812.999675px;}
.y1c{bottom:820.559672px;}
.y90{bottom:822.719671px;}
.y78{bottom:827.399669px;}
.y50{bottom:835.859666px;}
.y1b{bottom:836.579665px;}
.y77{bottom:846.119662px;}
.y1a{bottom:846.479661px;}
.y4f{bottom:854.399658px;}
.y19{bottom:864.119654px;}
.y76{bottom:868.979652px;}
.y4e{bottom:873.119651px;}
.y18{bottom:879.059648px;}
.y4d{bottom:891.839643px;}
.y17{bottom:894.539642px;}
.y4c{bottom:910.379636px;}
.y16{bottom:913.259635px;}
.y4b{bottom:929.099628px;}
.y15{bottom:931.799627px;}
.y4a{bottom:947.639621px;}
.y14{bottom:950.339620px;}
.y49{bottom:966.359613px;}
.y13{bottom:968.519613px;}
.y48{bottom:984.899606px;}
.y12{bottom:989.399604px;}
.y75{bottom:1003.619599px;}
.y47{bottom:1007.939597px;}
.y11{bottom:1018.379593px;}
.y74{bottom:1026.479589px;}
.y46{bottom:1030.619588px;}
.y10{bottom:1047.179581px;}
.y45{bottom:1049.339580px;}
.y44{bottom:1067.879573px;}
.yf{bottom:1073.099571px;}
.y43{bottom:1086.599565px;}
.ye{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yd{bottom:1153.919538px;}
.y2{bottom:1163.639535px;}
.yc{bottom:1167.599533px;}
.ya{bottom:1177.680600px;}
.y1{bottom:1196.039522px;}
.h7{height:12.960000px;}
.h2{height:13.104487px;}
.h6{height:15.836126px;}
.hd{height:17.297923px;}
.he{height:22.045069px;}
.h8{height:30.402410px;}
.h9{height:33.067604px;}
.h3{height:35.049361px;}
.hc{height:35.120025px;}
.h4{height:35.167134px;}
.h1{height:39.313461px;}
.hb{height:43.419358px;}
.h5{height:43.506897px;}
.hf{height:43.565256px;}
.ha{height:69.575597px;}
.h0{height:1263.000000px;}
.w2{width:6.660000px;}
.w1{width:276.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x13{left:135.000008px;}
.x12{left:154.793938px;}
.x4{left:160.019662px;}
.x10{left:163.080594px;}
.xc{left:198.539921px;}
.x5{left:200.519920px;}
.xd{left:207.899919px;}
.xb{left:313.559875px;}
.x11{left:339.480148px;}
.xe{left:351.179850px;}
.x2{left:353.160301px;}
.xf{left:395.999901px;}
.x6{left:424.619830px;}
.x14{left:427.139595px;}
.x3{left:446.400357px;}
.x7{left:500.220000px;}
.x9{left:558.359777px;}
.xa{left:702.893719px;}
.x8{left:777.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.ls3{letter-spacing:0.336535pt;}
.ls2{letter-spacing:56.956884pt;}
.ws2{word-spacing:-31.871987pt;}
.ws3{word-spacing:-13.279995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-3.014940pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._d{width:2.059543pt;}
._12{width:3.001014pt;}
._9{width:3.925948pt;}
._8{width:5.350144pt;}
._14{width:6.344807pt;}
._15{width:8.089934pt;}
._17{width:9.083009pt;}
._13{width:10.007724pt;}
._16{width:11.093799pt;}
._11{width:12.035464pt;}
._7{width:14.910491pt;}
._19{width:16.067578pt;}
._c{width:17.003796pt;}
._b{width:17.988106pt;}
._1c{width:20.352280pt;}
._a{width:21.707087pt;}
._5{width:22.945402pt;}
._6{width:24.069881pt;}
._1b{width:25.079709pt;}
._f{width:29.659014pt;}
._10{width:82.778988pt;}
._1{width:89.011234pt;}
._1a{width:96.903772pt;}
._e{width:188.123125pt;}
._3{width:205.505850pt;}
._4{width:921.660064pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fs8{font-size:26.879989pt;}
.fs5{font-size:37.119985pt;}
.fs6{font-size:40.319984pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs7{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.719047pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.y73{bottom:121.546618pt;}
.yb4{bottom:127.146616pt;}
.y42{bottom:127.946615pt;}
.y8f{bottom:134.666613pt;}
.y72{bottom:138.026611pt;}
.yb3{bottom:143.626609pt;}
.y41{bottom:144.426609pt;}
.y8e{bottom:151.146606pt;}
.y71{bottom:154.666605pt;}
.yb2{bottom:160.106603pt;}
.y40{bottom:161.066602pt;}
.y8d{bottom:167.786600pt;}
.y70{bottom:175.306597pt;}
.yb1{bottom:177.386596pt;}
.y3f{bottom:177.546596pt;}
.y8c{bottom:184.266593pt;}
.y6f{bottom:191.786590pt;}
.yb0{bottom:193.866589pt;}
.y3e{bottom:194.186589pt;}
.y8b{bottom:200.906586pt;}
.y6e{bottom:208.426583pt;}
.y3d{bottom:210.666582pt;}
.yaf{bottom:211.146582pt;}
.y8a{bottom:221.226578pt;}
.y6d{bottom:224.906577pt;}
.yae{bottom:228.266575pt;}
.y3c{bottom:231.146574pt;}
.y6c{bottom:241.546570pt;}
.yad{bottom:244.906569pt;}
.y3b{bottom:251.306566pt;}
.y6b{bottom:258.026563pt;}
.yac{bottom:261.386562pt;}
.y3a{bottom:267.946559pt;}
.y6a{bottom:274.666557pt;}
.yab{bottom:278.666555pt;}
.y39{bottom:288.266551pt;}
.y89{bottom:291.146550pt;}
.y69{bottom:294.986549pt;}
.yaa{bottom:295.146549pt;}
.y88{bottom:307.786544pt;}
.y38{bottom:308.586543pt;}
.ya9{bottom:311.626542pt;}
.y68{bottom:315.306541pt;}
.y87{bottom:324.426537pt;}
.y37{bottom:325.226537pt;}
.ya8{bottom:328.906535pt;}
.y67{bottom:331.786534pt;}
.y86{bottom:340.906530pt;}
.y36{bottom:341.706530pt;}
.ya7{bottom:345.546528pt;}
.y66{bottom:352.266526pt;}
.y35{bottom:358.346523pt;}
.y85{bottom:361.386522pt;}
.ya6{bottom:362.026522pt;}
.y65{bottom:372.426518pt;}
.y34{bottom:374.826517pt;}
.ya5{bottom:379.146515pt;}
.y84{bottom:381.546514pt;}
.y64{bottom:389.066511pt;}
.y33{bottom:391.466510pt;}
.ya4{bottom:395.786508pt;}
.y83{bottom:398.186507pt;}
.y63{bottom:405.706504pt;}
.y32{bottom:407.946503pt;}
.ya3{bottom:412.906502pt;}
.y82{bottom:418.506499pt;}
.y62{bottom:422.186498pt;}
.y31{bottom:424.586497pt;}
.ya2{bottom:429.546495pt;}
.y61{bottom:438.826491pt;}
.y30{bottom:441.066490pt;}
.ya1{bottom:446.666488pt;}
.y60{bottom:455.306485pt;}
.y2f{bottom:457.706484pt;}
.ya0{bottom:463.306481pt;}
.y5f{bottom:471.946478pt;}
.y2e{bottom:474.346477pt;}
.y9f{bottom:479.786475pt;}
.y81{bottom:488.426471pt;}
.y5e{bottom:492.266470pt;}
.y2d{bottom:494.666469pt;}
.y9e{bottom:497.066468pt;}
.y80{bottom:505.066465pt;}
.y2c{bottom:508.266463pt;}
.y5d{bottom:512.586462pt;}
.y2b{bottom:513.226461pt;}
.y9d{bottom:513.546461pt;}
.y2a{bottom:519.946459pt;}
.y7f{bottom:521.546458pt;}
.y5c{bottom:529.066455pt;}
.y9c{bottom:530.026455pt;}
.y29{bottom:530.186455pt;}
.y7e{bottom:538.186451pt;}
.y28{bottom:539.146451pt;}
.y5b{bottom:545.706448pt;}
.y9b{bottom:547.306448pt;}
.y27{bottom:553.706445pt;}
.y7d{bottom:558.506443pt;}
.y5a{bottom:562.186442pt;}
.y26{bottom:563.626441pt;}
.y9a{bottom:563.946441pt;}
.y59{bottom:578.826435pt;}
.y25{bottom:580.266435pt;}
.y99{bottom:580.426434pt;}
.y58{bottom:595.466428pt;}
.y24{bottom:596.746428pt;}
.y98{bottom:597.546428pt;}
.y57{bottom:611.946422pt;}
.y23{bottom:613.386421pt;}
.y97{bottom:614.186421pt;}
.y56{bottom:628.586415pt;}
.y22{bottom:630.026415pt;}
.y96{bottom:630.666414pt;}
.y55{bottom:645.066409pt;}
.y21{bottom:646.506408pt;}
.y95{bottom:647.946407pt;}
.y7c{bottom:661.706402pt;}
.y20{bottom:663.146401pt;}
.y94{bottom:664.426401pt;}
.y54{bottom:665.546400pt;}
.y7b{bottom:678.186395pt;}
.y1f{bottom:679.626395pt;}
.y93{bottom:681.066394pt;}
.y53{bottom:685.706392pt;}
.y7a{bottom:694.826389pt;}
.y1e{bottom:696.266388pt;}
.y92{bottom:698.186387pt;}
.y52{bottom:702.346386pt;}
.y1d{bottom:712.746382pt;}
.y91{bottom:714.826381pt;}
.y79{bottom:715.146381pt;}
.y51{bottom:722.666378pt;}
.y1c{bottom:729.386375pt;}
.y90{bottom:731.306374pt;}
.y78{bottom:735.466372pt;}
.y50{bottom:742.986369pt;}
.y1b{bottom:743.626369pt;}
.y77{bottom:752.106366pt;}
.y1a{bottom:752.426366pt;}
.y4f{bottom:759.466363pt;}
.y19{bottom:768.106359pt;}
.y76{bottom:772.426358pt;}
.y4e{bottom:776.106356pt;}
.y18{bottom:781.386354pt;}
.y4d{bottom:792.746350pt;}
.y17{bottom:795.146349pt;}
.y4c{bottom:809.226343pt;}
.y16{bottom:811.786342pt;}
.y4b{bottom:825.866336pt;}
.y15{bottom:828.266335pt;}
.y4a{bottom:842.346330pt;}
.y14{bottom:844.746329pt;}
.y49{bottom:858.986323pt;}
.y13{bottom:860.906322pt;}
.y48{bottom:875.466316pt;}
.y12{bottom:879.466315pt;}
.y75{bottom:892.106310pt;}
.y47{bottom:895.946308pt;}
.y11{bottom:905.226305pt;}
.y74{bottom:912.426302pt;}
.y46{bottom:916.106300pt;}
.y10{bottom:930.826294pt;}
.y45{bottom:932.746294pt;}
.y44{bottom:949.226287pt;}
.yf{bottom:953.866285pt;}
.y43{bottom:965.866280pt;}
.ye{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yd{bottom:1025.706256pt;}
.y2{bottom:1034.346253pt;}
.yc{bottom:1037.866252pt;}
.ya{bottom:1046.827200pt;}
.y1{bottom:1063.146241pt;}
.h7{height:11.520000pt;}
.h2{height:11.648433pt;}
.h6{height:14.076557pt;}
.hd{height:15.375931pt;}
.he{height:19.595617pt;}
.h8{height:27.024364pt;}
.h9{height:29.393426pt;}
.h3{height:31.154988pt;}
.hc{height:31.217800pt;}
.h4{height:31.259675pt;}
.h1{height:34.945299pt;}
.hb{height:38.594985pt;}
.h5{height:38.672797pt;}
.hf{height:38.724672pt;}
.ha{height:61.844975pt;}
.h0{height:1122.666667pt;}
.w2{width:5.920000pt;}
.w1{width:246.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x13{left:120.000007pt;}
.x12{left:137.594612pt;}
.x4{left:142.239699pt;}
.x10{left:144.960528pt;}
.xc{left:176.479929pt;}
.x5{left:178.239929pt;}
.xd{left:184.799928pt;}
.xb{left:278.719889pt;}
.x11{left:301.760132pt;}
.xe{left:312.159867pt;}
.x2{left:313.920268pt;}
.xf{left:351.999912pt;}
.x6{left:377.439849pt;}
.x14{left:379.679640pt;}
.x3{left:396.800317pt;}
.x7{left:444.640000pt;}
.x9{left:496.319801pt;}
.xa{left:624.794417pt;}
.x8{left:690.720000pt;}
}




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