
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_fdf2b5ee670b694564e12abb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5889638e8603f9aeabefd1da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_ffe8b831a01784b1c123489e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_e0783bf03a89a9dd1f4ac5c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_90f31cac4c5a6fe3bfcde053.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_3cd95abc8f706f56c45a222d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9213a14182d842a0a9e9a97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_719194579f01ddfd609c8c64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-0.579600px;}
.ls19{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.326400px;}
.ls1c{letter-spacing:-0.240600px;}
.lsa{letter-spacing:-0.228000px;}
.ls11{letter-spacing:-0.186600px;}
.ls25{letter-spacing:-0.172200px;}
.ls22{letter-spacing:-0.143400px;}
.ls9{letter-spacing:-0.115800px;}
.ls13{letter-spacing:-0.107400px;}
.ls17{letter-spacing:-0.069600px;}
.ls14{letter-spacing:-0.064800px;}
.ls12{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.023760px;}
.ls18{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.140400px;}
.ls20{letter-spacing:0.174000px;}
.ls10{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.190200px;}
.ls6{letter-spacing:0.256200px;}
.ls1d{letter-spacing:0.314640px;}
.ls1e{letter-spacing:0.447840px;}
.lsd{letter-spacing:0.617760px;}
.ls26{letter-spacing:0.660000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1f{letter-spacing:2.106720px;}
.lsc{letter-spacing:5.706720px;}
.ls24{letter-spacing:12.186720px;}
.lse{letter-spacing:15.066720px;}
.ls21{letter-spacing:19.386720px;}
.lsb{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls23{letter-spacing:42.570720px;}
.ls16{letter-spacing:46.170720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.165760px;}
.ws6{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.440960px;}
.wsd{word-spacing:-13.436160px;}
.ws7{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.362360px;}
.ws10{word-spacing:-13.333560px;}
.wsa{word-spacing:-13.319160px;}
.ws8{word-spacing:-13.277760px;}
.wse{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsc{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.799200px;}
._15{margin-left:-4.952880px;}
._d{margin-left:-3.677760px;}
._8{margin-left:-2.459280px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._7{width:4.543200px;}
._9{width:5.796720px;}
._a{width:7.529760px;}
._b{width:9.023760px;}
._10{width:10.053120px;}
._c{width:11.055600px;}
._f{width:12.152880px;}
._12{width:14.940000px;}
._e{width:16.135200px;}
._1a{width:18.141360px;}
._19{width:19.268400px;}
._1b{width:36.564240px;}
._18{width:46.427520px;}
._16{width:50.310000px;}
._13{width:51.863760px;}
._17{width:65.311680px;}
._1c{width:113.255520px;}
._14{width:124.669920px;}
._1d{width:190.381440px;}
._11{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y66{bottom:6.660000px;}
.ya1{bottom:6.690000px;}
.yce{bottom:7.380000px;}
.y94{bottom:27.720000px;}
.ya0{bottom:27.750000px;}
.ycd{bottom:28.440000px;}
.y6{bottom:61.236000px;}
.yd2{bottom:90.036000px;}
.y31{bottom:94.896000px;}
.y92{bottom:106.236000px;}
.ycb{bottom:107.136000px;}
.y64{bottom:109.296000px;}
.y30{bottom:115.956000px;}
.y91{bottom:127.296000px;}
.yca{bottom:128.196000px;}
.y63{bottom:130.356000px;}
.y2f{bottom:137.016000px;}
.y90{bottom:148.356000px;}
.yc9{bottom:149.256000px;}
.y62{bottom:151.410000px;}
.y2e{bottom:158.070000px;}
.y8f{bottom:169.410000px;}
.yc8{bottom:170.310000px;}
.y61{bottom:172.470000px;}
.y2d{bottom:179.130000px;}
.y8e{bottom:190.470000px;}
.yc7{bottom:191.370000px;}
.y60{bottom:193.530000px;}
.y2c{bottom:200.190000px;}
.y8d{bottom:211.530000px;}
.yc6{bottom:212.430000px;}
.y5f{bottom:214.590000px;}
.y2b{bottom:221.250000px;}
.y8c{bottom:232.590000px;}
.yc5{bottom:233.490000px;}
.y5e{bottom:235.650000px;}
.y2a{bottom:242.310000px;}
.y8b{bottom:253.650000px;}
.yc4{bottom:254.550000px;}
.y5d{bottom:256.710000px;}
.y29{bottom:263.370000px;}
.y8a{bottom:274.710000px;}
.yc3{bottom:275.430000px;}
.y5c{bottom:277.770000px;}
.y28{bottom:284.475000px;}
.y89{bottom:295.815000px;}
.yc2{bottom:296.535000px;}
.y5b{bottom:298.875000px;}
.y27{bottom:305.535000px;}
.y88{bottom:316.875000px;}
.yc1{bottom:317.595000px;}
.y5a{bottom:319.935000px;}
.y26{bottom:326.595000px;}
.y87{bottom:337.935000px;}
.yc0{bottom:338.655000px;}
.y59{bottom:340.995000px;}
.y25{bottom:347.655000px;}
.y86{bottom:358.995000px;}
.ybf{bottom:359.715000px;}
.y58{bottom:362.055000px;}
.y24{bottom:368.715000px;}
.y85{bottom:380.055000px;}
.ybe{bottom:380.775000px;}
.y57{bottom:383.115000px;}
.y23{bottom:389.775000px;}
.y84{bottom:401.115000px;}
.ybd{bottom:401.835000px;}
.y56{bottom:404.175000px;}
.y22{bottom:410.835000px;}
.y83{bottom:422.175000px;}
.ybc{bottom:422.895000px;}
.y55{bottom:425.235000px;}
.y21{bottom:431.895000px;}
.y82{bottom:443.235000px;}
.ybb{bottom:443.955000px;}
.y54{bottom:446.295000px;}
.y20{bottom:452.955000px;}
.y81{bottom:464.295000px;}
.yba{bottom:465.015000px;}
.y53{bottom:467.355000px;}
.y1f{bottom:474.015000px;}
.ya4{bottom:479.415000px;}
.y80{bottom:485.355000px;}
.yb9{bottom:486.075000px;}
.y52{bottom:488.415000px;}
.y1e{bottom:495.075000px;}
.ya3{bottom:501.195000px;}
.y7f{bottom:506.415000px;}
.yb8{bottom:507.135000px;}
.y51{bottom:509.475000px;}
.y1d{bottom:516.135000px;}
.ya2{bottom:522.255000px;}
.y7e{bottom:527.475000px;}
.yb7{bottom:528.195000px;}
.y50{bottom:530.535000px;}
.y1c{bottom:537.195000px;}
.y7d{bottom:548.535000px;}
.yb6{bottom:549.255000px;}
.y4f{bottom:551.595000px;}
.y1b{bottom:558.255000px;}
.y9f{bottom:564.375000px;}
.y7c{bottom:569.625000px;}
.yb5{bottom:570.345000px;}
.y4e{bottom:572.685000px;}
.y1a{bottom:579.345000px;}
.y7b{bottom:590.685000px;}
.yb4{bottom:591.405000px;}
.y4d{bottom:593.745000px;}
.y9e{bottom:606.525000px;}
.y7a{bottom:611.745000px;}
.yb3{bottom:612.465000px;}
.y4c{bottom:614.805000px;}
.y19{bottom:623.805000px;}
.y79{bottom:632.805000px;}
.yb2{bottom:633.525000px;}
.y4b{bottom:635.865000px;}
.y9d{bottom:648.645000px;}
.y18{bottom:653.685000px;}
.y78{bottom:653.865000px;}
.yb1{bottom:654.585000px;}
.y4a{bottom:656.925000px;}
.yd1{bottom:669.705000px;}
.y17{bottom:674.745000px;}
.y77{bottom:674.925000px;}
.yb0{bottom:675.645000px;}
.y49{bottom:677.985000px;}
.y9c{bottom:690.765000px;}
.y16{bottom:695.805000px;}
.y76{bottom:695.985000px;}
.yaf{bottom:696.705000px;}
.y48{bottom:699.045000px;}
.y9b{bottom:711.825000px;}
.y15{bottom:716.865000px;}
.y75{bottom:717.045000px;}
.yae{bottom:717.765000px;}
.y47{bottom:720.105000px;}
.yd0{bottom:732.885000px;}
.y14{bottom:737.925000px;}
.y74{bottom:738.105000px;}
.yad{bottom:738.825000px;}
.y46{bottom:741.165000px;}
.y9a{bottom:753.945000px;}
.y13{bottom:758.985000px;}
.y73{bottom:759.165000px;}
.yac{bottom:759.885000px;}
.y45{bottom:762.225000px;}
.ycc{bottom:775.005000px;}
.y12{bottom:780.045000px;}
.y72{bottom:780.225000px;}
.yab{bottom:780.945000px;}
.y44{bottom:783.285000px;}
.y99{bottom:796.065000px;}
.ycf{bottom:796.785000px;}
.y11{bottom:801.105000px;}
.y71{bottom:801.285000px;}
.yaa{bottom:802.005000px;}
.y43{bottom:804.345000px;}
.y10{bottom:822.165000px;}
.y70{bottom:822.345000px;}
.ya9{bottom:823.065000px;}
.y42{bottom:825.405000px;}
.y98{bottom:838.185000px;}
.yf{bottom:843.225000px;}
.y6f{bottom:843.405000px;}
.ya8{bottom:844.125000px;}
.y41{bottom:846.465000px;}
.y97{bottom:859.290000px;}
.ye{bottom:864.330000px;}
.y6e{bottom:864.510000px;}
.ya7{bottom:865.230000px;}
.y40{bottom:867.570000px;}
.ya6{bottom:880.350000px;}
.yd{bottom:885.390000px;}
.y6d{bottom:885.570000px;}
.y3f{bottom:888.630000px;}
.y96{bottom:901.410000px;}
.y6c{bottom:906.630000px;}
.yc{bottom:908.610000px;}
.y3e{bottom:909.690000px;}
.ya5{bottom:923.190000px;}
.y6b{bottom:927.690000px;}
.y3d{bottom:930.570000px;}
.yb{bottom:934.890000px;}
.y95{bottom:943.530000px;}
.y6a{bottom:948.750000px;}
.y3c{bottom:951.630000px;}
.ya{bottom:955.950000px;}
.y69{bottom:963.870000px;}
.y93{bottom:964.590000px;}
.y9{bottom:972.690000px;}
.y68{bottom:985.650000px;}
.y3b{bottom:993.750000px;}
.y8{bottom:995.010000px;}
.y67{bottom:1006.710000px;}
.y3a{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.y65{bottom:1028.490000px;}
.y39{bottom:1035.870000px;}
.y38{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y37{bottom:1077.990000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1099.050000px;}
.y35{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1141.200000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.h7{height:38.671172px;}
.hc{height:42.120000px;}
.he{height:42.156000px;}
.hf{height:42.840000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h10{height:59.551172px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:42.840000px;}
.w9{width:51.660000px;}
.we{width:77.436000px;}
.w1a{width:77.940000px;}
.w19{width:77.976000px;}
.w5{width:78.156000px;}
.w16{width:79.200000px;}
.w11{width:85.356000px;}
.wb{width:85.896000px;}
.w4{width:94.680000px;}
.wf{width:100.260000px;}
.wc{width:101.700000px;}
.w18{width:105.480000px;}
.w15{width:116.496000px;}
.w12{width:117.576000px;}
.w17{width:129.816000px;}
.w14{width:155.910000px;}
.w6{width:158.400000px;}
.wd{width:185.250000px;}
.w7{width:188.490000px;}
.w13{width:196.230000px;}
.w10{width:230.250000px;}
.w3{width:264.675000px;}
.w8{width:503.025000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x19{left:18.000000px;}
.xc{left:20.340000px;}
.x23{left:21.600000px;}
.x24{left:23.400000px;}
.x1c{left:24.660000px;}
.x1e{left:26.280000px;}
.x21{left:31.680000px;}
.x1f{left:34.785000px;}
.x22{left:37.260000px;}
.x18{left:39.420000px;}
.x25{left:41.040000px;}
.xd{left:47.376000px;}
.x16{left:50.580000px;}
.x1d{left:52.740000px;}
.x1{left:53.999987px;}
.x1b{left:64.845000px;}
.x14{left:69.165000px;}
.x28{left:74.339987px;}
.x26{left:80.999987px;}
.x27{left:100.475987px;}
.x2{left:108.035987px;}
.xe{left:239.250000px;}
.x13{left:250.230000px;}
.xf{left:316.695000px;}
.x4{left:318.675000px;}
.x20{left:328.215000px;}
.x15{left:406.155000px;}
.x5{left:413.355000px;}
.x10{left:416.955000px;}
.x6{left:491.505000px;}
.x17{left:522.645000px;}
.x8{left:557.025000px;}
.x1a{left:601.845000px;}
.x9{left:608.685000px;}
.x11{left:647.205000px;}
.x7{left:649.905000px;}
.xa{left:651.525000px;}
.x12{left:732.570000px;}
.xb{left:737.430000px;}
.x29{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.515200pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.290133pt;}
.ls1c{letter-spacing:-0.213867pt;}
.lsa{letter-spacing:-0.202667pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls25{letter-spacing:-0.153067pt;}
.ls22{letter-spacing:-0.127467pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls13{letter-spacing:-0.095467pt;}
.ls17{letter-spacing:-0.061867pt;}
.ls14{letter-spacing:-0.057600pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.021120pt;}
.ls18{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.124800pt;}
.ls20{letter-spacing:0.154667pt;}
.ls10{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.169067pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1d{letter-spacing:0.279680pt;}
.ls1e{letter-spacing:0.398080pt;}
.lsd{letter-spacing:0.549120pt;}
.ls26{letter-spacing:0.586667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1f{letter-spacing:1.872640pt;}
.lsc{letter-spacing:5.072640pt;}
.ls24{letter-spacing:10.832640pt;}
.lse{letter-spacing:13.392640pt;}
.ls21{letter-spacing:17.232640pt;}
.lsb{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls23{letter-spacing:37.840640pt;}
.ls16{letter-spacing:41.040640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.591787pt;}
.ws6{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.947520pt;}
.wsd{word-spacing:-11.943253pt;}
.ws7{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.877653pt;}
.ws10{word-spacing:-11.852053pt;}
.wsa{word-spacing:-11.839253pt;}
.ws8{word-spacing:-11.802453pt;}
.wse{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsc{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-518.043733pt;}
._15{margin-left:-4.402560pt;}
._d{margin-left:-3.269120pt;}
._8{margin-left:-2.186027pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._7{width:4.038400pt;}
._9{width:5.152640pt;}
._a{width:6.693120pt;}
._b{width:8.021120pt;}
._10{width:8.936107pt;}
._c{width:9.827200pt;}
._f{width:10.802560pt;}
._12{width:13.280000pt;}
._e{width:14.342400pt;}
._1a{width:16.125653pt;}
._19{width:17.127467pt;}
._1b{width:32.501547pt;}
._18{width:41.268907pt;}
._16{width:44.720000pt;}
._13{width:46.101120pt;}
._17{width:58.054827pt;}
._1c{width:100.671573pt;}
._14{width:110.817707pt;}
._1d{width:169.227947pt;}
._11{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:5.920000pt;}
.ya1{bottom:5.946667pt;}
.yce{bottom:6.560000pt;}
.y94{bottom:24.640000pt;}
.ya0{bottom:24.666667pt;}
.ycd{bottom:25.280000pt;}
.y6{bottom:54.432000pt;}
.yd2{bottom:80.032000pt;}
.y31{bottom:84.352000pt;}
.y92{bottom:94.432000pt;}
.ycb{bottom:95.232000pt;}
.y64{bottom:97.152000pt;}
.y30{bottom:103.072000pt;}
.y91{bottom:113.152000pt;}
.yca{bottom:113.952000pt;}
.y63{bottom:115.872000pt;}
.y2f{bottom:121.792000pt;}
.y90{bottom:131.872000pt;}
.yc9{bottom:132.672000pt;}
.y62{bottom:134.586667pt;}
.y2e{bottom:140.506667pt;}
.y8f{bottom:150.586667pt;}
.yc8{bottom:151.386667pt;}
.y61{bottom:153.306667pt;}
.y2d{bottom:159.226667pt;}
.y8e{bottom:169.306667pt;}
.yc7{bottom:170.106667pt;}
.y60{bottom:172.026667pt;}
.y2c{bottom:177.946667pt;}
.y8d{bottom:188.026667pt;}
.yc6{bottom:188.826667pt;}
.y5f{bottom:190.746667pt;}
.y2b{bottom:196.666667pt;}
.y8c{bottom:206.746667pt;}
.yc5{bottom:207.546667pt;}
.y5e{bottom:209.466667pt;}
.y2a{bottom:215.386667pt;}
.y8b{bottom:225.466667pt;}
.yc4{bottom:226.266667pt;}
.y5d{bottom:228.186667pt;}
.y29{bottom:234.106667pt;}
.y8a{bottom:244.186667pt;}
.yc3{bottom:244.826667pt;}
.y5c{bottom:246.906667pt;}
.y28{bottom:252.866667pt;}
.y89{bottom:262.946667pt;}
.yc2{bottom:263.586667pt;}
.y5b{bottom:265.666667pt;}
.y27{bottom:271.586667pt;}
.y88{bottom:281.666667pt;}
.yc1{bottom:282.306667pt;}
.y5a{bottom:284.386667pt;}
.y26{bottom:290.306667pt;}
.y87{bottom:300.386667pt;}
.yc0{bottom:301.026667pt;}
.y59{bottom:303.106667pt;}
.y25{bottom:309.026667pt;}
.y86{bottom:319.106667pt;}
.ybf{bottom:319.746667pt;}
.y58{bottom:321.826667pt;}
.y24{bottom:327.746667pt;}
.y85{bottom:337.826667pt;}
.ybe{bottom:338.466667pt;}
.y57{bottom:340.546667pt;}
.y23{bottom:346.466667pt;}
.y84{bottom:356.546667pt;}
.ybd{bottom:357.186667pt;}
.y56{bottom:359.266667pt;}
.y22{bottom:365.186667pt;}
.y83{bottom:375.266667pt;}
.ybc{bottom:375.906667pt;}
.y55{bottom:377.986667pt;}
.y21{bottom:383.906667pt;}
.y82{bottom:393.986667pt;}
.ybb{bottom:394.626667pt;}
.y54{bottom:396.706667pt;}
.y20{bottom:402.626667pt;}
.y81{bottom:412.706667pt;}
.yba{bottom:413.346667pt;}
.y53{bottom:415.426667pt;}
.y1f{bottom:421.346667pt;}
.ya4{bottom:426.146667pt;}
.y80{bottom:431.426667pt;}
.yb9{bottom:432.066667pt;}
.y52{bottom:434.146667pt;}
.y1e{bottom:440.066667pt;}
.ya3{bottom:445.506667pt;}
.y7f{bottom:450.146667pt;}
.yb8{bottom:450.786667pt;}
.y51{bottom:452.866667pt;}
.y1d{bottom:458.786667pt;}
.ya2{bottom:464.226667pt;}
.y7e{bottom:468.866667pt;}
.yb7{bottom:469.506667pt;}
.y50{bottom:471.586667pt;}
.y1c{bottom:477.506667pt;}
.y7d{bottom:487.586667pt;}
.yb6{bottom:488.226667pt;}
.y4f{bottom:490.306667pt;}
.y1b{bottom:496.226667pt;}
.y9f{bottom:501.666667pt;}
.y7c{bottom:506.333333pt;}
.yb5{bottom:506.973333pt;}
.y4e{bottom:509.053333pt;}
.y1a{bottom:514.973333pt;}
.y7b{bottom:525.053333pt;}
.yb4{bottom:525.693333pt;}
.y4d{bottom:527.773333pt;}
.y9e{bottom:539.133333pt;}
.y7a{bottom:543.773333pt;}
.yb3{bottom:544.413333pt;}
.y4c{bottom:546.493333pt;}
.y19{bottom:554.493333pt;}
.y79{bottom:562.493333pt;}
.yb2{bottom:563.133333pt;}
.y4b{bottom:565.213333pt;}
.y9d{bottom:576.573333pt;}
.y18{bottom:581.053333pt;}
.y78{bottom:581.213333pt;}
.yb1{bottom:581.853333pt;}
.y4a{bottom:583.933333pt;}
.yd1{bottom:595.293333pt;}
.y17{bottom:599.773333pt;}
.y77{bottom:599.933333pt;}
.yb0{bottom:600.573333pt;}
.y49{bottom:602.653333pt;}
.y9c{bottom:614.013333pt;}
.y16{bottom:618.493333pt;}
.y76{bottom:618.653333pt;}
.yaf{bottom:619.293333pt;}
.y48{bottom:621.373333pt;}
.y9b{bottom:632.733333pt;}
.y15{bottom:637.213333pt;}
.y75{bottom:637.373333pt;}
.yae{bottom:638.013333pt;}
.y47{bottom:640.093333pt;}
.yd0{bottom:651.453333pt;}
.y14{bottom:655.933333pt;}
.y74{bottom:656.093333pt;}
.yad{bottom:656.733333pt;}
.y46{bottom:658.813333pt;}
.y9a{bottom:670.173333pt;}
.y13{bottom:674.653333pt;}
.y73{bottom:674.813333pt;}
.yac{bottom:675.453333pt;}
.y45{bottom:677.533333pt;}
.ycc{bottom:688.893333pt;}
.y12{bottom:693.373333pt;}
.y72{bottom:693.533333pt;}
.yab{bottom:694.173333pt;}
.y44{bottom:696.253333pt;}
.y99{bottom:707.613333pt;}
.ycf{bottom:708.253333pt;}
.y11{bottom:712.093333pt;}
.y71{bottom:712.253333pt;}
.yaa{bottom:712.893333pt;}
.y43{bottom:714.973333pt;}
.y10{bottom:730.813333pt;}
.y70{bottom:730.973333pt;}
.ya9{bottom:731.613333pt;}
.y42{bottom:733.693333pt;}
.y98{bottom:745.053333pt;}
.yf{bottom:749.533333pt;}
.y6f{bottom:749.693333pt;}
.ya8{bottom:750.333333pt;}
.y41{bottom:752.413333pt;}
.y97{bottom:763.813333pt;}
.ye{bottom:768.293333pt;}
.y6e{bottom:768.453333pt;}
.ya7{bottom:769.093333pt;}
.y40{bottom:771.173333pt;}
.ya6{bottom:782.533333pt;}
.yd{bottom:787.013333pt;}
.y6d{bottom:787.173333pt;}
.y3f{bottom:789.893333pt;}
.y96{bottom:801.253333pt;}
.y6c{bottom:805.893333pt;}
.yc{bottom:807.653333pt;}
.y3e{bottom:808.613333pt;}
.ya5{bottom:820.613333pt;}
.y6b{bottom:824.613333pt;}
.y3d{bottom:827.173333pt;}
.yb{bottom:831.013333pt;}
.y95{bottom:838.693333pt;}
.y6a{bottom:843.333333pt;}
.y3c{bottom:845.893333pt;}
.ya{bottom:849.733333pt;}
.y69{bottom:856.773333pt;}
.y93{bottom:857.413333pt;}
.y9{bottom:864.613333pt;}
.y68{bottom:876.133333pt;}
.y3b{bottom:883.333333pt;}
.y8{bottom:884.453333pt;}
.y67{bottom:894.853333pt;}
.y3a{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.y65{bottom:914.213333pt;}
.y39{bottom:920.773333pt;}
.y38{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y37{bottom:958.213333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:976.933333pt;}
.y35{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1014.400000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.h7{height:34.374375pt;}
.hc{height:37.440000pt;}
.he{height:37.472000pt;}
.hf{height:38.080000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h10{height:52.934375pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:38.080000pt;}
.w9{width:45.920000pt;}
.we{width:68.832000pt;}
.w1a{width:69.280000pt;}
.w19{width:69.312000pt;}
.w5{width:69.472000pt;}
.w16{width:70.400000pt;}
.w11{width:75.872000pt;}
.wb{width:76.352000pt;}
.w4{width:84.160000pt;}
.wf{width:89.120000pt;}
.wc{width:90.400000pt;}
.w18{width:93.760000pt;}
.w15{width:103.552000pt;}
.w12{width:104.512000pt;}
.w17{width:115.392000pt;}
.w14{width:138.586667pt;}
.w6{width:140.800000pt;}
.wd{width:164.666667pt;}
.w7{width:167.546667pt;}
.w13{width:174.426667pt;}
.w10{width:204.666667pt;}
.w3{width:235.266667pt;}
.w8{width:447.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x19{left:16.000000pt;}
.xc{left:18.080000pt;}
.x23{left:19.200000pt;}
.x24{left:20.800000pt;}
.x1c{left:21.920000pt;}
.x1e{left:23.360000pt;}
.x21{left:28.160000pt;}
.x1f{left:30.920000pt;}
.x22{left:33.120000pt;}
.x18{left:35.040000pt;}
.x25{left:36.480000pt;}
.xd{left:42.112000pt;}
.x16{left:44.960000pt;}
.x1d{left:46.880000pt;}
.x1{left:47.999988pt;}
.x1b{left:57.640000pt;}
.x14{left:61.480000pt;}
.x28{left:66.079988pt;}
.x26{left:71.999988pt;}
.x27{left:89.311988pt;}
.x2{left:96.031988pt;}
.xe{left:212.666667pt;}
.x13{left:222.426667pt;}
.xf{left:281.506667pt;}
.x4{left:283.266667pt;}
.x20{left:291.746667pt;}
.x15{left:361.026667pt;}
.x5{left:367.426667pt;}
.x10{left:370.626667pt;}
.x6{left:436.893333pt;}
.x17{left:464.573333pt;}
.x8{left:495.133333pt;}
.x1a{left:534.973333pt;}
.x9{left:541.053333pt;}
.x11{left:575.293333pt;}
.x7{left:577.693333pt;}
.xa{left:579.133333pt;}
.x12{left:651.173333pt;}
.xb{left:655.493333pt;}
.x29{left:746.053322pt;}
}




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