
    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_73bbf413f07d51f900675460.woff2')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_3f9e329f6a51540084feaef5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_215c877d5b3a86a047fef840.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_361ab96c917467ddfcf960a9.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_dda53bd57c0af1f820593047.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_707b4826b432c8c9e29b1951.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_d4b2197c83df13a51f14163e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_384495cb082f5cf858bfb596.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.105469;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_faa0a7dbb899acb28054986c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706055;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_c6b8ae69aab78458d3059758.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f324e36fe55a13421cddf399.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_579aa4b90a7ad28a6f82ab26.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_603ded3314c7fe8abbb90cfd.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.030000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001201px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.510000px;}
.ls2{letter-spacing:0.726000px;}
.lsc{letter-spacing:1.158000px;}
.ls6{letter-spacing:1.878000px;}
.ls7{letter-spacing:1.950000px;}
.lse{letter-spacing:5.046000px;}
.lsb{letter-spacing:7.926000px;}
.ls5{letter-spacing:9.366000px;}
.ls8{letter-spacing:12.246000px;}
.ls9{letter-spacing:19.446000px;}
.lsa{letter-spacing:23.766000px;}
.lsd{letter-spacing:54.888000px;}
.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;}
}
.ws0{word-spacing:-30.420000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.500000px;}
.ws1{word-spacing:0.000000px;}
._26{margin-left:-11.503920px;}
._2b{margin-left:-9.918720px;}
._2{margin-left:-4.800000px;}
._1{margin-left:-3.674880px;}
._7{margin-left:-2.332800px;}
._0{margin-left:-1.095120px;}
._5{width:1.503360px;}
._8{width:2.611680px;}
._6{width:3.615120px;}
._3{width:4.818000px;}
._4{width:6.252000px;}
._1d{width:7.696560px;}
._c{width:8.747040px;}
._10{width:10.113120px;}
._f{width:11.473440px;}
._11{width:13.035360px;}
._13{width:14.823360px;}
._12{width:16.082160px;}
._23{width:17.368560px;}
._17{width:19.044960px;}
._18{width:20.315520px;}
._1c{width:21.440400px;}
._1e{width:22.649520px;}
._a{width:23.807280px;}
._9{width:25.228800px;}
._d{width:26.565360px;}
._b{width:27.762000px;}
._e{width:29.007840px;}
._1f{width:30.092160px;}
._20{width:31.556160px;}
._2a{width:32.801040px;}
._1b{width:34.625040px;}
._1a{width:35.867520px;}
._19{width:37.383120px;}
._28{width:38.662800px;}
._29{width:39.957600px;}
._15{width:43.880400px;}
._14{width:45.722880px;}
._16{width:46.965840px;}
._24{width:65.544000px;}
._22{width:80.651520px;}
._21{width:81.959760px;}
._27{width:83.544000px;}
._25{width:193.722000px;}
.fc1{color:rgb(31,73,125);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.480000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y19{bottom:96.597300px;}
.y18{bottom:117.601800px;}
.yc4{bottom:132.480000px;}
.ydb{bottom:149.040000px;}
.yf2{bottom:150.120000px;}
.y9e{bottom:152.640000px;}
.y6d{bottom:154.800000px;}
.y58{bottom:156.600000px;}
.y17{bottom:159.594300px;}
.yc3{bottom:163.440000px;}
.y8d{bottom:167.040000px;}
.y3a{bottom:172.080000px;}
.yda{bottom:180.000000px;}
.y16{bottom:180.598800px;}
.yf1{bottom:181.080000px;}
.y9d{bottom:183.960000px;}
.y6c{bottom:186.120000px;}
.yc5{bottom:187.559850px;}
.y57{bottom:187.560000px;}
.yc2{bottom:194.760000px;}
.y8c{bottom:198.000000px;}
.y15{bottom:201.603300px;}
.y39{bottom:203.040000px;}
.yd9{bottom:210.960000px;}
.yf0{bottom:212.400000px;}
.y9c{bottom:214.920000px;}
.y6b{bottom:217.080000px;}
.y56{bottom:218.880000px;}
.y14{bottom:222.607800px;}
.yc1{bottom:225.720000px;}
.y8b{bottom:228.960000px;}
.y38{bottom:234.360000px;}
.yd8{bottom:241.920000px;}
.yef{bottom:243.360000px;}
.y13{bottom:243.612300px;}
.y9b{bottom:245.880000px;}
.y6a{bottom:248.040000px;}
.y55{bottom:249.840000px;}
.yc0{bottom:256.680000px;}
.y8a{bottom:260.280000px;}
.y12{bottom:264.616800px;}
.y37{bottom:265.320000px;}
.yd7{bottom:273.240000px;}
.yee{bottom:274.680000px;}
.y9a{bottom:276.840000px;}
.y69{bottom:279.000000px;}
.y54{bottom:280.800000px;}
.y11{bottom:285.621300px;}
.ybf{bottom:287.640000px;}
.y89{bottom:291.240000px;}
.y36{bottom:296.280000px;}
.yd6{bottom:304.200000px;}
.yed{bottom:306.720000px;}
.y99{bottom:308.160000px;}
.y68{bottom:310.320000px;}
.y53{bottom:311.760000px;}
.ybe{bottom:318.600000px;}
.y88{bottom:322.200000px;}
.y35{bottom:327.240000px;}
.yd5{bottom:336.600000px;}
.yec{bottom:337.680000px;}
.y98{bottom:339.120000px;}
.y67{bottom:341.280000px;}
.y52{bottom:343.080000px;}
.ybd{bottom:349.920000px;}
.y87{bottom:353.160000px;}
.y34{bottom:358.560000px;}
.yd4{bottom:367.560000px;}
.yeb{bottom:368.640000px;}
.y97{bottom:370.080000px;}
.y66{bottom:372.240000px;}
.y51{bottom:374.040000px;}
.y86{bottom:384.480000px;}
.ybc{bottom:387.360000px;}
.y33{bottom:389.520000px;}
.yd3{bottom:398.520000px;}
.yea{bottom:399.960000px;}
.y96{bottom:401.040000px;}
.y65{bottom:403.200000px;}
.ybb{bottom:404.280000px;}
.y50{bottom:405.000000px;}
.y85{bottom:415.440000px;}
.y32{bottom:420.480000px;}
.yba{bottom:421.560000px;}
.yd2{bottom:429.480000px;}
.ye9{bottom:430.920000px;}
.y95{bottom:432.360000px;}
.y64{bottom:434.520000px;}
.y4f{bottom:435.960000px;}
.yb9{bottom:438.840000px;}
.y84{bottom:446.400000px;}
.y31{bottom:451.440000px;}
.yd1{bottom:460.800000px;}
.ye8{bottom:461.880000px;}
.y94{bottom:463.320000px;}
.y63{bottom:465.480000px;}
.y4e{bottom:467.280000px;}
.y83{bottom:477.360000px;}
.y30{bottom:482.760000px;}
.yd0{bottom:491.760000px;}
.ye7{bottom:493.200000px;}
.y93{bottom:494.280000px;}
.y10{bottom:494.626800px;}
.y62{bottom:496.440000px;}
.y4d{bottom:498.240000px;}
.y82{bottom:508.680000px;}
.y2f{bottom:513.720000px;}
.yb8{bottom:518.400000px;}
.ycf{bottom:524.160000px;}
.yaf{bottom:525.240000px;}
.y92{bottom:525.600000px;}
.y73{bottom:527.400000px;}
.y61{bottom:527.760000px;}
.y4c{bottom:529.200000px;}
.yf{bottom:531.134700px;}
.yb7{bottom:535.680000px;}
.y81{bottom:539.640000px;}
.y2e{bottom:544.680000px;}
.yb6{bottom:552.960000px;}
.yce{bottom:555.120000px;}
.yae{bottom:556.200000px;}
.y91{bottom:557.640000px;}
.y72{bottom:558.360000px;}
.yf9{bottom:559.080000px;}
.y4b{bottom:560.160000px;}
.ye{bottom:565.634700px;}
.yb5{bottom:569.880000px;}
.y80{bottom:570.600000px;}
.y2d{bottom:575.640000px;}
.ycd{bottom:586.080000px;}
.yb4{bottom:587.160000px;}
.yad{bottom:587.520000px;}
.y90{bottom:588.960000px;}
.y71{bottom:589.680000px;}
.yf8{bottom:590.040000px;}
.y60{bottom:591.119850px;}
.y4a{bottom:591.120000px;}
.y7f{bottom:601.560000px;}
.yb3{bottom:604.440000px;}
.y2c{bottom:606.960000px;}
.ycc{bottom:617.400000px;}
.yac{bottom:618.480000px;}
.y70{bottom:620.640000px;}
.y8f{bottom:621.000000px;}
.yb2{bottom:621.720000px;}
.y5f{bottom:622.439850px;}
.y49{bottom:622.440000px;}
.y7e{bottom:632.520000px;}
.y2b{bottom:637.920000px;}
.yb1{bottom:639.000000px;}
.yab{bottom:649.440000px;}
.y6f{bottom:651.600000px;}
.yf7{bottom:651.960000px;}
.y8e{bottom:652.320000px;}
.y5e{bottom:653.399850px;}
.y48{bottom:653.400000px;}
.yb0{bottom:656.280000px;}
.y7d{bottom:663.840000px;}
.y2a{bottom:668.880000px;}
.yaa{bottom:680.400000px;}
.ye6{bottom:680.760000px;}
.y6e{bottom:682.920000px;}
.yf6{bottom:683.280000px;}
.y5d{bottom:684.359850px;}
.y47{bottom:684.360000px;}
.y7c{bottom:694.800000px;}
.y29{bottom:699.840000px;}
.ya9{bottom:711.720000px;}
.ye5{bottom:712.800000px;}
.yf5{bottom:714.240000px;}
.y5c{bottom:715.319850px;}
.y46{bottom:715.320000px;}
.y28{bottom:720.720000px;}
.y7b{bottom:725.760000px;}
.ya8{bottom:742.680000px;}
.ycb{bottom:744.120000px;}
.yf4{bottom:745.200000px;}
.y5b{bottom:746.639850px;}
.y45{bottom:746.640000px;}
.y27{bottom:754.200000px;}
.y7a{bottom:756.720000px;}
.ya7{bottom:773.640000px;}
.yca{bottom:775.080000px;}
.yf3{bottom:776.160000px;}
.y5a{bottom:777.599850px;}
.y44{bottom:777.600000px;}
.yd{bottom:780.405000px;}
.y79{bottom:788.040000px;}
.y26{bottom:790.560000px;}
.ya6{bottom:804.600000px;}
.ye4{bottom:806.040000px;}
.yc9{bottom:807.480000px;}
.y59{bottom:808.559850px;}
.y43{bottom:808.560000px;}
.yc{bottom:814.065000px;}
.y78{bottom:819.000000px;}
.y25{bottom:826.920000px;}
.ya5{bottom:835.920000px;}
.ye3{bottom:837.360000px;}
.yc8{bottom:838.440000px;}
.y42{bottom:839.520000px;}
.yb{bottom:845.205000px;}
.y24{bottom:849.960000px;}
.ya4{bottom:866.880000px;}
.yc7{bottom:869.400000px;}
.y23{bottom:870.840000px;}
.ya{bottom:876.210000px;}
.y77{bottom:880.920000px;}
.y22{bottom:891.360000px;}
.ya3{bottom:897.840000px;}
.ye2{bottom:900.360000px;}
.yc6{bottom:900.720000px;}
.y41{bottom:901.800000px;}
.y9{bottom:907.350000px;}
.y21{bottom:912.240000px;}
.ya2{bottom:928.800000px;}
.ye1{bottom:931.680000px;}
.y76{bottom:932.400000px;}
.y20{bottom:932.760000px;}
.y8{bottom:939.030000px;}
.y75{bottom:949.320000px;}
.y1f{bottom:953.640000px;}
.ya1{bottom:960.120000px;}
.ye0{bottom:962.640000px;}
.y40{bottom:963.720000px;}
.y74{bottom:966.600000px;}
.y7{bottom:973.410000px;}
.y1e{bottom:974.160000px;}
.ya0{bottom:992.520000px;}
.ydf{bottom:993.600000px;}
.y3f{bottom:995.040000px;}
.y6{bottom:1007.970000px;}
.y1d{bottom:1008.000000px;}
.yde{bottom:1024.560000px;}
.y9f{bottom:1024.920000px;}
.y3e{bottom:1026.000000px;}
.y5{bottom:1040.550000px;}
.y1c{bottom:1044.000000px;}
.ydd{bottom:1055.880000px;}
.y3d{bottom:1056.960000px;}
.y4{bottom:1064.670000px;}
.y1b{bottom:1080.360000px;}
.ydc{bottom:1086.840000px;}
.y3c{bottom:1087.920000px;}
.y3{bottom:1088.790000px;}
.y2{bottom:1112.910000px;}
.y1a{bottom:1116.720000px;}
.y3b{bottom:1119.240000px;}
.y1{bottom:1137.240000px;}
.h7{height:45.826172px;}
.h9{height:45.858398px;}
.hf{height:53.067656px;}
.hb{height:57.990937px;}
.hc{height:63.175781px;}
.he{height:63.176381px;}
.hd{height:64.054688px;}
.ha{height:73.283906px;}
.h8{height:75.856172px;}
.h2{height:84.898125px;}
.h4{height:108.843750px;}
.h3{height:117.950273px;}
.h5{height:123.587773px;}
.h6{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.500000px;}
.w2{width:892.914000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:127.439452px;}
.x6{left:140.740200px;}
.xd{left:148.678204px;}
.x11{left:154.440348px;}
.x7{left:166.660650px;}
.x12{left:181.439548px;}
.x3{left:193.170000px;}
.x10{left:207.363261px;}
.x9{left:210.239988px;}
.xf{left:212.399355px;}
.xe{left:233.639606px;}
.x5{left:320.115000px;}
.xa{left:355.679317px;}
.x4{left:361.515000px;}
.xc{left:365.039923px;}
.x2{left:379.695000px;}
.x8{left:382.320000px;}
.x1{left:446.505000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.693333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001068pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.453333pt;}
.ls2{letter-spacing:0.645333pt;}
.lsc{letter-spacing:1.029333pt;}
.ls6{letter-spacing:1.669333pt;}
.ls7{letter-spacing:1.733333pt;}
.lse{letter-spacing:4.485333pt;}
.lsb{letter-spacing:7.045333pt;}
.ls5{letter-spacing:8.325333pt;}
.ls8{letter-spacing:10.885333pt;}
.ls9{letter-spacing:17.285333pt;}
.lsa{letter-spacing:21.125333pt;}
.lsd{letter-spacing:48.789333pt;}
.ws0{word-spacing:-27.040000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws1{word-spacing:0.000000pt;}
._26{margin-left:-10.225707pt;}
._2b{margin-left:-8.816640pt;}
._2{margin-left:-4.266667pt;}
._1{margin-left:-3.266560pt;}
._7{margin-left:-2.073600pt;}
._0{margin-left:-0.973440pt;}
._5{width:1.336320pt;}
._8{width:2.321493pt;}
._6{width:3.213440pt;}
._3{width:4.282667pt;}
._4{width:5.557333pt;}
._1d{width:6.841387pt;}
._c{width:7.775147pt;}
._10{width:8.989440pt;}
._f{width:10.198613pt;}
._11{width:11.586987pt;}
._13{width:13.176320pt;}
._12{width:14.295253pt;}
._23{width:15.438720pt;}
._17{width:16.928853pt;}
._18{width:18.058240pt;}
._1c{width:19.058133pt;}
._1e{width:20.132907pt;}
._a{width:21.162027pt;}
._9{width:22.425600pt;}
._d{width:23.613653pt;}
._b{width:24.677333pt;}
._e{width:25.784747pt;}
._1f{width:26.748587pt;}
._20{width:28.049920pt;}
._2a{width:29.156480pt;}
._1b{width:30.777813pt;}
._1a{width:31.882240pt;}
._19{width:33.229440pt;}
._28{width:34.366933pt;}
._29{width:35.517867pt;}
._15{width:39.004800pt;}
._14{width:40.642560pt;}
._16{width:41.747413pt;}
._24{width:58.261333pt;}
._22{width:71.690240pt;}
._21{width:72.853120pt;}
._27{width:74.261333pt;}
._25{width:172.197333pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:53.760000pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:85.864267pt;}
.y18{bottom:104.534933pt;}
.yc4{bottom:117.760000pt;}
.ydb{bottom:132.480000pt;}
.yf2{bottom:133.440000pt;}
.y9e{bottom:135.680000pt;}
.y6d{bottom:137.600000pt;}
.y58{bottom:139.200000pt;}
.y17{bottom:141.861600pt;}
.yc3{bottom:145.280000pt;}
.y8d{bottom:148.480000pt;}
.y3a{bottom:152.960000pt;}
.yda{bottom:160.000000pt;}
.y16{bottom:160.532267pt;}
.yf1{bottom:160.960000pt;}
.y9d{bottom:163.520000pt;}
.y6c{bottom:165.440000pt;}
.yc5{bottom:166.719867pt;}
.y57{bottom:166.720000pt;}
.yc2{bottom:173.120000pt;}
.y8c{bottom:176.000000pt;}
.y15{bottom:179.202933pt;}
.y39{bottom:180.480000pt;}
.yd9{bottom:187.520000pt;}
.yf0{bottom:188.800000pt;}
.y9c{bottom:191.040000pt;}
.y6b{bottom:192.960000pt;}
.y56{bottom:194.560000pt;}
.y14{bottom:197.873600pt;}
.yc1{bottom:200.640000pt;}
.y8b{bottom:203.520000pt;}
.y38{bottom:208.320000pt;}
.yd8{bottom:215.040000pt;}
.yef{bottom:216.320000pt;}
.y13{bottom:216.544267pt;}
.y9b{bottom:218.560000pt;}
.y6a{bottom:220.480000pt;}
.y55{bottom:222.080000pt;}
.yc0{bottom:228.160000pt;}
.y8a{bottom:231.360000pt;}
.y12{bottom:235.214933pt;}
.y37{bottom:235.840000pt;}
.yd7{bottom:242.880000pt;}
.yee{bottom:244.160000pt;}
.y9a{bottom:246.080000pt;}
.y69{bottom:248.000000pt;}
.y54{bottom:249.600000pt;}
.y11{bottom:253.885600pt;}
.ybf{bottom:255.680000pt;}
.y89{bottom:258.880000pt;}
.y36{bottom:263.360000pt;}
.yd6{bottom:270.400000pt;}
.yed{bottom:272.640000pt;}
.y99{bottom:273.920000pt;}
.y68{bottom:275.840000pt;}
.y53{bottom:277.120000pt;}
.ybe{bottom:283.200000pt;}
.y88{bottom:286.400000pt;}
.y35{bottom:290.880000pt;}
.yd5{bottom:299.200000pt;}
.yec{bottom:300.160000pt;}
.y98{bottom:301.440000pt;}
.y67{bottom:303.360000pt;}
.y52{bottom:304.960000pt;}
.ybd{bottom:311.040000pt;}
.y87{bottom:313.920000pt;}
.y34{bottom:318.720000pt;}
.yd4{bottom:326.720000pt;}
.yeb{bottom:327.680000pt;}
.y97{bottom:328.960000pt;}
.y66{bottom:330.880000pt;}
.y51{bottom:332.480000pt;}
.y86{bottom:341.760000pt;}
.ybc{bottom:344.320000pt;}
.y33{bottom:346.240000pt;}
.yd3{bottom:354.240000pt;}
.yea{bottom:355.520000pt;}
.y96{bottom:356.480000pt;}
.y65{bottom:358.400000pt;}
.ybb{bottom:359.360000pt;}
.y50{bottom:360.000000pt;}
.y85{bottom:369.280000pt;}
.y32{bottom:373.760000pt;}
.yba{bottom:374.720000pt;}
.yd2{bottom:381.760000pt;}
.ye9{bottom:383.040000pt;}
.y95{bottom:384.320000pt;}
.y64{bottom:386.240000pt;}
.y4f{bottom:387.520000pt;}
.yb9{bottom:390.080000pt;}
.y84{bottom:396.800000pt;}
.y31{bottom:401.280000pt;}
.yd1{bottom:409.600000pt;}
.ye8{bottom:410.560000pt;}
.y94{bottom:411.840000pt;}
.y63{bottom:413.760000pt;}
.y4e{bottom:415.360000pt;}
.y83{bottom:424.320000pt;}
.y30{bottom:429.120000pt;}
.yd0{bottom:437.120000pt;}
.ye7{bottom:438.400000pt;}
.y93{bottom:439.360000pt;}
.y10{bottom:439.668267pt;}
.y62{bottom:441.280000pt;}
.y4d{bottom:442.880000pt;}
.y82{bottom:452.160000pt;}
.y2f{bottom:456.640000pt;}
.yb8{bottom:460.800000pt;}
.ycf{bottom:465.920000pt;}
.yaf{bottom:466.880000pt;}
.y92{bottom:467.200000pt;}
.y73{bottom:468.800000pt;}
.y61{bottom:469.120000pt;}
.y4c{bottom:470.400000pt;}
.yf{bottom:472.119733pt;}
.yb7{bottom:476.160000pt;}
.y81{bottom:479.680000pt;}
.y2e{bottom:484.160000pt;}
.yb6{bottom:491.520000pt;}
.yce{bottom:493.440000pt;}
.yae{bottom:494.400000pt;}
.y91{bottom:495.680000pt;}
.y72{bottom:496.320000pt;}
.yf9{bottom:496.960000pt;}
.y4b{bottom:497.920000pt;}
.ye{bottom:502.786400pt;}
.yb5{bottom:506.560000pt;}
.y80{bottom:507.200000pt;}
.y2d{bottom:511.680000pt;}
.ycd{bottom:520.960000pt;}
.yb4{bottom:521.920000pt;}
.yad{bottom:522.240000pt;}
.y90{bottom:523.520000pt;}
.y71{bottom:524.160000pt;}
.yf8{bottom:524.480000pt;}
.y60{bottom:525.439867pt;}
.y4a{bottom:525.440000pt;}
.y7f{bottom:534.720000pt;}
.yb3{bottom:537.280000pt;}
.y2c{bottom:539.520000pt;}
.ycc{bottom:548.800000pt;}
.yac{bottom:549.760000pt;}
.y70{bottom:551.680000pt;}
.y8f{bottom:552.000000pt;}
.yb2{bottom:552.640000pt;}
.y5f{bottom:553.279867pt;}
.y49{bottom:553.280000pt;}
.y7e{bottom:562.240000pt;}
.y2b{bottom:567.040000pt;}
.yb1{bottom:568.000000pt;}
.yab{bottom:577.280000pt;}
.y6f{bottom:579.200000pt;}
.yf7{bottom:579.520000pt;}
.y8e{bottom:579.840000pt;}
.y5e{bottom:580.799867pt;}
.y48{bottom:580.800000pt;}
.yb0{bottom:583.360000pt;}
.y7d{bottom:590.080000pt;}
.y2a{bottom:594.560000pt;}
.yaa{bottom:604.800000pt;}
.ye6{bottom:605.120000pt;}
.y6e{bottom:607.040000pt;}
.yf6{bottom:607.360000pt;}
.y5d{bottom:608.319867pt;}
.y47{bottom:608.320000pt;}
.y7c{bottom:617.600000pt;}
.y29{bottom:622.080000pt;}
.ya9{bottom:632.640000pt;}
.ye5{bottom:633.600000pt;}
.yf5{bottom:634.880000pt;}
.y5c{bottom:635.839867pt;}
.y46{bottom:635.840000pt;}
.y28{bottom:640.640000pt;}
.y7b{bottom:645.120000pt;}
.ya8{bottom:660.160000pt;}
.ycb{bottom:661.440000pt;}
.yf4{bottom:662.400000pt;}
.y5b{bottom:663.679867pt;}
.y45{bottom:663.680000pt;}
.y27{bottom:670.400000pt;}
.y7a{bottom:672.640000pt;}
.ya7{bottom:687.680000pt;}
.yca{bottom:688.960000pt;}
.yf3{bottom:689.920000pt;}
.y5a{bottom:691.199867pt;}
.y44{bottom:691.200000pt;}
.yd{bottom:693.693333pt;}
.y79{bottom:700.480000pt;}
.y26{bottom:702.720000pt;}
.ya6{bottom:715.200000pt;}
.ye4{bottom:716.480000pt;}
.yc9{bottom:717.760000pt;}
.y59{bottom:718.719867pt;}
.y43{bottom:718.720000pt;}
.yc{bottom:723.613333pt;}
.y78{bottom:728.000000pt;}
.y25{bottom:735.040000pt;}
.ya5{bottom:743.040000pt;}
.ye3{bottom:744.320000pt;}
.yc8{bottom:745.280000pt;}
.y42{bottom:746.240000pt;}
.yb{bottom:751.293333pt;}
.y24{bottom:755.520000pt;}
.ya4{bottom:770.560000pt;}
.yc7{bottom:772.800000pt;}
.y23{bottom:774.080000pt;}
.ya{bottom:778.853333pt;}
.y77{bottom:783.040000pt;}
.y22{bottom:792.320000pt;}
.ya3{bottom:798.080000pt;}
.ye2{bottom:800.320000pt;}
.yc6{bottom:800.640000pt;}
.y41{bottom:801.600000pt;}
.y9{bottom:806.533333pt;}
.y21{bottom:810.880000pt;}
.ya2{bottom:825.600000pt;}
.ye1{bottom:828.160000pt;}
.y76{bottom:828.800000pt;}
.y20{bottom:829.120000pt;}
.y8{bottom:834.693333pt;}
.y75{bottom:843.840000pt;}
.y1f{bottom:847.680000pt;}
.ya1{bottom:853.440000pt;}
.ye0{bottom:855.680000pt;}
.y40{bottom:856.640000pt;}
.y74{bottom:859.200000pt;}
.y7{bottom:865.253333pt;}
.y1e{bottom:865.920000pt;}
.ya0{bottom:882.240000pt;}
.ydf{bottom:883.200000pt;}
.y3f{bottom:884.480000pt;}
.y6{bottom:895.973333pt;}
.y1d{bottom:896.000000pt;}
.yde{bottom:910.720000pt;}
.y9f{bottom:911.040000pt;}
.y3e{bottom:912.000000pt;}
.y5{bottom:924.933333pt;}
.y1c{bottom:928.000000pt;}
.ydd{bottom:938.560000pt;}
.y3d{bottom:939.520000pt;}
.y4{bottom:946.373333pt;}
.y1b{bottom:960.320000pt;}
.ydc{bottom:966.080000pt;}
.y3c{bottom:967.040000pt;}
.y3{bottom:967.813333pt;}
.y2{bottom:989.253333pt;}
.y1a{bottom:992.640000pt;}
.y3b{bottom:994.880000pt;}
.y1{bottom:1010.880000pt;}
.h7{height:40.734375pt;}
.h9{height:40.763021pt;}
.hf{height:47.171250pt;}
.hb{height:51.547500pt;}
.hc{height:56.156250pt;}
.he{height:56.156783pt;}
.hd{height:56.937500pt;}
.ha{height:65.141250pt;}
.h8{height:67.427708pt;}
.h2{height:75.465000pt;}
.h4{height:96.750000pt;}
.h3{height:104.844687pt;}
.h5{height:109.855798pt;}
.h6{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.333333pt;}
.w2{width:793.701333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:113.279513pt;}
.x6{left:125.102400pt;}
.xd{left:132.158403pt;}
.x11{left:137.280309pt;}
.x7{left:148.142800pt;}
.x12{left:161.279598pt;}
.x3{left:171.706667pt;}
.x10{left:184.322899pt;}
.x9{left:186.879989pt;}
.xf{left:188.799426pt;}
.xe{left:207.679650pt;}
.x5{left:284.546667pt;}
.xa{left:316.159393pt;}
.x4{left:321.346667pt;}
.xc{left:324.479931pt;}
.x2{left:337.506667pt;}
.x8{left:339.840000pt;}
.x1{left:396.893333pt;}
}




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