
    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_00d41808f442a6a2d3bba336.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_130ff4643bfac720350c1b47.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_b9a3a904a25018716618d073.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_c6f290e89e6c8a9a2e660385.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_d23c5e82a23454d0c5d8c882.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-38.880000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.v1{vertical-align:38.880000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.250560px;}
.ls2{letter-spacing:0.707048px;}
.ls7{letter-spacing:0.708775px;}
.ls1{letter-spacing:1.422431px;}
.ls4{letter-spacing:6.463594px;}
.ls5{letter-spacing:33.232051px;}
.ls6{letter-spacing:37.873748px;}
.ls0{letter-spacing:251.096942px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws0{word-spacing:-60.120000px;}
.ws4{word-spacing:-20.880000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.679850px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-8.784000px;}
._12{margin-left:-6.517954px;}
._11{margin-left:-5.352841px;}
._9{margin-left:-4.341806px;}
._7{margin-left:-3.124800px;}
._8{margin-left:-2.095260px;}
._3{margin-left:-1.033573px;}
._4{width:1.310400px;}
._6{width:2.973951px;}
._14{width:4.165106px;}
._13{width:5.287416px;}
._16{width:6.599621px;}
._19{width:7.602921px;}
._18{width:8.776207px;}
._f{width:10.483145px;}
._e{width:11.625805px;}
._17{width:12.752382px;}
._1a{width:13.958887px;}
._1b{width:15.110179px;}
._20{width:16.854210px;}
._1f{width:19.183573px;}
._15{width:20.239037px;}
._1c{width:21.312885px;}
._1d{width:23.454198px;}
._2e{width:24.467518px;}
._1e{width:25.545398px;}
._c{width:26.548471px;}
._10{width:27.548700px;}
._d{width:28.585724px;}
._2c{width:30.298176px;}
._2d{width:31.486961px;}
._b{width:49.015723px;}
._a{width:50.219863px;}
._27{width:63.498033px;}
._5{width:84.625119px;}
._29{width:95.453280px;}
._28{width:104.968754px;}
._2{width:107.870478px;}
._0{width:137.260955px;}
._1{width:161.870478px;}
._22{width:198.776866px;}
._24{width:264.295771px;}
._23{width:335.879297px;}
._26{width:387.771737px;}
._2b{width:500.024385px;}
._25{width:523.475383px;}
._2a{width:570.966888px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.719400px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.640000px;}
.y21{bottom:50.040000px;}
.y89{bottom:87.120000px;}
.y5b{bottom:87.840000px;}
.yd6{bottom:95.040000px;}
.yed{bottom:96.840000px;}
.ya0{bottom:104.400000px;}
.y1f{bottom:108.000000px;}
.y88{bottom:110.880000px;}
.y5a{bottom:111.600000px;}
.yd5{bottom:118.800000px;}
.yec{bottom:120.600000px;}
.y3d{bottom:125.280000px;}
.yba{bottom:126.720000px;}
.y9f{bottom:128.520000px;}
.y1e{bottom:132.120000px;}
.y59{bottom:135.720000px;}
.yd4{bottom:142.560000px;}
.yeb{bottom:144.360000px;}
.y3c{bottom:149.040000px;}
.y87{bottom:149.400000px;}
.y1d{bottom:155.880000px;}
.y58{bottom:159.480000px;}
.yb9{bottom:165.240000px;}
.yd3{bottom:166.320000px;}
.y9e{bottom:167.400000px;}
.yea{bottom:168.120000px;}
.y3b{bottom:173.160000px;}
.y1c{bottom:179.640000px;}
.y57{bottom:183.240000px;}
.y86{bottom:188.640000px;}
.yb8{bottom:189.000000px;}
.ye9{bottom:191.880000px;}
.y3a{bottom:196.920000px;}
.y1b{bottom:203.400000px;}
.yd2{bottom:205.560000px;}
.y56{bottom:207.000000px;}
.y85{bottom:212.040000px;}
.yb7{bottom:212.760000px;}
.ye8{bottom:215.640000px;}
.y39{bottom:220.680000px;}
.y1a{bottom:227.160000px;}
.yd1{bottom:228.959850px;}
.y55{bottom:230.760000px;}
.ye7{bottom:239.400000px;}
.y38{bottom:244.440000px;}
.y9d{bottom:249.120000px;}
.y19{bottom:250.920000px;}
.yb6{bottom:251.640000px;}
.yd0{bottom:252.720000px;}
.y54{bottom:254.520000px;}
.ye6{bottom:263.520000px;}
.y73{bottom:270.000000px;}
.y9c{bottom:272.520000px;}
.y18{bottom:274.680000px;}
.yb5{bottom:275.400000px;}
.ycf{bottom:276.480000px;}
.y53{bottom:278.280000px;}
.y37{bottom:283.680000px;}
.ye5{bottom:287.280000px;}
.y84{bottom:290.160000px;}
.y72{bottom:293.400000px;}
.y9b{bottom:296.280000px;}
.y17{bottom:298.440000px;}
.yb4{bottom:299.160000px;}
.yce{bottom:300.240000px;}
.y52{bottom:302.040000px;}
.y36{bottom:307.080000px;}
.ye4{bottom:311.040000px;}
.y83{bottom:313.560000px;}
.y9a{bottom:320.040000px;}
.y16{bottom:322.200000px;}
.yb3{bottom:322.920000px;}
.ycd{bottom:324.360000px;}
.y51{bottom:325.800000px;}
.y35{bottom:330.840000px;}
.y71{bottom:333.360000px;}
.ye3{bottom:334.800000px;}
.y82{bottom:337.320000px;}
.y15{bottom:346.320000px;}
.yb2{bottom:346.680000px;}
.ycc{bottom:348.120000px;}
.y50{bottom:349.920000px;}
.y34{bottom:354.600000px;}
.ye2{bottom:358.560000px;}
.y99{bottom:358.920000px;}
.y81{bottom:361.080000px;}
.y14{bottom:370.080000px;}
.yb1{bottom:371.160000px;}
.ycb{bottom:371.880000px;}
.y4f{bottom:373.680000px;}
.y70{bottom:375.120000px;}
.y33{bottom:378.360000px;}
.ye1{bottom:382.320000px;}
.y80{bottom:384.840000px;}
.y13{bottom:393.840000px;}
.yb0{bottom:395.640000px;}
.y4e{bottom:397.440000px;}
.y98{bottom:398.160000px;}
.y6f{bottom:398.880000px;}
.y32{bottom:402.120000px;}
.ye0{bottom:406.080000px;}
.yca{bottom:411.840000px;}
.y12{bottom:417.600000px;}
.yaf{bottom:420.480000px;}
.y4d{bottom:421.200000px;}
.y97{bottom:421.560000px;}
.y6e{bottom:422.640000px;}
.y7f{bottom:423.720000px;}
.y31{bottom:425.880000px;}
.ydf{bottom:429.840000px;}
.y11{bottom:441.360000px;}
.yae{bottom:444.600000px;}
.y4c{bottom:444.960000px;}
.y6d{bottom:446.400000px;}
.y30{bottom:450.000000px;}
.yc9{bottom:453.600000px;}
.yde{bottom:453.960000px;}
.y96{bottom:460.800000px;}
.y7e{bottom:462.960000px;}
.y10{bottom:465.120000px;}
.yad{bottom:468.360000px;}
.y4b{bottom:468.720000px;}
.y6c{bottom:470.160000px;}
.y2f{bottom:473.759850px;}
.yc8{bottom:477.360000px;}
.ydd{bottom:477.720000px;}
.y95{bottom:483.840000px;}
.y7d{bottom:486.360000px;}
.yf{bottom:488.880000px;}
.y4a{bottom:492.480000px;}
.y6b{bottom:493.919850px;}
.yc7{bottom:501.120000px;}
.ydc{bottom:501.480000px;}
.yac{bottom:506.520000px;}
.y94{bottom:507.960000px;}
.y7c{bottom:510.120000px;}
.ye{bottom:512.640000px;}
.y49{bottom:516.240000px;}
.y6a{bottom:517.680000px;}
.yc6{bottom:524.880000px;}
.yab{bottom:529.919850px;}
.y93{bottom:531.720000px;}
.y2e{bottom:536.400000px;}
.yd{bottom:536.759850px;}
.y48{bottom:540.360000px;}
.y69{bottom:541.440000px;}
.yc5{bottom:548.640000px;}
.y7b{bottom:549.000000px;}
.yaa{bottom:553.680000px;}
.y2d{bottom:560.160000px;}
.yc{bottom:560.520000px;}
.y47{bottom:564.120000px;}
.y68{bottom:565.200000px;}
.y92{bottom:570.600000px;}
.yc4{bottom:572.400000px;}
.ya9{bottom:577.800000px;}
.ydb{bottom:583.200000px;}
.y2c{bottom:583.919850px;}
.y7a{bottom:588.240000px;}
.y67{bottom:589.320000px;}
.yb{bottom:600.120000px;}
.ya8{bottom:601.560000px;}
.y46{bottom:603.720000px;}
.yda{bottom:606.600000px;}
.y2b{bottom:607.680000px;}
.y91{bottom:609.840000px;}
.y79{bottom:611.640000px;}
.y66{bottom:613.080000px;}
.yd9{bottom:630.720000px;}
.y2a{bottom:631.440000px;}
.yc3{bottom:635.040000px;}
.y78{bottom:635.400000px;}
.y65{bottom:636.840000px;}
.ya7{bottom:641.160000px;}
.ya{bottom:641.520000px;}
.y45{bottom:645.840000px;}
.y90{bottom:648.360000px;}
.yd8{bottom:654.480000px;}
.y29{bottom:655.200000px;}
.yc2{bottom:658.800000px;}
.y77{bottom:659.160000px;}
.y64{bottom:660.600000px;}
.y44{bottom:669.240000px;}
.y9{bottom:670.680000px;}
.y8f{bottom:671.760000px;}
.y28{bottom:678.960000px;}
.yc1{bottom:682.560000px;}
.ya6{bottom:683.280000px;}
.y63{bottom:684.360000px;}
.y8{bottom:685.080000px;}
.y43{bottom:693.000000px;}
.yd7{bottom:693.360000px;}
.y76{bottom:699.120000px;}
.yc0{bottom:706.320000px;}
.ya5{bottom:706.680000px;}
.y62{bottom:708.120000px;}
.y8e{bottom:711.000000px;}
.y7{bottom:714.600000px;}
.y42{bottom:717.120000px;}
.y27{bottom:718.920000px;}
.y6{bottom:730.080000px;}
.ya4{bottom:730.800000px;}
.y61{bottom:731.880000px;}
.y8d{bottom:734.760000px;}
.y41{bottom:740.880000px;}
.y75{bottom:741.240000px;}
.ybf{bottom:753.840000px;}
.y60{bottom:755.640000px;}
.y5{bottom:757.800000px;}
.y26{bottom:761.040000px;}
.y40{bottom:764.640000px;}
.ya3{bottom:770.400000px;}
.y8c{bottom:773.280000px;}
.ybe{bottom:778.680000px;}
.y5f{bottom:779.760000px;}
.y25{bottom:784.440000px;}
.y3f{bottom:788.400000px;}
.y4{bottom:802.080000px;}
.ybd{bottom:803.160000px;}
.y5e{bottom:803.519850px;}
.y24{bottom:808.920000px;}
.y3e{bottom:812.160000px;}
.y8b{bottom:812.519850px;}
.y5d{bottom:827.280000px;}
.y74{bottom:827.640000px;}
.y3{bottom:833.400000px;}
.ya2{bottom:835.920000px;}
.y5c{bottom:851.040000px;}
.y23{bottom:851.400000px;}
.ybc{bottom:851.760000px;}
.y8a{bottom:874.440000px;}
.y22{bottom:874.800000px;}
.ya1{bottom:875.160000px;}
.ybb{bottom:875.880000px;}
.y1{bottom:877.680000px;}
.y20{bottom:923.040000px;}
.h5{height:28.995469px;}
.h2{height:34.157813px;}
.he{height:44.892718px;}
.h9{height:47.988281px;}
.hd{height:48.796875px;}
.hc{height:49.042969px;}
.h8{height:49.992188px;}
.hb{height:51.679688px;}
.h7{height:56.604375px;}
.ha{height:57.990937px;}
.h6{height:59.235469px;}
.h3{height:65.387406px;}
.h4{height:75.965218px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.xc{left:75.600000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.xb{left:85.680000px;}
.x7{left:108.720000px;}
.xa{left:113.400000px;}
.x5{left:132.479850px;}
.x3{left:135.720000px;}
.x8{left:174.960000px;}
.x4{left:186.120000px;}
.xe{left:234.360000px;}
.x6{left:244.080000px;}
.xd{left:249.480000px;}
.x9{left:338.760000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.v1{vertical-align:34.560000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.222720pt;}
.ls2{letter-spacing:0.628487pt;}
.ls7{letter-spacing:0.630022pt;}
.ls1{letter-spacing:1.264383pt;}
.ls4{letter-spacing:5.745417pt;}
.ls5{letter-spacing:29.539601pt;}
.ls6{letter-spacing:33.665553pt;}
.ls0{letter-spacing:223.197282pt;}
.ws6{word-spacing:-64.000000pt;}
.ws0{word-spacing:-53.440000pt;}
.ws4{word-spacing:-18.560000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws1{word-spacing:-12.159867pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-7.808000pt;}
._12{margin-left:-5.793737pt;}
._11{margin-left:-4.758081pt;}
._9{margin-left:-3.859383pt;}
._7{margin-left:-2.777600pt;}
._8{margin-left:-1.862454pt;}
._3{margin-left:-0.918732pt;}
._4{width:1.164800pt;}
._6{width:2.643512pt;}
._14{width:3.702316pt;}
._13{width:4.699926pt;}
._16{width:5.866330pt;}
._19{width:6.758152pt;}
._18{width:7.801073pt;}
._f{width:9.318351pt;}
._e{width:10.334049pt;}
._17{width:11.335450pt;}
._1a{width:12.407900pt;}
._1b{width:13.431270pt;}
._20{width:14.981520pt;}
._1f{width:17.052065pt;}
._15{width:17.990255pt;}
._1c{width:18.944787pt;}
._1d{width:20.848176pt;}
._2e{width:21.748905pt;}
._1e{width:22.707021pt;}
._c{width:23.598641pt;}
._10{width:24.487733pt;}
._d{width:25.409533pt;}
._2c{width:26.931712pt;}
._2d{width:27.988410pt;}
._b{width:43.569532pt;}
._a{width:44.639878pt;}
._27{width:56.442696pt;}
._5{width:75.222328pt;}
._29{width:84.847360pt;}
._28{width:93.305559pt;}
._2{width:95.884869pt;}
._0{width:122.009738pt;}
._1{width:143.884869pt;}
._22{width:176.690548pt;}
._24{width:234.929574pt;}
._23{width:298.559376pt;}
._26{width:344.685988pt;}
._2b{width:444.466120pt;}
._25{width:465.311451pt;}
._2a{width:507.526122pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.639467pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.680000pt;}
.y21{bottom:44.480000pt;}
.y89{bottom:77.440000pt;}
.y5b{bottom:78.080000pt;}
.yd6{bottom:84.480000pt;}
.yed{bottom:86.080000pt;}
.ya0{bottom:92.800000pt;}
.y1f{bottom:96.000000pt;}
.y88{bottom:98.560000pt;}
.y5a{bottom:99.200000pt;}
.yd5{bottom:105.600000pt;}
.yec{bottom:107.200000pt;}
.y3d{bottom:111.360000pt;}
.yba{bottom:112.640000pt;}
.y9f{bottom:114.240000pt;}
.y1e{bottom:117.440000pt;}
.y59{bottom:120.640000pt;}
.yd4{bottom:126.720000pt;}
.yeb{bottom:128.320000pt;}
.y3c{bottom:132.480000pt;}
.y87{bottom:132.800000pt;}
.y1d{bottom:138.560000pt;}
.y58{bottom:141.760000pt;}
.yb9{bottom:146.880000pt;}
.yd3{bottom:147.840000pt;}
.y9e{bottom:148.800000pt;}
.yea{bottom:149.440000pt;}
.y3b{bottom:153.920000pt;}
.y1c{bottom:159.680000pt;}
.y57{bottom:162.880000pt;}
.y86{bottom:167.680000pt;}
.yb8{bottom:168.000000pt;}
.ye9{bottom:170.560000pt;}
.y3a{bottom:175.040000pt;}
.y1b{bottom:180.800000pt;}
.yd2{bottom:182.720000pt;}
.y56{bottom:184.000000pt;}
.y85{bottom:188.480000pt;}
.yb7{bottom:189.120000pt;}
.ye8{bottom:191.680000pt;}
.y39{bottom:196.160000pt;}
.y1a{bottom:201.920000pt;}
.yd1{bottom:203.519867pt;}
.y55{bottom:205.120000pt;}
.ye7{bottom:212.800000pt;}
.y38{bottom:217.280000pt;}
.y9d{bottom:221.440000pt;}
.y19{bottom:223.040000pt;}
.yb6{bottom:223.680000pt;}
.yd0{bottom:224.640000pt;}
.y54{bottom:226.240000pt;}
.ye6{bottom:234.240000pt;}
.y73{bottom:240.000000pt;}
.y9c{bottom:242.240000pt;}
.y18{bottom:244.160000pt;}
.yb5{bottom:244.800000pt;}
.ycf{bottom:245.760000pt;}
.y53{bottom:247.360000pt;}
.y37{bottom:252.160000pt;}
.ye5{bottom:255.360000pt;}
.y84{bottom:257.920000pt;}
.y72{bottom:260.800000pt;}
.y9b{bottom:263.360000pt;}
.y17{bottom:265.280000pt;}
.yb4{bottom:265.920000pt;}
.yce{bottom:266.880000pt;}
.y52{bottom:268.480000pt;}
.y36{bottom:272.960000pt;}
.ye4{bottom:276.480000pt;}
.y83{bottom:278.720000pt;}
.y9a{bottom:284.480000pt;}
.y16{bottom:286.400000pt;}
.yb3{bottom:287.040000pt;}
.ycd{bottom:288.320000pt;}
.y51{bottom:289.600000pt;}
.y35{bottom:294.080000pt;}
.y71{bottom:296.320000pt;}
.ye3{bottom:297.600000pt;}
.y82{bottom:299.840000pt;}
.y15{bottom:307.840000pt;}
.yb2{bottom:308.160000pt;}
.ycc{bottom:309.440000pt;}
.y50{bottom:311.040000pt;}
.y34{bottom:315.200000pt;}
.ye2{bottom:318.720000pt;}
.y99{bottom:319.040000pt;}
.y81{bottom:320.960000pt;}
.y14{bottom:328.960000pt;}
.yb1{bottom:329.920000pt;}
.ycb{bottom:330.560000pt;}
.y4f{bottom:332.160000pt;}
.y70{bottom:333.440000pt;}
.y33{bottom:336.320000pt;}
.ye1{bottom:339.840000pt;}
.y80{bottom:342.080000pt;}
.y13{bottom:350.080000pt;}
.yb0{bottom:351.680000pt;}
.y4e{bottom:353.280000pt;}
.y98{bottom:353.920000pt;}
.y6f{bottom:354.560000pt;}
.y32{bottom:357.440000pt;}
.ye0{bottom:360.960000pt;}
.yca{bottom:366.080000pt;}
.y12{bottom:371.200000pt;}
.yaf{bottom:373.760000pt;}
.y4d{bottom:374.400000pt;}
.y97{bottom:374.720000pt;}
.y6e{bottom:375.680000pt;}
.y7f{bottom:376.640000pt;}
.y31{bottom:378.560000pt;}
.ydf{bottom:382.080000pt;}
.y11{bottom:392.320000pt;}
.yae{bottom:395.200000pt;}
.y4c{bottom:395.520000pt;}
.y6d{bottom:396.800000pt;}
.y30{bottom:400.000000pt;}
.yc9{bottom:403.200000pt;}
.yde{bottom:403.520000pt;}
.y96{bottom:409.600000pt;}
.y7e{bottom:411.520000pt;}
.y10{bottom:413.440000pt;}
.yad{bottom:416.320000pt;}
.y4b{bottom:416.640000pt;}
.y6c{bottom:417.920000pt;}
.y2f{bottom:421.119867pt;}
.yc8{bottom:424.320000pt;}
.ydd{bottom:424.640000pt;}
.y95{bottom:430.080000pt;}
.y7d{bottom:432.320000pt;}
.yf{bottom:434.560000pt;}
.y4a{bottom:437.760000pt;}
.y6b{bottom:439.039867pt;}
.yc7{bottom:445.440000pt;}
.ydc{bottom:445.760000pt;}
.yac{bottom:450.240000pt;}
.y94{bottom:451.520000pt;}
.y7c{bottom:453.440000pt;}
.ye{bottom:455.680000pt;}
.y49{bottom:458.880000pt;}
.y6a{bottom:460.160000pt;}
.yc6{bottom:466.560000pt;}
.yab{bottom:471.039867pt;}
.y93{bottom:472.640000pt;}
.y2e{bottom:476.800000pt;}
.yd{bottom:477.119867pt;}
.y48{bottom:480.320000pt;}
.y69{bottom:481.280000pt;}
.yc5{bottom:487.680000pt;}
.y7b{bottom:488.000000pt;}
.yaa{bottom:492.160000pt;}
.y2d{bottom:497.920000pt;}
.yc{bottom:498.240000pt;}
.y47{bottom:501.440000pt;}
.y68{bottom:502.400000pt;}
.y92{bottom:507.200000pt;}
.yc4{bottom:508.800000pt;}
.ya9{bottom:513.600000pt;}
.ydb{bottom:518.400000pt;}
.y2c{bottom:519.039867pt;}
.y7a{bottom:522.880000pt;}
.y67{bottom:523.840000pt;}
.yb{bottom:533.440000pt;}
.ya8{bottom:534.720000pt;}
.y46{bottom:536.640000pt;}
.yda{bottom:539.200000pt;}
.y2b{bottom:540.160000pt;}
.y91{bottom:542.080000pt;}
.y79{bottom:543.680000pt;}
.y66{bottom:544.960000pt;}
.yd9{bottom:560.640000pt;}
.y2a{bottom:561.280000pt;}
.yc3{bottom:564.480000pt;}
.y78{bottom:564.800000pt;}
.y65{bottom:566.080000pt;}
.ya7{bottom:569.920000pt;}
.ya{bottom:570.240000pt;}
.y45{bottom:574.080000pt;}
.y90{bottom:576.320000pt;}
.yd8{bottom:581.760000pt;}
.y29{bottom:582.400000pt;}
.yc2{bottom:585.600000pt;}
.y77{bottom:585.920000pt;}
.y64{bottom:587.200000pt;}
.y44{bottom:594.880000pt;}
.y9{bottom:596.160000pt;}
.y8f{bottom:597.120000pt;}
.y28{bottom:603.520000pt;}
.yc1{bottom:606.720000pt;}
.ya6{bottom:607.360000pt;}
.y63{bottom:608.320000pt;}
.y8{bottom:608.960000pt;}
.y43{bottom:616.000000pt;}
.yd7{bottom:616.320000pt;}
.y76{bottom:621.440000pt;}
.yc0{bottom:627.840000pt;}
.ya5{bottom:628.160000pt;}
.y62{bottom:629.440000pt;}
.y8e{bottom:632.000000pt;}
.y7{bottom:635.200000pt;}
.y42{bottom:637.440000pt;}
.y27{bottom:639.040000pt;}
.y6{bottom:648.960000pt;}
.ya4{bottom:649.600000pt;}
.y61{bottom:650.560000pt;}
.y8d{bottom:653.120000pt;}
.y41{bottom:658.560000pt;}
.y75{bottom:658.880000pt;}
.ybf{bottom:670.080000pt;}
.y60{bottom:671.680000pt;}
.y5{bottom:673.600000pt;}
.y26{bottom:676.480000pt;}
.y40{bottom:679.680000pt;}
.ya3{bottom:684.800000pt;}
.y8c{bottom:687.360000pt;}
.ybe{bottom:692.160000pt;}
.y5f{bottom:693.120000pt;}
.y25{bottom:697.280000pt;}
.y3f{bottom:700.800000pt;}
.y4{bottom:712.960000pt;}
.ybd{bottom:713.920000pt;}
.y5e{bottom:714.239867pt;}
.y24{bottom:719.040000pt;}
.y3e{bottom:721.920000pt;}
.y8b{bottom:722.239867pt;}
.y5d{bottom:735.360000pt;}
.y74{bottom:735.680000pt;}
.y3{bottom:740.800000pt;}
.ya2{bottom:743.040000pt;}
.y5c{bottom:756.480000pt;}
.y23{bottom:756.800000pt;}
.ybc{bottom:757.120000pt;}
.y8a{bottom:777.280000pt;}
.y22{bottom:777.600000pt;}
.ya1{bottom:777.920000pt;}
.ybb{bottom:778.560000pt;}
.y1{bottom:780.160000pt;}
.y20{bottom:820.480000pt;}
.h5{height:25.773750pt;}
.h2{height:30.362500pt;}
.he{height:39.904639pt;}
.h9{height:42.656250pt;}
.hd{height:43.375000pt;}
.hc{height:43.593750pt;}
.h8{height:44.437500pt;}
.hb{height:45.937500pt;}
.h7{height:50.315000pt;}
.ha{height:51.547500pt;}
.h6{height:52.653750pt;}
.h3{height:58.122139pt;}
.h4{height:67.524639pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.xc{left:67.200000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.xb{left:76.160000pt;}
.x7{left:96.640000pt;}
.xa{left:100.800000pt;}
.x5{left:117.759867pt;}
.x3{left:120.640000pt;}
.x8{left:155.520000pt;}
.x4{left:165.440000pt;}
.xe{left:208.320000pt;}
.x6{left:216.960000pt;}
.xd{left:221.760000pt;}
.x9{left:301.120000pt;}
}




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