
    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_34b3015959024b120899dd42.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_0f3bbbe62d4fab068b1917bc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b8a2c914507e355bd8ee662d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82e2ea770685e3076b3a6438.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f5bfd383474d8dbc6ab19680.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_28ab90d82709a8642a0515c2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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);}
.v5{vertical-align:-84.000000px;}
.v4{vertical-align:-82.500000px;}
.v2{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v1{vertical-align:24.000000px;}
.ls2b{letter-spacing:-1.032000px;}
.ls1d{letter-spacing:-0.516000px;}
.ls22{letter-spacing:-0.492000px;}
.ls9{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.468000px;}
.ls25{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.327000px;}
.lsf{letter-spacing:-0.192000px;}
.ls8{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.024000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024000px;}
.ls17{letter-spacing:0.084000px;}
.ls1c{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.312000px;}
.lsd{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.420000px;}
.ls2a{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.468000px;}
.ls11{letter-spacing:0.480000px;}
.lse{letter-spacing:0.492000px;}
.lsa{letter-spacing:0.516000px;}
.ls16{letter-spacing:0.612000px;}
.ls27{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.696000px;}
.ls4{letter-spacing:0.750000px;}
.ls29{letter-spacing:0.810000px;}
.ls24{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.870000px;}
.ls26{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.960000px;}
.ls19{letter-spacing:0.984000px;}
.ls1{letter-spacing:1.440000px;}
.ls21{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.524000px;}
.ls1e{letter-spacing:16.500000px;}
.lsb{letter-spacing:198.150000px;}
.ls23{letter-spacing:1386.630000px;}
.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;}
}
.wsf{word-spacing:-18.984000px;}
.wse{word-spacing:-18.516000px;}
.ws8{word-spacing:-18.492000px;}
.wsc{word-spacing:-18.468000px;}
.wsb{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.976000px;}
.ws12{word-spacing:-17.892000px;}
.ws2{word-spacing:-17.532000px;}
.ws13{word-spacing:-17.508000px;}
.ws11{word-spacing:-17.484000px;}
.ws15{word-spacing:-16.968000px;}
.ws9{word-spacing:-15.480000px;}
.ws6{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.820000px;}
.ws14{word-spacing:-14.640000px;}
.wsa{word-spacing:-14.520000px;}
.ws1{word-spacing:-14.250000px;}
.ws5{word-spacing:-12.000000px;}
.ws3{word-spacing:-10.842000px;}
.ws10{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-2.037000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.070000px;}
._4{width:3.300000px;}
._5{width:4.647000px;}
._6{width:198.150000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:3.360000px;}
.ya3{bottom:3.375000px;}
.ya6{bottom:6.735000px;}
.y9d{bottom:6.750000px;}
.ycb{bottom:6.757500px;}
.yac{bottom:6.765000px;}
.yd1{bottom:6.780000px;}
.yb8{bottom:10.125000px;}
.ycc{bottom:11.992500px;}
.y9f{bottom:12.000000px;}
.ya7{bottom:12.030000px;}
.yc9{bottom:12.045000px;}
.yc4{bottom:17.235000px;}
.ya1{bottom:17.250000px;}
.ybe{bottom:17.280000px;}
.yb6{bottom:18.750000px;}
.ya2{bottom:20.625000px;}
.ybd{bottom:20.655000px;}
.yb7{bottom:27.375000px;}
.y9b{bottom:110.287500px;}
.y27{bottom:111.037500px;}
.y5c{bottom:113.287500px;}
.y8a{bottom:114.037500px;}
.y2e{bottom:116.287500px;}
.y9a{bottom:121.537500px;}
.ycd{bottom:124.912500px;}
.y6b{bottom:127.537500px;}
.y26{bottom:128.287500px;}
.y4d{bottom:130.537500px;}
.y77{bottom:131.287500px;}
.y25{bottom:133.537500px;}
.y5b{bottom:134.287500px;}
.y89{bottom:135.037500px;}
.y99{bottom:142.162500px;}
.y24{bottom:145.537500px;}
.y6a{bottom:148.162500px;}
.yca{bottom:148.912500px;}
.y3b{bottom:150.780000px;}
.y4c{bottom:151.155000px;}
.y76{bottom:151.920000px;}
.y5a{bottom:154.905000px;}
.y88{bottom:155.670000px;}
.y23{bottom:162.795000px;}
.yf8{bottom:167.295000px;}
.y3a{bottom:168.030000px;}
.y69{bottom:168.795000px;}
.y4b{bottom:171.780000px;}
.yc8{bottom:172.905000px;}
.y75{bottom:172.920000px;}
.y59{bottom:175.545000px;}
.y87{bottom:176.295000px;}
.y22{bottom:180.045000px;}
.y98{bottom:183.420000px;}
.y2d{bottom:185.325000px;}
.yf7{bottom:187.950000px;}
.y4a{bottom:188.700000px;}
.y68{bottom:189.825000px;}
.y74{bottom:193.575000px;}
.y58{bottom:196.200000px;}
.y86{bottom:196.950000px;}
.y21{bottom:197.325000px;}
.y20{bottom:202.575000px;}
.y97{bottom:204.075000px;}
.yf6{bottom:208.950000px;}
.y67{bottom:210.450000px;}
.y73{bottom:214.200000px;}
.y1f{bottom:214.575000px;}
.y57{bottom:216.825000px;}
.y85{bottom:217.575000px;}
.y35{bottom:219.825000px;}
.yc7{bottom:220.950000px;}
.y96{bottom:225.075000px;}
.yf5{bottom:229.575000px;}
.y66{bottom:231.075000px;}
.y1e{bottom:231.825000px;}
.y72{bottom:234.825000px;}
.y39{bottom:237.075000px;}
.y56{bottom:237.825000px;}
.y84{bottom:238.575000px;}
.yc6{bottom:244.950000px;}
.y95{bottom:245.700000px;}
.y1d{bottom:249.075000px;}
.y38{bottom:249.450000px;}
.yf4{bottom:250.200000px;}
.y65{bottom:251.700000px;}
.y34{bottom:254.325000px;}
.y71{bottom:255.450000px;}
.y55{bottom:258.450000px;}
.y83{bottom:259.200000px;}
.y1c{bottom:266.325000px;}
.y33{bottom:266.700000px;}
.yc5{bottom:268.950000px;}
.yf3{bottom:270.825000px;}
.y64{bottom:272.325000px;}
.y70{bottom:276.450000px;}
.y54{bottom:279.075000px;}
.y82{bottom:279.825000px;}
.y1b{bottom:283.575000px;}
.y94{bottom:286.950000px;}
.yf2{bottom:291.450000px;}
.y63{bottom:293.325000px;}
.y6f{bottom:297.075000px;}
.y53{bottom:299.700000px;}
.y81{bottom:300.450000px;}
.y1a{bottom:300.825000px;}
.yc2{bottom:303.495000px;}
.y93{bottom:307.620000px;}
.y7b{bottom:309.120000px;}
.yf1{bottom:312.495000px;}
.y62{bottom:313.980000px;}
.y32{bottom:317.745000px;}
.y19{bottom:318.120000px;}
.y52{bottom:320.355000px;}
.y80{bottom:321.120000px;}
.y92{bottom:328.620000px;}
.y7a{bottom:329.745000px;}
.yf0{bottom:333.120000px;}
.y61{bottom:334.620000px;}
.y18{bottom:335.370000px;}
.yc1{bottom:337.995000px;}
.y6e{bottom:338.370000px;}
.y2c{bottom:340.620000px;}
.y51{bottom:341.370000px;}
.y7f{bottom:342.120000px;}
.y91{bottom:349.245000px;}
.y79{bottom:350.370000px;}
.y17{bottom:352.620000px;}
.y2b{bottom:352.995000px;}
.yef{bottom:353.745000px;}
.y60{bottom:355.245000px;}
.y50{bottom:358.245000px;}
.y31{bottom:358.995000px;}
.yc0{bottom:361.995000px;}
.y7e{bottom:362.745000px;}
.y78{bottom:367.245000px;}
.y16{bottom:369.870000px;}
.yee{bottom:374.370000px;}
.y5f{bottom:375.870000px;}
.y6d{bottom:379.995000px;}
.y7d{bottom:383.370000px;}
.ybf{bottom:385.995000px;}
.y15{bottom:387.120000px;}
.y90{bottom:390.495000px;}
.yed{bottom:394.995000px;}
.y5e{bottom:396.870000px;}
.y7c{bottom:400.245000px;}
.y2a{bottom:400.620000px;}
.y14{bottom:404.370000px;}
.ybc{bottom:409.995000px;}
.y8f{bottom:411.120000px;}
.y5d{bottom:413.745000px;}
.yec{bottom:415.620000px;}
.y49{bottom:421.245000px;}
.y13{bottom:426.900000px;}
.y8e{bottom:432.150000px;}
.yeb{bottom:436.650000px;}
.y12{bottom:439.275000px;}
.y29{bottom:441.900000px;}
.ybb{bottom:444.525000px;}
.y30{bottom:447.900000px;}
.y8d{bottom:452.775000px;}
.yea{bottom:457.275000px;}
.y48{bottom:462.525000px;}
.yba{bottom:468.525000px;}
.y8c{bottom:473.400000px;}
.ye9{bottom:477.900000px;}
.y11{bottom:483.525000px;}
.y8b{bottom:490.275000px;}
.yb9{bottom:492.525000px;}
.ye8{bottom:498.525000px;}
.y47{bottom:504.150000px;}
.ye7{bottom:519.150000px;}
.y10{bottom:524.775000px;}
.ye6{bottom:540.195000px;}
.yb5{bottom:540.570000px;}
.y46{bottom:545.445000px;}
.ye5{bottom:560.820000px;}
.yf{bottom:566.070000px;}
.ye4{bottom:581.445000px;}
.y45{bottom:587.070000px;}
.yb4{bottom:588.570000px;}
.ye3{bottom:602.070000px;}
.ye{bottom:607.695000px;}
.yb3{bottom:612.570000px;}
.y2f{bottom:613.695000px;}
.ye2{bottom:622.695000px;}
.y44{bottom:628.320000px;}
.yb2{bottom:636.570000px;}
.ye1{bottom:643.695000px;}
.yc{bottom:648.945000px;}
.yd{bottom:654.945000px;}
.yb1{bottom:660.600000px;}
.ye0{bottom:664.350000px;}
.y43{bottom:669.600000px;}
.yb0{bottom:684.600000px;}
.ydf{bottom:684.975000px;}
.yb{bottom:690.225000px;}
.yde{bottom:705.600000px;}
.yaf{bottom:708.600000px;}
.y42{bottom:711.225000px;}
.ydd{bottom:726.225000px;}
.ya{bottom:731.850000px;}
.yae{bottom:732.600000px;}
.y37{bottom:737.850000px;}
.ydc{bottom:747.225000px;}
.y41{bottom:752.475000px;}
.yad{bottom:756.600000px;}
.ydb{bottom:767.850000px;}
.y9{bottom:773.100000px;}
.yab{bottom:780.630000px;}
.yda{bottom:788.505000px;}
.y40{bottom:793.755000px;}
.yaa{bottom:804.630000px;}
.yd9{bottom:805.380000px;}
.y7{bottom:814.755000px;}
.y8{bottom:820.755000px;}
.ya9{bottom:828.630000px;}
.y3f{bottom:835.380000px;}
.yd8{bottom:839.880000px;}
.y6{bottom:856.005000px;}
.ya8{bottom:863.130000px;}
.yd7{bottom:863.880000px;}
.y3e{bottom:876.630000px;}
.ya5{bottom:887.145000px;}
.yd6{bottom:887.895000px;}
.y5{bottom:897.300000px;}
.y36{bottom:903.300000px;}
.ya4{bottom:911.175000px;}
.yd5{bottom:911.925000px;}
.y6c{bottom:916.050000px;}
.y3d{bottom:918.300000px;}
.ya0{bottom:935.175000px;}
.yd4{bottom:935.925000px;}
.y4{bottom:938.925000px;}
.y3c{bottom:959.550000px;}
.yd3{bottom:959.925000px;}
.y9e{bottom:969.675000px;}
.y3{bottom:980.175000px;}
.yd2{bottom:983.925000px;}
.y9c{bottom:993.675000px;}
.y4f{bottom:1000.800000px;}
.yd0{bottom:1007.925000px;}
.y2{bottom:1021.830000px;}
.ycf{bottom:1031.955000px;}
.y4e{bottom:1042.455000px;}
.yce{bottom:1055.955000px;}
.y1{bottom:1063.080000px;}
.y28{bottom:1069.080000px;}
.hc{height:24.000000px;}
.he{height:24.022500px;}
.hb{height:24.037500px;}
.hd{height:34.500000px;}
.h11{height:34.537500px;}
.h8{height:38.276367px;}
.h5{height:41.578125px;}
.h3{height:47.109375px;}
.hf{height:48.000000px;}
.h10{height:48.037500px;}
.h7{height:52.529297px;}
.h6{height:58.886719px;}
.h4{height:63.035156px;}
.h12{height:70.628906px;}
.h2{height:70.664062px;}
.h1{height:71.109375px;}
.h9{height:72.562500px;}
.ha{height:79.664062px;}
.h0{height:1188.000000px;}
.w3{width:49.162500px;}
.w4{width:83.287500px;}
.w8{width:117.412500px;}
.w5{width:137.662500px;}
.w6{width:139.575000px;}
.w7{width:169.200000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:8.250000px;}
.x27{left:26.287500px;}
.x26{left:33.787500px;}
.x29{left:72.037486px;}
.x5{left:108.037486px;}
.xb{left:112.912486px;}
.x1b{left:117.787486px;}
.x1{left:121.912486px;}
.x1e{left:126.787486px;}
.x1d{left:138.074986px;}
.x21{left:157.200000px;}
.x4{left:162.074986px;}
.x18{left:190.574973px;}
.x19{left:202.574986px;}
.x22{left:240.495000px;}
.xc{left:268.244973px;}
.xd{left:274.244986px;}
.xe{left:279.494973px;}
.xf{left:285.494986px;}
.xa{left:324.149986px;}
.x10{left:329.024973px;}
.x11{left:335.024986px;}
.x1f{left:352.649986px;}
.x1a{left:356.399986px;}
.x6{left:367.274973px;}
.x7{left:373.274986px;}
.x23{left:378.150000px;}
.x3{left:407.069986px;}
.x28{left:411.569986px;}
.x2{left:459.194986px;}
.x12{left:473.444973px;}
.x13{left:479.444986px;}
.x16{left:485.069973px;}
.x17{left:491.069986px;}
.x24{left:517.725000px;}
.x25{left:686.925000px;}
.x14{left:791.204973px;}
.x15{left:797.204986px;}
.x8{left:803.204973px;}
.x9{left:809.204986px;}
.x1c{left:810.344986px;}
@media print{
.v5{vertical-align:-74.666667pt;}
.v4{vertical-align:-73.333333pt;}
.v2{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls2b{letter-spacing:-0.917333pt;}
.ls1d{letter-spacing:-0.458667pt;}
.ls22{letter-spacing:-0.437333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.416000pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.290667pt;}
.lsf{letter-spacing:-0.170667pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls17{letter-spacing:0.074667pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.277333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.373333pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.416000pt;}
.ls11{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.437333pt;}
.lsa{letter-spacing:0.458667pt;}
.ls16{letter-spacing:0.544000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.618667pt;}
.ls4{letter-spacing:0.666667pt;}
.ls29{letter-spacing:0.720000pt;}
.ls24{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.773333pt;}
.ls26{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.853333pt;}
.ls19{letter-spacing:0.874667pt;}
.ls1{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.354667pt;}
.ls1e{letter-spacing:14.666667pt;}
.lsb{letter-spacing:176.133333pt;}
.ls23{letter-spacing:1232.560000pt;}
.wsf{word-spacing:-16.874667pt;}
.wse{word-spacing:-16.458667pt;}
.ws8{word-spacing:-16.437333pt;}
.wsc{word-spacing:-16.416000pt;}
.wsb{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.978667pt;}
.ws12{word-spacing:-15.904000pt;}
.ws2{word-spacing:-15.584000pt;}
.ws13{word-spacing:-15.562667pt;}
.ws11{word-spacing:-15.541333pt;}
.ws15{word-spacing:-15.082667pt;}
.ws9{word-spacing:-13.760000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.173333pt;}
.ws14{word-spacing:-13.013333pt;}
.wsa{word-spacing:-12.906667pt;}
.ws1{word-spacing:-12.666667pt;}
.ws5{word-spacing:-10.666667pt;}
.ws3{word-spacing:-9.637333pt;}
.ws10{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-1.810667pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.840000pt;}
._4{width:2.933333pt;}
._5{width:4.130667pt;}
._6{width:176.133333pt;}
.fs3{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:2.986667pt;}
.ya3{bottom:3.000000pt;}
.ya6{bottom:5.986667pt;}
.y9d{bottom:6.000000pt;}
.ycb{bottom:6.006667pt;}
.yac{bottom:6.013333pt;}
.yd1{bottom:6.026667pt;}
.yb8{bottom:9.000000pt;}
.ycc{bottom:10.660000pt;}
.y9f{bottom:10.666667pt;}
.ya7{bottom:10.693333pt;}
.yc9{bottom:10.706667pt;}
.yc4{bottom:15.320000pt;}
.ya1{bottom:15.333333pt;}
.ybe{bottom:15.360000pt;}
.yb6{bottom:16.666667pt;}
.ya2{bottom:18.333333pt;}
.ybd{bottom:18.360000pt;}
.yb7{bottom:24.333333pt;}
.y9b{bottom:98.033333pt;}
.y27{bottom:98.700000pt;}
.y5c{bottom:100.700000pt;}
.y8a{bottom:101.366667pt;}
.y2e{bottom:103.366667pt;}
.y9a{bottom:108.033333pt;}
.ycd{bottom:111.033333pt;}
.y6b{bottom:113.366667pt;}
.y26{bottom:114.033333pt;}
.y4d{bottom:116.033333pt;}
.y77{bottom:116.700000pt;}
.y25{bottom:118.700000pt;}
.y5b{bottom:119.366667pt;}
.y89{bottom:120.033333pt;}
.y99{bottom:126.366667pt;}
.y24{bottom:129.366667pt;}
.y6a{bottom:131.700000pt;}
.yca{bottom:132.366667pt;}
.y3b{bottom:134.026667pt;}
.y4c{bottom:134.360000pt;}
.y76{bottom:135.040000pt;}
.y5a{bottom:137.693333pt;}
.y88{bottom:138.373333pt;}
.y23{bottom:144.706667pt;}
.yf8{bottom:148.706667pt;}
.y3a{bottom:149.360000pt;}
.y69{bottom:150.040000pt;}
.y4b{bottom:152.693333pt;}
.yc8{bottom:153.693333pt;}
.y75{bottom:153.706667pt;}
.y59{bottom:156.040000pt;}
.y87{bottom:156.706667pt;}
.y22{bottom:160.040000pt;}
.y98{bottom:163.040000pt;}
.y2d{bottom:164.733333pt;}
.yf7{bottom:167.066667pt;}
.y4a{bottom:167.733333pt;}
.y68{bottom:168.733333pt;}
.y74{bottom:172.066667pt;}
.y58{bottom:174.400000pt;}
.y86{bottom:175.066667pt;}
.y21{bottom:175.400000pt;}
.y20{bottom:180.066667pt;}
.y97{bottom:181.400000pt;}
.yf6{bottom:185.733333pt;}
.y67{bottom:187.066667pt;}
.y73{bottom:190.400000pt;}
.y1f{bottom:190.733333pt;}
.y57{bottom:192.733333pt;}
.y85{bottom:193.400000pt;}
.y35{bottom:195.400000pt;}
.yc7{bottom:196.400000pt;}
.y96{bottom:200.066667pt;}
.yf5{bottom:204.066667pt;}
.y66{bottom:205.400000pt;}
.y1e{bottom:206.066667pt;}
.y72{bottom:208.733333pt;}
.y39{bottom:210.733333pt;}
.y56{bottom:211.400000pt;}
.y84{bottom:212.066667pt;}
.yc6{bottom:217.733333pt;}
.y95{bottom:218.400000pt;}
.y1d{bottom:221.400000pt;}
.y38{bottom:221.733333pt;}
.yf4{bottom:222.400000pt;}
.y65{bottom:223.733333pt;}
.y34{bottom:226.066667pt;}
.y71{bottom:227.066667pt;}
.y55{bottom:229.733333pt;}
.y83{bottom:230.400000pt;}
.y1c{bottom:236.733333pt;}
.y33{bottom:237.066667pt;}
.yc5{bottom:239.066667pt;}
.yf3{bottom:240.733333pt;}
.y64{bottom:242.066667pt;}
.y70{bottom:245.733333pt;}
.y54{bottom:248.066667pt;}
.y82{bottom:248.733333pt;}
.y1b{bottom:252.066667pt;}
.y94{bottom:255.066667pt;}
.yf2{bottom:259.066667pt;}
.y63{bottom:260.733333pt;}
.y6f{bottom:264.066667pt;}
.y53{bottom:266.400000pt;}
.y81{bottom:267.066667pt;}
.y1a{bottom:267.400000pt;}
.yc2{bottom:269.773333pt;}
.y93{bottom:273.440000pt;}
.y7b{bottom:274.773333pt;}
.yf1{bottom:277.773333pt;}
.y62{bottom:279.093333pt;}
.y32{bottom:282.440000pt;}
.y19{bottom:282.773333pt;}
.y52{bottom:284.760000pt;}
.y80{bottom:285.440000pt;}
.y92{bottom:292.106667pt;}
.y7a{bottom:293.106667pt;}
.yf0{bottom:296.106667pt;}
.y61{bottom:297.440000pt;}
.y18{bottom:298.106667pt;}
.yc1{bottom:300.440000pt;}
.y6e{bottom:300.773333pt;}
.y2c{bottom:302.773333pt;}
.y51{bottom:303.440000pt;}
.y7f{bottom:304.106667pt;}
.y91{bottom:310.440000pt;}
.y79{bottom:311.440000pt;}
.y17{bottom:313.440000pt;}
.y2b{bottom:313.773333pt;}
.yef{bottom:314.440000pt;}
.y60{bottom:315.773333pt;}
.y50{bottom:318.440000pt;}
.y31{bottom:319.106667pt;}
.yc0{bottom:321.773333pt;}
.y7e{bottom:322.440000pt;}
.y78{bottom:326.440000pt;}
.y16{bottom:328.773333pt;}
.yee{bottom:332.773333pt;}
.y5f{bottom:334.106667pt;}
.y6d{bottom:337.773333pt;}
.y7d{bottom:340.773333pt;}
.ybf{bottom:343.106667pt;}
.y15{bottom:344.106667pt;}
.y90{bottom:347.106667pt;}
.yed{bottom:351.106667pt;}
.y5e{bottom:352.773333pt;}
.y7c{bottom:355.773333pt;}
.y2a{bottom:356.106667pt;}
.y14{bottom:359.440000pt;}
.ybc{bottom:364.440000pt;}
.y8f{bottom:365.440000pt;}
.y5d{bottom:367.773333pt;}
.yec{bottom:369.440000pt;}
.y49{bottom:374.440000pt;}
.y13{bottom:379.466667pt;}
.y8e{bottom:384.133333pt;}
.yeb{bottom:388.133333pt;}
.y12{bottom:390.466667pt;}
.y29{bottom:392.800000pt;}
.ybb{bottom:395.133333pt;}
.y30{bottom:398.133333pt;}
.y8d{bottom:402.466667pt;}
.yea{bottom:406.466667pt;}
.y48{bottom:411.133333pt;}
.yba{bottom:416.466667pt;}
.y8c{bottom:420.800000pt;}
.ye9{bottom:424.800000pt;}
.y11{bottom:429.800000pt;}
.y8b{bottom:435.800000pt;}
.yb9{bottom:437.800000pt;}
.ye8{bottom:443.133333pt;}
.y47{bottom:448.133333pt;}
.ye7{bottom:461.466667pt;}
.y10{bottom:466.466667pt;}
.ye6{bottom:480.173333pt;}
.yb5{bottom:480.506667pt;}
.y46{bottom:484.840000pt;}
.ye5{bottom:498.506667pt;}
.yf{bottom:503.173333pt;}
.ye4{bottom:516.840000pt;}
.y45{bottom:521.840000pt;}
.yb4{bottom:523.173333pt;}
.ye3{bottom:535.173333pt;}
.ye{bottom:540.173333pt;}
.yb3{bottom:544.506667pt;}
.y2f{bottom:545.506667pt;}
.ye2{bottom:553.506667pt;}
.y44{bottom:558.506667pt;}
.yb2{bottom:565.840000pt;}
.ye1{bottom:572.173333pt;}
.yc{bottom:576.840000pt;}
.yd{bottom:582.173333pt;}
.yb1{bottom:587.200000pt;}
.ye0{bottom:590.533333pt;}
.y43{bottom:595.200000pt;}
.yb0{bottom:608.533333pt;}
.ydf{bottom:608.866667pt;}
.yb{bottom:613.533333pt;}
.yde{bottom:627.200000pt;}
.yaf{bottom:629.866667pt;}
.y42{bottom:632.200000pt;}
.ydd{bottom:645.533333pt;}
.ya{bottom:650.533333pt;}
.yae{bottom:651.200000pt;}
.y37{bottom:655.866667pt;}
.ydc{bottom:664.200000pt;}
.y41{bottom:668.866667pt;}
.yad{bottom:672.533333pt;}
.ydb{bottom:682.533333pt;}
.y9{bottom:687.200000pt;}
.yab{bottom:693.893333pt;}
.yda{bottom:700.893333pt;}
.y40{bottom:705.560000pt;}
.yaa{bottom:715.226667pt;}
.yd9{bottom:715.893333pt;}
.y7{bottom:724.226667pt;}
.y8{bottom:729.560000pt;}
.ya9{bottom:736.560000pt;}
.y3f{bottom:742.560000pt;}
.yd8{bottom:746.560000pt;}
.y6{bottom:760.893333pt;}
.ya8{bottom:767.226667pt;}
.yd7{bottom:767.893333pt;}
.y3e{bottom:779.226667pt;}
.ya5{bottom:788.573333pt;}
.yd6{bottom:789.240000pt;}
.y5{bottom:797.600000pt;}
.y36{bottom:802.933333pt;}
.ya4{bottom:809.933333pt;}
.yd5{bottom:810.600000pt;}
.y6c{bottom:814.266667pt;}
.y3d{bottom:816.266667pt;}
.ya0{bottom:831.266667pt;}
.yd4{bottom:831.933333pt;}
.y4{bottom:834.600000pt;}
.y3c{bottom:852.933333pt;}
.yd3{bottom:853.266667pt;}
.y9e{bottom:861.933333pt;}
.y3{bottom:871.266667pt;}
.yd2{bottom:874.600000pt;}
.y9c{bottom:883.266667pt;}
.y4f{bottom:889.600000pt;}
.yd0{bottom:895.933333pt;}
.y2{bottom:908.293333pt;}
.ycf{bottom:917.293333pt;}
.y4e{bottom:926.626667pt;}
.yce{bottom:938.626667pt;}
.y1{bottom:944.960000pt;}
.y28{bottom:950.293333pt;}
.hc{height:21.333333pt;}
.he{height:21.353333pt;}
.hb{height:21.366667pt;}
.hd{height:30.666667pt;}
.h11{height:30.700000pt;}
.h8{height:34.023438pt;}
.h5{height:36.958333pt;}
.h3{height:41.875000pt;}
.hf{height:42.666667pt;}
.h10{height:42.700000pt;}
.h7{height:46.692708pt;}
.h6{height:52.343750pt;}
.h4{height:56.031250pt;}
.h12{height:62.781250pt;}
.h2{height:62.812500pt;}
.h1{height:63.208333pt;}
.h9{height:64.500000pt;}
.ha{height:70.812500pt;}
.h0{height:1056.000000pt;}
.w3{width:43.700000pt;}
.w4{width:74.033333pt;}
.w8{width:104.366667pt;}
.w5{width:122.366667pt;}
.w6{width:124.066667pt;}
.w7{width:150.400000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.333333pt;}
.x27{left:23.366667pt;}
.x26{left:30.033333pt;}
.x29{left:64.033321pt;}
.x5{left:96.033321pt;}
.xb{left:100.366655pt;}
.x1b{left:104.699988pt;}
.x1{left:108.366655pt;}
.x1e{left:112.699988pt;}
.x1d{left:122.733321pt;}
.x21{left:139.733333pt;}
.x4{left:144.066655pt;}
.x18{left:169.399976pt;}
.x19{left:180.066655pt;}
.x22{left:213.773333pt;}
.xc{left:238.439976pt;}
.xd{left:243.773321pt;}
.xe{left:248.439976pt;}
.xf{left:253.773321pt;}
.xa{left:288.133321pt;}
.x10{left:292.466642pt;}
.x11{left:297.799988pt;}
.x1f{left:313.466655pt;}
.x1a{left:316.799988pt;}
.x6{left:326.466642pt;}
.x7{left:331.799988pt;}
.x23{left:336.133333pt;}
.x3{left:361.839988pt;}
.x28{left:365.839988pt;}
.x2{left:408.173321pt;}
.x12{left:420.839976pt;}
.x13{left:426.173321pt;}
.x16{left:431.173309pt;}
.x17{left:436.506655pt;}
.x24{left:460.200000pt;}
.x25{left:610.600000pt;}
.x14{left:703.293309pt;}
.x15{left:708.626655pt;}
.x8{left:713.959976pt;}
.x9{left:719.293321pt;}
.x1c{left:720.306655pt;}
}




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