
    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_a11ce91d91cc213293828bc8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.074219;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_76a2703ee4aea3eb1965f19b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_028c093d0cd87ed3f6ae68bd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.076191;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_094349432dd5462dc617bbbd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_51fee48f4eb905915d85e799.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_2f54872875f80dbe5eb812a6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_901b859f878dcd97e216c739.woff')format("woff");}.ff7{font-family:ff7;line-height:0.827637;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:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.228000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws6{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-9.600000px;}
.ws4{word-spacing:-7.800000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-10.164000px;}
._49{margin-left:-8.814000px;}
._5{margin-left:-7.686000px;}
._6{margin-left:-6.336000px;}
._2{margin-left:-4.500000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._9{width:3.066000px;}
._f{width:4.266000px;}
._12{width:5.898000px;}
._e{width:7.062000px;}
._7{width:8.778000px;}
._8{width:9.834000px;}
._13{width:11.262000px;}
._15{width:12.816000px;}
._d{width:13.890000px;}
._c{width:14.982000px;}
._16{width:16.698000px;}
._a{width:18.216000px;}
._b{width:20.064000px;}
._20{width:22.008000px;}
._18{width:23.136000px;}
._17{width:24.312000px;}
._19{width:25.758000px;}
._39{width:27.276000px;}
._23{width:28.632000px;}
._24{width:29.952000px;}
._30{width:31.524000px;}
._22{width:33.264000px;}
._2e{width:34.332000px;}
._11{width:35.376000px;}
._10{width:36.624000px;}
._32{width:38.088000px;}
._29{width:39.384000px;}
._14{width:41.076000px;}
._1f{width:42.408000px;}
._34{width:43.512000px;}
._2f{width:45.084000px;}
._2a{width:46.404000px;}
._37{width:47.688000px;}
._3f{width:49.692000px;}
._2d{width:55.464000px;}
._1d{width:56.736000px;}
._2b{width:57.888000px;}
._46{width:61.296000px;}
._38{width:62.544000px;}
._2c{width:64.272000px;}
._33{width:66.048000px;}
._3c{width:68.112000px;}
._3b{width:69.312000px;}
._41{width:71.352000px;}
._3e{width:73.404000px;}
._35{width:74.952000px;}
._36{width:76.296000px;}
._25{width:82.092000px;}
._26{width:83.304000px;}
._21{width:85.032000px;}
._45{width:105.756000px;}
._40{width:107.136000px;}
._44{width:139.752000px;}
._43{width:141.156000px;}
._3d{width:143.136000px;}
._1e{width:146.532000px;}
._31{width:147.660000px;}
._3a{width:149.844000px;}
._42{width:151.788000px;}
._27{width:154.272000px;}
._28{width:155.952000px;}
._4a{width:171.504000px;}
._4b{width:172.944000px;}
._47{width:252.792000px;}
._1b{width:358.668000px;}
._1a{width:394.608000px;}
._48{width:439.296000px;}
._1c{width:658.692000px;}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs8{font-size:31.200000px;}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3c{bottom:87.541500px;}
.y5c{bottom:89.641500px;}
.ya5{bottom:136.891500px;}
.yde{bottom:139.891500px;}
.ya6{bottom:143.041500px;}
.ycd{bottom:143.791500px;}
.y61{bottom:144.391500px;}
.ydd{bottom:144.541500px;}
.y5d{bottom:156.391500px;}
.ya4{bottom:160.741500px;}
.ya3{bottom:163.741500px;}
.ycc{bottom:164.491500px;}
.y60{bottom:165.091500px;}
.y104{bottom:167.941500px;}
.ydc{bottom:175.591500px;}
.ya2{bottom:184.441500px;}
.ycb{bottom:185.191500px;}
.y5b{bottom:187.441500px;}
.y103{bottom:191.791500px;}
.y5f{bottom:205.141500px;}
.ya1{bottom:205.891500px;}
.ydb{bottom:206.641500px;}
.y102{bottom:215.491500px;}
.y5a{bottom:218.491500px;}
.ya0{bottom:226.591500px;}
.y5e{bottom:235.741500px;}
.yda{bottom:237.691500px;}
.y101{bottom:239.341500px;}
.y9f{bottom:247.291500px;}
.y59{bottom:249.541500px;}
.y8d{bottom:260.191500px;}
.y100{bottom:263.041500px;}
.y9e{bottom:267.991500px;}
.yd9{bottom:268.741500px;}
.y58{bottom:280.591500px;}
.y8c{bottom:284.041500px;}
.yff{bottom:286.891500px;}
.y9d{bottom:288.691500px;}
.yd8{bottom:299.791500px;}
.y8b{bottom:307.741500px;}
.y9c{bottom:309.391500px;}
.yfe{bottom:310.591500px;}
.y57{bottom:311.641500px;}
.y9b{bottom:330.091500px;}
.yd7{bottom:330.841500px;}
.y8a{bottom:331.591500px;}
.yfd{bottom:334.441500px;}
.y56{bottom:342.691500px;}
.y9a{bottom:350.791500px;}
.y89{bottom:355.291500px;}
.yfc{bottom:358.141500px;}
.yd6{bottom:361.891500px;}
.y3b{bottom:370.891500px;}
.y99{bottom:371.491500px;}
.yca{bottom:372.241500px;}
.y55{bottom:373.741500px;}
.y88{bottom:379.141500px;}
.yfb{bottom:381.991500px;}
.y98{bottom:392.191500px;}
.y3a{bottom:392.641500px;}
.yc9{bottom:392.941500px;}
.y87{bottom:402.841500px;}
.y54{bottom:404.791500px;}
.yfa{bottom:405.691500px;}
.y97{bottom:412.891500px;}
.yc8{bottom:413.641500px;}
.yd5{bottom:423.991500px;}
.y1e{bottom:426.691500px;}
.yf9{bottom:429.541500px;}
.y96{bottom:433.591500px;}
.yc7{bottom:434.341500px;}
.y53{bottom:435.841500px;}
.y39{bottom:436.141500px;}
.y1d{bottom:443.941500px;}
.y86{bottom:450.391500px;}
.yf8{bottom:453.241500px;}
.y95{bottom:454.291500px;}
.yc6{bottom:455.041500px;}
.y38{bottom:457.891500px;}
.y1c{bottom:461.341500px;}
.y52{bottom:466.891500px;}
.y85{bottom:474.241500px;}
.y94{bottom:474.991500px;}
.yc5{bottom:475.741500px;}
.yf7{bottom:477.091500px;}
.y1b{bottom:478.591500px;}
.y37{bottom:479.641500px;}
.yd4{bottom:486.091500px;}
.y93{bottom:495.691500px;}
.y1a{bottom:495.991500px;}
.yc4{bottom:496.441500px;}
.y51{bottom:497.941500px;}
.yf6{bottom:500.791500px;}
.y36{bottom:501.391500px;}
.y19{bottom:513.241500px;}
.y92{bottom:516.391500px;}
.yc3{bottom:517.141500px;}
.y84{bottom:521.791500px;}
.y35{bottom:523.141500px;}
.yf5{bottom:524.641500px;}
.ybd{bottom:524.791500px;}
.y50{bottom:528.991500px;}
.y18{bottom:530.641500px;}
.y91{bottom:537.091500px;}
.yc2{bottom:537.841500px;}
.y34{bottom:544.891500px;}
.y83{bottom:545.491500px;}
.y17{bottom:547.891500px;}
.yd3{bottom:548.191500px;}
.yf4{bottom:548.341500px;}
.ybc{bottom:548.491500px;}
.y90{bottom:557.791500px;}
.yc1{bottom:558.541500px;}
.y4f{bottom:560.041500px;}
.y16{bottom:565.291500px;}
.y33{bottom:566.641500px;}
.y82{bottom:569.341500px;}
.yf3{bottom:572.191500px;}
.ybb{bottom:572.341500px;}
.y8f{bottom:578.491500px;}
.yc0{bottom:579.241500px;}
.y15{bottom:582.541500px;}
.y32{bottom:588.391500px;}
.y4e{bottom:591.091500px;}
.y81{bottom:593.041500px;}
.yf2{bottom:595.891500px;}
.yba{bottom:596.041500px;}
.y8e{bottom:599.191500px;}
.y14{bottom:599.941500px;}
.y31{bottom:610.141500px;}
.yd2{bottom:610.291500px;}
.y80{bottom:616.891500px;}
.y13{bottom:617.191500px;}
.yf1{bottom:619.741500px;}
.y7f{bottom:619.891500px;}
.ybf{bottom:620.641500px;}
.y4d{bottom:622.141500px;}
.y30{bottom:631.891500px;}
.y12{bottom:634.591500px;}
.y7e{bottom:640.591500px;}
.ybe{bottom:641.341500px;}
.yf0{bottom:643.441500px;}
.yb9{bottom:643.591500px;}
.y11{bottom:651.841500px;}
.y4c{bottom:653.191500px;}
.y2f{bottom:653.641500px;}
.y7d{bottom:662.041500px;}
.yef{bottom:667.291500px;}
.yb8{bottom:667.441500px;}
.y10{bottom:669.241500px;}
.yd1{bottom:672.391500px;}
.y2e{bottom:675.391500px;}
.y7c{bottom:682.741500px;}
.y4b{bottom:684.241500px;}
.yf{bottom:686.491500px;}
.yee{bottom:690.991500px;}
.yb7{bottom:691.141500px;}
.y2d{bottom:697.141500px;}
.y7b{bottom:703.441500px;}
.yed{bottom:714.841500px;}
.yb6{bottom:714.991500px;}
.y4a{bottom:715.291500px;}
.y2c{bottom:718.891500px;}
.y7a{bottom:724.141500px;}
.ye{bottom:724.291500px;}
.yd0{bottom:734.491500px;}
.yec{bottom:738.541500px;}
.yb5{bottom:738.691500px;}
.y2b{bottom:740.641500px;}
.yd{bottom:741.691500px;}
.y79{bottom:744.841500px;}
.y49{bottom:746.341500px;}
.y2a{bottom:762.391500px;}
.yb4{bottom:762.541500px;}
.y78{bottom:765.541500px;}
.yc{bottom:776.341500px;}
.y48{bottom:777.391500px;}
.y29{bottom:784.141500px;}
.yeb{bottom:786.091500px;}
.y77{bottom:786.241500px;}
.ycf{bottom:796.591500px;}
.y28{bottom:805.891500px;}
.y76{bottom:806.941500px;}
.yb3{bottom:807.691500px;}
.y47{bottom:808.441500px;}
.yea{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.y27{bottom:827.641500px;}
.ya{bottom:828.241500px;}
.yb2{bottom:828.391500px;}
.y70{bottom:829.891500px;}
.ye9{bottom:833.641500px;}
.y46{bottom:839.491500px;}
.y75{bottom:848.341500px;}
.yb1{bottom:849.091500px;}
.y26{bottom:849.391500px;}
.y6f{bottom:853.741500px;}
.ye8{bottom:857.491500px;}
.yce{bottom:858.691500px;}
.y9{bottom:862.741500px;}
.y74{bottom:869.041500px;}
.yb0{bottom:869.791500px;}
.y45{bottom:870.541500px;}
.y6e{bottom:877.441500px;}
.y25{bottom:878.941500px;}
.y8{bottom:879.991500px;}
.ye7{bottom:881.191500px;}
.y73{bottom:889.741500px;}
.yaf{bottom:890.491500px;}
.y7{bottom:897.391500px;}
.y6d{bottom:901.291500px;}
.y44{bottom:901.591500px;}
.ye6{bottom:905.041500px;}
.y72{bottom:910.441500px;}
.yae{bottom:911.191500px;}
.y6c{bottom:924.991500px;}
.ye5{bottom:928.741500px;}
.y71{bottom:931.141500px;}
.y6{bottom:931.891500px;}
.y43{bottom:932.641500px;}
.y24{bottom:942.991500px;}
.y6b{bottom:948.841500px;}
.y5{bottom:949.291500px;}
.y6a{bottom:951.841500px;}
.yad{bottom:952.591500px;}
.y42{bottom:963.691500px;}
.y23{bottom:967.141500px;}
.y69{bottom:972.541500px;}
.yac{bottom:973.291500px;}
.ye4{bottom:976.291500px;}
.y68{bottom:993.991500px;}
.y41{bottom:994.741500px;}
.yab{bottom:999.391500px;}
.ye3{bottom:1000.141500px;}
.y67{bottom:1014.691500px;}
.y22{bottom:1022.641500px;}
.yaa{bottom:1023.091500px;}
.ye2{bottom:1023.841500px;}
.y40{bottom:1025.791500px;}
.y66{bottom:1035.391500px;}
.y21{bottom:1045.141500px;}
.ya9{bottom:1046.941500px;}
.ye1{bottom:1047.691500px;}
.y65{bottom:1056.091500px;}
.y3f{bottom:1056.841500px;}
.y20{bottom:1067.491500px;}
.ya8{bottom:1070.641500px;}
.ye0{bottom:1071.391500px;}
.y64{bottom:1076.791500px;}
.y3e{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.ya7{bottom:1094.491500px;}
.ydf{bottom:1095.241500px;}
.y63{bottom:1097.491500px;}
.y62{bottom:1118.191500px;}
.y3d{bottom:1118.941500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.hb{height:27.376172px;}
.h5{height:34.968750px;}
.h4{height:41.203125px;}
.h7{height:43.710938px;}
.hf{height:50.765625px;}
.h8{height:52.646484px;}
.h6{height:53.291016px;}
.hd{height:56.654297px;}
.ha{height:59.493750px;}
.h3{height:61.804688px;}
.he{height:63.175781px;}
.hc{height:63.949219px;}
.h9{height:69.278320px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x7{left:87.300000px;}
.xa{left:91.650000px;}
.xb{left:104.400000px;}
.x6{left:139.200000px;}
.x8{left:140.550000px;}
.xf{left:158.400000px;}
.xc{left:225.900000px;}
.x3{left:347.550000px;}
.x2{left:354.750000px;}
.x9{left:356.250000px;}
.xd{left:363.150000px;}
.x5{left:406.950000px;}
.x4{left:412.650000px;}
.xe{left:585.900000px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.202667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-8.533333pt;}
.ws4{word-spacing:-6.933333pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-9.034667pt;}
._49{margin-left:-7.834667pt;}
._5{margin-left:-6.832000pt;}
._6{margin-left:-5.632000pt;}
._2{margin-left:-4.000000pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._9{width:2.725333pt;}
._f{width:3.792000pt;}
._12{width:5.242667pt;}
._e{width:6.277333pt;}
._7{width:7.802667pt;}
._8{width:8.741333pt;}
._13{width:10.010667pt;}
._15{width:11.392000pt;}
._d{width:12.346667pt;}
._c{width:13.317333pt;}
._16{width:14.842667pt;}
._a{width:16.192000pt;}
._b{width:17.834667pt;}
._20{width:19.562667pt;}
._18{width:20.565333pt;}
._17{width:21.610667pt;}
._19{width:22.896000pt;}
._39{width:24.245333pt;}
._23{width:25.450667pt;}
._24{width:26.624000pt;}
._30{width:28.021333pt;}
._22{width:29.568000pt;}
._2e{width:30.517333pt;}
._11{width:31.445333pt;}
._10{width:32.554667pt;}
._32{width:33.856000pt;}
._29{width:35.008000pt;}
._14{width:36.512000pt;}
._1f{width:37.696000pt;}
._34{width:38.677333pt;}
._2f{width:40.074667pt;}
._2a{width:41.248000pt;}
._37{width:42.389333pt;}
._3f{width:44.170667pt;}
._2d{width:49.301333pt;}
._1d{width:50.432000pt;}
._2b{width:51.456000pt;}
._46{width:54.485333pt;}
._38{width:55.594667pt;}
._2c{width:57.130667pt;}
._33{width:58.709333pt;}
._3c{width:60.544000pt;}
._3b{width:61.610667pt;}
._41{width:63.424000pt;}
._3e{width:65.248000pt;}
._35{width:66.624000pt;}
._36{width:67.818667pt;}
._25{width:72.970667pt;}
._26{width:74.048000pt;}
._21{width:75.584000pt;}
._45{width:94.005333pt;}
._40{width:95.232000pt;}
._44{width:124.224000pt;}
._43{width:125.472000pt;}
._3d{width:127.232000pt;}
._1e{width:130.250667pt;}
._31{width:131.253333pt;}
._3a{width:133.194667pt;}
._42{width:134.922667pt;}
._27{width:137.130667pt;}
._28{width:138.624000pt;}
._4a{width:152.448000pt;}
._4b{width:153.728000pt;}
._47{width:224.704000pt;}
._1b{width:318.816000pt;}
._1a{width:350.762667pt;}
._48{width:390.485333pt;}
._1c{width:585.504000pt;}
.fs8{font-size:27.733333pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3c{bottom:77.814667pt;}
.y5c{bottom:79.681333pt;}
.ya5{bottom:121.681333pt;}
.yde{bottom:124.348000pt;}
.ya6{bottom:127.148000pt;}
.ycd{bottom:127.814667pt;}
.y61{bottom:128.348000pt;}
.ydd{bottom:128.481333pt;}
.y5d{bottom:139.014667pt;}
.ya4{bottom:142.881333pt;}
.ya3{bottom:145.548000pt;}
.ycc{bottom:146.214667pt;}
.y60{bottom:146.748000pt;}
.y104{bottom:149.281333pt;}
.ydc{bottom:156.081333pt;}
.ya2{bottom:163.948000pt;}
.ycb{bottom:164.614667pt;}
.y5b{bottom:166.614667pt;}
.y103{bottom:170.481333pt;}
.y5f{bottom:182.348000pt;}
.ya1{bottom:183.014667pt;}
.ydb{bottom:183.681333pt;}
.y102{bottom:191.548000pt;}
.y5a{bottom:194.214667pt;}
.ya0{bottom:201.414667pt;}
.y5e{bottom:209.548000pt;}
.yda{bottom:211.281333pt;}
.y101{bottom:212.748000pt;}
.y9f{bottom:219.814667pt;}
.y59{bottom:221.814667pt;}
.y8d{bottom:231.281333pt;}
.y100{bottom:233.814667pt;}
.y9e{bottom:238.214667pt;}
.yd9{bottom:238.881333pt;}
.y58{bottom:249.414667pt;}
.y8c{bottom:252.481333pt;}
.yff{bottom:255.014667pt;}
.y9d{bottom:256.614667pt;}
.yd8{bottom:266.481333pt;}
.y8b{bottom:273.548000pt;}
.y9c{bottom:275.014667pt;}
.yfe{bottom:276.081333pt;}
.y57{bottom:277.014667pt;}
.y9b{bottom:293.414667pt;}
.yd7{bottom:294.081333pt;}
.y8a{bottom:294.748000pt;}
.yfd{bottom:297.281333pt;}
.y56{bottom:304.614667pt;}
.y9a{bottom:311.814667pt;}
.y89{bottom:315.814667pt;}
.yfc{bottom:318.348000pt;}
.yd6{bottom:321.681333pt;}
.y3b{bottom:329.681333pt;}
.y99{bottom:330.214667pt;}
.yca{bottom:330.881333pt;}
.y55{bottom:332.214667pt;}
.y88{bottom:337.014667pt;}
.yfb{bottom:339.548000pt;}
.y98{bottom:348.614667pt;}
.y3a{bottom:349.014667pt;}
.yc9{bottom:349.281333pt;}
.y87{bottom:358.081333pt;}
.y54{bottom:359.814667pt;}
.yfa{bottom:360.614667pt;}
.y97{bottom:367.014667pt;}
.yc8{bottom:367.681333pt;}
.yd5{bottom:376.881333pt;}
.y1e{bottom:379.281333pt;}
.yf9{bottom:381.814667pt;}
.y96{bottom:385.414667pt;}
.yc7{bottom:386.081333pt;}
.y53{bottom:387.414667pt;}
.y39{bottom:387.681333pt;}
.y1d{bottom:394.614667pt;}
.y86{bottom:400.348000pt;}
.yf8{bottom:402.881333pt;}
.y95{bottom:403.814667pt;}
.yc6{bottom:404.481333pt;}
.y38{bottom:407.014667pt;}
.y1c{bottom:410.081333pt;}
.y52{bottom:415.014667pt;}
.y85{bottom:421.548000pt;}
.y94{bottom:422.214667pt;}
.yc5{bottom:422.881333pt;}
.yf7{bottom:424.081333pt;}
.y1b{bottom:425.414667pt;}
.y37{bottom:426.348000pt;}
.yd4{bottom:432.081333pt;}
.y93{bottom:440.614667pt;}
.y1a{bottom:440.881333pt;}
.yc4{bottom:441.281333pt;}
.y51{bottom:442.614667pt;}
.yf6{bottom:445.148000pt;}
.y36{bottom:445.681333pt;}
.y19{bottom:456.214667pt;}
.y92{bottom:459.014667pt;}
.yc3{bottom:459.681333pt;}
.y84{bottom:463.814667pt;}
.y35{bottom:465.014667pt;}
.yf5{bottom:466.348000pt;}
.ybd{bottom:466.481333pt;}
.y50{bottom:470.214667pt;}
.y18{bottom:471.681333pt;}
.y91{bottom:477.414667pt;}
.yc2{bottom:478.081333pt;}
.y34{bottom:484.348000pt;}
.y83{bottom:484.881333pt;}
.y17{bottom:487.014667pt;}
.yd3{bottom:487.281333pt;}
.yf4{bottom:487.414667pt;}
.ybc{bottom:487.548000pt;}
.y90{bottom:495.814667pt;}
.yc1{bottom:496.481333pt;}
.y4f{bottom:497.814667pt;}
.y16{bottom:502.481333pt;}
.y33{bottom:503.681333pt;}
.y82{bottom:506.081333pt;}
.yf3{bottom:508.614667pt;}
.ybb{bottom:508.748000pt;}
.y8f{bottom:514.214667pt;}
.yc0{bottom:514.881333pt;}
.y15{bottom:517.814667pt;}
.y32{bottom:523.014667pt;}
.y4e{bottom:525.414667pt;}
.y81{bottom:527.148000pt;}
.yf2{bottom:529.681333pt;}
.yba{bottom:529.814667pt;}
.y8e{bottom:532.614667pt;}
.y14{bottom:533.281333pt;}
.y31{bottom:542.348000pt;}
.yd2{bottom:542.481333pt;}
.y80{bottom:548.348000pt;}
.y13{bottom:548.614667pt;}
.yf1{bottom:550.881333pt;}
.y7f{bottom:551.014667pt;}
.ybf{bottom:551.681333pt;}
.y4d{bottom:553.014667pt;}
.y30{bottom:561.681333pt;}
.y12{bottom:564.081333pt;}
.y7e{bottom:569.414667pt;}
.ybe{bottom:570.081333pt;}
.yf0{bottom:571.948000pt;}
.yb9{bottom:572.081333pt;}
.y11{bottom:579.414667pt;}
.y4c{bottom:580.614667pt;}
.y2f{bottom:581.014667pt;}
.y7d{bottom:588.481333pt;}
.yef{bottom:593.148000pt;}
.yb8{bottom:593.281333pt;}
.y10{bottom:594.881333pt;}
.yd1{bottom:597.681333pt;}
.y2e{bottom:600.348000pt;}
.y7c{bottom:606.881333pt;}
.y4b{bottom:608.214667pt;}
.yf{bottom:610.214667pt;}
.yee{bottom:614.214667pt;}
.yb7{bottom:614.348000pt;}
.y2d{bottom:619.681333pt;}
.y7b{bottom:625.281333pt;}
.yed{bottom:635.414667pt;}
.yb6{bottom:635.548000pt;}
.y4a{bottom:635.814667pt;}
.y2c{bottom:639.014667pt;}
.y7a{bottom:643.681333pt;}
.ye{bottom:643.814667pt;}
.yd0{bottom:652.881333pt;}
.yec{bottom:656.481333pt;}
.yb5{bottom:656.614667pt;}
.y2b{bottom:658.348000pt;}
.yd{bottom:659.281333pt;}
.y79{bottom:662.081333pt;}
.y49{bottom:663.414667pt;}
.y2a{bottom:677.681333pt;}
.yb4{bottom:677.814667pt;}
.y78{bottom:680.481333pt;}
.yc{bottom:690.081333pt;}
.y48{bottom:691.014667pt;}
.y29{bottom:697.014667pt;}
.yeb{bottom:698.748000pt;}
.y77{bottom:698.881333pt;}
.ycf{bottom:708.081333pt;}
.y28{bottom:716.348000pt;}
.y76{bottom:717.281333pt;}
.yb3{bottom:717.948000pt;}
.y47{bottom:718.614667pt;}
.yea{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.y27{bottom:735.681333pt;}
.ya{bottom:736.214667pt;}
.yb2{bottom:736.348000pt;}
.y70{bottom:737.681333pt;}
.ye9{bottom:741.014667pt;}
.y46{bottom:746.214667pt;}
.y75{bottom:754.081333pt;}
.yb1{bottom:754.748000pt;}
.y26{bottom:755.014667pt;}
.y6f{bottom:758.881333pt;}
.ye8{bottom:762.214667pt;}
.yce{bottom:763.281333pt;}
.y9{bottom:766.881333pt;}
.y74{bottom:772.481333pt;}
.yb0{bottom:773.148000pt;}
.y45{bottom:773.814667pt;}
.y6e{bottom:779.948000pt;}
.y25{bottom:781.281333pt;}
.y8{bottom:782.214667pt;}
.ye7{bottom:783.281333pt;}
.y73{bottom:790.881333pt;}
.yaf{bottom:791.548000pt;}
.y7{bottom:797.681333pt;}
.y6d{bottom:801.148000pt;}
.y44{bottom:801.414667pt;}
.ye6{bottom:804.481333pt;}
.y72{bottom:809.281333pt;}
.yae{bottom:809.948000pt;}
.y6c{bottom:822.214667pt;}
.ye5{bottom:825.548000pt;}
.y71{bottom:827.681333pt;}
.y6{bottom:828.348000pt;}
.y43{bottom:829.014667pt;}
.y24{bottom:838.214667pt;}
.y6b{bottom:843.414667pt;}
.y5{bottom:843.814667pt;}
.y6a{bottom:846.081333pt;}
.yad{bottom:846.748000pt;}
.y42{bottom:856.614667pt;}
.y23{bottom:859.681333pt;}
.y69{bottom:864.481333pt;}
.yac{bottom:865.148000pt;}
.ye4{bottom:867.814667pt;}
.y68{bottom:883.548000pt;}
.y41{bottom:884.214667pt;}
.yab{bottom:888.348000pt;}
.ye3{bottom:889.014667pt;}
.y67{bottom:901.948000pt;}
.y22{bottom:909.014667pt;}
.yaa{bottom:909.414667pt;}
.ye2{bottom:910.081333pt;}
.y40{bottom:911.814667pt;}
.y66{bottom:920.348000pt;}
.y21{bottom:929.014667pt;}
.ya9{bottom:930.614667pt;}
.ye1{bottom:931.281333pt;}
.y65{bottom:938.748000pt;}
.y3f{bottom:939.414667pt;}
.y20{bottom:948.881333pt;}
.ya8{bottom:951.681333pt;}
.ye0{bottom:952.348000pt;}
.y64{bottom:957.148000pt;}
.y3e{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.ya7{bottom:972.881333pt;}
.ydf{bottom:973.548000pt;}
.y63{bottom:975.548000pt;}
.y62{bottom:993.948000pt;}
.y3d{bottom:994.614667pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.hb{height:24.334375pt;}
.h5{height:31.083333pt;}
.h4{height:36.625000pt;}
.h7{height:38.854167pt;}
.hf{height:45.125000pt;}
.h8{height:46.796875pt;}
.h6{height:47.369792pt;}
.hd{height:50.359375pt;}
.ha{height:52.883333pt;}
.h3{height:54.937500pt;}
.he{height:56.156250pt;}
.hc{height:56.843750pt;}
.h9{height:61.580729pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x7{left:77.600000pt;}
.xa{left:81.466667pt;}
.xb{left:92.800000pt;}
.x6{left:123.733333pt;}
.x8{left:124.933333pt;}
.xf{left:140.800000pt;}
.xc{left:200.800000pt;}
.x3{left:308.933333pt;}
.x2{left:315.333333pt;}
.x9{left:316.666667pt;}
.xd{left:322.800000pt;}
.x5{left:361.733333pt;}
.x4{left:366.800000pt;}
.xe{left:520.800000pt;}
}




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