
    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_0543b9b40db1f1f0a3fa2def.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_eac18a508908b7f70badbd48.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_52c856ec6defc0bbe3803800.woff')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_96c5f3001a62b708e5a1b9e4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f2f58b381daeede027ac33db.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_39722ae25dfc9bbc61e26d87.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_b6737c8af2b73662c9a86fdd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_eba6946ccaa6db313044bb2c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_47721d48df57391375e2ec32.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c8e6ee716ab7d914e507ba61.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_b1c5e265c44947cde6fb9f34.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_de6ac035b7b64fc9aca460c2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9e58406ded263c2c8762852e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1df5e8685af26e549cc1c40b.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6be4ca8e6ae7ea0f4a8f6284.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_461761786b930d239d1746bc.woff')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_61cf1ab21dcab35ae6d4e375.woff')format("woff");}.ff13{font-family:ff13;line-height:1.084961;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:ff14;src:url('chunks/assets/font_b238ba63d2dc45dd5ad49555.woff')format("woff");}.ff14{font-family:ff14;line-height:1.084961;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:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.lsb{letter-spacing:-1.482000px;}
.ls10{letter-spacing:-1.128000px;}
.lsa{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.476000px;}
.lsc{letter-spacing:1.740000px;}
.ls1{letter-spacing:1.854000px;}
.ls2{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.lse{letter-spacing:2.164500px;}
.ls4{letter-spacing:2.250000px;}
.lsf{letter-spacing:2.370000px;}
.ls11{letter-spacing:3.555000px;}
.ls5{letter-spacing:4.779000px;}
.ls12{letter-spacing:46.887000px;}
.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;}
}
.ws5{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-9.987600px;}
._17{margin-left:-7.546500px;}
._14{margin-left:-6.489000px;}
._7{margin-left:-5.421150px;}
._9{margin-left:-3.937500px;}
._2{margin-left:-2.808000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.678000px;}
._4{width:4.830000px;}
._16{width:5.920500px;}
._a{width:7.357500px;}
._13{width:8.359500px;}
._8{width:9.361500px;}
._5{width:10.896000px;}
._10{width:11.938500px;}
._11{width:12.972000px;}
._12{width:16.846500px;}
._15{width:18.262500px;}
._19{width:20.707500px;}
._18{width:21.717000px;}
._c{width:24.822000px;}
._d{width:26.716500px;}
._b{width:30.937500px;}
._e{width:34.063500px;}
._f{width:35.428500px;}
._1a{width:75.019500px;}
._1b{width:121.186500px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc9{color:rgb(33,33,33);}
.fc8{color:rgb(68,84,106);}
.fc7{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.yb4{bottom:-11.250000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.y86{bottom:3.420000px;}
.y71{bottom:9.000000px;}
.y73{bottom:9.045000px;}
.ye{bottom:11.250000px;}
.y1b{bottom:12.375000px;}
.yc{bottom:13.545000px;}
.y4a{bottom:14.670000px;}
.y4{bottom:16.875000px;}
.y94{bottom:18.000000px;}
.y49{bottom:18.045000px;}
.y2{bottom:19.125000px;}
.y47{bottom:21.420000px;}
.y18{bottom:22.545000px;}
.yb{bottom:30.420000px;}
.y93{bottom:38.287500px;}
.y46{bottom:38.295000px;}
.y17{bottom:39.420000px;}
.ya{bottom:46.200000px;}
.y45{bottom:55.170000px;}
.y16{bottom:55.215000px;}
.y5{bottom:57.412500px;}
.y15{bottom:68.715000px;}
.y9{bottom:73.200000px;}
.y44{bottom:73.215000px;}
.y1{bottom:81.075000px;}
.y14{bottom:85.590000px;}
.y43{bottom:90.090000px;}
.y8{bottom:93.480000px;}
.y13{bottom:103.620000px;}
.y42{bottom:106.995000px;}
.y7{bottom:110.355000px;}
.y12{bottom:122.745000px;}
.y50{bottom:123.862500px;}
.y41{bottom:124.995000px;}
.y92{bottom:135.112500px;}
.y99{bottom:136.237500px;}
.y4f{bottom:141.862500px;}
.y40{bottom:141.870000px;}
.y91{bottom:148.612500px;}
.y11{bottom:148.665000px;}
.y98{bottom:149.737500px;}
.y4e{bottom:158.745000px;}
.y3f{bottom:158.775000px;}
.yb2{bottom:165.525000px;}
.y10{bottom:173.415000px;}
.y4d{bottom:175.650000px;}
.y3e{bottom:176.790000px;}
.yb1{bottom:182.400000px;}
.y4c{bottom:193.650000px;}
.y3d{bottom:193.695000px;}
.yb0{bottom:200.400000px;}
.y2c{bottom:202.695000px;}
.y3c{bottom:210.570000px;}
.y2b{bottom:217.320000px;}
.y4b{bottom:227.445000px;}
.y3b{bottom:228.600000px;}
.yaf{bottom:234.195000px;}
.y2a{bottom:235.350000px;}
.y6f{bottom:243.225000px;}
.y3a{bottom:245.475000px;}
.yae{bottom:252.225000px;}
.y29{bottom:253.365000px;}
.y76{bottom:256.725000px;}
.y39{bottom:262.350000px;}
.yad{bottom:269.100000px;}
.y28{bottom:270.240000px;}
.y48{bottom:276.975000px;}
.y75{bottom:279.225000px;}
.y38{bottom:280.395000px;}
.yac{bottom:286.005000px;}
.y27{bottom:287.145000px;}
.y37{bottom:297.270000px;}
.y74{bottom:301.755000px;}
.yab{bottom:304.005000px;}
.y26{bottom:305.145000px;}
.y1c{bottom:306.255000px;}
.y36{bottom:314.190000px;}
.yaa{bottom:320.880000px;}
.y25{bottom:322.065000px;}
.y72{bottom:324.255000px;}
.y35{bottom:332.190000px;}
.ya9{bottom:337.800000px;}
.y24{bottom:340.065000px;}
.y70{bottom:346.800000px;}
.y34{bottom:349.065000px;}
.ya8{bottom:355.800000px;}
.y23{bottom:356.970000px;}
.y33{bottom:365.970000px;}
.ya7{bottom:372.720000px;}
.y6e{bottom:373.830000px;}
.y22{bottom:374.970000px;}
.y97{bottom:377.205000px;}
.y32{bottom:383.970000px;}
.ya6{bottom:389.595000px;}
.y6d{bottom:390.705000px;}
.y21{bottom:391.845000px;}
.y96{bottom:394.080000px;}
.y31{bottom:400.875000px;}
.y6c{bottom:407.580000px;}
.y20{bottom:409.890000px;}
.y30{bottom:417.750000px;}
.y6b{bottom:421.125000px;}
.ya5{bottom:424.500000px;}
.y1f{bottom:426.765000px;}
.y2f{bottom:435.750000px;}
.yb3{bottom:439.125000px;}
.ya4{bottom:441.375000px;}
.y90{bottom:447.000000px;}
.yc2{bottom:451.530000px;}
.y2e{bottom:452.670000px;}
.y1e{bottom:453.795000px;}
.ya3{bottom:459.420000px;}
.y8f{bottom:465.030000px;}
.yc1{bottom:468.405000px;}
.y2d{bottom:469.545000px;}
.y1d{bottom:471.795000px;}
.ya2{bottom:476.295000px;}
.y8e{bottom:481.905000px;}
.yc0{bottom:485.280000px;}
.ya1{bottom:493.200000px;}
.y8d{bottom:498.825000px;}
.ybf{bottom:503.325000px;}
.ya0{bottom:511.200000px;}
.y8c{bottom:516.825000px;}
.ybe{bottom:520.200000px;}
.y9f{bottom:528.075000px;}
.y8b{bottom:533.700000px;}
.ybd{bottom:537.120000px;}
.y9e{bottom:541.605000px;}
.y8a{bottom:550.620000px;}
.ybc{bottom:555.105000px;}
.y89{bottom:568.605000px;}
.ybb{bottom:571.980000px;}
.y88{bottom:585.525000px;}
.yba{bottom:588.900000px;}
.y87{bottom:602.400000px;}
.yb9{bottom:606.900000px;}
.y85{bottom:617.025000px;}
.yb8{bottom:623.820000px;}
.y84{bottom:635.070000px;}
.yb7{bottom:640.695000px;}
.y83{bottom:653.070000px;}
.yb6{bottom:658.695000px;}
.y82{bottom:671.100000px;}
.yb5{bottom:675.600000px;}
.y81{bottom:689.100000px;}
.y95{bottom:692.475000px;}
.y80{bottom:707.130000px;}
.y6a{bottom:710.505000px;}
.y7f{bottom:725.130000px;}
.y69{bottom:727.380000px;}
.y68{bottom:744.300000px;}
.y7e{bottom:746.550000px;}
.y67{bottom:762.300000px;}
.y7d{bottom:764.550000px;}
.y66{bottom:779.175000px;}
.y7c{bottom:781.425000px;}
.y19{bottom:789.330000px;}
.y9d{bottom:793.830000px;}
.y65{bottom:796.080000px;}
.y7b{bottom:798.330000px;}
.y9c{bottom:810.705000px;}
.y64{bottom:814.080000px;}
.y7a{bottom:816.330000px;}
.yf{bottom:819.705000px;}
.y9b{bottom:827.625000px;}
.y63{bottom:831.000000px;}
.y79{bottom:833.250000px;}
.y9a{bottom:842.250000px;}
.y62{bottom:847.875000px;}
.y78{bottom:850.125000px;}
.y77{bottom:863.625000px;}
.y61{bottom:865.875000px;}
.y60{bottom:882.795000px;}
.y5f{bottom:899.670000px;}
.y5e{bottom:917.700000px;}
.y5d{bottom:934.575000px;}
.y5c{bottom:951.450000px;}
.y5b{bottom:969.495000px;}
.y5a{bottom:986.370000px;}
.y59{bottom:1003.275000px;}
.yd{bottom:1007.775000px;}
.y58{bottom:1021.275000px;}
.y6{bottom:1033.650000px;}
.y57{bottom:1038.195000px;}
.y56{bottom:1055.070000px;}
.y55{bottom:1073.070000px;}
.y54{bottom:1089.975000px;}
.y53{bottom:1106.850000px;}
.y52{bottom:1124.880000px;}
.y51{bottom:1141.755000px;}
.h25{height:5.625000px;}
.h23{height:16.860000px;}
.h20{height:16.875000px;}
.h22{height:16.897500px;}
.h21{height:16.912500px;}
.h1f{height:22.500000px;}
.h1e{height:22.537500px;}
.hb{height:25.875000px;}
.h1c{height:29.287500px;}
.h12{height:29.953125px;}
.h13{height:30.375000px;}
.h24{height:31.500000px;}
.h2{height:32.625000px;}
.h8{height:37.125000px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h26{height:42.589600px;}
.hd{height:43.075195px;}
.h11{height:43.453125px;}
.ha{height:43.875000px;}
.h17{height:47.074219px;}
.h1d{height:47.474121px;}
.h16{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:188.055000px;}
.h15{height:483.075000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w11{width:6.750000px;}
.w2{width:74.362500px;}
.wa{width:126.150000px;}
.w4{width:145.275000px;}
.wb{width:163.350000px;}
.wc{width:168.975000px;}
.we{width:174.600000px;}
.wf{width:199.395000px;}
.w7{width:214.020000px;}
.w9{width:273.720000px;}
.wd{width:371.700000px;}
.w8{width:533.925000px;}
.w10{width:583.500000px;}
.w5{width:602.670000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:1.125000px;}
.x1b{left:2.250000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.x16{left:20.250000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x1a{left:78.862500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x2d{left:101.362487px;}
.x11{left:108.112500px;}
.x30{left:113.774987px;}
.x13{left:115.987500px;}
.x27{left:128.400000px;}
.x12{left:136.282500px;}
.x31{left:140.812487px;}
.x19{left:152.054987px;}
.x10{left:198.232500px;}
.x2b{left:207.269987px;}
.x14{left:214.012500px;}
.x7{left:218.520000px;}
.xf{left:223.012500px;}
.x2f{left:233.175000px;}
.x22{left:238.799987px;}
.x18{left:241.049987px;}
.x21{left:257.969987px;}
.x15{left:287.250000px;}
.x2e{left:290.624987px;}
.xb{left:296.280000px;}
.x26{left:298.499987px;}
.x29{left:322.169987px;}
.x9{left:351.450000px;}
.x1c{left:353.700000px;}
.xa{left:370.605000px;}
.xe{left:373.957500px;}
.xd{left:437.055000px;}
.x23{left:446.070000px;}
.xc{left:459.600000px;}
.x1e{left:480.975000px;}
.x24{left:621.780000px;}
.x2c{left:631.949987px;}
.x2a{left:634.199987px;}
.x1f{left:645.450000px;}
.x28{left:683.729987px;}
.x25{left:695.024987px;}
.x20{left:720.944987px;}
.x17{left:727.694987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsb{letter-spacing:-1.317333pt;}
.ls10{letter-spacing:-1.002667pt;}
.lsa{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.312000pt;}
.lsc{letter-spacing:1.546667pt;}
.ls1{letter-spacing:1.648000pt;}
.ls2{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.lse{letter-spacing:1.924000pt;}
.ls4{letter-spacing:2.000000pt;}
.lsf{letter-spacing:2.106667pt;}
.ls11{letter-spacing:3.160000pt;}
.ls5{letter-spacing:4.248000pt;}
.ls12{letter-spacing:41.677333pt;}
.ws5{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-8.877867pt;}
._17{margin-left:-6.708000pt;}
._14{margin-left:-5.768000pt;}
._7{margin-left:-4.818800pt;}
._9{margin-left:-3.500000pt;}
._2{margin-left:-2.496000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:3.269333pt;}
._4{width:4.293333pt;}
._16{width:5.262667pt;}
._a{width:6.540000pt;}
._13{width:7.430667pt;}
._8{width:8.321333pt;}
._5{width:9.685333pt;}
._10{width:10.612000pt;}
._11{width:11.530667pt;}
._12{width:14.974667pt;}
._15{width:16.233333pt;}
._19{width:18.406667pt;}
._18{width:19.304000pt;}
._c{width:22.064000pt;}
._d{width:23.748000pt;}
._b{width:27.500000pt;}
._e{width:30.278667pt;}
._f{width:31.492000pt;}
._1a{width:66.684000pt;}
._1b{width:107.721333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.yb4{bottom:-10.000000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.y86{bottom:3.040000pt;}
.y71{bottom:8.000000pt;}
.y73{bottom:8.040000pt;}
.ye{bottom:10.000000pt;}
.y1b{bottom:11.000000pt;}
.yc{bottom:12.040000pt;}
.y4a{bottom:13.040000pt;}
.y4{bottom:15.000000pt;}
.y94{bottom:16.000000pt;}
.y49{bottom:16.040000pt;}
.y2{bottom:17.000000pt;}
.y47{bottom:19.040000pt;}
.y18{bottom:20.040000pt;}
.yb{bottom:27.040000pt;}
.y93{bottom:34.033333pt;}
.y46{bottom:34.040000pt;}
.y17{bottom:35.040000pt;}
.ya{bottom:41.066667pt;}
.y45{bottom:49.040000pt;}
.y16{bottom:49.080000pt;}
.y5{bottom:51.033333pt;}
.y15{bottom:61.080000pt;}
.y9{bottom:65.066667pt;}
.y44{bottom:65.080000pt;}
.y1{bottom:72.066667pt;}
.y14{bottom:76.080000pt;}
.y43{bottom:80.080000pt;}
.y8{bottom:83.093333pt;}
.y13{bottom:92.106667pt;}
.y42{bottom:95.106667pt;}
.y7{bottom:98.093333pt;}
.y12{bottom:109.106667pt;}
.y50{bottom:110.100000pt;}
.y41{bottom:111.106667pt;}
.y92{bottom:120.100000pt;}
.y99{bottom:121.100000pt;}
.y4f{bottom:126.100000pt;}
.y40{bottom:126.106667pt;}
.y91{bottom:132.100000pt;}
.y11{bottom:132.146667pt;}
.y98{bottom:133.100000pt;}
.y4e{bottom:141.106667pt;}
.y3f{bottom:141.133333pt;}
.yb2{bottom:147.133333pt;}
.y10{bottom:154.146667pt;}
.y4d{bottom:156.133333pt;}
.y3e{bottom:157.146667pt;}
.yb1{bottom:162.133333pt;}
.y4c{bottom:172.133333pt;}
.y3d{bottom:172.173333pt;}
.yb0{bottom:178.133333pt;}
.y2c{bottom:180.173333pt;}
.y3c{bottom:187.173333pt;}
.y2b{bottom:193.173333pt;}
.y4b{bottom:202.173333pt;}
.y3b{bottom:203.200000pt;}
.yaf{bottom:208.173333pt;}
.y2a{bottom:209.200000pt;}
.y6f{bottom:216.200000pt;}
.y3a{bottom:218.200000pt;}
.yae{bottom:224.200000pt;}
.y29{bottom:225.213333pt;}
.y76{bottom:228.200000pt;}
.y39{bottom:233.200000pt;}
.yad{bottom:239.200000pt;}
.y28{bottom:240.213333pt;}
.y48{bottom:246.200000pt;}
.y75{bottom:248.200000pt;}
.y38{bottom:249.240000pt;}
.yac{bottom:254.226667pt;}
.y27{bottom:255.240000pt;}
.y37{bottom:264.240000pt;}
.y74{bottom:268.226667pt;}
.yab{bottom:270.226667pt;}
.y26{bottom:271.240000pt;}
.y1c{bottom:272.226667pt;}
.y36{bottom:279.280000pt;}
.yaa{bottom:285.226667pt;}
.y25{bottom:286.280000pt;}
.y72{bottom:288.226667pt;}
.y35{bottom:295.280000pt;}
.ya9{bottom:300.266667pt;}
.y24{bottom:302.280000pt;}
.y70{bottom:308.266667pt;}
.y34{bottom:310.280000pt;}
.ya8{bottom:316.266667pt;}
.y23{bottom:317.306667pt;}
.y33{bottom:325.306667pt;}
.ya7{bottom:331.306667pt;}
.y6e{bottom:332.293333pt;}
.y22{bottom:333.306667pt;}
.y97{bottom:335.293333pt;}
.y32{bottom:341.306667pt;}
.ya6{bottom:346.306667pt;}
.y6d{bottom:347.293333pt;}
.y21{bottom:348.306667pt;}
.y96{bottom:350.293333pt;}
.y31{bottom:356.333333pt;}
.y6c{bottom:362.293333pt;}
.y20{bottom:364.346667pt;}
.y30{bottom:371.333333pt;}
.y6b{bottom:374.333333pt;}
.ya5{bottom:377.333333pt;}
.y1f{bottom:379.346667pt;}
.y2f{bottom:387.333333pt;}
.yb3{bottom:390.333333pt;}
.ya4{bottom:392.333333pt;}
.y90{bottom:397.333333pt;}
.yc2{bottom:401.360000pt;}
.y2e{bottom:402.373333pt;}
.y1e{bottom:403.373333pt;}
.ya3{bottom:408.373333pt;}
.y8f{bottom:413.360000pt;}
.yc1{bottom:416.360000pt;}
.y2d{bottom:417.373333pt;}
.y1d{bottom:419.373333pt;}
.ya2{bottom:423.373333pt;}
.y8e{bottom:428.360000pt;}
.yc0{bottom:431.360000pt;}
.ya1{bottom:438.400000pt;}
.y8d{bottom:443.400000pt;}
.ybf{bottom:447.400000pt;}
.ya0{bottom:454.400000pt;}
.y8c{bottom:459.400000pt;}
.ybe{bottom:462.400000pt;}
.y9f{bottom:469.400000pt;}
.y8b{bottom:474.400000pt;}
.ybd{bottom:477.440000pt;}
.y9e{bottom:481.426667pt;}
.y8a{bottom:489.440000pt;}
.ybc{bottom:493.426667pt;}
.y89{bottom:505.426667pt;}
.ybb{bottom:508.426667pt;}
.y88{bottom:520.466667pt;}
.yba{bottom:523.466667pt;}
.y87{bottom:535.466667pt;}
.yb9{bottom:539.466667pt;}
.y85{bottom:548.466667pt;}
.yb8{bottom:554.506667pt;}
.y84{bottom:564.506667pt;}
.yb7{bottom:569.506667pt;}
.y83{bottom:580.506667pt;}
.yb6{bottom:585.506667pt;}
.y82{bottom:596.533333pt;}
.yb5{bottom:600.533333pt;}
.y81{bottom:612.533333pt;}
.y95{bottom:615.533333pt;}
.y80{bottom:628.560000pt;}
.y6a{bottom:631.560000pt;}
.y7f{bottom:644.560000pt;}
.y69{bottom:646.560000pt;}
.y68{bottom:661.600000pt;}
.y7e{bottom:663.600000pt;}
.y67{bottom:677.600000pt;}
.y7d{bottom:679.600000pt;}
.y66{bottom:692.600000pt;}
.y7c{bottom:694.600000pt;}
.y19{bottom:701.626667pt;}
.y9d{bottom:705.626667pt;}
.y65{bottom:707.626667pt;}
.y7b{bottom:709.626667pt;}
.y9c{bottom:720.626667pt;}
.y64{bottom:723.626667pt;}
.y7a{bottom:725.626667pt;}
.yf{bottom:728.626667pt;}
.y9b{bottom:735.666667pt;}
.y63{bottom:738.666667pt;}
.y79{bottom:740.666667pt;}
.y9a{bottom:748.666667pt;}
.y62{bottom:753.666667pt;}
.y78{bottom:755.666667pt;}
.y77{bottom:767.666667pt;}
.y61{bottom:769.666667pt;}
.y60{bottom:784.706667pt;}
.y5f{bottom:799.706667pt;}
.y5e{bottom:815.733333pt;}
.y5d{bottom:830.733333pt;}
.y5c{bottom:845.733333pt;}
.y5b{bottom:861.773333pt;}
.y5a{bottom:876.773333pt;}
.y59{bottom:891.800000pt;}
.yd{bottom:895.800000pt;}
.y58{bottom:907.800000pt;}
.y6{bottom:918.800000pt;}
.y57{bottom:922.840000pt;}
.y56{bottom:937.840000pt;}
.y55{bottom:953.840000pt;}
.y54{bottom:968.866667pt;}
.y53{bottom:983.866667pt;}
.y52{bottom:999.893333pt;}
.y51{bottom:1014.893333pt;}
.h25{height:5.000000pt;}
.h23{height:14.986667pt;}
.h20{height:15.000000pt;}
.h22{height:15.020000pt;}
.h21{height:15.033333pt;}
.h1f{height:20.000000pt;}
.h1e{height:20.033333pt;}
.hb{height:23.000000pt;}
.h1c{height:26.033333pt;}
.h12{height:26.625000pt;}
.h13{height:27.000000pt;}
.h24{height:28.000000pt;}
.h2{height:29.000000pt;}
.h8{height:33.000000pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h26{height:37.857422pt;}
.hd{height:38.289062pt;}
.h11{height:38.625000pt;}
.ha{height:39.000000pt;}
.h17{height:41.843750pt;}
.h1d{height:42.199219pt;}
.h16{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:167.160000pt;}
.h15{height:429.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w11{width:6.000000pt;}
.w2{width:66.100000pt;}
.wa{width:112.133333pt;}
.w4{width:129.133333pt;}
.wb{width:145.200000pt;}
.wc{width:150.200000pt;}
.we{width:155.200000pt;}
.wf{width:177.240000pt;}
.w7{width:190.240000pt;}
.w9{width:243.306667pt;}
.wd{width:330.400000pt;}
.w8{width:474.600000pt;}
.w10{width:518.666667pt;}
.w5{width:535.706667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.000000pt;}
.x1b{left:2.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.x16{left:18.000000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x1a{left:70.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x2d{left:90.099988pt;}
.x11{left:96.100000pt;}
.x30{left:101.133322pt;}
.x13{left:103.100000pt;}
.x27{left:114.133333pt;}
.x12{left:121.140000pt;}
.x31{left:125.166655pt;}
.x19{left:135.159988pt;}
.x10{left:176.206667pt;}
.x2b{left:184.239988pt;}
.x14{left:190.233333pt;}
.x7{left:194.240000pt;}
.xf{left:198.233333pt;}
.x2f{left:207.266667pt;}
.x22{left:212.266655pt;}
.x18{left:214.266655pt;}
.x21{left:229.306655pt;}
.x15{left:255.333333pt;}
.x2e{left:258.333322pt;}
.xb{left:263.360000pt;}
.x26{left:265.333322pt;}
.x29{left:286.373322pt;}
.x9{left:312.400000pt;}
.x1c{left:314.400000pt;}
.xa{left:329.426667pt;}
.xe{left:332.406667pt;}
.xd{left:388.493333pt;}
.x23{left:396.506667pt;}
.xc{left:408.533333pt;}
.x1e{left:427.533333pt;}
.x24{left:552.693333pt;}
.x2c{left:561.733322pt;}
.x2a{left:563.733322pt;}
.x1f{left:573.733333pt;}
.x28{left:607.759988pt;}
.x25{left:617.799988pt;}
.x20{left:640.839988pt;}
.x17{left:646.839988pt;}
.x3{left:663.840000pt;}
}




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