
    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_b5842c1ddec184a6483c79d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886737;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_d742f358080482743544e623.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917969;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_0db8fdff1fe0bc6dcb3eca8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_9a33400918c1f831028a1871.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_08c4e57efba169ca03e87a29.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4841045c08dbfa0949daedd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_80429e8006e73005219b5e2d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e5971e29be4881d0827d5678.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.863770;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_746e33558ca44d05453e0521.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsb{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.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;}
}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.wsd{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-62.640000px;}
._17{margin-left:-2.419680px;}
._4{margin-left:-1.192320px;}
._6{width:1.630320px;}
._11{width:3.576960px;}
._b{width:4.769280px;}
._23{width:5.909760px;}
._8{width:7.021440px;}
._2a{width:8.104320px;}
._c{width:9.141120px;}
._f{width:10.995840px;}
._e{width:12.121920px;}
._a{width:13.181760px;}
._16{width:14.400000px;}
._7{width:15.433920px;}
._28{width:16.511040px;}
._10{width:17.579280px;}
._9{width:18.679680px;}
._1b{width:19.800000px;}
._2b{width:20.839680px;}
._d{width:21.925440px;}
._12{width:23.250240px;}
._0{width:24.708000px;}
._22{width:26.541600px;}
._21{width:28.077360px;}
._18{width:29.448000px;}
._37{width:31.104000px;}
._20{width:32.328000px;}
._26{width:33.408000px;}
._36{width:34.482000px;}
._19{width:35.712000px;}
._35{width:36.936000px;}
._25{width:38.016000px;}
._24{width:39.024000px;}
._55{width:40.049280px;}
._29{width:41.143680px;}
._27{width:42.160320px;}
._39{width:43.207680px;}
._1d{width:44.496000px;}
._1c{width:45.864000px;}
._1e{width:47.664000px;}
._1f{width:49.101360px;}
._34{width:50.832000px;}
._3a{width:51.840000px;}
._3b{width:52.848000px;}
._3c{width:53.853360px;}
._56{width:54.920640px;}
._42{width:56.592000px;}
._1a{width:58.320000px;}
._32{width:60.192000px;}
._33{width:61.197360px;}
._3d{width:63.184320px;}
._2c{width:64.800000px;}
._2d{width:65.877360px;}
._48{width:67.072320px;}
._3f{width:68.112000px;}
._4d{width:69.552000px;}
._52{width:71.432640px;}
._38{width:72.504000px;}
._47{width:73.944000px;}
._30{width:75.312000px;}
._31{width:76.314000px;}
._53{width:77.472000px;}
._40{width:78.520320px;}
._3e{width:79.920000px;}
._54{width:81.000000px;}
._59{width:82.440000px;}
._4b{width:84.024000px;}
._43{width:86.757360px;}
._15{width:88.128000px;}
._4f{width:92.160000px;}
._4e{width:94.680000px;}
._41{width:96.664320px;}
._4a{width:97.848000px;}
._46{width:99.472320px;}
._49{width:101.520000px;}
._4c{width:105.480000px;}
._50{width:110.736000px;}
._51{width:112.104000px;}
._57{width:113.296320px;}
._2e{width:115.056000px;}
._2f{width:116.280000px;}
._5a{width:120.168000px;}
._5b{width:121.248000px;}
._5c{width:123.808320px;}
._13{width:138.888000px;}
._14{width:140.184000px;}
._58{width:141.480000px;}
._5e{width:145.440000px;}
._45{width:165.816000px;}
._44{width:167.448000px;}
._5f{width:223.128000px;}
._60{width:224.712000px;}
._2{width:365.916000px;}
._5d{width:469.938000px;}
._5{width:1012.176960px;}
._3{width:1386.300000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc7{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,63,119);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y7{bottom:4.140000px;}
.y1d{bottom:4.500000px;}
.y45{bottom:5.940000px;}
.y3d{bottom:21.415500px;}
.y42{bottom:23.040000px;}
.y1c{bottom:25.200000px;}
.y41{bottom:42.840000px;}
.y1b{bottom:45.900000px;}
.y6{bottom:53.640000px;}
.y5{bottom:58.176000px;}
.y3c{bottom:59.749500px;}
.y40{bottom:63.720000px;}
.y1a{bottom:66.600000px;}
.y3b{bottom:78.829500px;}
.y3f{bottom:83.550000px;}
.y19{bottom:87.300000px;}
.y3a{bottom:97.729500px;}
.y18{bottom:107.640000px;}
.y1e{bottom:108.400500px;}
.y39{bottom:116.809500px;}
.y17{bottom:128.520000px;}
.y88{bottom:129.816000px;}
.y79{bottom:130.176000px;}
.y38{bottom:135.709500px;}
.y82{bottom:150.510000px;}
.y78{bottom:150.870000px;}
.y37{bottom:154.789500px;}
.y7c{bottom:171.210000px;}
.y77{bottom:171.570000px;}
.y36{bottom:173.689500px;}
.y7b{bottom:191.910000px;}
.y76{bottom:192.270000px;}
.y35{bottom:192.589500px;}
.y4d{bottom:202.894500px;}
.y34{bottom:211.714500px;}
.y92{bottom:212.610000px;}
.y75{bottom:212.970000px;}
.y4c{bottom:222.874500px;}
.y33{bottom:230.614500px;}
.y91{bottom:233.310000px;}
.y74{bottom:233.670000px;}
.y4b{bottom:243.574500px;}
.y32{bottom:249.694500px;}
.y90{bottom:254.010000px;}
.y73{bottom:254.370000px;}
.y4a{bottom:264.274500px;}
.y31{bottom:268.594500px;}
.y72{bottom:275.070000px;}
.y9a{bottom:280.470000px;}
.y49{bottom:284.614500px;}
.y30{bottom:287.494500px;}
.y97{bottom:295.410000px;}
.y71{bottom:295.770000px;}
.y48{bottom:305.314500px;}
.y2f{bottom:306.574500px;}
.y96{bottom:316.155000px;}
.y70{bottom:316.515000px;}
.y99{bottom:320.295000px;}
.y2e{bottom:325.474500px;}
.y47{bottom:326.194500px;}
.y6f{bottom:337.215000px;}
.y2d{bottom:344.554500px;}
.y46{bottom:345.994500px;}
.y6e{bottom:357.915000px;}
.y98{bottom:358.455000px;}
.y2c{bottom:363.454500px;}
.y6d{bottom:378.615000px;}
.y2b{bottom:382.354500px;}
.y6c{bottom:399.315000px;}
.y2a{bottom:401.434500px;}
.y8f{bottom:419.655000px;}
.y6b{bottom:420.015000px;}
.y29{bottom:420.334500px;}
.y28{bottom:439.414500px;}
.y8e{bottom:440.355000px;}
.y6a{bottom:440.715000px;}
.y27{bottom:458.344500px;}
.y69{bottom:461.415000px;}
.y44{bottom:469.875000px;}
.y26{bottom:477.244500px;}
.y8a{bottom:481.755000px;}
.y68{bottom:482.115000px;}
.y3e{bottom:491.295000px;}
.y25{bottom:496.324500px;}
.y89{bottom:502.455000px;}
.y67{bottom:502.815000px;}
.y24{bottom:515.224500px;}
.y7f{bottom:522.975000px;}
.y66{bottom:523.335000px;}
.y23{bottom:534.304500px;}
.y7e{bottom:543.675000px;}
.y65{bottom:544.035000px;}
.y22{bottom:553.204500px;}
.y64{bottom:564.765000px;}
.y21{bottom:572.104500px;}
.y63{bottom:585.465000px;}
.y16{bottom:590.325000px;}
.y20{bottom:591.184500px;}
.y62{bottom:606.165000px;}
.y1f{bottom:610.444500px;}
.y61{bottom:626.865000px;}
.y8d{bottom:647.205000px;}
.y60{bottom:647.565000px;}
.y8c{bottom:667.905000px;}
.y5f{bottom:668.265000px;}
.y8b{bottom:688.605000px;}
.y5e{bottom:688.965000px;}
.y95{bottom:709.305000px;}
.y5d{bottom:709.665000px;}
.y5c{bottom:730.365000px;}
.y15{bottom:738.645000px;}
.y81{bottom:750.705000px;}
.y5b{bottom:751.065000px;}
.y14{bottom:758.805000px;}
.y80{bottom:771.405000px;}
.y5a{bottom:771.765000px;}
.y13{bottom:779.325000px;}
.y7d{bottom:792.105000px;}
.y59{bottom:792.465000px;}
.y12{bottom:801.825000px;}
.y58{bottom:813.210000px;}
.y11{bottom:822.570000px;}
.y57{bottom:833.910000px;}
.y10{bottom:851.550000px;}
.y56{bottom:854.610000px;}
.yf{bottom:872.250000px;}
.y94{bottom:874.950000px;}
.y55{bottom:875.310000px;}
.ye{bottom:892.950000px;}
.y93{bottom:895.650000px;}
.y54{bottom:896.010000px;}
.yd{bottom:913.650000px;}
.y87{bottom:916.350000px;}
.y53{bottom:916.710000px;}
.yc{bottom:934.350000px;}
.y86{bottom:937.050000px;}
.y52{bottom:937.410000px;}
.yb{bottom:946.410000px;}
.y85{bottom:957.750000px;}
.y51{bottom:958.110000px;}
.ya{bottom:968.010000px;}
.y84{bottom:978.450000px;}
.y50{bottom:978.810000px;}
.y9{bottom:992.850000px;}
.y83{bottom:999.150000px;}
.y4f{bottom:999.510000px;}
.y8{bottom:1016.970000px;}
.y4e{bottom:1019.850000px;}
.y7a{bottom:1020.210000px;}
.y4{bottom:1058.910000px;}
.y3{bottom:1077.660000px;}
.y2{bottom:1094.400000px;}
.y1{bottom:1116.720000px;}
.h6{height:19.800000px;}
.h18{height:21.405000px;}
.h3{height:34.414263px;}
.h15{height:45.928125px;}
.h10{height:47.255406px;}
.hb{height:47.344922px;}
.h5{height:48.030469px;}
.ha{height:48.122227px;}
.h17{height:49.811073px;}
.he{height:49.921875px;}
.h1a{height:50.273438px;}
.h1b{height:51.364571px;}
.hf{height:52.207031px;}
.h2{height:57.656250px;}
.h8{height:60.096549px;}
.h14{height:65.010937px;}
.h4{height:65.884219px;}
.h1{height:68.314880px;}
.hd{height:70.664062px;}
.hc{height:71.824219px;}
.h12{height:72.562500px;}
.h9{height:81.736875px;}
.h7{height:84.898125px;}
.h16{height:99.030000px;}
.h11{height:144.000000px;}
.h19{height:361.465500px;}
.h13{height:625.930500px;}
.h0{height:1188.000000px;}
.w2{width:232.950000px;}
.w3{width:532.155000px;}
.w1{width:777.780000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.xa{left:99.936000px;}
.x1{left:108.036000px;}
.x3{left:119.196000px;}
.x10{left:162.030000px;}
.xd{left:171.174000px;}
.x6{left:194.250000px;}
.x8{left:195.510000px;}
.x7{left:212.070000px;}
.xc{left:332.895000px;}
.x9{left:383.475000px;}
.x4{left:387.615000px;}
.x5{left:459.075000px;}
.xe{left:474.915000px;}
.xf{left:528.945000px;}
.x2{left:785.130000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.640000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-55.680000pt;}
._17{margin-left:-2.150827pt;}
._4{margin-left:-1.059840pt;}
._6{width:1.449173pt;}
._11{width:3.179520pt;}
._b{width:4.239360pt;}
._23{width:5.253120pt;}
._8{width:6.241280pt;}
._2a{width:7.203840pt;}
._c{width:8.125440pt;}
._f{width:9.774080pt;}
._e{width:10.775040pt;}
._a{width:11.717120pt;}
._16{width:12.800000pt;}
._7{width:13.719040pt;}
._28{width:14.676480pt;}
._10{width:15.626027pt;}
._9{width:16.604160pt;}
._1b{width:17.600000pt;}
._2b{width:18.524160pt;}
._d{width:19.489280pt;}
._12{width:20.666880pt;}
._0{width:21.962667pt;}
._22{width:23.592533pt;}
._21{width:24.957653pt;}
._18{width:26.176000pt;}
._37{width:27.648000pt;}
._20{width:28.736000pt;}
._26{width:29.696000pt;}
._36{width:30.650667pt;}
._19{width:31.744000pt;}
._35{width:32.832000pt;}
._25{width:33.792000pt;}
._24{width:34.688000pt;}
._55{width:35.599360pt;}
._29{width:36.572160pt;}
._27{width:37.475840pt;}
._39{width:38.406827pt;}
._1d{width:39.552000pt;}
._1c{width:40.768000pt;}
._1e{width:42.368000pt;}
._1f{width:43.645653pt;}
._34{width:45.184000pt;}
._3a{width:46.080000pt;}
._3b{width:46.976000pt;}
._3c{width:47.869653pt;}
._56{width:48.818347pt;}
._42{width:50.304000pt;}
._1a{width:51.840000pt;}
._32{width:53.504000pt;}
._33{width:54.397653pt;}
._3d{width:56.163840pt;}
._2c{width:57.600000pt;}
._2d{width:58.557653pt;}
._48{width:59.619840pt;}
._3f{width:60.544000pt;}
._4d{width:61.824000pt;}
._52{width:63.495680pt;}
._38{width:64.448000pt;}
._47{width:65.728000pt;}
._30{width:66.944000pt;}
._31{width:67.834667pt;}
._53{width:68.864000pt;}
._40{width:69.795840pt;}
._3e{width:71.040000pt;}
._54{width:72.000000pt;}
._59{width:73.280000pt;}
._4b{width:74.688000pt;}
._43{width:77.117653pt;}
._15{width:78.336000pt;}
._4f{width:81.920000pt;}
._4e{width:84.160000pt;}
._41{width:85.923840pt;}
._4a{width:86.976000pt;}
._46{width:88.419840pt;}
._49{width:90.240000pt;}
._4c{width:93.760000pt;}
._50{width:98.432000pt;}
._51{width:99.648000pt;}
._57{width:100.707840pt;}
._2e{width:102.272000pt;}
._2f{width:103.360000pt;}
._5a{width:106.816000pt;}
._5b{width:107.776000pt;}
._5c{width:110.051840pt;}
._13{width:123.456000pt;}
._14{width:124.608000pt;}
._58{width:125.760000pt;}
._5e{width:129.280000pt;}
._45{width:147.392000pt;}
._44{width:148.842667pt;}
._5f{width:198.336000pt;}
._60{width:199.744000pt;}
._2{width:325.258667pt;}
._5d{width:417.722667pt;}
._5{width:899.712853pt;}
._3{width:1232.266667pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y7{bottom:3.680000pt;}
.y1d{bottom:4.000000pt;}
.y45{bottom:5.280000pt;}
.y3d{bottom:19.036000pt;}
.y42{bottom:20.480000pt;}
.y1c{bottom:22.400000pt;}
.y41{bottom:38.080000pt;}
.y1b{bottom:40.800000pt;}
.y6{bottom:47.680000pt;}
.y5{bottom:51.712000pt;}
.y3c{bottom:53.110667pt;}
.y40{bottom:56.640000pt;}
.y1a{bottom:59.200000pt;}
.y3b{bottom:70.070667pt;}
.y3f{bottom:74.266667pt;}
.y19{bottom:77.600000pt;}
.y3a{bottom:86.870667pt;}
.y18{bottom:95.680000pt;}
.y1e{bottom:96.356000pt;}
.y39{bottom:103.830667pt;}
.y17{bottom:114.240000pt;}
.y88{bottom:115.392000pt;}
.y79{bottom:115.712000pt;}
.y38{bottom:120.630667pt;}
.y82{bottom:133.786667pt;}
.y78{bottom:134.106667pt;}
.y37{bottom:137.590667pt;}
.y7c{bottom:152.186667pt;}
.y77{bottom:152.506667pt;}
.y36{bottom:154.390667pt;}
.y7b{bottom:170.586667pt;}
.y76{bottom:170.906667pt;}
.y35{bottom:171.190667pt;}
.y4d{bottom:180.350667pt;}
.y34{bottom:188.190667pt;}
.y92{bottom:188.986667pt;}
.y75{bottom:189.306667pt;}
.y4c{bottom:198.110667pt;}
.y33{bottom:204.990667pt;}
.y91{bottom:207.386667pt;}
.y74{bottom:207.706667pt;}
.y4b{bottom:216.510667pt;}
.y32{bottom:221.950667pt;}
.y90{bottom:225.786667pt;}
.y73{bottom:226.106667pt;}
.y4a{bottom:234.910667pt;}
.y31{bottom:238.750667pt;}
.y72{bottom:244.506667pt;}
.y9a{bottom:249.306667pt;}
.y49{bottom:252.990667pt;}
.y30{bottom:255.550667pt;}
.y97{bottom:262.586667pt;}
.y71{bottom:262.906667pt;}
.y48{bottom:271.390667pt;}
.y2f{bottom:272.510667pt;}
.y96{bottom:281.026667pt;}
.y70{bottom:281.346667pt;}
.y99{bottom:284.706667pt;}
.y2e{bottom:289.310667pt;}
.y47{bottom:289.950667pt;}
.y6f{bottom:299.746667pt;}
.y2d{bottom:306.270667pt;}
.y46{bottom:307.550667pt;}
.y6e{bottom:318.146667pt;}
.y98{bottom:318.626667pt;}
.y2c{bottom:323.070667pt;}
.y6d{bottom:336.546667pt;}
.y2b{bottom:339.870667pt;}
.y6c{bottom:354.946667pt;}
.y2a{bottom:356.830667pt;}
.y8f{bottom:373.026667pt;}
.y6b{bottom:373.346667pt;}
.y29{bottom:373.630667pt;}
.y28{bottom:390.590667pt;}
.y8e{bottom:391.426667pt;}
.y6a{bottom:391.746667pt;}
.y27{bottom:407.417333pt;}
.y69{bottom:410.146667pt;}
.y44{bottom:417.666667pt;}
.y26{bottom:424.217333pt;}
.y8a{bottom:428.226667pt;}
.y68{bottom:428.546667pt;}
.y3e{bottom:436.706667pt;}
.y25{bottom:441.177333pt;}
.y89{bottom:446.626667pt;}
.y67{bottom:446.946667pt;}
.y24{bottom:457.977333pt;}
.y7f{bottom:464.866667pt;}
.y66{bottom:465.186667pt;}
.y23{bottom:474.937333pt;}
.y7e{bottom:483.266667pt;}
.y65{bottom:483.586667pt;}
.y22{bottom:491.737333pt;}
.y64{bottom:502.013333pt;}
.y21{bottom:508.537333pt;}
.y63{bottom:520.413333pt;}
.y16{bottom:524.733333pt;}
.y20{bottom:525.497333pt;}
.y62{bottom:538.813333pt;}
.y1f{bottom:542.617333pt;}
.y61{bottom:557.213333pt;}
.y8d{bottom:575.293333pt;}
.y60{bottom:575.613333pt;}
.y8c{bottom:593.693333pt;}
.y5f{bottom:594.013333pt;}
.y8b{bottom:612.093333pt;}
.y5e{bottom:612.413333pt;}
.y95{bottom:630.493333pt;}
.y5d{bottom:630.813333pt;}
.y5c{bottom:649.213333pt;}
.y15{bottom:656.573333pt;}
.y81{bottom:667.293333pt;}
.y5b{bottom:667.613333pt;}
.y14{bottom:674.493333pt;}
.y80{bottom:685.693333pt;}
.y5a{bottom:686.013333pt;}
.y13{bottom:692.733333pt;}
.y7d{bottom:704.093333pt;}
.y59{bottom:704.413333pt;}
.y12{bottom:712.733333pt;}
.y58{bottom:722.853333pt;}
.y11{bottom:731.173333pt;}
.y57{bottom:741.253333pt;}
.y10{bottom:756.933333pt;}
.y56{bottom:759.653333pt;}
.yf{bottom:775.333333pt;}
.y94{bottom:777.733333pt;}
.y55{bottom:778.053333pt;}
.ye{bottom:793.733333pt;}
.y93{bottom:796.133333pt;}
.y54{bottom:796.453333pt;}
.yd{bottom:812.133333pt;}
.y87{bottom:814.533333pt;}
.y53{bottom:814.853333pt;}
.yc{bottom:830.533333pt;}
.y86{bottom:832.933333pt;}
.y52{bottom:833.253333pt;}
.yb{bottom:841.253333pt;}
.y85{bottom:851.333333pt;}
.y51{bottom:851.653333pt;}
.ya{bottom:860.453333pt;}
.y84{bottom:869.733333pt;}
.y50{bottom:870.053333pt;}
.y9{bottom:882.533333pt;}
.y83{bottom:888.133333pt;}
.y4f{bottom:888.453333pt;}
.y8{bottom:903.973333pt;}
.y4e{bottom:906.533333pt;}
.y7a{bottom:906.853333pt;}
.y4{bottom:941.253333pt;}
.y3{bottom:957.920000pt;}
.y2{bottom:972.800000pt;}
.y1{bottom:992.640000pt;}
.h6{height:17.600000pt;}
.h18{height:19.026667pt;}
.h3{height:30.590456pt;}
.h15{height:40.825000pt;}
.h10{height:42.004805pt;}
.hb{height:42.084375pt;}
.h5{height:42.693750pt;}
.ha{height:42.775312pt;}
.h17{height:44.276509pt;}
.he{height:44.375000pt;}
.h1a{height:44.687500pt;}
.h1b{height:45.657397pt;}
.hf{height:46.406250pt;}
.h2{height:51.250000pt;}
.h8{height:53.419154pt;}
.h14{height:57.787500pt;}
.h4{height:58.563750pt;}
.h1{height:60.724338pt;}
.hd{height:62.812500pt;}
.hc{height:63.843750pt;}
.h12{height:64.500000pt;}
.h9{height:72.655000pt;}
.h7{height:75.465000pt;}
.h16{height:88.026667pt;}
.h11{height:128.000000pt;}
.h19{height:321.302667pt;}
.h13{height:556.382667pt;}
.h0{height:1056.000000pt;}
.w2{width:207.066667pt;}
.w3{width:473.026667pt;}
.w1{width:691.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.xa{left:88.832000pt;}
.x1{left:96.032000pt;}
.x3{left:105.952000pt;}
.x10{left:144.026667pt;}
.xd{left:152.154667pt;}
.x6{left:172.666667pt;}
.x8{left:173.786667pt;}
.x7{left:188.506667pt;}
.xc{left:295.906667pt;}
.x9{left:340.866667pt;}
.x4{left:344.546667pt;}
.x5{left:408.066667pt;}
.xe{left:422.146667pt;}
.xf{left:470.173333pt;}
.x2{left:697.893333pt;}
}




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