
    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_a17796aefd43824e8458027e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.632000;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_a1f75840c8a382d119f870c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_32ef89ddd4021281737092ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_96906161a8d9a2af40c52e80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.632000;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_7b9b4170dd697f6d22e9dec6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cb60b9eaaa96e7886938677b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_96906161a8d9a2af40c52e80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.632000;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_11934db430595118c92f97a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_a88ad2a6a344ba1c1484ad62.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_61c6b0ecbbb3d7b0d50aa257.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.625000;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_eb67145096238e6faf476d4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_0d890827a6afad650aec4a90.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708000;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_864e327e49acb2587e712d0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693000;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_e82f4c8077f8fd2238a2f671.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691000;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_28e2fe4915efa76b26de1570.woff2')format("woff");}.fff{font-family:fff;line-height:0.625000;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_7f058e6cf236ed6a3358cb24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.850000;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_60257968c533340ba5a16760.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893000;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_15cc17979a30bec1381e8368.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.625000;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_4fc898a65407fef3d29455ae.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1f{letter-spacing:-2.488320px;}
.ls1a{letter-spacing:-0.426240px;}
.ls1d{letter-spacing:-0.403200px;}
.ls1c{letter-spacing:-0.374400px;}
.ls2{letter-spacing:-0.338688px;}
.ls1e{letter-spacing:-0.322560px;}
.ls3{letter-spacing:-0.260064px;}
.ls9{letter-spacing:-0.241920px;}
.ls1b{letter-spacing:-0.201600px;}
.ls19{letter-spacing:-0.198720px;}
.ls4{letter-spacing:-0.145152px;}
.ls5{letter-spacing:-0.096768px;}
.ls7{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000600px;}
.lse{letter-spacing:0.010800px;}
.lsd{letter-spacing:0.011400px;}
.ls13{letter-spacing:0.012000px;}
.ls17{letter-spacing:0.012600px;}
.ls0{letter-spacing:0.014400px;}
.lsc{letter-spacing:0.024600px;}
.ls14{letter-spacing:0.028200px;}
.ls15{letter-spacing:0.036600px;}
.ls10{letter-spacing:0.038400px;}
.ls18{letter-spacing:0.040200px;}
.ls11{letter-spacing:0.057000px;}
.ls12{letter-spacing:0.064200px;}
.lsa{letter-spacing:0.161568px;}
.ls6{letter-spacing:0.359136px;}
.lsb{letter-spacing:0.359760px;}
.ls8{letter-spacing:2.880000px;}
.lsf{letter-spacing:2076.336000px;}
.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:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.813440px;}
.ws2{word-spacing:-16.716672px;}
.ws4{word-spacing:-16.571520px;}
.ws0{word-spacing:-16.553376px;}
.wsb{word-spacing:-14.400000px;}
.wsa{word-spacing:-14.198400px;}
.wsd{word-spacing:-14.025600px;}
.wsc{word-spacing:-13.996800px;}
.wse{word-spacing:-13.973760px;}
.ws7{word-spacing:-0.209088px;}
.wsf{word-spacing:-0.057600px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.132480px;}
.ws9{word-spacing:0.368640px;}
._9{margin-left:-4.428000px;}
._8{margin-left:-3.247200px;}
._c{margin-left:-2.208960px;}
._1{margin-left:-1.149120px;}
._0{width:1.149120px;}
._2{width:2.839680px;}
._3{width:4.003200px;}
._7{width:5.011200px;}
._5{width:6.868800px;}
._4{width:8.236800px;}
._6{width:9.388800px;}
._a{width:10.425600px;}
._13{width:11.714400px;}
._11{width:12.722400px;}
._12{width:14.623200px;}
._f{width:15.984000px;}
._b{width:19.065600px;}
._d{width:20.599200px;}
._10{width:22.140000px;}
._e{width:23.976000px;}
._1a{width:29.023200px;}
._17{width:30.412800px;}
._22{width:42.811200px;}
._15{width:47.620800px;}
._21{width:75.384000px;}
._16{width:78.753600px;}
._1e{width:110.736000px;}
._14{width:128.520000px;}
._1d{width:304.848000px;}
._1b{width:793.800360px;}
._20{width:1428.268200px;}
._19{width:1528.004520px;}
._1c{width:1564.456320px;}
._23{width:1643.583960px;}
._1f{width:1934.494920px;}
._18{width:2308.392600px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs7{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.ye{bottom:-2.075850px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.564150px;}
.y2{bottom:4.164150px;}
.y9{bottom:12.204150px;}
.yd{bottom:18.444150px;}
.y4{bottom:27.916950px;}
.y5{bottom:38.004150px;}
.yb{bottom:47.004150px;}
.y3{bottom:47.724150px;}
.y8{bottom:60.000000px;}
.y7{bottom:97.404150px;}
.y76{bottom:119.364150px;}
.y4a{bottom:125.484150px;}
.y2d{bottom:129.804150px;}
.y75{bottom:150.324150px;}
.y56{bottom:151.764150px;}
.y49{bottom:156.444150px;}
.y2c{bottom:160.764150px;}
.y74{bottom:181.284150px;}
.y55{bottom:182.724150px;}
.y48{bottom:187.764150px;}
.y2b{bottom:192.084150px;}
.y73{bottom:212.604150px;}
.y54{bottom:213.684150px;}
.y47{bottom:218.724150px;}
.y2a{bottom:223.044150px;}
.y72{bottom:243.564150px;}
.y53{bottom:244.644150px;}
.y46{bottom:249.684150px;}
.y29{bottom:254.004150px;}
.y71{bottom:274.524150px;}
.y52{bottom:275.964150px;}
.y45{bottom:280.644150px;}
.y28{bottom:284.964150px;}
.y70{bottom:305.484150px;}
.y51{bottom:306.924150px;}
.y44{bottom:311.964150px;}
.y27{bottom:315.924150px;}
.y6f{bottom:336.804150px;}
.y50{bottom:337.884150px;}
.y43{bottom:342.924150px;}
.y26{bottom:347.244150px;}
.y6e{bottom:367.764150px;}
.y42{bottom:373.884150px;}
.y25{bottom:378.204150px;}
.y4f{bottom:386.844150px;}
.y6d{bottom:398.724150px;}
.y41{bottom:404.844150px;}
.y24{bottom:409.164150px;}
.y4e{bottom:417.804150px;}
.y6c{bottom:422.484150px;}
.y40{bottom:435.804150px;}
.y23{bottom:440.124150px;}
.y4d{bottom:449.124150px;}
.y6b{bottom:453.444150px;}
.y3f{bottom:467.124150px;}
.y22{bottom:471.444150px;}
.y4c{bottom:480.084150px;}
.y6a{bottom:484.764150px;}
.y3e{bottom:498.084150px;}
.y21{bottom:502.404150px;}
.y69{bottom:508.524150px;}
.y4b{bottom:511.044150px;}
.y3d{bottom:529.044150px;}
.y20{bottom:533.364150px;}
.y68{bottom:539.484150px;}
.y3c{bottom:560.004150px;}
.y1f{bottom:564.324150px;}
.y67{bottom:570.444150px;}
.y3b{bottom:591.324150px;}
.y66{bottom:594.204150px;}
.y1e{bottom:595.644150px;}
.y3a{bottom:622.284150px;}
.y65{bottom:625.524150px;}
.y1d{bottom:626.604150px;}
.y39{bottom:653.244150px;}
.y64{bottom:656.484150px;}
.y1c{bottom:657.564150px;}
.y38{bottom:684.204150px;}
.y63{bottom:687.444150px;}
.y1b{bottom:688.524150px;}
.y62{bottom:711.204150px;}
.y37{bottom:715.524150px;}
.y1a{bottom:719.844150px;}
.y61{bottom:742.164150px;}
.y36{bottom:746.484150px;}
.y19{bottom:750.804150px;}
.y60{bottom:773.484150px;}
.y35{bottom:777.444150px;}
.y18{bottom:781.764150px;}
.y5f{bottom:797.244150px;}
.y34{bottom:808.404150px;}
.y17{bottom:812.724150px;}
.y5e{bottom:828.204150px;}
.y33{bottom:839.724150px;}
.y16{bottom:844.044150px;}
.y5d{bottom:859.164150px;}
.y32{bottom:870.684150px;}
.y15{bottom:875.004150px;}
.y5c{bottom:890.484150px;}
.y31{bottom:901.644150px;}
.y14{bottom:905.964150px;}
.y5b{bottom:914.244150px;}
.y13{bottom:929.004150px;}
.y30{bottom:932.604150px;}
.y5a{bottom:936.924150px;}
.y12{bottom:949.884150px;}
.y2f{bottom:963.924150px;}
.y11{bottom:968.604150px;}
.y59{bottom:975.084150px;}
.y10{bottom:992.364150px;}
.y2e{bottom:994.884150px;}
.y58{bottom:996.324150px;}
.y57{bottom:1018.644150px;}
.yf{bottom:1025.844150px;}
.y6{bottom:1046.004150px;}
.y1{bottom:1053.000000px;}
.yc{bottom:1074.000000px;}
.ha{height:18.900000px;}
.h4{height:19.111680px;}
.h6{height:33.000000px;}
.h5{height:41.040000px;}
.h3{height:44.029440px;}
.h2{height:45.504000px;}
.h8{height:48.816000px;}
.h7{height:50.040000px;}
.hc{height:51.609600px;}
.h9{height:56.626560px;}
.hb{height:57.458880px;}
.h1{height:84.000000px;}
.h0{height:1188.000000px;}
.w3{width:111.000000px;}
.w1{width:112.500000px;}
.w4{width:228.000000px;}
.w2{width:486.000000px;}
.w5{width:706.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:8.855700px;}
.xa{left:58.415700px;}
.x2{left:67.175550px;}
.x4{left:70.782300px;}
.x7{left:102.411000px;}
.x1{left:106.500000px;}
.xd{left:108.000000px;}
.xf{left:161.057700px;}
.x5{left:205.032780px;}
.x3{left:217.500000px;}
.xc{left:218.526150px;}
.x9{left:333.000000px;}
.x13{left:409.313700px;}
.x15{left:412.713750px;}
.x14{left:418.025700px;}
.x16{left:459.725400px;}
.xb{left:559.500000px;}
.x12{left:688.678500px;}
.x11{left:692.011500px;}
.x10{left:696.178800px;}
.xe{left:699.511350px;}
.x6{left:702.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1f{letter-spacing:-2.211840pt;}
.ls1a{letter-spacing:-0.378880pt;}
.ls1d{letter-spacing:-0.358400pt;}
.ls1c{letter-spacing:-0.332800pt;}
.ls2{letter-spacing:-0.301056pt;}
.ls1e{letter-spacing:-0.286720pt;}
.ls3{letter-spacing:-0.231168pt;}
.ls9{letter-spacing:-0.215040pt;}
.ls1b{letter-spacing:-0.179200pt;}
.ls19{letter-spacing:-0.176640pt;}
.ls4{letter-spacing:-0.129024pt;}
.ls5{letter-spacing:-0.086016pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000533pt;}
.lse{letter-spacing:0.009600pt;}
.lsd{letter-spacing:0.010133pt;}
.ls13{letter-spacing:0.010667pt;}
.ls17{letter-spacing:0.011200pt;}
.ls0{letter-spacing:0.012800pt;}
.lsc{letter-spacing:0.021867pt;}
.ls14{letter-spacing:0.025067pt;}
.ls15{letter-spacing:0.032533pt;}
.ls10{letter-spacing:0.034133pt;}
.ls18{letter-spacing:0.035733pt;}
.ls11{letter-spacing:0.050667pt;}
.ls12{letter-spacing:0.057067pt;}
.lsa{letter-spacing:0.143616pt;}
.ls6{letter-spacing:0.319232pt;}
.lsb{letter-spacing:0.319787pt;}
.ls8{letter-spacing:2.560000pt;}
.lsf{letter-spacing:1845.632000pt;}
.ws5{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.945280pt;}
.ws2{word-spacing:-14.859264pt;}
.ws4{word-spacing:-14.730240pt;}
.ws0{word-spacing:-14.714112pt;}
.wsb{word-spacing:-12.800000pt;}
.wsa{word-spacing:-12.620800pt;}
.wsd{word-spacing:-12.467200pt;}
.wsc{word-spacing:-12.441600pt;}
.wse{word-spacing:-12.421120pt;}
.ws7{word-spacing:-0.185856pt;}
.wsf{word-spacing:-0.051200pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.117760pt;}
.ws9{word-spacing:0.327680pt;}
._9{margin-left:-3.936000pt;}
._8{margin-left:-2.886400pt;}
._c{margin-left:-1.963520pt;}
._1{margin-left:-1.021440pt;}
._0{width:1.021440pt;}
._2{width:2.524160pt;}
._3{width:3.558400pt;}
._7{width:4.454400pt;}
._5{width:6.105600pt;}
._4{width:7.321600pt;}
._6{width:8.345600pt;}
._a{width:9.267200pt;}
._13{width:10.412800pt;}
._11{width:11.308800pt;}
._12{width:12.998400pt;}
._f{width:14.208000pt;}
._b{width:16.947200pt;}
._d{width:18.310400pt;}
._10{width:19.680000pt;}
._e{width:21.312000pt;}
._1a{width:25.798400pt;}
._17{width:27.033600pt;}
._22{width:38.054400pt;}
._15{width:42.329600pt;}
._21{width:67.008000pt;}
._16{width:70.003200pt;}
._1e{width:98.432000pt;}
._14{width:114.240000pt;}
._1d{width:270.976000pt;}
._1b{width:705.600320pt;}
._20{width:1269.571733pt;}
._19{width:1358.226240pt;}
._1c{width:1390.627840pt;}
._23{width:1460.963520pt;}
._1f{width:1719.551040pt;}
._18{width:2051.904533pt;}
.fs2{font-size:26.880000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs7{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.ye{bottom:-1.845200pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.168133pt;}
.y2{bottom:3.701467pt;}
.y9{bottom:10.848133pt;}
.yd{bottom:16.394800pt;}
.y4{bottom:24.815067pt;}
.y5{bottom:33.781467pt;}
.yb{bottom:41.781467pt;}
.y3{bottom:42.421467pt;}
.y8{bottom:53.333333pt;}
.y7{bottom:86.581467pt;}
.y76{bottom:106.101467pt;}
.y4a{bottom:111.541467pt;}
.y2d{bottom:115.381467pt;}
.y75{bottom:133.621467pt;}
.y56{bottom:134.901467pt;}
.y49{bottom:139.061467pt;}
.y2c{bottom:142.901467pt;}
.y74{bottom:161.141467pt;}
.y55{bottom:162.421467pt;}
.y48{bottom:166.901467pt;}
.y2b{bottom:170.741467pt;}
.y73{bottom:188.981467pt;}
.y54{bottom:189.941467pt;}
.y47{bottom:194.421467pt;}
.y2a{bottom:198.261467pt;}
.y72{bottom:216.501467pt;}
.y53{bottom:217.461467pt;}
.y46{bottom:221.941467pt;}
.y29{bottom:225.781467pt;}
.y71{bottom:244.021467pt;}
.y52{bottom:245.301467pt;}
.y45{bottom:249.461467pt;}
.y28{bottom:253.301467pt;}
.y70{bottom:271.541467pt;}
.y51{bottom:272.821467pt;}
.y44{bottom:277.301467pt;}
.y27{bottom:280.821467pt;}
.y6f{bottom:299.381467pt;}
.y50{bottom:300.341467pt;}
.y43{bottom:304.821467pt;}
.y26{bottom:308.661467pt;}
.y6e{bottom:326.901467pt;}
.y42{bottom:332.341467pt;}
.y25{bottom:336.181467pt;}
.y4f{bottom:343.861467pt;}
.y6d{bottom:354.421467pt;}
.y41{bottom:359.861467pt;}
.y24{bottom:363.701467pt;}
.y4e{bottom:371.381467pt;}
.y6c{bottom:375.541467pt;}
.y40{bottom:387.381467pt;}
.y23{bottom:391.221467pt;}
.y4d{bottom:399.221467pt;}
.y6b{bottom:403.061467pt;}
.y3f{bottom:415.221467pt;}
.y22{bottom:419.061467pt;}
.y4c{bottom:426.741467pt;}
.y6a{bottom:430.901467pt;}
.y3e{bottom:442.741467pt;}
.y21{bottom:446.581467pt;}
.y69{bottom:452.021467pt;}
.y4b{bottom:454.261467pt;}
.y3d{bottom:470.261467pt;}
.y20{bottom:474.101467pt;}
.y68{bottom:479.541467pt;}
.y3c{bottom:497.781467pt;}
.y1f{bottom:501.621467pt;}
.y67{bottom:507.061467pt;}
.y3b{bottom:525.621467pt;}
.y66{bottom:528.181467pt;}
.y1e{bottom:529.461467pt;}
.y3a{bottom:553.141467pt;}
.y65{bottom:556.021467pt;}
.y1d{bottom:556.981467pt;}
.y39{bottom:580.661467pt;}
.y64{bottom:583.541467pt;}
.y1c{bottom:584.501467pt;}
.y38{bottom:608.181467pt;}
.y63{bottom:611.061467pt;}
.y1b{bottom:612.021467pt;}
.y62{bottom:632.181467pt;}
.y37{bottom:636.021467pt;}
.y1a{bottom:639.861467pt;}
.y61{bottom:659.701467pt;}
.y36{bottom:663.541467pt;}
.y19{bottom:667.381467pt;}
.y60{bottom:687.541467pt;}
.y35{bottom:691.061467pt;}
.y18{bottom:694.901467pt;}
.y5f{bottom:708.661467pt;}
.y34{bottom:718.581467pt;}
.y17{bottom:722.421467pt;}
.y5e{bottom:736.181467pt;}
.y33{bottom:746.421467pt;}
.y16{bottom:750.261467pt;}
.y5d{bottom:763.701467pt;}
.y32{bottom:773.941467pt;}
.y15{bottom:777.781467pt;}
.y5c{bottom:791.541467pt;}
.y31{bottom:801.461467pt;}
.y14{bottom:805.301467pt;}
.y5b{bottom:812.661467pt;}
.y13{bottom:825.781467pt;}
.y30{bottom:828.981467pt;}
.y5a{bottom:832.821467pt;}
.y12{bottom:844.341467pt;}
.y2f{bottom:856.821467pt;}
.y11{bottom:860.981467pt;}
.y59{bottom:866.741467pt;}
.y10{bottom:882.101467pt;}
.y2e{bottom:884.341467pt;}
.y58{bottom:885.621467pt;}
.y57{bottom:905.461467pt;}
.yf{bottom:911.861467pt;}
.y6{bottom:929.781467pt;}
.y1{bottom:936.000000pt;}
.yc{bottom:954.666667pt;}
.ha{height:16.800000pt;}
.h4{height:16.988160pt;}
.h6{height:29.333333pt;}
.h5{height:36.480000pt;}
.h3{height:39.137280pt;}
.h2{height:40.448000pt;}
.h8{height:43.392000pt;}
.h7{height:44.480000pt;}
.hc{height:45.875200pt;}
.h9{height:50.334720pt;}
.hb{height:51.074560pt;}
.h1{height:74.666667pt;}
.h0{height:1056.000000pt;}
.w3{width:98.666667pt;}
.w1{width:100.000000pt;}
.w4{width:202.666667pt;}
.w2{width:432.000000pt;}
.w5{width:628.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.871733pt;}
.xa{left:51.925067pt;}
.x2{left:59.711600pt;}
.x4{left:62.917600pt;}
.x7{left:91.032000pt;}
.x1{left:94.666667pt;}
.xd{left:96.000000pt;}
.xf{left:143.162400pt;}
.x5{left:182.251360pt;}
.x3{left:193.333333pt;}
.xc{left:194.245467pt;}
.x9{left:296.000000pt;}
.x13{left:363.834400pt;}
.x15{left:366.856667pt;}
.x14{left:371.578400pt;}
.x16{left:408.644800pt;}
.xb{left:497.333333pt;}
.x12{left:612.158667pt;}
.x11{left:615.121333pt;}
.x10{left:618.825600pt;}
.xe{left:621.787867pt;}
.x6{left:624.000000pt;}
}




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