
    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_9f43db69defc8f8ea45fc35e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3ce2e6d11e02a292b9dfa107.woff2')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_ce97e5b424ca8964bc89e0f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_6a6293b5dc4146bf41b37852.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_1e2a3415cc825c62f5be6747.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976074;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_b0f87f7700cce8ae700f0cb0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6124cb98c0f369c73133d509.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_d38f2ee7f530a66cc4a63697.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_bce73c0be4294461663945b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915527;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_97b8e56b3bf768fa5717b73d.woff2')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_2957e8a26b51d6316786a20e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_197458482575d1e3d0ebbf29.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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_2b62f6c3d089d7418c5763a6.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v4{vertical-align:-11.400000px;}
.v1{vertical-align:-6.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.360000px;}
.v3{vertical-align:39.150000px;}
.ls1d{letter-spacing:-1.536000px;}
.ls1c{letter-spacing:-1.428000px;}
.ls15{letter-spacing:-1.254000px;}
.ls12{letter-spacing:-0.520200px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.333300px;}
.ls9{letter-spacing:0.473400px;}
.ls2{letter-spacing:0.597000px;}
.lsa{letter-spacing:0.642000px;}
.ls8{letter-spacing:0.714000px;}
.ls3{letter-spacing:1.086000px;}
.ls13{letter-spacing:1.515150px;}
.ls11{letter-spacing:1.704000px;}
.ls16{letter-spacing:1.950000px;}
.ls10{letter-spacing:2.802000px;}
.lsf{letter-spacing:2.952000px;}
.ls1b{letter-spacing:14.250300px;}
.ls6{letter-spacing:14.310300px;}
.lsd{letter-spacing:14.460300px;}
.ls1a{letter-spacing:22.159800px;}
.ls18{letter-spacing:22.278900px;}
.ls17{letter-spacing:27.849600px;}
.ls0{letter-spacing:28.206600px;}
.lse{letter-spacing:34.482600px;}
.ls14{letter-spacing:34.707600px;}
.ls19{letter-spacing:46.909800px;}
.lsb{letter-spacing:70.245000px;}
.ls5{letter-spacing:70.297500px;}
.ls4{letter-spacing:73.309200px;}
.ls7{letter-spacing:78.172500px;}
.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:-73.359600px;}
.ws2{word-spacing:-41.604300px;}
.ws9{word-spacing:-32.577900px;}
.ws6{word-spacing:-30.148800px;}
.ws10{word-spacing:-30.065700px;}
.wsc{word-spacing:-27.346800px;}
.wsb{word-spacing:-25.396800px;}
.ws16{word-spacing:-21.390900px;}
.ws12{word-spacing:-19.356900px;}
.ws4{word-spacing:-15.288900px;}
.ws13{word-spacing:-10.809900px;}
.ws14{word-spacing:-10.701900px;}
.ws11{word-spacing:-10.203900px;}
.ws0{word-spacing:-9.186900px;}
.ws15{word-spacing:-9.153000px;}
.ws5{word-spacing:-4.302150px;}
.ws1{word-spacing:-0.685500px;}
.wse{word-spacing:-0.134100px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:0.279000px;}
.wsa{word-spacing:1.811250px;}
.ws8{word-spacing:769.947900px;}
.wsd{word-spacing:777.753000px;}
._d{margin-left:-23.046600px;}
._16{margin-left:-17.809350px;}
._12{margin-left:-12.907500px;}
._e{margin-left:-11.703000px;}
._11{margin-left:-9.322350px;}
._f{margin-left:-6.048600px;}
._8{margin-left:-4.993800px;}
._1{margin-left:-3.333300px;}
._4{margin-left:-1.910550px;}
._3{width:1.666650px;}
._0{width:2.682900px;}
._5{width:4.022700px;}
._15{width:5.425650px;}
._7{width:7.963500px;}
._6{width:10.854600px;}
._2{width:12.168900px;}
._b{width:26.523450px;}
._c{width:28.012650px;}
._10{width:31.318050px;}
._13{width:34.474500px;}
._9{width:37.828050px;}
._a{width:38.905800px;}
._1a{width:205.280250px;}
._1c{width:212.179200px;}
._18{width:377.214150px;}
._19{width:407.470800px;}
._1d{width:421.374150px;}
._1e{width:487.643550px;}
._14{width:510.824250px;}
._1b{width:531.213900px;}
._17{width:913.950450px;}
.fcb{color:rgb(84,130,53);}
.fca{color:rgb(192,0,0);}
.fc9{color:transparent;}
.fc8{color:rgb(34,56,85);}
.fc7{color:rgb(32,56,100);}
.fc5{color:rgb(175,154,105);}
.fc6{color:rgb(59,56,56);}
.fc3{color:rgb(190,162,74);}
.fcc{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:40.500000px;}
.fs0{font-size:40.650000px;}
.fsf{font-size:45.150000px;}
.fs10{font-size:54.150000px;}
.fs6{font-size:67.650000px;}
.fsc{font-size:72.150000px;}
.fs4{font-size:85.650000px;}
.fse{font-size:85.800000px;}
.fsa{font-size:94.650000px;}
.fsd{font-size:94.800000px;}
.fs8{font-size:108.150000px;}
.fs9{font-size:108.300000px;}
.fs3{font-size:121.650000px;}
.fs2{font-size:121.800000px;}
.fs7{font-size:144.150000px;}
.fsb{font-size:144.300000px;}
.fs5{font-size:324.600000px;}
.y0{bottom:0.000000px;}
.y41{bottom:16.912500px;}
.yb{bottom:20.850000px;}
.yf{bottom:31.687500px;}
.y29{bottom:34.575000px;}
.y17{bottom:38.812500px;}
.y2b{bottom:39.975000px;}
.y2f{bottom:44.700000px;}
.y2{bottom:46.350000px;}
.y46{bottom:49.837500px;}
.y3b{bottom:51.937500px;}
.y1{bottom:58.762500px;}
.ye{bottom:61.087500px;}
.y45{bottom:62.250000px;}
.y2e{bottom:70.650000px;}
.y44{bottom:74.662500px;}
.y28{bottom:74.700000px;}
.y2a{bottom:81.375000px;}
.y27{bottom:110.887500px;}
.y2d{bottom:112.875000px;}
.y3a{bottom:117.187500px;}
.ya{bottom:119.662500px;}
.y21{bottom:121.387500px;}
.y19{bottom:131.925000px;}
.y26{bottom:144.112500px;}
.y40{bottom:148.762500px;}
.y2c{bottom:151.050000px;}
.y42{bottom:154.770000px;}
.y39{bottom:161.130000px;}
.y8{bottom:165.000000px;}
.y25{bottom:165.525000px;}
.y7{bottom:187.530000px;}
.y38{bottom:190.470000px;}
.y43{bottom:191.475000px;}
.y9{bottom:217.725000px;}
.y20{bottom:219.450000px;}
.y30{bottom:223.200000px;}
.y3f{bottom:225.525000px;}
.y18{bottom:229.995000px;}
.y22{bottom:230.325000px;}
.y37{bottom:234.420000px;}
.y6{bottom:241.050000px;}
.y36{bottom:263.700000px;}
.y3e{bottom:269.475000px;}
.y23{bottom:273.630000px;}
.y5{bottom:281.895000px;}
.y35{bottom:293.025000px;}
.y48{bottom:295.275000px;}
.y3d{bottom:313.425000px;}
.y16{bottom:317.775000px;}
.y4{bottom:317.970000px;}
.y34{bottom:336.975000px;}
.y3{bottom:354.045000px;}
.y15{bottom:356.100000px;}
.y3c{bottom:357.375000px;}
.y33{bottom:366.270000px;}
.y1d{bottom:373.080000px;}
.y14{bottom:378.645000px;}
.y47{bottom:392.325000px;}
.y13{bottom:401.175000px;}
.y1c{bottom:402.405000px;}
.y32{bottom:410.250000px;}
.y12{bottom:423.720000px;}
.y31{bottom:439.530000px;}
.y1b{bottom:446.370000px;}
.yd{bottom:450.000000px;}
.y11{bottom:462.030000px;}
.y1a{bottom:475.650000px;}
.y10{bottom:484.575000px;}
.y1e{bottom:505.470000px;}
.yc{bottom:534.750000px;}
.y24{bottom:544.530000px;}
.y1f{bottom:561.570000px;}
.h14{height:27.075000px;}
.h2{height:40.282471px;}
.h1{height:40.431665px;}
.h15{height:44.907495px;}
.h16{height:53.859155px;}
.hf{height:55.169385px;}
.ha{height:62.355542px;}
.h5{height:65.492139px;}
.h7{height:67.286646px;}
.h13{height:72.309961px;}
.hc{height:78.373975px;}
.he{height:79.053003px;}
.h11{height:79.894922px;}
.h12{height:85.189966px;}
.h4{height:93.019482px;}
.h3{height:93.134180px;}
.h17{height:94.141626px;}
.h10{height:94.319385px;}
.h9{height:107.569116px;}
.hb{height:107.718311px;}
.h8{height:147.598901px;}
.hd{height:147.752490px;}
.h6{height:322.856543px;}
.h0{height:607.500000px;}
.w2{width:206.100000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1f{left:9.937484px;}
.x1d{left:22.574984px;}
.xf{left:24.449984px;}
.xe{left:26.287484px;}
.x17{left:31.949984px;}
.x23{left:36.149984px;}
.x26{left:38.812484px;}
.x1c{left:40.312484px;}
.x2{left:52.387484px;}
.xc{left:53.999984px;}
.x3{left:61.612484px;}
.x24{left:63.187484px;}
.x12{left:73.837484px;}
.xb{left:97.387484px;}
.x13{left:100.874984px;}
.x20{left:108.224984px;}
.x1b{left:111.224984px;}
.x14{left:115.987484px;}
.x19{left:133.499984px;}
.x15{left:160.424984px;}
.x16{left:221.969984px;}
.x6{left:266.249984px;}
.x11{left:296.969984px;}
.x7{left:316.004984px;}
.x8{left:334.724984px;}
.x2a{left:340.319984px;}
.x5{left:342.374984px;}
.x22{left:344.819984px;}
.x9{left:348.944984px;}
.x25{left:357.749984px;}
.x4{left:388.199984px;}
.x1a{left:389.774984px;}
.x2b{left:403.274984px;}
.x1{left:441.674984px;}
.x1e{left:445.154984px;}
.x10{left:563.474984px;}
.x21{left:595.979984px;}
.x18{left:639.719984px;}
.xd{left:697.604984px;}
.x28{left:757.049984px;}
.x27{left:759.030000px;}
.x29{left:814.349984px;}
.xa{left:1019.294984px;}
@media print{
.v4{vertical-align:-10.133333pt;}
.v1{vertical-align:-5.653333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.986667pt;}
.v3{vertical-align:34.800000pt;}
.ls1d{letter-spacing:-1.365333pt;}
.ls1c{letter-spacing:-1.269333pt;}
.ls15{letter-spacing:-1.114667pt;}
.ls12{letter-spacing:-0.462400pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.296267pt;}
.ls9{letter-spacing:0.420800pt;}
.ls2{letter-spacing:0.530667pt;}
.lsa{letter-spacing:0.570667pt;}
.ls8{letter-spacing:0.634667pt;}
.ls3{letter-spacing:0.965333pt;}
.ls13{letter-spacing:1.346800pt;}
.ls11{letter-spacing:1.514667pt;}
.ls16{letter-spacing:1.733333pt;}
.ls10{letter-spacing:2.490667pt;}
.lsf{letter-spacing:2.624000pt;}
.ls1b{letter-spacing:12.666933pt;}
.ls6{letter-spacing:12.720267pt;}
.lsd{letter-spacing:12.853600pt;}
.ls1a{letter-spacing:19.697600pt;}
.ls18{letter-spacing:19.803467pt;}
.ls17{letter-spacing:24.755200pt;}
.ls0{letter-spacing:25.072533pt;}
.lse{letter-spacing:30.651200pt;}
.ls14{letter-spacing:30.851200pt;}
.ls19{letter-spacing:41.697600pt;}
.lsb{letter-spacing:62.440000pt;}
.ls5{letter-spacing:62.486667pt;}
.ls4{letter-spacing:65.163733pt;}
.ls7{letter-spacing:69.486667pt;}
.ws7{word-spacing:-65.208533pt;}
.ws2{word-spacing:-36.981600pt;}
.ws9{word-spacing:-28.958133pt;}
.ws6{word-spacing:-26.798933pt;}
.ws10{word-spacing:-26.725067pt;}
.wsc{word-spacing:-24.308267pt;}
.wsb{word-spacing:-22.574933pt;}
.ws16{word-spacing:-19.014133pt;}
.ws12{word-spacing:-17.206133pt;}
.ws4{word-spacing:-13.590133pt;}
.ws13{word-spacing:-9.608800pt;}
.ws14{word-spacing:-9.512800pt;}
.ws11{word-spacing:-9.070133pt;}
.ws0{word-spacing:-8.166133pt;}
.ws15{word-spacing:-8.136000pt;}
.ws5{word-spacing:-3.824133pt;}
.ws1{word-spacing:-0.609333pt;}
.wse{word-spacing:-0.119200pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:0.248000pt;}
.wsa{word-spacing:1.610000pt;}
.ws8{word-spacing:684.398133pt;}
.wsd{word-spacing:691.336000pt;}
._d{margin-left:-20.485867pt;}
._16{margin-left:-15.830533pt;}
._12{margin-left:-11.473333pt;}
._e{margin-left:-10.402667pt;}
._11{margin-left:-8.286533pt;}
._f{margin-left:-5.376533pt;}
._8{margin-left:-4.438933pt;}
._1{margin-left:-2.962933pt;}
._4{margin-left:-1.698267pt;}
._3{width:1.481467pt;}
._0{width:2.384800pt;}
._5{width:3.575733pt;}
._15{width:4.822800pt;}
._7{width:7.078667pt;}
._6{width:9.648533pt;}
._2{width:10.816800pt;}
._b{width:23.576400pt;}
._c{width:24.900133pt;}
._10{width:27.838267pt;}
._13{width:30.644000pt;}
._9{width:33.624933pt;}
._a{width:34.582933pt;}
._1a{width:182.471333pt;}
._1c{width:188.603733pt;}
._18{width:335.301467pt;}
._19{width:362.196267pt;}
._1d{width:374.554800pt;}
._1e{width:433.460933pt;}
._14{width:454.066000pt;}
._1b{width:472.190133pt;}
._17{width:812.400400pt;}
.fs1{font-size:36.000000pt;}
.fs0{font-size:36.133333pt;}
.fsf{font-size:40.133333pt;}
.fs10{font-size:48.133333pt;}
.fs6{font-size:60.133333pt;}
.fsc{font-size:64.133333pt;}
.fs4{font-size:76.133333pt;}
.fse{font-size:76.266667pt;}
.fsa{font-size:84.133333pt;}
.fsd{font-size:84.266667pt;}
.fs8{font-size:96.133333pt;}
.fs9{font-size:96.266667pt;}
.fs3{font-size:108.133333pt;}
.fs2{font-size:108.266667pt;}
.fs7{font-size:128.133333pt;}
.fsb{font-size:128.266667pt;}
.fs5{font-size:288.533333pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:15.033333pt;}
.yb{bottom:18.533333pt;}
.yf{bottom:28.166667pt;}
.y29{bottom:30.733333pt;}
.y17{bottom:34.500000pt;}
.y2b{bottom:35.533333pt;}
.y2f{bottom:39.733333pt;}
.y2{bottom:41.200000pt;}
.y46{bottom:44.300000pt;}
.y3b{bottom:46.166667pt;}
.y1{bottom:52.233333pt;}
.ye{bottom:54.300000pt;}
.y45{bottom:55.333333pt;}
.y2e{bottom:62.800000pt;}
.y44{bottom:66.366667pt;}
.y28{bottom:66.400000pt;}
.y2a{bottom:72.333333pt;}
.y27{bottom:98.566667pt;}
.y2d{bottom:100.333333pt;}
.y3a{bottom:104.166667pt;}
.ya{bottom:106.366667pt;}
.y21{bottom:107.900000pt;}
.y19{bottom:117.266667pt;}
.y26{bottom:128.100000pt;}
.y40{bottom:132.233333pt;}
.y2c{bottom:134.266667pt;}
.y42{bottom:137.573333pt;}
.y39{bottom:143.226667pt;}
.y8{bottom:146.666667pt;}
.y25{bottom:147.133333pt;}
.y7{bottom:166.693333pt;}
.y38{bottom:169.306667pt;}
.y43{bottom:170.200000pt;}
.y9{bottom:193.533333pt;}
.y20{bottom:195.066667pt;}
.y30{bottom:198.400000pt;}
.y3f{bottom:200.466667pt;}
.y18{bottom:204.440000pt;}
.y22{bottom:204.733333pt;}
.y37{bottom:208.373333pt;}
.y6{bottom:214.266667pt;}
.y36{bottom:234.400000pt;}
.y3e{bottom:239.533333pt;}
.y23{bottom:243.226667pt;}
.y5{bottom:250.573333pt;}
.y35{bottom:260.466667pt;}
.y48{bottom:262.466667pt;}
.y3d{bottom:278.600000pt;}
.y16{bottom:282.466667pt;}
.y4{bottom:282.640000pt;}
.y34{bottom:299.533333pt;}
.y3{bottom:314.706667pt;}
.y15{bottom:316.533333pt;}
.y3c{bottom:317.666667pt;}
.y33{bottom:325.573333pt;}
.y1d{bottom:331.626667pt;}
.y14{bottom:336.573333pt;}
.y47{bottom:348.733333pt;}
.y13{bottom:356.600000pt;}
.y1c{bottom:357.693333pt;}
.y32{bottom:364.666667pt;}
.y12{bottom:376.640000pt;}
.y31{bottom:390.693333pt;}
.y1b{bottom:396.773333pt;}
.yd{bottom:400.000000pt;}
.y11{bottom:410.693333pt;}
.y1a{bottom:422.800000pt;}
.y10{bottom:430.733333pt;}
.y1e{bottom:449.306667pt;}
.yc{bottom:475.333333pt;}
.y24{bottom:484.026667pt;}
.y1f{bottom:499.173333pt;}
.h14{height:24.066667pt;}
.h2{height:35.806641pt;}
.h1{height:35.939258pt;}
.h15{height:39.917773pt;}
.h16{height:47.874805pt;}
.hf{height:49.039453pt;}
.ha{height:55.427148pt;}
.h5{height:58.215234pt;}
.h7{height:59.810352pt;}
.h13{height:64.275521pt;}
.hc{height:69.665755pt;}
.he{height:70.269336pt;}
.h11{height:71.017708pt;}
.h12{height:75.724414pt;}
.h4{height:82.683984pt;}
.h3{height:82.785938pt;}
.h17{height:83.681445pt;}
.h10{height:83.839453pt;}
.h9{height:95.616992pt;}
.hb{height:95.749609pt;}
.h8{height:131.199023pt;}
.hd{height:131.335547pt;}
.h6{height:286.983594pt;}
.h0{height:540.000000pt;}
.w2{width:183.200000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:8.833319pt;}
.x1d{left:20.066652pt;}
.xf{left:21.733319pt;}
.xe{left:23.366652pt;}
.x17{left:28.399986pt;}
.x23{left:32.133319pt;}
.x26{left:34.499986pt;}
.x1c{left:35.833319pt;}
.x2{left:46.566652pt;}
.xc{left:47.999986pt;}
.x3{left:54.766652pt;}
.x24{left:56.166652pt;}
.x12{left:65.633319pt;}
.xb{left:86.566652pt;}
.x13{left:89.666652pt;}
.x20{left:96.199986pt;}
.x1b{left:98.866652pt;}
.x14{left:103.099986pt;}
.x19{left:118.666652pt;}
.x15{left:142.599986pt;}
.x16{left:197.306652pt;}
.x6{left:236.666652pt;}
.x11{left:263.973319pt;}
.x7{left:280.893319pt;}
.x8{left:297.533319pt;}
.x2a{left:302.506652pt;}
.x5{left:304.333319pt;}
.x22{left:306.506652pt;}
.x9{left:310.173319pt;}
.x25{left:317.999986pt;}
.x4{left:345.066652pt;}
.x1a{left:346.466652pt;}
.x2b{left:358.466652pt;}
.x1{left:392.599986pt;}
.x1e{left:395.693319pt;}
.x10{left:500.866652pt;}
.x21{left:529.759986pt;}
.x18{left:568.639986pt;}
.xd{left:620.093319pt;}
.x28{left:672.933319pt;}
.x27{left:674.693333pt;}
.x29{left:723.866652pt;}
.xa{left:906.039986pt;}
}




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