
    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_f26e2383e34466891648458a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_65a670cd35bb84b25d3ac100.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e12c8b3971b6a5b50ae0bc2c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_f1117d37895957d2d87c26f8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_ad206c00a19053a22d22aa44.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_cf760764b5d47c6cc688064a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_02fc428c7cb9bb011b7911f1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.238464px;}
.ls6{letter-spacing:-0.198720px;}
.ls4{letter-spacing:-0.158976px;}
.ls25{letter-spacing:-0.139104px;}
.ls8{letter-spacing:-0.125856px;}
.ls7{letter-spacing:-0.119232px;}
.ls5{letter-spacing:-0.079488px;}
.ls9{letter-spacing:-0.039744px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.114048px;}
.ls22{letter-spacing:0.125280px;}
.ls27{letter-spacing:0.161568px;}
.ls1f{letter-spacing:0.266112px;}
.ls1e{letter-spacing:0.270864px;}
.ls20{letter-spacing:0.275616px;}
.ls28{letter-spacing:0.285120px;}
.ls26{letter-spacing:0.318384px;}
.ls21{letter-spacing:0.356400px;}
.ls1{letter-spacing:0.391680px;}
.ls0{letter-spacing:0.392544px;}
.ls18{letter-spacing:0.766080px;}
.ls30{letter-spacing:0.855360px;}
.ls24{letter-spacing:1.205568px;}
.lsa{letter-spacing:1.359360px;}
.ls32{letter-spacing:1.644480px;}
.ls31{letter-spacing:1.644912px;}
.lsc{letter-spacing:1.827360px;}
.ls2f{letter-spacing:2.425680px;}
.lsd{letter-spacing:3.267360px;}
.ls2d{letter-spacing:3.467520px;}
.ls1c{letter-spacing:3.585744px;}
.ls1b{letter-spacing:3.587184px;}
.ls1d{letter-spacing:3.588480px;}
.ls16{letter-spacing:4.609440px;}
.ls2e{letter-spacing:4.786560px;}
.ls13{letter-spacing:5.113440px;}
.ls10{letter-spacing:7.405920px;}
.ls29{letter-spacing:7.946640px;}
.ls2a{letter-spacing:7.947360px;}
.lsf{letter-spacing:8.749440px;}
.ls2{letter-spacing:12.196800px;}
.ls1a{letter-spacing:12.573936px;}
.ls2b{letter-spacing:13.086864px;}
.ls11{letter-spacing:15.341760px;}
.ls12{letter-spacing:15.344640px;}
.ls19{letter-spacing:18.398880px;}
.lsb{letter-spacing:23.587200px;}
.ls14{letter-spacing:30.656160px;}
.ls15{letter-spacing:30.657600px;}
.ls2c{letter-spacing:34.542288px;}
.lse{letter-spacing:845.585280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.374976px;}
.ws6{word-spacing:-18.335232px;}
.ws0{word-spacing:-18.295488px;}
.ws4{word-spacing:-18.288864px;}
.ws11{word-spacing:-18.275616px;}
.ws2{word-spacing:-18.255744px;}
.ws10{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.176256px;}
.ws8{word-spacing:-13.566960px;}
.wsb{word-spacing:-13.528944px;}
.wsa{word-spacing:-13.495680px;}
.wsd{word-spacing:-13.486176px;}
.ws7{word-spacing:-13.481424px;}
.ws9{word-spacing:-13.372128px;}
.wsc{word-spacing:-13.324608px;}
.wse{word-spacing:-13.210560px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-5.025312px;}
._d{margin-left:-3.856896px;}
._a{margin-left:-2.318400px;}
._3{margin-left:-1.028448px;}
._0{width:1.059840px;}
._5{width:2.318400px;}
._6{width:3.444480px;}
._8{width:4.504320px;}
._b{width:5.920560px;}
._7{width:7.352640px;}
._2{width:9.339840px;}
._c{width:10.797120px;}
._1{width:11.856960px;}
._4{width:13.777920px;}
._12{width:15.433920px;}
._9{width:17.288064px;}
._11{width:19.620288px;}
._f{width:21.220848px;}
._10{width:23.316480px;}
._15{width:25.237440px;}
._13{width:30.867840px;}
._18{width:33.318720px;}
._14{width:39.545280px;}
._16{width:67.527360px;}
._e{width:845.973504px;}
.fc2{color:rgb(28,29,30);}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:66.240000px;}
.y5b{bottom:-7.725900px;}
.y76{bottom:-6.825900px;}
.y68{bottom:-6.345900px;}
.y0{bottom:0.000000px;}
.y37{bottom:2.894100px;}
.y5e{bottom:3.074100px;}
.y78{bottom:3.134100px;}
.y3d{bottom:3.314100px;}
.y40{bottom:3.494100px;}
.y50{bottom:3.554100px;}
.y6a{bottom:3.614100px;}
.y47{bottom:3.674100px;}
.y5d{bottom:3.734100px;}
.y6d{bottom:3.794100px;}
.y79{bottom:3.974100px;}
.y3e{bottom:4.154100px;}
.y4f{bottom:4.214100px;}
.y35{bottom:4.274100px;}
.y46{bottom:4.334100px;}
.y52{bottom:4.394100px;}
.y6b{bottom:4.454100px;}
.y49{bottom:4.874100px;}
.y5a{bottom:6.314100px;}
.y75{bottom:7.214100px;}
.y67{bottom:7.334100px;}
.y33{bottom:11.114100px;}
.y31{bottom:17.954100px;}
.y4d{bottom:18.674100px;}
.y44{bottom:18.794100px;}
.y3b{bottom:18.914100px;}
.y59{bottom:19.994100px;}
.y74{bottom:20.894100px;}
.y66{bottom:21.374100px;}
.y32{bottom:24.794100px;}
.y55{bottom:25.394100px;}
.y70{bottom:26.294100px;}
.y62{bottom:26.414100px;}
.y34{bottom:31.634100px;}
.y4b{bottom:32.354100px;}
.y39{bottom:32.594100px;}
.y42{bottom:32.834100px;}
.y58{bottom:33.674100px;}
.y73{bottom:34.574100px;}
.y65{bottom:35.054100px;}
.y54{bottom:39.074100px;}
.y6f{bottom:39.974100px;}
.y61{bottom:40.094100px;}
.y4c{bottom:46.394100px;}
.y43{bottom:46.514100px;}
.y3a{bottom:46.634100px;}
.y57{bottom:47.714100px;}
.y72{bottom:48.614100px;}
.y64{bottom:48.734100px;}
.y56{bottom:61.394100px;}
.y71{bottom:62.294100px;}
.y63{bottom:62.774100px;}
.y8a{bottom:115.574100px;}
.y2d{bottom:124.934100px;}
.y89{bottom:137.534100px;}
.y2c{bottom:146.534100px;}
.y88{bottom:159.134100px;}
.ybd{bottom:159.854100px;}
.y2b{bottom:168.494100px;}
.y87{bottom:177.494100px;}
.y2a{bottom:190.454100px;}
.ybc{bottom:195.494100px;}
.y29{bottom:212.054100px;}
.ybb{bottom:214.574100px;}
.yba{bottom:233.294100px;}
.y28{bottom:234.014100px;}
.yb9{bottom:252.374100px;}
.y27{bottom:255.614100px;}
.yb8{bottom:271.454100px;}
.y26{bottom:277.574100px;}
.yb7{bottom:290.534100px;}
.y25{bottom:299.534100px;}
.yb6{bottom:309.254100px;}
.y24{bottom:321.134100px;}
.yb5{bottom:328.334100px;}
.y23{bottom:343.094100px;}
.yb4{bottom:347.414100px;}
.y91{bottom:361.814100px;}
.y22{bottom:364.694100px;}
.yb3{bottom:366.134100px;}
.y7b{bottom:379.094100px;}
.y90{bottom:383.414100px;}
.yb2{bottom:385.214100px;}
.y21{bottom:386.654100px;}
.yb1{bottom:404.294100px;}
.y8f{bottom:405.374100px;}
.y20{bottom:408.614100px;}
.y7a{bottom:410.054100px;}
.yb0{bottom:423.374100px;}
.y8e{bottom:426.974100px;}
.y1f{bottom:430.214100px;}
.y6e{bottom:432.000000px;}
.yaf{bottom:442.094100px;}
.y8d{bottom:448.934100px;}
.y1e{bottom:452.174100px;}
.yae{bottom:461.174100px;}
.y77{bottom:462.000000px;}
.y8c{bottom:470.894100px;}
.y1d{bottom:474.134100px;}
.yad{bottom:480.254100px;}
.y8b{bottom:488.894100px;}
.y6c{bottom:490.500000px;}
.y1c{bottom:495.734100px;}
.yac{bottom:498.974100px;}
.y1b{bottom:517.694100px;}
.yab{bottom:518.054100px;}
.y60{bottom:519.000000px;}
.yaa{bottom:537.134100px;}
.y1a{bottom:539.294100px;}
.y69{bottom:549.000000px;}
.ya9{bottom:555.854100px;}
.y82{bottom:556.574100px;}
.y19{bottom:561.254100px;}
.ya8{bottom:574.934100px;}
.y5f{bottom:577.500000px;}
.y81{bottom:578.534100px;}
.y18{bottom:583.214100px;}
.y86{bottom:588.974100px;}
.ya7{bottom:594.014100px;}
.y80{bottom:600.134100px;}
.y17{bottom:604.814100px;}
.y53{bottom:607.500000px;}
.y85{bottom:610.934100px;}
.ya6{bottom:613.094100px;}
.y7f{bottom:622.094100px;}
.y16{bottom:626.774100px;}
.ya5{bottom:631.814100px;}
.y84{bottom:632.534100px;}
.y5c{bottom:636.000000px;}
.y7e{bottom:644.054100px;}
.y15{bottom:648.374100px;}
.y83{bottom:650.894100px;}
.y51{bottom:664.500000px;}
.y7d{bottom:665.654100px;}
.ya4{bottom:669.974100px;}
.y14{bottom:670.334100px;}
.y7c{bottom:684.014100px;}
.ya3{bottom:688.694100px;}
.y13{bottom:692.294100px;}
.y4a{bottom:694.500000px;}
.ya2{bottom:707.774100px;}
.y12{bottom:713.894100px;}
.y4e{bottom:723.000000px;}
.ya1{bottom:726.854100px;}
.y11{bottom:735.854100px;}
.ya0{bottom:745.574100px;}
.y48{bottom:751.500000px;}
.y10{bottom:757.454100px;}
.y9f{bottom:764.654100px;}
.yf{bottom:779.414100px;}
.y41{bottom:781.500000px;}
.y9e{bottom:783.734100px;}
.ye{bottom:801.374100px;}
.y9d{bottom:802.814100px;}
.y45{bottom:810.000000px;}
.y9c{bottom:821.534100px;}
.yd{bottom:822.974100px;}
.y3f{bottom:840.000000px;}
.y9b{bottom:840.614100px;}
.yc{bottom:844.934100px;}
.y9a{bottom:859.694100px;}
.yb{bottom:866.894100px;}
.y38{bottom:868.500000px;}
.y99{bottom:878.414100px;}
.ya{bottom:888.494100px;}
.y98{bottom:897.494100px;}
.y3c{bottom:898.500000px;}
.y9{bottom:910.454100px;}
.y97{bottom:916.574100px;}
.y36{bottom:927.000000px;}
.y8{bottom:932.054100px;}
.y96{bottom:935.654100px;}
.y7{bottom:954.014100px;}
.y95{bottom:954.374100px;}
.y30{bottom:955.500000px;}
.y94{bottom:973.454100px;}
.y6{bottom:975.974100px;}
.y93{bottom:992.534100px;}
.y5{bottom:997.574100px;}
.y92{bottom:1011.254100px;}
.y4{bottom:1019.534100px;}
.y2f{bottom:1022.774100px;}
.y3{bottom:1041.134100px;}
.y2e{bottom:1042.934100px;}
.y2{bottom:1063.094100px;}
.y1{bottom:1117.094100px;}
.h5{height:15.000000px;}
.h7{height:16.500000px;}
.h4{height:34.595859px;}
.h3{height:43.500000px;}
.h2{height:48.224531px;}
.h1{height:48.289219px;}
.h6{height:73.500000px;}
.h8{height:75.000000px;}
.h0{height:1188.000000px;}
.w2{width:49.500000px;}
.w1{width:61.500000px;}
.w5{width:69.000000px;}
.w7{width:76.500000px;}
.w3{width:82.500000px;}
.w6{width:88.500000px;}
.w4{width:163.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:7.679256px;}
.x14{left:8.953020px;}
.x5{left:11.449044px;}
.xc{left:13.406820px;}
.x10{left:15.438660px;}
.xf{left:16.888740px;}
.x7{left:18.147048px;}
.x17{left:20.045472px;}
.x16{left:21.114072px;}
.x8{left:22.819884px;}
.xd{left:24.615780px;}
.x12{left:25.743660px;}
.x19{left:27.061980px;}
.x22{left:28.298400px;}
.x1f{left:29.776380px;}
.x1d{left:30.872700px;}
.x1a{left:36.450420px;}
.xa{left:37.644108px;}
.x18{left:40.638228px;}
.x1b{left:43.532700px;}
.x21{left:47.572020px;}
.x1c{left:50.206740px;}
.x23{left:54.973212px;}
.x1e{left:56.880420px;}
.x20{left:60.232020px;}
.x2{left:109.425828px;}
.x28{left:136.425828px;}
.x2b{left:142.425840px;}
.x29{left:163.425828px;}
.x4{left:169.500000px;}
.x6{left:217.500000px;}
.x9{left:298.500000px;}
.xb{left:460.500000px;}
.xe{left:528.000000px;}
.x11{left:595.500000px;}
.x25{left:633.225900px;}
.x27{left:649.425900px;}
.x13{left:682.500000px;}
.x26{left:726.825900px;}
.x15{left:757.500000px;}
.x2a{left:793.072740px;}
.x1{left:802.249500px;}
.x24{left:811.425900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.211968pt;}
.ls6{letter-spacing:-0.176640pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls25{letter-spacing:-0.123648pt;}
.ls8{letter-spacing:-0.111872pt;}
.ls7{letter-spacing:-0.105984pt;}
.ls5{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:-0.035328pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.101376pt;}
.ls22{letter-spacing:0.111360pt;}
.ls27{letter-spacing:0.143616pt;}
.ls1f{letter-spacing:0.236544pt;}
.ls1e{letter-spacing:0.240768pt;}
.ls20{letter-spacing:0.244992pt;}
.ls28{letter-spacing:0.253440pt;}
.ls26{letter-spacing:0.283008pt;}
.ls21{letter-spacing:0.316800pt;}
.ls1{letter-spacing:0.348160pt;}
.ls0{letter-spacing:0.348928pt;}
.ls18{letter-spacing:0.680960pt;}
.ls30{letter-spacing:0.760320pt;}
.ls24{letter-spacing:1.071616pt;}
.lsa{letter-spacing:1.208320pt;}
.ls32{letter-spacing:1.461760pt;}
.ls31{letter-spacing:1.462144pt;}
.lsc{letter-spacing:1.624320pt;}
.ls2f{letter-spacing:2.156160pt;}
.lsd{letter-spacing:2.904320pt;}
.ls2d{letter-spacing:3.082240pt;}
.ls1c{letter-spacing:3.187328pt;}
.ls1b{letter-spacing:3.188608pt;}
.ls1d{letter-spacing:3.189760pt;}
.ls16{letter-spacing:4.097280pt;}
.ls2e{letter-spacing:4.254720pt;}
.ls13{letter-spacing:4.545280pt;}
.ls10{letter-spacing:6.583040pt;}
.ls29{letter-spacing:7.063680pt;}
.ls2a{letter-spacing:7.064320pt;}
.lsf{letter-spacing:7.777280pt;}
.ls2{letter-spacing:10.841600pt;}
.ls1a{letter-spacing:11.176832pt;}
.ls2b{letter-spacing:11.632768pt;}
.ls11{letter-spacing:13.637120pt;}
.ls12{letter-spacing:13.639680pt;}
.ls19{letter-spacing:16.354560pt;}
.lsb{letter-spacing:20.966400pt;}
.ls14{letter-spacing:27.249920pt;}
.ls15{letter-spacing:27.251200pt;}
.ls2c{letter-spacing:30.704256pt;}
.lse{letter-spacing:751.631360pt;}
.ws1{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.333312pt;}
.ws6{word-spacing:-16.297984pt;}
.ws0{word-spacing:-16.262656pt;}
.ws4{word-spacing:-16.256768pt;}
.ws11{word-spacing:-16.244992pt;}
.ws2{word-spacing:-16.227328pt;}
.ws10{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.156672pt;}
.ws8{word-spacing:-12.059520pt;}
.wsb{word-spacing:-12.025728pt;}
.wsa{word-spacing:-11.996160pt;}
.wsd{word-spacing:-11.987712pt;}
.ws7{word-spacing:-11.983488pt;}
.ws9{word-spacing:-11.886336pt;}
.wsc{word-spacing:-11.844096pt;}
.wse{word-spacing:-11.742720pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-4.466944pt;}
._d{margin-left:-3.428352pt;}
._a{margin-left:-2.060800pt;}
._3{margin-left:-0.914176pt;}
._0{width:0.942080pt;}
._5{width:2.060800pt;}
._6{width:3.061760pt;}
._8{width:4.003840pt;}
._b{width:5.262720pt;}
._7{width:6.535680pt;}
._2{width:8.302080pt;}
._c{width:9.597440pt;}
._1{width:10.539520pt;}
._4{width:12.247040pt;}
._12{width:13.719040pt;}
._9{width:15.367168pt;}
._11{width:17.440256pt;}
._f{width:18.862976pt;}
._10{width:20.725760pt;}
._15{width:22.433280pt;}
._13{width:27.438080pt;}
._18{width:29.616640pt;}
._14{width:35.151360pt;}
._16{width:60.024320pt;}
._e{width:751.976448pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:58.880000pt;}
.y5b{bottom:-6.867467pt;}
.y76{bottom:-6.067467pt;}
.y68{bottom:-5.640800pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.572533pt;}
.y5e{bottom:2.732533pt;}
.y78{bottom:2.785867pt;}
.y3d{bottom:2.945867pt;}
.y40{bottom:3.105867pt;}
.y50{bottom:3.159200pt;}
.y6a{bottom:3.212533pt;}
.y47{bottom:3.265867pt;}
.y5d{bottom:3.319200pt;}
.y6d{bottom:3.372533pt;}
.y79{bottom:3.532533pt;}
.y3e{bottom:3.692533pt;}
.y4f{bottom:3.745867pt;}
.y35{bottom:3.799200pt;}
.y46{bottom:3.852533pt;}
.y52{bottom:3.905867pt;}
.y6b{bottom:3.959200pt;}
.y49{bottom:4.332533pt;}
.y5a{bottom:5.612533pt;}
.y75{bottom:6.412533pt;}
.y67{bottom:6.519200pt;}
.y33{bottom:9.879200pt;}
.y31{bottom:15.959200pt;}
.y4d{bottom:16.599200pt;}
.y44{bottom:16.705867pt;}
.y3b{bottom:16.812533pt;}
.y59{bottom:17.772533pt;}
.y74{bottom:18.572533pt;}
.y66{bottom:18.999200pt;}
.y32{bottom:22.039200pt;}
.y55{bottom:22.572533pt;}
.y70{bottom:23.372533pt;}
.y62{bottom:23.479200pt;}
.y34{bottom:28.119200pt;}
.y4b{bottom:28.759200pt;}
.y39{bottom:28.972533pt;}
.y42{bottom:29.185867pt;}
.y58{bottom:29.932533pt;}
.y73{bottom:30.732533pt;}
.y65{bottom:31.159200pt;}
.y54{bottom:34.732533pt;}
.y6f{bottom:35.532533pt;}
.y61{bottom:35.639200pt;}
.y4c{bottom:41.239200pt;}
.y43{bottom:41.345867pt;}
.y3a{bottom:41.452533pt;}
.y57{bottom:42.412533pt;}
.y72{bottom:43.212533pt;}
.y64{bottom:43.319200pt;}
.y56{bottom:54.572533pt;}
.y71{bottom:55.372533pt;}
.y63{bottom:55.799200pt;}
.y8a{bottom:102.732533pt;}
.y2d{bottom:111.052533pt;}
.y89{bottom:122.252533pt;}
.y2c{bottom:130.252533pt;}
.y88{bottom:141.452533pt;}
.ybd{bottom:142.092533pt;}
.y2b{bottom:149.772533pt;}
.y87{bottom:157.772533pt;}
.y2a{bottom:169.292533pt;}
.ybc{bottom:173.772533pt;}
.y29{bottom:188.492533pt;}
.ybb{bottom:190.732533pt;}
.yba{bottom:207.372533pt;}
.y28{bottom:208.012533pt;}
.yb9{bottom:224.332533pt;}
.y27{bottom:227.212533pt;}
.yb8{bottom:241.292533pt;}
.y26{bottom:246.732533pt;}
.yb7{bottom:258.252533pt;}
.y25{bottom:266.252533pt;}
.yb6{bottom:274.892533pt;}
.y24{bottom:285.452533pt;}
.yb5{bottom:291.852533pt;}
.y23{bottom:304.972533pt;}
.yb4{bottom:308.812533pt;}
.y91{bottom:321.612533pt;}
.y22{bottom:324.172533pt;}
.yb3{bottom:325.452533pt;}
.y7b{bottom:336.972533pt;}
.y90{bottom:340.812533pt;}
.yb2{bottom:342.412533pt;}
.y21{bottom:343.692533pt;}
.yb1{bottom:359.372533pt;}
.y8f{bottom:360.332533pt;}
.y20{bottom:363.212533pt;}
.y7a{bottom:364.492533pt;}
.yb0{bottom:376.332533pt;}
.y8e{bottom:379.532533pt;}
.y1f{bottom:382.412533pt;}
.y6e{bottom:384.000000pt;}
.yaf{bottom:392.972533pt;}
.y8d{bottom:399.052533pt;}
.y1e{bottom:401.932533pt;}
.yae{bottom:409.932533pt;}
.y77{bottom:410.666667pt;}
.y8c{bottom:418.572533pt;}
.y1d{bottom:421.452533pt;}
.yad{bottom:426.892533pt;}
.y8b{bottom:434.572533pt;}
.y6c{bottom:436.000000pt;}
.y1c{bottom:440.652533pt;}
.yac{bottom:443.532533pt;}
.y1b{bottom:460.172533pt;}
.yab{bottom:460.492533pt;}
.y60{bottom:461.333333pt;}
.yaa{bottom:477.452533pt;}
.y1a{bottom:479.372533pt;}
.y69{bottom:488.000000pt;}
.ya9{bottom:494.092533pt;}
.y82{bottom:494.732533pt;}
.y19{bottom:498.892533pt;}
.ya8{bottom:511.052533pt;}
.y5f{bottom:513.333333pt;}
.y81{bottom:514.252533pt;}
.y18{bottom:518.412533pt;}
.y86{bottom:523.532533pt;}
.ya7{bottom:528.012533pt;}
.y80{bottom:533.452533pt;}
.y17{bottom:537.612533pt;}
.y53{bottom:540.000000pt;}
.y85{bottom:543.052533pt;}
.ya6{bottom:544.972533pt;}
.y7f{bottom:552.972533pt;}
.y16{bottom:557.132533pt;}
.ya5{bottom:561.612533pt;}
.y84{bottom:562.252533pt;}
.y5c{bottom:565.333333pt;}
.y7e{bottom:572.492533pt;}
.y15{bottom:576.332533pt;}
.y83{bottom:578.572533pt;}
.y51{bottom:590.666667pt;}
.y7d{bottom:591.692533pt;}
.ya4{bottom:595.532533pt;}
.y14{bottom:595.852533pt;}
.y7c{bottom:608.012533pt;}
.ya3{bottom:612.172533pt;}
.y13{bottom:615.372533pt;}
.y4a{bottom:617.333333pt;}
.ya2{bottom:629.132533pt;}
.y12{bottom:634.572533pt;}
.y4e{bottom:642.666667pt;}
.ya1{bottom:646.092533pt;}
.y11{bottom:654.092533pt;}
.ya0{bottom:662.732533pt;}
.y48{bottom:668.000000pt;}
.y10{bottom:673.292533pt;}
.y9f{bottom:679.692533pt;}
.yf{bottom:692.812533pt;}
.y41{bottom:694.666667pt;}
.y9e{bottom:696.652533pt;}
.ye{bottom:712.332533pt;}
.y9d{bottom:713.612533pt;}
.y45{bottom:720.000000pt;}
.y9c{bottom:730.252533pt;}
.yd{bottom:731.532533pt;}
.y3f{bottom:746.666667pt;}
.y9b{bottom:747.212533pt;}
.yc{bottom:751.052533pt;}
.y9a{bottom:764.172533pt;}
.yb{bottom:770.572533pt;}
.y38{bottom:772.000000pt;}
.y99{bottom:780.812533pt;}
.ya{bottom:789.772533pt;}
.y98{bottom:797.772533pt;}
.y3c{bottom:798.666667pt;}
.y9{bottom:809.292533pt;}
.y97{bottom:814.732533pt;}
.y36{bottom:824.000000pt;}
.y8{bottom:828.492533pt;}
.y96{bottom:831.692533pt;}
.y7{bottom:848.012533pt;}
.y95{bottom:848.332533pt;}
.y30{bottom:849.333333pt;}
.y94{bottom:865.292533pt;}
.y6{bottom:867.532533pt;}
.y93{bottom:882.252533pt;}
.y5{bottom:886.732533pt;}
.y92{bottom:898.892533pt;}
.y4{bottom:906.252533pt;}
.y2f{bottom:909.132533pt;}
.y3{bottom:925.452533pt;}
.y2e{bottom:927.052533pt;}
.y2{bottom:944.972533pt;}
.y1{bottom:992.972533pt;}
.h5{height:13.333333pt;}
.h7{height:14.666667pt;}
.h4{height:30.751875pt;}
.h3{height:38.666667pt;}
.h2{height:42.866250pt;}
.h1{height:42.923750pt;}
.h6{height:65.333333pt;}
.h8{height:66.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:44.000000pt;}
.w1{width:54.666667pt;}
.w5{width:61.333333pt;}
.w7{width:68.000000pt;}
.w3{width:73.333333pt;}
.w6{width:78.666667pt;}
.w4{width:145.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.826005pt;}
.x14{left:7.958240pt;}
.x5{left:10.176928pt;}
.xc{left:11.917173pt;}
.x10{left:13.723253pt;}
.xf{left:15.012213pt;}
.x7{left:16.130709pt;}
.x17{left:17.818197pt;}
.x16{left:18.768064pt;}
.x8{left:20.284341pt;}
.xd{left:21.880693pt;}
.x12{left:22.883253pt;}
.x19{left:24.055093pt;}
.x22{left:25.154133pt;}
.x1f{left:26.467893pt;}
.x1d{left:27.442400pt;}
.x1a{left:32.400373pt;}
.xa{left:33.461429pt;}
.x18{left:36.122869pt;}
.x1b{left:38.695733pt;}
.x21{left:42.286240pt;}
.x1c{left:44.628213pt;}
.x23{left:48.865077pt;}
.x1e{left:50.560373pt;}
.x20{left:53.539573pt;}
.x2{left:97.267403pt;}
.x28{left:121.267403pt;}
.x2b{left:126.600747pt;}
.x29{left:145.267403pt;}
.x4{left:150.666667pt;}
.x6{left:193.333333pt;}
.x9{left:265.333333pt;}
.xb{left:409.333333pt;}
.xe{left:469.333333pt;}
.x11{left:529.333333pt;}
.x25{left:562.867467pt;}
.x27{left:577.267467pt;}
.x13{left:606.666667pt;}
.x26{left:646.067467pt;}
.x15{left:673.333333pt;}
.x2a{left:704.953547pt;}
.x1{left:713.110667pt;}
.x24{left:721.267467pt;}
}




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