
    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_e77760320a93d7b3ae70d02f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fb01d4899595ee88b450bd76.woff')format("woff");}.ff2{font-family:ff2;line-height:0.724609;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_a88b827d1f8415b13f0f73be.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c8d609044baac5ee82a8b96d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c6e41dda19191560ab5acaab.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68da686f6ae5f85ceb50e910.woff')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_5c3d0459878f674f55483eea.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_240e65dab8ce75238433ec0e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.870605;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_88ea484cd02fbcba8e8494b4.woff')format("woff");}.ffa{font-family:ffa;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;}
.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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.023040px;}
.ls7{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.840000px;}
.ls8{letter-spacing:24.588000px;}
.ls9{letter-spacing:25.308000px;}
.ls6{letter-spacing:51.948000px;}
.ls5{letter-spacing:52.668000px;}
.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;}
}
.ws4{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._c{width:3.245040px;}
._4{width:4.320000px;}
._5{width:5.616000px;}
._6{width:6.804000px;}
._7{width:7.884000px;}
._3{width:9.180000px;}
._8{width:10.530000px;}
._9{width:11.988000px;}
._15{width:13.414560px;}
._1a{width:14.526000px;}
._10{width:15.654960px;}
._f{width:16.715520px;}
._11{width:17.866320px;}
._e{width:19.626480px;}
._d{width:20.711520px;}
._12{width:21.960240px;}
._13{width:23.152320px;}
._19{width:24.552720px;}
._14{width:26.336160px;}
._16{width:28.566000px;}
._17{width:29.646000px;}
._18{width:35.154000px;}
._a{width:36.288000px;}
._b{width:37.422000px;}
._1b{width:39.312000px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y41{bottom:7.350000px;}
.y4{bottom:8.640000px;}
.ya6{bottom:10.110000px;}
.y2c{bottom:10.905000px;}
.ya9{bottom:14.610000px;}
.y8{bottom:22.500000px;}
.ya7{bottom:32.070000px;}
.ya5{bottom:32.430000px;}
.y7{bottom:41.040000px;}
.ya8{bottom:50.430000px;}
.ya4{bottom:54.930000px;}
.y6{bottom:56.880000px;}
.y2e{bottom:60.585000px;}
.y39{bottom:73.155000px;}
.y7b{bottom:85.500000px;}
.yaf{bottom:90.540000px;}
.y38{bottom:92.955000px;}
.y27{bottom:93.420000px;}
.y1f{bottom:102.420000px;}
.y7a{bottom:103.320000px;}
.yae{bottom:108.360000px;}
.yd5{bottom:110.520000px;}
.y26{bottom:111.240000px;}
.y37{bottom:112.755000px;}
.y1e{bottom:120.240000px;}
.y79{bottom:121.140000px;}
.yad{bottom:126.180000px;}
.yd4{bottom:128.340000px;}
.y25{bottom:129.060000px;}
.y36{bottom:132.555000px;}
.y1d{bottom:138.060000px;}
.y78{bottom:138.960000px;}
.yac{bottom:144.180000px;}
.y29{bottom:144.870000px;}
.yd3{bottom:146.160000px;}
.y35{bottom:152.355000px;}
.y1c{bottom:156.060000px;}
.y77{bottom:156.960000px;}
.yab{bottom:162.000000px;}
.yd2{bottom:163.980000px;}
.y34{bottom:172.335000px;}
.y1b{bottom:173.880000px;}
.y76{bottom:174.780000px;}
.yaa{bottom:179.820000px;}
.yd1{bottom:181.980000px;}
.y1a{bottom:191.700000px;}
.y33{bottom:192.135000px;}
.yd0{bottom:199.800000px;}
.y75{bottom:201.600000px;}
.ya3{bottom:201.780000px;}
.y19{bottom:209.550000px;}
.ycf{bottom:217.650000px;}
.y74{bottom:219.450000px;}
.y18{bottom:227.370000px;}
.yce{bottom:235.470000px;}
.y73{bottom:237.270000px;}
.y24{bottom:245.190000px;}
.ycd{bottom:253.290000px;}
.y17{bottom:254.190000px;}
.y72{bottom:255.090000px;}
.y23{bottom:263.190000px;}
.ycc{bottom:271.110000px;}
.y16{bottom:272.190000px;}
.y71{bottom:273.090000px;}
.ya2{bottom:279.750000px;}
.y22{bottom:281.010000px;}
.ycb{bottom:289.110000px;}
.y15{bottom:290.010000px;}
.y21{bottom:298.830000px;}
.y70{bottom:299.910000px;}
.ya1{bottom:306.570000px;}
.yca{bottom:306.930000px;}
.y14{bottom:307.830000px;}
.y20{bottom:316.290000px;}
.y6f{bottom:317.730000px;}
.ya0{bottom:324.390000px;}
.yc9{bottom:324.750000px;}
.y13{bottom:325.650000px;}
.y6e{bottom:335.550000px;}
.y9f{bottom:342.210000px;}
.yc8{bottom:342.570000px;}
.y12{bottom:345.450000px;}
.y6d{bottom:353.370000px;}
.y9e{bottom:360.210000px;}
.yc7{bottom:360.390000px;}
.y6c{bottom:371.370000px;}
.y9d{bottom:378.030000px;}
.yc6{bottom:378.210000px;}
.y11{bottom:381.090000px;}
.y6b{bottom:389.190000px;}
.yc5{bottom:396.210000px;}
.y32{bottom:398.880000px;}
.y9c{bottom:404.850000px;}
.y6a{bottom:407.010000px;}
.yc4{bottom:414.030000px;}
.y3b{bottom:422.670000px;}
.y69{bottom:424.830000px;}
.yc3{bottom:431.850000px;}
.y9b{bottom:440.535000px;}
.y68{bottom:442.335000px;}
.yc2{bottom:449.715000px;}
.y3a{bottom:452.055000px;}
.y9a{bottom:458.535000px;}
.y67{bottom:462.495000px;}
.yc1{bottom:467.535000px;}
.y99{bottom:476.355000px;}
.yc0{bottom:485.535000px;}
.y98{bottom:494.175000px;}
.y66{bottom:495.435000px;}
.ybf{bottom:503.355000px;}
.y65{bottom:513.255000px;}
.y97{bottom:520.995000px;}
.ybe{bottom:521.175000px;}
.y64{bottom:531.075000px;}
.y96{bottom:538.815000px;}
.ybd{bottom:538.995000px;}
.y63{bottom:548.895000px;}
.y95{bottom:556.635000px;}
.ybc{bottom:556.815000px;}
.y62{bottom:566.715000px;}
.y94{bottom:574.635000px;}
.y61{bottom:584.715000px;}
.ybb{bottom:592.635000px;}
.y93{bottom:594.435000px;}
.y60{bottom:602.535000px;}
.yba{bottom:610.455000px;}
.y5f{bottom:622.335000px;}
.y10{bottom:626.655000px;}
.y92{bottom:627.195000px;}
.yb9{bottom:628.275000px;}
.y91{bottom:645.015000px;}
.yb8{bottom:646.095000px;}
.y5e{bottom:655.095000px;}
.yb7{bottom:665.895000px;}
.yf{bottom:667.875000px;}
.y90{bottom:671.835000px;}
.y5d{bottom:672.915000px;}
.ye{bottom:683.565000px;}
.y8f{bottom:689.865000px;}
.y5c{bottom:690.945000px;}
.yb6{bottom:698.865000px;}
.y8e{bottom:707.685000px;}
.y31{bottom:708.765000px;}
.yb5{bottom:716.685000px;}
.y8d{bottom:725.505000px;}
.y5b{bottom:726.585000px;}
.yb4{bottom:734.505000px;}
.y30{bottom:737.205000px;}
.y8c{bottom:743.325000px;}
.y5a{bottom:744.405000px;}
.y2d{bottom:747.720000px;}
.yb3{bottom:752.325000px;}
.y8b{bottom:761.145000px;}
.y59{bottom:762.225000px;}
.yb2{bottom:770.145000px;}
.yd{bottom:773.565000px;}
.y58{bottom:780.045000px;}
.y8a{bottom:788.145000px;}
.y2f{bottom:797.865000px;}
.y57{bottom:798.045000px;}
.y89{bottom:805.965000px;}
.y56{bottom:815.865000px;}
.y88{bottom:823.785000px;}
.yc{bottom:827.565000px;}
.y2b{bottom:833.580000px;}
.y55{bottom:833.685000px;}
.y87{bottom:841.605000px;}
.y54{bottom:851.505000px;}
.y86{bottom:859.425000px;}
.y53{bottom:869.325000px;}
.y85{bottom:877.245000px;}
.y52{bottom:887.325000px;}
.y84{bottom:895.245000px;}
.y2a{bottom:896.505000px;}
.yb1{bottom:904.245000px;}
.y51{bottom:905.145000px;}
.y83{bottom:913.110000px;}
.yb0{bottom:922.110000px;}
.y50{bottom:923.010000px;}
.yb{bottom:934.350000px;}
.y82{bottom:939.930000px;}
.y4f{bottom:940.830000px;}
.y28{bottom:941.400000px;}
.y40{bottom:955.800000px;}
.y81{bottom:957.750000px;}
.y4e{bottom:958.650000px;}
.y80{bottom:975.570000px;}
.y4d{bottom:976.470000px;}
.y3f{bottom:989.790000px;}
.y7f{bottom:993.570000px;}
.y4c{bottom:996.450000px;}
.y7e{bottom:1011.390000px;}
.y3e{bottom:1016.070000px;}
.y4b{bottom:1029.210000px;}
.y3d{bottom:1041.990000px;}
.y4a{bottom:1047.030000px;}
.y49{bottom:1064.850000px;}
.y3c{bottom:1068.810000px;}
.y48{bottom:1082.670000px;}
.y47{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.y46{bottom:1118.490000px;}
.y45{bottom:1136.310000px;}
.y44{bottom:1154.160000px;}
.y7d{bottom:1171.620000px;}
.y43{bottom:1171.980000px;}
.y7c{bottom:1189.440000px;}
.y42{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.hf{height:34.200000px;}
.h5{height:36.467930px;}
.h18{height:37.705078px;}
.h3{height:48.616875px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.hc{height:54.421875px;}
.h1a{height:55.503491px;}
.h8{height:55.825312px;}
.h14{height:58.621992px;}
.h12{height:58.651172px;}
.h15{height:58.763250px;}
.h16{height:60.226875px;}
.h6{height:65.010937px;}
.h10{height:66.757500px;}
.h19{height:71.676000px;}
.h11{height:74.160000px;}
.hb{height:78.367500px;}
.he{height:84.898125px;}
.h17{height:132.480000px;}
.hd{height:160.380000px;}
.h13{height:214.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.wc{width:30.585000px;}
.wa{width:34.185000px;}
.we{width:40.485000px;}
.wd{width:53.085000px;}
.wb{width:59.601000px;}
.wf{width:69.690000px;}
.w9{width:77.565000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:768.240000px;}
.w4{width:783.360000px;}
.w5{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x24{left:9.180000px;}
.xc{left:10.800000px;}
.x1e{left:12.045000px;}
.x21{left:15.825000px;}
.x20{left:17.445000px;}
.x1c{left:21.405000px;}
.x1b{left:25.545000px;}
.xf{left:51.660000px;}
.x5{left:54.000000px;}
.x12{left:61.200000px;}
.x11{left:65.160000px;}
.x13{left:72.000000px;}
.x27{left:81.000000px;}
.x1{left:100.080000px;}
.x28{left:108.036000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x19{left:175.935000px;}
.x18{left:198.360000px;}
.x14{left:289.335000px;}
.x17{left:294.735000px;}
.x16{left:300.135000px;}
.xe{left:339.015000px;}
.x7{left:356.655000px;}
.x15{left:358.635000px;}
.x3{left:367.920000px;}
.xd{left:371.595000px;}
.x4{left:382.830000px;}
.x10{left:411.375000px;}
.xb{left:465.945000px;}
.x1a{left:467.580000px;}
.x1d{left:545.880000px;}
.x1f{left:580.800000px;}
.x22{left:641.130000px;}
.x23{left:672.450000px;}
.x25{left:726.270000px;}
.x26{left:767.490000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.020480pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.746667pt;}
.ls8{letter-spacing:21.856000pt;}
.ls9{letter-spacing:22.496000pt;}
.ls6{letter-spacing:46.176000pt;}
.ls5{letter-spacing:46.816000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._c{width:2.884480pt;}
._4{width:3.840000pt;}
._5{width:4.992000pt;}
._6{width:6.048000pt;}
._7{width:7.008000pt;}
._3{width:8.160000pt;}
._8{width:9.360000pt;}
._9{width:10.656000pt;}
._15{width:11.924053pt;}
._1a{width:12.912000pt;}
._10{width:13.915520pt;}
._f{width:14.858240pt;}
._11{width:15.881173pt;}
._e{width:17.445760pt;}
._d{width:18.410240pt;}
._12{width:19.520213pt;}
._13{width:20.579840pt;}
._19{width:21.824640pt;}
._14{width:23.409920pt;}
._16{width:25.392000pt;}
._17{width:26.352000pt;}
._18{width:31.248000pt;}
._a{width:32.256000pt;}
._b{width:33.264000pt;}
._1b{width:34.944000pt;}
._2{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y41{bottom:6.533333pt;}
.y4{bottom:7.680000pt;}
.ya6{bottom:8.986667pt;}
.y2c{bottom:9.693333pt;}
.ya9{bottom:12.986667pt;}
.y8{bottom:20.000000pt;}
.ya7{bottom:28.506667pt;}
.ya5{bottom:28.826667pt;}
.y7{bottom:36.480000pt;}
.ya8{bottom:44.826667pt;}
.ya4{bottom:48.826667pt;}
.y6{bottom:50.560000pt;}
.y2e{bottom:53.853333pt;}
.y39{bottom:65.026667pt;}
.y7b{bottom:76.000000pt;}
.yaf{bottom:80.480000pt;}
.y38{bottom:82.626667pt;}
.y27{bottom:83.040000pt;}
.y1f{bottom:91.040000pt;}
.y7a{bottom:91.840000pt;}
.yae{bottom:96.320000pt;}
.yd5{bottom:98.240000pt;}
.y26{bottom:98.880000pt;}
.y37{bottom:100.226667pt;}
.y1e{bottom:106.880000pt;}
.y79{bottom:107.680000pt;}
.yad{bottom:112.160000pt;}
.yd4{bottom:114.080000pt;}
.y25{bottom:114.720000pt;}
.y36{bottom:117.826667pt;}
.y1d{bottom:122.720000pt;}
.y78{bottom:123.520000pt;}
.yac{bottom:128.160000pt;}
.y29{bottom:128.773333pt;}
.yd3{bottom:129.920000pt;}
.y35{bottom:135.426667pt;}
.y1c{bottom:138.720000pt;}
.y77{bottom:139.520000pt;}
.yab{bottom:144.000000pt;}
.yd2{bottom:145.760000pt;}
.y34{bottom:153.186667pt;}
.y1b{bottom:154.560000pt;}
.y76{bottom:155.360000pt;}
.yaa{bottom:159.840000pt;}
.yd1{bottom:161.760000pt;}
.y1a{bottom:170.400000pt;}
.y33{bottom:170.786667pt;}
.yd0{bottom:177.600000pt;}
.y75{bottom:179.200000pt;}
.ya3{bottom:179.360000pt;}
.y19{bottom:186.266667pt;}
.ycf{bottom:193.466667pt;}
.y74{bottom:195.066667pt;}
.y18{bottom:202.106667pt;}
.yce{bottom:209.306667pt;}
.y73{bottom:210.906667pt;}
.y24{bottom:217.946667pt;}
.ycd{bottom:225.146667pt;}
.y17{bottom:225.946667pt;}
.y72{bottom:226.746667pt;}
.y23{bottom:233.946667pt;}
.ycc{bottom:240.986667pt;}
.y16{bottom:241.946667pt;}
.y71{bottom:242.746667pt;}
.ya2{bottom:248.666667pt;}
.y22{bottom:249.786667pt;}
.ycb{bottom:256.986667pt;}
.y15{bottom:257.786667pt;}
.y21{bottom:265.626667pt;}
.y70{bottom:266.586667pt;}
.ya1{bottom:272.506667pt;}
.yca{bottom:272.826667pt;}
.y14{bottom:273.626667pt;}
.y20{bottom:281.146667pt;}
.y6f{bottom:282.426667pt;}
.ya0{bottom:288.346667pt;}
.yc9{bottom:288.666667pt;}
.y13{bottom:289.466667pt;}
.y6e{bottom:298.266667pt;}
.y9f{bottom:304.186667pt;}
.yc8{bottom:304.506667pt;}
.y12{bottom:307.066667pt;}
.y6d{bottom:314.106667pt;}
.y9e{bottom:320.186667pt;}
.yc7{bottom:320.346667pt;}
.y6c{bottom:330.106667pt;}
.y9d{bottom:336.026667pt;}
.yc6{bottom:336.186667pt;}
.y11{bottom:338.746667pt;}
.y6b{bottom:345.946667pt;}
.yc5{bottom:352.186667pt;}
.y32{bottom:354.560000pt;}
.y9c{bottom:359.866667pt;}
.y6a{bottom:361.786667pt;}
.yc4{bottom:368.026667pt;}
.y3b{bottom:375.706667pt;}
.y69{bottom:377.626667pt;}
.yc3{bottom:383.866667pt;}
.y9b{bottom:391.586667pt;}
.y68{bottom:393.186667pt;}
.yc2{bottom:399.746667pt;}
.y3a{bottom:401.826667pt;}
.y9a{bottom:407.586667pt;}
.y67{bottom:411.106667pt;}
.yc1{bottom:415.586667pt;}
.y99{bottom:423.426667pt;}
.yc0{bottom:431.586667pt;}
.y98{bottom:439.266667pt;}
.y66{bottom:440.386667pt;}
.ybf{bottom:447.426667pt;}
.y65{bottom:456.226667pt;}
.y97{bottom:463.106667pt;}
.ybe{bottom:463.266667pt;}
.y64{bottom:472.066667pt;}
.y96{bottom:478.946667pt;}
.ybd{bottom:479.106667pt;}
.y63{bottom:487.906667pt;}
.y95{bottom:494.786667pt;}
.ybc{bottom:494.946667pt;}
.y62{bottom:503.746667pt;}
.y94{bottom:510.786667pt;}
.y61{bottom:519.746667pt;}
.ybb{bottom:526.786667pt;}
.y93{bottom:528.386667pt;}
.y60{bottom:535.586667pt;}
.yba{bottom:542.626667pt;}
.y5f{bottom:553.186667pt;}
.y10{bottom:557.026667pt;}
.y92{bottom:557.506667pt;}
.yb9{bottom:558.466667pt;}
.y91{bottom:573.346667pt;}
.yb8{bottom:574.306667pt;}
.y5e{bottom:582.306667pt;}
.yb7{bottom:591.906667pt;}
.yf{bottom:593.666667pt;}
.y90{bottom:597.186667pt;}
.y5d{bottom:598.146667pt;}
.ye{bottom:607.613333pt;}
.y8f{bottom:613.213333pt;}
.y5c{bottom:614.173333pt;}
.yb6{bottom:621.213333pt;}
.y8e{bottom:629.053333pt;}
.y31{bottom:630.013333pt;}
.yb5{bottom:637.053333pt;}
.y8d{bottom:644.893333pt;}
.y5b{bottom:645.853333pt;}
.yb4{bottom:652.893333pt;}
.y30{bottom:655.293333pt;}
.y8c{bottom:660.733333pt;}
.y5a{bottom:661.693333pt;}
.y2d{bottom:664.640000pt;}
.yb3{bottom:668.733333pt;}
.y8b{bottom:676.573333pt;}
.y59{bottom:677.533333pt;}
.yb2{bottom:684.573333pt;}
.yd{bottom:687.613333pt;}
.y58{bottom:693.373333pt;}
.y8a{bottom:700.573333pt;}
.y2f{bottom:709.213333pt;}
.y57{bottom:709.373333pt;}
.y89{bottom:716.413333pt;}
.y56{bottom:725.213333pt;}
.y88{bottom:732.253333pt;}
.yc{bottom:735.613333pt;}
.y2b{bottom:740.960000pt;}
.y55{bottom:741.053333pt;}
.y87{bottom:748.093333pt;}
.y54{bottom:756.893333pt;}
.y86{bottom:763.933333pt;}
.y53{bottom:772.733333pt;}
.y85{bottom:779.773333pt;}
.y52{bottom:788.733333pt;}
.y84{bottom:795.773333pt;}
.y2a{bottom:796.893333pt;}
.yb1{bottom:803.773333pt;}
.y51{bottom:804.573333pt;}
.y83{bottom:811.653333pt;}
.yb0{bottom:819.653333pt;}
.y50{bottom:820.453333pt;}
.yb{bottom:830.533333pt;}
.y82{bottom:835.493333pt;}
.y4f{bottom:836.293333pt;}
.y28{bottom:836.800000pt;}
.y40{bottom:849.600000pt;}
.y81{bottom:851.333333pt;}
.y4e{bottom:852.133333pt;}
.y80{bottom:867.173333pt;}
.y4d{bottom:867.973333pt;}
.y3f{bottom:879.813333pt;}
.y7f{bottom:883.173333pt;}
.y4c{bottom:885.733333pt;}
.y7e{bottom:899.013333pt;}
.y3e{bottom:903.173333pt;}
.y4b{bottom:914.853333pt;}
.y3d{bottom:926.213333pt;}
.y4a{bottom:930.693333pt;}
.y49{bottom:946.533333pt;}
.y3c{bottom:950.053333pt;}
.y48{bottom:962.373333pt;}
.y47{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.y46{bottom:994.213333pt;}
.y45{bottom:1010.053333pt;}
.y44{bottom:1025.920000pt;}
.y7d{bottom:1041.440000pt;}
.y43{bottom:1041.760000pt;}
.y7c{bottom:1057.280000pt;}
.y42{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.hf{height:30.400000pt;}
.h5{height:32.415937pt;}
.h18{height:33.515625pt;}
.h3{height:43.215000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.hc{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h8{height:49.622500pt;}
.h14{height:52.108438pt;}
.h12{height:52.134375pt;}
.h15{height:52.234000pt;}
.h16{height:53.535000pt;}
.h6{height:57.787500pt;}
.h10{height:59.340000pt;}
.h19{height:63.712000pt;}
.h11{height:65.920000pt;}
.hb{height:69.660000pt;}
.he{height:75.465000pt;}
.h17{height:117.760000pt;}
.hd{height:142.560000pt;}
.h13{height:191.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.wc{width:27.186667pt;}
.wa{width:30.386667pt;}
.we{width:35.986667pt;}
.wd{width:47.186667pt;}
.wb{width:52.978667pt;}
.wf{width:61.946667pt;}
.w9{width:68.946667pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:682.880000pt;}
.w4{width:696.320000pt;}
.w5{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x24{left:8.160000pt;}
.xc{left:9.600000pt;}
.x1e{left:10.706667pt;}
.x21{left:14.066667pt;}
.x20{left:15.506667pt;}
.x1c{left:19.026667pt;}
.x1b{left:22.706667pt;}
.xf{left:45.920000pt;}
.x5{left:48.000000pt;}
.x12{left:54.400000pt;}
.x11{left:57.920000pt;}
.x13{left:64.000000pt;}
.x27{left:72.000000pt;}
.x1{left:88.960000pt;}
.x28{left:96.032000pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x19{left:156.386667pt;}
.x18{left:176.320000pt;}
.x14{left:257.186667pt;}
.x17{left:261.986667pt;}
.x16{left:266.786667pt;}
.xe{left:301.346667pt;}
.x7{left:317.026667pt;}
.x15{left:318.786667pt;}
.x3{left:327.040000pt;}
.xd{left:330.306667pt;}
.x4{left:340.293333pt;}
.x10{left:365.666667pt;}
.xb{left:414.173333pt;}
.x1a{left:415.626667pt;}
.x1d{left:485.226667pt;}
.x1f{left:516.266667pt;}
.x22{left:569.893333pt;}
.x23{left:597.733333pt;}
.x25{left:645.573333pt;}
.x26{left:682.213333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
}




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