
    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_c27c4f51a0b8439523a5fc2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926270;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_e6e69e9a6f2a52cd604a20cf.woff2')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_d93804c1d5ec6e30161b9b31.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b7730eb9d22d3fae92ffd539.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957000;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_c776e63790e3f1886f2084ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_bedb33a08725277f9d658cff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_a46bfeb03243d160ff513d92.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_bedb33a08725277f9d658cff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_60dfe6b6d7604d934f2703bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112000;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_cbbcfd4e67a6292b03534339.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052000;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_975a55b6f5d533028f4defa8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_1d1e75bdc6bff689b3649323.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962000;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_79508866b4b3ec07cedd6fbf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941000;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_bedb33a08725277f9d658cff.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_25f1a4c9139be0192d9bcd4a.woff2')format("woff");}.fff{font-family:fff;line-height:1.112000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-4.260000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.782000px;}
.v2{vertical-align:6.000000px;}
.v1{vertical-align:10.800000px;}
.ls2{letter-spacing:-61.050000px;}
.ls5{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.299400px;}
.ls4{letter-spacing:0.300000px;}
.lse{letter-spacing:0.390000px;}
.ls10{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.960000px;}
.ls0{letter-spacing:3.750000px;}
.ls3{letter-spacing:15.548400px;}
.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:-66.000000px;}
.ws0{word-spacing:-24.000000px;}
.ws1e{word-spacing:-19.140000px;}
.ws21{word-spacing:-16.680000px;}
.ws1f{word-spacing:-15.930000px;}
.ws17{word-spacing:-14.220000px;}
.wse{word-spacing:-13.920000px;}
.ws6{word-spacing:-13.620000px;}
.wsf{word-spacing:-13.020000px;}
.ws4{word-spacing:-10.098000px;}
.wsa{word-spacing:-8.400000px;}
.ws8{word-spacing:-6.600000px;}
.ws5{word-spacing:-5.220000px;}
.ws7{word-spacing:-4.740000px;}
.ws9{word-spacing:-4.260000px;}
.wsb{word-spacing:-3.300000px;}
.wsd{word-spacing:-2.400000px;}
.wsc{word-spacing:-1.440000px;}
.ws22{word-spacing:-0.480000px;}
.ws1d{word-spacing:-0.390000px;}
.ws19{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.336000px;}
.ws14{word-spacing:-0.330000px;}
.ws18{word-spacing:-0.300000px;}
.ws20{word-spacing:-0.270000px;}
.ws1c{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.180000px;}
.ws10{word-spacing:-0.120000px;}
.ws13{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.540000px;}
.ws12{word-spacing:0.600000px;}
.ws11{word-spacing:0.720000px;}
.ws15{word-spacing:0.840000px;}
.ws2{word-spacing:3.300000px;}
._a{margin-left:-38.040000px;}
._11{margin-left:-11.040000px;}
._3{margin-left:-8.580000px;}
._10{margin-left:-7.349400px;}
._9{margin-left:-5.985000px;}
._0{margin-left:-4.458000px;}
._6{margin-left:-3.000000px;}
._2{margin-left:-1.980000px;}
._e{width:1.194000px;}
._7{width:2.745000px;}
._8{width:6.624000px;}
._d{width:7.854000px;}
._5{width:10.098000px;}
._c{width:26.340000px;}
._f{width:42.271800px;}
._b{width:83.580000px;}
._12{width:104.760000px;}
._1{width:474.646200px;}
._4{width:867.372000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,172,223);}
.fc2{color:rgb(27,92,143);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:24.000000px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:78.000000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:150.000000px;}
.fs7{font-size:162.627000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:42.448800px;}
.y9{bottom:42.874050px;}
.y1{bottom:48.394500px;}
.yd2{bottom:74.264850px;}
.yd1{bottom:92.264850px;}
.y9f{bottom:92.808600px;}
.yb1{bottom:93.228300px;}
.y6e{bottom:94.535400px;}
.y8c{bottom:94.535550px;}
.ya6{bottom:95.527650px;}
.y9e{bottom:106.308600px;}
.yb0{bottom:106.728300px;}
.y8{bottom:107.984100px;}
.yd0{bottom:110.264850px;}
.y6d{bottom:112.535400px;}
.y47{bottom:112.535550px;}
.ya5{bottom:113.527650px;}
.y9d{bottom:119.808600px;}
.ycc{bottom:119.905650px;}
.yaf{bottom:120.228300px;}
.y7{bottom:121.484100px;}
.ycf{bottom:128.264850px;}
.y6c{bottom:130.535400px;}
.y46{bottom:130.535550px;}
.ya4{bottom:131.527650px;}
.y9c{bottom:133.308600px;}
.yae{bottom:133.728300px;}
.ycb{bottom:137.901150px;}
.y9b{bottom:146.808600px;}
.yad{bottom:147.228300px;}
.y6b{bottom:148.535400px;}
.y45{bottom:148.535550px;}
.yce{bottom:155.189850px;}
.yca{bottom:155.896650px;}
.ya3{bottom:158.031600px;}
.y6a{bottom:166.535400px;}
.y44{bottom:166.535550px;}
.ycd{bottom:173.189850px;}
.yc9{bottom:173.892150px;}
.ya2{bottom:176.031600px;}
.y69{bottom:184.535400px;}
.y43{bottom:184.535550px;}
.yc8{bottom:191.887650px;}
.ya1{bottom:194.031600px;}
.y68{bottom:202.535400px;}
.y42{bottom:202.535550px;}
.yd5{bottom:209.373150px;}
.ya0{bottom:212.031600px;}
.y67{bottom:220.535400px;}
.y41{bottom:220.535550px;}
.yd4{bottom:225.693150px;}
.y66{bottom:238.535400px;}
.y40{bottom:238.535550px;}
.yd3{bottom:241.818150px;}
.y65{bottom:256.535400px;}
.y3f{bottom:256.535550px;}
.y64{bottom:274.535400px;}
.y3e{bottom:274.535550px;}
.y63{bottom:292.535400px;}
.y3d{bottom:292.535550px;}
.y48{bottom:304.535550px;}
.y62{bottom:310.535400px;}
.y3c{bottom:310.535550px;}
.y61{bottom:328.535400px;}
.y3b{bottom:328.535550px;}
.y60{bottom:346.535400px;}
.y3a{bottom:346.535550px;}
.y5f{bottom:364.535400px;}
.y39{bottom:364.535550px;}
.yc7{bottom:370.807350px;}
.y5e{bottom:382.535400px;}
.y38{bottom:382.535550px;}
.yc6{bottom:388.802850px;}
.y5d{bottom:400.535400px;}
.y37{bottom:400.535550px;}
.yc5{bottom:406.798350px;}
.y5c{bottom:418.535400px;}
.y36{bottom:418.535550px;}
.yc4{bottom:424.793850px;}
.y2{bottom:426.898500px;}
.y5b{bottom:436.535400px;}
.y35{bottom:436.535550px;}
.yc3{bottom:442.789350px;}
.y5a{bottom:454.535400px;}
.y34{bottom:454.535550px;}
.yc2{bottom:460.789350px;}
.y59{bottom:472.535400px;}
.y33{bottom:472.535550px;}
.y32{bottom:490.535400px;}
.y8b{bottom:490.535550px;}
.yc1{bottom:496.816350px;}
.y31{bottom:508.535400px;}
.y8a{bottom:508.535550px;}
.yc0{bottom:514.811850px;}
.y30{bottom:526.535400px;}
.y89{bottom:526.535550px;}
.ybf{bottom:532.807350px;}
.y2f{bottom:544.535400px;}
.y88{bottom:544.535550px;}
.ybe{bottom:550.802850px;}
.y2e{bottom:562.535400px;}
.y87{bottom:562.535550px;}
.ybd{bottom:568.798350px;}
.y2d{bottom:580.535400px;}
.y86{bottom:580.535550px;}
.ybc{bottom:586.793850px;}
.y2c{bottom:598.535400px;}
.y85{bottom:598.535550px;}
.ybb{bottom:604.789350px;}
.y2b{bottom:616.535400px;}
.y84{bottom:616.535550px;}
.yba{bottom:622.789350px;}
.y2a{bottom:634.535400px;}
.y83{bottom:634.535550px;}
.y6{bottom:634.544400px;}
.yb9{bottom:640.789350px;}
.y29{bottom:652.535400px;}
.y82{bottom:652.535550px;}
.yb8{bottom:658.807350px;}
.y19{bottom:666.417150px;}
.y5{bottom:670.535400px;}
.y81{bottom:670.535550px;}
.yb7{bottom:676.802850px;}
.yb2{bottom:682.535550px;}
.y58{bottom:688.535400px;}
.y28{bottom:688.535550px;}
.y18{bottom:689.921100px;}
.yb6{bottom:694.798350px;}
.y57{bottom:706.535400px;}
.y27{bottom:706.535550px;}
.yb5{bottom:712.793850px;}
.y17{bottom:713.425050px;}
.yac{bottom:722.031450px;}
.y56{bottom:724.535400px;}
.y26{bottom:724.535550px;}
.yb4{bottom:730.789350px;}
.y16{bottom:736.929000px;}
.y55{bottom:742.535400px;}
.y25{bottom:742.535550px;}
.yab{bottom:746.031450px;}
.yb3{bottom:748.789350px;}
.y15{bottom:751.929000px;}
.y54{bottom:760.535400px;}
.y24{bottom:760.535550px;}
.y14{bottom:775.432950px;}
.y23{bottom:778.535400px;}
.y80{bottom:778.535550px;}
.y13{bottom:790.432950px;}
.y22{bottom:796.535400px;}
.y7f{bottom:796.535550px;}
.y12{bottom:813.936900px;}
.y21{bottom:814.535400px;}
.y7e{bottom:814.535550px;}
.y11{bottom:828.936900px;}
.y20{bottom:832.535400px;}
.y7d{bottom:832.535550px;}
.y1f{bottom:850.535400px;}
.y7c{bottom:850.535550px;}
.y10{bottom:852.440850px;}
.y98{bottom:856.535550px;}
.y1e{bottom:861.732300px;}
.yf{bottom:867.440850px;}
.y53{bottom:868.535400px;}
.y7b{bottom:868.535550px;}
.y97{bottom:880.535550px;}
.y52{bottom:886.535400px;}
.y7a{bottom:886.535550px;}
.ye{bottom:890.944650px;}
.y51{bottom:904.535400px;}
.y79{bottom:904.535550px;}
.y4{bottom:905.656650px;}
.yd{bottom:905.944650px;}
.y9a{bottom:910.535400px;}
.y50{bottom:922.535400px;}
.y78{bottom:922.535550px;}
.yc{bottom:929.448600px;}
.y99{bottom:934.535400px;}
.y4f{bottom:940.535400px;}
.y77{bottom:940.535550px;}
.y4e{bottom:958.535400px;}
.y76{bottom:958.535550px;}
.y3{bottom:959.244150px;}
.yb{bottom:961.206000px;}
.y1c{bottom:976.535400px;}
.y75{bottom:976.535550px;}
.y4d{bottom:994.535400px;}
.y74{bottom:994.535550px;}
.y1b{bottom:1012.535400px;}
.y73{bottom:1012.535550px;}
.ya{bottom:1015.104300px;}
.y4c{bottom:1030.535400px;}
.y72{bottom:1030.535550px;}
.y91{bottom:1048.535400px;}
.y96{bottom:1048.535550px;}
.y90{bottom:1066.535400px;}
.y95{bottom:1066.535550px;}
.y4b{bottom:1072.535400px;}
.y71{bottom:1072.535550px;}
.y8f{bottom:1084.535400px;}
.y94{bottom:1084.535550px;}
.yaa{bottom:1090.567500px;}
.y4a{bottom:1096.535400px;}
.y70{bottom:1096.535550px;}
.y8e{bottom:1102.535400px;}
.y93{bottom:1102.535550px;}
.ya9{bottom:1108.567500px;}
.y49{bottom:1120.535400px;}
.y6f{bottom:1120.535550px;}
.ya8{bottom:1126.567500px;}
.y8d{bottom:1138.535400px;}
.y92{bottom:1138.535550px;}
.ya7{bottom:1144.567500px;}
.y1d{bottom:1194.789150px;}
.he{height:35.568000px;}
.h7{height:37.776000px;}
.h12{height:42.949219px;}
.h6{height:43.152000px;}
.h11{height:43.681641px;}
.h2{height:44.654297px;}
.h10{height:47.220000px;}
.h9{height:47.700000px;}
.hf{height:48.546000px;}
.h3{height:50.358000px;}
.h8{height:53.940000px;}
.hd{height:59.334000px;}
.hc{height:61.386000px;}
.h5{height:84.996000px;}
.ha{height:97.092000px;}
.h4{height:110.550000px;}
.hb{height:146.201673px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2{left:-17.025150px;}
.x0{left:0.000000px;}
.x5{left:42.519600px;}
.x1{left:52.637400px;}
.x3{left:83.406600px;}
.x4{left:85.039350px;}
.x19{left:97.795350px;}
.x30{left:107.149650px;}
.x6{left:109.700700px;}
.x7{left:116.656050px;}
.x22{left:126.205650px;}
.x9{left:127.558950px;}
.x8{left:133.663950px;}
.x24{left:157.873500px;}
.x23{left:166.687200px;}
.x11{left:172.204650px;}
.x12{left:175.161600px;}
.x28{left:182.636700px;}
.x13{left:184.960650px;}
.x1e{left:188.997000px;}
.x29{left:193.464600px;}
.x2a{left:201.525150px;}
.x1d{left:206.569050px;}
.x2b{left:225.509550px;}
.x10{left:234.610350px;}
.x1f{left:242.712000px;}
.x31{left:248.421300px;}
.xd{left:411.732000px;}
.x1b{left:415.593600px;}
.x1c{left:418.118400px;}
.x26{left:421.171050px;}
.xc{left:424.487850px;}
.x27{left:431.998950px;}
.x1a{left:446.934750px;}
.xe{left:449.836650px;}
.xf{left:481.026900px;}
.x17{left:497.904450px;}
.x21{left:509.012550px;}
.x18{left:510.660300px;}
.x15{left:513.723150px;}
.x16{left:519.118950px;}
.x14{left:524.852250px;}
.x20{left:547.786950px;}
.x2e{left:559.681950px;}
.x2f{left:588.502350px;}
.x25{left:735.590550px;}
.x2d{left:737.007900px;}
.xb{left:772.795200px;}
.x2c{left:835.321950px;}
.xa{left:842.857950px;}
.x32{left:922.659900px;}
@media print{
.v3{vertical-align:-3.786667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.584000pt;}
.v2{vertical-align:5.333333pt;}
.v1{vertical-align:9.600000pt;}
.ls2{letter-spacing:-54.266667pt;}
.ls5{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.266133pt;}
.ls4{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.346667pt;}
.ls10{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.853333pt;}
.ls0{letter-spacing:3.333333pt;}
.ls3{letter-spacing:13.820800pt;}
.ws1{word-spacing:-58.666667pt;}
.ws0{word-spacing:-21.333333pt;}
.ws1e{word-spacing:-17.013333pt;}
.ws21{word-spacing:-14.826667pt;}
.ws1f{word-spacing:-14.160000pt;}
.ws17{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.373333pt;}
.ws6{word-spacing:-12.106667pt;}
.wsf{word-spacing:-11.573333pt;}
.ws4{word-spacing:-8.976000pt;}
.wsa{word-spacing:-7.466667pt;}
.ws8{word-spacing:-5.866667pt;}
.ws5{word-spacing:-4.640000pt;}
.ws7{word-spacing:-4.213333pt;}
.ws9{word-spacing:-3.786667pt;}
.wsb{word-spacing:-2.933333pt;}
.wsd{word-spacing:-2.133333pt;}
.wsc{word-spacing:-1.280000pt;}
.ws22{word-spacing:-0.426667pt;}
.ws1d{word-spacing:-0.346667pt;}
.ws19{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.298667pt;}
.ws14{word-spacing:-0.293333pt;}
.ws18{word-spacing:-0.266667pt;}
.ws20{word-spacing:-0.240000pt;}
.ws1c{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.160000pt;}
.ws10{word-spacing:-0.106667pt;}
.ws13{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.480000pt;}
.ws12{word-spacing:0.533333pt;}
.ws11{word-spacing:0.640000pt;}
.ws15{word-spacing:0.746667pt;}
.ws2{word-spacing:2.933333pt;}
._a{margin-left:-33.813333pt;}
._11{margin-left:-9.813333pt;}
._3{margin-left:-7.626667pt;}
._10{margin-left:-6.532800pt;}
._9{margin-left:-5.320000pt;}
._0{margin-left:-3.962667pt;}
._6{margin-left:-2.666667pt;}
._2{margin-left:-1.760000pt;}
._e{width:1.061333pt;}
._7{width:2.440000pt;}
._8{width:5.888000pt;}
._d{width:6.981333pt;}
._5{width:8.976000pt;}
._c{width:23.413333pt;}
._f{width:37.574933pt;}
._b{width:74.293333pt;}
._12{width:93.120000pt;}
._1{width:421.907733pt;}
._4{width:770.997333pt;}
.fs1{font-size:21.333333pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:69.333333pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:133.333333pt;}
.fs7{font-size:144.557333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:37.732267pt;}
.y9{bottom:38.110267pt;}
.y1{bottom:43.017333pt;}
.yd2{bottom:66.013200pt;}
.yd1{bottom:82.013200pt;}
.y9f{bottom:82.496533pt;}
.yb1{bottom:82.869600pt;}
.y6e{bottom:84.031467pt;}
.y8c{bottom:84.031600pt;}
.ya6{bottom:84.913467pt;}
.y9e{bottom:94.496533pt;}
.yb0{bottom:94.869600pt;}
.y8{bottom:95.985867pt;}
.yd0{bottom:98.013200pt;}
.y6d{bottom:100.031467pt;}
.y47{bottom:100.031600pt;}
.ya5{bottom:100.913467pt;}
.y9d{bottom:106.496533pt;}
.ycc{bottom:106.582800pt;}
.yaf{bottom:106.869600pt;}
.y7{bottom:107.985867pt;}
.ycf{bottom:114.013200pt;}
.y6c{bottom:116.031467pt;}
.y46{bottom:116.031600pt;}
.ya4{bottom:116.913467pt;}
.y9c{bottom:118.496533pt;}
.yae{bottom:118.869600pt;}
.ycb{bottom:122.578800pt;}
.y9b{bottom:130.496533pt;}
.yad{bottom:130.869600pt;}
.y6b{bottom:132.031467pt;}
.y45{bottom:132.031600pt;}
.yce{bottom:137.946533pt;}
.yca{bottom:138.574800pt;}
.ya3{bottom:140.472533pt;}
.y6a{bottom:148.031467pt;}
.y44{bottom:148.031600pt;}
.ycd{bottom:153.946533pt;}
.yc9{bottom:154.570800pt;}
.ya2{bottom:156.472533pt;}
.y69{bottom:164.031467pt;}
.y43{bottom:164.031600pt;}
.yc8{bottom:170.566800pt;}
.ya1{bottom:172.472533pt;}
.y68{bottom:180.031467pt;}
.y42{bottom:180.031600pt;}
.yd5{bottom:186.109467pt;}
.ya0{bottom:188.472533pt;}
.y67{bottom:196.031467pt;}
.y41{bottom:196.031600pt;}
.yd4{bottom:200.616133pt;}
.y66{bottom:212.031467pt;}
.y40{bottom:212.031600pt;}
.yd3{bottom:214.949467pt;}
.y65{bottom:228.031467pt;}
.y3f{bottom:228.031600pt;}
.y64{bottom:244.031467pt;}
.y3e{bottom:244.031600pt;}
.y63{bottom:260.031467pt;}
.y3d{bottom:260.031600pt;}
.y48{bottom:270.698267pt;}
.y62{bottom:276.031467pt;}
.y3c{bottom:276.031600pt;}
.y61{bottom:292.031467pt;}
.y3b{bottom:292.031600pt;}
.y60{bottom:308.031467pt;}
.y3a{bottom:308.031600pt;}
.y5f{bottom:324.031467pt;}
.y39{bottom:324.031600pt;}
.yc7{bottom:329.606533pt;}
.y5e{bottom:340.031467pt;}
.y38{bottom:340.031600pt;}
.yc6{bottom:345.602533pt;}
.y5d{bottom:356.031467pt;}
.y37{bottom:356.031600pt;}
.yc5{bottom:361.598533pt;}
.y5c{bottom:372.031467pt;}
.y36{bottom:372.031600pt;}
.yc4{bottom:377.594533pt;}
.y2{bottom:379.465333pt;}
.y5b{bottom:388.031467pt;}
.y35{bottom:388.031600pt;}
.yc3{bottom:393.590533pt;}
.y5a{bottom:404.031467pt;}
.y34{bottom:404.031600pt;}
.yc2{bottom:409.590533pt;}
.y59{bottom:420.031467pt;}
.y33{bottom:420.031600pt;}
.y32{bottom:436.031467pt;}
.y8b{bottom:436.031600pt;}
.yc1{bottom:441.614533pt;}
.y31{bottom:452.031467pt;}
.y8a{bottom:452.031600pt;}
.yc0{bottom:457.610533pt;}
.y30{bottom:468.031467pt;}
.y89{bottom:468.031600pt;}
.ybf{bottom:473.606533pt;}
.y2f{bottom:484.031467pt;}
.y88{bottom:484.031600pt;}
.ybe{bottom:489.602533pt;}
.y2e{bottom:500.031467pt;}
.y87{bottom:500.031600pt;}
.ybd{bottom:505.598533pt;}
.y2d{bottom:516.031467pt;}
.y86{bottom:516.031600pt;}
.ybc{bottom:521.594533pt;}
.y2c{bottom:532.031467pt;}
.y85{bottom:532.031600pt;}
.ybb{bottom:537.590533pt;}
.y2b{bottom:548.031467pt;}
.y84{bottom:548.031600pt;}
.yba{bottom:553.590533pt;}
.y2a{bottom:564.031467pt;}
.y83{bottom:564.031600pt;}
.y6{bottom:564.039467pt;}
.yb9{bottom:569.590533pt;}
.y29{bottom:580.031467pt;}
.y82{bottom:580.031600pt;}
.yb8{bottom:585.606533pt;}
.y19{bottom:592.370800pt;}
.y5{bottom:596.031467pt;}
.y81{bottom:596.031600pt;}
.yb7{bottom:601.602533pt;}
.yb2{bottom:606.698267pt;}
.y58{bottom:612.031467pt;}
.y28{bottom:612.031600pt;}
.y18{bottom:613.263200pt;}
.yb6{bottom:617.598533pt;}
.y57{bottom:628.031467pt;}
.y27{bottom:628.031600pt;}
.yb5{bottom:633.594533pt;}
.y17{bottom:634.155600pt;}
.yac{bottom:641.805733pt;}
.y56{bottom:644.031467pt;}
.y26{bottom:644.031600pt;}
.yb4{bottom:649.590533pt;}
.y16{bottom:655.048000pt;}
.y55{bottom:660.031467pt;}
.y25{bottom:660.031600pt;}
.yab{bottom:663.139067pt;}
.yb3{bottom:665.590533pt;}
.y15{bottom:668.381333pt;}
.y54{bottom:676.031467pt;}
.y24{bottom:676.031600pt;}
.y14{bottom:689.273733pt;}
.y23{bottom:692.031467pt;}
.y80{bottom:692.031600pt;}
.y13{bottom:702.607067pt;}
.y22{bottom:708.031467pt;}
.y7f{bottom:708.031600pt;}
.y12{bottom:723.499467pt;}
.y21{bottom:724.031467pt;}
.y7e{bottom:724.031600pt;}
.y11{bottom:736.832800pt;}
.y20{bottom:740.031467pt;}
.y7d{bottom:740.031600pt;}
.y1f{bottom:756.031467pt;}
.y7c{bottom:756.031600pt;}
.y10{bottom:757.725200pt;}
.y98{bottom:761.364933pt;}
.y1e{bottom:765.984267pt;}
.yf{bottom:771.058533pt;}
.y53{bottom:772.031467pt;}
.y7b{bottom:772.031600pt;}
.y97{bottom:782.698267pt;}
.y52{bottom:788.031467pt;}
.y7a{bottom:788.031600pt;}
.ye{bottom:791.950800pt;}
.y51{bottom:804.031467pt;}
.y79{bottom:804.031600pt;}
.y4{bottom:805.028133pt;}
.yd{bottom:805.284133pt;}
.y9a{bottom:809.364800pt;}
.y50{bottom:820.031467pt;}
.y78{bottom:820.031600pt;}
.yc{bottom:826.176533pt;}
.y99{bottom:830.698133pt;}
.y4f{bottom:836.031467pt;}
.y77{bottom:836.031600pt;}
.y4e{bottom:852.031467pt;}
.y76{bottom:852.031600pt;}
.y3{bottom:852.661467pt;}
.yb{bottom:854.405333pt;}
.y1c{bottom:868.031467pt;}
.y75{bottom:868.031600pt;}
.y4d{bottom:884.031467pt;}
.y74{bottom:884.031600pt;}
.y1b{bottom:900.031467pt;}
.y73{bottom:900.031600pt;}
.ya{bottom:902.314933pt;}
.y4c{bottom:916.031467pt;}
.y72{bottom:916.031600pt;}
.y91{bottom:932.031467pt;}
.y96{bottom:932.031600pt;}
.y90{bottom:948.031467pt;}
.y95{bottom:948.031600pt;}
.y4b{bottom:953.364800pt;}
.y71{bottom:953.364933pt;}
.y8f{bottom:964.031467pt;}
.y94{bottom:964.031600pt;}
.yaa{bottom:969.393333pt;}
.y4a{bottom:974.698133pt;}
.y70{bottom:974.698267pt;}
.y8e{bottom:980.031467pt;}
.y93{bottom:980.031600pt;}
.ya9{bottom:985.393333pt;}
.y49{bottom:996.031467pt;}
.y6f{bottom:996.031600pt;}
.ya8{bottom:1001.393333pt;}
.y8d{bottom:1012.031467pt;}
.y92{bottom:1012.031600pt;}
.ya7{bottom:1017.393333pt;}
.y1d{bottom:1062.034800pt;}
.he{height:31.616000pt;}
.h7{height:33.578667pt;}
.h12{height:38.177083pt;}
.h6{height:38.357333pt;}
.h11{height:38.828125pt;}
.h2{height:39.692708pt;}
.h10{height:41.973333pt;}
.h9{height:42.400000pt;}
.hf{height:43.152000pt;}
.h3{height:44.762667pt;}
.h8{height:47.946667pt;}
.hd{height:52.741333pt;}
.hc{height:54.565333pt;}
.h5{height:75.552000pt;}
.ha{height:86.304000pt;}
.h4{height:98.266667pt;}
.hb{height:129.957043pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2{left:-15.133467pt;}
.x0{left:0.000000pt;}
.x5{left:37.795200pt;}
.x1{left:46.788800pt;}
.x3{left:74.139200pt;}
.x4{left:75.590533pt;}
.x19{left:86.929200pt;}
.x30{left:95.244133pt;}
.x6{left:97.511733pt;}
.x7{left:103.694267pt;}
.x22{left:112.182800pt;}
.x9{left:113.385733pt;}
.x8{left:118.812400pt;}
.x24{left:140.332000pt;}
.x23{left:148.166400pt;}
.x11{left:153.070800pt;}
.x12{left:155.699200pt;}
.x28{left:162.343733pt;}
.x13{left:164.409467pt;}
.x1e{left:167.997333pt;}
.x29{left:171.968533pt;}
.x2a{left:179.133467pt;}
.x1d{left:183.616933pt;}
.x2b{left:200.452933pt;}
.x10{left:208.542533pt;}
.x1f{left:215.744000pt;}
.x31{left:220.818933pt;}
.xd{left:365.984000pt;}
.x1b{left:369.416533pt;}
.x1c{left:371.660800pt;}
.x26{left:374.374267pt;}
.xc{left:377.322533pt;}
.x27{left:383.999067pt;}
.x1a{left:397.275333pt;}
.xe{left:399.854800pt;}
.xf{left:427.579467pt;}
.x17{left:442.581733pt;}
.x21{left:452.455600pt;}
.x18{left:453.920267pt;}
.x15{left:456.642800pt;}
.x16{left:461.439067pt;}
.x14{left:466.535333pt;}
.x20{left:486.921733pt;}
.x2e{left:497.495067pt;}
.x2f{left:523.113200pt;}
.x25{left:653.858267pt;}
.x2d{left:655.118133pt;}
.xb{left:686.929067pt;}
.x2c{left:742.508400pt;}
.xa{left:749.207067pt;}
.x32{left:820.142133pt;}
}




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