
    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_312b23f1f9ec914ff96edbdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_fe3696074f548a14ec8efb28.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_f4a38d2dccbe2d05fd4a9811.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_73df21af109b9068fbbfeb65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_18c8f2d2b6ea7815b520294c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_69b84cea74a175d64123530d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_66cad0283b9316d4874a1c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_adf59cdf397df93cf7295445.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_2e02f59d2e0ccc80560d4933.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.v2{vertical-align:21.600000px;}
.lsf{letter-spacing:-1.944000px;}
.ls10{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.422000px;}
.lse{letter-spacing:-0.942000px;}
.ls17{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.015600px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.013200px;}
.ls8{letter-spacing:0.015840px;}
.lsb{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.020400px;}
.ls5{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.250800px;}
.ls2{letter-spacing:0.423602px;}
.ls18{letter-spacing:0.449400px;}
.lsa{letter-spacing:0.466800px;}
.ls13{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.840000px;}
.ls3{letter-spacing:3.600000px;}
.ls1{letter-spacing:9.360000px;}
.ls7{letter-spacing:18.360000px;}
.ls1b{letter-spacing:35.749440px;}
.ls1a{letter-spacing:59.345280px;}
.ls19{letter-spacing:63.826560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-66.240000px;}
.ws8{word-spacing:-60.480000px;}
.ws6{word-spacing:-29.880000px;}
.ws14{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.543602px;}
.ws7{word-spacing:-15.140400px;}
.ws5{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.633400px;}
.wsf{word-spacing:-14.310000px;}
.wsd{word-spacing:-13.698000px;}
.wse{word-spacing:-13.680000px;}
.ws3{word-spacing:-12.738000px;}
.ws10{word-spacing:-12.600000px;}
.ws12{word-spacing:-12.130800px;}
.ws1{word-spacing:-11.880000px;}
.ws11{word-spacing:-11.864400px;}
.ws13{word-spacing:-11.160000px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.733200px;}
.ws15{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws18{word-spacing:0.000000px;}
.ws9{word-spacing:29.772960px;}
.ws4{word-spacing:29.773080px;}
.ws16{word-spacing:29.892840px;}
.ws17{word-spacing:29.913120px;}
._5{margin-left:-8.628601px;}
._c{margin-left:-7.318076px;}
._3{margin-left:-6.077279px;}
._8{margin-left:-4.651200px;}
._2{margin-left:-3.579840px;}
._e{margin-left:-2.531910px;}
._0{margin-left:-1.451399px;}
._1{width:1.621678px;}
._6{width:3.601947px;}
._14{width:4.925854px;}
._d{width:6.472815px;}
._b{width:8.115715px;}
._a{width:9.761760px;}
._1b{width:10.765198px;}
._10{width:12.340437px;}
._f{width:13.844402px;}
._27{width:15.447247px;}
._11{width:16.954318px;}
._15{width:18.196848px;}
._12{width:19.607399px;}
._13{width:21.662344px;}
._16{width:22.749941px;}
._26{width:24.904109px;}
._2a{width:26.159407px;}
._21{width:27.881280px;}
._22{width:28.981563px;}
._2b{width:30.147621px;}
._1e{width:34.611784px;}
._1c{width:35.924999px;}
._1d{width:37.005510px;}
._29{width:38.313421px;}
._28{width:39.346560px;}
._7{width:41.232675px;}
._9{width:43.306962px;}
._19{width:52.526836px;}
._17{width:53.959442px;}
._18{width:55.190568px;}
._1a{width:67.176121px;}
._23{width:84.816000px;}
._25{width:89.626262px;}
._24{width:91.324679px;}
._1f{width:103.057799px;}
._20{width:113.218197px;}
._4{width:523.878000px;}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs5{font-size:57.679368px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:63.750880px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs7{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:0.395970px;}
.y4{bottom:0.396000px;}
.yb{bottom:2.880000px;}
.y8{bottom:13.356000px;}
.y7{bottom:15.120000px;}
.y7c{bottom:15.120030px;}
.ya{bottom:16.560000px;}
.y3{bottom:19.116000px;}
.y6{bottom:28.800000px;}
.y7b{bottom:28.800030px;}
.y9{bottom:30.240000px;}
.y5{bottom:42.840000px;}
.y7a{bottom:42.840030px;}
.y76{bottom:81.756000px;}
.yb8{bottom:91.116000px;}
.y41{bottom:93.636000px;}
.y75{bottom:99.756000px;}
.yb7{bottom:104.796000px;}
.y40{bottom:107.676000px;}
.y74{bottom:118.116000px;}
.yb6{bottom:118.476000px;}
.y3f{bottom:121.356000px;}
.yb5{bottom:132.552000px;}
.y73{bottom:136.152000px;}
.yb4{bottom:146.232000px;}
.y3e{bottom:149.112000px;}
.y72{bottom:154.155000px;}
.yb3{bottom:159.915000px;}
.y3d{bottom:162.795000px;}
.y71{bottom:172.515000px;}
.yb2{bottom:173.955000px;}
.y3c{bottom:176.475000px;}
.yb1{bottom:187.635000px;}
.y70{bottom:190.515000px;}
.y3b{bottom:190.875000px;}
.yb0{bottom:201.315000px;}
.y3a{bottom:207.795000px;}
.y6f{bottom:208.515000px;}
.yaf{bottom:215.355000px;}
.y39{bottom:221.835000px;}
.y6e{bottom:226.875000px;}
.yae{bottom:229.035000px;}
.y38{bottom:237.315000px;}
.yad{bottom:242.715000px;}
.y6d{bottom:244.875000px;}
.y37{bottom:252.795000px;}
.yac{bottom:256.755000px;}
.y6c{bottom:262.875000px;}
.y36{bottom:268.305000px;}
.yab{bottom:270.465000px;}
.y6b{bottom:280.905000px;}
.yaa{bottom:284.145000px;}
.ya9{bottom:298.185000px;}
.y6a{bottom:299.265000px;}
.y35{bottom:307.905000px;}
.ya8{bottom:311.865000px;}
.y69{bottom:317.265000px;}
.ya7{bottom:325.545000px;}
.y34{bottom:325.905000px;}
.y68{bottom:335.265000px;}
.y33{bottom:343.905000px;}
.ya6{bottom:348.945000px;}
.y67{bottom:361.545000px;}
.y32{bottom:362.265000px;}
.y31{bottom:380.265000px;}
.ya5{bottom:383.505000px;}
.ya4{bottom:397.545000px;}
.y66{bottom:397.905000px;}
.y30{bottom:398.265000px;}
.ya3{bottom:411.270000px;}
.y65{bottom:415.950000px;}
.y2f{bottom:416.310000px;}
.ya2{bottom:424.950000px;}
.y64{bottom:433.950000px;}
.y2e{bottom:434.670000px;}
.ya1{bottom:438.990000px;}
.y63{bottom:452.310000px;}
.y2d{bottom:452.670000px;}
.y62{bottom:470.310000px;}
.y2c{bottom:470.670000px;}
.ya0{bottom:476.070000px;}
.y61{bottom:488.310000px;}
.y2b{bottom:489.030000px;}
.y60{bottom:506.310000px;}
.y2a{bottom:507.030000px;}
.y9f{bottom:512.070000px;}
.y5f{bottom:524.670000px;}
.y29{bottom:525.030000px;}
.y9e{bottom:530.070000px;}
.y5e{bottom:542.700000px;}
.y28{bottom:543.420000px;}
.y9d{bottom:549.180000px;}
.y5d{bottom:560.700000px;}
.y27{bottom:561.420000px;}
.y9c{bottom:567.540000px;}
.y5c{bottom:579.060000px;}
.y26{bottom:579.420000px;}
.y9b{bottom:585.540000px;}
.y5b{bottom:597.060000px;}
.y25{bottom:598.140000px;}
.y9a{bottom:603.540000px;}
.y5a{bottom:615.060000px;}
.y24{bottom:616.140000px;}
.y99{bottom:621.540000px;}
.y59{bottom:633.780000px;}
.y23{bottom:634.500000px;}
.y98{bottom:639.900000px;}
.y58{bottom:651.780000px;}
.y97{bottom:657.900000px;}
.y22{bottom:660.780000px;}
.y57{bottom:669.810000px;}
.y96{bottom:675.930000px;}
.y56{bottom:688.170000px;}
.y95{bottom:694.290000px;}
.y21{bottom:696.810000px;}
.y55{bottom:706.170000px;}
.y94{bottom:712.290000px;}
.y20{bottom:715.170000px;}
.y54{bottom:724.530000px;}
.y93{bottom:730.290000px;}
.y1f{bottom:733.170000px;}
.y53{bottom:742.530000px;}
.y92{bottom:748.650000px;}
.y1e{bottom:751.170000px;}
.y91{bottom:766.650000px;}
.y52{bottom:768.810000px;}
.y1d{bottom:769.530000px;}
.y90{bottom:784.650000px;}
.y1c{bottom:787.530000px;}
.y8f{bottom:803.055000px;}
.y51{bottom:805.215000px;}
.y1b{bottom:805.575000px;}
.y8e{bottom:821.055000px;}
.y50{bottom:823.215000px;}
.y1a{bottom:823.575000px;}
.y4f{bottom:841.215000px;}
.y19{bottom:842.295000px;}
.y8d{bottom:847.335000px;}
.y4e{bottom:859.575000px;}
.y18{bottom:860.295000px;}
.y4d{bottom:877.575000px;}
.y17{bottom:878.295000px;}
.y8c{bottom:883.335000px;}
.y4c{bottom:895.575000px;}
.y16{bottom:896.655000px;}
.y8b{bottom:901.335000px;}
.y4b{bottom:913.935000px;}
.y15{bottom:918.615000px;}
.y8a{bottom:919.695000px;}
.y4a{bottom:931.935000px;}
.yc8{bottom:932.295000px;}
.y89{bottom:937.725000px;}
.y49{bottom:949.965000px;}
.yc7{bottom:951.765000px;}
.y88{bottom:955.725000px;}
.y14{bottom:958.965000px;}
.yc6{bottom:965.445000px;}
.y48{bottom:967.965000px;}
.y87{bottom:974.085000px;}
.yc5{bottom:979.485000px;}
.y47{bottom:986.325000px;}
.y86{bottom:992.085000px;}
.yc4{bottom:993.165000px;}
.y13{bottom:993.885000px;}
.y46{bottom:1004.325000px;}
.yc3{bottom:1006.845000px;}
.y12{bottom:1009.365000px;}
.y85{bottom:1010.085000px;}
.yc2{bottom:1020.885000px;}
.y45{bottom:1022.325000px;}
.y84{bottom:1028.445000px;}
.y11{bottom:1030.965000px;}
.yc1{bottom:1035.285000px;}
.y44{bottom:1040.685000px;}
.y10{bottom:1046.445000px;}
.yc0{bottom:1052.565000px;}
.y43{bottom:1058.685000px;}
.yf{bottom:1062.285000px;}
.y83{bottom:1064.445000px;}
.ybf{bottom:1069.890000px;}
.y42{bottom:1076.730000px;}
.ye{bottom:1077.810000px;}
.y82{bottom:1082.490000px;}
.ybe{bottom:1087.170000px;}
.y81{bottom:1100.850000px;}
.ybd{bottom:1104.090000px;}
.yd{bottom:1112.370000px;}
.y80{bottom:1118.850000px;}
.ybc{bottom:1121.370000px;}
.y7f{bottom:1136.850000px;}
.ybb{bottom:1138.650000px;}
.yc{bottom:1153.770000px;}
.y7e{bottom:1155.210000px;}
.yba{bottom:1155.930000px;}
.yb9{bottom:1169.970000px;}
.y7d{bottom:1173.210000px;}
.y78{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y77{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h14{height:33.180469px;}
.h13{height:33.528516px;}
.h19{height:34.595859px;}
.h5{height:36.150469px;}
.h12{height:38.608594px;}
.h9{height:41.227031px;}
.h6{height:41.400000px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h16{height:44.798906px;}
.h11{height:45.566719px;}
.hb{height:45.843047px;}
.hd{height:46.009688px;}
.h8{height:46.736719px;}
.ha{height:48.610639px;}
.h15{height:48.747656px;}
.h17{height:49.065469px;}
.h1a{height:50.273438px;}
.h10{height:50.892891px;}
.he{height:50.970938px;}
.hf{height:53.727548px;}
.h4{height:54.000000px;}
.h18{height:65.884219px;}
.hc{height:84.329297px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:186.555000px;}
.w2{width:274.785000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:10.800000px;}
.xc{left:70.236000px;}
.x13{left:73.836000px;}
.x4{left:77.436000px;}
.x9{left:81.036000px;}
.x14{left:85.356000px;}
.x1d{left:91.475987px;}
.xf{left:105.516000px;}
.x1c{left:112.715987px;}
.x10{left:114.516000px;}
.x7{left:128.916000px;}
.x1b{left:149.471987px;}
.x1e{left:153.434987px;}
.xe{left:169.995000px;}
.xd{left:177.915000px;}
.x3{left:283.785000px;}
.x1a{left:290.624987px;}
.x8{left:373.830000px;}
.x11{left:408.390000px;}
.x12{left:417.780000px;}
.xa{left:427.500000px;}
.xb{left:435.780000px;}
.x2{left:444.780000px;}
.x19{left:446.579987px;}
.x16{left:457.380000px;}
.x15{left:468.180000px;}
.x5{left:478.260000px;}
.x18{left:486.540000px;}
.x17{left:495.540000px;}
.x1{left:500.940000px;}
.x20{left:639.974987px;}
.x1f{left:818.969987px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.v2{vertical-align:19.200000pt;}
.lsf{letter-spacing:-1.728000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.264000pt;}
.lse{letter-spacing:-0.837333pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.013867pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.011733pt;}
.ls8{letter-spacing:0.014080pt;}
.lsb{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.018133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.222933pt;}
.ls2{letter-spacing:0.376535pt;}
.ls18{letter-spacing:0.399467pt;}
.lsa{letter-spacing:0.414933pt;}
.ls13{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls3{letter-spacing:3.200000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls7{letter-spacing:16.320000pt;}
.ls1b{letter-spacing:31.777280pt;}
.ls1a{letter-spacing:52.751360pt;}
.ls19{letter-spacing:56.734720pt;}
.ws19{word-spacing:-58.880000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws6{word-spacing:-26.560000pt;}
.ws14{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.816535pt;}
.ws7{word-spacing:-13.458133pt;}
.ws5{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.007467pt;}
.wsf{word-spacing:-12.720000pt;}
.wsd{word-spacing:-12.176000pt;}
.wse{word-spacing:-12.160000pt;}
.ws3{word-spacing:-11.322667pt;}
.ws10{word-spacing:-11.200000pt;}
.ws12{word-spacing:-10.782933pt;}
.ws1{word-spacing:-10.560000pt;}
.ws11{word-spacing:-10.546133pt;}
.ws13{word-spacing:-9.920000pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.651733pt;}
.ws15{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws18{word-spacing:0.000000pt;}
.ws9{word-spacing:26.464853pt;}
.ws4{word-spacing:26.464960pt;}
.ws16{word-spacing:26.571413pt;}
.ws17{word-spacing:26.589440pt;}
._5{margin-left:-7.669868pt;}
._c{margin-left:-6.504957pt;}
._3{margin-left:-5.402026pt;}
._8{margin-left:-4.134400pt;}
._2{margin-left:-3.182080pt;}
._e{margin-left:-2.250586pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.441492pt;}
._6{width:3.201731pt;}
._14{width:4.378537pt;}
._d{width:5.753614pt;}
._b{width:7.213969pt;}
._a{width:8.677120pt;}
._1b{width:9.569065pt;}
._10{width:10.969277pt;}
._f{width:12.306135pt;}
._27{width:13.730886pt;}
._11{width:15.070505pt;}
._15{width:16.174976pt;}
._12{width:17.428799pt;}
._13{width:19.255417pt;}
._16{width:20.222170pt;}
._26{width:22.136986pt;}
._2a{width:23.252806pt;}
._21{width:24.783360pt;}
._22{width:25.761389pt;}
._2b{width:26.797885pt;}
._1e{width:30.766031pt;}
._1c{width:31.933332pt;}
._1d{width:32.893786pt;}
._29{width:34.056375pt;}
._28{width:34.974720pt;}
._7{width:36.651267pt;}
._9{width:38.495078pt;}
._19{width:46.690521pt;}
._17{width:47.963948pt;}
._18{width:49.058283pt;}
._1a{width:59.712108pt;}
._23{width:75.392000pt;}
._25{width:79.667789pt;}
._24{width:81.177492pt;}
._1f{width:91.606932pt;}
._20{width:100.638397pt;}
._4{width:465.669333pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs5{font-size:51.270549pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:56.667449pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs7{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:0.351973pt;}
.y4{bottom:0.352000pt;}
.yb{bottom:2.560000pt;}
.y8{bottom:11.872000pt;}
.y7{bottom:13.440000pt;}
.y7c{bottom:13.440027pt;}
.ya{bottom:14.720000pt;}
.y3{bottom:16.992000pt;}
.y6{bottom:25.600000pt;}
.y7b{bottom:25.600027pt;}
.y9{bottom:26.880000pt;}
.y5{bottom:38.080000pt;}
.y7a{bottom:38.080027pt;}
.y76{bottom:72.672000pt;}
.yb8{bottom:80.992000pt;}
.y41{bottom:83.232000pt;}
.y75{bottom:88.672000pt;}
.yb7{bottom:93.152000pt;}
.y40{bottom:95.712000pt;}
.y74{bottom:104.992000pt;}
.yb6{bottom:105.312000pt;}
.y3f{bottom:107.872000pt;}
.yb5{bottom:117.824000pt;}
.y73{bottom:121.024000pt;}
.yb4{bottom:129.984000pt;}
.y3e{bottom:132.544000pt;}
.y72{bottom:137.026667pt;}
.yb3{bottom:142.146667pt;}
.y3d{bottom:144.706667pt;}
.y71{bottom:153.346667pt;}
.yb2{bottom:154.626667pt;}
.y3c{bottom:156.866667pt;}
.yb1{bottom:166.786667pt;}
.y70{bottom:169.346667pt;}
.y3b{bottom:169.666667pt;}
.yb0{bottom:178.946667pt;}
.y3a{bottom:184.706667pt;}
.y6f{bottom:185.346667pt;}
.yaf{bottom:191.426667pt;}
.y39{bottom:197.186667pt;}
.y6e{bottom:201.666667pt;}
.yae{bottom:203.586667pt;}
.y38{bottom:210.946667pt;}
.yad{bottom:215.746667pt;}
.y6d{bottom:217.666667pt;}
.y37{bottom:224.706667pt;}
.yac{bottom:228.226667pt;}
.y6c{bottom:233.666667pt;}
.y36{bottom:238.493333pt;}
.yab{bottom:240.413333pt;}
.y6b{bottom:249.693333pt;}
.yaa{bottom:252.573333pt;}
.ya9{bottom:265.053333pt;}
.y6a{bottom:266.013333pt;}
.y35{bottom:273.693333pt;}
.ya8{bottom:277.213333pt;}
.y69{bottom:282.013333pt;}
.ya7{bottom:289.373333pt;}
.y34{bottom:289.693333pt;}
.y68{bottom:298.013333pt;}
.y33{bottom:305.693333pt;}
.ya6{bottom:310.173333pt;}
.y67{bottom:321.373333pt;}
.y32{bottom:322.013333pt;}
.y31{bottom:338.013333pt;}
.ya5{bottom:340.893333pt;}
.ya4{bottom:353.373333pt;}
.y66{bottom:353.693333pt;}
.y30{bottom:354.013333pt;}
.ya3{bottom:365.573333pt;}
.y65{bottom:369.733333pt;}
.y2f{bottom:370.053333pt;}
.ya2{bottom:377.733333pt;}
.y64{bottom:385.733333pt;}
.y2e{bottom:386.373333pt;}
.ya1{bottom:390.213333pt;}
.y63{bottom:402.053333pt;}
.y2d{bottom:402.373333pt;}
.y62{bottom:418.053333pt;}
.y2c{bottom:418.373333pt;}
.ya0{bottom:423.173333pt;}
.y61{bottom:434.053333pt;}
.y2b{bottom:434.693333pt;}
.y60{bottom:450.053333pt;}
.y2a{bottom:450.693333pt;}
.y9f{bottom:455.173333pt;}
.y5f{bottom:466.373333pt;}
.y29{bottom:466.693333pt;}
.y9e{bottom:471.173333pt;}
.y5e{bottom:482.400000pt;}
.y28{bottom:483.040000pt;}
.y9d{bottom:488.160000pt;}
.y5d{bottom:498.400000pt;}
.y27{bottom:499.040000pt;}
.y9c{bottom:504.480000pt;}
.y5c{bottom:514.720000pt;}
.y26{bottom:515.040000pt;}
.y9b{bottom:520.480000pt;}
.y5b{bottom:530.720000pt;}
.y25{bottom:531.680000pt;}
.y9a{bottom:536.480000pt;}
.y5a{bottom:546.720000pt;}
.y24{bottom:547.680000pt;}
.y99{bottom:552.480000pt;}
.y59{bottom:563.360000pt;}
.y23{bottom:564.000000pt;}
.y98{bottom:568.800000pt;}
.y58{bottom:579.360000pt;}
.y97{bottom:584.800000pt;}
.y22{bottom:587.360000pt;}
.y57{bottom:595.386667pt;}
.y96{bottom:600.826667pt;}
.y56{bottom:611.706667pt;}
.y95{bottom:617.146667pt;}
.y21{bottom:619.386667pt;}
.y55{bottom:627.706667pt;}
.y94{bottom:633.146667pt;}
.y20{bottom:635.706667pt;}
.y54{bottom:644.026667pt;}
.y93{bottom:649.146667pt;}
.y1f{bottom:651.706667pt;}
.y53{bottom:660.026667pt;}
.y92{bottom:665.466667pt;}
.y1e{bottom:667.706667pt;}
.y91{bottom:681.466667pt;}
.y52{bottom:683.386667pt;}
.y1d{bottom:684.026667pt;}
.y90{bottom:697.466667pt;}
.y1c{bottom:700.026667pt;}
.y8f{bottom:713.826667pt;}
.y51{bottom:715.746667pt;}
.y1b{bottom:716.066667pt;}
.y8e{bottom:729.826667pt;}
.y50{bottom:731.746667pt;}
.y1a{bottom:732.066667pt;}
.y4f{bottom:747.746667pt;}
.y19{bottom:748.706667pt;}
.y8d{bottom:753.186667pt;}
.y4e{bottom:764.066667pt;}
.y18{bottom:764.706667pt;}
.y4d{bottom:780.066667pt;}
.y17{bottom:780.706667pt;}
.y8c{bottom:785.186667pt;}
.y4c{bottom:796.066667pt;}
.y16{bottom:797.026667pt;}
.y8b{bottom:801.186667pt;}
.y4b{bottom:812.386667pt;}
.y15{bottom:816.546667pt;}
.y8a{bottom:817.506667pt;}
.y4a{bottom:828.386667pt;}
.yc8{bottom:828.706667pt;}
.y89{bottom:833.533333pt;}
.y49{bottom:844.413333pt;}
.yc7{bottom:846.013333pt;}
.y88{bottom:849.533333pt;}
.y14{bottom:852.413333pt;}
.yc6{bottom:858.173333pt;}
.y48{bottom:860.413333pt;}
.y87{bottom:865.853333pt;}
.yc5{bottom:870.653333pt;}
.y47{bottom:876.733333pt;}
.y86{bottom:881.853333pt;}
.yc4{bottom:882.813333pt;}
.y13{bottom:883.453333pt;}
.y46{bottom:892.733333pt;}
.yc3{bottom:894.973333pt;}
.y12{bottom:897.213333pt;}
.y85{bottom:897.853333pt;}
.yc2{bottom:907.453333pt;}
.y45{bottom:908.733333pt;}
.y84{bottom:914.173333pt;}
.y11{bottom:916.413333pt;}
.yc1{bottom:920.253333pt;}
.y44{bottom:925.053333pt;}
.y10{bottom:930.173333pt;}
.yc0{bottom:935.613333pt;}
.y43{bottom:941.053333pt;}
.yf{bottom:944.253333pt;}
.y83{bottom:946.173333pt;}
.ybf{bottom:951.013333pt;}
.y42{bottom:957.093333pt;}
.ye{bottom:958.053333pt;}
.y82{bottom:962.213333pt;}
.ybe{bottom:966.373333pt;}
.y81{bottom:978.533333pt;}
.ybd{bottom:981.413333pt;}
.yd{bottom:988.773333pt;}
.y80{bottom:994.533333pt;}
.ybc{bottom:996.773333pt;}
.y7f{bottom:1010.533333pt;}
.ybb{bottom:1012.133333pt;}
.yc{bottom:1025.573333pt;}
.y7e{bottom:1026.853333pt;}
.yba{bottom:1027.493333pt;}
.yb9{bottom:1039.973333pt;}
.y7d{bottom:1042.853333pt;}
.y78{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y77{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h14{height:29.493750pt;}
.h13{height:29.803125pt;}
.h19{height:30.751875pt;}
.h5{height:32.133750pt;}
.h12{height:34.318750pt;}
.h9{height:36.646250pt;}
.h6{height:36.800000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h16{height:39.821250pt;}
.h11{height:40.503750pt;}
.hb{height:40.749375pt;}
.hd{height:40.897500pt;}
.h8{height:41.543750pt;}
.ha{height:43.209457pt;}
.h15{height:43.331250pt;}
.h17{height:43.613750pt;}
.h1a{height:44.687500pt;}
.h10{height:45.238125pt;}
.he{height:45.307500pt;}
.hf{height:47.757821pt;}
.h4{height:48.000000pt;}
.h18{height:58.563750pt;}
.hc{height:74.959375pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:165.826667pt;}
.w2{width:244.253333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:9.600000pt;}
.xc{left:62.432000pt;}
.x13{left:65.632000pt;}
.x4{left:68.832000pt;}
.x9{left:72.032000pt;}
.x14{left:75.872000pt;}
.x1d{left:81.311988pt;}
.xf{left:93.792000pt;}
.x1c{left:100.191988pt;}
.x10{left:101.792000pt;}
.x7{left:114.592000pt;}
.x1b{left:132.863988pt;}
.x1e{left:136.386655pt;}
.xe{left:151.106667pt;}
.xd{left:158.146667pt;}
.x3{left:252.253333pt;}
.x1a{left:258.333322pt;}
.x8{left:332.293333pt;}
.x11{left:363.013333pt;}
.x12{left:371.360000pt;}
.xa{left:380.000000pt;}
.xb{left:387.360000pt;}
.x2{left:395.360000pt;}
.x19{left:396.959988pt;}
.x16{left:406.560000pt;}
.x15{left:416.160000pt;}
.x5{left:425.120000pt;}
.x18{left:432.480000pt;}
.x17{left:440.480000pt;}
.x1{left:445.280000pt;}
.x20{left:568.866655pt;}
.x1f{left:727.973322pt;}
}




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