
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_46cd1a756e3f365bb54210fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_7eb4a4b75b7af584ec24b3a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_c8382c25686778631c406e66.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973145;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_08e894535c5b5109816f15d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_6824d8ebc6557c72b21a4f45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973145;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:ffa;src:url('chunks/assets/font_6ddd2050026e2ea25efc19a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905762;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:ffb;src:url('chunks/assets/font_f1a1494369f4ec99f2140b72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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:ffc;src:url('chunks/assets/font_7c13e89644f45306b4820c8b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.748000;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:ffd;src:url('chunks/assets/font_8d5046374300ac53a226d3b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.772461;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:ffe;src:url('chunks/assets/font_5908bb3af6c0895b7a5ac369.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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:fff;src:url('chunks/assets/font_65aa56520049c6836f1e45c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.973145;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:ff10;src:url('chunks/assets/font_d88e3ae3dae6475e76ccbb90.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.928711;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:ff11;src:url('chunks/assets/font_bbef9c2787c6aed2c93e5c38.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973145;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.052734px;}
.ls4{letter-spacing:56.355163px;}
.ls3{letter-spacing:57.339538px;}
.ls2{letter-spacing:60.855162px;}
.ls5{letter-spacing:91.581746px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.452636px;}
.ws7{word-spacing:-13.013999px;}
.ws2{word-spacing:-11.992499px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:336.548869px;}
.ws4{word-spacing:337.562610px;}
.ws3{word-spacing:341.066910px;}
.ws6{word-spacing:371.864252px;}
._3{margin-left:-4.716182px;}
._1{margin-left:-3.115597px;}
._0{margin-left:-1.406250px;}
._2{width:2.249989px;}
.fc7{color:rgb(187,68,68);}
.fc5{color:rgb(33,37,41);}
.fc4{color:transparent;}
.fc8{color:rgb(51,51,51);}
.fc6{color:rgb(171,171,171);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(37,37,37);}
.fc0{color:rgb(0,133,0);}
.fs5{font-size:47.969997px;}
.fs6{font-size:53.999998px;}
.fs3{font-size:62.999997px;}
.fs4{font-size:67.499997px;}
.fs0{font-size:71.999997px;}
.fs2{font-size:76.499997px;}
.fs9{font-size:80.999997px;}
.fs8{font-size:98.999996px;}
.fs7{font-size:125.999995px;}
.fs1{font-size:134.999994px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.375000px;}
.y1e{bottom:23.805073px;}
.y4{bottom:39.093766px;}
.y69{bottom:42.468766px;}
.y1{bottom:43.211305px;}
.y7f{bottom:55.968766px;}
.y1b{bottom:70.593765px;}
.y3{bottom:75.093765px;}
.y7e{bottom:80.718765px;}
.y1a{bottom:102.093764px;}
.y4b{bottom:109.968763px;}
.y2{bottom:111.093763px;}
.y19{bottom:133.593762px;}
.y4a{bottom:141.468762px;}
.y18{bottom:165.093761px;}
.y49{bottom:172.968761px;}
.y17{bottom:196.593760px;}
.y48{bottom:225.843759px;}
.y16{bottom:228.093758px;}
.y47{bottom:257.343757px;}
.y15{bottom:259.593757px;}
.y46{bottom:288.843756px;}
.y14{bottom:291.093756px;}
.y45{bottom:320.343755px;}
.y13{bottom:350.718753px;}
.y44{bottom:351.843753px;}
.y43{bottom:383.343752px;}
.y12{bottom:402.468751px;}
.y42{bottom:414.843751px;}
.y7c{bottom:440.718750px;}
.y41{bottom:446.343749px;}
.y11{bottom:454.218749px;}
.y7b{bottom:464.343749px;}
.y68{bottom:476.718748px;}
.y7a{bottom:489.093748px;}
.y7d{bottom:494.718747px;}
.y10{bottom:505.968747px;}
.y40{bottom:517.218746px;}
.y79{bottom:519.468746px;}
.y67{bottom:522.843746px;}
.y3f{bottom:548.718745px;}
.y66{bottom:553.218745px;}
.yf{bottom:557.718745px;}
.y3e{bottom:580.218744px;}
.y65{bottom:583.593744px;}
.ye{bottom:589.218743px;}
.y64{bottom:613.968742px;}
.yd{bottom:620.718742px;}
.y3d{bottom:631.968742px;}
.yc{bottom:652.218741px;}
.y63{bottom:653.343741px;}
.y3c{bottom:663.468740px;}
.yb{bottom:683.718740px;}
.y3b{bottom:694.968739px;}
.ya{bottom:715.218738px;}
.y62{bottom:732.093737px;}
.y3a{bottom:746.718737px;}
.y39{bottom:778.218736px;}
.y9{bottom:781.593735px;}
.y8{bottom:808.593734px;}
.y38{bottom:809.718734px;}
.y61{bottom:811.968734px;}
.y37{bottom:841.218733px;}
.y60{bottom:864.843732px;}
.y78{bottom:880.593731px;}
.y36{bottom:892.968731px;}
.y5f{bottom:896.343731px;}
.y77{bottom:904.218730px;}
.y35{bottom:924.468729px;}
.y5e{bottom:927.843729px;}
.y76{bottom:952.593728px;}
.y34{bottom:955.968728px;}
.y5d{bottom:959.343728px;}
.y33{bottom:987.468727px;}
.y5c{bottom:990.843727px;}
.y5b{bottom:1022.343725px;}
.y32{bottom:1040.343725px;}
.y31{bottom:1071.843723px;}
.y5a{bottom:1074.093723px;}
.y30{bottom:1103.343722px;}
.y59{bottom:1105.593722px;}
.y2f{bottom:1134.843721px;}
.y58{bottom:1137.093721px;}
.y2e{bottom:1166.343719px;}
.y57{bottom:1168.593719px;}
.y2d{bottom:1197.843718px;}
.y56{bottom:1200.093718px;}
.y2c{bottom:1229.343717px;}
.y55{bottom:1231.593717px;}
.y54{bottom:1263.093715px;}
.y2b{bottom:1281.093715px;}
.y6a{bottom:1308.093713px;}
.y2a{bottom:1312.593713px;}
.y53{bottom:1314.843713px;}
.y29{bottom:1344.093712px;}
.y52{bottom:1346.343712px;}
.y28{bottom:1375.593711px;}
.y51{bottom:1377.843711px;}
.y75{bottom:1403.718710px;}
.y27{bottom:1407.093709px;}
.y50{bottom:1409.343709px;}
.y74{bottom:1428.468708px;}
.y26{bottom:1438.593708px;}
.y4f{bottom:1440.843708px;}
.y73{bottom:1463.343707px;}
.y7{bottom:1476.843706px;}
.y72{bottom:1488.093706px;}
.y25{bottom:1490.343706px;}
.y4e{bottom:1492.593706px;}
.y24{bottom:1521.843705px;}
.y71{bottom:1522.968705px;}
.y6{bottom:1527.468704px;}
.y70{bottom:1547.718704px;}
.y23{bottom:1553.343703px;}
.y4d{bottom:1563.468703px;}
.y5{bottom:1566.843703px;}
.y6f{bottom:1573.593702px;}
.y22{bottom:1584.843702px;}
.y4c{bottom:1594.968702px;}
.y6e{bottom:1598.343701px;}
.y21{bottom:1616.343701px;}
.y6d{bottom:1633.218700px;}
.y20{bottom:1647.843699px;}
.y6c{bottom:1657.968699px;}
.y1f{bottom:1679.343698px;}
.y6b{bottom:1683.843698px;}
.y1c{bottom:1749.555002px;}
.h8{height:14.624999px;}
.h9{height:32.955950px;}
.ha{height:39.473998px;}
.h6{height:47.649900px;}
.h7{height:51.053465px;}
.hc{height:54.457029px;}
.h5{height:57.860593px;}
.he{height:61.264158px;}
.h3{height:68.399997px;}
.hd{height:90.298824px;}
.hb{height:95.238277px;}
.h4{height:102.106929px;}
.h2{height:1701.843697px;}
.h1{height:1786.500000px;}
.h0{height:1786.680000px;}
.w6{width:59.624998px;}
.w3{width:132.749994px;}
.w4{width:1129.499953px;}
.w2{width:1178.841731px;}
.w5{width:1202.624950px;}
.w0{width:1262.879970px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x11{left:8.841802px;}
.x2{left:22.324218px;}
.x5{left:31.623046px;}
.x3{left:32.695311px;}
.x6{left:35.411131px;}
.x1{left:41.624998px;}
.x7{left:44.991209px;}
.x4{left:47.496092px;}
.x20{left:48.814451px;}
.x8{left:53.393552px;}
.x17{left:57.322263px;}
.x15{left:59.501951px;}
.x19{left:61.488279px;}
.x9{left:63.325193px;}
.x18{left:75.374997px;}
.x12{left:89.999996px;}
.x1a{left:95.800777px;}
.xd{left:122.062495px;}
.xe{left:132.749994px;}
.x24{left:149.818353px;}
.x23{left:188.630852px;}
.x13{left:202.869138px;}
.x1f{left:284.044916px;}
.xb{left:300.462884px;}
.xa{left:408.199202px;}
.x16{left:418.394514px;}
.xc{left:420.117170px;}
.x14{left:431.384753px;}
.xf{left:489.164042px;}
.x21{left:611.384746px;}
.x1c{left:615.339818px;}
.x1d{left:622.669902px;}
.x1b{left:670.763650px;}
.x22{left:722.531220px;}
.x25{left:745.224584px;}
.x26{left:790.242155px;}
.x1e{left:832.763643px;}
.x10{left:1202.624950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.046875pt;}
.ls4{letter-spacing:50.093478pt;}
.ls3{letter-spacing:50.968478pt;}
.ls2{letter-spacing:54.093478pt;}
.ls5{letter-spacing:81.405997pt;}
.ws1{word-spacing:-16.402343pt;}
.ws7{word-spacing:-11.568000pt;}
.ws2{word-spacing:-10.659999pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:299.154550pt;}
.ws4{word-spacing:300.055653pt;}
.ws3{word-spacing:303.170587pt;}
.ws6{word-spacing:330.546002pt;}
._3{margin-left:-4.192161pt;}
._1{margin-left:-2.769419pt;}
._0{margin-left:-1.250000pt;}
._2{width:1.999990pt;}
.fs5{font-size:42.639997pt;}
.fs6{font-size:47.999998pt;}
.fs3{font-size:55.999998pt;}
.fs4{font-size:59.999998pt;}
.fs0{font-size:63.999997pt;}
.fs2{font-size:67.999997pt;}
.fs9{font-size:71.999997pt;}
.fs8{font-size:87.999996pt;}
.fs7{font-size:111.999995pt;}
.fs1{font-size:119.999995pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.000000pt;}
.y1e{bottom:21.160065pt;}
.y4{bottom:34.750015pt;}
.y69{bottom:37.750014pt;}
.y1{bottom:38.410049pt;}
.y7f{bottom:49.750014pt;}
.y1b{bottom:62.750013pt;}
.y3{bottom:66.750013pt;}
.y7e{bottom:71.750013pt;}
.y1a{bottom:90.750012pt;}
.y4b{bottom:97.750012pt;}
.y2{bottom:98.750012pt;}
.y19{bottom:118.750011pt;}
.y4a{bottom:125.750011pt;}
.y18{bottom:146.750010pt;}
.y49{bottom:153.750010pt;}
.y17{bottom:174.750009pt;}
.y48{bottom:200.750008pt;}
.y16{bottom:202.750008pt;}
.y47{bottom:228.750006pt;}
.y15{bottom:230.750006pt;}
.y46{bottom:256.750005pt;}
.y14{bottom:258.750005pt;}
.y45{bottom:284.750004pt;}
.y13{bottom:311.750003pt;}
.y44{bottom:312.750003pt;}
.y43{bottom:340.750002pt;}
.y12{bottom:357.750001pt;}
.y42{bottom:368.750001pt;}
.y7c{bottom:391.750000pt;}
.y41{bottom:396.749999pt;}
.y11{bottom:403.749999pt;}
.y7b{bottom:412.749999pt;}
.y68{bottom:423.749998pt;}
.y7a{bottom:434.749998pt;}
.y7d{bottom:439.749998pt;}
.y10{bottom:449.749997pt;}
.y40{bottom:459.749997pt;}
.y79{bottom:461.749997pt;}
.y67{bottom:464.749997pt;}
.y3f{bottom:487.749996pt;}
.y66{bottom:491.749996pt;}
.yf{bottom:495.749995pt;}
.y3e{bottom:515.749995pt;}
.y65{bottom:518.749994pt;}
.ye{bottom:523.749994pt;}
.y64{bottom:545.749993pt;}
.yd{bottom:551.749993pt;}
.y3d{bottom:561.749993pt;}
.yc{bottom:579.749992pt;}
.y63{bottom:580.749992pt;}
.y3c{bottom:589.749991pt;}
.yb{bottom:607.749991pt;}
.y3b{bottom:617.749990pt;}
.ya{bottom:635.749990pt;}
.y62{bottom:650.749989pt;}
.y3a{bottom:663.749988pt;}
.y39{bottom:691.749987pt;}
.y9{bottom:694.749987pt;}
.y8{bottom:718.749986pt;}
.y38{bottom:719.749986pt;}
.y61{bottom:721.749986pt;}
.y37{bottom:747.749985pt;}
.y60{bottom:768.749984pt;}
.y78{bottom:782.749983pt;}
.y36{bottom:793.749983pt;}
.y5f{bottom:796.749983pt;}
.y77{bottom:803.749983pt;}
.y35{bottom:821.749982pt;}
.y5e{bottom:824.749982pt;}
.y76{bottom:846.749981pt;}
.y34{bottom:849.749981pt;}
.y5d{bottom:852.749980pt;}
.y33{bottom:877.749979pt;}
.y5c{bottom:880.749979pt;}
.y5b{bottom:908.749978pt;}
.y32{bottom:924.749977pt;}
.y31{bottom:952.749976pt;}
.y5a{bottom:954.749976pt;}
.y30{bottom:980.749975pt;}
.y59{bottom:982.749975pt;}
.y2f{bottom:1008.749974pt;}
.y58{bottom:1010.749974pt;}
.y2e{bottom:1036.749973pt;}
.y57{bottom:1038.749973pt;}
.y2d{bottom:1064.749972pt;}
.y56{bottom:1066.749972pt;}
.y2c{bottom:1092.749970pt;}
.y55{bottom:1094.749970pt;}
.y54{bottom:1122.749969pt;}
.y2b{bottom:1138.749969pt;}
.y6a{bottom:1162.749968pt;}
.y2a{bottom:1166.749967pt;}
.y53{bottom:1168.749967pt;}
.y29{bottom:1194.749966pt;}
.y52{bottom:1196.749966pt;}
.y28{bottom:1222.749965pt;}
.y51{bottom:1224.749965pt;}
.y75{bottom:1247.749964pt;}
.y27{bottom:1250.749964pt;}
.y50{bottom:1252.749964pt;}
.y74{bottom:1269.749963pt;}
.y26{bottom:1278.749963pt;}
.y4f{bottom:1280.749963pt;}
.y73{bottom:1300.749962pt;}
.y7{bottom:1312.749961pt;}
.y72{bottom:1322.749961pt;}
.y25{bottom:1324.749961pt;}
.y4e{bottom:1326.749961pt;}
.y24{bottom:1352.749960pt;}
.y71{bottom:1353.749960pt;}
.y6{bottom:1357.749959pt;}
.y70{bottom:1375.749959pt;}
.y23{bottom:1380.749958pt;}
.y4d{bottom:1389.749958pt;}
.y5{bottom:1392.749958pt;}
.y6f{bottom:1398.749958pt;}
.y22{bottom:1408.749957pt;}
.y4c{bottom:1417.749957pt;}
.y6e{bottom:1420.749957pt;}
.y21{bottom:1436.749956pt;}
.y6d{bottom:1451.749956pt;}
.y20{bottom:1464.749955pt;}
.y6c{bottom:1473.749955pt;}
.y1f{bottom:1492.749954pt;}
.y6b{bottom:1496.749954pt;}
.y1c{bottom:1555.160001pt;}
.h8{height:12.999999pt;}
.h9{height:29.294178pt;}
.ha{height:35.087999pt;}
.h6{height:42.355467pt;}
.h7{height:45.380857pt;}
.hc{height:48.406248pt;}
.h5{height:51.431638pt;}
.he{height:54.457029pt;}
.h3{height:60.799997pt;}
.hd{height:80.265622pt;}
.hb{height:84.656246pt;}
.h4{height:90.761715pt;}
.h2{height:1512.749953pt;}
.h1{height:1588.000000pt;}
.h0{height:1588.160000pt;}
.w6{width:52.999998pt;}
.w3{width:117.999995pt;}
.w4{width:1003.999958pt;}
.w2{width:1047.859316pt;}
.w5{width:1068.999955pt;}
.w0{width:1122.559973pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x11{left:7.859380pt;}
.x2{left:19.843749pt;}
.x5{left:28.109374pt;}
.x3{left:29.062499pt;}
.x6{left:31.476561pt;}
.x1{left:36.999998pt;}
.x7{left:39.992186pt;}
.x4{left:42.218748pt;}
.x20{left:43.390623pt;}
.x8{left:47.460936pt;}
.x17{left:50.953123pt;}
.x15{left:52.890623pt;}
.x19{left:54.656248pt;}
.x9{left:56.289060pt;}
.x18{left:66.999997pt;}
.x12{left:79.999997pt;}
.x1a{left:85.156246pt;}
.xd{left:108.499995pt;}
.xe{left:117.999995pt;}
.x24{left:133.171869pt;}
.x23{left:167.671868pt;}
.x13{left:180.328122pt;}
.x1f{left:252.484369pt;}
.xb{left:267.078119pt;}
.xa{left:362.843735pt;}
.x16{left:371.906235pt;}
.xc{left:373.437484pt;}
.x14{left:383.453114pt;}
.xf{left:434.812482pt;}
.x21{left:543.453107pt;}
.x1c{left:546.968727pt;}
.x1d{left:553.484357pt;}
.x1b{left:596.234355pt;}
.x22{left:642.249973pt;}
.x25{left:662.421852pt;}
.x26{left:702.437471pt;}
.x1e{left:740.234349pt;}
.x10{left:1068.999955pt;}
}




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