
    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_e3e8133e741d7a468bba24fa.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_32acac46f9c27e223d55078f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_006bf0c62609217d8a2dd00c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ac315a52213ca9de6002ba75.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_014c7e9aad8360bf67fa4078.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_e28ea8b608fba66ac762a553.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_79041c8b7840d4822360fd60.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_15b52746a0a1086c2192473c.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_32bae61a9919bdbabb517d4c.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_3208b5b4a49a2c507a74e976.woff')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_128963d2f12ac19bd2f3efc1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_41f7c0406e94e484c9ea31d7.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_33635ac0107a9ef9b1e31cb7.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_499bfdcc9050faa7cc8a35fc.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fe13429f0d4d725733314cec.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff14{font-family:ff14;line-height:0.682617;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_ed5a6c7d1a8e1e9031fa68fd.woff')format("woff");}.ff15{font-family:ff15;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;}
.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:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-1.596000px;}
.ls1d{letter-spacing:-1.128000px;}
.lsd{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.090000px;}
.lse{letter-spacing:0.690000px;}
.ls14{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls2{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.906500px;}
.ls3{letter-spacing:2.026500px;}
.ls4{letter-spacing:2.146500px;}
.ls1b{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls16{letter-spacing:2.310000px;}
.ls13{letter-spacing:2.370000px;}
.ls12{letter-spacing:2.430000px;}
.ls1f{letter-spacing:3.378000px;}
.ls7{letter-spacing:4.779000px;}
.ls1a{letter-spacing:7.875000px;}
.ls19{letter-spacing:12.360000px;}
.ls1e{letter-spacing:30.360000px;}
.ls18{letter-spacing:30.375000px;}
.ls11{letter-spacing:46.887000px;}
.ls15{letter-spacing:55.737000px;}
.ls1c{letter-spacing:60.387000px;}
.ls9{letter-spacing:64.887000px;}
.ls17{letter-spacing:91.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;}
}
.ws7{word-spacing:-32.994000px;}
.ws6{word-spacing:-16.875000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws8{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-5.623500px;}
._9{margin-left:-4.270500px;}
._2{margin-left:-2.430000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.840000px;}
._4{width:5.160000px;}
._b{width:7.075500px;}
._a{width:8.181000px;}
._8{width:9.454500px;}
._5{width:11.592000px;}
._c{width:13.065000px;}
._7{width:14.412000px;}
._12{width:16.326000px;}
._11{width:17.676000px;}
._e{width:21.376500px;}
._13{width:25.009500px;}
._d{width:26.049000px;}
._14{width:27.187500px;}
._10{width:29.409000px;}
._f{width:30.435000px;}
._15{width:1878.340500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.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;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y3a{bottom:3.390000px;}
.y17{bottom:4.500000px;}
.ye{bottom:11.250000px;}
.y19{bottom:12.420000px;}
.yc{bottom:13.530000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y39{bottom:21.375000px;}
.y3d{bottom:22.500000px;}
.y3c{bottom:25.920000px;}
.y16{bottom:29.280000px;}
.yb{bottom:30.405000px;}
.y38{bottom:38.295000px;}
.y15{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.y14{bottom:55.155000px;}
.y37{bottom:55.170000px;}
.y5{bottom:57.412500px;}
.y28{bottom:64.170000px;}
.y13{bottom:69.825000px;}
.y9{bottom:73.185000px;}
.y36{bottom:73.215000px;}
.y27{bottom:78.840000px;}
.y1{bottom:81.075000px;}
.y12{bottom:88.950000px;}
.y35{bottom:90.090000px;}
.y8{bottom:93.480000px;}
.y26{bottom:97.965000px;}
.y34{bottom:106.965000px;}
.y7{bottom:110.355000px;}
.y11{bottom:114.855000px;}
.y25{bottom:114.870000px;}
.y33{bottom:124.995000px;}
.y96{bottom:128.362500px;}
.y51{bottom:130.612500px;}
.y24{bottom:131.745000px;}
.y10{bottom:139.605000px;}
.yca{bottom:139.612500px;}
.y32{bottom:141.870000px;}
.y95{bottom:145.237500px;}
.y50{bottom:147.487500px;}
.y23{bottom:149.745000px;}
.yc9{bottom:156.480000px;}
.y31{bottom:158.790000px;}
.y94{bottom:162.150000px;}
.y4f{bottom:165.525000px;}
.y22{bottom:166.650000px;}
.yc8{bottom:174.525000px;}
.y30{bottom:176.775000px;}
.y93{bottom:180.150000px;}
.y4e{bottom:183.525000px;}
.y21{bottom:184.650000px;}
.yc7{bottom:191.400000px;}
.y2f{bottom:193.650000px;}
.y92{bottom:197.025000px;}
.y20{bottom:201.570000px;}
.y4d{bottom:202.695000px;}
.yc6{bottom:208.320000px;}
.y2e{bottom:210.570000px;}
.y91{bottom:213.945000px;}
.y1f{bottom:219.570000px;}
.yc5{bottom:226.320000px;}
.y2d{bottom:228.570000px;}
.y90{bottom:233.070000px;}
.y1e{bottom:236.445000px;}
.yc4{bottom:243.225000px;}
.y2c{bottom:245.475000px;}
.y8f{bottom:251.100000px;}
.y1d{bottom:253.350000px;}
.y4c{bottom:254.475000px;}
.yc3{bottom:260.100000px;}
.y2b{bottom:262.350000px;}
.y8e{bottom:267.975000px;}
.y4b{bottom:271.350000px;}
.yc2{bottom:278.100000px;}
.y2a{bottom:280.395000px;}
.y1c{bottom:281.520000px;}
.y8d{bottom:286.005000px;}
.y4a{bottom:288.270000px;}
.yc1{bottom:295.020000px;}
.y29{bottom:297.270000px;}
.y1b{bottom:299.520000px;}
.y8c{bottom:302.880000px;}
.y49{bottom:306.255000px;}
.yc0{bottom:311.895000px;}
.y8b{bottom:319.755000px;}
.y48{bottom:323.130000px;}
.ybf{bottom:329.925000px;}
.y8a{bottom:337.800000px;}
.y47{bottom:340.050000px;}
.ybe{bottom:346.800000px;}
.y89{bottom:354.675000px;}
.y46{bottom:358.050000px;}
.ybd{bottom:363.675000px;}
.y88{bottom:371.580000px;}
.y45{bottom:374.955000px;}
.ybc{bottom:381.705000px;}
.y87{bottom:389.595000px;}
.y44{bottom:391.830000px;}
.ybb{bottom:398.580000px;}
.y86{bottom:406.470000px;}
.y43{bottom:409.875000px;}
.yba{bottom:415.500000px;}
.y7d{bottom:423.375000px;}
.y42{bottom:426.750000px;}
.yb9{bottom:433.500000px;}
.y7c{bottom:440.250000px;}
.y85{bottom:441.375000px;}
.y41{bottom:443.625000px;}
.yb8{bottom:450.375000px;}
.y7b{bottom:458.280000px;}
.y40{bottom:461.655000px;}
.yb7{bottom:467.295000px;}
.y84{bottom:475.155000px;}
.y7a{bottom:477.420000px;}
.y3f{bottom:478.530000px;}
.yb6{bottom:485.280000px;}
.y83{bottom:493.200000px;}
.y79{bottom:494.325000px;}
.y3e{bottom:495.450000px;}
.yb5{bottom:502.200000px;}
.y3b{bottom:510.075000px;}
.y78{bottom:511.200000px;}
.yb4{bottom:519.075000px;}
.y82{bottom:526.950000px;}
.y77{bottom:529.200000px;}
.yb3{bottom:537.120000px;}
.y81{bottom:544.980000px;}
.y1a{bottom:547.230000px;}
.y76{bottom:547.245000px;}
.yb2{bottom:553.995000px;}
.y80{bottom:561.855000px;}
.y75{bottom:564.120000px;}
.yb1{bottom:570.870000px;}
.y7f{bottom:575.355000px;}
.y74{bottom:581.025000px;}
.yb0{bottom:588.900000px;}
.y73{bottom:600.150000px;}
.yaf{bottom:605.775000px;}
.y72{bottom:617.025000px;}
.yae{bottom:622.695000px;}
.y71{bottom:631.695000px;}
.yad{bottom:640.695000px;}
.y70{bottom:649.695000px;}
.yac{bottom:657.570000px;}
.y6f{bottom:667.725000px;}
.yab{bottom:674.475000px;}
.y6e{bottom:685.725000px;}
.yaa{bottom:692.475000px;}
.y6d{bottom:707.130000px;}
.ya9{bottom:709.395000px;}
.y6c{bottom:724.005000px;}
.ya8{bottom:726.270000px;}
.y6b{bottom:742.005000px;}
.ya7{bottom:744.300000px;}
.y6a{bottom:758.925000px;}
.ya6{bottom:761.175000px;}
.y69{bottom:775.800000px;}
.ya5{bottom:778.050000px;}
.y68{bottom:793.830000px;}
.ya4{bottom:796.080000px;}
.y67{bottom:810.705000px;}
.ya3{bottom:812.955000px;}
.y66{bottom:827.625000px;}
.ya2{bottom:829.875000px;}
.y65{bottom:845.625000px;}
.ya1{bottom:847.875000px;}
.y18{bottom:858.000000px;}
.y64{bottom:862.500000px;}
.ya0{bottom:864.750000px;}
.y7e{bottom:871.545000px;}
.y63{bottom:879.420000px;}
.y9f{bottom:881.670000px;}
.yf{bottom:887.295000px;}
.y62{bottom:897.420000px;}
.y9e{bottom:899.670000px;}
.y61{bottom:914.325000px;}
.y9d{bottom:916.575000px;}
.y60{bottom:931.200000px;}
.y9c{bottom:933.450000px;}
.y5f{bottom:949.200000px;}
.y9b{bottom:951.450000px;}
.y5e{bottom:966.120000px;}
.y9a{bottom:968.370000px;}
.y5d{bottom:982.995000px;}
.y99{bottom:985.245000px;}
.y5c{bottom:1001.025000px;}
.y98{bottom:1003.275000px;}
.y5b{bottom:1019.025000px;}
.y97{bottom:1020.150000px;}
.y5a{bottom:1037.070000px;}
.yd{bottom:1041.570000px;}
.y59{bottom:1055.070000px;}
.y6{bottom:1067.445000px;}
.y58{bottom:1071.945000px;}
.y57{bottom:1088.850000px;}
.y56{bottom:1106.850000px;}
.y55{bottom:1123.755000px;}
.y54{bottom:1140.630000px;}
.y53{bottom:1158.630000px;}
.y52{bottom:1175.550000px;}
.h1f{height:16.875000px;}
.h1e{height:16.912500px;}
.hb{height:25.875000px;}
.h13{height:29.287500px;}
.h12{height:29.953125px;}
.h2{height:32.625000px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h1d{height:42.589600px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h18{height:44.589111px;}
.h17{height:47.074219px;}
.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.597500px;}
.hc{height:154.275000px;}
.h15{height:310.770000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wc{width:73.237500px;}
.w2{width:74.362500px;}
.w4{width:152.055000px;}
.wa{width:191.475000px;}
.wb{width:215.130000px;}
.w7{width:223.020000px;}
.w9{width:264.720000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x14{left:12.420000px;}
.xe{left:51.787500px;}
.xf{left:69.825000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x15{left:108.149987px;}
.x1c{left:135.187487px;}
.x10{left:137.407500px;}
.x16{left:162.224987px;}
.x12{left:214.012500px;}
.x7{left:225.300000px;}
.x11{left:262.432500px;}
.xb{left:290.625000px;}
.x13{left:296.250000px;}
.x18{left:339.075000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x17{left:378.494987px;}
.xc{left:453.945000px;}
.x1a{left:531.675000px;}
.x1d{left:635.324987px;}
.x1e{left:655.574987px;}
.x3{left:746.820000px;}
.x1b{left:747.945000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-1.418667pt;}
.ls1d{letter-spacing:-1.002667pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.613333pt;}
.ls14{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.801333pt;}
.ls4{letter-spacing:1.908000pt;}
.ls1b{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls16{letter-spacing:2.053333pt;}
.ls13{letter-spacing:2.106667pt;}
.ls12{letter-spacing:2.160000pt;}
.ls1f{letter-spacing:3.002667pt;}
.ls7{letter-spacing:4.248000pt;}
.ls1a{letter-spacing:7.000000pt;}
.ls19{letter-spacing:10.986667pt;}
.ls1e{letter-spacing:26.986667pt;}
.ls18{letter-spacing:27.000000pt;}
.ls11{letter-spacing:41.677333pt;}
.ls15{letter-spacing:49.544000pt;}
.ls1c{letter-spacing:53.677333pt;}
.ls9{letter-spacing:57.677333pt;}
.ls17{letter-spacing:81.677333pt;}
.ws7{word-spacing:-29.328000pt;}
.ws6{word-spacing:-15.000000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-4.998667pt;}
._9{margin-left:-3.796000pt;}
._2{margin-left:-2.160000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:3.413333pt;}
._4{width:4.586667pt;}
._b{width:6.289333pt;}
._a{width:7.272000pt;}
._8{width:8.404000pt;}
._5{width:10.304000pt;}
._c{width:11.613333pt;}
._7{width:12.810667pt;}
._12{width:14.512000pt;}
._11{width:15.712000pt;}
._e{width:19.001333pt;}
._13{width:22.230667pt;}
._d{width:23.154667pt;}
._14{width:24.166667pt;}
._10{width:26.141333pt;}
._f{width:27.053333pt;}
._15{width:1669.636000pt;}
.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;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y3a{bottom:3.013333pt;}
.y17{bottom:4.000000pt;}
.ye{bottom:10.000000pt;}
.y19{bottom:11.040000pt;}
.yc{bottom:12.026667pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y39{bottom:19.000000pt;}
.y3d{bottom:20.000000pt;}
.y3c{bottom:23.040000pt;}
.y16{bottom:26.026667pt;}
.yb{bottom:27.026667pt;}
.y38{bottom:34.040000pt;}
.y15{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.y14{bottom:49.026667pt;}
.y37{bottom:49.040000pt;}
.y5{bottom:51.033333pt;}
.y28{bottom:57.040000pt;}
.y13{bottom:62.066667pt;}
.y9{bottom:65.053333pt;}
.y36{bottom:65.080000pt;}
.y27{bottom:70.080000pt;}
.y1{bottom:72.066667pt;}
.y12{bottom:79.066667pt;}
.y35{bottom:80.080000pt;}
.y8{bottom:83.093333pt;}
.y26{bottom:87.080000pt;}
.y34{bottom:95.080000pt;}
.y7{bottom:98.093333pt;}
.y11{bottom:102.093333pt;}
.y25{bottom:102.106667pt;}
.y33{bottom:111.106667pt;}
.y96{bottom:114.100000pt;}
.y51{bottom:116.100000pt;}
.y24{bottom:117.106667pt;}
.y10{bottom:124.093333pt;}
.yca{bottom:124.100000pt;}
.y32{bottom:126.106667pt;}
.y95{bottom:129.100000pt;}
.y50{bottom:131.100000pt;}
.y23{bottom:133.106667pt;}
.yc9{bottom:139.093333pt;}
.y31{bottom:141.146667pt;}
.y94{bottom:144.133333pt;}
.y4f{bottom:147.133333pt;}
.y22{bottom:148.133333pt;}
.yc8{bottom:155.133333pt;}
.y30{bottom:157.133333pt;}
.y93{bottom:160.133333pt;}
.y4e{bottom:163.133333pt;}
.y21{bottom:164.133333pt;}
.yc7{bottom:170.133333pt;}
.y2f{bottom:172.133333pt;}
.y92{bottom:175.133333pt;}
.y20{bottom:179.173333pt;}
.y4d{bottom:180.173333pt;}
.yc6{bottom:185.173333pt;}
.y2e{bottom:187.173333pt;}
.y91{bottom:190.173333pt;}
.y1f{bottom:195.173333pt;}
.yc5{bottom:201.173333pt;}
.y2d{bottom:203.173333pt;}
.y90{bottom:207.173333pt;}
.y1e{bottom:210.173333pt;}
.yc4{bottom:216.200000pt;}
.y2c{bottom:218.200000pt;}
.y8f{bottom:223.200000pt;}
.y1d{bottom:225.200000pt;}
.y4c{bottom:226.200000pt;}
.yc3{bottom:231.200000pt;}
.y2b{bottom:233.200000pt;}
.y8e{bottom:238.200000pt;}
.y4b{bottom:241.200000pt;}
.yc2{bottom:247.200000pt;}
.y2a{bottom:249.240000pt;}
.y1c{bottom:250.240000pt;}
.y8d{bottom:254.226667pt;}
.y4a{bottom:256.240000pt;}
.yc1{bottom:262.240000pt;}
.y29{bottom:264.240000pt;}
.y1b{bottom:266.240000pt;}
.y8c{bottom:269.226667pt;}
.y49{bottom:272.226667pt;}
.yc0{bottom:277.240000pt;}
.y8b{bottom:284.226667pt;}
.y48{bottom:287.226667pt;}
.ybf{bottom:293.266667pt;}
.y8a{bottom:300.266667pt;}
.y47{bottom:302.266667pt;}
.ybe{bottom:308.266667pt;}
.y89{bottom:315.266667pt;}
.y46{bottom:318.266667pt;}
.ybd{bottom:323.266667pt;}
.y88{bottom:330.293333pt;}
.y45{bottom:333.293333pt;}
.ybc{bottom:339.293333pt;}
.y87{bottom:346.306667pt;}
.y44{bottom:348.293333pt;}
.ybb{bottom:354.293333pt;}
.y86{bottom:361.306667pt;}
.y43{bottom:364.333333pt;}
.yba{bottom:369.333333pt;}
.y7d{bottom:376.333333pt;}
.y42{bottom:379.333333pt;}
.yb9{bottom:385.333333pt;}
.y7c{bottom:391.333333pt;}
.y85{bottom:392.333333pt;}
.y41{bottom:394.333333pt;}
.yb8{bottom:400.333333pt;}
.y7b{bottom:407.360000pt;}
.y40{bottom:410.360000pt;}
.yb7{bottom:415.373333pt;}
.y84{bottom:422.360000pt;}
.y7a{bottom:424.373333pt;}
.y3f{bottom:425.360000pt;}
.yb6{bottom:431.360000pt;}
.y83{bottom:438.400000pt;}
.y79{bottom:439.400000pt;}
.y3e{bottom:440.400000pt;}
.yb5{bottom:446.400000pt;}
.y3b{bottom:453.400000pt;}
.y78{bottom:454.400000pt;}
.yb4{bottom:461.400000pt;}
.y82{bottom:468.400000pt;}
.y77{bottom:470.400000pt;}
.yb3{bottom:477.440000pt;}
.y81{bottom:484.426667pt;}
.y1a{bottom:486.426667pt;}
.y76{bottom:486.440000pt;}
.yb2{bottom:492.440000pt;}
.y80{bottom:499.426667pt;}
.y75{bottom:501.440000pt;}
.yb1{bottom:507.440000pt;}
.y7f{bottom:511.426667pt;}
.y74{bottom:516.466667pt;}
.yb0{bottom:523.466667pt;}
.y73{bottom:533.466667pt;}
.yaf{bottom:538.466667pt;}
.y72{bottom:548.466667pt;}
.yae{bottom:553.506667pt;}
.y71{bottom:561.506667pt;}
.yad{bottom:569.506667pt;}
.y70{bottom:577.506667pt;}
.yac{bottom:584.506667pt;}
.y6f{bottom:593.533333pt;}
.yab{bottom:599.533333pt;}
.y6e{bottom:609.533333pt;}
.yaa{bottom:615.533333pt;}
.y6d{bottom:628.560000pt;}
.ya9{bottom:630.573333pt;}
.y6c{bottom:643.560000pt;}
.ya8{bottom:645.573333pt;}
.y6b{bottom:659.560000pt;}
.ya7{bottom:661.600000pt;}
.y6a{bottom:674.600000pt;}
.ya6{bottom:676.600000pt;}
.y69{bottom:689.600000pt;}
.ya5{bottom:691.600000pt;}
.y68{bottom:705.626667pt;}
.ya4{bottom:707.626667pt;}
.y67{bottom:720.626667pt;}
.ya3{bottom:722.626667pt;}
.y66{bottom:735.666667pt;}
.ya2{bottom:737.666667pt;}
.y65{bottom:751.666667pt;}
.ya1{bottom:753.666667pt;}
.y18{bottom:762.666667pt;}
.y64{bottom:766.666667pt;}
.ya0{bottom:768.666667pt;}
.y7e{bottom:774.706667pt;}
.y63{bottom:781.706667pt;}
.y9f{bottom:783.706667pt;}
.yf{bottom:788.706667pt;}
.y62{bottom:797.706667pt;}
.y9e{bottom:799.706667pt;}
.y61{bottom:812.733333pt;}
.y9d{bottom:814.733333pt;}
.y60{bottom:827.733333pt;}
.y9c{bottom:829.733333pt;}
.y5f{bottom:843.733333pt;}
.y9b{bottom:845.733333pt;}
.y5e{bottom:858.773333pt;}
.y9a{bottom:860.773333pt;}
.y5d{bottom:873.773333pt;}
.y99{bottom:875.773333pt;}
.y5c{bottom:889.800000pt;}
.y98{bottom:891.800000pt;}
.y5b{bottom:905.800000pt;}
.y97{bottom:906.800000pt;}
.y5a{bottom:921.840000pt;}
.yd{bottom:925.840000pt;}
.y59{bottom:937.840000pt;}
.y6{bottom:948.840000pt;}
.y58{bottom:952.840000pt;}
.y57{bottom:967.866667pt;}
.y56{bottom:983.866667pt;}
.y55{bottom:998.893333pt;}
.y54{bottom:1013.893333pt;}
.y53{bottom:1029.893333pt;}
.y52{bottom:1044.933333pt;}
.h1f{height:15.000000pt;}
.h1e{height:15.033333pt;}
.hb{height:23.000000pt;}
.h13{height:26.033333pt;}
.h12{height:26.625000pt;}
.h2{height:29.000000pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h1d{height:37.857422pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h18{height:39.634766pt;}
.h17{height:41.843750pt;}
.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.086667pt;}
.hc{height:137.133333pt;}
.h15{height:276.240000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wc{width:65.100000pt;}
.w2{width:66.100000pt;}
.w4{width:135.160000pt;}
.wa{width:170.200000pt;}
.wb{width:191.226667pt;}
.w7{width:198.240000pt;}
.w9{width:235.306667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x14{left:11.040000pt;}
.xe{left:46.033333pt;}
.xf{left:62.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x15{left:96.133322pt;}
.x1c{left:120.166655pt;}
.x10{left:122.140000pt;}
.x16{left:144.199988pt;}
.x12{left:190.233333pt;}
.x7{left:200.266667pt;}
.x11{left:233.273333pt;}
.xb{left:258.333333pt;}
.x13{left:263.333333pt;}
.x18{left:301.400000pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x17{left:336.439988pt;}
.xc{left:403.506667pt;}
.x1a{left:472.600000pt;}
.x1d{left:564.733322pt;}
.x1e{left:582.733322pt;}
.x3{left:663.840000pt;}
.x1b{left:664.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; }
  