
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_9baf6fcde13d560b9ad48798.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_1ad79ddf7cd1e276714d8b69.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2e2e78c59b68116779c5234d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_5e218256a1c417a200138d49.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_02a418f61ff03c001ea1585a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_0c48205636088386b0f8a66c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b739cc19418bd088b49d1663.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ff23bc478e5bf82946ed6887.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_10cb9509de1092df9f4dabb2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.226200px;}
.lse{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.234000px;}
.ls10{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.900000px;}
.ls2{letter-spacing:0.979920px;}
.ls7{letter-spacing:33.984000px;}
.ls6{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.ls1{letter-spacing:174.960000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws7{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.wsf{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wse{word-spacing:-14.426400px;}
.ws6{word-spacing:-13.626000px;}
.ws5{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.350600px;}
.ws2{word-spacing:-10.213800px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.521200px;}
._e{width:3.899040px;}
._11{width:4.937040px;}
._6{width:5.940000px;}
._c{width:7.119360px;}
._b{width:8.262000px;}
._d{width:9.720000px;}
._13{width:10.801440px;}
._a{width:11.983680px;}
._12{width:13.505760px;}
._9{width:17.604000px;}
._15{width:19.261440px;}
._7{width:20.718000px;}
._f{width:21.756480px;}
._8{width:22.843200px;}
._10{width:27.864000px;}
._4{width:396.269760px;}
._14{width:774.369120px;}
._5{width:978.089760px;}
._3{width:1389.185760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.000000px;}
.fs3{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.585000px;}
.y5{bottom:3.780000px;}
.yb4{bottom:4.665000px;}
.y72{bottom:4.860000px;}
.y5b{bottom:5.010000px;}
.yb6{bottom:5.025000px;}
.y74{bottom:5.040000px;}
.yb8{bottom:5.205000px;}
.y77{bottom:5.220000px;}
.yc3{bottom:5.250000px;}
.y2{bottom:8.280000px;}
.y4d{bottom:11.160000px;}
.y59{bottom:17.100000px;}
.y4c{bottom:18.720000px;}
.y42{bottom:20.865000px;}
.y4{bottom:21.060000px;}
.y58{bottom:35.640000px;}
.y41{bottom:38.325000px;}
.y3{bottom:44.670000px;}
.y4b{bottom:48.780000px;}
.y57{bottom:57.420000px;}
.y7{bottom:57.600000px;}
.y4a{bottom:60.300000px;}
.y40{bottom:64.785000px;}
.y49{bottom:73.440000px;}
.y56{bottom:76.500000px;}
.y3f{bottom:82.065000px;}
.y48{bottom:86.400000px;}
.y55{bottom:91.980000px;}
.y44{bottom:92.340000px;}
.y3e{bottom:102.225000px;}
.y94{bottom:104.760000px;}
.yc9{bottom:105.660000px;}
.y54{bottom:107.460000px;}
.y47{bottom:108.180000px;}
.y53{bottom:116.820000px;}
.y3d{bottom:119.325000px;}
.y93{bottom:122.220000px;}
.yc8{bottom:122.940000px;}
.y52{bottom:135.750000px;}
.y3c{bottom:136.605000px;}
.yc7{bottom:140.220000px;}
.y92{bottom:148.680000px;}
.y51{bottom:151.410000px;}
.y3b{bottom:154.110000px;}
.yc6{bottom:164.520000px;}
.y91{bottom:165.960000px;}
.y50{bottom:166.890000px;}
.yc5{bottom:169.380000px;}
.y46{bottom:170.490000px;}
.y3a{bottom:180.570000px;}
.y45{bottom:180.930000px;}
.y4f{bottom:182.370000px;}
.y90{bottom:182.880000px;}
.yc4{bottom:188.820000px;}
.y4e{bottom:197.490000px;}
.y39{bottom:197.850000px;}
.yc2{bottom:208.080000px;}
.y8f{bottom:209.520000px;}
.y38{bottom:215.130000px;}
.y8e{bottom:226.830000px;}
.yc1{bottom:227.565000px;}
.y37{bottom:232.410000px;}
.y8d{bottom:243.750000px;}
.yc0{bottom:246.825000px;}
.y36{bottom:249.690000px;}
.ybf{bottom:266.265000px;}
.y35{bottom:266.970000px;}
.y8c{bottom:270.210000px;}
.y34{bottom:284.070000px;}
.ybe{bottom:285.705000px;}
.y8b{bottom:287.490000px;}
.y33{bottom:301.350000px;}
.yd{bottom:303.345000px;}
.y8a{bottom:304.410000px;}
.ybd{bottom:308.370000px;}
.y32{bottom:318.630000px;}
.y89{bottom:331.050000px;}
.ybc{bottom:332.490000px;}
.y31{bottom:335.910000px;}
.ybb{bottom:337.545000px;}
.y88{bottom:348.330000px;}
.y30{bottom:353.190000px;}
.yba{bottom:356.805000px;}
.y87{bottom:365.430000px;}
.y2f{bottom:370.290000px;}
.y1b{bottom:371.190000px;}
.yb9{bottom:376.245000px;}
.y86{bottom:382.350000px;}
.y2e{bottom:387.600000px;}
.yb7{bottom:395.505000px;}
.y1a{bottom:395.520000px;}
.y2d{bottom:404.880000px;}
.y85{bottom:408.990000px;}
.yb5{bottom:414.945000px;}
.y19{bottom:419.640000px;}
.y2c{bottom:422.160000px;}
.y84{bottom:426.270000px;}
.yb3{bottom:434.385000px;}
.y2b{bottom:439.440000px;}
.y83{bottom:443.550000px;}
.y18{bottom:443.760000px;}
.y2a{bottom:455.820000px;}
.yb2{bottom:457.455000px;}
.y82{bottom:460.515000px;}
.y17{bottom:467.880000px;}
.y29{bottom:480.660000px;}
.yb1{bottom:484.095000px;}
.y81{bottom:486.975000px;}
.y16{bottom:492.000000px;}
.y28{bottom:496.140000px;}
.yb0{bottom:502.455000px;}
.y80{bottom:504.255000px;}
.y27{bottom:511.800000px;}
.y15{bottom:516.120000px;}
.yaf{bottom:520.815000px;}
.y7f{bottom:521.535000px;}
.y26{bottom:527.280000px;}
.y7e{bottom:538.275000px;}
.yae{bottom:539.175000px;}
.y14{bottom:540.240000px;}
.y25{bottom:542.760000px;}
.yad{bottom:556.995000px;}
.y24{bottom:558.240000px;}
.y13{bottom:564.540000px;}
.y7d{bottom:564.735000px;}
.y23{bottom:573.900000px;}
.y7c{bottom:580.035000px;}
.yac{bottom:583.635000px;}
.y7b{bottom:585.435000px;}
.y12{bottom:588.660000px;}
.y22{bottom:589.380000px;}
.y7a{bottom:590.475000px;}
.yab{bottom:601.995000px;}
.y21{bottom:604.860000px;}
.y79{bottom:609.735000px;}
.y11{bottom:612.780000px;}
.yaa{bottom:620.355000px;}
.y20{bottom:620.385000px;}
.y78{bottom:629.175000px;}
.y1f{bottom:636.045000px;}
.y10{bottom:636.945000px;}
.ya9{bottom:638.715000px;}
.y76{bottom:648.435000px;}
.y1e{bottom:651.525000px;}
.ya8{bottom:656.715000px;}
.yf{bottom:661.065000px;}
.y1d{bottom:667.005000px;}
.y75{bottom:667.875000px;}
.y1c{bottom:682.125000px;}
.ya7{bottom:683.205000px;}
.ye{bottom:685.185000px;}
.y73{bottom:687.345000px;}
.ya6{bottom:701.565000px;}
.y71{bottom:706.605000px;}
.ya5{bottom:719.925000px;}
.ya4{bottom:738.285000px;}
.y70{bottom:747.465000px;}
.ya3{bottom:756.285000px;}
.y6f{bottom:764.745000px;}
.ya2{bottom:773.925000px;}
.ydc{bottom:776.805000px;}
.y6e{bottom:781.845000px;}
.ydb{bottom:794.085000px;}
.y6d{bottom:799.125000px;}
.ya1{bottom:800.565000px;}
.yda{bottom:811.365000px;}
.y6c{bottom:816.405000px;}
.ya0{bottom:818.925000px;}
.yd9{bottom:828.465000px;}
.y6b{bottom:833.685000px;}
.y9f{bottom:837.105000px;}
.yd8{bottom:845.745000px;}
.y6a{bottom:850.965000px;}
.y9e{bottom:855.465000px;}
.yd7{bottom:863.025000px;}
.y69{bottom:868.245000px;}
.y9d{bottom:873.825000px;}
.yd6{bottom:880.305000px;}
.y68{bottom:885.345000px;}
.y9c{bottom:892.185000px;}
.yd5{bottom:897.585000px;}
.y67{bottom:902.625000px;}
.yd4{bottom:914.865000px;}
.y9b{bottom:918.870000px;}
.y66{bottom:919.950000px;}
.yd3{bottom:932.190000px;}
.y9a{bottom:936.150000px;}
.y65{bottom:937.230000px;}
.y99{bottom:953.430000px;}
.y64{bottom:954.510000px;}
.yd2{bottom:958.830000px;}
.y98{bottom:970.710000px;}
.y63{bottom:971.790000px;}
.yd1{bottom:975.930000px;}
.y97{bottom:987.810000px;}
.yd0{bottom:993.210000px;}
.y62{bottom:998.430000px;}
.yc{bottom:1000.770000px;}
.y96{bottom:1005.270000px;}
.yb{bottom:1006.530000px;}
.ycf{bottom:1010.490000px;}
.y61{bottom:1015.710000px;}
.ya{bottom:1024.350000px;}
.yce{bottom:1027.770000px;}
.y95{bottom:1031.910000px;}
.y60{bottom:1032.990000px;}
.ycd{bottom:1045.050000px;}
.y5f{bottom:1050.090000px;}
.y9{bottom:1059.810000px;}
.ycc{bottom:1062.330000px;}
.y5e{bottom:1068.450000px;}
.y5d{bottom:1086.810000px;}
.y8{bottom:1088.250000px;}
.ycb{bottom:1088.970000px;}
.y5a{bottom:1091.700000px;}
.y5c{bottom:1105.170000px;}
.yca{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.hb{height:4.165313px;}
.h1a{height:5.650313px;}
.h23{height:17.903320px;}
.h24{height:18.140625px;}
.h22{height:18.525000px;}
.h1f{height:18.540000px;}
.h25{height:18.561000px;}
.h20{height:18.570000px;}
.h21{height:18.705000px;}
.h1e{height:18.720000px;}
.h26{height:18.756000px;}
.h7{height:23.632383px;}
.h1c{height:27.540000px;}
.h19{height:29.678906px;}
.h18{height:35.332031px;}
.he{height:40.985156px;}
.h10{height:41.080078px;}
.h12{height:41.726953px;}
.hd{height:42.086250px;}
.hf{height:52.971680px;}
.h11{height:54.421875px;}
.h8{height:57.324375px;}
.h1b{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:59.439023px;}
.h27{height:59.614102px;}
.h13{height:60.226875px;}
.h14{height:61.423863px;}
.h1d{height:64.002656px;}
.h3{height:65.884219px;}
.h16{height:70.664062px;}
.ha{height:72.562500px;}
.h15{height:74.004654px;}
.h2{height:81.570000px;}
.h9{height:84.898125px;}
.h4{height:117.180000px;}
.h17{height:210.090000px;}
.hc{height:694.710000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:75.411000px;}
.wc{width:85.521000px;}
.w2{width:104.076000px;}
.we{width:115.941000px;}
.w4{width:132.651000px;}
.wa{width:149.241000px;}
.w6{width:162.720000px;}
.w8{width:209.715000px;}
.wd{width:242.490000px;}
.wb{width:395.175000px;}
.w9{width:419.505000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x16{left:8.085000px;}
.x4{left:12.765000px;}
.x13{left:16.911000px;}
.x5{left:18.885000px;}
.x14{left:23.391000px;}
.x1a{left:29.151000px;}
.x6{left:35.985000px;}
.xd{left:43.731000px;}
.x19{left:47.691000px;}
.xe{left:50.751000px;}
.xc{left:55.071000px;}
.x1c{left:57.051000px;}
.x17{left:62.130000px;}
.x1b{left:66.225000px;}
.x10{left:67.485000px;}
.x1{left:78.300000px;}
.x12{left:79.545000px;}
.x11{left:83.685000px;}
.x7{left:86.436000px;}
.x20{left:93.645000px;}
.x2{left:95.790000px;}
.x1d{left:102.765000px;}
.x18{left:106.725000px;}
.x1f{left:113.436000px;}
.xf{left:124.545000px;}
.x23{left:140.436000px;}
.x21{left:169.785000px;}
.x25{left:174.105000px;}
.x3{left:182.385000px;}
.x15{left:219.105000px;}
.x28{left:223.965000px;}
.x27{left:309.135000px;}
.x29{left:310.215000px;}
.x26{left:324.075000px;}
.x24{left:370.695000px;}
.x22{left:380.235000px;}
.x9{left:489.345000px;}
.xa{left:536.145000px;}
.x2a{left:553.440000px;}
.x8{left:766.050000px;}
.xb{left:806.940000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.201067pt;}
.lse{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.208000pt;}
.ls10{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.871040pt;}
.ls7{letter-spacing:30.208000pt;}
.ls6{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ls1{letter-spacing:155.520000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.823467pt;}
.ws6{word-spacing:-12.112000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.200533pt;}
.ws2{word-spacing:-9.078933pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.241067pt;}
._e{width:3.465813pt;}
._11{width:4.388480pt;}
._6{width:5.280000pt;}
._c{width:6.328320pt;}
._b{width:7.344000pt;}
._d{width:8.640000pt;}
._13{width:9.601280pt;}
._a{width:10.652160pt;}
._12{width:12.005120pt;}
._9{width:15.648000pt;}
._15{width:17.121280pt;}
._7{width:18.416000pt;}
._f{width:19.339093pt;}
._8{width:20.305067pt;}
._10{width:24.768000pt;}
._4{width:352.239787pt;}
._14{width:688.328107pt;}
._5{width:869.413120pt;}
._3{width:1234.831787pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.000000pt;}
.fs3{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.186667pt;}
.y5{bottom:3.360000pt;}
.yb4{bottom:4.146667pt;}
.y72{bottom:4.320000pt;}
.y5b{bottom:4.453333pt;}
.yb6{bottom:4.466667pt;}
.y74{bottom:4.480000pt;}
.yb8{bottom:4.626667pt;}
.y77{bottom:4.640000pt;}
.yc3{bottom:4.666667pt;}
.y2{bottom:7.360000pt;}
.y4d{bottom:9.920000pt;}
.y59{bottom:15.200000pt;}
.y4c{bottom:16.640000pt;}
.y42{bottom:18.546667pt;}
.y4{bottom:18.720000pt;}
.y58{bottom:31.680000pt;}
.y41{bottom:34.066667pt;}
.y3{bottom:39.706667pt;}
.y4b{bottom:43.360000pt;}
.y57{bottom:51.040000pt;}
.y7{bottom:51.200000pt;}
.y4a{bottom:53.600000pt;}
.y40{bottom:57.586667pt;}
.y49{bottom:65.280000pt;}
.y56{bottom:68.000000pt;}
.y3f{bottom:72.946667pt;}
.y48{bottom:76.800000pt;}
.y55{bottom:81.760000pt;}
.y44{bottom:82.080000pt;}
.y3e{bottom:90.866667pt;}
.y94{bottom:93.120000pt;}
.yc9{bottom:93.920000pt;}
.y54{bottom:95.520000pt;}
.y47{bottom:96.160000pt;}
.y53{bottom:103.840000pt;}
.y3d{bottom:106.066667pt;}
.y93{bottom:108.640000pt;}
.yc8{bottom:109.280000pt;}
.y52{bottom:120.666667pt;}
.y3c{bottom:121.426667pt;}
.yc7{bottom:124.640000pt;}
.y92{bottom:132.160000pt;}
.y51{bottom:134.586667pt;}
.y3b{bottom:136.986667pt;}
.yc6{bottom:146.240000pt;}
.y91{bottom:147.520000pt;}
.y50{bottom:148.346667pt;}
.yc5{bottom:150.560000pt;}
.y46{bottom:151.546667pt;}
.y3a{bottom:160.506667pt;}
.y45{bottom:160.826667pt;}
.y4f{bottom:162.106667pt;}
.y90{bottom:162.560000pt;}
.yc4{bottom:167.840000pt;}
.y4e{bottom:175.546667pt;}
.y39{bottom:175.866667pt;}
.yc2{bottom:184.960000pt;}
.y8f{bottom:186.240000pt;}
.y38{bottom:191.226667pt;}
.y8e{bottom:201.626667pt;}
.yc1{bottom:202.280000pt;}
.y37{bottom:206.586667pt;}
.y8d{bottom:216.666667pt;}
.yc0{bottom:219.400000pt;}
.y36{bottom:221.946667pt;}
.ybf{bottom:236.680000pt;}
.y35{bottom:237.306667pt;}
.y8c{bottom:240.186667pt;}
.y34{bottom:252.506667pt;}
.ybe{bottom:253.960000pt;}
.y8b{bottom:255.546667pt;}
.y33{bottom:267.866667pt;}
.yd{bottom:269.640000pt;}
.y8a{bottom:270.586667pt;}
.ybd{bottom:274.106667pt;}
.y32{bottom:283.226667pt;}
.y89{bottom:294.266667pt;}
.ybc{bottom:295.546667pt;}
.y31{bottom:298.586667pt;}
.ybb{bottom:300.040000pt;}
.y88{bottom:309.626667pt;}
.y30{bottom:313.946667pt;}
.yba{bottom:317.160000pt;}
.y87{bottom:324.826667pt;}
.y2f{bottom:329.146667pt;}
.y1b{bottom:329.946667pt;}
.yb9{bottom:334.440000pt;}
.y86{bottom:339.866667pt;}
.y2e{bottom:344.533333pt;}
.yb7{bottom:351.560000pt;}
.y1a{bottom:351.573333pt;}
.y2d{bottom:359.893333pt;}
.y85{bottom:363.546667pt;}
.yb5{bottom:368.840000pt;}
.y19{bottom:373.013333pt;}
.y2c{bottom:375.253333pt;}
.y84{bottom:378.906667pt;}
.yb3{bottom:386.120000pt;}
.y2b{bottom:390.613333pt;}
.y83{bottom:394.266667pt;}
.y18{bottom:394.453333pt;}
.y2a{bottom:405.173333pt;}
.yb2{bottom:406.626667pt;}
.y82{bottom:409.346667pt;}
.y17{bottom:415.893333pt;}
.y29{bottom:427.253333pt;}
.yb1{bottom:430.306667pt;}
.y81{bottom:432.866667pt;}
.y16{bottom:437.333333pt;}
.y28{bottom:441.013333pt;}
.yb0{bottom:446.626667pt;}
.y80{bottom:448.226667pt;}
.y27{bottom:454.933333pt;}
.y15{bottom:458.773333pt;}
.yaf{bottom:462.946667pt;}
.y7f{bottom:463.586667pt;}
.y26{bottom:468.693333pt;}
.y7e{bottom:478.466667pt;}
.yae{bottom:479.266667pt;}
.y14{bottom:480.213333pt;}
.y25{bottom:482.453333pt;}
.yad{bottom:495.106667pt;}
.y24{bottom:496.213333pt;}
.y13{bottom:501.813333pt;}
.y7d{bottom:501.986667pt;}
.y23{bottom:510.133333pt;}
.y7c{bottom:515.586667pt;}
.yac{bottom:518.786667pt;}
.y7b{bottom:520.386667pt;}
.y12{bottom:523.253333pt;}
.y22{bottom:523.893333pt;}
.y7a{bottom:524.866667pt;}
.yab{bottom:535.106667pt;}
.y21{bottom:537.653333pt;}
.y79{bottom:541.986667pt;}
.y11{bottom:544.693333pt;}
.yaa{bottom:551.426667pt;}
.y20{bottom:551.453333pt;}
.y78{bottom:559.266667pt;}
.y1f{bottom:565.373333pt;}
.y10{bottom:566.173333pt;}
.ya9{bottom:567.746667pt;}
.y76{bottom:576.386667pt;}
.y1e{bottom:579.133333pt;}
.ya8{bottom:583.746667pt;}
.yf{bottom:587.613333pt;}
.y1d{bottom:592.893333pt;}
.y75{bottom:593.666667pt;}
.y1c{bottom:606.333333pt;}
.ya7{bottom:607.293333pt;}
.ye{bottom:609.053333pt;}
.y73{bottom:610.973333pt;}
.ya6{bottom:623.613333pt;}
.y71{bottom:628.093333pt;}
.ya5{bottom:639.933333pt;}
.ya4{bottom:656.253333pt;}
.y70{bottom:664.413333pt;}
.ya3{bottom:672.253333pt;}
.y6f{bottom:679.773333pt;}
.ya2{bottom:687.933333pt;}
.ydc{bottom:690.493333pt;}
.y6e{bottom:694.973333pt;}
.ydb{bottom:705.853333pt;}
.y6d{bottom:710.333333pt;}
.ya1{bottom:711.613333pt;}
.yda{bottom:721.213333pt;}
.y6c{bottom:725.693333pt;}
.ya0{bottom:727.933333pt;}
.yd9{bottom:736.413333pt;}
.y6b{bottom:741.053333pt;}
.y9f{bottom:744.093333pt;}
.yd8{bottom:751.773333pt;}
.y6a{bottom:756.413333pt;}
.y9e{bottom:760.413333pt;}
.yd7{bottom:767.133333pt;}
.y69{bottom:771.773333pt;}
.y9d{bottom:776.733333pt;}
.yd6{bottom:782.493333pt;}
.y68{bottom:786.973333pt;}
.y9c{bottom:793.053333pt;}
.yd5{bottom:797.853333pt;}
.y67{bottom:802.333333pt;}
.yd4{bottom:813.213333pt;}
.y9b{bottom:816.773333pt;}
.y66{bottom:817.733333pt;}
.yd3{bottom:828.613333pt;}
.y9a{bottom:832.133333pt;}
.y65{bottom:833.093333pt;}
.y99{bottom:847.493333pt;}
.y64{bottom:848.453333pt;}
.yd2{bottom:852.293333pt;}
.y98{bottom:862.853333pt;}
.y63{bottom:863.813333pt;}
.yd1{bottom:867.493333pt;}
.y97{bottom:878.053333pt;}
.yd0{bottom:882.853333pt;}
.y62{bottom:887.493333pt;}
.yc{bottom:889.573333pt;}
.y96{bottom:893.573333pt;}
.yb{bottom:894.693333pt;}
.ycf{bottom:898.213333pt;}
.y61{bottom:902.853333pt;}
.ya{bottom:910.533333pt;}
.yce{bottom:913.573333pt;}
.y95{bottom:917.253333pt;}
.y60{bottom:918.213333pt;}
.ycd{bottom:928.933333pt;}
.y5f{bottom:933.413333pt;}
.y9{bottom:942.053333pt;}
.ycc{bottom:944.293333pt;}
.y5e{bottom:949.733333pt;}
.y5d{bottom:966.053333pt;}
.y8{bottom:967.333333pt;}
.ycb{bottom:967.973333pt;}
.y5a{bottom:970.400000pt;}
.y5c{bottom:982.373333pt;}
.yca{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.hb{height:3.702500pt;}
.h1a{height:5.022500pt;}
.h23{height:15.914062pt;}
.h24{height:16.125000pt;}
.h22{height:16.466667pt;}
.h1f{height:16.480000pt;}
.h25{height:16.498667pt;}
.h20{height:16.506667pt;}
.h21{height:16.626667pt;}
.h1e{height:16.640000pt;}
.h26{height:16.672000pt;}
.h7{height:21.006562pt;}
.h1c{height:24.480000pt;}
.h19{height:26.381250pt;}
.h18{height:31.406250pt;}
.he{height:36.431250pt;}
.h10{height:36.515625pt;}
.h12{height:37.090625pt;}
.hd{height:37.410000pt;}
.hf{height:47.085938pt;}
.h11{height:48.375000pt;}
.h8{height:50.955000pt;}
.h1b{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:52.834688pt;}
.h27{height:52.990313pt;}
.h13{height:53.535000pt;}
.h14{height:54.598989pt;}
.h1d{height:56.891250pt;}
.h3{height:58.563750pt;}
.h16{height:62.812500pt;}
.ha{height:64.500000pt;}
.h15{height:65.781915pt;}
.h2{height:72.506667pt;}
.h9{height:75.465000pt;}
.h4{height:104.160000pt;}
.h17{height:186.746667pt;}
.hc{height:617.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:67.032000pt;}
.wc{width:76.018667pt;}
.w2{width:92.512000pt;}
.we{width:103.058667pt;}
.w4{width:117.912000pt;}
.wa{width:132.658667pt;}
.w6{width:144.640000pt;}
.w8{width:186.413333pt;}
.wd{width:215.546667pt;}
.wb{width:351.266667pt;}
.w9{width:372.893333pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x16{left:7.186667pt;}
.x4{left:11.346667pt;}
.x13{left:15.032000pt;}
.x5{left:16.786667pt;}
.x14{left:20.792000pt;}
.x1a{left:25.912000pt;}
.x6{left:31.986667pt;}
.xd{left:38.872000pt;}
.x19{left:42.392000pt;}
.xe{left:45.112000pt;}
.xc{left:48.952000pt;}
.x1c{left:50.712000pt;}
.x17{left:55.226667pt;}
.x1b{left:58.866667pt;}
.x10{left:59.986667pt;}
.x1{left:69.600000pt;}
.x12{left:70.706667pt;}
.x11{left:74.386667pt;}
.x7{left:76.832000pt;}
.x20{left:83.240000pt;}
.x2{left:85.146667pt;}
.x1d{left:91.346667pt;}
.x18{left:94.866667pt;}
.x1f{left:100.832000pt;}
.xf{left:110.706667pt;}
.x23{left:124.832000pt;}
.x21{left:150.920000pt;}
.x25{left:154.760000pt;}
.x3{left:162.120000pt;}
.x15{left:194.760000pt;}
.x28{left:199.080000pt;}
.x27{left:274.786667pt;}
.x29{left:275.746667pt;}
.x26{left:288.066667pt;}
.x24{left:329.506667pt;}
.x22{left:337.986667pt;}
.x9{left:434.973333pt;}
.xa{left:476.573333pt;}
.x2a{left:491.946667pt;}
.x8{left:680.933333pt;}
.xb{left:717.280000pt;}
}




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