
    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_a8b0c718ed812a8ea01b1b27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.956055;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_6f6412c6f0049dde7986fa76.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974609;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_fea97a3aaf7e5fc48df36756.woff')format("woff");}.ff3{font-family:ff3;line-height:0.974121;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_2d2557cf026c7e8b1812f835.woff')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_50472f713461738cc482beb9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6cfcbed47ff2eea50180d36e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.956055;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_4694e53f625d2dd992a44485.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041016;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_273d79388c5621a953fe2098.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_d9cbcea5617aa951a4c98dfc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.041016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d68077fa92d6a40a6a95014f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_643ce2ff1a288d5e09a85a7e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.045360px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.255000px;}
.ls5{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.468000px;}
.ls8{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.840000px;}
.ls15{letter-spacing:2.880000px;}
.ls7{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.ls10{letter-spacing:12.240000px;}
.ls11{letter-spacing:16.560000px;}
.lse{letter-spacing:17.280000px;}
.ls16{letter-spacing:54.864000px;}
.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;}
}
.wsd{word-spacing:-167.760000px;}
.wse{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.145400px;}
.ws0{word-spacing:-15.075480px;}
.ws1{word-spacing:-14.999760px;}
.ws9{word-spacing:-12.329400px;}
.ws8{word-spacing:-12.014640px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-4.320000px;}
._18{margin-left:-3.300480px;}
._11{margin-left:-2.232000px;}
._1{margin-left:-1.015920px;}
._0{width:1.006560px;}
._7{width:2.080320px;}
._12{width:3.232320px;}
._d{width:5.112000px;}
._e{width:6.421440px;}
._17{width:8.020320px;}
._10{width:10.008000px;}
._f{width:11.016000px;}
._19{width:12.240000px;}
._1a{width:13.310880px;}
._1e{width:14.553120px;}
._9{width:15.768000px;}
._a{width:16.920000px;}
._23{width:18.000000px;}
._1b{width:19.224000px;}
._8{width:21.039840px;}
._5{width:22.824000px;}
._6{width:24.007920px;}
._4{width:25.176000px;}
._13{width:26.436000px;}
._1d{width:27.787920px;}
._1c{width:29.064000px;}
._16{width:30.669120px;}
._15{width:32.569920px;}
._21{width:34.416000px;}
._22{width:35.856000px;}
._25{width:40.944000px;}
._26{width:41.964000px;}
._1f{width:47.304000px;}
._20{width:48.457440px;}
._27{width:54.792000px;}
._28{width:57.864000px;}
._b{width:67.104000px;}
._c{width:68.330880px;}
._2f{width:69.840000px;}
._30{width:70.861440px;}
._2d{width:72.192000px;}
._2e{width:73.260000px;}
._2b{width:121.368000px;}
._2c{width:122.760000px;}
._29{width:142.632000px;}
._2a{width:150.585360px;}
._3{width:154.317360px;}
._24{width:177.655680px;}
._14{width:846.156000px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:167.760000px;}
.y11{bottom:-20.520000px;}
.y10{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.yf{bottom:9.000000px;}
.yd{bottom:18.000000px;}
.y6{bottom:22.500000px;}
.ye{bottom:27.000000px;}
.y84{bottom:32.220000px;}
.y8f{bottom:32.394000px;}
.y86{bottom:32.400000px;}
.y89{bottom:32.430000px;}
.y94{bottom:32.445000px;}
.y5{bottom:49.500000px;}
.y2{bottom:56.916000px;}
.yb{bottom:65.874000px;}
.y12{bottom:77.616000px;}
.y3{bottom:91.116000px;}
.yc{bottom:94.176000px;}
.ya{bottom:107.634000px;}
.y38{bottom:111.636000px;}
.y79{bottom:113.436000px;}
.y37{bottom:130.536000px;}
.y8e{bottom:132.696000px;}
.y49{bottom:135.396000px;}
.y7{bottom:144.396000px;}
.y36{bottom:149.436000px;}
.y59{bottom:157.530000px;}
.y9{bottom:158.079000px;}
.y48{bottom:166.530000px;}
.y35{bottom:168.510000px;}
.y78{bottom:175.530000px;}
.y34{bottom:187.410000px;}
.y58{bottom:188.490000px;}
.y47{bottom:197.490000px;}
.y33{bottom:206.490000px;}
.y8{bottom:208.479000px;}
.y6b{bottom:212.430000px;}
.y8d{bottom:216.210000px;}
.y57{bottom:219.630000px;}
.y32{bottom:225.390000px;}
.y46{bottom:228.630000px;}
.y6a{bottom:236.010000px;}
.y77{bottom:237.630000px;}
.y31{bottom:244.290000px;}
.y56{bottom:250.590000px;}
.y45{bottom:259.590000px;}
.y30{bottom:263.370000px;}
.y76{bottom:268.590000px;}
.y55{bottom:281.775000px;}
.y2f{bottom:282.315000px;}
.y69{bottom:286.275000px;}
.y2e{bottom:288.255000px;}
.y44{bottom:290.775000px;}
.y75{bottom:299.775000px;}
.y8c{bottom:299.955000px;}
.y9b{bottom:301.035000px;}
.y2d{bottom:312.015000px;}
.y54{bottom:312.735000px;}
.y68{bottom:317.235000px;}
.y43{bottom:321.735000px;}
.y9a{bottom:326.775000px;}
.y74{bottom:330.735000px;}
.y53{bottom:343.875000px;}
.y67{bottom:348.375000px;}
.y42{bottom:352.875000px;}
.y73{bottom:361.875000px;}
.y2c{bottom:379.335000px;}
.y8b{bottom:383.475000px;}
.y41{bottom:383.835000px;}
.y72{bottom:392.835000px;}
.y99{bottom:410.295000px;}
.y2b{bottom:410.475000px;}
.y40{bottom:414.975000px;}
.y71{bottom:423.975000px;}
.y2a{bottom:441.435000px;}
.y3f{bottom:445.935000px;}
.y66{bottom:450.435000px;}
.y70{bottom:454.935000px;}
.y8a{bottom:466.995000px;}
.y4{bottom:468.435000px;}
.y29{bottom:472.575000px;}
.y3e{bottom:477.075000px;}
.y65{bottom:481.575000px;}
.y6f{bottom:486.075000px;}
.y98{bottom:493.815000px;}
.y28{bottom:503.535000px;}
.y3d{bottom:508.035000px;}
.y64{bottom:512.535000px;}
.y6e{bottom:517.035000px;}
.y27{bottom:536.835000px;}
.y3c{bottom:539.175000px;}
.y63{bottom:545.835000px;}
.y6d{bottom:548.175000px;}
.y88{bottom:550.515000px;}
.y26{bottom:568.005000px;}
.y3b{bottom:570.165000px;}
.y62{bottom:576.825000px;}
.y97{bottom:577.545000px;}
.y6c{bottom:579.165000px;}
.y25{bottom:598.965000px;}
.y3a{bottom:601.305000px;}
.y61{bottom:610.305000px;}
.y24{bottom:632.265000px;}
.y87{bottom:634.065000px;}
.y60{bottom:641.265000px;}
.y96{bottom:661.065000px;}
.y23{bottom:663.405000px;}
.y5f{bottom:672.405000px;}
.y22{bottom:694.365000px;}
.y5e{bottom:703.365000px;}
.y85{bottom:717.585000px;}
.y21{bottom:725.505000px;}
.y5d{bottom:734.505000px;}
.y95{bottom:744.585000px;}
.y20{bottom:756.465000px;}
.y5c{bottom:765.465000px;}
.y1f{bottom:787.605000px;}
.y5b{bottom:796.605000px;}
.y83{bottom:801.285000px;}
.y1e{bottom:818.565000px;}
.y52{bottom:827.565000px;}
.y93{bottom:828.105000px;}
.y1d{bottom:849.750000px;}
.y51{bottom:858.750000px;}
.y1b{bottom:880.710000px;}
.y1c{bottom:887.550000px;}
.y50{bottom:889.710000px;}
.y82{bottom:891.690000px;}
.y92{bottom:911.670000px;}
.y1a{bottom:911.850000px;}
.y81{bottom:915.450000px;}
.y4f{bottom:920.850000px;}
.y80{bottom:939.030000px;}
.y19{bottom:942.810000px;}
.y4e{bottom:951.810000px;}
.y7f{bottom:962.610000px;}
.y18{bottom:973.950000px;}
.y4d{bottom:982.950000px;}
.y7e{bottom:986.190000px;}
.y91{bottom:995.190000px;}
.y17{bottom:1004.910000px;}
.y4c{bottom:1013.910000px;}
.y7d{bottom:1018.770000px;}
.y16{bottom:1036.050000px;}
.y4b{bottom:1045.050000px;}
.y7c{bottom:1049.730000px;}
.y15{bottom:1067.010000px;}
.y4a{bottom:1076.010000px;}
.y90{bottom:1078.890000px;}
.y7b{bottom:1080.870000px;}
.y39{bottom:1098.150000px;}
.y14{bottom:1107.150000px;}
.y5a{bottom:1113.990000px;}
.y7a{bottom:1114.890000px;}
.y13{bottom:1138.140000px;}
.y1{bottom:1193.040000px;}
.h9{height:2.100938px;}
.he{height:30.463594px;}
.hc{height:35.190703px;}
.h8{height:45.432773px;}
.h10{height:48.321562px;}
.h7{height:50.220000px;}
.hb{height:50.800781px;}
.h2{height:52.523438px;}
.hf{height:54.596250px;}
.hd{height:59.343750px;}
.h11{height:62.550703px;}
.h16{height:66.960000px;}
.h13{height:66.996000px;}
.h14{height:67.140000px;}
.h15{height:67.176000px;}
.h6{height:127.540195px;}
.h5{height:127.622109px;}
.h12{height:159.732422px;}
.h4{height:324.030000px;}
.h3{height:702.105000px;}
.ha{height:1076.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:157.320000px;}
.w4{width:273.135000px;}
.w5{width:273.270000px;}
.w6{width:273.495000px;}
.w9{width:530.205000px;}
.w3{width:819.900000px;}
.w7{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:37.800000px;}
.x2{left:41.400000px;}
.x5{left:50.616000px;}
.x4{left:54.036000px;}
.x17{left:60.834000px;}
.x14{left:83.154000px;}
.xd{left:108.035987px;}
.x9{left:109.125000px;}
.x7{left:119.700000px;}
.x1{left:162.029987px;}
.x11{left:167.249987px;}
.x15{left:268.230000px;}
.x16{left:270.075000px;}
.xc{left:292.394987px;}
.x6{left:314.535000px;}
.x10{left:378.074987px;}
.x8{left:587.805000px;}
.x12{left:642.344973px;}
.x13{left:648.464987px;}
.xe{left:726.269973px;}
.xf{left:732.389987px;}
.x3{left:765.150000px;}
.xb{left:776.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.040320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.226667pt;}
.ls5{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.416000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.746667pt;}
.ls15{letter-spacing:2.560000pt;}
.ls7{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls11{letter-spacing:14.720000pt;}
.lse{letter-spacing:15.360000pt;}
.ls16{letter-spacing:48.768000pt;}
.wsd{word-spacing:-149.120000pt;}
.wse{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.351467pt;}
.ws0{word-spacing:-13.400427pt;}
.ws1{word-spacing:-13.333120pt;}
.ws9{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.679680pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-3.840000pt;}
._18{margin-left:-2.933760pt;}
._11{margin-left:-1.984000pt;}
._1{margin-left:-0.903040pt;}
._0{width:0.894720pt;}
._7{width:1.849173pt;}
._12{width:2.873173pt;}
._d{width:4.544000pt;}
._e{width:5.707947pt;}
._17{width:7.129173pt;}
._10{width:8.896000pt;}
._f{width:9.792000pt;}
._19{width:10.880000pt;}
._1a{width:11.831893pt;}
._1e{width:12.936107pt;}
._9{width:14.016000pt;}
._a{width:15.040000pt;}
._23{width:16.000000pt;}
._1b{width:17.088000pt;}
._8{width:18.702080pt;}
._5{width:20.288000pt;}
._6{width:21.340373pt;}
._4{width:22.378667pt;}
._13{width:23.498667pt;}
._1d{width:24.700373pt;}
._1c{width:25.834667pt;}
._16{width:27.261440pt;}
._15{width:28.951040pt;}
._21{width:30.592000pt;}
._22{width:31.872000pt;}
._25{width:36.394667pt;}
._26{width:37.301333pt;}
._1f{width:42.048000pt;}
._20{width:43.073280pt;}
._27{width:48.704000pt;}
._28{width:51.434667pt;}
._b{width:59.648000pt;}
._c{width:60.738560pt;}
._2f{width:62.080000pt;}
._30{width:62.987947pt;}
._2d{width:64.170667pt;}
._2e{width:65.120000pt;}
._2b{width:107.882667pt;}
._2c{width:109.120000pt;}
._29{width:126.784000pt;}
._2a{width:133.853653pt;}
._3{width:137.170987pt;}
._24{width:157.916160pt;}
._14{width:752.138667pt;}
.fs4{font-size:2.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:149.120000pt;}
.y11{bottom:-18.240000pt;}
.y10{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:8.000000pt;}
.yd{bottom:16.000000pt;}
.y6{bottom:20.000000pt;}
.ye{bottom:24.000000pt;}
.y84{bottom:28.640000pt;}
.y8f{bottom:28.794667pt;}
.y86{bottom:28.800000pt;}
.y89{bottom:28.826667pt;}
.y94{bottom:28.840000pt;}
.y5{bottom:44.000000pt;}
.y2{bottom:50.592000pt;}
.yb{bottom:58.554667pt;}
.y12{bottom:68.992000pt;}
.y3{bottom:80.992000pt;}
.yc{bottom:83.712000pt;}
.ya{bottom:95.674667pt;}
.y38{bottom:99.232000pt;}
.y79{bottom:100.832000pt;}
.y37{bottom:116.032000pt;}
.y8e{bottom:117.952000pt;}
.y49{bottom:120.352000pt;}
.y7{bottom:128.352000pt;}
.y36{bottom:132.832000pt;}
.y59{bottom:140.026667pt;}
.y9{bottom:140.514667pt;}
.y48{bottom:148.026667pt;}
.y35{bottom:149.786667pt;}
.y78{bottom:156.026667pt;}
.y34{bottom:166.586667pt;}
.y58{bottom:167.546667pt;}
.y47{bottom:175.546667pt;}
.y33{bottom:183.546667pt;}
.y8{bottom:185.314667pt;}
.y6b{bottom:188.826667pt;}
.y8d{bottom:192.186667pt;}
.y57{bottom:195.226667pt;}
.y32{bottom:200.346667pt;}
.y46{bottom:203.226667pt;}
.y6a{bottom:209.786667pt;}
.y77{bottom:211.226667pt;}
.y31{bottom:217.146667pt;}
.y56{bottom:222.746667pt;}
.y45{bottom:230.746667pt;}
.y30{bottom:234.106667pt;}
.y76{bottom:238.746667pt;}
.y55{bottom:250.466667pt;}
.y2f{bottom:250.946667pt;}
.y69{bottom:254.466667pt;}
.y2e{bottom:256.226667pt;}
.y44{bottom:258.466667pt;}
.y75{bottom:266.466667pt;}
.y8c{bottom:266.626667pt;}
.y9b{bottom:267.586667pt;}
.y2d{bottom:277.346667pt;}
.y54{bottom:277.986667pt;}
.y68{bottom:281.986667pt;}
.y43{bottom:285.986667pt;}
.y9a{bottom:290.466667pt;}
.y74{bottom:293.986667pt;}
.y53{bottom:305.666667pt;}
.y67{bottom:309.666667pt;}
.y42{bottom:313.666667pt;}
.y73{bottom:321.666667pt;}
.y2c{bottom:337.186667pt;}
.y8b{bottom:340.866667pt;}
.y41{bottom:341.186667pt;}
.y72{bottom:349.186667pt;}
.y99{bottom:364.706667pt;}
.y2b{bottom:364.866667pt;}
.y40{bottom:368.866667pt;}
.y71{bottom:376.866667pt;}
.y2a{bottom:392.386667pt;}
.y3f{bottom:396.386667pt;}
.y66{bottom:400.386667pt;}
.y70{bottom:404.386667pt;}
.y8a{bottom:415.106667pt;}
.y4{bottom:416.386667pt;}
.y29{bottom:420.066667pt;}
.y3e{bottom:424.066667pt;}
.y65{bottom:428.066667pt;}
.y6f{bottom:432.066667pt;}
.y98{bottom:438.946667pt;}
.y28{bottom:447.586667pt;}
.y3d{bottom:451.586667pt;}
.y64{bottom:455.586667pt;}
.y6e{bottom:459.586667pt;}
.y27{bottom:477.186667pt;}
.y3c{bottom:479.266667pt;}
.y63{bottom:485.186667pt;}
.y6d{bottom:487.266667pt;}
.y88{bottom:489.346667pt;}
.y26{bottom:504.893333pt;}
.y3b{bottom:506.813333pt;}
.y62{bottom:512.733333pt;}
.y97{bottom:513.373333pt;}
.y6c{bottom:514.813333pt;}
.y25{bottom:532.413333pt;}
.y3a{bottom:534.493333pt;}
.y61{bottom:542.493333pt;}
.y24{bottom:562.013333pt;}
.y87{bottom:563.613333pt;}
.y60{bottom:570.013333pt;}
.y96{bottom:587.613333pt;}
.y23{bottom:589.693333pt;}
.y5f{bottom:597.693333pt;}
.y22{bottom:617.213333pt;}
.y5e{bottom:625.213333pt;}
.y85{bottom:637.853333pt;}
.y21{bottom:644.893333pt;}
.y5d{bottom:652.893333pt;}
.y95{bottom:661.853333pt;}
.y20{bottom:672.413333pt;}
.y5c{bottom:680.413333pt;}
.y1f{bottom:700.093333pt;}
.y5b{bottom:708.093333pt;}
.y83{bottom:712.253333pt;}
.y1e{bottom:727.613333pt;}
.y52{bottom:735.613333pt;}
.y93{bottom:736.093333pt;}
.y1d{bottom:755.333333pt;}
.y51{bottom:763.333333pt;}
.y1b{bottom:782.853333pt;}
.y1c{bottom:788.933333pt;}
.y50{bottom:790.853333pt;}
.y82{bottom:792.613333pt;}
.y92{bottom:810.373333pt;}
.y1a{bottom:810.533333pt;}
.y81{bottom:813.733333pt;}
.y4f{bottom:818.533333pt;}
.y80{bottom:834.693333pt;}
.y19{bottom:838.053333pt;}
.y4e{bottom:846.053333pt;}
.y7f{bottom:855.653333pt;}
.y18{bottom:865.733333pt;}
.y4d{bottom:873.733333pt;}
.y7e{bottom:876.613333pt;}
.y91{bottom:884.613333pt;}
.y17{bottom:893.253333pt;}
.y4c{bottom:901.253333pt;}
.y7d{bottom:905.573333pt;}
.y16{bottom:920.933333pt;}
.y4b{bottom:928.933333pt;}
.y7c{bottom:933.093333pt;}
.y15{bottom:948.453333pt;}
.y4a{bottom:956.453333pt;}
.y90{bottom:959.013333pt;}
.y7b{bottom:960.773333pt;}
.y39{bottom:976.133333pt;}
.y14{bottom:984.133333pt;}
.y5a{bottom:990.213333pt;}
.y7a{bottom:991.013333pt;}
.y13{bottom:1011.680000pt;}
.y1{bottom:1060.480000pt;}
.h9{height:1.867500pt;}
.he{height:27.078750pt;}
.hc{height:31.280625pt;}
.h8{height:40.384687pt;}
.h10{height:42.952500pt;}
.h7{height:44.640000pt;}
.hb{height:45.156250pt;}
.h2{height:46.687500pt;}
.hf{height:48.530000pt;}
.hd{height:52.750000pt;}
.h11{height:55.600625pt;}
.h16{height:59.520000pt;}
.h13{height:59.552000pt;}
.h14{height:59.680000pt;}
.h15{height:59.712000pt;}
.h6{height:113.369062pt;}
.h5{height:113.441875pt;}
.h12{height:141.984375pt;}
.h4{height:288.026667pt;}
.h3{height:624.093333pt;}
.ha{height:956.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:139.840000pt;}
.w4{width:242.786667pt;}
.w5{width:242.906667pt;}
.w6{width:243.106667pt;}
.w9{width:471.293333pt;}
.w3{width:728.800000pt;}
.w7{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:33.600000pt;}
.x2{left:36.800000pt;}
.x5{left:44.992000pt;}
.x4{left:48.032000pt;}
.x17{left:54.074667pt;}
.x14{left:73.914667pt;}
.xd{left:96.031988pt;}
.x9{left:97.000000pt;}
.x7{left:106.400000pt;}
.x1{left:144.026655pt;}
.x11{left:148.666655pt;}
.x15{left:238.426667pt;}
.x16{left:240.066667pt;}
.xc{left:259.906655pt;}
.x6{left:279.586667pt;}
.x10{left:336.066655pt;}
.x8{left:522.493333pt;}
.x12{left:570.973310pt;}
.x13{left:576.413322pt;}
.xe{left:645.573310pt;}
.xf{left:651.013322pt;}
.x3{left:680.133333pt;}
.xb{left:689.893322pt;}
}




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