
    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_2c9f5b7309b7935044f8202e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.935059;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_befdd93afec3ed076b7126a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928223;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_526b6f7b582542350937a75b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_d6d0b37ef61541b6e1411836.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_8669189e48b233910e94b700.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_66f9a6d214b114ee61968b45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_0d7314b311effc178144787b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b9d738c3841d847c1e2aedb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.201172;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_6b1cd749d5c427f06edf670d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fec0dcd541a02529688eac13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_f3c825684c6bcf3ec7acf89d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_6ad82eb5256ef49d5de7ce2e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925781;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_18e4ab7cf88441621c4a7841.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921875;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_2bdd56d74d8468f9f39cfcea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.928223;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;}
.ls5{letter-spacing:-1.164000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.141300px;}
.ls7{letter-spacing:0.261300px;}
.ls9{letter-spacing:0.278100px;}
.ls8{letter-spacing:0.321300px;}
.lsa{letter-spacing:0.861600px;}
.lsb{letter-spacing:0.897600px;}
.lsd{letter-spacing:0.960000px;}
.ls2{letter-spacing:0.972000px;}
.lse{letter-spacing:1.110000px;}
.ls3{letter-spacing:1.518000px;}
.ls4{letter-spacing:1.578000px;}
.lsc{letter-spacing:1.968000px;}
.ls1{letter-spacing:47.970000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-53.046900px;}
.ws6{word-spacing:-48.883800px;}
.ws9{word-spacing:-42.495750px;}
.wsa{word-spacing:-37.696800px;}
.wsc{word-spacing:-36.645900px;}
.wsf{word-spacing:-31.980750px;}
.ws10{word-spacing:-31.020750px;}
.ws11{word-spacing:-28.466100px;}
.wsb{word-spacing:-27.492900px;}
.wsd{word-spacing:-25.492800px;}
.ws5{word-spacing:-25.458900px;}
.ws7{word-spacing:-24.441900px;}
.ws4{word-spacing:-19.356900px;}
.ws2{word-spacing:-19.323000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1.837200px;}
.ws3{word-spacing:28.375200px;}
.ws8{word-spacing:1496.259000px;}
._d{margin-left:-15.624300px;}
._b{margin-left:-12.252600px;}
._e{margin-left:-9.732000px;}
._7{margin-left:-7.903350px;}
._a{margin-left:-6.136350px;}
._9{margin-left:-4.333350px;}
._5{margin-left:-3.304350px;}
._2{margin-left:-1.514100px;}
._3{width:1.081500px;}
._0{width:2.595600px;}
._1{width:4.109700px;}
._4{width:6.272700px;}
._c{width:9.901350px;}
._f{width:13.152000px;}
._8{width:18.473100px;}
._6{width:22.276200px;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(78,143,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:67.500000px;}
.fs1{font-size:76.650000px;}
.fs3{font-size:85.500000px;}
.fs2{font-size:85.650000px;}
.fs6{font-size:108.150000px;}
.fs5{font-size:112.650000px;}
.fs14{font-size:112.800000px;}
.fse{font-size:121.650000px;}
.fsf{font-size:121.800000px;}
.fsa{font-size:130.650000px;}
.fsb{font-size:130.800000px;}
.fsd{font-size:148.650000px;}
.fsc{font-size:148.800000px;}
.fs13{font-size:157.650000px;}
.fs12{font-size:157.800000px;}
.fs11{font-size:162.150000px;}
.fs10{font-size:162.300000px;}
.fs9{font-size:166.650000px;}
.fs8{font-size:166.800000px;}
.fs7{font-size:193.800000px;}
.fs0{font-size:216.300000px;}
.fs16{font-size:238.950000px;}
.fs15{font-size:301.800000px;}
.y0{bottom:0.000000px;}
.y15{bottom:27.600000px;}
.y5{bottom:32.437500px;}
.y25{bottom:33.937500px;}
.y2d{bottom:37.050000px;}
.y14{bottom:46.762500px;}
.y4{bottom:53.850000px;}
.y1{bottom:58.012500px;}
.y2c{bottom:64.087500px;}
.y24{bottom:66.600000px;}
.y13{bottom:77.325000px;}
.y3{bottom:89.887500px;}
.yc{bottom:90.937500px;}
.y23{bottom:99.262500px;}
.y12{bottom:103.237500px;}
.y2b{bottom:104.625000px;}
.y2{bottom:110.175000px;}
.yb{bottom:115.725000px;}
.y11{bottom:128.025000px;}
.y40{bottom:129.300000px;}
.y22{bottom:131.962500px;}
.y5c{bottom:135.112500px;}
.ya{bottom:140.512500px;}
.y10{bottom:152.805000px;}
.y2a{bottom:162.630000px;}
.y9{bottom:166.425000px;}
.y5b{bottom:174.525000px;}
.y21{bottom:176.055000px;}
.yf{bottom:178.725000px;}
.y47{bottom:188.400000px;}
.y8{bottom:191.205000px;}
.y3f{bottom:201.375000px;}
.ye{bottom:203.520000px;}
.y29{bottom:213.330000px;}
.y7{bottom:217.125000px;}
.y34{bottom:221.025000px;}
.y1c{bottom:222.975000px;}
.y5a{bottom:228.600000px;}
.yd{bottom:229.425000px;}
.y51{bottom:234.270000px;}
.y46{bottom:241.350000px;}
.y33{bottom:263.850000px;}
.y28{bottom:264.045000px;}
.y50{bottom:264.675000px;}
.y59{bottom:269.175000px;}
.y3e{bottom:282.480000px;}
.y3a{bottom:287.025000px;}
.y45{bottom:310.095000px;}
.y4f{bottom:310.875000px;}
.y20{bottom:315.750000px;}
.y1b{bottom:321.000000px;}
.y58{bottom:323.250000px;}
.y32{bottom:334.800000px;}
.y4e{bottom:341.280000px;}
.y39{bottom:350.100000px;}
.y1a{bottom:355.905000px;}
.y57{bottom:362.655000px;}
.y3d{bottom:363.600000px;}
.y27{bottom:364.320000px;}
.y44{bottom:378.780000px;}
.y4d{bottom:387.450000px;}
.y1f{bottom:387.870000px;}
.y31{bottom:390.030000px;}
.y38{bottom:413.175000px;}
.y56{bottom:417.870000px;}
.y43{bottom:431.745000px;}
.y4c{bottom:433.650000px;}
.y3c{bottom:444.720000px;}
.y30{bottom:445.245000px;}
.y19{bottom:453.945000px;}
.y55{bottom:457.320000px;}
.y1e{bottom:458.820000px;}
.y37{bottom:476.250000px;}
.y4b{bottom:478.725000px;}
.y18{bottom:487.725000px;}
.y42{bottom:500.475000px;}
.y54{bottom:512.505000px;}
.y3b{bottom:525.825000px;}
.y1d{bottom:529.800000px;}
.y36{bottom:539.370000px;}
.y26{bottom:551.205000px;}
.y2f{bottom:568.005000px;}
.y4a{bottom:573.345000px;}
.y17{bottom:586.875000px;}
.y2e{bottom:608.595000px;}
.y49{bottom:616.155000px;}
.y16{bottom:620.655000px;}
.y41{bottom:626.625000px;}
.y53{bottom:639.000000px;}
.y35{bottom:650.880000px;}
.y6{bottom:682.875000px;}
.y52{bottom:730.905000px;}
.y48{bottom:749.970000px;}
.h16{height:48.153076px;}
.h2{height:54.680493px;}
.h5{height:57.052002px;}
.ha{height:61.100903px;}
.h1c{height:80.056348px;}
.h4{height:81.408691px;}
.h3{height:81.551514px;}
.h22{height:86.782544px;}
.h23{height:86.889551px;}
.h15{height:99.773730px;}
.h14{height:99.888281px;}
.hc{height:107.569116px;}
.hb{height:110.737573px;}
.h6{height:112.044946px;}
.h1f{height:112.194141px;}
.h7{height:115.345239px;}
.hf{height:118.884595px;}
.he{height:118.991602px;}
.h18{height:120.996606px;}
.h19{height:121.145801px;}
.h10{height:129.948267px;}
.h11{height:130.097461px;}
.hd{height:138.252832px;}
.h13{height:147.851587px;}
.h12{height:148.000781px;}
.h1e{height:156.803247px;}
.h1d{height:156.952441px;}
.h1{height:160.112695px;}
.h1b{height:161.279077px;}
.h1a{height:161.428271px;}
.h17{height:165.904102px;}
.h21{height:176.879004px;}
.h8{height:215.138232px;}
.h9{height:221.475146px;}
.h20{height:221.487012px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:29.662479px;}
.x1{left:48.637479px;}
.xe{left:54.712479px;}
.x25{left:56.662479px;}
.x14{left:58.649979px;}
.x6{left:60.637479px;}
.x13{left:67.537479px;}
.xf{left:86.024979px;}
.x23{left:90.224979px;}
.x15{left:91.649979px;}
.x28{left:93.637479px;}
.x22{left:101.062479px;}
.x21{left:112.687479px;}
.x11{left:117.412479px;}
.x12{left:125.849979px;}
.x10{left:128.062479px;}
.x1f{left:164.369979px;}
.x7{left:221.444979px;}
.x24{left:271.994979px;}
.x19{left:294.269979px;}
.x1e{left:299.819979px;}
.x16{left:339.749979px;}
.x1a{left:375.869979px;}
.x20{left:384.944979px;}
.xa{left:446.324979px;}
.x27{left:554.294979px;}
.xb{left:559.274979px;}
.x1b{left:580.649979px;}
.x1d{left:582.374979px;}
.x1c{left:594.569979px;}
.x17{left:634.904979px;}
.x8{left:731.354979px;}
.x2{left:815.024979px;}
.x4{left:865.319979px;}
.x9{left:924.029979px;}
.x3{left:969.749979px;}
.x5{left:971.069979px;}
.xc{left:1126.124979px;}
.x26{left:1191.599979px;}
.xd{left:1246.199979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.034667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.125600pt;}
.ls7{letter-spacing:0.232267pt;}
.ls9{letter-spacing:0.247200pt;}
.ls8{letter-spacing:0.285600pt;}
.lsa{letter-spacing:0.765867pt;}
.lsb{letter-spacing:0.797867pt;}
.lsd{letter-spacing:0.853333pt;}
.ls2{letter-spacing:0.864000pt;}
.lse{letter-spacing:0.986667pt;}
.ls3{letter-spacing:1.349333pt;}
.ls4{letter-spacing:1.402667pt;}
.lsc{letter-spacing:1.749333pt;}
.ls1{letter-spacing:42.640000pt;}
.wse{word-spacing:-47.152800pt;}
.ws6{word-spacing:-43.452267pt;}
.ws9{word-spacing:-37.774000pt;}
.wsa{word-spacing:-33.508267pt;}
.wsc{word-spacing:-32.574133pt;}
.wsf{word-spacing:-28.427333pt;}
.ws10{word-spacing:-27.574000pt;}
.ws11{word-spacing:-25.303200pt;}
.wsb{word-spacing:-24.438133pt;}
.wsd{word-spacing:-22.660267pt;}
.ws5{word-spacing:-22.630133pt;}
.ws7{word-spacing:-21.726133pt;}
.ws4{word-spacing:-17.206133pt;}
.ws2{word-spacing:-17.176000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1.633067pt;}
.ws3{word-spacing:25.222400pt;}
.ws8{word-spacing:1330.008000pt;}
._d{margin-left:-13.888267pt;}
._b{margin-left:-10.891200pt;}
._e{margin-left:-8.650667pt;}
._7{margin-left:-7.025200pt;}
._a{margin-left:-5.454533pt;}
._9{margin-left:-3.851867pt;}
._5{margin-left:-2.937200pt;}
._2{margin-left:-1.345867pt;}
._3{width:0.961333pt;}
._0{width:2.307200pt;}
._1{width:3.653067pt;}
._4{width:5.575733pt;}
._c{width:8.801200pt;}
._f{width:11.690667pt;}
._8{width:16.420533pt;}
._6{width:19.801067pt;}
.fs4{font-size:60.000000pt;}
.fs1{font-size:68.133333pt;}
.fs3{font-size:76.000000pt;}
.fs2{font-size:76.133333pt;}
.fs6{font-size:96.133333pt;}
.fs5{font-size:100.133333pt;}
.fs14{font-size:100.266667pt;}
.fse{font-size:108.133333pt;}
.fsf{font-size:108.266667pt;}
.fsa{font-size:116.133333pt;}
.fsb{font-size:116.266667pt;}
.fsd{font-size:132.133333pt;}
.fsc{font-size:132.266667pt;}
.fs13{font-size:140.133333pt;}
.fs12{font-size:140.266667pt;}
.fs11{font-size:144.133333pt;}
.fs10{font-size:144.266667pt;}
.fs9{font-size:148.133333pt;}
.fs8{font-size:148.266667pt;}
.fs7{font-size:172.266667pt;}
.fs0{font-size:192.266667pt;}
.fs16{font-size:212.400000pt;}
.fs15{font-size:268.266667pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:24.533333pt;}
.y5{bottom:28.833333pt;}
.y25{bottom:30.166667pt;}
.y2d{bottom:32.933333pt;}
.y14{bottom:41.566667pt;}
.y4{bottom:47.866667pt;}
.y1{bottom:51.566667pt;}
.y2c{bottom:56.966667pt;}
.y24{bottom:59.200000pt;}
.y13{bottom:68.733333pt;}
.y3{bottom:79.900000pt;}
.yc{bottom:80.833333pt;}
.y23{bottom:88.233333pt;}
.y12{bottom:91.766667pt;}
.y2b{bottom:93.000000pt;}
.y2{bottom:97.933333pt;}
.yb{bottom:102.866667pt;}
.y11{bottom:113.800000pt;}
.y40{bottom:114.933333pt;}
.y22{bottom:117.300000pt;}
.y5c{bottom:120.100000pt;}
.ya{bottom:124.900000pt;}
.y10{bottom:135.826667pt;}
.y2a{bottom:144.560000pt;}
.y9{bottom:147.933333pt;}
.y5b{bottom:155.133333pt;}
.y21{bottom:156.493333pt;}
.yf{bottom:158.866667pt;}
.y47{bottom:167.466667pt;}
.y8{bottom:169.960000pt;}
.y3f{bottom:179.000000pt;}
.ye{bottom:180.906667pt;}
.y29{bottom:189.626667pt;}
.y7{bottom:193.000000pt;}
.y34{bottom:196.466667pt;}
.y1c{bottom:198.200000pt;}
.y5a{bottom:203.200000pt;}
.yd{bottom:203.933333pt;}
.y51{bottom:208.240000pt;}
.y46{bottom:214.533333pt;}
.y33{bottom:234.533333pt;}
.y28{bottom:234.706667pt;}
.y50{bottom:235.266667pt;}
.y59{bottom:239.266667pt;}
.y3e{bottom:251.093333pt;}
.y3a{bottom:255.133333pt;}
.y45{bottom:275.640000pt;}
.y4f{bottom:276.333333pt;}
.y20{bottom:280.666667pt;}
.y1b{bottom:285.333333pt;}
.y58{bottom:287.333333pt;}
.y32{bottom:297.600000pt;}
.y4e{bottom:303.360000pt;}
.y39{bottom:311.200000pt;}
.y1a{bottom:316.360000pt;}
.y57{bottom:322.360000pt;}
.y3d{bottom:323.200000pt;}
.y27{bottom:323.840000pt;}
.y44{bottom:336.693333pt;}
.y4d{bottom:344.400000pt;}
.y1f{bottom:344.773333pt;}
.y31{bottom:346.693333pt;}
.y38{bottom:367.266667pt;}
.y56{bottom:371.440000pt;}
.y43{bottom:383.773333pt;}
.y4c{bottom:385.466667pt;}
.y3c{bottom:395.306667pt;}
.y30{bottom:395.773333pt;}
.y19{bottom:403.506667pt;}
.y55{bottom:406.506667pt;}
.y1e{bottom:407.840000pt;}
.y37{bottom:423.333333pt;}
.y4b{bottom:425.533333pt;}
.y18{bottom:433.533333pt;}
.y42{bottom:444.866667pt;}
.y54{bottom:455.560000pt;}
.y3b{bottom:467.400000pt;}
.y1d{bottom:470.933333pt;}
.y36{bottom:479.440000pt;}
.y26{bottom:489.960000pt;}
.y2f{bottom:504.893333pt;}
.y4a{bottom:509.640000pt;}
.y17{bottom:521.666667pt;}
.y2e{bottom:540.973333pt;}
.y49{bottom:547.693333pt;}
.y16{bottom:551.693333pt;}
.y41{bottom:557.000000pt;}
.y53{bottom:568.000000pt;}
.y35{bottom:578.560000pt;}
.y6{bottom:607.000000pt;}
.y52{bottom:649.693333pt;}
.y48{bottom:666.640000pt;}
.h16{height:42.802734pt;}
.h2{height:48.604883pt;}
.h5{height:50.712891pt;}
.ha{height:54.311914pt;}
.h1c{height:71.161198pt;}
.h4{height:72.363281pt;}
.h3{height:72.490234pt;}
.h22{height:77.140039pt;}
.h23{height:77.235156pt;}
.h15{height:88.687760pt;}
.h14{height:88.789583pt;}
.hc{height:95.616992pt;}
.hb{height:98.433398pt;}
.h6{height:99.595508pt;}
.h1f{height:99.728125pt;}
.h7{height:102.529102pt;}
.hf{height:105.675195pt;}
.he{height:105.770313pt;}
.h18{height:107.552539pt;}
.h19{height:107.685156pt;}
.h10{height:115.509570pt;}
.h11{height:115.642188pt;}
.hd{height:122.891406pt;}
.h13{height:131.423633pt;}
.h12{height:131.556250pt;}
.h1e{height:139.380664pt;}
.h1d{height:139.513281pt;}
.h1{height:142.322396pt;}
.h1b{height:143.359180pt;}
.h1a{height:143.491797pt;}
.h17{height:147.470313pt;}
.h21{height:157.225781pt;}
.h8{height:191.233984pt;}
.h9{height:196.866797pt;}
.h20{height:196.877344pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:26.366648pt;}
.x1{left:43.233314pt;}
.xe{left:48.633314pt;}
.x25{left:50.366648pt;}
.x14{left:52.133314pt;}
.x6{left:53.899981pt;}
.x13{left:60.033314pt;}
.xf{left:76.466648pt;}
.x23{left:80.199981pt;}
.x15{left:81.466648pt;}
.x28{left:83.233314pt;}
.x22{left:89.833314pt;}
.x21{left:100.166648pt;}
.x11{left:104.366648pt;}
.x12{left:111.866648pt;}
.x10{left:113.833314pt;}
.x1f{left:146.106648pt;}
.x7{left:196.839981pt;}
.x24{left:241.773314pt;}
.x19{left:261.573314pt;}
.x1e{left:266.506648pt;}
.x16{left:301.999981pt;}
.x1a{left:334.106648pt;}
.x20{left:342.173314pt;}
.xa{left:396.733314pt;}
.x27{left:492.706648pt;}
.xb{left:497.133314pt;}
.x1b{left:516.133314pt;}
.x1d{left:517.666648pt;}
.x1c{left:528.506648pt;}
.x17{left:564.359981pt;}
.x8{left:650.093314pt;}
.x2{left:724.466648pt;}
.x4{left:769.173314pt;}
.x9{left:821.359981pt;}
.x3{left:861.999981pt;}
.x5{left:863.173314pt;}
.xc{left:1000.999981pt;}
.x26{left:1059.199981pt;}
.xd{left:1107.733314pt;}
}




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