
    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_cd9941cc6ecb7df5d0b0b75a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_5f943848bd73547b89d84373.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_78ca5b8f2464d3d515eeb736.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_cc6d1dce2d99a4cf8893c3bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_726dd4ff8c8f1d5fe4161128.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.439224px;}
.ls21{letter-spacing:-0.384321px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008146px;}
.ls10{letter-spacing:0.008481px;}
.ls8{letter-spacing:0.009039px;}
.lsd{letter-spacing:0.009597px;}
.lse{letter-spacing:0.010713px;}
.lsb{letter-spacing:0.023881px;}
.ls11{letter-spacing:0.028121px;}
.ls12{letter-spacing:0.214122px;}
.ls6{letter-spacing:0.247063px;}
.ls23{letter-spacing:0.384321px;}
.lsc{letter-spacing:0.385419px;}
.ls4{letter-spacing:0.395302px;}
.ls0{letter-spacing:0.439224px;}
.ls3{letter-spacing:0.444714px;}
.ls1a{letter-spacing:0.458529px;}
.ls17{letter-spacing:0.466229px;}
.ls18{letter-spacing:0.467122px;}
.ls16{letter-spacing:0.467680px;}
.lsf{letter-spacing:0.469831px;}
.ls9{letter-spacing:0.471068px;}
.ls5{letter-spacing:0.543540px;}
.ls2{letter-spacing:0.592952px;}
.ls1c{letter-spacing:0.813662px;}
.ls1d{letter-spacing:0.856487px;}
.ls1e{letter-spacing:0.899311px;}
.ls19{letter-spacing:0.942135px;}
.ls20{letter-spacing:2.525538px;}
.ls22{letter-spacing:3.239276px;}
.ls13{letter-spacing:15.401851px;}
.ls14{letter-spacing:19.250640px;}
.ls15{letter-spacing:19.251198px;}
.ls1b{letter-spacing:19.270950px;}
.ls7{letter-spacing:710.280099px;}
.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;}
}
.ws6{word-spacing:-14.164972px;}
.ws0{word-spacing:-13.725748px;}
.ws1{word-spacing:-12.748474px;}
.ws5{word-spacing:-11.605394px;}
.ws3{word-spacing:-11.177151px;}
.ws4{word-spacing:-10.920205px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-19.207035px;}
._15{margin-left:-18.199699px;}
._18{margin-left:-3.678500px;}
._17{margin-left:-2.552989px;}
._6{margin-left:-1.136492px;}
._3{width:1.592187px;}
._9{width:2.904368px;}
._5{width:4.062821px;}
._e{width:6.039329px;}
._7{width:7.263666px;}
._19{width:8.312313px;}
._10{width:9.459785px;}
._8{width:10.524903px;}
._c{width:11.760221px;}
._13{width:14.994431px;}
._12{width:16.085393px;}
._a{width:17.245029px;}
._4{width:18.721920px;}
._b{width:19.929786px;}
._16{width:26.682630px;}
._f{width:31.184899px;}
._11{width:32.941794px;}
._0{width:455.090665px;}
._2{width:710.280099px;}
._d{width:793.842116px;}
._1{width:807.129197px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.824333px;}
.fs3{font-size:45.020452px;}
.fs2{font-size:49.412691px;}
.fs0{font-size:50.216150px;}
.fs1{font-size:54.902990px;}
.y8f{bottom:-0.275623px;}
.y0{bottom:0.000000px;}
.y2{bottom:28.867033px;}
.y4{bottom:47.303055px;}
.yb8{bottom:104.951195px;}
.y61{bottom:107.421830px;}
.y8a{bottom:117.853398px;}
.yb7{bottom:120.598547px;}
.y5e{bottom:122.296949px;}
.y60{bottom:123.343697px;}
.yb6{bottom:136.520415px;}
.y5f{bottom:138.991049px;}
.y1{bottom:148.500000px;}
.yb5{bottom:152.167767px;}
.y5d{bottom:154.912916px;}
.y2e{bottom:160.941226px;}
.y89{bottom:162.324820px;}
.y3f{bottom:165.194100px;}
.yb4{bottom:168.089634px;}
.y5c{bottom:170.560269px;}
.y90{bottom:173.030903px;}
.y2d{bottom:175.221583px;}
.y5b{bottom:186.482136px;}
.y2c{bottom:189.773526px;}
.yb3{bottom:197.462734px;}
.y88{bottom:198.560794px;}
.y5a{bottom:202.129488px;}
.y2b{bottom:204.325608px;}
.yb2{bottom:213.384601px;}
.y59{bottom:218.051355px;}
.y2a{bottom:218.874900px;}
.ydf{bottom:219.149276px;}
.y87{bottom:221.345535px;}
.yb1{bottom:229.031954px;}
.y58{bottom:233.679458px;}
.yde{bottom:234.796628px;}
.y29{bottom:234.796768px;}
.y86{bottom:236.992887px;}
.yb0{bottom:244.953821px;}
.y57{bottom:247.959815px;}
.y28{bottom:250.444120px;}
.ydd{bottom:250.718495px;}
.y85{bottom:259.777628px;}
.yaf{bottom:260.601173px;}
.y56{bottom:262.511758px;}
.ydc{bottom:266.365848px;}
.y27{bottom:266.365987px;}
.yb9{bottom:269.934681px;}
.y84{bottom:275.424980px;}
.yae{bottom:276.523040px;}
.y55{bottom:277.063840px;}
.y26{bottom:282.013339px;}
.y54{bottom:291.344058px;}
.y83{bottom:291.346848px;}
.yad{bottom:292.170393px;}
.ydb{bottom:296.013462px;}
.y25{bottom:297.935207px;}
.y53{bottom:305.896140px;}
.yda{bottom:311.660815px;}
.y24{bottom:313.582559px;}
.y82{bottom:313.857074px;}
.y52{bottom:320.719808px;}
.yac{bottom:321.543492px;}
.y23{bottom:329.504426px;}
.y81{bottom:329.778941px;}
.y51{bottom:336.367160px;}
.yab{bottom:337.465360px;}
.y22{bottom:345.151778px;}
.y80{bottom:345.426293px;}
.y50{bottom:352.289028px;}
.yd9{bottom:355.034177px;}
.y21{bottom:361.073646px;}
.y7f{bottom:361.348161px;}
.y4f{bottom:367.936380px;}
.yd8{bottom:370.681529px;}
.y20{bottom:376.690868px;}
.yaa{bottom:380.564207px;}
.y4e{bottom:383.858247px;}
.y7e{bottom:383.858387px;}
.yd7{bottom:386.603397px;}
.y1f{bottom:390.971086px;}
.ya9{bottom:396.486074px;}
.y4d{bottom:399.505599px;}
.y7d{bottom:399.780254px;}
.yd6{bottom:402.250749px;}
.y1e{bottom:405.523168px;}
.ya8{bottom:412.133427px;}
.y4c{bottom:415.427467px;}
.y7c{bottom:415.427606px;}
.yd5{bottom:418.172616px;}
.y1d{bottom:420.075111px;}
.ya7{bottom:428.055294px;}
.y4b{bottom:431.074819px;}
.y8d{bottom:431.628033px;}
.yd4{bottom:433.819968px;}
.y1c{bottom:434.355468px;}
.y7b{bottom:438.212347px;}
.y8e{bottom:446.161800px;}
.y4a{bottom:446.996686px;}
.y1b{bottom:448.907411px;}
.yd3{bottom:449.741836px;}
.yba{bottom:450.562730px;}
.y7a{bottom:453.859699px;}
.ya6{bottom:457.428394px;}
.y49{bottom:462.644038px;}
.y1a{bottom:463.459493px;}
.ya5{bottom:473.350261px;}
.y79{bottom:476.644440px;}
.y19{bottom:477.739710px;}
.y48{bottom:478.565906px;}
.yd2{bottom:479.114936px;}
.ya4{bottom:488.997613px;}
.y18{bottom:492.291793px;}
.y78{bottom:492.566168px;}
.y47{bottom:494.213258px;}
.yd1{bottom:495.036803px;}
.ya3{bottom:504.919481px;}
.y17{bottom:507.115600px;}
.y46{bottom:510.135125px;}
.yd0{bottom:510.684155px;}
.y77{bottom:515.350909px;}
.ya2{bottom:520.566833px;}
.y16{bottom:522.762952px;}
.y45{bottom:525.782477px;}
.ycf{bottom:526.606022px;}
.y76{bottom:530.998262px;}
.ya1{bottom:536.488700px;}
.y15{bottom:538.684820px;}
.y44{bottom:541.704345px;}
.yce{bottom:542.253375px;}
.ya0{bottom:552.136052px;}
.y75{bottom:553.783003px;}
.y14{bottom:554.332172px;}
.y42{bottom:556.579604px;}
.y43{bottom:557.351697px;}
.ycd{bottom:558.175242px;}
.y9f{bottom:568.057920px;}
.y74{bottom:569.155840px;}
.y13{bottom:570.254039px;}
.y41{bottom:572.226956px;}
.ycc{bottom:573.822594px;}
.y9e{bottom:583.705272px;}
.y73{bottom:585.077707px;}
.y12{bottom:585.901391px;}
.y8c{bottom:587.278011px;}
.y40{bottom:587.874308px;}
.ycb{bottom:589.744461px;}
.y72{bottom:600.725199px;}
.y11{bottom:601.823259px;}
.yca{bottom:605.391814px;}
.y9d{bottom:613.352887px;}
.y71{bottom:616.647066px;}
.y10{bottom:617.470611px;}
.y3e{bottom:620.490275px;}
.yc9{bottom:621.313681px;}
.y9c{bottom:629.000239px;}
.y70{bottom:632.294418px;}
.yf{bottom:633.392478px;}
.y3d{bottom:636.137628px;}
.yc8{bottom:636.961033px;}
.y9b{bottom:644.922106px;}
.y6f{bottom:647.664187px;}
.ye{bottom:649.039830px;}
.y3c{bottom:652.059495px;}
.yc7{bottom:652.882900px;}
.y9a{bottom:660.569458px;}
.y6e{bottom:660.843973px;}
.yd{bottom:664.961698px;}
.y3b{bottom:667.706847px;}
.yc6{bottom:668.530253px;}
.y6d{bottom:674.295067px;}
.y99{bottom:676.491326px;}
.yc{bottom:680.609050px;}
.y3a{bottom:683.628714px;}
.yc5{bottom:684.452120px;}
.y6c{bottom:690.216934px;}
.y98{bottom:692.138678px;}
.yb{bottom:696.530917px;}
.y39{bottom:699.276067px;}
.yc4{bottom:700.099472px;}
.ybb{bottom:700.640412px;}
.y6b{bottom:705.864286px;}
.y97{bottom:708.060545px;}
.y38{bottom:715.197934px;}
.y6a{bottom:721.786153px;}
.y96{bottom:723.707897px;}
.ya{bottom:727.002077px;}
.y8b{bottom:727.276452px;}
.yc3{bottom:729.747087px;}
.y37{bottom:730.845286px;}
.y69{bottom:737.433506px;}
.yc2{bottom:745.394439px;}
.y36{bottom:746.767153px;}
.y68{bottom:753.355373px;}
.y95{bottom:753.355512px;}
.yc1{bottom:761.316306px;}
.y35{bottom:762.414506px;}
.y67{bottom:768.725141px;}
.y9{bottom:772.297044px;}
.yc0{bottom:776.963659px;}
.y34{bottom:778.336373px;}
.y66{bottom:781.904928px;}
.y8{bottom:787.944396px;}
.y94{bottom:789.870186px;}
.ybf{bottom:792.885526px;}
.y33{bottom:793.983725px;}
.y65{bottom:795.356161px;}
.y7{bottom:803.866264px;}
.y93{bottom:807.160443px;}
.ybe{bottom:808.532878px;}
.y32{bottom:809.905592px;}
.y64{bottom:811.278028px;}
.y6{bottom:819.513616px;}
.y92{bottom:824.180231px;}
.ybd{bottom:824.454745px;}
.y31{bottom:825.552945px;}
.y63{bottom:826.925380px;}
.ybc{bottom:840.102098px;}
.y30{bottom:841.474812px;}
.y5{bottom:842.298357px;}
.y91{bottom:856.023965px;}
.y62{bottom:856.024104px;}
.y2f{bottom:857.122164px;}
.y3{bottom:904.613251px;}
.h10{height:11.253997px;}
.h9{height:33.657571px;}
.ha{height:34.309007px;}
.h6{height:37.397301px;}
.h7{height:38.121119px;}
.hc{height:39.502809px;}
.hd{height:39.986427px;}
.hf{height:43.887542px;}
.h3{height:44.061729px;}
.h4{height:47.381281px;}
.h11{height:48.157418px;}
.h8{height:48.174157px;}
.he{height:48.174715px;}
.h5{height:48.763935px;}
.hb{height:935.134950px;}
.h2{height:967.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:30.198045px;}
.w3{width:653.208900px;}
.w2{width:670.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xe{left:11.850766px;}
.x8{left:41.327891px;}
.xf{left:76.561216px;}
.xc{left:77.659555px;}
.xa{left:83.452410px;}
.x3{left:92.986500px;}
.x7{left:109.228495px;}
.x1{left:111.000000px;}
.x9{left:120.534090px;}
.x4{left:125.420442px;}
.x11{left:128.672244px;}
.xd{left:175.710450px;}
.x6{left:272.459717px;}
.x10{left:287.328161px;}
.x5{left:336.138119px;}
.xb{left:579.278160px;}
.x12{left:589.629662px;}
.x2{left:612.025785px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.390421pt;}
.ls21{letter-spacing:-0.341619pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007241pt;}
.ls10{letter-spacing:0.007539pt;}
.ls8{letter-spacing:0.008035pt;}
.lsd{letter-spacing:0.008531pt;}
.lse{letter-spacing:0.009522pt;}
.lsb{letter-spacing:0.021227pt;}
.ls11{letter-spacing:0.024996pt;}
.ls12{letter-spacing:0.190330pt;}
.ls6{letter-spacing:0.219612pt;}
.ls23{letter-spacing:0.341619pt;}
.lsc{letter-spacing:0.342595pt;}
.ls4{letter-spacing:0.351379pt;}
.ls0{letter-spacing:0.390421pt;}
.ls3{letter-spacing:0.395302pt;}
.ls1a{letter-spacing:0.407582pt;}
.ls17{letter-spacing:0.414426pt;}
.ls18{letter-spacing:0.415219pt;}
.ls16{letter-spacing:0.415715pt;}
.lsf{letter-spacing:0.417628pt;}
.ls9{letter-spacing:0.418727pt;}
.ls5{letter-spacing:0.483146pt;}
.ls2{letter-spacing:0.527069pt;}
.ls1c{letter-spacing:0.723255pt;}
.ls1d{letter-spacing:0.761321pt;}
.ls1e{letter-spacing:0.799388pt;}
.ls19{letter-spacing:0.837454pt;}
.ls20{letter-spacing:2.244922pt;}
.ls22{letter-spacing:2.879357pt;}
.ls13{letter-spacing:13.690534pt;}
.ls14{letter-spacing:17.111680pt;}
.ls15{letter-spacing:17.112176pt;}
.ls1b{letter-spacing:17.129733pt;}
.ls7{letter-spacing:631.360088pt;}
.ws6{word-spacing:-12.591086pt;}
.ws0{word-spacing:-12.200665pt;}
.ws1{word-spacing:-11.331977pt;}
.ws5{word-spacing:-10.315906pt;}
.ws3{word-spacing:-9.935245pt;}
.ws4{word-spacing:-9.706849pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-17.072920pt;}
._15{margin-left:-16.177510pt;}
._18{margin-left:-3.269778pt;}
._17{margin-left:-2.269324pt;}
._6{margin-left:-1.010215pt;}
._3{width:1.415277pt;}
._9{width:2.581661pt;}
._5{width:3.611397pt;}
._e{width:5.368292pt;}
._7{width:6.456592pt;}
._19{width:7.388722pt;}
._10{width:8.408698pt;}
._8{width:9.355470pt;}
._c{width:10.453529pt;}
._13{width:13.328383pt;}
._12{width:14.298127pt;}
._a{width:15.328915pt;}
._4{width:16.641706pt;}
._b{width:17.715365pt;}
._16{width:23.717893pt;}
._f{width:27.719910pt;}
._11{width:29.281595pt;}
._0{width:404.525035pt;}
._2{width:631.360088pt;}
._d{width:705.637436pt;}
._1{width:717.448175pt;}
.fs4{font-size:38.066073pt;}
.fs3{font-size:40.018180pt;}
.fs2{font-size:43.922392pt;}
.fs0{font-size:44.636578pt;}
.fs1{font-size:48.802658pt;}
.y8f{bottom:-0.244999pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:25.659585pt;}
.y4{bottom:42.047160pt;}
.yb8{bottom:93.289951pt;}
.y61{bottom:95.486071pt;}
.y8a{bottom:104.758576pt;}
.yb7{bottom:107.198709pt;}
.y5e{bottom:108.708399pt;}
.y60{bottom:109.638842pt;}
.yb6{bottom:121.351480pt;}
.y5f{bottom:123.547599pt;}
.y1{bottom:132.000000pt;}
.yb5{bottom:135.260237pt;}
.y5d{bottom:137.700370pt;}
.y2e{bottom:143.058867pt;}
.y89{bottom:144.288729pt;}
.y3f{bottom:146.839200pt;}
.yb4{bottom:149.413008pt;}
.y5c{bottom:151.609128pt;}
.y90{bottom:153.805247pt;}
.y2d{bottom:155.752518pt;}
.y5b{bottom:165.761899pt;}
.y2c{bottom:168.687578pt;}
.yb3{bottom:175.522430pt;}
.y88{bottom:176.498483pt;}
.y5a{bottom:179.670656pt;}
.y2b{bottom:181.622763pt;}
.yb2{bottom:189.675201pt;}
.y59{bottom:193.823427pt;}
.y2a{bottom:194.555467pt;}
.ydf{bottom:194.799356pt;}
.y87{bottom:196.751587pt;}
.yb1{bottom:203.583959pt;}
.y58{bottom:207.715074pt;}
.yde{bottom:208.708114pt;}
.y29{bottom:208.708238pt;}
.y86{bottom:210.660344pt;}
.yb0{bottom:217.736730pt;}
.y57{bottom:220.408725pt;}
.y28{bottom:222.616995pt;}
.ydd{bottom:222.860885pt;}
.y85{bottom:230.913447pt;}
.yaf{bottom:231.645487pt;}
.y56{bottom:233.343785pt;}
.ydc{bottom:236.769642pt;}
.y27{bottom:236.769766pt;}
.yb9{bottom:239.941939pt;}
.y84{bottom:244.822205pt;}
.yae{bottom:245.798258pt;}
.y55{bottom:246.278969pt;}
.y26{bottom:250.678524pt;}
.y54{bottom:258.972496pt;}
.y83{bottom:258.974976pt;}
.yad{bottom:259.707016pt;}
.ydb{bottom:263.123078pt;}
.y25{bottom:264.831295pt;}
.y53{bottom:271.907680pt;}
.yda{bottom:277.031835pt;}
.y24{bottom:278.740052pt;}
.y82{bottom:278.984066pt;}
.y52{bottom:285.084274pt;}
.yac{bottom:285.816438pt;}
.y23{bottom:292.892823pt;}
.y81{bottom:293.136836pt;}
.y51{bottom:298.993031pt;}
.yab{bottom:299.969209pt;}
.y22{bottom:306.801581pt;}
.y80{bottom:307.045594pt;}
.y50{bottom:313.145802pt;}
.yd9{bottom:315.585935pt;}
.y21{bottom:320.954352pt;}
.y7f{bottom:321.198365pt;}
.y4f{bottom:327.054560pt;}
.yd8{bottom:329.494693pt;}
.y20{bottom:334.836327pt;}
.yaa{bottom:338.279295pt;}
.y4e{bottom:341.207331pt;}
.y7e{bottom:341.207455pt;}
.yd7{bottom:343.647464pt;}
.y1f{bottom:347.529854pt;}
.ya9{bottom:352.432066pt;}
.y4d{bottom:355.116088pt;}
.y7d{bottom:355.360226pt;}
.yd6{bottom:357.556221pt;}
.y1e{bottom:360.465038pt;}
.ya8{bottom:366.340824pt;}
.y4c{bottom:369.268859pt;}
.y7c{bottom:369.268983pt;}
.yd5{bottom:371.708992pt;}
.y1d{bottom:373.400098pt;}
.ya7{bottom:380.493595pt;}
.y4b{bottom:383.177617pt;}
.y8d{bottom:383.669363pt;}
.yd4{bottom:385.617750pt;}
.y1c{bottom:386.093749pt;}
.y7b{bottom:389.522086pt;}
.y8e{bottom:396.588267pt;}
.y4a{bottom:397.330388pt;}
.y1b{bottom:399.028809pt;}
.yd3{bottom:399.770521pt;}
.yba{bottom:400.500205pt;}
.y7a{bottom:403.430844pt;}
.ya6{bottom:406.603017pt;}
.y49{bottom:411.239145pt;}
.y1a{bottom:411.963994pt;}
.ya5{bottom:420.755788pt;}
.y79{bottom:423.683947pt;}
.y19{bottom:424.657520pt;}
.y48{bottom:425.391916pt;}
.yd2{bottom:425.879943pt;}
.ya4{bottom:434.664545pt;}
.y18{bottom:437.592705pt;}
.y78{bottom:437.836594pt;}
.y47{bottom:439.300674pt;}
.yd1{bottom:440.032714pt;}
.ya3{bottom:448.817316pt;}
.y17{bottom:450.769422pt;}
.y46{bottom:453.453445pt;}
.yd0{bottom:453.941471pt;}
.y77{bottom:458.089697pt;}
.ya2{bottom:462.726074pt;}
.y16{bottom:464.678180pt;}
.y45{bottom:467.362202pt;}
.ycf{bottom:468.094242pt;}
.y76{bottom:471.998455pt;}
.ya1{bottom:476.878844pt;}
.y15{bottom:478.830951pt;}
.y44{bottom:481.514973pt;}
.yce{bottom:482.003000pt;}
.ya0{bottom:490.787602pt;}
.y75{bottom:492.251558pt;}
.y14{bottom:492.739708pt;}
.y42{bottom:494.737425pt;}
.y43{bottom:495.423731pt;}
.ycd{bottom:496.155770pt;}
.y9f{bottom:504.940373pt;}
.y74{bottom:505.916302pt;}
.y13{bottom:506.892479pt;}
.y41{bottom:508.646183pt;}
.ycc{bottom:510.064528pt;}
.y9e{bottom:518.849131pt;}
.y73{bottom:520.069073pt;}
.y12{bottom:520.801237pt;}
.y8c{bottom:522.024899pt;}
.y40{bottom:522.554941pt;}
.ycb{bottom:524.217299pt;}
.y72{bottom:533.977955pt;}
.y11{bottom:534.954008pt;}
.yca{bottom:538.126057pt;}
.y9d{bottom:545.202566pt;}
.y71{bottom:548.130725pt;}
.y10{bottom:548.862765pt;}
.y3e{bottom:551.546911pt;}
.yc9{bottom:552.278827pt;}
.y9c{bottom:559.111324pt;}
.y70{bottom:562.039483pt;}
.yf{bottom:563.015536pt;}
.y3d{bottom:565.455669pt;}
.yc8{bottom:566.187585pt;}
.y9b{bottom:573.264094pt;}
.y6f{bottom:575.701500pt;}
.ye{bottom:576.924294pt;}
.y3c{bottom:579.608440pt;}
.yc7{bottom:580.340356pt;}
.y9a{bottom:587.172852pt;}
.y6e{bottom:587.416865pt;}
.yd{bottom:591.077065pt;}
.y3b{bottom:593.517198pt;}
.yc6{bottom:594.249113pt;}
.y6d{bottom:599.373393pt;}
.y99{bottom:601.325623pt;}
.yc{bottom:604.985822pt;}
.y3a{bottom:607.669968pt;}
.yc5{bottom:608.401884pt;}
.y6c{bottom:613.526163pt;}
.y98{bottom:615.234380pt;}
.yb{bottom:619.138593pt;}
.y39{bottom:621.578726pt;}
.yc4{bottom:622.310642pt;}
.ybb{bottom:622.791477pt;}
.y6b{bottom:627.434921pt;}
.y97{bottom:629.387151pt;}
.y38{bottom:635.731497pt;}
.y6a{bottom:641.587692pt;}
.y96{bottom:643.295909pt;}
.ya{bottom:646.224068pt;}
.y8b{bottom:646.467958pt;}
.yc3{bottom:648.664077pt;}
.y37{bottom:649.640254pt;}
.y69{bottom:655.496449pt;}
.yc2{bottom:662.572835pt;}
.y36{bottom:663.793025pt;}
.y68{bottom:669.649220pt;}
.y95{bottom:669.649344pt;}
.yc1{bottom:676.725606pt;}
.y35{bottom:677.701783pt;}
.y67{bottom:683.311237pt;}
.y9{bottom:686.486261pt;}
.yc0{bottom:690.634363pt;}
.y34{bottom:691.854554pt;}
.y66{bottom:695.026603pt;}
.y8{bottom:700.395019pt;}
.y94{bottom:702.106832pt;}
.ybf{bottom:704.787134pt;}
.y33{bottom:705.763311pt;}
.y65{bottom:706.983254pt;}
.y7{bottom:714.547790pt;}
.y93{bottom:717.475949pt;}
.ybe{bottom:718.695892pt;}
.y32{bottom:719.916082pt;}
.y64{bottom:721.136025pt;}
.y6{bottom:728.456547pt;}
.y92{bottom:732.604649pt;}
.ybd{bottom:732.848663pt;}
.y31{bottom:733.824840pt;}
.y63{bottom:735.044782pt;}
.ybc{bottom:746.757420pt;}
.y30{bottom:747.977611pt;}
.y5{bottom:748.709651pt;}
.y91{bottom:760.910191pt;}
.y62{bottom:760.910315pt;}
.y2f{bottom:761.886368pt;}
.y3{bottom:804.100668pt;}
.h10{height:10.003553pt;}
.h9{height:29.917840pt;}
.ha{height:30.496895pt;}
.h6{height:33.242045pt;}
.h7{height:33.885439pt;}
.hc{height:35.113608pt;}
.hd{height:35.543491pt;}
.hf{height:39.011148pt;}
.h3{height:39.165981pt;}
.h4{height:42.116694pt;}
.h11{height:42.806594pt;}
.h8{height:42.821473pt;}
.he{height:42.821969pt;}
.h5{height:43.345720pt;}
.hb{height:831.231067pt;}
.h2{height:860.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:26.842707pt;}
.w3{width:580.630133pt;}
.w2{width:596.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xe{left:10.534014pt;}
.x8{left:36.735903pt;}
.xf{left:68.054414pt;}
.xc{left:69.030715pt;}
.xa{left:74.179920pt;}
.x3{left:82.654667pt;}
.x7{left:97.091996pt;}
.x1{left:98.666667pt;}
.x9{left:107.141413pt;}
.x4{left:111.484837pt;}
.x11{left:114.375328pt;}
.xd{left:156.187067pt;}
.x6{left:242.186415pt;}
.x10{left:255.402810pt;}
.x5{left:298.789439pt;}
.xb{left:514.913920pt;}
.x12{left:524.115255pt;}
.x2{left:544.022920pt;}
}




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