
    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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0640a9ad815175c117cb778a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.857143;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_832087953fe384793c0c2653.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.928571;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;}
.ff14{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.250000px;}
.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:-2.250000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:18.030131px;}
._10{margin-left:-1410.451937px;}
._f{margin-left:-2.250000px;}
._2{width:1.213714px;}
._7{width:2.224732px;}
._6{width:4.100098px;}
._5{width:5.856193px;}
._3{width:6.907310px;}
._a{width:8.043778px;}
._4{width:9.735878px;}
._b{width:10.917938px;}
._c{width:12.160148px;}
._8{width:13.856574px;}
._9{width:14.869857px;}
._e{width:16.631789px;}
._d{width:18.008789px;}
._11{width:54.035131px;}
._0{width:135.043940px;}
._1{width:2489.673236px;}
.fc8{color:transparent;}
.fc3{color:rgb(51,122,183);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(86,86,86);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(4,4,4);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(102,102,102);}
.fs8{font-size:44.999998px;}
.fs5{font-size:53.999998px;}
.fs0{font-size:62.999997px;}
.fs2{font-size:67.499997px;}
.fs6{font-size:71.999997px;}
.fs4{font-size:78.749997px;}
.fs7{font-size:80.999997px;}
.fs1{font-size:98.999996px;}
.fs3{font-size:188.999992px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000332px;}
.y8b{bottom:3.375000px;}
.y8a{bottom:4.500000px;}
.y88{bottom:15.749999px;}
.y92{bottom:37.124998px;}
.y8e{bottom:40.499998px;}
.y91{bottom:53.999998px;}
.y90{bottom:69.749997px;}
.y8d{bottom:158.949713px;}
.y3{bottom:628.874974px;}
.y4{bottom:631.599611px;}
.y8c{bottom:712.124970px;}
.y89{bottom:740.250301px;}
.y87{bottom:1134.000285px;}
.y86{bottom:1217.249949px;}
.y85{bottom:1284.749946px;}
.y84{bottom:1327.499945px;}
.y83{bottom:1353.374944px;}
.y82{bottom:1396.124942px;}
.y81{bottom:1438.874940px;}
.y80{bottom:1481.624938px;}
.y7f{bottom:1567.124935px;}
.y7e{bottom:1592.999934px;}
.y7d{bottom:1678.499930px;}
.y7c{bottom:1721.249928px;}
.y7b{bottom:1806.749925px;}
.y7a{bottom:1832.624924px;}
.y79{bottom:1858.499923px;}
.y78{bottom:1884.374921px;}
.y77{bottom:1910.249920px;}
.y76{bottom:1936.124919px;}
.y75{bottom:1961.999918px;}
.y74{bottom:1987.874917px;}
.y73{bottom:2030.624915px;}
.y72{bottom:2056.499914px;}
.y71{bottom:2082.374913px;}
.y70{bottom:2167.874910px;}
.y6f{bottom:2193.749909px;}
.y6e{bottom:2219.624908px;}
.y6d{bottom:2245.499906px;}
.y6c{bottom:2271.374905px;}
.y6b{bottom:2297.249904px;}
.y6a{bottom:2323.124903px;}
.y69{bottom:2348.999902px;}
.y68{bottom:2374.874901px;}
.y67{bottom:2400.749900px;}
.y66{bottom:2486.249896px;}
.y65{bottom:2512.124895px;}
.y64{bottom:2537.999894px;}
.y63{bottom:2563.874893px;}
.y62{bottom:2589.749892px;}
.y61{bottom:2615.624891px;}
.y60{bottom:2641.499890px;}
.y5f{bottom:2667.374889px;}
.y5e{bottom:2742.749886px;}
.y5d{bottom:3008.249875px;}
.y5c{bottom:3469.499855px;}
.y5b{bottom:3495.374854px;}
.y5a{bottom:3521.249853px;}
.y59{bottom:3547.124852px;}
.y58{bottom:3572.999851px;}
.y57{bottom:3598.874850px;}
.y56{bottom:3624.749849px;}
.y55{bottom:3667.499847px;}
.y54{bottom:3693.374846px;}
.y53{bottom:3719.249845px;}
.y52{bottom:3745.124844px;}
.y51{bottom:3770.999843px;}
.y50{bottom:3856.499839px;}
.y4f{bottom:3882.374838px;}
.y4e{bottom:3908.249837px;}
.y4d{bottom:3993.749834px;}
.y4c{bottom:4019.624833px;}
.y4b{bottom:4045.499831px;}
.y4a{bottom:4071.374830px;}
.y49{bottom:4097.249829px;}
.y48{bottom:4182.749826px;}
.y47{bottom:4208.624825px;}
.y46{bottom:4234.499824px;}
.y45{bottom:4260.374822px;}
.y44{bottom:4335.749819px;}
.y43{bottom:4839.749798px;}
.y42{bottom:4865.624797px;}
.y41{bottom:4891.499796px;}
.y40{bottom:4917.374795px;}
.y3f{bottom:4943.249794px;}
.y3e{bottom:4969.124793px;}
.y3d{bottom:4994.999792px;}
.y3c{bottom:5020.874791px;}
.y3b{bottom:5096.249788px;}
.y3a{bottom:5371.874776px;}
.y39{bottom:5397.749775px;}
.y38{bottom:5423.624774px;}
.y37{bottom:5509.124770px;}
.y36{bottom:5534.999769px;}
.y35{bottom:5560.874768px;}
.y34{bottom:5586.749767px;}
.y33{bottom:5612.624766px;}
.y32{bottom:5638.499765px;}
.y31{bottom:5723.999762px;}
.y30{bottom:5749.874760px;}
.y2f{bottom:5775.749759px;}
.y2e{bottom:5801.624758px;}
.y2d{bottom:5827.499757px;}
.y2c{bottom:5912.999754px;}
.y2b{bottom:5938.874753px;}
.y2a{bottom:5964.749751px;}
.y29{bottom:5990.624750px;}
.y28{bottom:6076.124747px;}
.y27{bottom:6101.999746px;}
.y26{bottom:6127.874745px;}
.y25{bottom:6153.749744px;}
.y24{bottom:6179.624743px;}
.y23{bottom:6256.124739px;}
.y22{bottom:6717.374720px;}
.y21{bottom:6743.249719px;}
.y20{bottom:6769.124718px;}
.y1f{bottom:6794.999717px;}
.y1e{bottom:6820.874716px;}
.y1d{bottom:6846.749715px;}
.y1c{bottom:6889.499713px;}
.y1b{bottom:6915.374712px;}
.y1a{bottom:6941.249711px;}
.y19{bottom:6967.124710px;}
.y18{bottom:7052.624706px;}
.y17{bottom:7078.499705px;}
.y16{bottom:7104.374704px;}
.y15{bottom:7130.249703px;}
.y14{bottom:7156.124702px;}
.y13{bottom:7181.999701px;}
.y12{bottom:7207.874700px;}
.y11{bottom:7309.124695px;}
.y10{bottom:7334.999694px;}
.yf{bottom:7360.874693px;}
.ye{bottom:7386.749692px;}
.yd{bottom:7412.624691px;}
.yc{bottom:7438.499690px;}
.yb{bottom:7464.374689px;}
.ya{bottom:7490.249688px;}
.y9{bottom:7588.124684px;}
.y8{bottom:7613.999683px;}
.y7{bottom:7639.874682px;}
.y6{bottom:7700.624679px;}
.y5{bottom:7752.374677px;}
.y8f{bottom:7882.875003px;}
.y2{bottom:7919.999670px;}
.hc{height:42.749998px;}
.h9{height:44.999998px;}
.h7{height:51.299998px;}
.h2{height:59.849998px;}
.h4{height:64.124997px;}
.h8{height:68.399997px;}
.h6{height:74.812497px;}
.ha{height:76.949997px;}
.hd{height:82.124997px;}
.h3{height:84.857139px;}
.h5{height:179.549993px;}
.hb{height:449.999981px;}
.h1{height:7964.999668px;}
.h0{height:7965.000000px;}
.w3{width:78.749997px;}
.w4{width:110.249995px;}
.w5{width:874.124964px;}
.w1{width:1966.470000px;}
.w2{width:1966.499918px;}
.w0{width:1966.680000px;}
.x0{left:0.000000px;}
.x3e{left:19.494145px;}
.x48{left:302.624987px;}
.x40{left:625.974589px;}
.x2{left:773.244114px;}
.x3d{left:784.124967px;}
.x3{left:787.710905px;}
.x1{left:801.861300px;}
.x29{left:828.650362px;}
.x41{left:831.568330px;}
.x32{left:834.732393px;}
.xa{left:842.150361px;}
.x3f{left:862.874964px;}
.x22{left:864.158173px;}
.x1c{left:893.759734px;}
.x11{left:896.132775px;}
.x35{left:929.302701px;}
.x37{left:932.185514px;}
.x19{left:944.244107px;}
.xb{left:948.761679px;}
.x2a{left:954.439419px;}
.x39{left:974.144491px;}
.x28{left:983.566365px;}
.x23{left:991.406209px;}
.x13{left:993.058552px;}
.x1d{left:1004.800739px;}
.x3b{left:1007.578083px;}
.x8{left:1011.673792px;}
.x1e{left:1021.482385px;}
.x12{left:1025.683551px;}
.x33{left:1044.667925px;}
.x1a{left:1050.591759px;}
.x36{left:1053.386675px;}
.x34{left:1075.658164px;}
.x1b{left:1078.874955px;}
.x42{left:1081.353476px;}
.x5{left:1084.130820px;}
.x14{left:1102.956985px;}
.x15{left:1105.998006px;}
.x9{left:1112.994100px;}
.x20{left:1126.441359px;}
.x43{left:1163.373004px;}
.x1f{left:1170.562451px;}
.x26{left:1180.986285px;}
.x31{left:1192.640575px;}
.x16{left:1212.222606px;}
.xe{left:1221.609324px;}
.x2d{left:1224.175730px;}
.x21{left:1234.230417px;}
.x27{left:1276.962843px;}
.x2b{left:1301.712842px;}
.x6{left:1334.003851px;}
.x2e{left:1352.232371px;}
.xf{left:1353.849559px;}
.x44{left:1372.587839px;}
.x38{left:1394.173776px;}
.x3c{left:1410.169869px;}
.x2c{left:1426.974556px;}
.x7{left:1430.718690px;}
.x2f{left:1447.453065px;}
.x30{left:1455.697211px;}
.xc{left:1464.749939px;}
.x45{left:1471.464782px;}
.x24{left:1487.460876px;}
.x46{left:1509.960875px;}
.x3a{left:1529.859311px;}
.x10{left:1535.783145px;}
.x17{left:1583.736268px;}
.x25{left:1584.843684px;}
.xd{left:1592.349549px;}
.x18{left:1594.423767px;}
.x47{left:1603.195246px;}
.x4{left:1638.140557px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.000000pt;}
.ws1{word-spacing:-2.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:16.026783pt;}
._10{margin-left:-1253.735055pt;}
._f{margin-left:-2.000000pt;}
._2{width:1.078857pt;}
._7{width:1.977540pt;}
._6{width:3.644532pt;}
._5{width:5.205505pt;}
._3{width:6.139831pt;}
._a{width:7.150025pt;}
._4{width:8.654114pt;}
._b{width:9.704833pt;}
._c{width:10.809020pt;}
._8{width:12.316955pt;}
._9{width:13.217651pt;}
._e{width:14.783812pt;}
._d{width:16.007812pt;}
._11{width:48.031228pt;}
._0{width:120.039057pt;}
._1{width:2213.042877pt;}
.fs8{font-size:39.999998pt;}
.fs5{font-size:47.999998pt;}
.fs0{font-size:55.999998pt;}
.fs2{font-size:59.999998pt;}
.fs6{font-size:63.999997pt;}
.fs4{font-size:69.999997pt;}
.fs7{font-size:71.999997pt;}
.fs1{font-size:87.999996pt;}
.fs3{font-size:167.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000295pt;}
.y8b{bottom:3.000000pt;}
.y8a{bottom:4.000000pt;}
.y88{bottom:13.999999pt;}
.y92{bottom:32.999999pt;}
.y8e{bottom:35.999998pt;}
.y91{bottom:47.999998pt;}
.y90{bottom:61.999997pt;}
.y8d{bottom:141.288634pt;}
.y3{bottom:558.999977pt;}
.y4{bottom:561.421877pt;}
.y8c{bottom:632.999974pt;}
.y89{bottom:658.000268pt;}
.y87{bottom:1008.000253pt;}
.y86{bottom:1081.999955pt;}
.y85{bottom:1141.999952pt;}
.y84{bottom:1179.999951pt;}
.y83{bottom:1202.999950pt;}
.y82{bottom:1240.999948pt;}
.y81{bottom:1278.999947pt;}
.y80{bottom:1316.999945pt;}
.y7f{bottom:1392.999942pt;}
.y7e{bottom:1415.999941pt;}
.y7d{bottom:1491.999938pt;}
.y7c{bottom:1529.999936pt;}
.y7b{bottom:1605.999933pt;}
.y7a{bottom:1628.999932pt;}
.y79{bottom:1651.999931pt;}
.y78{bottom:1674.999930pt;}
.y77{bottom:1697.999929pt;}
.y76{bottom:1720.999928pt;}
.y75{bottom:1743.999927pt;}
.y74{bottom:1766.999926pt;}
.y73{bottom:1804.999925pt;}
.y72{bottom:1827.999924pt;}
.y71{bottom:1850.999923pt;}
.y70{bottom:1926.999920pt;}
.y6f{bottom:1949.999919pt;}
.y6e{bottom:1972.999918pt;}
.y6d{bottom:1995.999917pt;}
.y6c{bottom:2018.999916pt;}
.y6b{bottom:2041.999915pt;}
.y6a{bottom:2064.999914pt;}
.y69{bottom:2087.999913pt;}
.y68{bottom:2110.999912pt;}
.y67{bottom:2133.999911pt;}
.y66{bottom:2209.999908pt;}
.y65{bottom:2232.999907pt;}
.y64{bottom:2255.999906pt;}
.y63{bottom:2278.999905pt;}
.y62{bottom:2301.999904pt;}
.y61{bottom:2324.999903pt;}
.y60{bottom:2347.999902pt;}
.y5f{bottom:2370.999901pt;}
.y5e{bottom:2437.999898pt;}
.y5d{bottom:2673.999889pt;}
.y5c{bottom:3083.999871pt;}
.y5b{bottom:3106.999871pt;}
.y5a{bottom:3129.999870pt;}
.y59{bottom:3152.999869pt;}
.y58{bottom:3175.999868pt;}
.y57{bottom:3198.999867pt;}
.y56{bottom:3221.999866pt;}
.y55{bottom:3259.999864pt;}
.y54{bottom:3282.999863pt;}
.y53{bottom:3305.999862pt;}
.y52{bottom:3328.999861pt;}
.y51{bottom:3351.999860pt;}
.y50{bottom:3427.999857pt;}
.y4f{bottom:3450.999856pt;}
.y4e{bottom:3473.999855pt;}
.y4d{bottom:3549.999852pt;}
.y4c{bottom:3572.999851pt;}
.y4b{bottom:3595.999850pt;}
.y4a{bottom:3618.999849pt;}
.y49{bottom:3641.999848pt;}
.y48{bottom:3717.999845pt;}
.y47{bottom:3740.999844pt;}
.y46{bottom:3763.999843pt;}
.y45{bottom:3786.999842pt;}
.y44{bottom:3853.999839pt;}
.y43{bottom:4301.999821pt;}
.y42{bottom:4324.999820pt;}
.y41{bottom:4347.999819pt;}
.y40{bottom:4370.999818pt;}
.y3f{bottom:4393.999817pt;}
.y3e{bottom:4416.999816pt;}
.y3d{bottom:4439.999815pt;}
.y3c{bottom:4462.999814pt;}
.y3b{bottom:4529.999811pt;}
.y3a{bottom:4774.999801pt;}
.y39{bottom:4797.999800pt;}
.y38{bottom:4820.999799pt;}
.y37{bottom:4896.999796pt;}
.y36{bottom:4919.999795pt;}
.y35{bottom:4942.999794pt;}
.y34{bottom:4965.999793pt;}
.y33{bottom:4988.999792pt;}
.y32{bottom:5011.999791pt;}
.y31{bottom:5087.999788pt;}
.y30{bottom:5110.999787pt;}
.y2f{bottom:5133.999786pt;}
.y2e{bottom:5156.999785pt;}
.y2d{bottom:5179.999784pt;}
.y2c{bottom:5255.999781pt;}
.y2b{bottom:5278.999780pt;}
.y2a{bottom:5301.999779pt;}
.y29{bottom:5324.999778pt;}
.y28{bottom:5400.999775pt;}
.y27{bottom:5423.999774pt;}
.y26{bottom:5446.999773pt;}
.y25{bottom:5469.999772pt;}
.y24{bottom:5492.999771pt;}
.y23{bottom:5560.999768pt;}
.y22{bottom:5970.999751pt;}
.y21{bottom:5993.999750pt;}
.y20{bottom:6016.999749pt;}
.y1f{bottom:6039.999748pt;}
.y1e{bottom:6062.999747pt;}
.y1d{bottom:6085.999746pt;}
.y1c{bottom:6123.999745pt;}
.y1b{bottom:6146.999744pt;}
.y1a{bottom:6169.999743pt;}
.y19{bottom:6192.999742pt;}
.y18{bottom:6268.999739pt;}
.y17{bottom:6291.999738pt;}
.y16{bottom:6314.999737pt;}
.y15{bottom:6337.999736pt;}
.y14{bottom:6360.999735pt;}
.y13{bottom:6383.999734pt;}
.y12{bottom:6406.999733pt;}
.y11{bottom:6496.999729pt;}
.y10{bottom:6519.999728pt;}
.yf{bottom:6542.999727pt;}
.ye{bottom:6565.999726pt;}
.yd{bottom:6588.999725pt;}
.yc{bottom:6611.999725pt;}
.yb{bottom:6634.999724pt;}
.ya{bottom:6657.999723pt;}
.y9{bottom:6744.999719pt;}
.y8{bottom:6767.999718pt;}
.y7{bottom:6790.999717pt;}
.y6{bottom:6844.999715pt;}
.y5{bottom:6890.999713pt;}
.y8f{bottom:7007.000003pt;}
.y2{bottom:7039.999707pt;}
.hc{height:37.999998pt;}
.h9{height:39.999998pt;}
.h7{height:45.599998pt;}
.h2{height:53.199998pt;}
.h4{height:56.999998pt;}
.h8{height:60.799997pt;}
.h6{height:66.499997pt;}
.ha{height:68.399997pt;}
.hd{height:72.999997pt;}
.h3{height:75.428568pt;}
.h5{height:159.599993pt;}
.hb{height:399.999983pt;}
.h1{height:7079.999705pt;}
.h0{height:7080.000000pt;}
.w3{width:69.999997pt;}
.w4{width:97.999996pt;}
.w5{width:776.999968pt;}
.w1{width:1747.973333pt;}
.w2{width:1747.999927pt;}
.w0{width:1748.160000pt;}
.x0{left:0.000000pt;}
.x3e{left:17.328129pt;}
.x48{left:268.999989pt;}
.x40{left:556.421857pt;}
.x2{left:687.328101pt;}
.x3d{left:696.999971pt;}
.x3{left:700.187471pt;}
.x1{left:712.765600pt;}
.x29{left:736.578099pt;}
.x41{left:739.171849pt;}
.x32{left:741.984349pt;}
.xa{left:748.578099pt;}
.x3f{left:766.999968pt;}
.x22{left:768.140598pt;}
.x1c{left:794.453097pt;}
.x11{left:796.562467pt;}
.x35{left:826.046846pt;}
.x37{left:828.609345pt;}
.x19{left:839.328095pt;}
.xb{left:843.343715pt;}
.x2a{left:848.390595pt;}
.x39{left:865.906214pt;}
.x28{left:874.281214pt;}
.x23{left:881.249963pt;}
.x13{left:882.718713pt;}
.x1d{left:893.156213pt;}
.x3b{left:895.624963pt;}
.x8{left:899.265593pt;}
.x1e{left:907.984342pt;}
.x12{left:911.718712pt;}
.x33{left:928.593711pt;}
.x1a{left:933.859341pt;}
.x36{left:936.343711pt;}
.x34{left:956.140590pt;}
.x1b{left:958.999960pt;}
.x42{left:961.203090pt;}
.x5{left:963.671840pt;}
.x14{left:980.406209pt;}
.x15{left:983.109339pt;}
.x9{left:989.328089pt;}
.x20{left:1001.281208pt;}
.x43{left:1034.109337pt;}
.x1f{left:1040.499957pt;}
.x26{left:1049.765586pt;}
.x31{left:1060.124956pt;}
.x16{left:1077.531205pt;}
.xe{left:1085.874955pt;}
.x2d{left:1088.156205pt;}
.x21{left:1097.093704pt;}
.x27{left:1135.078083pt;}
.x2b{left:1157.078082pt;}
.x6{left:1185.781201pt;}
.x2e{left:1201.984330pt;}
.xf{left:1203.421830pt;}
.x44{left:1220.078079pt;}
.x38{left:1239.265578pt;}
.x3c{left:1253.484328pt;}
.x2c{left:1268.421827pt;}
.x7{left:1271.749947pt;}
.x2f{left:1286.624946pt;}
.x30{left:1293.953076pt;}
.xc{left:1301.999946pt;}
.x45{left:1307.968696pt;}
.x24{left:1322.187445pt;}
.x46{left:1342.187444pt;}
.x3a{left:1359.874943pt;}
.x10{left:1365.140573pt;}
.x17{left:1407.765571pt;}
.x25{left:1408.749941pt;}
.xd{left:1415.421821pt;}
.x18{left:1417.265571pt;}
.x47{left:1425.062441pt;}
.x4{left:1456.124939pt;}
}




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