
    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_10f29c887b0a21828a5b1123.woff')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_80e9c55a7deb747e4def3f2f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dd0f549e0cf8917c65fc3c05.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_6dcf820d172e5ad187ffa372.woff')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_b7b2859f9940c4d2c6d03cbe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_21f43d3f98ad90265380bd89.woff')format("woff");}.ff6{font-family:ff6;line-height:0.925000;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_df9fdf3584d02ab5469e7a8d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_65d8e10f924e3c9fc829fb29.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_6ded6c04d8b35f3495515e5f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5086f48a22998fb0dd5c2140.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,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);}
.v3{vertical-align:-37.437094px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.253200px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:3.029760px;}
.ls5{letter-spacing:19.683458px;}
.lsb{letter-spacing:29.628000px;}
.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:-32.940000px;}
.ws9{word-spacing:-30.240000px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.970240px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.536000px;}
.ws1{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.036000px;}
.ws5{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.153520px;}
.wsa{word-spacing:-8.136000px;}
.ws7{word-spacing:-5.220000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.179360px;}
._1{width:1.692000px;}
._4{width:2.970000px;}
._e{width:4.440720px;}
._5{width:5.656800px;}
._2{width:7.141200px;}
._3{width:8.788800px;}
._8{width:10.638000px;}
._d{width:12.420000px;}
._a{width:14.952720px;}
._9{width:16.038000px;}
._f{width:17.775120px;}
._c{width:19.053360px;}
._b{width:20.736000px;}
._13{width:22.652640px;}
._7{width:23.697360px;}
._6{width:24.948000px;}
._12{width:28.080000px;}
._10{width:131.088720px;}
._11{width:202.500000px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,167,227);}
.fc7{color:rgb(127,127,127);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:20.880000px;}
.fs9{font-size:30.240000px;}
.fsc{font-size:35.927534px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fsa{font-size:46.494456px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:63.200256px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:131.760000px;}
.y73{bottom:-11.271383px;}
.y6f{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y72{bottom:2.516248px;}
.y6e{bottom:20.340000px;}
.y5{bottom:25.200000px;}
.y71{bottom:26.014755px;}
.y6d{bottom:34.560000px;}
.y4{bottom:43.380000px;}
.y2d{bottom:60.480000px;}
.y3{bottom:61.560000px;}
.y6c{bottom:77.040000px;}
.y8c{bottom:82.260000px;}
.y6b{bottom:90.900000px;}
.y70{bottom:95.373000px;}
.ya2{bottom:97.560000px;}
.y2c{bottom:98.280000px;}
.y8b{bottom:103.140000px;}
.y6a{bottom:104.940000px;}
.ya1{bottom:118.440000px;}
.y69{bottom:118.980000px;}
.y2b{bottom:119.160000px;}
.y8a{bottom:124.200000px;}
.y68{bottom:132.840000px;}
.ycc{bottom:137.880000px;}
.ya0{bottom:139.320000px;}
.y2a{bottom:140.220000px;}
.y89{bottom:145.080000px;}
.y67{bottom:146.880000px;}
.ycb{bottom:158.760000px;}
.y9f{bottom:160.380000px;}
.y66{bottom:160.740000px;}
.y29{bottom:161.100000px;}
.y88{bottom:165.960000px;}
.y65{bottom:174.810000px;}
.yca{bottom:179.640000px;}
.y9e{bottom:181.260000px;}
.y28{bottom:181.980000px;}
.y87{bottom:187.020000px;}
.y64{bottom:188.670000px;}
.yc9{bottom:200.700000px;}
.y9d{bottom:202.320000px;}
.y63{bottom:202.710000px;}
.y27{bottom:203.040000px;}
.y86{bottom:207.900000px;}
.y62{bottom:216.750000px;}
.yc8{bottom:221.610000px;}
.y9c{bottom:223.230000px;}
.y26{bottom:223.950000px;}
.y85{bottom:228.810000px;}
.y61{bottom:230.610000px;}
.yc7{bottom:242.670000px;}
.y9b{bottom:244.110000px;}
.y60{bottom:244.650000px;}
.y25{bottom:245.010000px;}
.y84{bottom:249.870000px;}
.y5f{bottom:258.510000px;}
.yc6{bottom:263.550000px;}
.y9a{bottom:265.170000px;}
.y24{bottom:265.890000px;}
.y83{bottom:270.750000px;}
.y5e{bottom:272.550000px;}
.yc5{bottom:284.430000px;}
.y99{bottom:286.050000px;}
.y5d{bottom:286.410000px;}
.y23{bottom:286.770000px;}
.y82{bottom:293.970000px;}
.y5c{bottom:300.450000px;}
.yc4{bottom:305.490000px;}
.y98{bottom:306.930000px;}
.y22{bottom:307.830000px;}
.y5b{bottom:314.490000px;}
.y81{bottom:319.710000px;}
.yc3{bottom:326.370000px;}
.y97{bottom:327.990000px;}
.y5a{bottom:328.350000px;}
.y21{bottom:328.710000px;}
.y80{bottom:340.590000px;}
.y59{bottom:342.390000px;}
.yc2{bottom:347.250000px;}
.y96{bottom:348.870000px;}
.y20{bottom:349.590000px;}
.y58{bottom:355.890000px;}
.y7f{bottom:357.510000px;}
.yc1{bottom:368.310000px;}
.y57{bottom:368.490000px;}
.y95{bottom:369.750000px;}
.y1f{bottom:370.650000px;}
.y56{bottom:381.135000px;}
.yc0{bottom:389.190000px;}
.y94{bottom:390.810000px;}
.y1e{bottom:391.530000px;}
.y55{bottom:393.735000px;}
.y54{bottom:406.515000px;}
.ybf{bottom:410.070000px;}
.y1d{bottom:412.410000px;}
.y93{bottom:414.030000px;}
.y53{bottom:419.115000px;}
.ybe{bottom:431.130000px;}
.y52{bottom:431.715000px;}
.y1c{bottom:435.810000px;}
.y92{bottom:439.635000px;}
.y51{bottom:442.155000px;}
.ybd{bottom:452.055000px;}
.y91{bottom:460.695000px;}
.y1b{bottom:461.415000px;}
.ybc{bottom:473.115000px;}
.y50{bottom:474.555000px;}
.y90{bottom:477.615000px;}
.y1a{bottom:482.295000px;}
.y4f{bottom:486.975000px;}
.ybb{bottom:493.995000px;}
.y4e{bottom:498.315000px;}
.y19{bottom:503.355000px;}
.y4d{bottom:512.355000px;}
.yba{bottom:514.875000px;}
.y18{bottom:524.235000px;}
.y4c{bottom:526.395000px;}
.yb9{bottom:535.935000px;}
.y4b{bottom:540.255000px;}
.y17{bottom:545.115000px;}
.y4a{bottom:554.295000px;}
.yb8{bottom:556.815000px;}
.y16{bottom:566.175000px;}
.y49{bottom:568.155000px;}
.yb7{bottom:577.695000px;}
.y48{bottom:582.195000px;}
.y15{bottom:587.055000px;}
.y47{bottom:596.085000px;}
.yb6{bottom:598.755000px;}
.y14{bottom:607.935000px;}
.y46{bottom:610.125000px;}
.yb5{bottom:619.635000px;}
.y45{bottom:624.165000px;}
.y13{bottom:628.995000px;}
.y44{bottom:638.025000px;}
.yb4{bottom:640.515000px;}
.y12{bottom:649.875000px;}
.y43{bottom:652.065000px;}
.yb3{bottom:661.605000px;}
.y42{bottom:665.925000px;}
.y11{bottom:670.965000px;}
.y41{bottom:679.965000px;}
.yb2{bottom:682.485000px;}
.y40{bottom:693.825000px;}
.y10{bottom:694.185000px;}
.yb1{bottom:703.545000px;}
.y3f{bottom:710.205000px;}
.yf{bottom:719.745000px;}
.y3e{bottom:721.905000px;}
.yb0{bottom:724.425000px;}
.y3d{bottom:735.765000px;}
.ye{bottom:740.625000px;}
.yaf{bottom:747.645000px;}
.y3c{bottom:749.805000px;}
.y8f{bottom:761.505000px;}
.yd{bottom:764.025000px;}
.y3b{bottom:766.005000px;}
.yae{bottom:773.205000px;}
.y3a{bottom:777.705000px;}
.y8e{bottom:782.565000px;}
.yc{bottom:789.585000px;}
.y39{bottom:793.905000px;}
.yad{bottom:794.265000px;}
.y8d{bottom:799.485000px;}
.y38{bottom:805.605000px;}
.yac{bottom:815.145000px;}
.y37{bottom:819.690000px;}
.yb{bottom:820.365000px;}
.y7e{bottom:829.185000px;}
.y36{bottom:833.550000px;}
.yab{bottom:836.025000px;}
.y35{bottom:847.590000px;}
.y7d{bottom:850.065000px;}
.yaa{bottom:857.085000px;}
.y34{bottom:861.450000px;}
.y7c{bottom:870.990000px;}
.ya{bottom:871.710000px;}
.y33{bottom:875.490000px;}
.ya9{bottom:878.010000px;}
.y32{bottom:889.350000px;}
.y7b{bottom:892.050000px;}
.ya8{bottom:899.070000px;}
.y31{bottom:905.730000px;}
.y7a{bottom:912.930000px;}
.ya7{bottom:919.950000px;}
.y9{bottom:922.830000px;}
.y30{bottom:926.610000px;}
.y79{bottom:933.990000px;}
.ya6{bottom:940.830000px;}
.y2f{bottom:947.670000px;}
.y78{bottom:954.870000px;}
.ya5{bottom:961.890000px;}
.y2e{bottom:968.370000px;}
.y8{bottom:974.130000px;}
.y77{bottom:975.750000px;}
.ya4{bottom:982.770000px;}
.y76{bottom:998.970000px;}
.ya3{bottom:1003.650000px;}
.y75{bottom:1024.710000px;}
.y7{bottom:1025.250000px;}
.y74{bottom:1045.590000px;}
.y6{bottom:1066.470000px;}
.y2{bottom:1104.840000px;}
.y1{bottom:1142.640000px;}
.he{height:16.813828px;}
.hf{height:16.919297px;}
.hc{height:26.173828px;}
.h16{height:26.226398px;}
.hb{height:26.279297px;}
.hd{height:26.384766px;}
.h14{height:31.499491px;}
.h10{height:31.539375px;}
.h12{height:35.072930px;}
.h11{height:35.806641px;}
.h3{height:39.260742px;}
.h17{height:39.418945px;}
.h8{height:39.577148px;}
.h15{height:46.244730px;}
.h7{height:52.347656px;}
.h6{height:52.558594px;}
.h18{height:55.503491px;}
.h13{height:65.884219px;}
.h1{height:67.824844px;}
.h2{height:71.613281px;}
.ha{height:77.220000px;}
.h4{height:95.796211px;}
.h5{height:96.568242px;}
.h9{height:994.290000px;}
.h0{height:1188.000000px;}
.w3{width:102.375000px;}
.w2{width:294.015000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x9{left:-6.290292px;}
.x0{left:0.000000px;}
.xa{left:1.258056px;}
.x6{left:10.800000px;}
.x5{left:45.000000px;}
.x1{left:53.999986px;}
.xc{left:75.239986px;}
.x7{left:86.436000px;}
.x8{left:143.850000px;}
.x2{left:352.694986px;}
.x4{left:373.934986px;}
.x3{left:560.804986px;}
.xe{left:645.584986px;}
.xd{left:802.229986px;}
.xb{left:807.809986px;}
@media print{
.v3{vertical-align:-33.277417pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.225067pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:2.693120pt;}
.ls5{letter-spacing:17.496407pt;}
.lsb{letter-spacing:26.336000pt;}
.ws2{word-spacing:-29.280000pt;}
.ws9{word-spacing:-26.880000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.306880pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.032000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.032000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.247573pt;}
.wsa{word-spacing:-7.232000pt;}
.ws7{word-spacing:-4.640000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.504000pt;}
._4{width:2.640000pt;}
._e{width:3.947307pt;}
._5{width:5.028267pt;}
._2{width:6.347733pt;}
._3{width:7.812267pt;}
._8{width:9.456000pt;}
._d{width:11.040000pt;}
._a{width:13.291307pt;}
._9{width:14.256000pt;}
._f{width:15.800107pt;}
._c{width:16.936320pt;}
._b{width:18.432000pt;}
._13{width:20.135680pt;}
._7{width:21.064320pt;}
._6{width:22.176000pt;}
._12{width:24.960000pt;}
._10{width:116.523307pt;}
._11{width:180.000000pt;}
.fs8{font-size:18.560000pt;}
.fs9{font-size:26.880000pt;}
.fsc{font-size:31.935586pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fsa{font-size:41.328405pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:56.178005pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:117.120000pt;}
.y73{bottom:-10.019007pt;}
.y6f{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.236665pt;}
.y6e{bottom:18.080000pt;}
.y5{bottom:22.400000pt;}
.y71{bottom:23.124227pt;}
.y6d{bottom:30.720000pt;}
.y4{bottom:38.560000pt;}
.y2d{bottom:53.760000pt;}
.y3{bottom:54.720000pt;}
.y6c{bottom:68.480000pt;}
.y8c{bottom:73.120000pt;}
.y6b{bottom:80.800000pt;}
.y70{bottom:84.776000pt;}
.ya2{bottom:86.720000pt;}
.y2c{bottom:87.360000pt;}
.y8b{bottom:91.680000pt;}
.y6a{bottom:93.280000pt;}
.ya1{bottom:105.280000pt;}
.y69{bottom:105.760000pt;}
.y2b{bottom:105.920000pt;}
.y8a{bottom:110.400000pt;}
.y68{bottom:118.080000pt;}
.ycc{bottom:122.560000pt;}
.ya0{bottom:123.840000pt;}
.y2a{bottom:124.640000pt;}
.y89{bottom:128.960000pt;}
.y67{bottom:130.560000pt;}
.ycb{bottom:141.120000pt;}
.y9f{bottom:142.560000pt;}
.y66{bottom:142.880000pt;}
.y29{bottom:143.200000pt;}
.y88{bottom:147.520000pt;}
.y65{bottom:155.386667pt;}
.yca{bottom:159.680000pt;}
.y9e{bottom:161.120000pt;}
.y28{bottom:161.760000pt;}
.y87{bottom:166.240000pt;}
.y64{bottom:167.706667pt;}
.yc9{bottom:178.400000pt;}
.y9d{bottom:179.840000pt;}
.y63{bottom:180.186667pt;}
.y27{bottom:180.480000pt;}
.y86{bottom:184.800000pt;}
.y62{bottom:192.666667pt;}
.yc8{bottom:196.986667pt;}
.y9c{bottom:198.426667pt;}
.y26{bottom:199.066667pt;}
.y85{bottom:203.386667pt;}
.y61{bottom:204.986667pt;}
.yc7{bottom:215.706667pt;}
.y9b{bottom:216.986667pt;}
.y60{bottom:217.466667pt;}
.y25{bottom:217.786667pt;}
.y84{bottom:222.106667pt;}
.y5f{bottom:229.786667pt;}
.yc6{bottom:234.266667pt;}
.y9a{bottom:235.706667pt;}
.y24{bottom:236.346667pt;}
.y83{bottom:240.666667pt;}
.y5e{bottom:242.266667pt;}
.yc5{bottom:252.826667pt;}
.y99{bottom:254.266667pt;}
.y5d{bottom:254.586667pt;}
.y23{bottom:254.906667pt;}
.y82{bottom:261.306667pt;}
.y5c{bottom:267.066667pt;}
.yc4{bottom:271.546667pt;}
.y98{bottom:272.826667pt;}
.y22{bottom:273.626667pt;}
.y5b{bottom:279.546667pt;}
.y81{bottom:284.186667pt;}
.yc3{bottom:290.106667pt;}
.y97{bottom:291.546667pt;}
.y5a{bottom:291.866667pt;}
.y21{bottom:292.186667pt;}
.y80{bottom:302.746667pt;}
.y59{bottom:304.346667pt;}
.yc2{bottom:308.666667pt;}
.y96{bottom:310.106667pt;}
.y20{bottom:310.746667pt;}
.y58{bottom:316.346667pt;}
.y7f{bottom:317.786667pt;}
.yc1{bottom:327.386667pt;}
.y57{bottom:327.546667pt;}
.y95{bottom:328.666667pt;}
.y1f{bottom:329.466667pt;}
.y56{bottom:338.786667pt;}
.yc0{bottom:345.946667pt;}
.y94{bottom:347.386667pt;}
.y1e{bottom:348.026667pt;}
.y55{bottom:349.986667pt;}
.y54{bottom:361.346667pt;}
.ybf{bottom:364.506667pt;}
.y1d{bottom:366.586667pt;}
.y93{bottom:368.026667pt;}
.y53{bottom:372.546667pt;}
.ybe{bottom:383.226667pt;}
.y52{bottom:383.746667pt;}
.y1c{bottom:387.386667pt;}
.y92{bottom:390.786667pt;}
.y51{bottom:393.026667pt;}
.ybd{bottom:401.826667pt;}
.y91{bottom:409.506667pt;}
.y1b{bottom:410.146667pt;}
.ybc{bottom:420.546667pt;}
.y50{bottom:421.826667pt;}
.y90{bottom:424.546667pt;}
.y1a{bottom:428.706667pt;}
.y4f{bottom:432.866667pt;}
.ybb{bottom:439.106667pt;}
.y4e{bottom:442.946667pt;}
.y19{bottom:447.426667pt;}
.y4d{bottom:455.426667pt;}
.yba{bottom:457.666667pt;}
.y18{bottom:465.986667pt;}
.y4c{bottom:467.906667pt;}
.yb9{bottom:476.386667pt;}
.y4b{bottom:480.226667pt;}
.y17{bottom:484.546667pt;}
.y4a{bottom:492.706667pt;}
.yb8{bottom:494.946667pt;}
.y16{bottom:503.266667pt;}
.y49{bottom:505.026667pt;}
.yb7{bottom:513.506667pt;}
.y48{bottom:517.506667pt;}
.y15{bottom:521.826667pt;}
.y47{bottom:529.853333pt;}
.yb6{bottom:532.226667pt;}
.y14{bottom:540.386667pt;}
.y46{bottom:542.333333pt;}
.yb5{bottom:550.786667pt;}
.y45{bottom:554.813333pt;}
.y13{bottom:559.106667pt;}
.y44{bottom:567.133333pt;}
.yb4{bottom:569.346667pt;}
.y12{bottom:577.666667pt;}
.y43{bottom:579.613333pt;}
.yb3{bottom:588.093333pt;}
.y42{bottom:591.933333pt;}
.y11{bottom:596.413333pt;}
.y41{bottom:604.413333pt;}
.yb2{bottom:606.653333pt;}
.y40{bottom:616.733333pt;}
.y10{bottom:617.053333pt;}
.yb1{bottom:625.373333pt;}
.y3f{bottom:631.293333pt;}
.yf{bottom:639.773333pt;}
.y3e{bottom:641.693333pt;}
.yb0{bottom:643.933333pt;}
.y3d{bottom:654.013333pt;}
.ye{bottom:658.333333pt;}
.yaf{bottom:664.573333pt;}
.y3c{bottom:666.493333pt;}
.y8f{bottom:676.893333pt;}
.yd{bottom:679.133333pt;}
.y3b{bottom:680.893333pt;}
.yae{bottom:687.293333pt;}
.y3a{bottom:691.293333pt;}
.y8e{bottom:695.613333pt;}
.yc{bottom:701.853333pt;}
.y39{bottom:705.693333pt;}
.yad{bottom:706.013333pt;}
.y8d{bottom:710.653333pt;}
.y38{bottom:716.093333pt;}
.yac{bottom:724.573333pt;}
.y37{bottom:728.613333pt;}
.yb{bottom:729.213333pt;}
.y7e{bottom:737.053333pt;}
.y36{bottom:740.933333pt;}
.yab{bottom:743.133333pt;}
.y35{bottom:753.413333pt;}
.y7d{bottom:755.613333pt;}
.yaa{bottom:761.853333pt;}
.y34{bottom:765.733333pt;}
.y7c{bottom:774.213333pt;}
.ya{bottom:774.853333pt;}
.y33{bottom:778.213333pt;}
.ya9{bottom:780.453333pt;}
.y32{bottom:790.533333pt;}
.y7b{bottom:792.933333pt;}
.ya8{bottom:799.173333pt;}
.y31{bottom:805.093333pt;}
.y7a{bottom:811.493333pt;}
.ya7{bottom:817.733333pt;}
.y9{bottom:820.293333pt;}
.y30{bottom:823.653333pt;}
.y79{bottom:830.213333pt;}
.ya6{bottom:836.293333pt;}
.y2f{bottom:842.373333pt;}
.y78{bottom:848.773333pt;}
.ya5{bottom:855.013333pt;}
.y2e{bottom:860.773333pt;}
.y8{bottom:865.893333pt;}
.y77{bottom:867.333333pt;}
.ya4{bottom:873.573333pt;}
.y76{bottom:887.973333pt;}
.ya3{bottom:892.133333pt;}
.y75{bottom:910.853333pt;}
.y7{bottom:911.333333pt;}
.y74{bottom:929.413333pt;}
.y6{bottom:947.973333pt;}
.y2{bottom:982.080000pt;}
.y1{bottom:1015.680000pt;}
.he{height:14.945625pt;}
.hf{height:15.039375pt;}
.hc{height:23.265625pt;}
.h16{height:23.312354pt;}
.hb{height:23.359375pt;}
.hd{height:23.453125pt;}
.h14{height:27.999547pt;}
.h10{height:28.035000pt;}
.h12{height:31.175937pt;}
.h11{height:31.828125pt;}
.h3{height:34.898438pt;}
.h17{height:35.039062pt;}
.h8{height:35.179688pt;}
.h15{height:41.106426pt;}
.h7{height:46.531250pt;}
.h6{height:46.718750pt;}
.h18{height:49.336436pt;}
.h13{height:58.563750pt;}
.h1{height:60.288750pt;}
.h2{height:63.656250pt;}
.ha{height:68.640000pt;}
.h4{height:85.152187pt;}
.h5{height:85.838437pt;}
.h9{height:883.813333pt;}
.h0{height:1056.000000pt;}
.w3{width:91.000000pt;}
.w2{width:261.346667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x9{left:-5.591370pt;}
.x0{left:0.000000pt;}
.xa{left:1.118272pt;}
.x6{left:9.600000pt;}
.x5{left:40.000000pt;}
.x1{left:47.999988pt;}
.xc{left:66.879988pt;}
.x7{left:76.832000pt;}
.x8{left:127.866667pt;}
.x2{left:313.506655pt;}
.x4{left:332.386655pt;}
.x3{left:498.493321pt;}
.xe{left:573.853321pt;}
.xd{left:713.093321pt;}
.xb{left:718.053321pt;}
}




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