
    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_d5647a71468dbdd9926ab437.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.756348;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_3e428fad73db1fcd54c25bca.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b34e81649bdcef51be8128ee.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7835733a429f4d2f3adeb174.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f368cce36bc4ec5d12b1a890.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_75b809ea95421d7481253586.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_0425a027b4f882f9a4dc262e.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls3{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:8.220000px;}
.lsf{letter-spacing:9.540000px;}
.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;}
}
.ws1{word-spacing:-108.000000px;}
.ws9{word-spacing:-18.152520px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:1.258560px;}
._b{margin-left:-3.893040px;}
._5{margin-left:-2.501280px;}
._1{margin-left:-1.179360px;}
._0{width:1.008000px;}
._3{width:2.637360px;}
._7{width:3.756960px;}
._6{width:5.438160px;}
._4{width:6.752880px;}
._a{width:8.613360px;}
._e{width:9.613440px;}
._10{width:11.487840px;}
._c{width:12.818640px;}
._12{width:13.862640px;}
._2{width:16.493760px;}
._f{width:17.688960px;}
._11{width:18.712800px;}
._8{width:20.593680px;}
._9{width:21.644400px;}
._13{width:23.422560px;}
._1a{width:24.808320px;}
._1b{width:26.107200px;}
._d{width:27.138960px;}
._1c{width:39.023280px;}
._16{width:56.421360px;}
._19{width:83.578320px;}
._15{width:143.005680px;}
._14{width:144.029520px;}
._18{width:188.766480px;}
._17{width:194.518800px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc6{color:rgb(40,40,40);}
.fc5{color:rgb(31,31,31);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.yce{bottom:-26.100000px;}
.yd3{bottom:-0.105000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:2.775000px;}
.yc8{bottom:3.525000px;}
.yc5{bottom:3.780000px;}
.ycc{bottom:10.155000px;}
.yd0{bottom:27.615000px;}
.yc7{bottom:28.185000px;}
.ycb{bottom:34.845000px;}
.yca{bottom:59.685000px;}
.y3{bottom:68.256000px;}
.y2{bottom:87.156000px;}
.y22{bottom:114.336000px;}
.yb1{bottom:119.196000px;}
.y90{bottom:123.696000px;}
.yfd{bottom:126.216000px;}
.y80{bottom:128.196000px;}
.yf1{bottom:129.096000px;}
.yc3{bottom:133.056000px;}
.y42{bottom:137.376000px;}
.y64{bottom:140.076000px;}
.yb0{bottom:145.116000px;}
.y21{bottom:146.556000px;}
.yfc{bottom:152.130000px;}
.y7f{bottom:154.110000px;}
.yf0{bottom:155.010000px;}
.y8f{bottom:155.910000px;}
.y41{bottom:163.290000px;}
.y63{bottom:165.990000px;}
.yc2{bottom:170.850000px;}
.yaf{bottom:171.030000px;}
.yfb{bottom:178.050000px;}
.y7e{bottom:179.850000px;}
.yef{bottom:180.930000px;}
.y40{bottom:189.210000px;}
.y8e{bottom:190.650000px;}
.y62{bottom:191.910000px;}
.yae{bottom:196.950000px;}
.yfa{bottom:203.970000px;}
.y7d{bottom:205.770000px;}
.yee{bottom:206.670000px;}
.yc1{bottom:208.830000px;}
.y3f{bottom:214.950000px;}
.y61{bottom:217.830000px;}
.yad{bottom:222.690000px;}
.yf9{bottom:229.710000px;}
.y7c{bottom:231.690000px;}
.yed{bottom:232.590000px;}
.yc0{bottom:234.570000px;}
.y3e{bottom:240.870000px;}
.y60{bottom:243.570000px;}
.yac{bottom:248.610000px;}
.yf8{bottom:255.630000px;}
.y7b{bottom:257.610000px;}
.ybf{bottom:260.490000px;}
.y3d{bottom:266.835000px;}
.yec{bottom:270.615000px;}
.y5f{bottom:281.595000px;}
.y7a{bottom:283.395000px;}
.yab{bottom:286.635000px;}
.y3c{bottom:292.575000px;}
.yeb{bottom:296.355000px;}
.ybe{bottom:298.515000px;}
.y5e{bottom:307.515000px;}
.y3b{bottom:318.495000px;}
.y79{bottom:321.375000px;}
.yea{bottom:322.275000px;}
.yaa{bottom:324.435000px;}
.ybd{bottom:330.735000px;}
.y5d{bottom:333.255000px;}
.y3a{bottom:344.415000px;}
.y78{bottom:347.115000px;}
.ye9{bottom:348.195000px;}
.yd2{bottom:356.400000px;}
.y20{bottom:358.815000px;}
.y5c{bottom:359.175000px;}
.ya9{bottom:362.235000px;}
.ybc{bottom:368.535000px;}
.y39{bottom:370.335000px;}
.y77{bottom:373.035000px;}
.ye8{bottom:374.115000px;}
.y1f{bottom:384.735000px;}
.y5b{bottom:385.095000px;}
.ya8{bottom:388.155000px;}
.y38{bottom:396.075000px;}
.y76{bottom:398.955000px;}
.ybb{bottom:406.335000px;}
.y5a{bottom:411.015000px;}
.y1e{bottom:411.735000px;}
.ye7{bottom:411.915000px;}
.ya7{bottom:414.075000px;}
.ycf{bottom:414.180000px;}
.y75{bottom:424.875000px;}
.y37{bottom:434.055000px;}
.y59{bottom:436.755000px;}
.ya6{bottom:439.995000px;}
.y1d{bottom:440.175000px;}
.yba{bottom:444.315000px;}
.ye6{bottom:449.715000px;}
.y74{bottom:450.615000px;}
.y58{bottom:462.675000px;}
.ya5{bottom:465.735000px;}
.y1c{bottom:468.615000px;}
.y36{bottom:471.855000px;}
.ye5{bottom:475.635000px;}
.y73{bottom:476.535000px;}
.yb9{bottom:482.115000px;}
.y57{bottom:488.595000px;}
.ya4{bottom:491.655000px;}
.y1b{bottom:495.975000px;}
.y35{bottom:497.775000px;}
.ycd{bottom:500.835000px;}
.yc9{bottom:500.940000px;}
.ye4{bottom:501.555000px;}
.y72{bottom:514.335000px;}
.ya3{bottom:517.575000px;}
.yb8{bottom:520.095000px;}
.y1a{bottom:521.895000px;}
.y34{bottom:523.695000px;}
.y56{bottom:526.395000px;}
.ye3{bottom:527.475000px;}
.y8d{bottom:528.405000px;}
.y71{bottom:540.285000px;}
.ya2{bottom:543.525000px;}
.y19{bottom:547.665000px;}
.y55{bottom:552.345000px;}
.y8c{bottom:554.145000px;}
.yb7{bottom:557.925000px;}
.y33{bottom:561.525000px;}
.ye2{bottom:565.305000px;}
.y70{bottom:566.205000px;}
.ya1{bottom:569.265000px;}
.y10e{bottom:572.505000px;}
.y18{bottom:573.585000px;}
.y54{bottom:578.265000px;}
.y8b{bottom:580.065000px;}
.y32{bottom:587.445000px;}
.y6f{bottom:592.125000px;}
.ya0{bottom:595.185000px;}
.yb6{bottom:595.905000px;}
.y17{bottom:599.505000px;}
.ye1{bottom:603.105000px;}
.y10d{bottom:603.465000px;}
.y53{bottom:604.005000px;}
.y8a{bottom:605.985000px;}
.y31{bottom:613.365000px;}
.yc6{bottom:613.440000px;}
.y6e{bottom:617.865000px;}
.y9f{bottom:621.105000px;}
.y16{bottom:625.425000px;}
.ye0{bottom:629.025000px;}
.y52{bottom:629.925000px;}
.y89{bottom:631.905000px;}
.yb5{bottom:633.705000px;}
.y10c{bottom:634.605000px;}
.y30{bottom:639.105000px;}
.y6d{bottom:643.785000px;}
.y9e{bottom:646.845000px;}
.y15{bottom:651.165000px;}
.ydf{bottom:654.945000px;}
.y51{bottom:655.845000px;}
.y88{bottom:657.645000px;}
.yc4{bottom:659.085000px;}
.y2f{bottom:665.025000px;}
.y10b{bottom:665.565000px;}
.y6c{bottom:669.705000px;}
.yb4{bottom:671.505000px;}
.y9d{bottom:672.765000px;}
.y14{bottom:677.085000px;}
.y50{bottom:681.765000px;}
.y87{bottom:683.565000px;}
.y2e{bottom:690.945000px;}
.yde{bottom:692.745000px;}
.yf7{bottom:695.625000px;}
.y10a{bottom:696.705000px;}
.y9c{bottom:698.685000px;}
.y13{bottom:703.005000px;}
.y4f{bottom:707.505000px;}
.y86{bottom:709.485000px;}
.yf6{bottom:721.365000px;}
.y109{bottom:725.325000px;}
.y2d{bottom:728.745000px;}
.y12{bottom:728.925000px;}
.ydd{bottom:730.725000px;}
.y4e{bottom:733.425000px;}
.y85{bottom:735.225000px;}
.y9b{bottom:736.485000px;}
.yb3{bottom:747.285000px;}
.y108{bottom:751.065000px;}
.y11{bottom:754.665000px;}
.ydc{bottom:756.465000px;}
.y6b{bottom:759.345000px;}
.y4d{bottom:771.225000px;}
.y84{bottom:773.205000px;}
.y9a{bottom:774.465000px;}
.y107{bottom:776.985000px;}
.y10{bottom:780.585000px;}
.ydb{bottom:782.385000px;}
.y6a{bottom:785.265000px;}
.y4c{bottom:797.190000px;}
.yb2{bottom:799.170000px;}
.y99{bottom:800.430000px;}
.y106{bottom:802.950000px;}
.y2c{bottom:806.370000px;}
.yda{bottom:808.350000px;}
.yf{bottom:810.150000px;}
.y69{bottom:811.050000px;}
.y4b{bottom:823.110000px;}
.yf5{bottom:824.910000px;}
.y98{bottom:826.170000px;}
.y105{bottom:828.690000px;}
.y2b{bottom:832.290000px;}
.y68{bottom:836.970000px;}
.ye{bottom:841.110000px;}
.yd9{bottom:846.150000px;}
.y4a{bottom:849.030000px;}
.yf4{bottom:850.830000px;}
.y97{bottom:852.090000px;}
.y104{bottom:854.610000px;}
.y2a{bottom:858.210000px;}
.yd{bottom:860.370000px;}
.y67{bottom:862.890000px;}
.y49{bottom:874.770000px;}
.yf3{bottom:876.750000px;}
.y96{bottom:878.010000px;}
.yc{bottom:879.270000px;}
.y103{bottom:880.530000px;}
.yd8{bottom:884.130000px;}
.y66{bottom:888.630000px;}
.y29{bottom:896.010000px;}
.y48{bottom:900.690000px;}
.yf2{bottom:902.670000px;}
.y95{bottom:903.750000px;}
.yb{bottom:905.010000px;}
.y102{bottom:906.450000px;}
.yd7{bottom:909.870000px;}
.y65{bottom:914.550000px;}
.ya{bottom:915.630000px;}
.y28{bottom:921.930000px;}
.y47{bottom:926.610000px;}
.y9{bottom:928.410000px;}
.y94{bottom:929.670000px;}
.y101{bottom:932.190000px;}
.yd6{bottom:935.790000px;}
.y83{bottom:940.470000px;}
.y27{bottom:947.850000px;}
.y8{bottom:950.190000px;}
.y46{bottom:952.530000px;}
.y93{bottom:955.590000px;}
.y100{bottom:958.110000px;}
.yd5{bottom:961.710000px;}
.y7{bottom:964.230000px;}
.y82{bottom:966.390000px;}
.y26{bottom:973.770000px;}
.y45{bottom:978.270000px;}
.y92{bottom:981.510000px;}
.yd4{bottom:987.630000px;}
.yff{bottom:990.150000px;}
.y81{bottom:992.130000px;}
.y6{bottom:995.370000px;}
.y25{bottom:999.510000px;}
.y44{bottom:1004.190000px;}
.yfe{bottom:1010.130000px;}
.y91{bottom:1019.310000px;}
.y5{bottom:1023.090000px;}
.y24{bottom:1025.430000px;}
.y43{bottom:1030.110000px;}
.y4{bottom:1040.190000px;}
.y23{bottom:1051.350000px;}
.y1{bottom:1172.520000px;}
.h13{height:16.200000px;}
.hd{height:19.440000px;}
.h5{height:25.400391px;}
.h7{height:31.829766px;}
.h4{height:34.036523px;}
.ha{height:41.726953px;}
.hc{height:42.164648px;}
.h12{height:43.920000px;}
.he{height:44.460000px;}
.hb{height:45.549492px;}
.h2{height:46.251562px;}
.h9{height:46.736719px;}
.h14{height:48.027656px;}
.h1{height:48.256875px;}
.h10{height:48.361781px;}
.h15{height:50.273438px;}
.h8{height:50.488594px;}
.h6{height:68.340586px;}
.hf{height:75.960000px;}
.h11{height:75.996000px;}
.h3{height:76.201172px;}
.h0{height:1188.000000px;}
.w4{width:208.620000px;}
.w5{width:208.650000px;}
.w7{width:224.820000px;}
.w2{width:227.370000px;}
.w3{width:245.160000px;}
.w6{width:280.620000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:15.195000px;}
.x1b{left:20.415000px;}
.x16{left:23.115000px;}
.x14{left:29.340000px;}
.x17{left:38.775000px;}
.x1a{left:51.915000px;}
.x19{left:59.475000px;}
.x1e{left:65.595000px;}
.x1f{left:85.395000px;}
.x1c{left:104.220000px;}
.x1{left:108.035986px;}
.x5{left:113.795986px;}
.x6{left:170.129986px;}
.x9{left:183.809986px;}
.x8{left:207.749986px;}
.x12{left:282.269986px;}
.xa{left:299.774986px;}
.xc{left:301.034986px;}
.x10{left:308.054986px;}
.x1d{left:324.000000px;}
.x7{left:339.194986px;}
.x15{left:343.080000px;}
.x20{left:345.420000px;}
.x13{left:351.075000px;}
.x18{left:361.440000px;}
.x4{left:474.014986px;}
.xe{left:660.164986px;}
.xf{left:690.989986px;}
.xb{left:732.929986px;}
.x2{left:753.629986px;}
.x11{left:811.229986px;}
.x3{left:825.629986px;}
.xd{left:840.029986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls3{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:7.306667pt;}
.lsf{letter-spacing:8.480000pt;}
.ws1{word-spacing:-96.000000pt;}
.ws9{word-spacing:-16.135573pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:1.118720pt;}
._b{margin-left:-3.460480pt;}
._5{margin-left:-2.223360pt;}
._1{margin-left:-1.048320pt;}
._0{width:0.896000pt;}
._3{width:2.344320pt;}
._7{width:3.339520pt;}
._6{width:4.833920pt;}
._4{width:6.002560pt;}
._a{width:7.656320pt;}
._e{width:8.545280pt;}
._10{width:10.211413pt;}
._c{width:11.394347pt;}
._12{width:12.322347pt;}
._2{width:14.661120pt;}
._f{width:15.723520pt;}
._11{width:16.633600pt;}
._8{width:18.305493pt;}
._9{width:19.239467pt;}
._13{width:20.820053pt;}
._1a{width:22.051840pt;}
._1b{width:23.206400pt;}
._d{width:24.123520pt;}
._1c{width:34.687360pt;}
._16{width:50.152320pt;}
._19{width:74.291840pt;}
._15{width:127.116160pt;}
._14{width:128.026240pt;}
._18{width:167.792427pt;}
._17{width:172.905600pt;}
.fs3{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.yce{bottom:-23.200000pt;}
.yd3{bottom:-0.093333pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:2.466667pt;}
.yc8{bottom:3.133333pt;}
.yc5{bottom:3.360000pt;}
.ycc{bottom:9.026667pt;}
.yd0{bottom:24.546667pt;}
.yc7{bottom:25.053333pt;}
.ycb{bottom:30.973333pt;}
.yca{bottom:53.053333pt;}
.y3{bottom:60.672000pt;}
.y2{bottom:77.472000pt;}
.y22{bottom:101.632000pt;}
.yb1{bottom:105.952000pt;}
.y90{bottom:109.952000pt;}
.yfd{bottom:112.192000pt;}
.y80{bottom:113.952000pt;}
.yf1{bottom:114.752000pt;}
.yc3{bottom:118.272000pt;}
.y42{bottom:122.112000pt;}
.y64{bottom:124.512000pt;}
.yb0{bottom:128.992000pt;}
.y21{bottom:130.272000pt;}
.yfc{bottom:135.226667pt;}
.y7f{bottom:136.986667pt;}
.yf0{bottom:137.786667pt;}
.y8f{bottom:138.586667pt;}
.y41{bottom:145.146667pt;}
.y63{bottom:147.546667pt;}
.yc2{bottom:151.866667pt;}
.yaf{bottom:152.026667pt;}
.yfb{bottom:158.266667pt;}
.y7e{bottom:159.866667pt;}
.yef{bottom:160.826667pt;}
.y40{bottom:168.186667pt;}
.y8e{bottom:169.466667pt;}
.y62{bottom:170.586667pt;}
.yae{bottom:175.066667pt;}
.yfa{bottom:181.306667pt;}
.y7d{bottom:182.906667pt;}
.yee{bottom:183.706667pt;}
.yc1{bottom:185.626667pt;}
.y3f{bottom:191.066667pt;}
.y61{bottom:193.626667pt;}
.yad{bottom:197.946667pt;}
.yf9{bottom:204.186667pt;}
.y7c{bottom:205.946667pt;}
.yed{bottom:206.746667pt;}
.yc0{bottom:208.506667pt;}
.y3e{bottom:214.106667pt;}
.y60{bottom:216.506667pt;}
.yac{bottom:220.986667pt;}
.yf8{bottom:227.226667pt;}
.y7b{bottom:228.986667pt;}
.ybf{bottom:231.546667pt;}
.y3d{bottom:237.186667pt;}
.yec{bottom:240.546667pt;}
.y5f{bottom:250.306667pt;}
.y7a{bottom:251.906667pt;}
.yab{bottom:254.786667pt;}
.y3c{bottom:260.066667pt;}
.yeb{bottom:263.426667pt;}
.ybe{bottom:265.346667pt;}
.y5e{bottom:273.346667pt;}
.y3b{bottom:283.106667pt;}
.y79{bottom:285.666667pt;}
.yea{bottom:286.466667pt;}
.yaa{bottom:288.386667pt;}
.ybd{bottom:293.986667pt;}
.y5d{bottom:296.226667pt;}
.y3a{bottom:306.146667pt;}
.y78{bottom:308.546667pt;}
.ye9{bottom:309.506667pt;}
.yd2{bottom:316.800000pt;}
.y20{bottom:318.946667pt;}
.y5c{bottom:319.266667pt;}
.ya9{bottom:321.986667pt;}
.ybc{bottom:327.586667pt;}
.y39{bottom:329.186667pt;}
.y77{bottom:331.586667pt;}
.ye8{bottom:332.546667pt;}
.y1f{bottom:341.986667pt;}
.y5b{bottom:342.306667pt;}
.ya8{bottom:345.026667pt;}
.y38{bottom:352.066667pt;}
.y76{bottom:354.626667pt;}
.ybb{bottom:361.186667pt;}
.y5a{bottom:365.346667pt;}
.y1e{bottom:365.986667pt;}
.ye7{bottom:366.146667pt;}
.ya7{bottom:368.066667pt;}
.ycf{bottom:368.160000pt;}
.y75{bottom:377.666667pt;}
.y37{bottom:385.826667pt;}
.y59{bottom:388.226667pt;}
.ya6{bottom:391.106667pt;}
.y1d{bottom:391.266667pt;}
.yba{bottom:394.946667pt;}
.ye6{bottom:399.746667pt;}
.y74{bottom:400.546667pt;}
.y58{bottom:411.266667pt;}
.ya5{bottom:413.986667pt;}
.y1c{bottom:416.546667pt;}
.y36{bottom:419.426667pt;}
.ye5{bottom:422.786667pt;}
.y73{bottom:423.586667pt;}
.yb9{bottom:428.546667pt;}
.y57{bottom:434.306667pt;}
.ya4{bottom:437.026667pt;}
.y1b{bottom:440.866667pt;}
.y35{bottom:442.466667pt;}
.ycd{bottom:445.186667pt;}
.yc9{bottom:445.280000pt;}
.ye4{bottom:445.826667pt;}
.y72{bottom:457.186667pt;}
.ya3{bottom:460.066667pt;}
.yb8{bottom:462.306667pt;}
.y1a{bottom:463.906667pt;}
.y34{bottom:465.506667pt;}
.y56{bottom:467.906667pt;}
.ye3{bottom:468.866667pt;}
.y8d{bottom:469.693333pt;}
.y71{bottom:480.253333pt;}
.ya2{bottom:483.133333pt;}
.y19{bottom:486.813333pt;}
.y55{bottom:490.973333pt;}
.y8c{bottom:492.573333pt;}
.yb7{bottom:495.933333pt;}
.y33{bottom:499.133333pt;}
.ye2{bottom:502.493333pt;}
.y70{bottom:503.293333pt;}
.ya1{bottom:506.013333pt;}
.y10e{bottom:508.893333pt;}
.y18{bottom:509.853333pt;}
.y54{bottom:514.013333pt;}
.y8b{bottom:515.613333pt;}
.y32{bottom:522.173333pt;}
.y6f{bottom:526.333333pt;}
.ya0{bottom:529.053333pt;}
.yb6{bottom:529.693333pt;}
.y17{bottom:532.893333pt;}
.ye1{bottom:536.093333pt;}
.y10d{bottom:536.413333pt;}
.y53{bottom:536.893333pt;}
.y8a{bottom:538.653333pt;}
.y31{bottom:545.213333pt;}
.yc6{bottom:545.280000pt;}
.y6e{bottom:549.213333pt;}
.y9f{bottom:552.093333pt;}
.y16{bottom:555.933333pt;}
.ye0{bottom:559.133333pt;}
.y52{bottom:559.933333pt;}
.y89{bottom:561.693333pt;}
.yb5{bottom:563.293333pt;}
.y10c{bottom:564.093333pt;}
.y30{bottom:568.093333pt;}
.y6d{bottom:572.253333pt;}
.y9e{bottom:574.973333pt;}
.y15{bottom:578.813333pt;}
.ydf{bottom:582.173333pt;}
.y51{bottom:582.973333pt;}
.y88{bottom:584.573333pt;}
.yc4{bottom:585.853333pt;}
.y2f{bottom:591.133333pt;}
.y10b{bottom:591.613333pt;}
.y6c{bottom:595.293333pt;}
.yb4{bottom:596.893333pt;}
.y9d{bottom:598.013333pt;}
.y14{bottom:601.853333pt;}
.y50{bottom:606.013333pt;}
.y87{bottom:607.613333pt;}
.y2e{bottom:614.173333pt;}
.yde{bottom:615.773333pt;}
.yf7{bottom:618.333333pt;}
.y10a{bottom:619.293333pt;}
.y9c{bottom:621.053333pt;}
.y13{bottom:624.893333pt;}
.y4f{bottom:628.893333pt;}
.y86{bottom:630.653333pt;}
.yf6{bottom:641.213333pt;}
.y109{bottom:644.733333pt;}
.y2d{bottom:647.773333pt;}
.y12{bottom:647.933333pt;}
.ydd{bottom:649.533333pt;}
.y4e{bottom:651.933333pt;}
.y85{bottom:653.533333pt;}
.y9b{bottom:654.653333pt;}
.yb3{bottom:664.253333pt;}
.y108{bottom:667.613333pt;}
.y11{bottom:670.813333pt;}
.ydc{bottom:672.413333pt;}
.y6b{bottom:674.973333pt;}
.y4d{bottom:685.533333pt;}
.y84{bottom:687.293333pt;}
.y9a{bottom:688.413333pt;}
.y107{bottom:690.653333pt;}
.y10{bottom:693.853333pt;}
.ydb{bottom:695.453333pt;}
.y6a{bottom:698.013333pt;}
.y4c{bottom:708.613333pt;}
.yb2{bottom:710.373333pt;}
.y99{bottom:711.493333pt;}
.y106{bottom:713.733333pt;}
.y2c{bottom:716.773333pt;}
.yda{bottom:718.533333pt;}
.yf{bottom:720.133333pt;}
.y69{bottom:720.933333pt;}
.y4b{bottom:731.653333pt;}
.yf5{bottom:733.253333pt;}
.y98{bottom:734.373333pt;}
.y105{bottom:736.613333pt;}
.y2b{bottom:739.813333pt;}
.y68{bottom:743.973333pt;}
.ye{bottom:747.653333pt;}
.yd9{bottom:752.133333pt;}
.y4a{bottom:754.693333pt;}
.yf4{bottom:756.293333pt;}
.y97{bottom:757.413333pt;}
.y104{bottom:759.653333pt;}
.y2a{bottom:762.853333pt;}
.yd{bottom:764.773333pt;}
.y67{bottom:767.013333pt;}
.y49{bottom:777.573333pt;}
.yf3{bottom:779.333333pt;}
.y96{bottom:780.453333pt;}
.yc{bottom:781.573333pt;}
.y103{bottom:782.693333pt;}
.yd8{bottom:785.893333pt;}
.y66{bottom:789.893333pt;}
.y29{bottom:796.453333pt;}
.y48{bottom:800.613333pt;}
.yf2{bottom:802.373333pt;}
.y95{bottom:803.333333pt;}
.yb{bottom:804.453333pt;}
.y102{bottom:805.733333pt;}
.yd7{bottom:808.773333pt;}
.y65{bottom:812.933333pt;}
.ya{bottom:813.893333pt;}
.y28{bottom:819.493333pt;}
.y47{bottom:823.653333pt;}
.y9{bottom:825.253333pt;}
.y94{bottom:826.373333pt;}
.y101{bottom:828.613333pt;}
.yd6{bottom:831.813333pt;}
.y83{bottom:835.973333pt;}
.y27{bottom:842.533333pt;}
.y8{bottom:844.613333pt;}
.y46{bottom:846.693333pt;}
.y93{bottom:849.413333pt;}
.y100{bottom:851.653333pt;}
.yd5{bottom:854.853333pt;}
.y7{bottom:857.093333pt;}
.y82{bottom:859.013333pt;}
.y26{bottom:865.573333pt;}
.y45{bottom:869.573333pt;}
.y92{bottom:872.453333pt;}
.yd4{bottom:877.893333pt;}
.yff{bottom:880.133333pt;}
.y81{bottom:881.893333pt;}
.y6{bottom:884.773333pt;}
.y25{bottom:888.453333pt;}
.y44{bottom:892.613333pt;}
.yfe{bottom:897.893333pt;}
.y91{bottom:906.053333pt;}
.y5{bottom:909.413333pt;}
.y24{bottom:911.493333pt;}
.y43{bottom:915.653333pt;}
.y4{bottom:924.613333pt;}
.y23{bottom:934.533333pt;}
.y1{bottom:1042.240000pt;}
.h13{height:14.400000pt;}
.hd{height:17.280000pt;}
.h5{height:22.578125pt;}
.h7{height:28.293125pt;}
.h4{height:30.254687pt;}
.ha{height:37.090625pt;}
.hc{height:37.479688pt;}
.h12{height:39.040000pt;}
.he{height:39.520000pt;}
.hb{height:40.488438pt;}
.h2{height:41.112500pt;}
.h9{height:41.543750pt;}
.h14{height:42.691250pt;}
.h1{height:42.895000pt;}
.h10{height:42.988250pt;}
.h15{height:44.687500pt;}
.h8{height:44.878750pt;}
.h6{height:60.747188pt;}
.hf{height:67.520000pt;}
.h11{height:67.552000pt;}
.h3{height:67.734375pt;}
.h0{height:1056.000000pt;}
.w4{width:185.440000pt;}
.w5{width:185.466667pt;}
.w7{width:199.840000pt;}
.w2{width:202.106667pt;}
.w3{width:217.920000pt;}
.w6{width:249.440000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:13.506667pt;}
.x1b{left:18.146667pt;}
.x16{left:20.546667pt;}
.x14{left:26.080000pt;}
.x17{left:34.466667pt;}
.x1a{left:46.146667pt;}
.x19{left:52.866667pt;}
.x1e{left:58.306667pt;}
.x1f{left:75.906667pt;}
.x1c{left:92.640000pt;}
.x1{left:96.031988pt;}
.x5{left:101.151988pt;}
.x6{left:151.226655pt;}
.x9{left:163.386655pt;}
.x8{left:184.666655pt;}
.x12{left:250.906655pt;}
.xa{left:266.466655pt;}
.xc{left:267.586655pt;}
.x10{left:273.826655pt;}
.x1d{left:288.000000pt;}
.x7{left:301.506655pt;}
.x15{left:304.960000pt;}
.x20{left:307.040000pt;}
.x13{left:312.066667pt;}
.x18{left:321.280000pt;}
.x4{left:421.346655pt;}
.xe{left:586.813321pt;}
.xf{left:614.213321pt;}
.xb{left:651.493321pt;}
.x2{left:669.893321pt;}
.x11{left:721.093321pt;}
.x3{left:733.893321pt;}
.xd{left:746.693321pt;}
}




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