
    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_edcf776f7d48219df34d6c9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_597fd030fcd787ac526e0d8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e74640ebb1c1f1b9c770af96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_21e520b3eabad3223e761927.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_fd8c4e7bb1f9e27a273c295c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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;}
.ls9{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.774000px;}
.lsc{letter-spacing:4.500000px;}
.lsb{letter-spacing:11.466720px;}
.ls6{letter-spacing:41.682720px;}
.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:-15.714000px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.093600px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-4.507920px;}
._6{margin-left:-3.024000px;}
._1{margin-left:-1.180080px;}
._0{width:1.261200px;}
._9{width:2.273040px;}
._2{width:3.394560px;}
._5{width:4.500000px;}
._10{width:5.788080px;}
._f{width:7.356720px;}
._b{width:8.778480px;}
._a{width:9.979920px;}
._8{width:11.772720px;}
._e{width:13.774320px;}
._11{width:15.948000px;}
._c{width:17.270640px;}
._d{width:20.366160px;}
._13{width:22.080960px;}
._12{width:23.186880px;}
._1d{width:25.391760px;}
._20{width:26.593200px;}
._16{width:28.266480px;}
._22{width:29.581200px;}
._19{width:31.852080px;}
._1c{width:33.943680px;}
._28{width:37.362480px;}
._2f{width:42.728400px;}
._1f{width:43.738080px;}
._29{width:46.068720px;}
._27{width:52.463040px;}
._1a{width:57.482880px;}
._14{width:64.062720px;}
._23{width:65.490720px;}
._2b{width:68.359200px;}
._2a{width:69.441120px;}
._24{width:75.649920px;}
._2c{width:76.690080px;}
._1e{width:77.747760px;}
._25{width:84.620160px;}
._17{width:92.568240px;}
._1b{width:96.631920px;}
._21{width:99.264480px;}
._30{width:132.308640px;}
._15{width:134.154960px;}
._4{width:136.056000px;}
._26{width:143.118960px;}
._18{width:200.016720px;}
._2d{width:212.619840px;}
._2e{width:230.494320px;}
._3{width:636.906000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.240000px;}
.y98{bottom:20.340000px;}
.y9d{bottom:20.520000px;}
.ya1{bottom:20.565000px;}
.yc{bottom:36.720000px;}
.ya4{bottom:37.620000px;}
.ya0{bottom:37.665000px;}
.y9c{bottom:37.800000px;}
.y9f{bottom:54.945000px;}
.y9b{bottom:55.080000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y95{bottom:119.376000px;}
.ye0{bottom:121.896000px;}
.y41{bottom:123.696000px;}
.y96{bottom:124.236000px;}
.ye8{bottom:130.536000px;}
.yc4{bottom:136.116000px;}
.y94{bottom:136.656000px;}
.ydf{bottom:139.176000px;}
.y40{bottom:140.976000px;}
.y76{bottom:141.516000px;}
.ye7{bottom:149.076000px;}
.yc3{bottom:153.390000px;}
.y93{bottom:153.930000px;}
.yde{bottom:156.450000px;}
.y3f{bottom:158.070000px;}
.y75{bottom:158.610000px;}
.ye6{bottom:167.790000px;}
.yc2{bottom:170.670000px;}
.y92{bottom:171.210000px;}
.ydd{bottom:173.730000px;}
.y3e{bottom:175.350000px;}
.y74{bottom:175.890000px;}
.ye5{bottom:186.330000px;}
.yc1{bottom:187.950000px;}
.y91{bottom:188.490000px;}
.ydc{bottom:190.830000px;}
.y3d{bottom:192.630000px;}
.y73{bottom:193.170000px;}
.ye4{bottom:204.870000px;}
.yc0{bottom:205.230000px;}
.y90{bottom:205.590000px;}
.ydb{bottom:208.110000px;}
.y3c{bottom:209.910000px;}
.y72{bottom:210.450000px;}
.ybf{bottom:222.510000px;}
.y8f{bottom:222.870000px;}
.ye3{bottom:223.590000px;}
.yda{bottom:225.390000px;}
.y3b{bottom:227.190000px;}
.y71{bottom:227.730000px;}
.ybe{bottom:239.610000px;}
.y8e{bottom:240.150000px;}
.ye2{bottom:242.130000px;}
.yd9{bottom:242.670000px;}
.y3a{bottom:244.470000px;}
.y70{bottom:245.010000px;}
.ybd{bottom:256.890000px;}
.y8d{bottom:257.430000px;}
.yd8{bottom:259.950000px;}
.ye1{bottom:260.850000px;}
.y39{bottom:261.570000px;}
.y6f{bottom:262.110000px;}
.ybc{bottom:274.170000px;}
.y8c{bottom:274.710000px;}
.yd7{bottom:277.050000px;}
.y38{bottom:278.850000px;}
.y6e{bottom:279.390000px;}
.ybb{bottom:291.450000px;}
.y8b{bottom:291.990000px;}
.yd6{bottom:294.330000px;}
.y37{bottom:296.130000px;}
.y6d{bottom:296.670000px;}
.yba{bottom:308.730000px;}
.y8a{bottom:309.090000px;}
.yd5{bottom:311.610000px;}
.y36{bottom:313.410000px;}
.y6c{bottom:313.950000px;}
.yb9{bottom:325.830000px;}
.y89{bottom:326.370000px;}
.yd4{bottom:328.890000px;}
.y35{bottom:330.690000px;}
.y6b{bottom:331.230000px;}
.yb8{bottom:343.155000px;}
.y88{bottom:343.695000px;}
.yd3{bottom:346.215000px;}
.y34{bottom:348.015000px;}
.y6a{bottom:348.375000px;}
.yb7{bottom:360.435000px;}
.y87{bottom:360.975000px;}
.yd2{bottom:363.495000px;}
.y33{bottom:365.115000px;}
.y69{bottom:365.655000px;}
.yb6{bottom:377.715000px;}
.y86{bottom:378.255000px;}
.yd1{bottom:380.595000px;}
.y32{bottom:382.395000px;}
.y68{bottom:382.935000px;}
.yb5{bottom:394.995000px;}
.y85{bottom:395.535000px;}
.yd0{bottom:397.875000px;}
.y31{bottom:399.675000px;}
.y67{bottom:400.215000px;}
.yb4{bottom:412.275000px;}
.y84{bottom:412.635000px;}
.ycf{bottom:415.155000px;}
.y30{bottom:416.955000px;}
.y66{bottom:417.495000px;}
.yb3{bottom:429.375000px;}
.y83{bottom:429.915000px;}
.yce{bottom:432.435000px;}
.y2f{bottom:434.235000px;}
.y65{bottom:434.775000px;}
.yb2{bottom:446.655000px;}
.y82{bottom:447.195000px;}
.ycd{bottom:449.715000px;}
.y2e{bottom:451.515000px;}
.y64{bottom:451.875000px;}
.yb1{bottom:463.935000px;}
.y81{bottom:464.475000px;}
.ycc{bottom:466.995000px;}
.y2d{bottom:468.615000px;}
.y63{bottom:469.155000px;}
.yb0{bottom:481.215000px;}
.y80{bottom:481.755000px;}
.ycb{bottom:484.095000px;}
.y2c{bottom:485.895000px;}
.y62{bottom:486.435000px;}
.yaf{bottom:498.495000px;}
.y7f{bottom:498.855000px;}
.yca{bottom:501.375000px;}
.y2b{bottom:503.175000px;}
.y61{bottom:503.715000px;}
.yae{bottom:515.775000px;}
.y7e{bottom:516.135000px;}
.yc9{bottom:518.655000px;}
.y2a{bottom:520.455000px;}
.y60{bottom:520.995000px;}
.yad{bottom:532.875000px;}
.y7d{bottom:533.415000px;}
.yc8{bottom:535.935000px;}
.y29{bottom:537.735000px;}
.y5f{bottom:538.275000px;}
.yac{bottom:550.155000px;}
.y7c{bottom:550.695000px;}
.yc7{bottom:553.215000px;}
.y28{bottom:554.835000px;}
.y5e{bottom:555.375000px;}
.yab{bottom:567.435000px;}
.y7b{bottom:567.975000px;}
.yc6{bottom:570.315000px;}
.y27{bottom:572.115000px;}
.y5d{bottom:572.655000px;}
.yc5{bottom:584.355000px;}
.yaa{bottom:584.715000px;}
.y7a{bottom:585.255000px;}
.y26{bottom:589.395000px;}
.y5c{bottom:589.935000px;}
.ya9{bottom:601.995000px;}
.y79{bottom:602.355000px;}
.y25{bottom:606.705000px;}
.y5b{bottom:607.245000px;}
.ya8{bottom:619.305000px;}
.y78{bottom:619.665000px;}
.y24{bottom:623.985000px;}
.y5a{bottom:624.525000px;}
.yfd{bottom:628.845000px;}
.y77{bottom:633.705000px;}
.ya7{bottom:636.405000px;}
.y23{bottom:641.265000px;}
.y59{bottom:641.805000px;}
.yfc{bottom:647.565000px;}
.ya6{bottom:653.685000px;}
.y22{bottom:658.365000px;}
.y58{bottom:658.905000px;}
.yfb{bottom:666.105000px;}
.ya5{bottom:668.445000px;}
.y21{bottom:675.645000px;}
.y57{bottom:676.185000px;}
.yfa{bottom:684.645000px;}
.y20{bottom:692.925000px;}
.y56{bottom:693.465000px;}
.yf9{bottom:703.365000px;}
.y1f{bottom:710.205000px;}
.y55{bottom:710.745000px;}
.yf8{bottom:721.905000px;}
.y1e{bottom:727.485000px;}
.y54{bottom:728.025000px;}
.ya3{bottom:738.285000px;}
.yf7{bottom:740.625000px;}
.y1d{bottom:744.765000px;}
.y53{bottom:745.125000px;}
.yf6{bottom:759.165000px;}
.y1c{bottom:761.865000px;}
.y52{bottom:762.405000px;}
.yf5{bottom:777.885000px;}
.y1b{bottom:779.145000px;}
.y51{bottom:779.685000px;}
.ya2{bottom:790.665000px;}
.y1a{bottom:796.425000px;}
.y50{bottom:796.965000px;}
.y19{bottom:813.705000px;}
.y4f{bottom:814.245000px;}
.yf4{bottom:814.965000px;}
.y18{bottom:830.985000px;}
.y4e{bottom:831.525000px;}
.yf3{bottom:833.685000px;}
.y17{bottom:848.085000px;}
.y4d{bottom:848.625000px;}
.yf2{bottom:852.225000px;}
.y9e{bottom:860.505000px;}
.y16{bottom:865.365000px;}
.y4c{bottom:865.905000px;}
.yf1{bottom:870.990000px;}
.y15{bottom:882.690000px;}
.y4b{bottom:883.230000px;}
.yf0{bottom:889.530000px;}
.y14{bottom:899.970000px;}
.y4a{bottom:900.510000px;}
.yef{bottom:908.070000px;}
.y49{bottom:917.790000px;}
.y13{bottom:919.410000px;}
.yee{bottom:926.790000px;}
.y9a{bottom:930.210000px;}
.y48{bottom:935.070000px;}
.y12{bottom:937.230000px;}
.yed{bottom:945.330000px;}
.y47{bottom:952.170000px;}
.y11{bottom:956.130000px;}
.yec{bottom:964.050000px;}
.y46{bottom:969.450000px;}
.y10{bottom:975.030000px;}
.yeb{bottom:982.590000px;}
.y45{bottom:986.730000px;}
.yf{bottom:994.290000px;}
.y97{bottom:1000.050000px;}
.yea{bottom:1001.130000px;}
.y44{bottom:1004.010000px;}
.ye{bottom:1014.990000px;}
.ye9{bottom:1019.850000px;}
.y43{bottom:1021.290000px;}
.yd{bottom:1035.690000px;}
.y42{bottom:1038.390000px;}
.y9{bottom:1055.490000px;}
.y8{bottom:1070.970000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hb{height:34.380000px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h9{height:46.736719px;}
.h6{height:48.410156px;}
.h4{height:50.800781px;}
.he{height:51.660000px;}
.h2{height:53.573906px;}
.h3{height:59.383125px;}
.h8{height:64.546875px;}
.h7{height:65.884219px;}
.hf{height:68.940000px;}
.hd{height:68.976000px;}
.hc{height:69.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:77.760000px;}
.w4{width:159.870000px;}
.w5{width:210.810000px;}
.w6{width:225.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x8{left:134.495987px;}
.x5{left:157.169987px;}
.x1d{left:162.029987px;}
.x10{left:177.149987px;}
.x9{left:180.929987px;}
.x14{left:187.230000px;}
.x18{left:196.049987px;}
.xe{left:204.689987px;}
.x11{left:211.529987px;}
.x17{left:287.174987px;}
.x12{left:295.274987px;}
.x1a{left:315.254987px;}
.xb{left:344.414987px;}
.x15{left:347.835000px;}
.x1b{left:367.634987px;}
.xd{left:378.974987px;}
.xa{left:382.034987px;}
.x1c{left:384.374987px;}
.x7{left:396.434987px;}
.xc{left:402.554987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
.x16{left:559.365000px;}
.xf{left:736.889987px;}
.x19{left:810.149987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.688000pt;}
.lsc{letter-spacing:4.000000pt;}
.lsb{letter-spacing:10.192640pt;}
.ls6{letter-spacing:37.051307pt;}
.ws6{word-spacing:-13.968000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-4.007040pt;}
._6{margin-left:-2.688000pt;}
._1{margin-left:-1.048960pt;}
._0{width:1.121067pt;}
._9{width:2.020480pt;}
._2{width:3.017387pt;}
._5{width:4.000000pt;}
._10{width:5.144960pt;}
._f{width:6.539307pt;}
._b{width:7.803093pt;}
._a{width:8.871040pt;}
._8{width:10.464640pt;}
._e{width:12.243840pt;}
._11{width:14.176000pt;}
._c{width:15.351680pt;}
._d{width:18.103253pt;}
._13{width:19.627520pt;}
._12{width:20.610560pt;}
._1d{width:22.570453pt;}
._20{width:23.638400pt;}
._16{width:25.125760pt;}
._22{width:26.294400pt;}
._19{width:28.312960pt;}
._1c{width:30.172160pt;}
._28{width:33.211093pt;}
._2f{width:37.980800pt;}
._1f{width:38.878293pt;}
._29{width:40.949973pt;}
._27{width:46.633813pt;}
._1a{width:51.095893pt;}
._14{width:56.944640pt;}
._23{width:58.213973pt;}
._2b{width:60.763733pt;}
._2a{width:61.725440pt;}
._24{width:67.244373pt;}
._2c{width:68.168960pt;}
._1e{width:69.109120pt;}
._25{width:75.217920pt;}
._17{width:82.282880pt;}
._1b{width:85.895040pt;}
._21{width:88.235093pt;}
._30{width:117.607680pt;}
._15{width:119.248853pt;}
._4{width:120.938667pt;}
._26{width:127.216853pt;}
._18{width:177.792640pt;}
._2d{width:188.995413pt;}
._2e{width:204.883840pt;}
._3{width:566.138667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:2.880000pt;}
.y98{bottom:18.080000pt;}
.y9d{bottom:18.240000pt;}
.ya1{bottom:18.280000pt;}
.yc{bottom:32.640000pt;}
.ya4{bottom:33.440000pt;}
.ya0{bottom:33.480000pt;}
.y9c{bottom:33.600000pt;}
.y9f{bottom:48.840000pt;}
.y9b{bottom:48.960000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y95{bottom:106.112000pt;}
.ye0{bottom:108.352000pt;}
.y41{bottom:109.952000pt;}
.y96{bottom:110.432000pt;}
.ye8{bottom:116.032000pt;}
.yc4{bottom:120.992000pt;}
.y94{bottom:121.472000pt;}
.ydf{bottom:123.712000pt;}
.y40{bottom:125.312000pt;}
.y76{bottom:125.792000pt;}
.ye7{bottom:132.512000pt;}
.yc3{bottom:136.346667pt;}
.y93{bottom:136.826667pt;}
.yde{bottom:139.066667pt;}
.y3f{bottom:140.506667pt;}
.y75{bottom:140.986667pt;}
.ye6{bottom:149.146667pt;}
.yc2{bottom:151.706667pt;}
.y92{bottom:152.186667pt;}
.ydd{bottom:154.426667pt;}
.y3e{bottom:155.866667pt;}
.y74{bottom:156.346667pt;}
.ye5{bottom:165.626667pt;}
.yc1{bottom:167.066667pt;}
.y91{bottom:167.546667pt;}
.ydc{bottom:169.626667pt;}
.y3d{bottom:171.226667pt;}
.y73{bottom:171.706667pt;}
.ye4{bottom:182.106667pt;}
.yc0{bottom:182.426667pt;}
.y90{bottom:182.746667pt;}
.ydb{bottom:184.986667pt;}
.y3c{bottom:186.586667pt;}
.y72{bottom:187.066667pt;}
.ybf{bottom:197.786667pt;}
.y8f{bottom:198.106667pt;}
.ye3{bottom:198.746667pt;}
.yda{bottom:200.346667pt;}
.y3b{bottom:201.946667pt;}
.y71{bottom:202.426667pt;}
.ybe{bottom:212.986667pt;}
.y8e{bottom:213.466667pt;}
.ye2{bottom:215.226667pt;}
.yd9{bottom:215.706667pt;}
.y3a{bottom:217.306667pt;}
.y70{bottom:217.786667pt;}
.ybd{bottom:228.346667pt;}
.y8d{bottom:228.826667pt;}
.yd8{bottom:231.066667pt;}
.ye1{bottom:231.866667pt;}
.y39{bottom:232.506667pt;}
.y6f{bottom:232.986667pt;}
.ybc{bottom:243.706667pt;}
.y8c{bottom:244.186667pt;}
.yd7{bottom:246.266667pt;}
.y38{bottom:247.866667pt;}
.y6e{bottom:248.346667pt;}
.ybb{bottom:259.066667pt;}
.y8b{bottom:259.546667pt;}
.yd6{bottom:261.626667pt;}
.y37{bottom:263.226667pt;}
.y6d{bottom:263.706667pt;}
.yba{bottom:274.426667pt;}
.y8a{bottom:274.746667pt;}
.yd5{bottom:276.986667pt;}
.y36{bottom:278.586667pt;}
.y6c{bottom:279.066667pt;}
.yb9{bottom:289.626667pt;}
.y89{bottom:290.106667pt;}
.yd4{bottom:292.346667pt;}
.y35{bottom:293.946667pt;}
.y6b{bottom:294.426667pt;}
.yb8{bottom:305.026667pt;}
.y88{bottom:305.506667pt;}
.yd3{bottom:307.746667pt;}
.y34{bottom:309.346667pt;}
.y6a{bottom:309.666667pt;}
.yb7{bottom:320.386667pt;}
.y87{bottom:320.866667pt;}
.yd2{bottom:323.106667pt;}
.y33{bottom:324.546667pt;}
.y69{bottom:325.026667pt;}
.yb6{bottom:335.746667pt;}
.y86{bottom:336.226667pt;}
.yd1{bottom:338.306667pt;}
.y32{bottom:339.906667pt;}
.y68{bottom:340.386667pt;}
.yb5{bottom:351.106667pt;}
.y85{bottom:351.586667pt;}
.yd0{bottom:353.666667pt;}
.y31{bottom:355.266667pt;}
.y67{bottom:355.746667pt;}
.yb4{bottom:366.466667pt;}
.y84{bottom:366.786667pt;}
.ycf{bottom:369.026667pt;}
.y30{bottom:370.626667pt;}
.y66{bottom:371.106667pt;}
.yb3{bottom:381.666667pt;}
.y83{bottom:382.146667pt;}
.yce{bottom:384.386667pt;}
.y2f{bottom:385.986667pt;}
.y65{bottom:386.466667pt;}
.yb2{bottom:397.026667pt;}
.y82{bottom:397.506667pt;}
.ycd{bottom:399.746667pt;}
.y2e{bottom:401.346667pt;}
.y64{bottom:401.666667pt;}
.yb1{bottom:412.386667pt;}
.y81{bottom:412.866667pt;}
.ycc{bottom:415.106667pt;}
.y2d{bottom:416.546667pt;}
.y63{bottom:417.026667pt;}
.yb0{bottom:427.746667pt;}
.y80{bottom:428.226667pt;}
.ycb{bottom:430.306667pt;}
.y2c{bottom:431.906667pt;}
.y62{bottom:432.386667pt;}
.yaf{bottom:443.106667pt;}
.y7f{bottom:443.426667pt;}
.yca{bottom:445.666667pt;}
.y2b{bottom:447.266667pt;}
.y61{bottom:447.746667pt;}
.yae{bottom:458.466667pt;}
.y7e{bottom:458.786667pt;}
.yc9{bottom:461.026667pt;}
.y2a{bottom:462.626667pt;}
.y60{bottom:463.106667pt;}
.yad{bottom:473.666667pt;}
.y7d{bottom:474.146667pt;}
.yc8{bottom:476.386667pt;}
.y29{bottom:477.986667pt;}
.y5f{bottom:478.466667pt;}
.yac{bottom:489.026667pt;}
.y7c{bottom:489.506667pt;}
.yc7{bottom:491.746667pt;}
.y28{bottom:493.186667pt;}
.y5e{bottom:493.666667pt;}
.yab{bottom:504.386667pt;}
.y7b{bottom:504.866667pt;}
.yc6{bottom:506.946667pt;}
.y27{bottom:508.546667pt;}
.y5d{bottom:509.026667pt;}
.yc5{bottom:519.426667pt;}
.yaa{bottom:519.746667pt;}
.y7a{bottom:520.226667pt;}
.y26{bottom:523.906667pt;}
.y5c{bottom:524.386667pt;}
.ya9{bottom:535.106667pt;}
.y79{bottom:535.426667pt;}
.y25{bottom:539.293333pt;}
.y5b{bottom:539.773333pt;}
.ya8{bottom:550.493333pt;}
.y78{bottom:550.813333pt;}
.y24{bottom:554.653333pt;}
.y5a{bottom:555.133333pt;}
.yfd{bottom:558.973333pt;}
.y77{bottom:563.293333pt;}
.ya7{bottom:565.693333pt;}
.y23{bottom:570.013333pt;}
.y59{bottom:570.493333pt;}
.yfc{bottom:575.613333pt;}
.ya6{bottom:581.053333pt;}
.y22{bottom:585.213333pt;}
.y58{bottom:585.693333pt;}
.yfb{bottom:592.093333pt;}
.ya5{bottom:594.173333pt;}
.y21{bottom:600.573333pt;}
.y57{bottom:601.053333pt;}
.yfa{bottom:608.573333pt;}
.y20{bottom:615.933333pt;}
.y56{bottom:616.413333pt;}
.yf9{bottom:625.213333pt;}
.y1f{bottom:631.293333pt;}
.y55{bottom:631.773333pt;}
.yf8{bottom:641.693333pt;}
.y1e{bottom:646.653333pt;}
.y54{bottom:647.133333pt;}
.ya3{bottom:656.253333pt;}
.yf7{bottom:658.333333pt;}
.y1d{bottom:662.013333pt;}
.y53{bottom:662.333333pt;}
.yf6{bottom:674.813333pt;}
.y1c{bottom:677.213333pt;}
.y52{bottom:677.693333pt;}
.yf5{bottom:691.453333pt;}
.y1b{bottom:692.573333pt;}
.y51{bottom:693.053333pt;}
.ya2{bottom:702.813333pt;}
.y1a{bottom:707.933333pt;}
.y50{bottom:708.413333pt;}
.y19{bottom:723.293333pt;}
.y4f{bottom:723.773333pt;}
.yf4{bottom:724.413333pt;}
.y18{bottom:738.653333pt;}
.y4e{bottom:739.133333pt;}
.yf3{bottom:741.053333pt;}
.y17{bottom:753.853333pt;}
.y4d{bottom:754.333333pt;}
.yf2{bottom:757.533333pt;}
.y9e{bottom:764.893333pt;}
.y16{bottom:769.213333pt;}
.y4c{bottom:769.693333pt;}
.yf1{bottom:774.213333pt;}
.y15{bottom:784.613333pt;}
.y4b{bottom:785.093333pt;}
.yf0{bottom:790.693333pt;}
.y14{bottom:799.973333pt;}
.y4a{bottom:800.453333pt;}
.yef{bottom:807.173333pt;}
.y49{bottom:815.813333pt;}
.y13{bottom:817.253333pt;}
.yee{bottom:823.813333pt;}
.y9a{bottom:826.853333pt;}
.y48{bottom:831.173333pt;}
.y12{bottom:833.093333pt;}
.yed{bottom:840.293333pt;}
.y47{bottom:846.373333pt;}
.y11{bottom:849.893333pt;}
.yec{bottom:856.933333pt;}
.y46{bottom:861.733333pt;}
.y10{bottom:866.693333pt;}
.yeb{bottom:873.413333pt;}
.y45{bottom:877.093333pt;}
.yf{bottom:883.813333pt;}
.y97{bottom:888.933333pt;}
.yea{bottom:889.893333pt;}
.y44{bottom:892.453333pt;}
.ye{bottom:902.213333pt;}
.ye9{bottom:906.533333pt;}
.y43{bottom:907.813333pt;}
.yd{bottom:920.613333pt;}
.y42{bottom:923.013333pt;}
.y9{bottom:938.213333pt;}
.y8{bottom:951.973333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hb{height:30.560000pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h9{height:41.543750pt;}
.h6{height:43.031250pt;}
.h4{height:45.156250pt;}
.he{height:45.920000pt;}
.h2{height:47.621250pt;}
.h3{height:52.785000pt;}
.h8{height:57.375000pt;}
.h7{height:58.563750pt;}
.hf{height:61.280000pt;}
.hd{height:61.312000pt;}
.hc{height:61.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:69.120000pt;}
.w4{width:142.106667pt;}
.w5{width:187.386667pt;}
.w6{width:200.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x8{left:119.551988pt;}
.x5{left:139.706655pt;}
.x1d{left:144.026655pt;}
.x10{left:157.466655pt;}
.x9{left:160.826655pt;}
.x14{left:166.426667pt;}
.x18{left:174.266655pt;}
.xe{left:181.946655pt;}
.x11{left:188.026655pt;}
.x17{left:255.266655pt;}
.x12{left:262.466655pt;}
.x1a{left:280.226655pt;}
.xb{left:306.146655pt;}
.x15{left:309.186667pt;}
.x1b{left:326.786655pt;}
.xd{left:336.866655pt;}
.xa{left:339.586655pt;}
.x1c{left:341.666655pt;}
.x7{left:352.386655pt;}
.xc{left:357.826655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
.x16{left:497.213333pt;}
.xf{left:655.013322pt;}
.x19{left:720.133322pt;}
}




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