
    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_007ce86fb5d0e1650c9cbb5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_40003c140d197fac375c922d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_0886c6f9a0d27eb70c07b266.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_431b11068b8d819fa07a6bb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_4e425bda7fb97a003b5a62b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_01ce8cbd34e42b9a86a59126.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f8c64076a9eef67b524a81b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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_55d4602c0e825ad95c6eb398.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966797;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_c2b21eaacd7f785d665c1a70.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-4.176000px;}
.ls8{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.108720px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.208200px;}
.ls7{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.828720px;}
.ls2{letter-spacing:1.224000px;}
.ls9{letter-spacing:28.200000px;}
.lsa{letter-spacing:54.864000px;}
.lsb{letter-spacing:64.002720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsb{word-spacing:-59.760000px;}
.wsc{word-spacing:-26.829480px;}
.ws3{word-spacing:-26.621280px;}
.ws7{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.wsa{word-spacing:-20.160000px;}
.ws0{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.584000px;}
.ws1{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.616000px;}
.ws4{word-spacing:-12.131280px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-11.232000px;}
._0{margin-left:-10.152000px;}
._7{margin-left:-8.280000px;}
._1{margin-left:-6.372000px;}
._c{margin-left:-5.364000px;}
._6{margin-left:-4.032000px;}
._2{margin-left:-2.592000px;}
._4{margin-left:-1.440000px;}
._5{width:1.404000px;}
._d{width:2.472000px;}
._f{width:4.032000px;}
._e{width:5.040000px;}
._b{width:6.048000px;}
._19{width:7.128000px;}
._a{width:8.136000px;}
._9{width:9.408000px;}
._11{width:10.440000px;}
._10{width:11.664000px;}
._12{width:13.248000px;}
._18{width:14.292000px;}
._17{width:16.236000px;}
._15{width:17.640000px;}
._16{width:18.720000px;}
._20{width:21.830400px;}
._1f{width:23.040000px;}
._1e{width:24.192000px;}
._1c{width:25.716000px;}
._8{width:27.432000px;}
._1d{width:28.824000px;}
._1b{width:30.864000px;}
._1a{width:31.968000px;}
._14{width:33.216000px;}
._13{width:34.536000px;}
._22{width:41.040000px;}
._21{width:42.192000px;}
._23{width:44.904000px;}
._24{width:64.728000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:89.136000px;}
.y45{bottom:93.636000px;}
.y23{bottom:94.356000px;}
.y65{bottom:100.656000px;}
.y22{bottom:107.316000px;}
.y92{bottom:112.356000px;}
.yc9{bottom:112.536000px;}
.y71{bottom:115.776000px;}
.y44{bottom:124.776000px;}
.y21{bottom:125.676000px;}
.yc8{bottom:130.896000px;}
.y64{bottom:131.796000px;}
.ya8{bottom:137.196000px;}
.ye1{bottom:140.976000px;}
.y91{bottom:143.316000px;}
.y20{bottom:144.036000px;}
.yc7{bottom:144.936000px;}
.y70{bottom:146.916000px;}
.y1f{bottom:149.256000px;}
.y43{bottom:155.730000px;}
.y1e{bottom:162.390000px;}
.y63{bottom:162.750000px;}
.y1d{bottom:167.610000px;}
.ya7{bottom:168.150000px;}
.y90{bottom:174.450000px;}
.y6f{bottom:177.870000px;}
.y1c{bottom:181.470000px;}
.ye0{bottom:183.990000px;}
.y42{bottom:186.870000px;}
.ya6{bottom:199.290000px;}
.y62{bottom:204.690000px;}
.y8f{bottom:205.410000px;}
.y6e{bottom:209.010000px;}
.yc6{bottom:209.370000px;}
.ydf{bottom:214.950000px;}
.y41{bottom:217.830000px;}
.ya5{bottom:230.250000px;}
.y8e{bottom:237.630000px;}
.yc5{bottom:240.330000px;}
.y6d{bottom:241.230000px;}
.yde{bottom:246.090000px;}
.y40{bottom:248.970000px;}
.y61{bottom:253.290000px;}
.y8d{bottom:268.770000px;}
.yc4{bottom:271.470000px;}
.ya4{bottom:273.270000px;}
.ydd{bottom:277.050000px;}
.y3f{bottom:279.930000px;}
.y6c{bottom:284.250000px;}
.y60{bottom:296.310000px;}
.y8c{bottom:299.730000px;}
.yc3{bottom:302.430000px;}
.ydc{bottom:308.190000px;}
.y1b{bottom:310.710000px;}
.ya3{bottom:316.290000px;}
.y3e{bottom:322.950000px;}
.y5f{bottom:327.270000px;}
.y8b{bottom:330.870000px;}
.yc2{bottom:333.570000px;}
.ydb{bottom:339.195000px;}
.y1a{bottom:341.715000px;}
.y3d{bottom:354.135000px;}
.y5e{bottom:358.455000px;}
.ya2{bottom:359.535000px;}
.y8a{bottom:363.135000px;}
.yc0{bottom:365.835000px;}
.yda{bottom:370.335000px;}
.y6b{bottom:370.515000px;}
.yc1{bottom:371.775000px;}
.y19{bottom:372.855000px;}
.y3c{bottom:385.095000px;}
.y5d{bottom:389.415000px;}
.y89{bottom:394.275000px;}
.ybf{bottom:396.975000px;}
.y6a{bottom:401.475000px;}
.ya1{bottom:402.555000px;}
.y18{bottom:403.815000px;}
.yd9{bottom:413.355000px;}
.y3b{bottom:416.235000px;}
.y5c{bottom:420.555000px;}
.y88{bottom:425.235000px;}
.ybe{bottom:427.935000px;}
.y69{bottom:432.615000px;}
.y17{bottom:434.955000px;}
.ya0{bottom:445.575000px;}
.y3a{bottom:447.195000px;}
.y5b{bottom:451.515000px;}
.y87{bottom:456.195000px;}
.yd8{bottom:456.375000px;}
.ybd{bottom:460.155000px;}
.y68{bottom:463.575000px;}
.y16{bottom:465.915000px;}
.y39{bottom:478.335000px;}
.yd7{bottom:487.515000px;}
.y86{bottom:488.595000px;}
.ybc{bottom:491.295000px;}
.y5a{bottom:494.715000px;}
.y15{bottom:497.055000px;}
.yd6{bottom:518.475000px;}
.y38{bottom:521.355000px;}
.yba{bottom:523.515000px;}
.y59{bottom:525.675000px;}
.y14{bottom:528.015000px;}
.ybb{bottom:529.455000px;}
.y85{bottom:531.615000px;}
.y37{bottom:552.315000px;}
.yb9{bottom:554.655000px;}
.y58{bottom:556.815000px;}
.y12{bottom:559.155000px;}
.yd5{bottom:561.495000px;}
.y13{bottom:565.095000px;}
.y84{bottom:574.635000px;}
.y36{bottom:583.455000px;}
.yb8{bottom:585.615000px;}
.y57{bottom:587.775000px;}
.y11{bottom:590.115000px;}
.yd4{bottom:604.545000px;}
.y83{bottom:605.805000px;}
.y35{bottom:614.445000px;}
.y9f{bottom:617.685000px;}
.yb7{bottom:617.865000px;}
.y56{bottom:618.765000px;}
.ye4{bottom:626.505000px;}
.y10{bottom:632.085000px;}
.yd3{bottom:635.685000px;}
.y82{bottom:636.765000px;}
.y34{bottom:645.585000px;}
.yb6{bottom:648.825000px;}
.y67{bottom:649.905000px;}
.ye3{bottom:657.465000px;}
.y9e{bottom:660.885000px;}
.y55{bottom:661.965000px;}
.yd2{bottom:666.645000px;}
.y81{bottom:668.985000px;}
.yf{bottom:675.105000px;}
.y33{bottom:676.545000px;}
.yb4{bottom:681.225000px;}
.yb5{bottom:687.165000px;}
.ye2{bottom:688.605000px;}
.y54{bottom:692.925000px;}
.y9d{bottom:693.285000px;}
.y80{bottom:700.125000px;}
.yd1{bottom:709.665000px;}
.yb3{bottom:712.185000px;}
.ye{bottom:712.545000px;}
.y32{bottom:719.565000px;}
.y53{bottom:724.065000px;}
.y7f{bottom:731.085000px;}
.y9c{bottom:741.885000px;}
.yb2{bottom:743.325000px;}
.yd{bottom:745.485000px;}
.y31{bottom:750.705000px;}
.yd0{bottom:752.865000px;}
.y52{bottom:755.025000px;}
.y7e{bottom:762.225000px;}
.yb1{bottom:775.545000px;}
.yc{bottom:778.425000px;}
.y30{bottom:781.665000px;}
.ycf{bottom:783.825000px;}
.y9b{bottom:784.905000px;}
.y51{bottom:786.165000px;}
.y7d{bottom:794.445000px;}
.yb0{bottom:806.685000px;}
.yb{bottom:811.365000px;}
.y2f{bottom:812.805000px;}
.yce{bottom:814.965000px;}
.y9a{bottom:815.865000px;}
.y50{bottom:817.125000px;}
.y7c{bottom:825.585000px;}
.yaf{bottom:837.645000px;}
.y2e{bottom:843.765000px;}
.ya{bottom:844.305000px;}
.y99{bottom:847.005000px;}
.y4f{bottom:848.265000px;}
.y7b{bottom:856.545000px;}
.ycd{bottom:857.985000px;}
.yae{bottom:869.865000px;}
.y2d{bottom:874.950000px;}
.y9{bottom:877.290000px;}
.y98{bottom:878.010000px;}
.y4e{bottom:879.270000px;}
.y7a{bottom:887.550000px;}
.yad{bottom:901.050000px;}
.y2c{bottom:905.910000px;}
.y97{bottom:909.150000px;}
.y8{bottom:910.230000px;}
.y4d{bottom:910.410000px;}
.y79{bottom:919.950000px;}
.ycc{bottom:932.010000px;}
.y2b{bottom:937.050000px;}
.y96{bottom:940.110000px;}
.y66{bottom:941.370000px;}
.y7{bottom:943.170000px;}
.yac{bottom:944.070000px;}
.y78{bottom:950.910000px;}
.y4c{bottom:953.430000px;}
.y2a{bottom:968.010000px;}
.y6{bottom:969.270000px;}
.y95{bottom:971.250000px;}
.yab{bottom:975.030000px;}
.y77{bottom:981.870000px;}
.y4b{bottom:984.390000px;}
.y29{bottom:999.150000px;}
.y94{bottom:1002.210000px;}
.y76{bottom:1014.270000px;}
.y4a{bottom:1015.530000px;}
.yaa{bottom:1016.970000px;}
.y5{bottom:1018.230000px;}
.y28{bottom:1030.110000px;}
.y93{bottom:1033.350000px;}
.y75{bottom:1045.230000px;}
.y49{bottom:1046.490000px;}
.ycb{bottom:1049.190000px;}
.y3{bottom:1055.670000px;}
.y27{bottom:1061.250000px;}
.y4{bottom:1061.610000px;}
.ya9{bottom:1065.570000px;}
.y74{bottom:1076.370000px;}
.y48{bottom:1077.630000px;}
.yca{bottom:1090.950000px;}
.y26{bottom:1092.210000px;}
.y2{bottom:1095.270000px;}
.y73{bottom:1107.330000px;}
.y47{bottom:1108.590000px;}
.y1{bottom:1131.270000px;}
.y25{bottom:1134.150000px;}
.y72{bottom:1138.500000px;}
.y46{bottom:1139.760000px;}
.h9{height:31.201172px;}
.h4{height:36.193359px;}
.hc{height:36.274219px;}
.h8{height:43.269961px;}
.ha{height:51.793945px;}
.hb{height:54.140625px;}
.h3{height:62.402344px;}
.h6{height:64.582031px;}
.h5{height:80.937773px;}
.h7{height:85.894102px;}
.h2{height:96.873047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:106.235987px;}
.xd{left:111.095987px;}
.x1{left:124.415987px;}
.xe{left:133.235987px;}
.xf{left:159.329987px;}
.x2{left:173.549987px;}
.x10{left:186.329987px;}
.x3{left:191.729987px;}
.x17{left:214.229987px;}
.x15{left:319.214973px;}
.x8{left:320.294973px;}
.xc{left:322.274987px;}
.x16{left:325.874987px;}
.x9{left:326.954987px;}
.x13{left:404.354973px;}
.x14{left:411.014987px;}
.x6{left:446.474987px;}
.x11{left:499.784973px;}
.x12{left:506.444987px;}
.xa{left:653.144973px;}
.xb{left:659.849987px;}
.x4{left:695.489973px;}
.x5{left:701.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-3.712000pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.096640pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.185067pt;}
.ls7{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.736640pt;}
.ls2{letter-spacing:1.088000pt;}
.ls9{letter-spacing:25.066667pt;}
.lsa{letter-spacing:48.768000pt;}
.lsb{letter-spacing:56.891307pt;}
.lsf{letter-spacing:56.912640pt;}
.ws9{word-spacing:-64.000000pt;}
.wsb{word-spacing:-53.120000pt;}
.wsc{word-spacing:-23.848427pt;}
.ws3{word-spacing:-23.663360pt;}
.ws7{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.408000pt;}
.ws1{word-spacing:-13.248000pt;}
.ws2{word-spacing:-12.992000pt;}
.ws4{word-spacing:-10.783360pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-9.984000pt;}
._0{margin-left:-9.024000pt;}
._7{margin-left:-7.360000pt;}
._1{margin-left:-5.664000pt;}
._c{margin-left:-4.768000pt;}
._6{margin-left:-3.584000pt;}
._2{margin-left:-2.304000pt;}
._4{margin-left:-1.280000pt;}
._5{width:1.248000pt;}
._d{width:2.197333pt;}
._f{width:3.584000pt;}
._e{width:4.480000pt;}
._b{width:5.376000pt;}
._19{width:6.336000pt;}
._a{width:7.232000pt;}
._9{width:8.362667pt;}
._11{width:9.280000pt;}
._10{width:10.368000pt;}
._12{width:11.776000pt;}
._18{width:12.704000pt;}
._17{width:14.432000pt;}
._15{width:15.680000pt;}
._16{width:16.640000pt;}
._20{width:19.404800pt;}
._1f{width:20.480000pt;}
._1e{width:21.504000pt;}
._1c{width:22.858667pt;}
._8{width:24.384000pt;}
._1d{width:25.621333pt;}
._1b{width:27.434667pt;}
._1a{width:28.416000pt;}
._14{width:29.525333pt;}
._13{width:30.698667pt;}
._22{width:36.480000pt;}
._21{width:37.504000pt;}
._23{width:39.914667pt;}
._24{width:57.536000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:79.232000pt;}
.y45{bottom:83.232000pt;}
.y23{bottom:83.872000pt;}
.y65{bottom:89.472000pt;}
.y22{bottom:95.392000pt;}
.y92{bottom:99.872000pt;}
.yc9{bottom:100.032000pt;}
.y71{bottom:102.912000pt;}
.y44{bottom:110.912000pt;}
.y21{bottom:111.712000pt;}
.yc8{bottom:116.352000pt;}
.y64{bottom:117.152000pt;}
.ya8{bottom:121.952000pt;}
.ye1{bottom:125.312000pt;}
.y91{bottom:127.392000pt;}
.y20{bottom:128.032000pt;}
.yc7{bottom:128.832000pt;}
.y70{bottom:130.592000pt;}
.y1f{bottom:132.672000pt;}
.y43{bottom:138.426667pt;}
.y1e{bottom:144.346667pt;}
.y63{bottom:144.666667pt;}
.y1d{bottom:148.986667pt;}
.ya7{bottom:149.466667pt;}
.y90{bottom:155.066667pt;}
.y6f{bottom:158.106667pt;}
.y1c{bottom:161.306667pt;}
.ye0{bottom:163.546667pt;}
.y42{bottom:166.106667pt;}
.ya6{bottom:177.146667pt;}
.y62{bottom:181.946667pt;}
.y8f{bottom:182.586667pt;}
.y6e{bottom:185.786667pt;}
.yc6{bottom:186.106667pt;}
.ydf{bottom:191.066667pt;}
.y41{bottom:193.626667pt;}
.ya5{bottom:204.666667pt;}
.y8e{bottom:211.226667pt;}
.yc5{bottom:213.626667pt;}
.y6d{bottom:214.426667pt;}
.yde{bottom:218.746667pt;}
.y40{bottom:221.306667pt;}
.y61{bottom:225.146667pt;}
.y8d{bottom:238.906667pt;}
.yc4{bottom:241.306667pt;}
.ya4{bottom:242.906667pt;}
.ydd{bottom:246.266667pt;}
.y3f{bottom:248.826667pt;}
.y6c{bottom:252.666667pt;}
.y60{bottom:263.386667pt;}
.y8c{bottom:266.426667pt;}
.yc3{bottom:268.826667pt;}
.ydc{bottom:273.946667pt;}
.y1b{bottom:276.186667pt;}
.ya3{bottom:281.146667pt;}
.y3e{bottom:287.066667pt;}
.y5f{bottom:290.906667pt;}
.y8b{bottom:294.106667pt;}
.yc2{bottom:296.506667pt;}
.ydb{bottom:301.506667pt;}
.y1a{bottom:303.746667pt;}
.y3d{bottom:314.786667pt;}
.y5e{bottom:318.626667pt;}
.ya2{bottom:319.586667pt;}
.y8a{bottom:322.786667pt;}
.yc0{bottom:325.186667pt;}
.yda{bottom:329.186667pt;}
.y6b{bottom:329.346667pt;}
.yc1{bottom:330.466667pt;}
.y19{bottom:331.426667pt;}
.y3c{bottom:342.306667pt;}
.y5d{bottom:346.146667pt;}
.y89{bottom:350.466667pt;}
.ybf{bottom:352.866667pt;}
.y6a{bottom:356.866667pt;}
.ya1{bottom:357.826667pt;}
.y18{bottom:358.946667pt;}
.yd9{bottom:367.426667pt;}
.y3b{bottom:369.986667pt;}
.y5c{bottom:373.826667pt;}
.y88{bottom:377.986667pt;}
.ybe{bottom:380.386667pt;}
.y69{bottom:384.546667pt;}
.y17{bottom:386.626667pt;}
.ya0{bottom:396.066667pt;}
.y3a{bottom:397.506667pt;}
.y5b{bottom:401.346667pt;}
.y87{bottom:405.506667pt;}
.yd8{bottom:405.666667pt;}
.ybd{bottom:409.026667pt;}
.y68{bottom:412.066667pt;}
.y16{bottom:414.146667pt;}
.y39{bottom:425.186667pt;}
.yd7{bottom:433.346667pt;}
.y86{bottom:434.306667pt;}
.ybc{bottom:436.706667pt;}
.y5a{bottom:439.746667pt;}
.y15{bottom:441.826667pt;}
.yd6{bottom:460.866667pt;}
.y38{bottom:463.426667pt;}
.yba{bottom:465.346667pt;}
.y59{bottom:467.266667pt;}
.y14{bottom:469.346667pt;}
.ybb{bottom:470.626667pt;}
.y85{bottom:472.546667pt;}
.y37{bottom:490.946667pt;}
.yb9{bottom:493.026667pt;}
.y58{bottom:494.946667pt;}
.y12{bottom:497.026667pt;}
.yd5{bottom:499.106667pt;}
.y13{bottom:502.306667pt;}
.y84{bottom:510.786667pt;}
.y36{bottom:518.626667pt;}
.yb8{bottom:520.546667pt;}
.y57{bottom:522.466667pt;}
.y11{bottom:524.546667pt;}
.yd4{bottom:537.373333pt;}
.y83{bottom:538.493333pt;}
.y35{bottom:546.173333pt;}
.y9f{bottom:549.053333pt;}
.yb7{bottom:549.213333pt;}
.y56{bottom:550.013333pt;}
.ye4{bottom:556.893333pt;}
.y10{bottom:561.853333pt;}
.yd3{bottom:565.053333pt;}
.y82{bottom:566.013333pt;}
.y34{bottom:573.853333pt;}
.yb6{bottom:576.733333pt;}
.y67{bottom:577.693333pt;}
.ye3{bottom:584.413333pt;}
.y9e{bottom:587.453333pt;}
.y55{bottom:588.413333pt;}
.yd2{bottom:592.573333pt;}
.y81{bottom:594.653333pt;}
.yf{bottom:600.093333pt;}
.y33{bottom:601.373333pt;}
.yb4{bottom:605.533333pt;}
.yb5{bottom:610.813333pt;}
.ye2{bottom:612.093333pt;}
.y54{bottom:615.933333pt;}
.y9d{bottom:616.253333pt;}
.y80{bottom:622.333333pt;}
.yd1{bottom:630.813333pt;}
.yb3{bottom:633.053333pt;}
.ye{bottom:633.373333pt;}
.y32{bottom:639.613333pt;}
.y53{bottom:643.613333pt;}
.y7f{bottom:649.853333pt;}
.y9c{bottom:659.453333pt;}
.yb2{bottom:660.733333pt;}
.yd{bottom:662.653333pt;}
.y31{bottom:667.293333pt;}
.yd0{bottom:669.213333pt;}
.y52{bottom:671.133333pt;}
.y7e{bottom:677.533333pt;}
.yb1{bottom:689.373333pt;}
.yc{bottom:691.933333pt;}
.y30{bottom:694.813333pt;}
.ycf{bottom:696.733333pt;}
.y9b{bottom:697.693333pt;}
.y51{bottom:698.813333pt;}
.y7d{bottom:706.173333pt;}
.yb0{bottom:717.053333pt;}
.yb{bottom:721.213333pt;}
.y2f{bottom:722.493333pt;}
.yce{bottom:724.413333pt;}
.y9a{bottom:725.213333pt;}
.y50{bottom:726.333333pt;}
.y7c{bottom:733.853333pt;}
.yaf{bottom:744.573333pt;}
.y2e{bottom:750.013333pt;}
.ya{bottom:750.493333pt;}
.y99{bottom:752.893333pt;}
.y4f{bottom:754.013333pt;}
.y7b{bottom:761.373333pt;}
.ycd{bottom:762.653333pt;}
.yae{bottom:773.213333pt;}
.y2d{bottom:777.733333pt;}
.y9{bottom:779.813333pt;}
.y98{bottom:780.453333pt;}
.y4e{bottom:781.573333pt;}
.y7a{bottom:788.933333pt;}
.yad{bottom:800.933333pt;}
.y2c{bottom:805.253333pt;}
.y97{bottom:808.133333pt;}
.y8{bottom:809.093333pt;}
.y4d{bottom:809.253333pt;}
.y79{bottom:817.733333pt;}
.ycc{bottom:828.453333pt;}
.y2b{bottom:832.933333pt;}
.y96{bottom:835.653333pt;}
.y66{bottom:836.773333pt;}
.y7{bottom:838.373333pt;}
.yac{bottom:839.173333pt;}
.y78{bottom:845.253333pt;}
.y4c{bottom:847.493333pt;}
.y2a{bottom:860.453333pt;}
.y6{bottom:861.573333pt;}
.y95{bottom:863.333333pt;}
.yab{bottom:866.693333pt;}
.y77{bottom:872.773333pt;}
.y4b{bottom:875.013333pt;}
.y29{bottom:888.133333pt;}
.y94{bottom:890.853333pt;}
.y76{bottom:901.573333pt;}
.y4a{bottom:902.693333pt;}
.yaa{bottom:903.973333pt;}
.y5{bottom:905.093333pt;}
.y28{bottom:915.653333pt;}
.y93{bottom:918.533333pt;}
.y75{bottom:929.093333pt;}
.y49{bottom:930.213333pt;}
.ycb{bottom:932.613333pt;}
.y3{bottom:938.373333pt;}
.y27{bottom:943.333333pt;}
.y4{bottom:943.653333pt;}
.ya9{bottom:947.173333pt;}
.y74{bottom:956.773333pt;}
.y48{bottom:957.893333pt;}
.yca{bottom:969.733333pt;}
.y26{bottom:970.853333pt;}
.y2{bottom:973.573333pt;}
.y73{bottom:984.293333pt;}
.y47{bottom:985.413333pt;}
.y1{bottom:1005.573333pt;}
.y25{bottom:1008.133333pt;}
.y72{bottom:1012.000000pt;}
.y46{bottom:1013.120000pt;}
.h9{height:27.734375pt;}
.h4{height:32.171875pt;}
.hc{height:32.243750pt;}
.h8{height:38.462187pt;}
.ha{height:46.039063pt;}
.hb{height:48.125000pt;}
.h3{height:55.468750pt;}
.h6{height:57.406250pt;}
.h5{height:71.944688pt;}
.h7{height:76.350312pt;}
.h2{height:86.109375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:94.431988pt;}
.xd{left:98.751988pt;}
.x1{left:110.591988pt;}
.xe{left:118.431988pt;}
.xf{left:141.626655pt;}
.x2{left:154.266655pt;}
.x10{left:165.626655pt;}
.x3{left:170.426655pt;}
.x17{left:190.426655pt;}
.x15{left:283.746643pt;}
.x8{left:284.706643pt;}
.xc{left:286.466655pt;}
.x16{left:289.666655pt;}
.x9{left:290.626655pt;}
.x13{left:359.426643pt;}
.x14{left:365.346655pt;}
.x6{left:396.866655pt;}
.x11{left:444.253310pt;}
.x12{left:450.173322pt;}
.xa{left:580.573310pt;}
.xb{left:586.533322pt;}
.x4{left:618.213310pt;}
.x5{left:623.173322pt;}
}




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