
    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_9a6c09b14cd535af7cdc3ab2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_740d19e68fb4d33a245b1d64.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_175de96119f4b28b0645be07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_bdc35f80298a4415675168a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_df6ecce086b8163888c9f2cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957031;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_622687e2cdbac6ae36b77121.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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_10bc37c77e9afa3dc5a99396.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_cc85b1b241fc01c977a9e321.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.197108,0.000000,-0.065696,0.241214,0,0);-ms-transform:matrix(0.197108,0.000000,-0.065696,0.241214,0,0);-webkit-transform:matrix(0.197108,0.000000,-0.065696,0.241214,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);}
.m1{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);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v2{vertical-align:14.400000px;}
.lsb{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.463800px;}
.ls2{letter-spacing:-0.382800px;}
.ls8{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.ls5{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.498400px;}
.ls1b{letter-spacing:3.600000px;}
.ls15{letter-spacing:3.909600px;}
.ls10{letter-spacing:3.938400px;}
.ls1a{letter-spacing:4.058400px;}
.ls7{letter-spacing:10.800000px;}
.ls19{letter-spacing:12.096000px;}
.ls14{letter-spacing:12.549600px;}
.ls18{letter-spacing:15.458400px;}
.ls11{letter-spacing:19.749600px;}
.lsa{letter-spacing:20.880000px;}
.lsf{letter-spacing:21.024000px;}
.ls12{letter-spacing:21.189600px;}
.ls6{letter-spacing:22.320000px;}
.lse{letter-spacing:23.904000px;}
.ls3{letter-spacing:33.276000px;}
.ls1c{letter-spacing:176.556000px;}
.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;}
}
.wsf{word-spacing:-27.936000px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.488000px;}
.ws9{word-spacing:-16.344000px;}
.wsd{word-spacing:-16.200000px;}
.wsb{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.983920px;}
.ws11{word-spacing:-11.880000px;}
.ws0{word-spacing:-10.739520px;}
.wsa{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.384000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.936000px;}
.wse{word-spacing:1.056000px;}
.ws7{word-spacing:3.816000px;}
._14{margin-left:-16.560000px;}
._2b{margin-left:-7.223520px;}
._28{margin-left:-5.523840px;}
._c{margin-left:-4.360320px;}
._b{margin-left:-3.127680px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._6{width:4.680000px;}
._5{width:6.264000px;}
._7{width:7.364640px;}
._a{width:8.496000px;}
._f{width:10.261440px;}
._20{width:11.545920px;}
._19{width:12.551040px;}
._17{width:13.576320px;}
._1e{width:14.952960px;}
._1a{width:16.200000px;}
._12{width:19.080000px;}
._13{width:20.352960px;}
._1f{width:22.011840px;}
._1b{width:23.328000px;}
._10{width:24.912000px;}
._11{width:26.032320px;}
._e{width:27.740160px;}
._d{width:28.800000px;}
._8{width:30.384000px;}
._9{width:31.455360px;}
._18{width:32.503680px;}
._23{width:34.744320px;}
._24{width:35.784000px;}
._1c{width:37.368000px;}
._1d{width:39.024000px;}
._2c{width:41.451840px;}
._21{width:44.352000px;}
._22{width:45.486720px;}
._27{width:47.232000px;}
._25{width:49.464000px;}
._26{width:50.552640px;}
._2a{width:59.007840px;}
._29{width:60.326400px;}
._2e{width:65.304000px;}
._15{width:193.836000px;}
._16{width:195.120000px;}
._2d{width:844.140000px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:47.520000px;}
.fs6{font-size:50.400000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs7{font-size:91.106440px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y2d{bottom:3.600000px;}
.y6d{bottom:5.521372px;}
.y74{bottom:14.040000px;}
.y78{bottom:14.070000px;}
.y7f{bottom:14.085000px;}
.y87{bottom:14.400000px;}
.y84{bottom:14.445000px;}
.ya{bottom:17.316000px;}
.y8{bottom:17.676000px;}
.yb{bottom:30.600000px;}
.y7{bottom:32.436000px;}
.y7a{bottom:45.000000px;}
.y8a{bottom:45.030000px;}
.y7d{bottom:45.045000px;}
.y86{bottom:45.360000px;}
.y76{bottom:45.390000px;}
.y6{bottom:57.240000px;}
.y2c{bottom:91.476000px;}
.y5{bottom:118.836000px;}
.y4d{bottom:146.196000px;}
.ya4{bottom:146.556000px;}
.y2a{bottom:147.996000px;}
.yc2{bottom:155.190000px;}
.y62{bottom:156.270000px;}
.y7c{bottom:163.470000px;}
.y4c{bottom:177.510000px;}
.ya3{bottom:177.870000px;}
.y29{bottom:179.310000px;}
.y64{bottom:183.630000px;}
.yc1{bottom:186.510000px;}
.y63{bottom:187.230000px;}
.y61{bottom:187.590000px;}
.y7e{bottom:195.150000px;}
.y4b{bottom:208.515000px;}
.ya2{bottom:208.875000px;}
.yc0{bottom:217.515000px;}
.y60{bottom:218.595000px;}
.y28{bottom:219.315000px;}
.y79{bottom:227.235000px;}
.y4a{bottom:239.475000px;}
.ya1{bottom:239.835000px;}
.ybf{bottom:248.475000px;}
.y5f{bottom:249.555000px;}
.y27{bottom:250.275000px;}
.y7b{bottom:258.915000px;}
.y49{bottom:270.435000px;}
.ya0{bottom:270.795000px;}
.ybe{bottom:279.435000px;}
.y5e{bottom:280.515000px;}
.y75{bottom:290.595000px;}
.y26{bottom:299.235000px;}
.y48{bottom:301.395000px;}
.y9f{bottom:302.115000px;}
.ybd{bottom:310.395000px;}
.y5d{bottom:311.835000px;}
.y77{bottom:322.635000px;}
.y25{bottom:330.225000px;}
.y47{bottom:332.745000px;}
.y9e{bottom:333.105000px;}
.ybc{bottom:341.745000px;}
.y5c{bottom:342.825000px;}
.y73{bottom:354.345000px;}
.y24{bottom:361.545000px;}
.y46{bottom:363.705000px;}
.y9d{bottom:364.065000px;}
.ybb{bottom:372.705000px;}
.y5b{bottom:373.785000px;}
.y23{bottom:392.505000px;}
.y45{bottom:394.665000px;}
.y9c{bottom:395.025000px;}
.y72{bottom:400.065000px;}
.yba{bottom:403.665000px;}
.y5a{bottom:404.745000px;}
.y22{bottom:423.465000px;}
.y44{bottom:425.625000px;}
.y9b{bottom:426.345000px;}
.y71{bottom:431.385000px;}
.yb9{bottom:434.625000px;}
.y59{bottom:436.065000px;}
.y21{bottom:454.470000px;}
.y43{bottom:456.990000px;}
.y9a{bottom:457.350000px;}
.y70{bottom:462.390000px;}
.yb8{bottom:465.990000px;}
.y58{bottom:467.070000px;}
.y20{bottom:485.790000px;}
.y42{bottom:487.950000px;}
.y99{bottom:488.310000px;}
.y6f{bottom:493.350000px;}
.yb7{bottom:496.950000px;}
.y57{bottom:498.030000px;}
.y1f{bottom:516.750000px;}
.y41{bottom:518.910000px;}
.y98{bottom:519.270000px;}
.y6e{bottom:523.230000px;}
.y6b{bottom:524.670000px;}
.y6c{bottom:524.699959px;}
.yb6{bottom:527.910000px;}
.y56{bottom:528.990000px;}
.y1e{bottom:547.710000px;}
.y40{bottom:549.870000px;}
.y97{bottom:550.230000px;}
.y6a{bottom:558.870000px;}
.y55{bottom:560.310000px;}
.y1d{bottom:578.700000px;}
.y3f{bottom:581.220000px;}
.y96{bottom:581.580000px;}
.y69{bottom:589.860000px;}
.yb5{bottom:590.220000px;}
.y54{bottom:591.300000px;}
.y1c{bottom:610.020000px;}
.y3e{bottom:612.180000px;}
.y95{bottom:612.540000px;}
.y68{bottom:621.180000px;}
.y53{bottom:622.260000px;}
.y1b{bottom:640.980000px;}
.y3d{bottom:643.140000px;}
.y94{bottom:643.500000px;}
.yb4{bottom:652.140000px;}
.y67{bottom:652.500000px;}
.y52{bottom:653.220000px;}
.y1a{bottom:671.940000px;}
.y3c{bottom:674.100000px;}
.y93{bottom:674.460000px;}
.yb3{bottom:683.100000px;}
.y66{bottom:683.820000px;}
.y51{bottom:684.540000px;}
.y19{bottom:702.930000px;}
.y92{bottom:705.810000px;}
.y3b{bottom:714.450000px;}
.y65{bottom:715.170000px;}
.y50{bottom:715.530000px;}
.y18{bottom:734.250000px;}
.y91{bottom:736.770000px;}
.yb2{bottom:745.410000px;}
.y4f{bottom:746.490000px;}
.y90{bottom:754.410000px;}
.ya5{bottom:764.130000px;}
.y17{bottom:765.210000px;}
.y3a{bottom:765.930000px;}
.yb1{bottom:776.370000px;}
.y4e{bottom:777.450000px;}
.y8f{bottom:786.090000px;}
.y16{bottom:798.690000px;}
.yb0{bottom:807.330000px;}
.y39{bottom:808.410000px;}
.y8e{bottom:818.130000px;}
.y15{bottom:830.055000px;}
.yaf{bottom:838.695000px;}
.y38{bottom:839.775000px;}
.y8c{bottom:849.855000px;}
.y14{bottom:861.015000px;}
.yae{bottom:869.655000px;}
.y37{bottom:870.735000px;}
.y8d{bottom:881.535000px;}
.y13{bottom:891.975000px;}
.yad{bottom:900.615000px;}
.y36{bottom:901.695000px;}
.y89{bottom:913.575000px;}
.y12{bottom:922.935000px;}
.yac{bottom:931.575000px;}
.y35{bottom:932.655000px;}
.y8b{bottom:945.255000px;}
.y11{bottom:954.285000px;}
.yab{bottom:962.925000px;}
.y34{bottom:964.005000px;}
.y85{bottom:976.965000px;}
.y10{bottom:985.245000px;}
.yaa{bottom:993.885000px;}
.y33{bottom:994.965000px;}
.y88{bottom:1009.005000px;}
.yf{bottom:1018.725000px;}
.ya9{bottom:1024.845000px;}
.y32{bottom:1025.925000px;}
.y82{bottom:1040.685000px;}
.ye{bottom:1052.565000px;}
.ya8{bottom:1055.805000px;}
.y31{bottom:1056.885000px;}
.y83{bottom:1072.365000px;}
.yd{bottom:1083.570000px;}
.ya7{bottom:1087.170000px;}
.y30{bottom:1088.250000px;}
.y80{bottom:1104.450000px;}
.yc{bottom:1114.530000px;}
.ya6{bottom:1118.130000px;}
.y2f{bottom:1119.210000px;}
.y81{bottom:1136.130000px;}
.y4{bottom:1137.210000px;}
.y2e{bottom:1150.170000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y2b{bottom:1193.730000px;}
.hc{height:16.596000px;}
.hf{height:20.173848px;}
.h12{height:30.960000px;}
.h14{height:30.996000px;}
.h19{height:31.320000px;}
.h17{height:31.356000px;}
.h6{height:43.956000px;}
.h7{height:47.264766px;}
.h3{height:49.097812px;}
.h2{height:53.367188px;}
.h8{height:54.426094px;}
.h4{height:58.121719px;}
.hd{height:60.679688px;}
.hb{height:61.927031px;}
.h15{height:62.640000px;}
.h16{height:62.676000px;}
.h18{height:63.000000px;}
.h13{height:63.036000px;}
.h9{height:63.175781px;}
.h10{height:63.258476px;}
.h5{height:65.884219px;}
.h11{height:68.935781px;}
.ha{height:73.283906px;}
.he{height:77.575781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:15.150905px;}
.w4{width:39.636000px;}
.w9{width:244.185000px;}
.w6{width:332.790000px;}
.w5{width:347.910000px;}
.w8{width:424.620000px;}
.w3{width:641.055000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:1.906847px;}
.x17{left:5.040000px;}
.xd{left:8.640000px;}
.x7{left:10.485000px;}
.x12{left:105.155987px;}
.x1{left:106.235987px;}
.xa{left:108.035987px;}
.x11{left:132.191987px;}
.xf{left:133.271987px;}
.x5{left:144.429000px;}
.x10{left:159.194987px;}
.x1b{left:165.675000px;}
.x1f{left:171.435000px;}
.x19{left:174.675000px;}
.x1a{left:180.795000px;}
.x1d{left:183.675000px;}
.x20{left:186.555000px;}
.x1e{left:189.795000px;}
.x1c{left:198.795000px;}
.x21{left:212.115000px;}
.x22{left:234.840000px;}
.x2{left:241.664987px;}
.xc{left:263.984987px;}
.xb{left:303.944987px;}
.x4{left:433.259987px;}
.x9{left:446.579987px;}
.xe{left:454.140000px;}
.x18{left:531.930000px;}
.x8{left:534.449987px;}
.x13{left:644.654987px;}
.x14{left:676.604959px;}
.x16{left:691.844987px;}
.x3{left:696.524987px;}
.x6{left:747.285000px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v2{vertical-align:12.800000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls2{letter-spacing:-0.340267pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.ls5{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.220800pt;}
.ls1b{letter-spacing:3.200000pt;}
.ls15{letter-spacing:3.475200pt;}
.ls10{letter-spacing:3.500800pt;}
.ls1a{letter-spacing:3.607467pt;}
.ls7{letter-spacing:9.600000pt;}
.ls19{letter-spacing:10.752000pt;}
.ls14{letter-spacing:11.155200pt;}
.ls18{letter-spacing:13.740800pt;}
.ls11{letter-spacing:17.555200pt;}
.lsa{letter-spacing:18.560000pt;}
.lsf{letter-spacing:18.688000pt;}
.ls12{letter-spacing:18.835200pt;}
.ls6{letter-spacing:19.840000pt;}
.lse{letter-spacing:21.248000pt;}
.ls3{letter-spacing:29.578667pt;}
.ls1c{letter-spacing:156.938667pt;}
.wsf{word-spacing:-24.832000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws9{word-spacing:-14.528000pt;}
.wsd{word-spacing:-14.400000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.652373pt;}
.ws11{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.546240pt;}
.wsa{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.341333pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.832000pt;}
.wse{word-spacing:0.938667pt;}
.ws7{word-spacing:3.392000pt;}
._14{margin-left:-14.720000pt;}
._2b{margin-left:-6.420907pt;}
._28{margin-left:-4.910080pt;}
._c{margin-left:-3.875840pt;}
._b{margin-left:-2.780160pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._6{width:4.160000pt;}
._5{width:5.568000pt;}
._7{width:6.546347pt;}
._a{width:7.552000pt;}
._f{width:9.121280pt;}
._20{width:10.263040pt;}
._19{width:11.156480pt;}
._17{width:12.067840pt;}
._1e{width:13.291520pt;}
._1a{width:14.400000pt;}
._12{width:16.960000pt;}
._13{width:18.091520pt;}
._1f{width:19.566080pt;}
._1b{width:20.736000pt;}
._10{width:22.144000pt;}
._11{width:23.139840pt;}
._e{width:24.657920pt;}
._d{width:25.600000pt;}
._8{width:27.008000pt;}
._9{width:27.960320pt;}
._18{width:28.892160pt;}
._23{width:30.883840pt;}
._24{width:31.808000pt;}
._1c{width:33.216000pt;}
._1d{width:34.688000pt;}
._2c{width:36.846080pt;}
._21{width:39.424000pt;}
._22{width:40.432640pt;}
._27{width:41.984000pt;}
._25{width:43.968000pt;}
._26{width:44.935680pt;}
._2a{width:52.451413pt;}
._29{width:53.623467pt;}
._2e{width:58.048000pt;}
._15{width:172.298667pt;}
._16{width:173.440000pt;}
._2d{width:750.346667pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:44.800000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs7{font-size:80.983503pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y2d{bottom:3.200000pt;}
.y6d{bottom:4.907886pt;}
.y74{bottom:12.480000pt;}
.y78{bottom:12.506667pt;}
.y7f{bottom:12.520000pt;}
.y87{bottom:12.800000pt;}
.y84{bottom:12.840000pt;}
.ya{bottom:15.392000pt;}
.y8{bottom:15.712000pt;}
.yb{bottom:27.200000pt;}
.y7{bottom:28.832000pt;}
.y7a{bottom:40.000000pt;}
.y8a{bottom:40.026667pt;}
.y7d{bottom:40.040000pt;}
.y86{bottom:40.320000pt;}
.y76{bottom:40.346667pt;}
.y6{bottom:50.880000pt;}
.y2c{bottom:81.312000pt;}
.y5{bottom:105.632000pt;}
.y4d{bottom:129.952000pt;}
.ya4{bottom:130.272000pt;}
.y2a{bottom:131.552000pt;}
.yc2{bottom:137.946667pt;}
.y62{bottom:138.906667pt;}
.y7c{bottom:145.306667pt;}
.y4c{bottom:157.786667pt;}
.ya3{bottom:158.106667pt;}
.y29{bottom:159.386667pt;}
.y64{bottom:163.226667pt;}
.yc1{bottom:165.786667pt;}
.y63{bottom:166.426667pt;}
.y61{bottom:166.746667pt;}
.y7e{bottom:173.466667pt;}
.y4b{bottom:185.346667pt;}
.ya2{bottom:185.666667pt;}
.yc0{bottom:193.346667pt;}
.y60{bottom:194.306667pt;}
.y28{bottom:194.946667pt;}
.y79{bottom:201.986667pt;}
.y4a{bottom:212.866667pt;}
.ya1{bottom:213.186667pt;}
.ybf{bottom:220.866667pt;}
.y5f{bottom:221.826667pt;}
.y27{bottom:222.466667pt;}
.y7b{bottom:230.146667pt;}
.y49{bottom:240.386667pt;}
.ya0{bottom:240.706667pt;}
.ybe{bottom:248.386667pt;}
.y5e{bottom:249.346667pt;}
.y75{bottom:258.306667pt;}
.y26{bottom:265.986667pt;}
.y48{bottom:267.906667pt;}
.y9f{bottom:268.546667pt;}
.ybd{bottom:275.906667pt;}
.y5d{bottom:277.186667pt;}
.y77{bottom:286.786667pt;}
.y25{bottom:293.533333pt;}
.y47{bottom:295.773333pt;}
.y9e{bottom:296.093333pt;}
.ybc{bottom:303.773333pt;}
.y5c{bottom:304.733333pt;}
.y73{bottom:314.973333pt;}
.y24{bottom:321.373333pt;}
.y46{bottom:323.293333pt;}
.y9d{bottom:323.613333pt;}
.ybb{bottom:331.293333pt;}
.y5b{bottom:332.253333pt;}
.y23{bottom:348.893333pt;}
.y45{bottom:350.813333pt;}
.y9c{bottom:351.133333pt;}
.y72{bottom:355.613333pt;}
.yba{bottom:358.813333pt;}
.y5a{bottom:359.773333pt;}
.y22{bottom:376.413333pt;}
.y44{bottom:378.333333pt;}
.y9b{bottom:378.973333pt;}
.y71{bottom:383.453333pt;}
.yb9{bottom:386.333333pt;}
.y59{bottom:387.613333pt;}
.y21{bottom:403.973333pt;}
.y43{bottom:406.213333pt;}
.y9a{bottom:406.533333pt;}
.y70{bottom:411.013333pt;}
.yb8{bottom:414.213333pt;}
.y58{bottom:415.173333pt;}
.y20{bottom:431.813333pt;}
.y42{bottom:433.733333pt;}
.y99{bottom:434.053333pt;}
.y6f{bottom:438.533333pt;}
.yb7{bottom:441.733333pt;}
.y57{bottom:442.693333pt;}
.y1f{bottom:459.333333pt;}
.y41{bottom:461.253333pt;}
.y98{bottom:461.573333pt;}
.y6e{bottom:465.093333pt;}
.y6b{bottom:466.373333pt;}
.y6c{bottom:466.399964pt;}
.yb6{bottom:469.253333pt;}
.y56{bottom:470.213333pt;}
.y1e{bottom:486.853333pt;}
.y40{bottom:488.773333pt;}
.y97{bottom:489.093333pt;}
.y6a{bottom:496.773333pt;}
.y55{bottom:498.053333pt;}
.y1d{bottom:514.400000pt;}
.y3f{bottom:516.640000pt;}
.y96{bottom:516.960000pt;}
.y69{bottom:524.320000pt;}
.yb5{bottom:524.640000pt;}
.y54{bottom:525.600000pt;}
.y1c{bottom:542.240000pt;}
.y3e{bottom:544.160000pt;}
.y95{bottom:544.480000pt;}
.y68{bottom:552.160000pt;}
.y53{bottom:553.120000pt;}
.y1b{bottom:569.760000pt;}
.y3d{bottom:571.680000pt;}
.y94{bottom:572.000000pt;}
.yb4{bottom:579.680000pt;}
.y67{bottom:580.000000pt;}
.y52{bottom:580.640000pt;}
.y1a{bottom:597.280000pt;}
.y3c{bottom:599.200000pt;}
.y93{bottom:599.520000pt;}
.yb3{bottom:607.200000pt;}
.y66{bottom:607.840000pt;}
.y51{bottom:608.480000pt;}
.y19{bottom:624.826667pt;}
.y92{bottom:627.386667pt;}
.y3b{bottom:635.066667pt;}
.y65{bottom:635.706667pt;}
.y50{bottom:636.026667pt;}
.y18{bottom:652.666667pt;}
.y91{bottom:654.906667pt;}
.yb2{bottom:662.586667pt;}
.y4f{bottom:663.546667pt;}
.y90{bottom:670.586667pt;}
.ya5{bottom:679.226667pt;}
.y17{bottom:680.186667pt;}
.y3a{bottom:680.826667pt;}
.yb1{bottom:690.106667pt;}
.y4e{bottom:691.066667pt;}
.y8f{bottom:698.746667pt;}
.y16{bottom:709.946667pt;}
.yb0{bottom:717.626667pt;}
.y39{bottom:718.586667pt;}
.y8e{bottom:727.226667pt;}
.y15{bottom:737.826667pt;}
.yaf{bottom:745.506667pt;}
.y38{bottom:746.466667pt;}
.y8c{bottom:755.426667pt;}
.y14{bottom:765.346667pt;}
.yae{bottom:773.026667pt;}
.y37{bottom:773.986667pt;}
.y8d{bottom:783.586667pt;}
.y13{bottom:792.866667pt;}
.yad{bottom:800.546667pt;}
.y36{bottom:801.506667pt;}
.y89{bottom:812.066667pt;}
.y12{bottom:820.386667pt;}
.yac{bottom:828.066667pt;}
.y35{bottom:829.026667pt;}
.y8b{bottom:840.226667pt;}
.y11{bottom:848.253333pt;}
.yab{bottom:855.933333pt;}
.y34{bottom:856.893333pt;}
.y85{bottom:868.413333pt;}
.y10{bottom:875.773333pt;}
.yaa{bottom:883.453333pt;}
.y33{bottom:884.413333pt;}
.y88{bottom:896.893333pt;}
.yf{bottom:905.533333pt;}
.ya9{bottom:910.973333pt;}
.y32{bottom:911.933333pt;}
.y82{bottom:925.053333pt;}
.ye{bottom:935.613333pt;}
.ya8{bottom:938.493333pt;}
.y31{bottom:939.453333pt;}
.y83{bottom:953.213333pt;}
.yd{bottom:963.173333pt;}
.ya7{bottom:966.373333pt;}
.y30{bottom:967.333333pt;}
.y80{bottom:981.733333pt;}
.yc{bottom:990.693333pt;}
.ya6{bottom:993.893333pt;}
.y2f{bottom:994.853333pt;}
.y81{bottom:1009.893333pt;}
.y4{bottom:1010.853333pt;}
.y2e{bottom:1022.373333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y2b{bottom:1061.093333pt;}
.hc{height:14.752000pt;}
.hf{height:17.932310pt;}
.h12{height:27.520000pt;}
.h14{height:27.552000pt;}
.h19{height:27.840000pt;}
.h17{height:27.872000pt;}
.h6{height:39.072000pt;}
.h7{height:42.013125pt;}
.h3{height:43.642500pt;}
.h2{height:47.437500pt;}
.h8{height:48.378750pt;}
.h4{height:51.663750pt;}
.hd{height:53.937500pt;}
.hb{height:55.046250pt;}
.h15{height:55.680000pt;}
.h16{height:55.712000pt;}
.h18{height:56.000000pt;}
.h13{height:56.032000pt;}
.h9{height:56.156250pt;}
.h10{height:56.229756pt;}
.h5{height:58.563750pt;}
.h11{height:61.276250pt;}
.ha{height:65.141250pt;}
.he{height:68.956250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:13.467471pt;}
.w4{width:35.232000pt;}
.w9{width:217.053333pt;}
.w6{width:295.813333pt;}
.w5{width:309.253333pt;}
.w8{width:377.440000pt;}
.w3{width:569.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:1.694975pt;}
.x17{left:4.480000pt;}
.xd{left:7.680000pt;}
.x7{left:9.320000pt;}
.x12{left:93.471988pt;}
.x1{left:94.431988pt;}
.xa{left:96.031988pt;}
.x11{left:117.503988pt;}
.xf{left:118.463988pt;}
.x5{left:128.381333pt;}
.x10{left:141.506655pt;}
.x1b{left:147.266667pt;}
.x1f{left:152.386667pt;}
.x19{left:155.266667pt;}
.x1a{left:160.706667pt;}
.x1d{left:163.266667pt;}
.x20{left:165.826667pt;}
.x1e{left:168.706667pt;}
.x1c{left:176.706667pt;}
.x21{left:188.546667pt;}
.x22{left:208.746667pt;}
.x2{left:214.813322pt;}
.xc{left:234.653322pt;}
.xb{left:270.173322pt;}
.x4{left:385.119988pt;}
.x9{left:396.959988pt;}
.xe{left:403.680000pt;}
.x18{left:472.826667pt;}
.x8{left:475.066655pt;}
.x13{left:573.026655pt;}
.x14{left:601.426630pt;}
.x16{left:614.973322pt;}
.x3{left:619.133322pt;}
.x6{left:664.253333pt;}
}




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