
    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_20854decc106ad556f502709.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_d9dfc132b802618b1c3b0124.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_26e80bb30f27b4c3102aa638.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035645;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_cf6dfe98d02a79ac4cc4c22e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.799805;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_88533dadc4e6e29d6148aa29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_ed37296bd466821465bc1c94.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_48170d58a0095b5e034b9fe5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.681641;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);}
.v3{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v2{vertical-align:23.400000px;}
.v1{vertical-align:27.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.067200px;}
.ls1{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.552000px;}
.ls9{letter-spacing:7.584000px;}
.ls5{letter-spacing:18.780000px;}
.ls3{letter-spacing:80.340000px;}
.ls8{letter-spacing:81.780000px;}
.ls6{letter-spacing:86.700000px;}
.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;}
}
.ws1{word-spacing:-19.020000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.216000px;}
.ws0{word-spacing:-13.314000px;}
.ws6{word-spacing:-0.096000px;}
.ws7{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:18.672000px;}
.ws2{word-spacing:503.712000px;}
.ws3{word-spacing:1157.928000px;}
._2a{margin-left:-11.412000px;}
._29{margin-left:-9.600000px;}
._14{margin-left:-7.296000px;}
._0{margin-left:-6.048000px;}
._5{margin-left:-4.128000px;}
._4{margin-left:-2.952000px;}
._3{margin-left:-1.440000px;}
._1{width:1.752000px;}
._d{width:2.892000px;}
._c{width:3.900000px;}
._7{width:5.100000px;}
._a{width:6.480000px;}
._8{width:7.500000px;}
._b{width:8.640000px;}
._16{width:10.200000px;}
._f{width:11.280000px;}
._e{width:12.300000px;}
._10{width:13.320000px;}
._11{width:14.340000px;}
._9{width:15.660000px;}
._13{width:17.640000px;}
._19{width:20.100000px;}
._21{width:21.360000px;}
._26{width:22.440000px;}
._1a{width:24.072000px;}
._15{width:25.368000px;}
._23{width:27.264000px;}
._1d{width:30.624000px;}
._22{width:33.060000px;}
._12{width:35.160000px;}
._18{width:37.800000px;}
._1c{width:40.224000px;}
._1b{width:41.376000px;}
._25{width:48.960000px;}
._6{width:52.080000px;}
._1e{width:60.528000px;}
._1f{width:61.536000px;}
._24{width:72.960000px;}
._17{width:80.700000px;}
._20{width:92.448000px;}
._27{width:183.180000px;}
._2{width:358.848000px;}
._28{width:365.940000px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(20,19,18);}
.fc0{color:rgb(0,51,102);}
.fs5{font-size:34.800000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yd8{bottom:3.300000px;}
.yd7{bottom:24.300000px;}
.y35{bottom:157.650000px;}
.ya6{bottom:162.600000px;}
.ybc{bottom:167.700000px;}
.y6e{bottom:173.100000px;}
.y34{bottom:180.000000px;}
.ybb{bottom:185.250000px;}
.y6d{bottom:190.650000px;}
.yd5{bottom:191.550000px;}
.y8d{bottom:195.450000px;}
.yba{bottom:202.650000px;}
.y6c{bottom:208.050000px;}
.yd4{bottom:209.100000px;}
.y8c{bottom:213.000000px;}
.yd3{bottom:226.500000px;}
.y8b{bottom:230.400000px;}
.yb9{bottom:230.700000px;}
.y36{bottom:231.450000px;}
.y6b{bottom:236.100000px;}
.yd2{bottom:244.050000px;}
.ya7{bottom:244.200000px;}
.y8a{bottom:247.950000px;}
.yb8{bottom:248.100000px;}
.y6a{bottom:253.500000px;}
.y8{bottom:253.650000px;}
.y89{bottom:265.350000px;}
.yd1{bottom:270.450000px;}
.y69{bottom:271.050000px;}
.yb7{bottom:276.150000px;}
.y42{bottom:279.150000px;}
.y88{bottom:282.900000px;}
.yd0{bottom:288.000000px;}
.y68{bottom:288.450000px;}
.yb6{bottom:293.550000px;}
.y7{bottom:297.900000px;}
.y41{bottom:299.400000px;}
.y87{bottom:300.300000px;}
.y26{bottom:305.400000px;}
.y67{bottom:306.000000px;}
.yb5{bottom:311.100000px;}
.ycf{bottom:314.400000px;}
.y86{bottom:317.850000px;}
.y40{bottom:319.650000px;}
.y6{bottom:322.800000px;}
.yb4{bottom:328.500000px;}
.yce{bottom:331.950000px;}
.y66{bottom:333.900000px;}
.y85{bottom:335.250000px;}
.y3f{bottom:339.900000px;}
.y5{bottom:343.800000px;}
.yb3{bottom:346.050000px;}
.ycd{bottom:349.350000px;}
.y65{bottom:351.450000px;}
.y84{bottom:352.800000px;}
.y3e{bottom:360.150000px;}
.yb2{bottom:363.450000px;}
.ycc{bottom:366.900000px;}
.y25{bottom:367.200000px;}
.y64{bottom:368.850000px;}
.y83{bottom:370.200000px;}
.y3d{bottom:380.400000px;}
.y63{bottom:386.400000px;}
.ycb{bottom:393.300000px;}
.y24{bottom:395.100000px;}
.y82{bottom:398.250000px;}
.y3c{bottom:400.650000px;}
.y62{bottom:403.800000px;}
.yca{bottom:410.850000px;}
.ybf{bottom:412.350000px;}
.y23{bottom:412.650000px;}
.y81{bottom:415.650000px;}
.y3b{bottom:420.900000px;}
.y61{bottom:421.350000px;}
.yc9{bottom:428.250000px;}
.y80{bottom:433.200000px;}
.y60{bottom:438.750000px;}
.y22{bottom:440.550000px;}
.y3a{bottom:441.150000px;}
.yc8{bottom:445.800000px;}
.yf2{bottom:446.250000px;}
.y7f{bottom:450.600000px;}
.y5f{bottom:456.300000px;}
.y39{bottom:461.400000px;}
.yf1{bottom:463.800000px;}
.y7e{bottom:468.150000px;}
.y21{bottom:468.600000px;}
.y5e{bottom:473.700000px;}
.yc7{bottom:474.450000px;}
.yf0{bottom:481.200000px;}
.y38{bottom:481.650000px;}
.y20{bottom:486.000000px;}
.y5d{bottom:491.250000px;}
.y7d{bottom:494.550000px;}
.yef{bottom:498.750000px;}
.y37{bottom:501.900000px;}
.y5c{bottom:508.650000px;}
.y7c{bottom:512.100000px;}
.y1f{bottom:514.650000px;}
.yee{bottom:525.150000px;}
.y5b{bottom:526.200000px;}
.y7b{bottom:529.500000px;}
.yed{bottom:542.700000px;}
.y33{bottom:547.950000px;}
.yd6{bottom:550.200000px;}
.y5a{bottom:554.100000px;}
.y7a{bottom:558.150000px;}
.yec{bottom:560.100000px;}
.y32{bottom:565.350000px;}
.y59{bottom:571.650000px;}
.y1e{bottom:576.450000px;}
.y31{bottom:582.900000px;}
.y8e{bottom:584.850000px;}
.yeb{bottom:586.650000px;}
.y58{bottom:589.050000px;}
.y1d{bottom:594.000000px;}
.ya5{bottom:595.500000px;}
.y30{bottom:600.300000px;}
.yea{bottom:604.050000px;}
.y1c{bottom:611.400000px;}
.ya4{bottom:613.050000px;}
.y57{bottom:617.100000px;}
.y2f{bottom:617.850000px;}
.ye9{bottom:621.600000px;}
.y1b{bottom:628.950000px;}
.ya3{bottom:630.450000px;}
.y56{bottom:634.500000px;}
.y2e{bottom:635.250000px;}
.ya2{bottom:648.000000px;}
.y2d{bottom:652.800000px;}
.y1a{bottom:655.350000px;}
.y55{bottom:661.050000px;}
.ya1{bottom:665.400000px;}
.ye8{bottom:665.550000px;}
.yb1{bottom:667.350000px;}
.y19{bottom:672.900000px;}
.y54{bottom:678.450000px;}
.ya0{bottom:682.950000px;}
.yb0{bottom:684.900000px;}
.y18{bottom:690.300000px;}
.ye7{bottom:691.950000px;}
.y53{bottom:696.000000px;}
.y9f{bottom:700.350000px;}
.yaf{bottom:702.300000px;}
.y44{bottom:703.800000px;}
.y17{bottom:707.850000px;}
.y9e{bottom:717.900000px;}
.ye6{bottom:718.500000px;}
.yae{bottom:719.850000px;}
.y52{bottom:722.400000px;}
.y43{bottom:724.800000px;}
.y16{bottom:725.250000px;}
.ye5{bottom:735.900000px;}
.y51{bottom:739.950000px;}
.y9d{bottom:744.300000px;}
.yad{bottom:747.750000px;}
.y4{bottom:751.650000px;}
.y15{bottom:753.900000px;}
.y50{bottom:757.350000px;}
.y9c{bottom:761.850000px;}
.ye4{bottom:764.550000px;}
.yac{bottom:765.300000px;}
.y4f{bottom:774.900000px;}
.y9b{bottom:779.250000px;}
.y4e{bottom:792.300000px;}
.y3{bottom:793.500000px;}
.y9a{bottom:796.800000px;}
.y4d{bottom:809.850000px;}
.ybe{bottom:812.550000px;}
.y99{bottom:814.200000px;}
.y14{bottom:815.700000px;}
.y79{bottom:820.500000px;}
.ye3{bottom:826.350000px;}
.y98{bottom:831.750000px;}
.y13{bottom:833.250000px;}
.ybd{bottom:833.550000px;}
.y78{bottom:834.450000px;}
.y4c{bottom:836.250000px;}
.ye2{bottom:843.900000px;}
.y97{bottom:849.150000px;}
.y12{bottom:850.650000px;}
.y2{bottom:853.500000px;}
.y4b{bottom:853.800000px;}
.ye1{bottom:861.300000px;}
.y77{bottom:862.350000px;}
.y11{bottom:868.200000px;}
.y4a{bottom:871.200000px;}
.y76{bottom:876.300000px;}
.y96{bottom:877.800000px;}
.y10{bottom:885.600000px;}
.ye0{bottom:887.850000px;}
.y49{bottom:888.750000px;}
.y75{bottom:890.250000px;}
.y74{bottom:904.200000px;}
.ydf{bottom:905.250000px;}
.y48{bottom:906.150000px;}
.yc6{bottom:911.700000px;}
.yf{bottom:912.150000px;}
.y73{bottom:918.150000px;}
.yde{bottom:922.800000px;}
.yab{bottom:923.700000px;}
.yc5{bottom:929.100000px;}
.ye{bottom:929.550000px;}
.y72{bottom:932.100000px;}
.y47{bottom:932.700000px;}
.ydd{bottom:940.200000px;}
.yaa{bottom:941.100000px;}
.y71{bottom:946.050000px;}
.yc4{bottom:946.650000px;}
.yd{bottom:947.100000px;}
.y46{bottom:950.100000px;}
.ya9{bottom:958.650000px;}
.yc3{bottom:964.050000px;}
.yc{bottom:964.500000px;}
.y95{bottom:966.150000px;}
.y45{bottom:967.650000px;}
.y70{bottom:974.700000px;}
.ya8{bottom:976.050000px;}
.yc2{bottom:981.600000px;}
.yb{bottom:982.050000px;}
.y94{bottom:983.550000px;}
.y2c{bottom:985.050000px;}
.ydc{bottom:988.950000px;}
.ya{bottom:999.450000px;}
.y93{bottom:1001.100000px;}
.y2b{bottom:1002.600000px;}
.y6f{bottom:1005.300000px;}
.yc1{bottom:1009.500000px;}
.ydb{bottom:1012.650000px;}
.y92{bottom:1018.500000px;}
.y2a{bottom:1020.000000px;}
.yc0{bottom:1027.050000px;}
.y9{bottom:1028.100000px;}
.y91{bottom:1036.050000px;}
.y29{bottom:1037.550000px;}
.y90{bottom:1053.450000px;}
.y28{bottom:1054.950000px;}
.yda{bottom:1061.250000px;}
.y8f{bottom:1071.000000px;}
.y27{bottom:1072.500000px;}
.yd9{bottom:1075.200000px;}
.h7{height:35.834766px;}
.hb{height:44.507812px;}
.ha{height:47.988281px;}
.h9{height:50.695312px;}
.h6{height:55.634766px;}
.h8{height:57.585938px;}
.h3{height:66.761719px;}
.h5{height:76.781250px;}
.h2{height:115.171875px;}
.h4{height:133.523438px;}
.hc{height:349.050000px;}
.h1{height:1262.850000px;}
.h0{height:1263.000000px;}
.w1{width:633.600000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x19{left:12.900000px;}
.x4{left:116.400000px;}
.x6{left:127.800000px;}
.x18{left:129.750000px;}
.x15{left:141.600000px;}
.x2{left:144.150000px;}
.x1b{left:149.100000px;}
.x17{left:151.500000px;}
.x8{left:154.800000px;}
.x7{left:157.500000px;}
.xc{left:170.700000px;}
.x1a{left:177.900000px;}
.x9{left:181.800000px;}
.x12{left:184.500000px;}
.xb{left:189.750000px;}
.x1{left:197.550000px;}
.xe{left:200.400000px;}
.x10{left:207.150000px;}
.xa{left:208.800000px;}
.x13{left:211.500000px;}
.x11{left:234.150000px;}
.xd{left:250.950000px;}
.x14{left:255.600000px;}
.x16{left:342.750000px;}
.xf{left:348.000000px;}
.x3{left:396.150000px;}
.x5{left:404.400000px;}
@media print{
.v3{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v2{vertical-align:20.800000pt;}
.v1{vertical-align:24.533333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.059733pt;}
.ls1{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.490667pt;}
.ls9{letter-spacing:6.741333pt;}
.ls5{letter-spacing:16.693333pt;}
.ls3{letter-spacing:71.413333pt;}
.ls8{letter-spacing:72.693333pt;}
.ls6{letter-spacing:77.066667pt;}
.ws1{word-spacing:-16.906667pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-13.525333pt;}
.ws0{word-spacing:-11.834667pt;}
.ws6{word-spacing:-0.085333pt;}
.ws7{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:16.597333pt;}
.ws2{word-spacing:447.744000pt;}
.ws3{word-spacing:1029.269333pt;}
._2a{margin-left:-10.144000pt;}
._29{margin-left:-8.533333pt;}
._14{margin-left:-6.485333pt;}
._0{margin-left:-5.376000pt;}
._5{margin-left:-3.669333pt;}
._4{margin-left:-2.624000pt;}
._3{margin-left:-1.280000pt;}
._1{width:1.557333pt;}
._d{width:2.570667pt;}
._c{width:3.466667pt;}
._7{width:4.533333pt;}
._a{width:5.760000pt;}
._8{width:6.666667pt;}
._b{width:7.680000pt;}
._16{width:9.066667pt;}
._f{width:10.026667pt;}
._e{width:10.933333pt;}
._10{width:11.840000pt;}
._11{width:12.746667pt;}
._9{width:13.920000pt;}
._13{width:15.680000pt;}
._19{width:17.866667pt;}
._21{width:18.986667pt;}
._26{width:19.946667pt;}
._1a{width:21.397333pt;}
._15{width:22.549333pt;}
._23{width:24.234667pt;}
._1d{width:27.221333pt;}
._22{width:29.386667pt;}
._12{width:31.253333pt;}
._18{width:33.600000pt;}
._1c{width:35.754667pt;}
._1b{width:36.778667pt;}
._25{width:43.520000pt;}
._6{width:46.293333pt;}
._1e{width:53.802667pt;}
._1f{width:54.698667pt;}
._24{width:64.853333pt;}
._17{width:71.733333pt;}
._20{width:82.176000pt;}
._27{width:162.826667pt;}
._2{width:318.976000pt;}
._28{width:325.280000pt;}
.fs5{font-size:30.933333pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yd8{bottom:2.933333pt;}
.yd7{bottom:21.600000pt;}
.y35{bottom:140.133333pt;}
.ya6{bottom:144.533333pt;}
.ybc{bottom:149.066667pt;}
.y6e{bottom:153.866667pt;}
.y34{bottom:160.000000pt;}
.ybb{bottom:164.666667pt;}
.y6d{bottom:169.466667pt;}
.yd5{bottom:170.266667pt;}
.y8d{bottom:173.733333pt;}
.yba{bottom:180.133333pt;}
.y6c{bottom:184.933333pt;}
.yd4{bottom:185.866667pt;}
.y8c{bottom:189.333333pt;}
.yd3{bottom:201.333333pt;}
.y8b{bottom:204.800000pt;}
.yb9{bottom:205.066667pt;}
.y36{bottom:205.733333pt;}
.y6b{bottom:209.866667pt;}
.yd2{bottom:216.933333pt;}
.ya7{bottom:217.066667pt;}
.y8a{bottom:220.400000pt;}
.yb8{bottom:220.533333pt;}
.y6a{bottom:225.333333pt;}
.y8{bottom:225.466667pt;}
.y89{bottom:235.866667pt;}
.yd1{bottom:240.400000pt;}
.y69{bottom:240.933333pt;}
.yb7{bottom:245.466667pt;}
.y42{bottom:248.133333pt;}
.y88{bottom:251.466667pt;}
.yd0{bottom:256.000000pt;}
.y68{bottom:256.400000pt;}
.yb6{bottom:260.933333pt;}
.y7{bottom:264.800000pt;}
.y41{bottom:266.133333pt;}
.y87{bottom:266.933333pt;}
.y26{bottom:271.466667pt;}
.y67{bottom:272.000000pt;}
.yb5{bottom:276.533333pt;}
.ycf{bottom:279.466667pt;}
.y86{bottom:282.533333pt;}
.y40{bottom:284.133333pt;}
.y6{bottom:286.933333pt;}
.yb4{bottom:292.000000pt;}
.yce{bottom:295.066667pt;}
.y66{bottom:296.800000pt;}
.y85{bottom:298.000000pt;}
.y3f{bottom:302.133333pt;}
.y5{bottom:305.600000pt;}
.yb3{bottom:307.600000pt;}
.ycd{bottom:310.533333pt;}
.y65{bottom:312.400000pt;}
.y84{bottom:313.600000pt;}
.y3e{bottom:320.133333pt;}
.yb2{bottom:323.066667pt;}
.ycc{bottom:326.133333pt;}
.y25{bottom:326.400000pt;}
.y64{bottom:327.866667pt;}
.y83{bottom:329.066667pt;}
.y3d{bottom:338.133333pt;}
.y63{bottom:343.466667pt;}
.ycb{bottom:349.600000pt;}
.y24{bottom:351.200000pt;}
.y82{bottom:354.000000pt;}
.y3c{bottom:356.133333pt;}
.y62{bottom:358.933333pt;}
.yca{bottom:365.200000pt;}
.ybf{bottom:366.533333pt;}
.y23{bottom:366.800000pt;}
.y81{bottom:369.466667pt;}
.y3b{bottom:374.133333pt;}
.y61{bottom:374.533333pt;}
.yc9{bottom:380.666667pt;}
.y80{bottom:385.066667pt;}
.y60{bottom:390.000000pt;}
.y22{bottom:391.600000pt;}
.y3a{bottom:392.133333pt;}
.yc8{bottom:396.266667pt;}
.yf2{bottom:396.666667pt;}
.y7f{bottom:400.533333pt;}
.y5f{bottom:405.600000pt;}
.y39{bottom:410.133333pt;}
.yf1{bottom:412.266667pt;}
.y7e{bottom:416.133333pt;}
.y21{bottom:416.533333pt;}
.y5e{bottom:421.066667pt;}
.yc7{bottom:421.733333pt;}
.yf0{bottom:427.733333pt;}
.y38{bottom:428.133333pt;}
.y20{bottom:432.000000pt;}
.y5d{bottom:436.666667pt;}
.y7d{bottom:439.600000pt;}
.yef{bottom:443.333333pt;}
.y37{bottom:446.133333pt;}
.y5c{bottom:452.133333pt;}
.y7c{bottom:455.200000pt;}
.y1f{bottom:457.466667pt;}
.yee{bottom:466.800000pt;}
.y5b{bottom:467.733333pt;}
.y7b{bottom:470.666667pt;}
.yed{bottom:482.400000pt;}
.y33{bottom:487.066667pt;}
.yd6{bottom:489.066667pt;}
.y5a{bottom:492.533333pt;}
.y7a{bottom:496.133333pt;}
.yec{bottom:497.866667pt;}
.y32{bottom:502.533333pt;}
.y59{bottom:508.133333pt;}
.y1e{bottom:512.400000pt;}
.y31{bottom:518.133333pt;}
.y8e{bottom:519.866667pt;}
.yeb{bottom:521.466667pt;}
.y58{bottom:523.600000pt;}
.y1d{bottom:528.000000pt;}
.ya5{bottom:529.333333pt;}
.y30{bottom:533.600000pt;}
.yea{bottom:536.933333pt;}
.y1c{bottom:543.466667pt;}
.ya4{bottom:544.933333pt;}
.y57{bottom:548.533333pt;}
.y2f{bottom:549.200000pt;}
.ye9{bottom:552.533333pt;}
.y1b{bottom:559.066667pt;}
.ya3{bottom:560.400000pt;}
.y56{bottom:564.000000pt;}
.y2e{bottom:564.666667pt;}
.ya2{bottom:576.000000pt;}
.y2d{bottom:580.266667pt;}
.y1a{bottom:582.533333pt;}
.y55{bottom:587.600000pt;}
.ya1{bottom:591.466667pt;}
.ye8{bottom:591.600000pt;}
.yb1{bottom:593.200000pt;}
.y19{bottom:598.133333pt;}
.y54{bottom:603.066667pt;}
.ya0{bottom:607.066667pt;}
.yb0{bottom:608.800000pt;}
.y18{bottom:613.600000pt;}
.ye7{bottom:615.066667pt;}
.y53{bottom:618.666667pt;}
.y9f{bottom:622.533333pt;}
.yaf{bottom:624.266667pt;}
.y44{bottom:625.600000pt;}
.y17{bottom:629.200000pt;}
.y9e{bottom:638.133333pt;}
.ye6{bottom:638.666667pt;}
.yae{bottom:639.866667pt;}
.y52{bottom:642.133333pt;}
.y43{bottom:644.266667pt;}
.y16{bottom:644.666667pt;}
.ye5{bottom:654.133333pt;}
.y51{bottom:657.733333pt;}
.y9d{bottom:661.600000pt;}
.yad{bottom:664.666667pt;}
.y4{bottom:668.133333pt;}
.y15{bottom:670.133333pt;}
.y50{bottom:673.200000pt;}
.y9c{bottom:677.200000pt;}
.ye4{bottom:679.600000pt;}
.yac{bottom:680.266667pt;}
.y4f{bottom:688.800000pt;}
.y9b{bottom:692.666667pt;}
.y4e{bottom:704.266667pt;}
.y3{bottom:705.333333pt;}
.y9a{bottom:708.266667pt;}
.y4d{bottom:719.866667pt;}
.ybe{bottom:722.266667pt;}
.y99{bottom:723.733333pt;}
.y14{bottom:725.066667pt;}
.y79{bottom:729.333333pt;}
.ye3{bottom:734.533333pt;}
.y98{bottom:739.333333pt;}
.y13{bottom:740.666667pt;}
.ybd{bottom:740.933333pt;}
.y78{bottom:741.733333pt;}
.y4c{bottom:743.333333pt;}
.ye2{bottom:750.133333pt;}
.y97{bottom:754.800000pt;}
.y12{bottom:756.133333pt;}
.y2{bottom:758.666667pt;}
.y4b{bottom:758.933333pt;}
.ye1{bottom:765.600000pt;}
.y77{bottom:766.533333pt;}
.y11{bottom:771.733333pt;}
.y4a{bottom:774.400000pt;}
.y76{bottom:778.933333pt;}
.y96{bottom:780.266667pt;}
.y10{bottom:787.200000pt;}
.ye0{bottom:789.200000pt;}
.y49{bottom:790.000000pt;}
.y75{bottom:791.333333pt;}
.y74{bottom:803.733333pt;}
.ydf{bottom:804.666667pt;}
.y48{bottom:805.466667pt;}
.yc6{bottom:810.400000pt;}
.yf{bottom:810.800000pt;}
.y73{bottom:816.133333pt;}
.yde{bottom:820.266667pt;}
.yab{bottom:821.066667pt;}
.yc5{bottom:825.866667pt;}
.ye{bottom:826.266667pt;}
.y72{bottom:828.533333pt;}
.y47{bottom:829.066667pt;}
.ydd{bottom:835.733333pt;}
.yaa{bottom:836.533333pt;}
.y71{bottom:840.933333pt;}
.yc4{bottom:841.466667pt;}
.yd{bottom:841.866667pt;}
.y46{bottom:844.533333pt;}
.ya9{bottom:852.133333pt;}
.yc3{bottom:856.933333pt;}
.yc{bottom:857.333333pt;}
.y95{bottom:858.800000pt;}
.y45{bottom:860.133333pt;}
.y70{bottom:866.400000pt;}
.ya8{bottom:867.600000pt;}
.yc2{bottom:872.533333pt;}
.yb{bottom:872.933333pt;}
.y94{bottom:874.266667pt;}
.y2c{bottom:875.600000pt;}
.ydc{bottom:879.066667pt;}
.ya{bottom:888.400000pt;}
.y93{bottom:889.866667pt;}
.y2b{bottom:891.200000pt;}
.y6f{bottom:893.600000pt;}
.yc1{bottom:897.333333pt;}
.ydb{bottom:900.133333pt;}
.y92{bottom:905.333333pt;}
.y2a{bottom:906.666667pt;}
.yc0{bottom:912.933333pt;}
.y9{bottom:913.866667pt;}
.y91{bottom:920.933333pt;}
.y29{bottom:922.266667pt;}
.y90{bottom:936.400000pt;}
.y28{bottom:937.733333pt;}
.yda{bottom:943.333333pt;}
.y8f{bottom:952.000000pt;}
.y27{bottom:953.333333pt;}
.yd9{bottom:955.733333pt;}
.h7{height:31.853125pt;}
.hb{height:39.562500pt;}
.ha{height:42.656250pt;}
.h9{height:45.062500pt;}
.h6{height:49.453125pt;}
.h8{height:51.187500pt;}
.h3{height:59.343750pt;}
.h5{height:68.250000pt;}
.h2{height:102.375000pt;}
.h4{height:118.687500pt;}
.hc{height:310.266667pt;}
.h1{height:1122.533333pt;}
.h0{height:1122.666667pt;}
.w1{width:563.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x19{left:11.466667pt;}
.x4{left:103.466667pt;}
.x6{left:113.600000pt;}
.x18{left:115.333333pt;}
.x15{left:125.866667pt;}
.x2{left:128.133333pt;}
.x1b{left:132.533333pt;}
.x17{left:134.666667pt;}
.x8{left:137.600000pt;}
.x7{left:140.000000pt;}
.xc{left:151.733333pt;}
.x1a{left:158.133333pt;}
.x9{left:161.600000pt;}
.x12{left:164.000000pt;}
.xb{left:168.666667pt;}
.x1{left:175.600000pt;}
.xe{left:178.133333pt;}
.x10{left:184.133333pt;}
.xa{left:185.600000pt;}
.x13{left:188.000000pt;}
.x11{left:208.133333pt;}
.xd{left:223.066667pt;}
.x14{left:227.200000pt;}
.x16{left:304.666667pt;}
.xf{left:309.333333pt;}
.x3{left:352.133333pt;}
.x5{left:359.466667pt;}
}




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