
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_453154cfc026c02151d4331e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.987000;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_d36c22992112a33552a02c57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.770000;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_5e7e4a7cfd7a41b615abf3e4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_53242fbe710f4ce27f5222d2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.194000;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_131146011ad9265fcec54909.woff')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_56fb37e06e805887f2668e83.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758000;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_7090b51550b4bd491c2de684.woff')format("woff");}.ff8{font-family:ff8;line-height:0.983000;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_eb719fc598984df060747816.woff')format("woff");}.ff9{font-family:ff9;line-height:1.100000;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_507af4176d43939c4141702e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997000;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_4fde8f7017ff9987143cbfcf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997000;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_9b4ebeabe34d33cefa5948cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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;}
.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;}
.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;}
.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:-179.164845px;}
.ws0{word-spacing:-124.671461px;}
.ws4{word-spacing:-47.193974px;}
.ws6{word-spacing:-35.364597px;}
.ws7{word-spacing:-34.071478px;}
.ws9{word-spacing:-27.980819px;}
.ws2{word-spacing:-18.499048px;}
.ws3{word-spacing:-16.595999px;}
.ws5{word-spacing:-15.206084px;}
.ws8{word-spacing:-13.826542px;}
.wsa{word-spacing:0.000000px;}
._b{margin-left:-14.314825px;}
._8{margin-left:-9.842318px;}
._7{margin-left:-6.963353px;}
._5{margin-left:-5.857599px;}
._a{margin-left:-4.574522px;}
._6{margin-left:-3.477224px;}
._2{margin-left:-2.370217px;}
._1{margin-left:-1.359245px;}
._3{width:1.089290px;}
._4{width:2.280660px;}
._9{width:7.194375px;}
._0{width:12.311723px;}
.fc4{color:transparent;}
.fc2{color:rgb(254,230,224);}
.fc1{color:rgb(58,161,126);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:44.400009px;}
.fsa{font-size:44.603174px;}
.fs4{font-size:54.090000px;}
.fsd{font-size:59.984997px;}
.fs8{font-size:65.969996px;}
.fs5{font-size:71.864998px;}
.fs3{font-size:71.999997px;}
.fse{font-size:83.969997px;}
.fs10{font-size:86.579996px;}
.fs2{font-size:86.849992px;}
.fs13{font-size:95.984996px;}
.fs14{font-size:107.999996px;}
.fs9{font-size:119.879991px;}
.fs7{font-size:121.948253px;}
.fs6{font-size:121.951016px;}
.fs11{font-size:122.579995px;}
.fs15{font-size:125.999995px;}
.fsf{font-size:131.984995px;}
.fsb{font-size:149.985003px;}
.fsc{font-size:155.969994px;}
.fs0{font-size:197.577592px;}
.fs1{font-size:283.937947px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000008px;}
.y44{bottom:2.816774px;}
.y20{bottom:2.977800px;}
.y84{bottom:10.844820px;}
.y4{bottom:16.311703px;}
.y83{bottom:31.094819px;}
.y82{bottom:51.344818px;}
.y10{bottom:62.689982px;}
.y12{bottom:63.114671px;}
.y81{bottom:71.594817px;}
.y27{bottom:98.969756px;}
.y2{bottom:116.714789px;}
.y26{bottom:119.219755px;}
.y25{bottom:139.469754px;}
.y24{bottom:159.719753px;}
.y23{bottom:181.469872px;}
.y88{bottom:211.094811px;}
.y87{bottom:231.344810px;}
.y86{bottom:251.594810px;}
.y85{bottom:271.844809px;}
.y80{bottom:296.369988px;}
.y32{bottom:328.769986px;}
.y31{bottom:349.019985px;}
.y30{bottom:369.269985px;}
.y2f{bottom:389.519984px;}
.y2e{bottom:409.769983px;}
.y2d{bottom:430.019982px;}
.y2c{bottom:450.269981px;}
.y40{bottom:479.220100px;}
.yb{bottom:541.916689px;}
.y3f{bottom:544.234189px;}
.ya{bottom:563.291689px;}
.y3e{bottom:573.484188px;}
.y9{bottom:584.666688px;}
.y3d{bottom:602.734187px;}
.y8{bottom:606.041687px;}
.y7{bottom:627.416686px;}
.y3c{bottom:631.984186px;}
.y3b{bottom:661.234184px;}
.y3{bottom:682.739979px;}
.y3a{bottom:690.484183px;}
.yc{bottom:717.042462px;}
.y39{bottom:719.734182px;}
.ye{bottom:735.345329px;}
.y38{bottom:748.984181px;}
.yd{bottom:760.095328px;}
.y6{bottom:777.716860px;}
.y37{bottom:778.234180px;}
.y36{bottom:807.484178px;}
.y43{bottom:829.619973px;}
.y35{bottom:850.376557px;}
.y1d{bottom:856.268388px;}
.y1c{bottom:875.393388px;}
.y1b{bottom:894.518387px;}
.y34{bottom:896.501555px;}
.y1f{bottom:907.379970px;}
.y1a{bottom:913.643386px;}
.y19{bottom:932.768385px;}
.y18{bottom:951.893384px;}
.y17{bottom:971.018384px;}
.y16{bottom:990.143383px;}
.y15{bottom:1009.268382px;}
.y6c{bottom:1025.245325px;}
.y14{bottom:1028.393381px;}
.y13{bottom:1047.518380px;}
.y6b{bottom:1051.120324px;}
.y6a{bottom:1076.995323px;}
.y11{bottom:1077.299963px;}
.yf{bottom:1077.659963px;}
.y69{bottom:1102.870322px;}
.y68{bottom:1128.745321px;}
.y67{bottom:1154.620320px;}
.y66{bottom:1180.495319px;}
.y65{bottom:1206.370318px;}
.y64{bottom:1232.245317px;}
.y63{bottom:1258.120316px;}
.y1e{bottom:1260.643483px;}
.y62{bottom:1283.995315px;}
.y61{bottom:1309.870313px;}
.y42{bottom:1313.469701px;}
.y60{bottom:1335.745312px;}
.y5f{bottom:1361.620311px;}
.y51{bottom:1382.355482px;}
.y5e{bottom:1387.495310px;}
.y50{bottom:1404.855481px;}
.y5d{bottom:1413.370309px;}
.y4f{bottom:1427.355481px;}
.y5c{bottom:1439.245308px;}
.y4e{bottom:1449.855480px;}
.y5b{bottom:1467.370307px;}
.y4d{bottom:1472.355479px;}
.y4c{bottom:1494.855478px;}
.y5a{bottom:1495.495306px;}
.y4b{bottom:1517.355477px;}
.y59{bottom:1523.620305px;}
.y4a{bottom:1539.855476px;}
.y58{bottom:1551.745303px;}
.y49{bottom:1562.355475px;}
.y48{bottom:1584.855474px;}
.y6f{bottom:1593.205350px;}
.y47{bottom:1607.355473px;}
.y6e{bottom:1630.330348px;}
.y46{bottom:1641.180424px;}
.y6d{bottom:1667.455347px;}
.y45{bottom:1673.805422px;}
.y41{bottom:1743.854615px;}
.y57{bottom:1802.258709px;}
.y56{bottom:1854.008707px;}
.y76{bottom:1957.282406px;}
.y7d{bottom:1957.362254px;}
.y75{bottom:1979.782406px;}
.y7c{bottom:1979.862254px;}
.y74{bottom:2002.282405px;}
.y7b{bottom:2002.362253px;}
.y73{bottom:2024.782404px;}
.y7a{bottom:2024.862252px;}
.y72{bottom:2047.282403px;}
.y79{bottom:2047.362251px;}
.y78{bottom:2069.862250px;}
.y71{bottom:2074.732438px;}
.y77{bottom:2099.262225px;}
.y70{bottom:2107.357436px;}
.y55{bottom:2159.609458px;}
.y54{bottom:2184.359457px;}
.y53{bottom:2209.109456px;}
.y52{bottom:2233.859455px;}
.y21{bottom:2286.195460px;}
.y33{bottom:2342.020816px;}
.y2b{bottom:2411.835214px;}
.y2a{bottom:2441.085213px;}
.y29{bottom:2470.335211px;}
.y28{bottom:2499.585210px;}
.y1{bottom:2557.979901px;}
.y7f{bottom:2567.964223px;}
.y7e{bottom:2611.839221px;}
.y22{bottom:2690.289208px;}
.h11{height:13.319999px;}
.h1d{height:41.247609px;}
.h12{height:41.436349px;}
.h16{height:49.547608px;}
.h9{height:50.520060px;}
.hf{height:54.491217px;}
.h15{height:55.726062px;}
.h8{height:59.471998px;}
.h18{height:61.286127px;}
.h19{height:62.671497px;}
.h7{height:66.092844px;}
.h1f{height:68.399997px;}
.h17{height:69.359217px;}
.ha{height:70.140238px;}
.h1b{height:71.515077px;}
.h22{height:78.008127px;}
.h4{height:83.879997px;}
.h1e{height:89.170061px;}
.he{height:91.095345px;}
.hc{height:91.097409px;}
.h20{height:100.331996px;}
.h21{height:104.075996px;}
.h1c{height:113.876815px;}
.h10{height:117.002871px;}
.h1a{height:122.614060px;}
.h13{height:139.336068px;}
.h14{height:144.896124px;}
.hb{height:146.519994px;}
.hd{height:147.239994px;}
.h3{height:163.199091px;}
.h2{height:228.239990px;}
.h5{height:234.532744px;}
.h6{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w7{width:105.479996px;}
.w6{width:123.839995px;}
.w4{width:146.519994px;}
.w5{width:147.599994px;}
.w2{width:151.919994px;}
.w1{width:233.999990px;}
.w3{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x22{left:21.869476px;}
.x18{left:23.788871px;}
.x1{left:28.079999px;}
.x17{left:30.411361px;}
.x2{left:37.478862px;}
.xe{left:45.519718px;}
.xc{left:49.421446px;}
.x5{left:53.363433px;}
.xb{left:55.439998px;}
.x2b{left:59.975967px;}
.x27{left:63.386123px;}
.x3{left:67.319997px;}
.x25{left:75.239997px;}
.x2a{left:76.569716px;}
.x4{left:78.934644px;}
.x10{left:82.044730px;}
.x6{left:83.615385px;}
.x7{left:101.088041px;}
.x2e{left:107.173230px;}
.x24{left:126.676291px;}
.x15{left:128.547746px;}
.x26{left:147.624252px;}
.x31{left:148.822021px;}
.x45{left:162.107659px;}
.x13{left:191.308088px;}
.x32{left:204.193113px;}
.xd{left:239.759990px;}
.x19{left:254.601552px;}
.x28{left:264.253306px;}
.x11{left:268.100891px;}
.x1a{left:271.089832px;}
.x29{left:282.253345px;}
.x2f{left:292.363885px;}
.x30{left:310.363916px;}
.x16{left:320.685523px;}
.x9{left:335.467756px;}
.xa{left:343.975568px;}
.x2c{left:352.803262px;}
.x8{left:359.550755px;}
.x2d{left:370.803273px;}
.x47{left:404.745979px;}
.x46{left:421.269416px;}
.xf{left:430.919982px;}
.x14{left:441.719982px;}
.x12{left:459.183365px;}
.x1b{left:460.423815px;}
.x1c{left:476.912095px;}
.x23{left:479.063958px;}
.x44{left:557.323965px;}
.x1d{left:582.099591px;}
.x1e{left:598.587871px;}
.x36{left:626.541861px;}
.x33{left:631.112173px;}
.x21{left:638.396699px;}
.x39{left:641.746939px;}
.x35{left:644.295767px;}
.x43{left:655.964076px;}
.x41{left:660.883416px;}
.x42{left:662.766810px;}
.x1f{left:668.977664px;}
.x40{left:673.785759px;}
.x3f{left:675.174431px;}
.x20{left:752.491332px;}
.x3c{left:793.247641px;}
.x3d{left:809.735991px;}
.x3a{left:815.186583px;}
.x3b{left:831.674932px;}
.x3e{left:847.560441px;}
.x37{left:853.376496px;}
.x38{left:869.864844px;}
.x34{left:930.087177px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-159.257640pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-41.950199pt;}
.ws6{word-spacing:-31.435198pt;}
.ws7{word-spacing:-30.285759pt;}
.ws9{word-spacing:-24.871839pt;}
.ws2{word-spacing:-16.443598pt;}
.ws3{word-spacing:-14.751999pt;}
.ws5{word-spacing:-13.516519pt;}
.ws8{word-spacing:-12.290259pt;}
.wsa{word-spacing:0.000000pt;}
._b{margin-left:-12.724289pt;}
._8{margin-left:-8.748727pt;}
._7{margin-left:-6.189647pt;}
._5{margin-left:-5.206755pt;}
._a{margin-left:-4.066241pt;}
._6{margin-left:-3.090866pt;}
._2{margin-left:-2.106860pt;}
._1{margin-left:-1.208217pt;}
._3{width:0.968257pt;}
._4{width:2.027253pt;}
._9{width:6.395000pt;}
._0{width:10.943754pt;}
.fs12{font-size:39.466675pt;}
.fsa{font-size:39.647266pt;}
.fs4{font-size:48.080000pt;}
.fsd{font-size:53.319997pt;}
.fs8{font-size:58.639997pt;}
.fs5{font-size:63.879999pt;}
.fs3{font-size:63.999997pt;}
.fse{font-size:74.639997pt;}
.fs10{font-size:76.959997pt;}
.fs2{font-size:77.199993pt;}
.fs13{font-size:85.319996pt;}
.fs14{font-size:95.999996pt;}
.fs9{font-size:106.559992pt;}
.fs7{font-size:108.398447pt;}
.fs6{font-size:108.400903pt;}
.fs11{font-size:108.959995pt;}
.fs15{font-size:111.999995pt;}
.fsf{font-size:117.319995pt;}
.fsb{font-size:133.320002pt;}
.fsc{font-size:138.639994pt;}
.fs0{font-size:175.624526pt;}
.fs1{font-size:252.389286pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000007pt;}
.y44{bottom:2.503799pt;}
.y20{bottom:2.646933pt;}
.y84{bottom:9.639840pt;}
.y4{bottom:14.499291pt;}
.y83{bottom:27.639839pt;}
.y82{bottom:45.639838pt;}
.y10{bottom:55.724429pt;}
.y12{bottom:56.101930pt;}
.y81{bottom:63.639837pt;}
.y27{bottom:87.973116pt;}
.y2{bottom:103.746479pt;}
.y26{bottom:105.973116pt;}
.y25{bottom:123.973115pt;}
.y24{bottom:141.973114pt;}
.y23{bottom:161.306553pt;}
.y88{bottom:187.639832pt;}
.y87{bottom:205.639831pt;}
.y86{bottom:223.639831pt;}
.y85{bottom:241.639830pt;}
.y80{bottom:263.439989pt;}
.y32{bottom:292.239988pt;}
.y31{bottom:310.239987pt;}
.y30{bottom:328.239986pt;}
.y2f{bottom:346.239986pt;}
.y2e{bottom:364.239985pt;}
.y2d{bottom:382.239984pt;}
.y2c{bottom:400.239983pt;}
.y40{bottom:425.973422pt;}
.yb{bottom:481.703724pt;}
.y3f{bottom:483.763724pt;}
.ya{bottom:500.703723pt;}
.y3e{bottom:509.763723pt;}
.y9{bottom:519.703722pt;}
.y3d{bottom:535.763722pt;}
.y8{bottom:538.703722pt;}
.y7{bottom:557.703721pt;}
.y3c{bottom:561.763721pt;}
.y3b{bottom:587.763720pt;}
.y3{bottom:606.879982pt;}
.y3a{bottom:613.763718pt;}
.yc{bottom:637.371077pt;}
.y39{bottom:639.763717pt;}
.ye{bottom:653.640293pt;}
.y38{bottom:665.763716pt;}
.yd{bottom:675.640292pt;}
.y6{bottom:691.303875pt;}
.y37{bottom:691.763715pt;}
.y36{bottom:717.763714pt;}
.y43{bottom:737.439976pt;}
.y35{bottom:755.890273pt;}
.y1d{bottom:761.127456pt;}
.y1c{bottom:778.127456pt;}
.y1b{bottom:795.127455pt;}
.y34{bottom:796.890271pt;}
.y1f{bottom:806.559973pt;}
.y1a{bottom:812.127454pt;}
.y19{bottom:829.127453pt;}
.y18{bottom:846.127453pt;}
.y17{bottom:863.127452pt;}
.y16{bottom:880.127451pt;}
.y15{bottom:897.127451pt;}
.y6c{bottom:911.329178pt;}
.y14{bottom:914.127450pt;}
.y13{bottom:931.127449pt;}
.y6b{bottom:934.329177pt;}
.y6a{bottom:957.329176pt;}
.y11{bottom:957.599967pt;}
.yf{bottom:957.919967pt;}
.y69{bottom:980.329175pt;}
.y68{bottom:1003.329174pt;}
.y67{bottom:1026.329173pt;}
.y66{bottom:1049.329172pt;}
.y65{bottom:1072.329171pt;}
.y64{bottom:1095.329170pt;}
.y63{bottom:1118.329169pt;}
.y1e{bottom:1120.571985pt;}
.y62{bottom:1141.329168pt;}
.y61{bottom:1164.329167pt;}
.y42{bottom:1167.528623pt;}
.y60{bottom:1187.329167pt;}
.y5f{bottom:1210.329166pt;}
.y51{bottom:1228.760429pt;}
.y5e{bottom:1233.329165pt;}
.y50{bottom:1248.760428pt;}
.y5d{bottom:1256.329164pt;}
.y4f{bottom:1268.760427pt;}
.y5c{bottom:1279.329163pt;}
.y4e{bottom:1288.760426pt;}
.y5b{bottom:1304.329162pt;}
.y4d{bottom:1308.760425pt;}
.y4c{bottom:1328.760425pt;}
.y5a{bottom:1329.329161pt;}
.y4b{bottom:1348.760424pt;}
.y59{bottom:1354.329160pt;}
.y4a{bottom:1368.760423pt;}
.y58{bottom:1379.329159pt;}
.y49{bottom:1388.760422pt;}
.y48{bottom:1408.760421pt;}
.y6f{bottom:1416.182533pt;}
.y47{bottom:1428.760420pt;}
.y6e{bottom:1449.182532pt;}
.y46{bottom:1458.827043pt;}
.y6d{bottom:1482.182530pt;}
.y45{bottom:1487.827042pt;}
.y41{bottom:1550.092991pt;}
.y57{bottom:1602.007741pt;}
.y56{bottom:1648.007739pt;}
.y76{bottom:1739.806584pt;}
.y7d{bottom:1739.877560pt;}
.y75{bottom:1759.806583pt;}
.y7c{bottom:1759.877559pt;}
.y74{bottom:1779.806582pt;}
.y7b{bottom:1779.877558pt;}
.y73{bottom:1799.806581pt;}
.y7a{bottom:1799.877557pt;}
.y72{bottom:1819.806580pt;}
.y79{bottom:1819.877556pt;}
.y78{bottom:1839.877555pt;}
.y71{bottom:1844.206611pt;}
.y77{bottom:1866.010866pt;}
.y70{bottom:1873.206610pt;}
.y55{bottom:1919.652851pt;}
.y54{bottom:1941.652850pt;}
.y53{bottom:1963.652849pt;}
.y52{bottom:1985.652848pt;}
.y21{bottom:2032.173743pt;}
.y33{bottom:2081.796281pt;}
.y2b{bottom:2143.853523pt;}
.y2a{bottom:2169.853522pt;}
.y29{bottom:2195.853521pt;}
.y28{bottom:2221.853520pt;}
.y1{bottom:2273.759912pt;}
.y7f{bottom:2282.634865pt;}
.y7e{bottom:2321.634863pt;}
.y22{bottom:2391.368185pt;}
.h11{height:11.840000pt;}
.h1d{height:36.664541pt;}
.h12{height:36.832310pt;}
.h16{height:44.042318pt;}
.h9{height:44.906720pt;}
.hf{height:48.436637pt;}
.h15{height:49.534278pt;}
.h8{height:52.863998pt;}
.h18{height:54.476557pt;}
.h19{height:55.707997pt;}
.h7{height:58.749195pt;}
.h1f{height:60.799997pt;}
.h17{height:61.652637pt;}
.ha{height:62.346879pt;}
.h1b{height:63.568957pt;}
.h22{height:69.340557pt;}
.h4{height:74.559997pt;}
.h1e{height:79.262277pt;}
.he{height:80.973640pt;}
.hc{height:80.975474pt;}
.h20{height:89.183996pt;}
.h21{height:92.511996pt;}
.h1c{height:101.223836pt;}
.h10{height:104.002552pt;}
.h1a{height:108.990275pt;}
.h13{height:123.854282pt;}
.h14{height:128.796555pt;}
.hb{height:130.239995pt;}
.hd{height:130.879995pt;}
.h3{height:145.065859pt;}
.h2{height:202.879992pt;}
.h5{height:208.473551pt;}
.h6{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w7{width:93.759996pt;}
.w6{width:110.079995pt;}
.w4{width:130.239995pt;}
.w5{width:131.199995pt;}
.w2{width:135.039994pt;}
.w1{width:207.999991pt;}
.w3{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x22{left:19.439534pt;}
.x18{left:21.145663pt;}
.x1{left:24.959999pt;}
.x17{left:27.032321pt;}
.x2{left:33.314544pt;}
.xe{left:40.461971pt;}
.xc{left:43.930174pt;}
.x5{left:47.434163pt;}
.xb{left:49.279998pt;}
.x2b{left:53.311970pt;}
.x27{left:56.343220pt;}
.x3{left:59.839998pt;}
.x25{left:66.879997pt;}
.x2a{left:68.061970pt;}
.x4{left:70.164128pt;}
.x10{left:72.928649pt;}
.x6{left:74.324787pt;}
.x7{left:89.856036pt;}
.x2e{left:95.265094pt;}
.x24{left:112.601147pt;}
.x15{left:114.264663pt;}
.x26{left:131.221558pt;}
.x31{left:132.286241pt;}
.x45{left:144.095697pt;}
.x13{left:170.051634pt;}
.x32{left:181.504989pt;}
.xd{left:213.119991pt;}
.x19{left:226.312491pt;}
.x28{left:234.891828pt;}
.x11{left:238.311903pt;}
.x1a{left:240.968740pt;}
.x29{left:250.891862pt;}
.x2f{left:259.879009pt;}
.x30{left:275.879036pt;}
.x16{left:285.053798pt;}
.x9{left:298.193561pt;}
.xa{left:305.756060pt;}
.x2c{left:313.602900pt;}
.x8{left:319.600671pt;}
.x2d{left:329.602909pt;}
.x47{left:359.774203pt;}
.x46{left:374.461703pt;}
.xf{left:383.039984pt;}
.x14{left:392.639984pt;}
.x12{left:408.162991pt;}
.x1b{left:409.265613pt;}
.x1c{left:423.921862pt;}
.x23{left:425.834629pt;}
.x44{left:495.399080pt;}
.x1d{left:517.421858pt;}
.x1e{left:532.078108pt;}
.x36{left:556.926099pt;}
.x33{left:560.988599pt;}
.x21{left:567.463732pt;}
.x39{left:570.441723pt;}
.x35{left:572.707348pt;}
.x43{left:583.079179pt;}
.x41{left:587.451926pt;}
.x42{left:589.126053pt;}
.x1f{left:594.646812pt;}
.x40{left:598.920675pt;}
.x3f{left:600.155050pt;}
.x20{left:668.881184pt;}
.x3c{left:705.109015pt;}
.x3d{left:719.765325pt;}
.x3a{left:724.610296pt;}
.x3b{left:739.266606pt;}
.x3e{left:753.387059pt;}
.x37{left:758.556885pt;}
.x38{left:773.213195pt;}
.x34{left:826.744158pt;}
}




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