
    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_530b4eed15e3c7d39db139ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_0a70c2dd01b7930ade2a81b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b6b5bd048826ef89965db37a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_38e183532abcf3479b9ea50d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932617;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_4718e21ec263d42b9dcaa0ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863281;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_54d22895f66c89726dc5d362.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_b286ac5dd20ca85a07823a3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_4e63eba778cf9c1d957e26a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_e8e838483d30fdb1b2e60675.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_6d350c22d518893e3451fe13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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_43df045bf014933d69a76c33.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_5c2681e22d3ae9444118e52d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.863281;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.460200px;}
.lse{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.067200px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000001px;}
.ls13{letter-spacing:0.000003px;}
.ls15{letter-spacing:0.023040px;}
.lsc{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls16{letter-spacing:3.168000px;}
.ls6{letter-spacing:15.300000px;}
.ls8{letter-spacing:16.734240px;}
.ls4{letter-spacing:18.000000px;}
.lsb{letter-spacing:18.720000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws10{word-spacing:-69.120000px;}
.ws3{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280003px;}
.wsf{word-spacing:-17.280001px;}
.wse{word-spacing:-17.280000px;}
.ws9{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.872800px;}
.ws7{word-spacing:-14.479800px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-16.656000px;}
._3{margin-left:-14.760000px;}
._c{margin-left:-13.427280px;}
._1{margin-left:-8.268000px;}
._a{margin-left:-6.780000px;}
._8{margin-left:-4.968000px;}
._2{margin-left:-3.948000px;}
._0{margin-left:-1.944000px;}
._5{width:1.656000px;}
._9{width:2.892000px;}
._f{width:4.092000px;}
._b{width:6.984000px;}
._e{width:13.788960px;}
._10{width:14.979360px;}
._6{width:16.980000px;}
._7{width:19.644000px;}
._d{width:187.944000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(181,8,46);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.yd2{bottom:7.365000px;}
.ycb{bottom:7.380000px;}
.yd1{bottom:34.365000px;}
.ycf{bottom:34.380000px;}
.y1a{bottom:115.236000px;}
.y21{bottom:115.596000px;}
.y42{bottom:116.136000px;}
.y3c{bottom:121.176000px;}
.y8b{bottom:123.156000px;}
.ybc{bottom:128.736000px;}
.y99{bottom:129.096000px;}
.y67{bottom:129.636000px;}
.y3b{bottom:139.716000px;}
.y51{bottom:142.056000px;}
.y8d{bottom:142.236000px;}
.ya0{bottom:142.416000px;}
.y84{bottom:142.596000px;}
.y41{bottom:143.136000px;}
.y50{bottom:148.896000px;}
.y73{bottom:150.150000px;}
.y19{bottom:155.730000px;}
.y20{bottom:156.090000px;}
.y4f{bottom:166.710000px;}
.y40{bottom:169.230000px;}
.y98{bottom:169.590000px;}
.y57{bottom:170.130000px;}
.y3f{bottom:175.170000px;}
.ybd{bottom:182.910000px;}
.y83{bottom:183.090000px;}
.y9f{bottom:183.630000px;}
.y6f{bottom:188.310000px;}
.y3e{bottom:193.710000px;}
.y56{bottom:196.050000px;}
.y35{bottom:196.230000px;}
.yb2{bottom:196.410000px;}
.y18{bottom:196.590000px;}
.y5d{bottom:197.130000px;}
.y55{bottom:202.890000px;}
.ybb{bottom:209.730000px;}
.y97{bottom:210.090000px;}
.y66{bottom:210.630000px;}
.y9e{bottom:213.150000px;}
.y54{bottom:220.710000px;}
.y82{bottom:223.590000px;}
.y5c{bottom:224.130000px;}
.y34{bottom:236.730000px;}
.yac{bottom:236.910000px;}
.y17{bottom:237.090000px;}
.y5b{bottom:250.230000px;}
.yc2{bottom:250.410000px;}
.y96{bottom:250.590000px;}
.y65{bottom:251.130000px;}
.y8c{bottom:251.310000px;}
.y5a{bottom:256.170000px;}
.y81{bottom:264.090000px;}
.y4b{bottom:271.650000px;}
.y59{bottom:274.710000px;}
.y33{bottom:277.230000px;}
.y16{bottom:277.410000px;}
.y1f{bottom:277.590000px;}
.y64{bottom:282.810000px;}
.y8a{bottom:286.230000px;}
.yba{bottom:290.730000px;}
.y95{bottom:291.090000px;}
.y80{bottom:304.590000px;}
.y32{bottom:317.730000px;}
.y15{bottom:317.910000px;}
.y1e{bottom:318.090000px;}
.y48{bottom:318.630000px;}
.y53{bottom:324.930000px;}
.yb9{bottom:331.230000px;}
.y94{bottom:331.590000px;}
.y7f{bottom:345.135000px;}
.y47{bottom:349.095000px;}
.yc7{bottom:352.335000px;}
.yab{bottom:353.415000px;}
.y31{bottom:358.275000px;}
.y14{bottom:358.455000px;}
.y1d{bottom:358.635000px;}
.y39{bottom:358.815000px;}
.y3a{bottom:364.755000px;}
.y93{bottom:371.775000px;}
.yc1{bottom:372.135000px;}
.y7e{bottom:385.635000px;}
.yca{bottom:389.595000px;}
.y30{bottom:398.775000px;}
.yb0{bottom:398.955000px;}
.y13{bottom:399.135000px;}
.y38{bottom:400.035000px;}
.yc0{bottom:402.195000px;}
.y92{bottom:412.275000px;}
.y9d{bottom:412.635000px;}
.y7d{bottom:426.135000px;}
.y2f{bottom:439.275000px;}
.y12{bottom:439.635000px;}
.y91{bottom:442.335000px;}
.yb8{bottom:452.775000px;}
.y9c{bottom:453.135000px;}
.y89{bottom:453.675000px;}
.y7c{bottom:466.635000px;}
.y85{bottom:468.075000px;}
.y11{bottom:479.775000px;}
.y1c{bottom:480.135000px;}
.yaf{bottom:480.675000px;}
.y88{bottom:484.995000px;}
.yc4{bottom:488.775000px;}
.yb7{bottom:493.275000px;}
.y9b{bottom:493.635000px;}
.y7b{bottom:507.135000px;}
.ybf{bottom:508.935000px;}
.y46{bottom:510.735000px;}
.y2e{bottom:520.275000px;}
.y10{bottom:520.635000px;}
.yae{bottom:521.175000px;}
.y9a{bottom:524.775000px;}
.yc9{bottom:529.275000px;}
.y72{bottom:530.355000px;}
.yb6{bottom:534.135000px;}
.y7a{bottom:547.635000px;}
.yad{bottom:553.935000px;}
.yb1{bottom:557.175000px;}
.y2d{bottom:560.775000px;}
.yf{bottom:561.135000px;}
.y4e{bottom:561.675000px;}
.y6e{bottom:561.855000px;}
.yaa{bottom:574.635000px;}
.y79{bottom:588.135000px;}
.y4d{bottom:600.015000px;}
.y2c{bottom:601.275000px;}
.ye{bottom:601.635000px;}
.y90{bottom:613.725000px;}
.ya9{bottom:615.165000px;}
.y63{bottom:615.705000px;}
.y78{bottom:628.665000px;}
.y2b{bottom:641.805000px;}
.yd{bottom:642.165000px;}
.y62{bottom:654.045000px;}
.ya8{bottom:655.665000px;}
.y77{bottom:669.165000px;}
.y45{bottom:673.125000px;}
.y2a{bottom:682.305000px;}
.yc{bottom:682.665000px;}
.y8f{bottom:683.205000px;}
.y52{bottom:689.505000px;}
.yb5{bottom:695.985000px;}
.ya7{bottom:696.165000px;}
.yd4{bottom:709.305000px;}
.y76{bottom:709.665000px;}
.y8e{bottom:711.285000px;}
.y29{bottom:722.805000px;}
.yb{bottom:723.165000px;}
.y44{bottom:724.245000px;}
.y58{bottom:730.005000px;}
.ya6{bottom:736.665000px;}
.y75{bottom:741.525000px;}
.y43{bottom:753.225000px;}
.y28{bottom:763.305000px;}
.yd3{bottom:763.320000px;}
.ya{bottom:763.665000px;}
.y3d{bottom:770.505000px;}
.ya5{bottom:776.985000px;}
.yb4{bottom:777.165000px;}
.y87{bottom:786.525000px;}
.y61{bottom:791.205000px;}
.y27{bottom:803.805000px;}
.y9{bottom:804.165000px;}
.yd0{bottom:817.320000px;}
.ya4{bottom:817.665000px;}
.y60{bottom:829.725000px;}
.y26{bottom:844.305000px;}
.y8{bottom:844.665000px;}
.ya3{bottom:858.165000px;}
.yce{bottom:871.350000px;}
.y25{bottom:884.850000px;}
.y7{bottom:885.210000px;}
.y71{bottom:885.750000px;}
.y37{bottom:886.110000px;}
.yb3{bottom:895.830000px;}
.ya2{bottom:899.250000px;}
.y74{bottom:900.150000px;}
.y70{bottom:915.270000px;}
.y24{bottom:925.350000px;}
.y6{bottom:925.710000px;}
.y6d{bottom:926.610000px;}
.ya1{bottom:930.930000px;}
.yc3{bottom:943.170000px;}
.ycd{bottom:952.350000px;}
.yc6{bottom:952.710000px;}
.y23{bottom:965.850000px;}
.y5{bottom:966.210000px;}
.y6c{bottom:966.750000px;}
.ybe{bottom:966.930000px;}
.y86{bottom:974.490000px;}
.ycc{bottom:979.350000px;}
.yc8{bottom:983.670000px;}
.yc5{bottom:983.850000px;}
.y5f{bottom:993.750000px;}
.y4a{bottom:1006.350000px;}
.y4{bottom:1006.710000px;}
.y6b{bottom:1007.250000px;}
.y5e{bottom:1031.010000px;}
.y36{bottom:1046.850000px;}
.y3{bottom:1047.210000px;}
.y6a{bottom:1047.750000px;}
.y22{bottom:1087.350000px;}
.y2{bottom:1087.710000px;}
.y69{bottom:1088.250000px;}
.y49{bottom:1088.610000px;}
.y1b{bottom:1127.850000px;}
.y1{bottom:1128.210000px;}
.y68{bottom:1128.750000px;}
.y4c{bottom:1135.050000px;}
.h12{height:26.985000px;}
.h6{height:36.580430px;}
.hf{height:45.316055px;}
.h9{height:47.344922px;}
.h14{height:53.985000px;}
.h16{height:54.000000px;}
.h15{height:54.021000px;}
.h7{height:54.597656px;}
.h11{height:55.406250px;}
.hd{height:58.402732px;}
.hb{height:58.621992px;}
.h8{height:58.651172px;}
.h4{height:64.546875px;}
.hc{height:64.978594px;}
.h10{height:65.010937px;}
.h13{height:67.837500px;}
.ha{height:68.084282px;}
.he{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h5{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:160.215000px;}
.w5{width:160.230000px;}
.w4{width:160.380000px;}
.w6{width:160.395000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:8.091000px;}
.x39{left:126.945000px;}
.x1{left:135.036000px;}
.x5{left:141.156000px;}
.x3d{left:144.036000px;}
.xa{left:153.030000px;}
.x12{left:206.287500px;}
.x13{left:212.430000px;}
.x14{left:261.007500px;}
.x15{left:267.150000px;}
.x2e{left:270.030000px;}
.x3b{left:287.175000px;}
.x33{left:303.735000px;}
.x6{left:322.432500px;}
.x7{left:328.575000px;}
.x2d{left:342.075000px;}
.x4{left:351.075000px;}
.x32{left:378.255000px;}
.x24{left:437.655000px;}
.x38{left:446.475000px;}
.x3c{left:447.555000px;}
.xc{left:461.392500px;}
.xd{left:467.565000px;}
.x8{left:486.105000px;}
.x2b{left:506.445000px;}
.xf{left:540.465000px;}
.x23{left:542.265000px;}
.x31{left:560.085000px;}
.x2f{left:564.945000px;}
.x9{left:576.105000px;}
.xb{left:585.105000px;}
.x21{left:589.605000px;}
.x34{left:594.105000px;}
.x20{left:599.145000px;}
.x37{left:602.205000px;}
.x1c{left:605.985000px;}
.x26{left:608.325000px;}
.x36{left:609.585000px;}
.xe{left:610.665000px;}
.x2{left:624.322500px;}
.x3{left:630.465000px;}
.x28{left:648.285000px;}
.x19{left:658.590000px;}
.x1d{left:662.370000px;}
.x2a{left:668.490000px;}
.x10{left:678.007500px;}
.x1a{left:679.650000px;}
.x11{left:684.150000px;}
.x27{left:689.190000px;}
.x1f{left:697.650000px;}
.x29{left:699.990000px;}
.x2c{left:721.050000px;}
.x16{left:729.510000px;}
.x1e{left:730.770000px;}
.x22{left:734.190000px;}
.x1b{left:740.310000px;}
.x18{left:742.650000px;}
.x17{left:745.170000px;}
.x25{left:757.050000px;}
.x35{left:758.310000px;}
.x30{left:777.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.409067pt;}
.lse{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.059733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000001pt;}
.ls13{letter-spacing:0.000003pt;}
.ls15{letter-spacing:0.020480pt;}
.lsc{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls16{letter-spacing:2.816000pt;}
.ls6{letter-spacing:13.600000pt;}
.ls8{letter-spacing:14.874880pt;}
.ls4{letter-spacing:16.000000pt;}
.lsb{letter-spacing:16.640000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws10{word-spacing:-61.440000pt;}
.ws3{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360003pt;}
.wsf{word-spacing:-15.360001pt;}
.wse{word-spacing:-15.360000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.220267pt;}
.ws7{word-spacing:-12.870933pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-14.805333pt;}
._3{margin-left:-13.120000pt;}
._c{margin-left:-11.935360pt;}
._1{margin-left:-7.349333pt;}
._a{margin-left:-6.026667pt;}
._8{margin-left:-4.416000pt;}
._2{margin-left:-3.509333pt;}
._0{margin-left:-1.728000pt;}
._5{width:1.472000pt;}
._9{width:2.570667pt;}
._f{width:3.637333pt;}
._b{width:6.208000pt;}
._e{width:12.256853pt;}
._10{width:13.314987pt;}
._6{width:15.093333pt;}
._7{width:17.461333pt;}
._d{width:167.061333pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:6.546667pt;}
.ycb{bottom:6.560000pt;}
.yd1{bottom:30.546667pt;}
.ycf{bottom:30.560000pt;}
.y1a{bottom:102.432000pt;}
.y21{bottom:102.752000pt;}
.y42{bottom:103.232000pt;}
.y3c{bottom:107.712000pt;}
.y8b{bottom:109.472000pt;}
.ybc{bottom:114.432000pt;}
.y99{bottom:114.752000pt;}
.y67{bottom:115.232000pt;}
.y3b{bottom:124.192000pt;}
.y51{bottom:126.272000pt;}
.y8d{bottom:126.432000pt;}
.ya0{bottom:126.592000pt;}
.y84{bottom:126.752000pt;}
.y41{bottom:127.232000pt;}
.y50{bottom:132.352000pt;}
.y73{bottom:133.466667pt;}
.y19{bottom:138.426667pt;}
.y20{bottom:138.746667pt;}
.y4f{bottom:148.186667pt;}
.y40{bottom:150.426667pt;}
.y98{bottom:150.746667pt;}
.y57{bottom:151.226667pt;}
.y3f{bottom:155.706667pt;}
.ybd{bottom:162.586667pt;}
.y83{bottom:162.746667pt;}
.y9f{bottom:163.226667pt;}
.y6f{bottom:167.386667pt;}
.y3e{bottom:172.186667pt;}
.y56{bottom:174.266667pt;}
.y35{bottom:174.426667pt;}
.yb2{bottom:174.586667pt;}
.y18{bottom:174.746667pt;}
.y5d{bottom:175.226667pt;}
.y55{bottom:180.346667pt;}
.ybb{bottom:186.426667pt;}
.y97{bottom:186.746667pt;}
.y66{bottom:187.226667pt;}
.y9e{bottom:189.466667pt;}
.y54{bottom:196.186667pt;}
.y82{bottom:198.746667pt;}
.y5c{bottom:199.226667pt;}
.y34{bottom:210.426667pt;}
.yac{bottom:210.586667pt;}
.y17{bottom:210.746667pt;}
.y5b{bottom:222.426667pt;}
.yc2{bottom:222.586667pt;}
.y96{bottom:222.746667pt;}
.y65{bottom:223.226667pt;}
.y8c{bottom:223.386667pt;}
.y5a{bottom:227.706667pt;}
.y81{bottom:234.746667pt;}
.y4b{bottom:241.466667pt;}
.y59{bottom:244.186667pt;}
.y33{bottom:246.426667pt;}
.y16{bottom:246.586667pt;}
.y1f{bottom:246.746667pt;}
.y64{bottom:251.386667pt;}
.y8a{bottom:254.426667pt;}
.yba{bottom:258.426667pt;}
.y95{bottom:258.746667pt;}
.y80{bottom:270.746667pt;}
.y32{bottom:282.426667pt;}
.y15{bottom:282.586667pt;}
.y1e{bottom:282.746667pt;}
.y48{bottom:283.226667pt;}
.y53{bottom:288.826667pt;}
.yb9{bottom:294.426667pt;}
.y94{bottom:294.746667pt;}
.y7f{bottom:306.786667pt;}
.y47{bottom:310.306667pt;}
.yc7{bottom:313.186667pt;}
.yab{bottom:314.146667pt;}
.y31{bottom:318.466667pt;}
.y14{bottom:318.626667pt;}
.y1d{bottom:318.786667pt;}
.y39{bottom:318.946667pt;}
.y3a{bottom:324.226667pt;}
.y93{bottom:330.466667pt;}
.yc1{bottom:330.786667pt;}
.y7e{bottom:342.786667pt;}
.yca{bottom:346.306667pt;}
.y30{bottom:354.466667pt;}
.yb0{bottom:354.626667pt;}
.y13{bottom:354.786667pt;}
.y38{bottom:355.586667pt;}
.yc0{bottom:357.506667pt;}
.y92{bottom:366.466667pt;}
.y9d{bottom:366.786667pt;}
.y7d{bottom:378.786667pt;}
.y2f{bottom:390.466667pt;}
.y12{bottom:390.786667pt;}
.y91{bottom:393.186667pt;}
.yb8{bottom:402.466667pt;}
.y9c{bottom:402.786667pt;}
.y89{bottom:403.266667pt;}
.y7c{bottom:414.786667pt;}
.y85{bottom:416.066667pt;}
.y11{bottom:426.466667pt;}
.y1c{bottom:426.786667pt;}
.yaf{bottom:427.266667pt;}
.y88{bottom:431.106667pt;}
.yc4{bottom:434.466667pt;}
.yb7{bottom:438.466667pt;}
.y9b{bottom:438.786667pt;}
.y7b{bottom:450.786667pt;}
.ybf{bottom:452.386667pt;}
.y46{bottom:453.986667pt;}
.y2e{bottom:462.466667pt;}
.y10{bottom:462.786667pt;}
.yae{bottom:463.266667pt;}
.y9a{bottom:466.466667pt;}
.yc9{bottom:470.466667pt;}
.y72{bottom:471.426667pt;}
.yb6{bottom:474.786667pt;}
.y7a{bottom:486.786667pt;}
.yad{bottom:492.386667pt;}
.yb1{bottom:495.266667pt;}
.y2d{bottom:498.466667pt;}
.yf{bottom:498.786667pt;}
.y4e{bottom:499.266667pt;}
.y6e{bottom:499.426667pt;}
.yaa{bottom:510.786667pt;}
.y79{bottom:522.786667pt;}
.y4d{bottom:533.346667pt;}
.y2c{bottom:534.466667pt;}
.ye{bottom:534.786667pt;}
.y90{bottom:545.533333pt;}
.ya9{bottom:546.813333pt;}
.y63{bottom:547.293333pt;}
.y78{bottom:558.813333pt;}
.y2b{bottom:570.493333pt;}
.yd{bottom:570.813333pt;}
.y62{bottom:581.373333pt;}
.ya8{bottom:582.813333pt;}
.y77{bottom:594.813333pt;}
.y45{bottom:598.333333pt;}
.y2a{bottom:606.493333pt;}
.yc{bottom:606.813333pt;}
.y8f{bottom:607.293333pt;}
.y52{bottom:612.893333pt;}
.yb5{bottom:618.653333pt;}
.ya7{bottom:618.813333pt;}
.yd4{bottom:630.493333pt;}
.y76{bottom:630.813333pt;}
.y8e{bottom:632.253333pt;}
.y29{bottom:642.493333pt;}
.yb{bottom:642.813333pt;}
.y44{bottom:643.773333pt;}
.y58{bottom:648.893333pt;}
.ya6{bottom:654.813333pt;}
.y75{bottom:659.133333pt;}
.y43{bottom:669.533333pt;}
.y28{bottom:678.493333pt;}
.yd3{bottom:678.506667pt;}
.ya{bottom:678.813333pt;}
.y3d{bottom:684.893333pt;}
.ya5{bottom:690.653333pt;}
.yb4{bottom:690.813333pt;}
.y87{bottom:699.133333pt;}
.y61{bottom:703.293333pt;}
.y27{bottom:714.493333pt;}
.y9{bottom:714.813333pt;}
.yd0{bottom:726.506667pt;}
.ya4{bottom:726.813333pt;}
.y60{bottom:737.533333pt;}
.y26{bottom:750.493333pt;}
.y8{bottom:750.813333pt;}
.ya3{bottom:762.813333pt;}
.yce{bottom:774.533333pt;}
.y25{bottom:786.533333pt;}
.y7{bottom:786.853333pt;}
.y71{bottom:787.333333pt;}
.y37{bottom:787.653333pt;}
.yb3{bottom:796.293333pt;}
.ya2{bottom:799.333333pt;}
.y74{bottom:800.133333pt;}
.y70{bottom:813.573333pt;}
.y24{bottom:822.533333pt;}
.y6{bottom:822.853333pt;}
.y6d{bottom:823.653333pt;}
.ya1{bottom:827.493333pt;}
.yc3{bottom:838.373333pt;}
.ycd{bottom:846.533333pt;}
.yc6{bottom:846.853333pt;}
.y23{bottom:858.533333pt;}
.y5{bottom:858.853333pt;}
.y6c{bottom:859.333333pt;}
.ybe{bottom:859.493333pt;}
.y86{bottom:866.213333pt;}
.ycc{bottom:870.533333pt;}
.yc8{bottom:874.373333pt;}
.yc5{bottom:874.533333pt;}
.y5f{bottom:883.333333pt;}
.y4a{bottom:894.533333pt;}
.y4{bottom:894.853333pt;}
.y6b{bottom:895.333333pt;}
.y5e{bottom:916.453333pt;}
.y36{bottom:930.533333pt;}
.y3{bottom:930.853333pt;}
.y6a{bottom:931.333333pt;}
.y22{bottom:966.533333pt;}
.y2{bottom:966.853333pt;}
.y69{bottom:967.333333pt;}
.y49{bottom:967.653333pt;}
.y1b{bottom:1002.533333pt;}
.y1{bottom:1002.853333pt;}
.y68{bottom:1003.333333pt;}
.y4c{bottom:1008.933333pt;}
.h12{height:23.986667pt;}
.h6{height:32.515937pt;}
.hf{height:40.280938pt;}
.h9{height:42.084375pt;}
.h14{height:47.986667pt;}
.h16{height:48.000000pt;}
.h15{height:48.018667pt;}
.h7{height:48.531250pt;}
.h11{height:49.250000pt;}
.hd{height:51.913539pt;}
.hb{height:52.108438pt;}
.h8{height:52.134375pt;}
.h4{height:57.375000pt;}
.hc{height:57.758750pt;}
.h10{height:57.787500pt;}
.h13{height:60.300000pt;}
.ha{height:60.519362pt;}
.he{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h5{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:142.413333pt;}
.w5{width:142.426667pt;}
.w4{width:142.560000pt;}
.w6{width:142.573333pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:7.192000pt;}
.x39{left:112.840000pt;}
.x1{left:120.032000pt;}
.x5{left:125.472000pt;}
.x3d{left:128.032000pt;}
.xa{left:136.026667pt;}
.x12{left:183.366667pt;}
.x13{left:188.826667pt;}
.x14{left:232.006667pt;}
.x15{left:237.466667pt;}
.x2e{left:240.026667pt;}
.x3b{left:255.266667pt;}
.x33{left:269.986667pt;}
.x6{left:286.606667pt;}
.x7{left:292.066667pt;}
.x2d{left:304.066667pt;}
.x4{left:312.066667pt;}
.x32{left:336.226667pt;}
.x24{left:389.026667pt;}
.x38{left:396.866667pt;}
.x3c{left:397.826667pt;}
.xc{left:410.126667pt;}
.xd{left:415.613333pt;}
.x8{left:432.093333pt;}
.x2b{left:450.173333pt;}
.xf{left:480.413333pt;}
.x23{left:482.013333pt;}
.x31{left:497.853333pt;}
.x2f{left:502.173333pt;}
.x9{left:512.093333pt;}
.xb{left:520.093333pt;}
.x21{left:524.093333pt;}
.x34{left:528.093333pt;}
.x20{left:532.573333pt;}
.x37{left:535.293333pt;}
.x1c{left:538.653333pt;}
.x26{left:540.733333pt;}
.x36{left:541.853333pt;}
.xe{left:542.813333pt;}
.x2{left:554.953333pt;}
.x3{left:560.413333pt;}
.x28{left:576.253333pt;}
.x19{left:585.413333pt;}
.x1d{left:588.773333pt;}
.x2a{left:594.213333pt;}
.x10{left:602.673333pt;}
.x1a{left:604.133333pt;}
.x11{left:608.133333pt;}
.x27{left:612.613333pt;}
.x1f{left:620.133333pt;}
.x29{left:622.213333pt;}
.x2c{left:640.933333pt;}
.x16{left:648.453333pt;}
.x1e{left:649.573333pt;}
.x22{left:652.613333pt;}
.x1b{left:658.053333pt;}
.x18{left:660.133333pt;}
.x17{left:662.373333pt;}
.x25{left:672.933333pt;}
.x35{left:674.053333pt;}
.x30{left:690.853333pt;}
}




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