
    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_e24cfdc877974273d5d9d44e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0e8a17ef6191e475af0d6752.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_9b29251d43a16dcd85cbb5c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_965ffebdd8eeb423a5faf3de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_2ba41865524fb9a9045020a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_9b846b114c21d099d73bf803.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_133c1436ea6be3e8ef872786.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.049000;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_3c872e7f2a5e02bcfec9530c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.664000;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_26e99973c55350583b471fc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_a2d4dc46ba97137b0bb386cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_7777c2d58c1cfc89665dc886.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.451000;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_1a7ceeb8be781091e52fb46f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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_e78aeacccc72aff5def18ec3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.704000;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_aa358f8efbdd1b0cf55f16e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_5f057e704688ab002e7aca7f.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;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);}
.v8{vertical-align:-18.930000px;}
.v7{vertical-align:-10.134000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v6{vertical-align:23.754000px;}
.v4{vertical-align:27.024000px;}
.v5{vertical-align:43.902000px;}
.v3{vertical-align:70.158000px;}
.va{vertical-align:71.928000px;}
.v2{vertical-align:89.088000px;}
.v9{vertical-align:92.286000px;}
.vf{vertical-align:112.932000px;}
.ve{vertical-align:115.062000px;}
.vc{vertical-align:120.882000px;}
.vd{vertical-align:133.992000px;}
.vb{vertical-align:137.190000px;}
.ls23{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000265px;}
.ls1d{letter-spacing:0.001062px;}
.ls1c{letter-spacing:0.004338px;}
.ls2e{letter-spacing:0.213208px;}
.ls2b{letter-spacing:0.228943px;}
.lsf{letter-spacing:0.234213px;}
.ls1{letter-spacing:0.234344px;}
.ls32{letter-spacing:0.253829px;}
.ls15{letter-spacing:0.261818px;}
.ls25{letter-spacing:0.458182px;}
.ls29{letter-spacing:0.502322px;}
.ls28{letter-spacing:0.523637px;}
.ls0{letter-spacing:1.673717px;}
.lse{letter-spacing:1.832729px;}
.ls2c{letter-spacing:2.981971px;}
.lsd{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.985089px;}
.ls10{letter-spacing:2.987971px;}
.ls14{letter-spacing:3.289956px;}
.ls18{letter-spacing:4.647277px;}
.ls7{letter-spacing:4.712731px;}
.ls3{letter-spacing:5.105459px;}
.ls13{letter-spacing:5.170913px;}
.ls6{letter-spacing:5.976532px;}
.ls17{letter-spacing:5.982532px;}
.ls1b{letter-spacing:7.171062px;}
.ls20{letter-spacing:7.174869px;}
.ls8{letter-spacing:10.865464px;}
.ls24{letter-spacing:10.904688px;}
.ls26{letter-spacing:10.906869px;}
.ls16{letter-spacing:10.923083px;}
.lsa{letter-spacing:10.930918px;}
.ls4{letter-spacing:10.932276px;}
.ls11{letter-spacing:13.898915px;}
.lsb{letter-spacing:14.530921px;}
.ls1a{letter-spacing:18.171023px;}
.ls9{letter-spacing:18.196379px;}
.ls22{letter-spacing:21.820869px;}
.ls2d{letter-spacing:24.283657px;}
.ls19{letter-spacing:24.480020px;}
.ls27{letter-spacing:25.355412px;}
.ls30{letter-spacing:25.592749px;}
.ls2f{letter-spacing:25.658203px;}
.ls31{letter-spacing:26.312749px;}
.ls5{letter-spacing:29.087424px;}
.ls1f{letter-spacing:31.884532px;}
.ls1e{letter-spacing:54.047412px;}
.ls21{letter-spacing:62.763241px;}
.ls2a{letter-spacing:103.940692px;}
.ls12{letter-spacing:130.843745px;}
.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;}
}
.ws18{word-spacing:-47.258221px;}
.wse{word-spacing:-42.637126px;}
.wsf{word-spacing:-33.211407px;}
.ws12{word-spacing:-32.714209px;}
.ws1a{word-spacing:-31.771663px;}
.wsc{word-spacing:-31.706208px;}
.ws1e{word-spacing:-28.593421px;}
.ws21{word-spacing:-28.082340px;}
.ws1d{word-spacing:-24.440748px;}
.ws1f{word-spacing:-24.308844px;}
.ws22{word-spacing:-18.183288px;}
.ws11{word-spacing:-7.252370px;}
.ws24{word-spacing:-6.401460px;}
.ws17{word-spacing:-6.336005px;}
.ws13{word-spacing:-3.652367px;}
.ws5{word-spacing:-3.215927px;}
.ws6{word-spacing:-3.156152px;}
.ws25{word-spacing:-1.623274px;}
.ws2d{word-spacing:-1.165092px;}
.ws19{word-spacing:-1.034183px;}
.ws1b{word-spacing:-0.968728px;}
.ws2f{word-spacing:-0.706910px;}
.wsd{word-spacing:-0.052364px;}
.ws20{word-spacing:0.000000px;}
.ws2e{word-spacing:0.013091px;}
.ws7{word-spacing:0.609711px;}
.ws15{word-spacing:1.387638px;}
.ws4{word-spacing:2.283428px;}
.ws29{word-spacing:2.958548px;}
.wsa{word-spacing:3.299613px;}
.wsb{word-spacing:3.613094px;}
.ws16{word-spacing:3.874912px;}
.ws8{word-spacing:4.435350px;}
.ws9{word-spacing:4.674452px;}
.ws30{word-spacing:4.922186px;}
.ws3{word-spacing:5.391759px;}
.ws28{word-spacing:5.445823px;}
.ws26{word-spacing:5.576732px;}
.ws1c{word-spacing:5.773096px;}
.ws0{word-spacing:6.455775px;}
.ws27{word-spacing:6.624006px;}
.ws31{word-spacing:6.951279px;}
.ws2b{word-spacing:8.064007px;}
.ws2c{word-spacing:8.129461px;}
.ws14{word-spacing:9.569463px;}
.ws2a{word-spacing:12.187647px;}
.ws2{word-spacing:23.312640px;}
.ws23{word-spacing:35.918070px;}
.ws1{word-spacing:42.659761px;}
.ws10{word-spacing:99.202992px;}
._9{margin-left:-14.530921px;}
._0{margin-left:-5.990959px;}
._5{margin-left:-4.961375px;}
._1{margin-left:-2.995480px;}
._4{margin-left:-1.936742px;}
._3{width:1.936742px;}
._8{width:4.646893px;}
._2{width:6.197544px;}
._a{width:10.930918px;}
._f{width:18.974097px;}
._d{width:24.845852px;}
._6{width:26.289335px;}
._b{width:28.445855px;}
._7{width:29.918423px;}
._e{width:33.204841px;}
._c{width:35.645861px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y25{bottom:99.781500px;}
.y22{bottom:101.235000px;}
.y24{bottom:104.848500px;}
.y26{bottom:116.073000px;}
.y23{bottom:116.074500px;}
.y21{bottom:138.346500px;}
.y20{bottom:160.444500px;}
.y1f{bottom:180.768000px;}
.y1e{bottom:201.091500px;}
.y1d{bottom:229.501500px;}
.y1c{bottom:244.339500px;}
.y1b{bottom:290.277000px;}
.y1a{bottom:310.600500px;}
.y19{bottom:346.476000px;}
.y18{bottom:382.351500px;}
.y17{bottom:402.675000px;}
.y16{bottom:422.998500px;}
.y15{bottom:443.322000px;}
.y14{bottom:463.645500px;}
.y13{bottom:494.334000px;}
.y12{bottom:509.173500px;}
.y11{bottom:552.088500px;}
.y10{bottom:585.418500px;}
.yf{bottom:603.351000px;}
.ye{bottom:621.283500px;}
.y3c{bottom:623.880000px;}
.yd{bottom:639.216000px;}
.y3b{bottom:644.203500px;}
.yc{bottom:657.150000px;}
.y3a{bottom:664.528500px;}
.yb{bottom:675.082500px;}
.y39{bottom:684.852000px;}
.ya{bottom:693.015000px;}
.y38{bottom:705.175500px;}
.y9{bottom:719.400000px;}
.y37{bottom:725.499000px;}
.y36{bottom:745.822500px;}
.y35{bottom:766.147500px;}
.y8{bottom:779.140500px;}
.y34{bottom:786.471000px;}
.y7{bottom:800.062500px;}
.y33{bottom:806.794500px;}
.y6{bottom:820.983000px;}
.y32{bottom:827.118000px;}
.y31{bottom:847.441500px;}
.y5{bottom:866.451000px;}
.y30{bottom:867.766500px;}
.y2f{bottom:888.090000px;}
.y4{bottom:899.328000px;}
.y2e{bottom:908.413500px;}
.y3{bottom:932.203500px;}
.y2d{bottom:933.264000px;}
.y2c{bottom:944.488500px;}
.y2{bottom:965.080500px;}
.y2b{bottom:973.878000px;}
.y1{bottom:997.957500px;}
.y2a{bottom:1007.494500px;}
.y29{bottom:1018.719000px;}
.y28{bottom:1063.561500px;}
.he{height:2.618184px;}
.h9{height:31.800699px;}
.hf{height:32.661470px;}
.h4{height:41.723369px;}
.h5{height:44.831700px;}
.h7{height:49.090950px;}
.h6{height:49.473619px;}
.h3{height:51.216077px;}
.hb{height:55.554699px;}
.hc{height:58.824699px;}
.ha{height:67.752624px;}
.h1{height:72.304680px;}
.h2{height:73.440896px;}
.h14{height:90.425493px;}
.h19{height:91.043493px;}
.h8{height:91.706184px;}
.h17{height:93.370950px;}
.h12{height:93.376950px;}
.h10{height:94.904184px;}
.h16{height:94.910184px;}
.hd{height:102.825470px;}
.h13{height:136.610184px;}
.h15{height:139.808184px;}
.h11{height:141.970885px;}
.h18{height:144.732699px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:108.000000px;}
.xc{left:133.404000px;}
.xb{left:148.909500px;}
.x3{left:158.418000px;}
.x7{left:160.366500px;}
.xa{left:171.325500px;}
.x1{left:209.719500px;}
.x13{left:218.857500px;}
.x14{left:242.307000px;}
.x5{left:291.747000px;}
.xd{left:302.919000px;}
.xe{left:326.370000px;}
.x4{left:333.282000px;}
.x8{left:345.360000px;}
.x10{left:348.159000px;}
.x11{left:359.557500px;}
.x15{left:368.484000px;}
.x1f{left:379.480500px;}
.x1e{left:395.721000px;}
.x20{left:411.726000px;}
.x6{left:418.276500px;}
.x9{left:426.123000px;}
.x2{left:446.088000px;}
.x16{left:448.783500px;}
.x1d{left:454.909500px;}
.x12{left:466.237500px;}
.x17{left:480.042000px;}
.x18{left:498.198000px;}
.x19{left:536.157000px;}
.x1a{left:559.608000px;}
.x1b{left:595.831500px;}
.x1c{left:643.245000px;}
@media print{
.v8{vertical-align:-16.826667pt;}
.v7{vertical-align:-9.008000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v6{vertical-align:21.114667pt;}
.v4{vertical-align:24.021333pt;}
.v5{vertical-align:39.024000pt;}
.v3{vertical-align:62.362667pt;}
.va{vertical-align:63.936000pt;}
.v2{vertical-align:79.189333pt;}
.v9{vertical-align:82.032000pt;}
.vf{vertical-align:100.384000pt;}
.ve{vertical-align:102.277333pt;}
.vc{vertical-align:107.450667pt;}
.vd{vertical-align:119.104000pt;}
.vb{vertical-align:121.946667pt;}
.ls23{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000236pt;}
.ls1d{letter-spacing:0.000944pt;}
.ls1c{letter-spacing:0.003856pt;}
.ls2e{letter-spacing:0.189518pt;}
.ls2b{letter-spacing:0.203505pt;}
.lsf{letter-spacing:0.208189pt;}
.ls1{letter-spacing:0.208306pt;}
.ls32{letter-spacing:0.225626pt;}
.ls15{letter-spacing:0.232727pt;}
.ls25{letter-spacing:0.407273pt;}
.ls29{letter-spacing:0.446509pt;}
.ls28{letter-spacing:0.465455pt;}
.ls0{letter-spacing:1.487748pt;}
.lse{letter-spacing:1.629092pt;}
.ls2c{letter-spacing:2.650641pt;}
.lsd{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.653413pt;}
.ls10{letter-spacing:2.655975pt;}
.ls14{letter-spacing:2.924405pt;}
.ls18{letter-spacing:4.130913pt;}
.ls7{letter-spacing:4.189094pt;}
.ls3{letter-spacing:4.538186pt;}
.ls13{letter-spacing:4.596367pt;}
.ls6{letter-spacing:5.312473pt;}
.ls17{letter-spacing:5.317806pt;}
.ls1b{letter-spacing:6.374277pt;}
.ls20{letter-spacing:6.377661pt;}
.ls8{letter-spacing:9.658190pt;}
.ls24{letter-spacing:9.693056pt;}
.ls26{letter-spacing:9.694995pt;}
.ls16{letter-spacing:9.709407pt;}
.lsa{letter-spacing:9.716372pt;}
.ls4{letter-spacing:9.717579pt;}
.ls11{letter-spacing:12.354591pt;}
.lsb{letter-spacing:12.916374pt;}
.ls1a{letter-spacing:16.152020pt;}
.ls9{letter-spacing:16.174559pt;}
.ls22{letter-spacing:19.396328pt;}
.ls2d{letter-spacing:21.585473pt;}
.ls19{letter-spacing:21.760018pt;}
.ls27{letter-spacing:22.538144pt;}
.ls30{letter-spacing:22.749110pt;}
.ls2f{letter-spacing:22.807292pt;}
.ls31{letter-spacing:23.389110pt;}
.ls5{letter-spacing:25.855488pt;}
.ls1f{letter-spacing:28.341806pt;}
.ls1e{letter-spacing:48.042144pt;}
.ls21{letter-spacing:55.789548pt;}
.ls2a{letter-spacing:92.391727pt;}
.ls12{letter-spacing:116.305551pt;}
.ws18{word-spacing:-42.007308pt;}
.wse{word-spacing:-37.899668pt;}
.wsf{word-spacing:-29.521250pt;}
.ws12{word-spacing:-29.079297pt;}
.ws1a{word-spacing:-28.241478pt;}
.wsc{word-spacing:-28.183296pt;}
.ws1e{word-spacing:-25.416374pt;}
.ws21{word-spacing:-24.962080pt;}
.ws1d{word-spacing:-21.725109pt;}
.ws1f{word-spacing:-21.607861pt;}
.ws22{word-spacing:-16.162923pt;}
.ws11{word-spacing:-6.446551pt;}
.ws24{word-spacing:-5.690187pt;}
.ws17{word-spacing:-5.632005pt;}
.ws13{word-spacing:-3.246548pt;}
.ws5{word-spacing:-2.858602pt;}
.ws6{word-spacing:-2.805468pt;}
.ws25{word-spacing:-1.442910pt;}
.ws2d{word-spacing:-1.035637pt;}
.ws19{word-spacing:-0.919273pt;}
.ws1b{word-spacing:-0.861092pt;}
.ws2f{word-spacing:-0.628364pt;}
.wsd{word-spacing:-0.046545pt;}
.ws20{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.011636pt;}
.ws7{word-spacing:0.541965pt;}
.ws15{word-spacing:1.233456pt;}
.ws4{word-spacing:2.029714pt;}
.ws29{word-spacing:2.629820pt;}
.wsa{word-spacing:2.932989pt;}
.wsb{word-spacing:3.211639pt;}
.ws16{word-spacing:3.444367pt;}
.ws8{word-spacing:3.942533pt;}
.ws9{word-spacing:4.155068pt;}
.ws30{word-spacing:4.375276pt;}
.ws3{word-spacing:4.792675pt;}
.ws28{word-spacing:4.840731pt;}
.ws26{word-spacing:4.957095pt;}
.ws1c{word-spacing:5.131641pt;}
.ws0{word-spacing:5.738467pt;}
.ws27{word-spacing:5.888005pt;}
.ws31{word-spacing:6.178914pt;}
.ws2b{word-spacing:7.168006pt;}
.ws2c{word-spacing:7.226188pt;}
.ws14{word-spacing:8.506189pt;}
.ws2a{word-spacing:10.833464pt;}
.ws2{word-spacing:20.722347pt;}
.ws23{word-spacing:31.927173pt;}
.ws1{word-spacing:37.919788pt;}
.ws10{word-spacing:88.180437pt;}
._9{margin-left:-12.916374pt;}
._0{margin-left:-5.325297pt;}
._5{margin-left:-4.410111pt;}
._1{margin-left:-2.662649pt;}
._4{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._8{width:4.130572pt;}
._2{width:5.508928pt;}
._a{width:9.716372pt;}
._f{width:16.865864pt;}
._d{width:22.085202pt;}
._6{width:23.368298pt;}
._b{width:25.285205pt;}
._7{width:26.594154pt;}
._e{width:29.515414pt;}
._c{width:31.685210pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y25{bottom:88.694667pt;}
.y22{bottom:89.986667pt;}
.y24{bottom:93.198667pt;}
.y26{bottom:103.176000pt;}
.y23{bottom:103.177333pt;}
.y21{bottom:122.974667pt;}
.y20{bottom:142.617333pt;}
.y1f{bottom:160.682667pt;}
.y1e{bottom:178.748000pt;}
.y1d{bottom:204.001333pt;}
.y1c{bottom:217.190667pt;}
.y1b{bottom:258.024000pt;}
.y1a{bottom:276.089333pt;}
.y19{bottom:307.978667pt;}
.y18{bottom:339.868000pt;}
.y17{bottom:357.933333pt;}
.y16{bottom:375.998667pt;}
.y15{bottom:394.064000pt;}
.y14{bottom:412.129333pt;}
.y13{bottom:439.408000pt;}
.y12{bottom:452.598667pt;}
.y11{bottom:490.745333pt;}
.y10{bottom:520.372000pt;}
.yf{bottom:536.312000pt;}
.ye{bottom:552.252000pt;}
.y3c{bottom:554.560000pt;}
.yd{bottom:568.192000pt;}
.y3b{bottom:572.625333pt;}
.yc{bottom:584.133333pt;}
.y3a{bottom:590.692000pt;}
.yb{bottom:600.073333pt;}
.y39{bottom:608.757333pt;}
.ya{bottom:616.013333pt;}
.y38{bottom:626.822667pt;}
.y9{bottom:639.466667pt;}
.y37{bottom:644.888000pt;}
.y36{bottom:662.953333pt;}
.y35{bottom:681.020000pt;}
.y8{bottom:692.569333pt;}
.y34{bottom:699.085333pt;}
.y7{bottom:711.166667pt;}
.y33{bottom:717.150667pt;}
.y6{bottom:729.762667pt;}
.y32{bottom:735.216000pt;}
.y31{bottom:753.281333pt;}
.y5{bottom:770.178667pt;}
.y30{bottom:771.348000pt;}
.y2f{bottom:789.413333pt;}
.y4{bottom:799.402667pt;}
.y2e{bottom:807.478667pt;}
.y3{bottom:828.625333pt;}
.y2d{bottom:829.568000pt;}
.y2c{bottom:839.545333pt;}
.y2{bottom:857.849333pt;}
.y2b{bottom:865.669333pt;}
.y1{bottom:887.073333pt;}
.y2a{bottom:895.550667pt;}
.y29{bottom:905.528000pt;}
.y28{bottom:945.388000pt;}
.he{height:2.327275pt;}
.h9{height:28.267288pt;}
.hf{height:29.032418pt;}
.h4{height:37.087439pt;}
.h5{height:39.850400pt;}
.h7{height:43.636400pt;}
.h6{height:43.976550pt;}
.h3{height:45.525402pt;}
.hb{height:49.381955pt;}
.hc{height:52.288621pt;}
.ha{height:60.224555pt;}
.h1{height:64.270827pt;}
.h2{height:65.280797pt;}
.h14{height:80.378216pt;}
.h19{height:80.927549pt;}
.h8{height:81.516608pt;}
.h17{height:82.996400pt;}
.h12{height:83.001733pt;}
.h10{height:84.359275pt;}
.h16{height:84.364608pt;}
.hd{height:91.400418pt;}
.h13{height:121.431275pt;}
.h15{height:124.273941pt;}
.h11{height:126.196342pt;}
.h18{height:128.651288pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:96.000000pt;}
.xc{left:118.581333pt;}
.xb{left:132.364000pt;}
.x3{left:140.816000pt;}
.x7{left:142.548000pt;}
.xa{left:152.289333pt;}
.x1{left:186.417333pt;}
.x13{left:194.540000pt;}
.x14{left:215.384000pt;}
.x5{left:259.330667pt;}
.xd{left:269.261333pt;}
.xe{left:290.106667pt;}
.x4{left:296.250667pt;}
.x8{left:306.986667pt;}
.x10{left:309.474667pt;}
.x11{left:319.606667pt;}
.x15{left:327.541333pt;}
.x1f{left:337.316000pt;}
.x1e{left:351.752000pt;}
.x20{left:365.978667pt;}
.x6{left:371.801333pt;}
.x9{left:378.776000pt;}
.x2{left:396.522667pt;}
.x16{left:398.918667pt;}
.x1d{left:404.364000pt;}
.x12{left:414.433333pt;}
.x17{left:426.704000pt;}
.x18{left:442.842667pt;}
.x19{left:476.584000pt;}
.x1a{left:497.429333pt;}
.x1b{left:529.628000pt;}
.x1c{left:571.773333pt;}
}




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