
    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_9b0323b0a721dc39bb89d079.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f869902164b7576da61a5315.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_78e88ee8bec97be2c9bd2580.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_ed742c645c972b31f717f00c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_eb8e07f8dc5e18f89708b815.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_cfd81b6f0f05388d0fa83763.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_d1c9636694e4fe81467e3ad9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_da805fab097b141e79be1375.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_3f47ae3d4cc6e30227b1e317.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-12.240000px;}
.ls36{letter-spacing:-8.348330px;}
.ls28{letter-spacing:-0.810000px;}
.ls31{letter-spacing:-0.666000px;}
.ls2d{letter-spacing:-0.645098px;}
.ls2e{letter-spacing:-0.379470px;}
.ls37{letter-spacing:-0.360496px;}
.ls20{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.280200px;}
.ls34{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.227682px;}
.ls2a{letter-spacing:-0.226200px;}
.ls33{letter-spacing:-0.108000px;}
.ls42{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.097800px;}
.ls32{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.028080px;}
.ls38{letter-spacing:-0.018973px;}
.ls1e{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018973px;}
.ls11{letter-spacing:0.037947px;}
.ls30{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.056920px;}
.ls24{letter-spacing:0.075600px;}
.ls2b{letter-spacing:0.094867px;}
.ls1a{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.113841px;}
.ls46{letter-spacing:0.126720px;}
.ls1d{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.240331px;}
.ls47{letter-spacing:0.256200px;}
.ls18{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.303576px;}
.ls1f{letter-spacing:0.305400px;}
.ls2f{letter-spacing:0.320400px;}
.ls1b{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.666720px;}
.ls22{letter-spacing:0.678000px;}
.ls29{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.386720px;}
.ls39{letter-spacing:2.826720px;}
.lsd{letter-spacing:3.149597px;}
.lsf{letter-spacing:3.339332px;}
.ls3c{letter-spacing:3.546720px;}
.lse{letter-spacing:3.908536px;}
.ls41{letter-spacing:4.266000px;}
.ls44{letter-spacing:4.266720px;}
.ls3f{letter-spacing:4.500000px;}
.ls10{letter-spacing:4.667475px;}
.ls43{letter-spacing:4.986720px;}
.ls15{letter-spacing:5.426414px;}
.ls40{letter-spacing:5.706000px;}
.ls19{letter-spacing:6.426720px;}
.ls3a{letter-spacing:7.866720px;}
.ls4{letter-spacing:8.462170px;}
.ls3{letter-spacing:8.651905px;}
.ls5{letter-spacing:9.221109px;}
.ls3b{letter-spacing:10.026720px;}
.ls9{letter-spacing:12.256866px;}
.lsa{letter-spacing:12.383355px;}
.lsc{letter-spacing:12.446600px;}
.lsb{letter-spacing:13.015805px;}
.ls6{letter-spacing:16.051561px;}
.ls7{letter-spacing:16.178051px;}
.ls13{letter-spacing:22.123073px;}
.ls14{letter-spacing:22.312808px;}
.ls12{letter-spacing:22.882012px;}
.ls45{letter-spacing:39.185280px;}
.ls3e{letter-spacing:132.426720px;}
.ls3d{letter-spacing:149.706720px;}
.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;}
}
.ws5{word-spacing:-46.673040px;}
.ws4{word-spacing:-45.995040px;}
.ws6{word-spacing:-45.966960px;}
.ws7{word-spacing:-32.704560px;}
.ws8{word-spacing:-32.628960px;}
.ws9{word-spacing:-32.531160px;}
.wsa{word-spacing:-32.348760px;}
.ws12{word-spacing:-31.382130px;}
.ws11{word-spacing:-31.173421px;}
.ws15{word-spacing:-31.097528px;}
.wsf{word-spacing:-31.078554px;}
.ws22{word-spacing:-31.059581px;}
.ws13{word-spacing:-30.850872px;}
.ws21{word-spacing:-30.718058px;}
.ws14{word-spacing:-30.699085px;}
.ws1f{word-spacing:-29.682000px;}
.ws1d{word-spacing:-29.484000px;}
.ws1c{word-spacing:-29.214000px;}
.ws1e{word-spacing:-29.196000px;}
.ws17{word-spacing:-16.933680px;}
.ws16{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws24{word-spacing:-15.226440px;}
.ws18{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.ws10{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.392000px;}
.wsc{word-spacing:-11.160000px;}
.wse{word-spacing:-10.440000px;}
.wsd{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.303120px;}
.ws1a{word-spacing:-8.928000px;}
.ws20{word-spacing:-6.052539px;}
.ws23{word-spacing:0.000000px;}
._e{margin-left:-9.751259px;}
._3{margin-left:-8.367303px;}
._b{margin-left:-4.489932px;}
._9{margin-left:-3.087161px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._2{width:2.213760px;}
._7{width:3.858292px;}
._a{width:5.350520px;}
._d{width:7.171200px;}
._4{width:8.310383px;}
._5{width:9.747659px;}
._c{width:10.869541px;}
._6{width:12.769150px;}
._f{width:14.408857px;}
._8{width:22.402160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y40{bottom:2.700000px;}
.y4d{bottom:5.010000px;}
.y36{bottom:5.745000px;}
.y3f{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4b{bottom:15.480000px;}
.y35{bottom:27.345000px;}
.y4{bottom:32.400000px;}
.y4a{bottom:34.200000px;}
.y3e{bottom:40.320000px;}
.y3d{bottom:52.020000px;}
.y34{bottom:52.545000px;}
.y3{bottom:55.470000px;}
.y49{bottom:56.370000px;}
.ya{bottom:57.600000px;}
.y3c{bottom:65.010000px;}
.y48{bottom:75.450000px;}
.y9{bottom:75.780000px;}
.y3b{bottom:78.150000px;}
.y33{bottom:80.625000px;}
.y47{bottom:93.090000px;}
.y8{bottom:95.760000px;}
.y46{bottom:99.390000px;}
.y3a{bottom:99.930000px;}
.y32{bottom:108.930000px;}
.y45{bottom:115.410000px;}
.y44{bottom:130.890000px;}
.y31{bottom:133.770000px;}
.y78{bottom:136.260000px;}
.y43{bottom:146.370000px;}
.y37{bottom:157.320000px;}
.y30{bottom:158.790000px;}
.y77{bottom:159.480000px;}
.y42{bottom:161.850000px;}
.y39{bottom:162.030000px;}
.y38{bottom:172.650000px;}
.y41{bottom:177.150000px;}
.y76{bottom:182.520000px;}
.y2f{bottom:183.630000px;}
.y2e{bottom:205.230000px;}
.y75{bottom:208.800000px;}
.y2d{bottom:227.010000px;}
.y74{bottom:231.870000px;}
.y2c{bottom:248.610000px;}
.y73{bottom:254.910000px;}
.y2b{bottom:271.650000px;}
.y72{bottom:278.130000px;}
.y1e{bottom:290.370000px;}
.y71{bottom:301.170000px;}
.y1d{bottom:306.210000px;}
.y70{bottom:327.270000px;}
.y2a{bottom:329.820000px;}
.y1c{bottom:330.360000px;}
.y6f{bottom:350.490000px;}
.y29{bottom:353.220000px;}
.y1b{bottom:354.480000px;}
.y10{bottom:359.865000px;}
.y6e{bottom:370.650000px;}
.y28{bottom:376.800000px;}
.y1a{bottom:378.780000px;}
.y6d{bottom:390.630000px;}
.y27{bottom:400.380000px;}
.y19{bottom:402.900000px;}
.y6c{bottom:410.790000px;}
.y26{bottom:423.780000px;}
.y18{bottom:427.020000px;}
.y6b{bottom:430.950000px;}
.y25{bottom:447.360000px;}
.y17{bottom:451.140000px;}
.y6a{bottom:454.035000px;}
.y24{bottom:470.940000px;}
.y16{bottom:475.260000px;}
.y69{bottom:480.135000px;}
.y23{bottom:494.340000px;}
.y15{bottom:499.380000px;}
.y68{bottom:503.355000px;}
.y22{bottom:517.920000px;}
.y14{bottom:523.680000px;}
.y67{bottom:526.395000px;}
.y21{bottom:541.500000px;}
.y13{bottom:547.800000px;}
.y66{bottom:552.495000px;}
.y20{bottom:564.945000px;}
.y12{bottom:571.965000px;}
.y65{bottom:575.715000px;}
.y1f{bottom:588.525000px;}
.y64{bottom:595.695000px;}
.y11{bottom:596.085000px;}
.y63{bottom:615.855000px;}
.y8c{bottom:616.395000px;}
.y62{bottom:638.895000px;}
.y8b{bottom:640.875000px;}
.y61{bottom:662.115000px;}
.y8a{bottom:666.975000px;}
.y60{bottom:685.185000px;}
.y89{bottom:693.285000px;}
.y5f{bottom:711.285000px;}
.y88{bottom:719.385000px;}
.y5e{bottom:737.385000px;}
.y87{bottom:742.425000px;}
.y5d{bottom:760.605000px;}
.y86{bottom:765.645000px;}
.y5c{bottom:780.765000px;}
.y85{bottom:791.745000px;}
.y5b{bottom:800.745000px;}
.y84{bottom:814.785000px;}
.y5a{bottom:820.905000px;}
.y83{bottom:838.005000px;}
.y59{bottom:843.945000px;}
.y82{bottom:861.045000px;}
.y58{bottom:870.045000px;}
.y81{bottom:881.205000px;}
.y57{bottom:893.265000px;}
.y80{bottom:901.365000px;}
.y56{bottom:916.305000px;}
.y7f{bottom:924.450000px;}
.y55{bottom:939.570000px;}
.y7e{bottom:950.550000px;}
.y54{bottom:959.550000px;}
.yf{bottom:971.250000px;}
.y7d{bottom:973.770000px;}
.y53{bottom:982.770000px;}
.ye{bottom:992.130000px;}
.y7c{bottom:993.750000px;}
.y52{bottom:1008.870000px;}
.y7b{bottom:1016.790000px;}
.yd{bottom:1018.230000px;}
.y51{bottom:1031.910000px;}
.y7a{bottom:1043.070000px;}
.yc{bottom:1047.390000px;}
.y50{bottom:1052.070000px;}
.y79{bottom:1069.170000px;}
.y4f{bottom:1072.230000px;}
.yb{bottom:1082.850000px;}
.y4c{bottom:1086.300000px;}
.y4e{bottom:1095.270000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h18{height:5.650313px;}
.h11{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h1a{height:27.540000px;}
.h16{height:29.678906px;}
.h15{height:35.332031px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.h13{height:52.971680px;}
.h17{height:54.421875px;}
.h5{height:55.824609px;}
.h19{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.hd{height:60.226875px;}
.h12{height:60.338990px;}
.hc{height:63.349102px;}
.h1b{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h1c{height:68.084282px;}
.h1d{height:70.218281px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h14{height:201.810000px;}
.he{height:605.610000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:6.876000px;}
.x1b{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x16{left:14.211000px;}
.x19{left:16.011000px;}
.x22{left:18.171000px;}
.x18{left:21.771000px;}
.x17{left:26.091000px;}
.x24{left:29.151000px;}
.x11{left:43.731000px;}
.x23{left:47.691000px;}
.x12{left:50.751000px;}
.x5{left:53.265000px;}
.x10{left:55.071000px;}
.x1c{left:59.970000px;}
.x1e{left:62.130000px;}
.x25{left:66.225000px;}
.x14{left:73.605000px;}
.x1{left:78.300000px;}
.x15{left:83.685000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x26{left:102.765000px;}
.x21{left:106.725000px;}
.x2a{left:113.436000px;}
.x28{left:115.410000px;}
.x1d{left:119.730000px;}
.x13{left:124.545000px;}
.x1f{left:125.670000px;}
.x8{left:140.436000px;}
.x3{left:182.385000px;}
.x1a{left:219.105000px;}
.x20{left:273.120000px;}
.x7{left:311.100000px;}
.x27{left:372.120000px;}
.xe{left:446.505000px;}
.xf{left:566.025000px;}
.xd{left:679.470000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-10.880000pt;}
.ls36{letter-spacing:-7.420737pt;}
.ls28{letter-spacing:-0.720000pt;}
.ls31{letter-spacing:-0.592000pt;}
.ls2d{letter-spacing:-0.573421pt;}
.ls2e{letter-spacing:-0.337306pt;}
.ls37{letter-spacing:-0.320441pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.249067pt;}
.ls34{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.202384pt;}
.ls2a{letter-spacing:-0.201067pt;}
.ls33{letter-spacing:-0.096000pt;}
.ls42{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.086933pt;}
.ls32{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.024960pt;}
.ls38{letter-spacing:-0.016865pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016865pt;}
.ls11{letter-spacing:0.033731pt;}
.ls30{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.050596pt;}
.ls24{letter-spacing:0.067200pt;}
.ls2b{letter-spacing:0.084327pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.101192pt;}
.ls46{letter-spacing:0.112640pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.213627pt;}
.ls47{letter-spacing:0.227733pt;}
.ls18{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.269845pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls2f{letter-spacing:0.284800pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.592640pt;}
.ls22{letter-spacing:0.602667pt;}
.ls29{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.232640pt;}
.ls39{letter-spacing:2.512640pt;}
.lsd{letter-spacing:2.799642pt;}
.lsf{letter-spacing:2.968295pt;}
.ls3c{letter-spacing:3.152640pt;}
.lse{letter-spacing:3.474254pt;}
.ls41{letter-spacing:3.792000pt;}
.ls44{letter-spacing:3.792640pt;}
.ls3f{letter-spacing:4.000000pt;}
.ls10{letter-spacing:4.148867pt;}
.ls43{letter-spacing:4.432640pt;}
.ls15{letter-spacing:4.823479pt;}
.ls40{letter-spacing:5.072000pt;}
.ls19{letter-spacing:5.712640pt;}
.ls3a{letter-spacing:6.992640pt;}
.ls4{letter-spacing:7.521929pt;}
.ls3{letter-spacing:7.690582pt;}
.ls5{letter-spacing:8.196542pt;}
.ls3b{letter-spacing:8.912640pt;}
.ls9{letter-spacing:10.894992pt;}
.lsa{letter-spacing:11.007427pt;}
.lsc{letter-spacing:11.063645pt;}
.lsb{letter-spacing:11.569604pt;}
.ls6{letter-spacing:14.268054pt;}
.ls7{letter-spacing:14.380490pt;}
.ls13{letter-spacing:19.664954pt;}
.ls14{letter-spacing:19.833607pt;}
.ls12{letter-spacing:20.339567pt;}
.ls45{letter-spacing:34.831360pt;}
.ls3e{letter-spacing:117.712640pt;}
.ls3d{letter-spacing:133.072640pt;}
.ws5{word-spacing:-41.487147pt;}
.ws4{word-spacing:-40.884480pt;}
.ws6{word-spacing:-40.859520pt;}
.ws7{word-spacing:-29.070720pt;}
.ws8{word-spacing:-29.003520pt;}
.ws9{word-spacing:-28.916587pt;}
.wsa{word-spacing:-28.754453pt;}
.ws12{word-spacing:-27.895226pt;}
.ws11{word-spacing:-27.709708pt;}
.ws15{word-spacing:-27.642247pt;}
.wsf{word-spacing:-27.625381pt;}
.ws22{word-spacing:-27.608516pt;}
.ws13{word-spacing:-27.422998pt;}
.ws21{word-spacing:-27.304940pt;}
.ws14{word-spacing:-27.288075pt;}
.ws1f{word-spacing:-26.384000pt;}
.ws1d{word-spacing:-26.208000pt;}
.ws1c{word-spacing:-25.968000pt;}
.ws1e{word-spacing:-25.952000pt;}
.ws17{word-spacing:-15.052160pt;}
.ws16{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws24{word-spacing:-13.534613pt;}
.ws18{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws19{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.904000pt;}
.wsc{word-spacing:-9.920000pt;}
.wse{word-spacing:-9.280000pt;}
.wsd{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.269440pt;}
.ws1a{word-spacing:-7.936000pt;}
.ws20{word-spacing:-5.380035pt;}
.ws23{word-spacing:0.000000pt;}
._e{margin-left:-8.667786pt;}
._3{margin-left:-7.437603pt;}
._b{margin-left:-3.991051pt;}
._9{margin-left:-2.744143pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._2{width:1.967787pt;}
._7{width:3.429593pt;}
._a{width:4.756018pt;}
._d{width:6.374400pt;}
._4{width:7.387007pt;}
._5{width:8.664586pt;}
._c{width:9.661814pt;}
._6{width:11.350355pt;}
._f{width:12.807872pt;}
._8{width:19.913031pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y40{bottom:2.400000pt;}
.y4d{bottom:4.453333pt;}
.y36{bottom:5.106667pt;}
.y3f{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4b{bottom:13.760000pt;}
.y35{bottom:24.306667pt;}
.y4{bottom:28.800000pt;}
.y4a{bottom:30.400000pt;}
.y3e{bottom:35.840000pt;}
.y3d{bottom:46.240000pt;}
.y34{bottom:46.706667pt;}
.y3{bottom:49.306667pt;}
.y49{bottom:50.106667pt;}
.ya{bottom:51.200000pt;}
.y3c{bottom:57.786667pt;}
.y48{bottom:67.066667pt;}
.y9{bottom:67.360000pt;}
.y3b{bottom:69.466667pt;}
.y33{bottom:71.666667pt;}
.y47{bottom:82.746667pt;}
.y8{bottom:85.120000pt;}
.y46{bottom:88.346667pt;}
.y3a{bottom:88.826667pt;}
.y32{bottom:96.826667pt;}
.y45{bottom:102.586667pt;}
.y44{bottom:116.346667pt;}
.y31{bottom:118.906667pt;}
.y78{bottom:121.120000pt;}
.y43{bottom:130.106667pt;}
.y37{bottom:139.840000pt;}
.y30{bottom:141.146667pt;}
.y77{bottom:141.760000pt;}
.y42{bottom:143.866667pt;}
.y39{bottom:144.026667pt;}
.y38{bottom:153.466667pt;}
.y41{bottom:157.466667pt;}
.y76{bottom:162.240000pt;}
.y2f{bottom:163.226667pt;}
.y2e{bottom:182.426667pt;}
.y75{bottom:185.600000pt;}
.y2d{bottom:201.786667pt;}
.y74{bottom:206.106667pt;}
.y2c{bottom:220.986667pt;}
.y73{bottom:226.586667pt;}
.y2b{bottom:241.466667pt;}
.y72{bottom:247.226667pt;}
.y1e{bottom:258.106667pt;}
.y71{bottom:267.706667pt;}
.y1d{bottom:272.186667pt;}
.y70{bottom:290.906667pt;}
.y2a{bottom:293.173333pt;}
.y1c{bottom:293.653333pt;}
.y6f{bottom:311.546667pt;}
.y29{bottom:313.973333pt;}
.y1b{bottom:315.093333pt;}
.y10{bottom:319.880000pt;}
.y6e{bottom:329.466667pt;}
.y28{bottom:334.933333pt;}
.y1a{bottom:336.693333pt;}
.y6d{bottom:347.226667pt;}
.y27{bottom:355.893333pt;}
.y19{bottom:358.133333pt;}
.y6c{bottom:365.146667pt;}
.y26{bottom:376.693333pt;}
.y18{bottom:379.573333pt;}
.y6b{bottom:383.066667pt;}
.y25{bottom:397.653333pt;}
.y17{bottom:401.013333pt;}
.y6a{bottom:403.586667pt;}
.y24{bottom:418.613333pt;}
.y16{bottom:422.453333pt;}
.y69{bottom:426.786667pt;}
.y23{bottom:439.413333pt;}
.y15{bottom:443.893333pt;}
.y68{bottom:447.426667pt;}
.y22{bottom:460.373333pt;}
.y14{bottom:465.493333pt;}
.y67{bottom:467.906667pt;}
.y21{bottom:481.333333pt;}
.y13{bottom:486.933333pt;}
.y66{bottom:491.106667pt;}
.y20{bottom:502.173333pt;}
.y12{bottom:508.413333pt;}
.y65{bottom:511.746667pt;}
.y1f{bottom:523.133333pt;}
.y64{bottom:529.506667pt;}
.y11{bottom:529.853333pt;}
.y63{bottom:547.426667pt;}
.y8c{bottom:547.906667pt;}
.y62{bottom:567.906667pt;}
.y8b{bottom:569.666667pt;}
.y61{bottom:588.546667pt;}
.y8a{bottom:592.866667pt;}
.y60{bottom:609.053333pt;}
.y89{bottom:616.253333pt;}
.y5f{bottom:632.253333pt;}
.y88{bottom:639.453333pt;}
.y5e{bottom:655.453333pt;}
.y87{bottom:659.933333pt;}
.y5d{bottom:676.093333pt;}
.y86{bottom:680.573333pt;}
.y5c{bottom:694.013333pt;}
.y85{bottom:703.773333pt;}
.y5b{bottom:711.773333pt;}
.y84{bottom:724.253333pt;}
.y5a{bottom:729.693333pt;}
.y83{bottom:744.893333pt;}
.y59{bottom:750.173333pt;}
.y82{bottom:765.373333pt;}
.y58{bottom:773.373333pt;}
.y81{bottom:783.293333pt;}
.y57{bottom:794.013333pt;}
.y80{bottom:801.213333pt;}
.y56{bottom:814.493333pt;}
.y7f{bottom:821.733333pt;}
.y55{bottom:835.173333pt;}
.y7e{bottom:844.933333pt;}
.y54{bottom:852.933333pt;}
.yf{bottom:863.333333pt;}
.y7d{bottom:865.573333pt;}
.y53{bottom:873.573333pt;}
.ye{bottom:881.893333pt;}
.y7c{bottom:883.333333pt;}
.y52{bottom:896.773333pt;}
.y7b{bottom:903.813333pt;}
.yd{bottom:905.093333pt;}
.y51{bottom:917.253333pt;}
.y7a{bottom:927.173333pt;}
.yc{bottom:931.013333pt;}
.y50{bottom:935.173333pt;}
.y79{bottom:950.373333pt;}
.y4f{bottom:953.093333pt;}
.yb{bottom:962.533333pt;}
.y4c{bottom:965.600000pt;}
.y4e{bottom:973.573333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h18{height:5.022500pt;}
.h11{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h1a{height:24.480000pt;}
.h16{height:26.381250pt;}
.h15{height:31.406250pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.h13{height:47.085938pt;}
.h17{height:48.375000pt;}
.h5{height:49.621875pt;}
.h19{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.hd{height:53.535000pt;}
.h12{height:53.634657pt;}
.hc{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1c{height:60.519362pt;}
.h1d{height:62.416250pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h14{height:179.386667pt;}
.he{height:538.320000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.112000pt;}
.x1b{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x16{left:12.632000pt;}
.x19{left:14.232000pt;}
.x22{left:16.152000pt;}
.x18{left:19.352000pt;}
.x17{left:23.192000pt;}
.x24{left:25.912000pt;}
.x11{left:38.872000pt;}
.x23{left:42.392000pt;}
.x12{left:45.112000pt;}
.x5{left:47.346667pt;}
.x10{left:48.952000pt;}
.x1c{left:53.306667pt;}
.x1e{left:55.226667pt;}
.x25{left:58.866667pt;}
.x14{left:65.426667pt;}
.x1{left:69.600000pt;}
.x15{left:74.386667pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x26{left:91.346667pt;}
.x21{left:94.866667pt;}
.x2a{left:100.832000pt;}
.x28{left:102.586667pt;}
.x1d{left:106.426667pt;}
.x13{left:110.706667pt;}
.x1f{left:111.706667pt;}
.x8{left:124.832000pt;}
.x3{left:162.120000pt;}
.x1a{left:194.760000pt;}
.x20{left:242.773333pt;}
.x7{left:276.533333pt;}
.x27{left:330.773333pt;}
.xe{left:396.893333pt;}
.xf{left:503.133333pt;}
.xd{left:603.973333pt;}
.xb{left:680.933333pt;}
.xa{left:703.973333pt;}
.x9{left:717.280000pt;}
}




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