
    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_27d3868c57d5bdbd27623758.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_1e90778afe9be48e1031f211.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c0adaeab071149cd6ddf3867.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5cc218c5781fb2547b164bfe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7bafae483024da2e24cc5892.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680664;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_e58fa7b90dbd9f9d133d5d18.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_f53263b8a4a12b55687b9995.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.680664;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-83.520000px;}
.v7{vertical-align:-82.080000px;}
.v2{vertical-align:-72.000000px;}
.v3{vertical-align:-67.680000px;}
.v6{vertical-align:-33.120000px;}
.v5{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.120000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.006025px;}
.ls13{letter-spacing:0.006625px;}
.ls0{letter-spacing:0.522720px;}
.ls6{letter-spacing:0.665280px;}
.ls10{letter-spacing:0.723169px;}
.ls12{letter-spacing:0.723745px;}
.ls7{letter-spacing:0.724633px;}
.ls5{letter-spacing:0.724897px;}
.ls11{letter-spacing:1.082593px;}
.lsd{letter-spacing:3.604321px;}
.lsb{letter-spacing:6.484897px;}
.ls9{letter-spacing:6.843745px;}
.lsa{letter-spacing:10.805761px;}
.ls1{letter-spacing:25.209242px;}
.lsc{letter-spacing:26.648354px;}
.ls4{letter-spacing:42.238370px;}
.lsf{letter-spacing:54.879579px;}
.ls16{letter-spacing:66.977596px;}
.ls14{letter-spacing:73.602724px;}
.ls3{letter-spacing:92.902204px;}
.ls17{letter-spacing:96.647333px;}
.ls15{letter-spacing:151.954591px;}
.ls2{letter-spacing:1635.451266px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-12.303890px;}
.ws3{word-spacing:-11.880000px;}
.ws4{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-6.272005px;}
._16{margin-left:-4.339827px;}
._5{margin-left:-2.907360px;}
._1{margin-left:-1.425600px;}
._0{width:1.092960px;}
._4{width:2.255040px;}
._8{width:4.206072px;}
._7{width:5.592120px;}
._6{width:6.633400px;}
._2{width:7.686440px;}
._3{width:8.797200px;}
._a{width:9.960240px;}
._9{width:10.972800px;}
._18{width:11.976720px;}
._11{width:13.104000px;}
._b{width:14.891040px;}
._c{width:16.652487px;}
._10{width:19.226880px;}
._e{width:20.329920px;}
._d{width:21.646080px;}
._f{width:22.795368px;}
._17{width:24.454080px;}
._1d{width:26.222400px;}
._1c{width:27.389907px;}
._1b{width:28.713600px;}
._19{width:30.084480px;}
._13{width:31.833530px;}
._14{width:33.232870px;}
._15{width:34.500000px;}
._1e{width:279.460534px;}
._1a{width:560.279856px;}
._1f{width:873.131369px;}
.fc2{color:transparent;}
.fc1{color:rgb(22,22,22);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.992800px;}
.fs0{font-size:47.520000px;}
.fs6{font-size:47.991600px;}
.fs8{font-size:59.989800px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.479400px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.040000px;}
.y5{bottom:101.520000px;}
.y4{bottom:118.800000px;}
.y2{bottom:132.120000px;}
.y1{bottom:137.160000px;}
.y36{bottom:150.120000px;}
.y81{bottom:156.960000px;}
.y7f{bottom:167.400000px;}
.ybc{bottom:169.560000px;}
.y35{bottom:174.240000px;}
.y34{bottom:184.680000px;}
.ybb{bottom:190.440000px;}
.y5e{bottom:191.520000px;}
.y7e{bottom:201.960000px;}
.y5d{bottom:208.800000px;}
.y33{bottom:209.160000px;}
.yba{bottom:210.960000px;}
.y5c{bottom:219.240000px;}
.y83{bottom:226.080000px;}
.y32{bottom:229.680000px;}
.yb9{bottom:231.840000px;}
.y5b{bottom:236.520000px;}
.y7d{bottom:240.120000px;}
.y61{bottom:243.360000px;}
.y31{bottom:250.560000px;}
.yb8{bottom:252.360000px;}
.y60{bottom:253.800000px;}
.y5a{bottom:260.640000px;}
.y59{bottom:270.720000px;}
.y30{bottom:271.080000px;}
.yb7{bottom:273.240000px;}
.y82{bottom:277.560000px;}
.y7c{bottom:281.520000px;}
.y58{bottom:288.000000px;}
.y2f{bottom:291.600000px;}
.yb6{bottom:293.760000px;}
.ya5{bottom:299.520000px;}
.y7b{bottom:302.040000px;}
.y57{bottom:312.120000px;}
.y2e{bottom:312.480000px;}
.yb5{bottom:314.640000px;}
.ya4{bottom:320.400000px;}
.y56{bottom:322.560000px;}
.y7a{bottom:322.920000px;}
.y2d{bottom:333.000000px;}
.yb4{bottom:335.160000px;}
.ya3{bottom:340.920000px;}
.y79{bottom:343.440000px;}
.ye8{bottom:344.520000px;}
.y2c{bottom:353.880000px;}
.yb3{bottom:355.680000px;}
.ya2{bottom:361.800000px;}
.y78{bottom:364.320000px;}
.ye7{bottom:365.400000px;}
.y2b{bottom:374.400000px;}
.yb2{bottom:376.560000px;}
.ya1{bottom:382.320000px;}
.y77{bottom:384.840000px;}
.ye6{bottom:385.920000px;}
.y2a{bottom:395.280000px;}
.yb1{bottom:397.080000px;}
.ya0{bottom:403.200000px;}
.y76{bottom:405.720000px;}
.ye5{bottom:406.800000px;}
.y29{bottom:415.800000px;}
.yb0{bottom:417.960000px;}
.y9f{bottom:423.720000px;}
.y75{bottom:426.240000px;}
.ye4{bottom:427.320000px;}
.y28{bottom:436.680000px;}
.yaf{bottom:438.480000px;}
.y9e{bottom:444.600000px;}
.y74{bottom:447.120000px;}
.ye3{bottom:447.840000px;}
.y27{bottom:457.200000px;}
.yae{bottom:459.360000px;}
.y9d{bottom:465.120000px;}
.y73{bottom:467.640000px;}
.ye2{bottom:470.160000px;}
.y26{bottom:478.080000px;}
.y9c{bottom:486.000000px;}
.y72{bottom:488.160000px;}
.ye1{bottom:490.680000px;}
.y25{bottom:498.240000px;}
.y55{bottom:498.600000px;}
.yad{bottom:500.760000px;}
.y9b{bottom:506.520000px;}
.y71{bottom:510.120000px;}
.ye0{bottom:511.560000px;}
.y24{bottom:515.520000px;}
.y54{bottom:519.480000px;}
.yac{bottom:521.280000px;}
.y9a{bottom:527.400000px;}
.ydf{bottom:532.080000px;}
.y70{bottom:532.440000px;}
.y23{bottom:532.800000px;}
.y53{bottom:540.000000px;}
.yab{bottom:542.160000px;}
.y99{bottom:547.920000px;}
.y22{bottom:550.080000px;}
.y6f{bottom:552.960000px;}
.yde{bottom:554.040000px;}
.y52{bottom:560.880000px;}
.yaa{bottom:562.320000px;}
.y98{bottom:568.800000px;}
.y6e{bottom:574.920000px;}
.y51{bottom:581.400000px;}
.ya9{bottom:583.560000px;}
.y21{bottom:584.280000px;}
.y97{bottom:589.320000px;}
.ydd{bottom:595.440000px;}
.y6d{bottom:595.800000px;}
.y20{bottom:601.560000px;}
.y50{bottom:602.280000px;}
.y96{bottom:610.200000px;}
.y6c{bottom:616.320000px;}
.y1f{bottom:618.480000px;}
.y4f{bottom:622.800000px;}
.ya8{bottom:624.960000px;}
.y95{bottom:630.720000px;}
.y1e{bottom:636.120000px;}
.y6b{bottom:637.200000px;}
.ydc{bottom:638.280000px;}
.y4e{bottom:643.680000px;}
.ya7{bottom:645.480000px;}
.y94{bottom:651.600000px;}
.y1d{bottom:653.400000px;}
.y6a{bottom:657.720000px;}
.ydb{bottom:659.160000px;}
.y4d{bottom:664.200000px;}
.ya6{bottom:666.360000px;}
.y1c{bottom:670.320000px;}
.y93{bottom:672.120000px;}
.y69{bottom:678.600000px;}
.yda{bottom:679.680000px;}
.y4c{bottom:685.080000px;}
.y1b{bottom:688.320000px;}
.y92{bottom:693.000000px;}
.y68{bottom:699.120000px;}
.yd9{bottom:701.640000px;}
.y4b{bottom:705.600000px;}
.y1a{bottom:708.480000px;}
.y91{bottom:713.520000px;}
.y67{bottom:720.000000px;}
.yd8{bottom:722.520000px;}
.ybd{bottom:725.040000px;}
.y19{bottom:725.760000px;}
.y4a{bottom:726.480000px;}
.y90{bottom:734.040000px;}
.y66{bottom:741.960000px;}
.y18{bottom:743.040000px;}
.y49{bottom:747.000000px;}
.y8f{bottom:754.920000px;}
.yc5{bottom:755.640000px;}
.y17{bottom:760.320000px;}
.y65{bottom:763.920000px;}
.y48{bottom:767.880000px;}
.ycd{bottom:770.760000px;}
.y8e{bottom:775.440000px;}
.y16{bottom:777.600000px;}
.yc4{bottom:780.480000px;}
.ycc{bottom:783.360000px;}
.y64{bottom:784.440000px;}
.y47{bottom:788.400000px;}
.yc3{bottom:793.080000px;}
.y15{bottom:794.880000px;}
.ycb{bottom:795.600000px;}
.y8d{bottom:796.320000px;}
.yc2{bottom:805.680000px;}
.y63{bottom:806.400000px;}
.yca{bottom:808.200000px;}
.y46{bottom:809.280000px;}
.y14{bottom:812.160000px;}
.yc1{bottom:817.920000px;}
.y8c{bottom:818.280000px;}
.yc9{bottom:820.800000px;}
.yd7{bottom:827.280000px;}
.y62{bottom:828.360000px;}
.y13{bottom:829.440000px;}
.y45{bottom:829.800000px;}
.yc0{bottom:830.520000px;}
.yc8{bottom:833.400000px;}
.y8b{bottom:840.240000px;}
.ybf{bottom:843.120000px;}
.yc7{bottom:845.640000px;}
.y12{bottom:846.720000px;}
.yd6{bottom:847.800000px;}
.y44{bottom:850.680000px;}
.yc6{bottom:858.240000px;}
.y8a{bottom:862.200000px;}
.y11{bottom:864.000000px;}
.yd5{bottom:870.120000px;}
.y43{bottom:871.200000px;}
.y10{bottom:881.640000px;}
.y89{bottom:884.160000px;}
.ycf{bottom:890.640000px;}
.y42{bottom:892.080000px;}
.ybe{bottom:894.240000px;}
.yf{bottom:901.800000px;}
.yce{bottom:903.240000px;}
.y88{bottom:906.120000px;}
.yd4{bottom:911.520000px;}
.y41{bottom:912.600000px;}
.ye{bottom:919.080000px;}
.y87{bottom:928.080000px;}
.yd3{bottom:932.040000px;}
.y5f{bottom:933.120000px;}
.y40{bottom:933.480000px;}
.yd{bottom:936.360000px;}
.y86{bottom:950.040000px;}
.y3f{bottom:954.000000px;}
.yc{bottom:971.640000px;}
.y85{bottom:972.000000px;}
.y3e{bottom:974.880000px;}
.y84{bottom:993.960000px;}
.yd2{bottom:995.040000px;}
.y3d{bottom:995.400000px;}
.yb{bottom:995.760000px;}
.y3c{bottom:1016.280000px;}
.yd1{bottom:1017.720000px;}
.ya{bottom:1019.880000px;}
.yd0{bottom:1035.720000px;}
.y3b{bottom:1036.800000px;}
.y9{bottom:1043.280000px;}
.y3a{bottom:1057.680000px;}
.y8{bottom:1065.600000px;}
.y39{bottom:1078.200000px;}
.y7{bottom:1093.320000px;}
.y38{bottom:1099.080000px;}
.y80{bottom:1119.240000px;}
.y37{bottom:1119.600000px;}
.y6{bottom:1140.480000px;}
.h2{height:14.040000px;}
.hc{height:38.158594px;}
.h10{height:44.806318px;}
.h1{height:50.703840px;}
.hf{height:51.207037px;}
.h3{height:59.357813px;}
.h8{height:60.952500px;}
.h9{height:63.078750px;}
.h11{height:64.009117px;}
.ha{height:70.628906px;}
.h4{height:70.664062px;}
.h6{height:72.562500px;}
.he{height:75.093750px;}
.hd{height:79.735078px;}
.hb{height:79.758281px;}
.h7{height:84.172500px;}
.h5{height:97.233145px;}
.h0{height:1263.000000px;}
.w1{width:84.660000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:63.719850px;}
.x5{left:74.520000px;}
.x23{left:79.200000px;}
.x22{left:84.960000px;}
.x7{left:90.720000px;}
.x1{left:93.600000px;}
.x9{left:95.760000px;}
.xa{left:106.200000px;}
.x24{left:113.040000px;}
.x25{left:117.000000px;}
.xb{left:133.200000px;}
.xd{left:167.400000px;}
.x12{left:189.720000px;}
.x15{left:193.680000px;}
.x10{left:195.840000px;}
.x16{left:197.640000px;}
.x14{left:204.480000px;}
.x13{left:208.080000px;}
.x8{left:212.760000px;}
.x11{left:221.400000px;}
.xc{left:244.440000px;}
.xf{left:252.000000px;}
.xe{left:258.480000px;}
.x1f{left:290.160000px;}
.x20{left:369.720000px;}
.x1e{left:444.960000px;}
.x1d{left:457.920000px;}
.x6{left:488.520000px;}
.x19{left:534.600000px;}
.x17{left:539.280000px;}
.x1c{left:542.880000px;}
.x1b{left:547.920000px;}
.x1a{left:551.520000px;}
.x18{left:564.840000px;}
.x21{left:792.720000px;}
.x3{left:800.280000px;}
.x2{left:807.840000px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v7{vertical-align:-72.960000pt;}
.v2{vertical-align:-64.000000pt;}
.v3{vertical-align:-60.160000pt;}
.v6{vertical-align:-29.440000pt;}
.v5{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.440000pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.005356pt;}
.ls13{letter-spacing:0.005889pt;}
.ls0{letter-spacing:0.464640pt;}
.ls6{letter-spacing:0.591360pt;}
.ls10{letter-spacing:0.642817pt;}
.ls12{letter-spacing:0.643329pt;}
.ls7{letter-spacing:0.644118pt;}
.ls5{letter-spacing:0.644353pt;}
.ls11{letter-spacing:0.962304pt;}
.lsd{letter-spacing:3.203841pt;}
.lsb{letter-spacing:5.764353pt;}
.ls9{letter-spacing:6.083329pt;}
.lsa{letter-spacing:9.605121pt;}
.ls1{letter-spacing:22.408215pt;}
.lsc{letter-spacing:23.687425pt;}
.ls4{letter-spacing:37.545218pt;}
.lsf{letter-spacing:48.781848pt;}
.ls16{letter-spacing:59.535640pt;}
.ls14{letter-spacing:65.424643pt;}
.ls3{letter-spacing:82.579737pt;}
.ls17{letter-spacing:85.908740pt;}
.ls15{letter-spacing:135.070747pt;}
.ls2{letter-spacing:1453.734459pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-10.936791pt;}
.ws3{word-spacing:-10.560000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-5.575116pt;}
._16{margin-left:-3.857624pt;}
._5{margin-left:-2.584320pt;}
._1{margin-left:-1.267200pt;}
._0{width:0.971520pt;}
._4{width:2.004480pt;}
._8{width:3.738731pt;}
._7{width:4.970774pt;}
._6{width:5.896355pt;}
._2{width:6.832391pt;}
._3{width:7.819733pt;}
._a{width:8.853547pt;}
._9{width:9.753600pt;}
._18{width:10.645973pt;}
._11{width:11.648000pt;}
._b{width:13.236480pt;}
._c{width:14.802211pt;}
._10{width:17.090560pt;}
._e{width:18.071040pt;}
._d{width:19.240960pt;}
._f{width:20.262549pt;}
._17{width:21.736960pt;}
._1d{width:23.308800pt;}
._1c{width:24.346584pt;}
._1b{width:25.523200pt;}
._19{width:26.741760pt;}
._13{width:28.296471pt;}
._14{width:29.540329pt;}
._15{width:30.666667pt;}
._1e{width:248.409364pt;}
._1a{width:498.026539pt;}
._1f{width:776.116772pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.326933pt;}
.fs0{font-size:42.240000pt;}
.fs6{font-size:42.659200pt;}
.fs8{font-size:53.324267pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.759467pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.480000pt;}
.y5{bottom:90.240000pt;}
.y4{bottom:105.600000pt;}
.y2{bottom:117.440000pt;}
.y1{bottom:121.920000pt;}
.y36{bottom:133.440000pt;}
.y81{bottom:139.520000pt;}
.y7f{bottom:148.800000pt;}
.ybc{bottom:150.720000pt;}
.y35{bottom:154.880000pt;}
.y34{bottom:164.160000pt;}
.ybb{bottom:169.280000pt;}
.y5e{bottom:170.240000pt;}
.y7e{bottom:179.520000pt;}
.y5d{bottom:185.600000pt;}
.y33{bottom:185.920000pt;}
.yba{bottom:187.520000pt;}
.y5c{bottom:194.880000pt;}
.y83{bottom:200.960000pt;}
.y32{bottom:204.160000pt;}
.yb9{bottom:206.080000pt;}
.y5b{bottom:210.240000pt;}
.y7d{bottom:213.440000pt;}
.y61{bottom:216.320000pt;}
.y31{bottom:222.720000pt;}
.yb8{bottom:224.320000pt;}
.y60{bottom:225.600000pt;}
.y5a{bottom:231.680000pt;}
.y59{bottom:240.640000pt;}
.y30{bottom:240.960000pt;}
.yb7{bottom:242.880000pt;}
.y82{bottom:246.720000pt;}
.y7c{bottom:250.240000pt;}
.y58{bottom:256.000000pt;}
.y2f{bottom:259.200000pt;}
.yb6{bottom:261.120000pt;}
.ya5{bottom:266.240000pt;}
.y7b{bottom:268.480000pt;}
.y57{bottom:277.440000pt;}
.y2e{bottom:277.760000pt;}
.yb5{bottom:279.680000pt;}
.ya4{bottom:284.800000pt;}
.y56{bottom:286.720000pt;}
.y7a{bottom:287.040000pt;}
.y2d{bottom:296.000000pt;}
.yb4{bottom:297.920000pt;}
.ya3{bottom:303.040000pt;}
.y79{bottom:305.280000pt;}
.ye8{bottom:306.240000pt;}
.y2c{bottom:314.560000pt;}
.yb3{bottom:316.160000pt;}
.ya2{bottom:321.600000pt;}
.y78{bottom:323.840000pt;}
.ye7{bottom:324.800000pt;}
.y2b{bottom:332.800000pt;}
.yb2{bottom:334.720000pt;}
.ya1{bottom:339.840000pt;}
.y77{bottom:342.080000pt;}
.ye6{bottom:343.040000pt;}
.y2a{bottom:351.360000pt;}
.yb1{bottom:352.960000pt;}
.ya0{bottom:358.400000pt;}
.y76{bottom:360.640000pt;}
.ye5{bottom:361.600000pt;}
.y29{bottom:369.600000pt;}
.yb0{bottom:371.520000pt;}
.y9f{bottom:376.640000pt;}
.y75{bottom:378.880000pt;}
.ye4{bottom:379.840000pt;}
.y28{bottom:388.160000pt;}
.yaf{bottom:389.760000pt;}
.y9e{bottom:395.200000pt;}
.y74{bottom:397.440000pt;}
.ye3{bottom:398.080000pt;}
.y27{bottom:406.400000pt;}
.yae{bottom:408.320000pt;}
.y9d{bottom:413.440000pt;}
.y73{bottom:415.680000pt;}
.ye2{bottom:417.920000pt;}
.y26{bottom:424.960000pt;}
.y9c{bottom:432.000000pt;}
.y72{bottom:433.920000pt;}
.ye1{bottom:436.160000pt;}
.y25{bottom:442.880000pt;}
.y55{bottom:443.200000pt;}
.yad{bottom:445.120000pt;}
.y9b{bottom:450.240000pt;}
.y71{bottom:453.440000pt;}
.ye0{bottom:454.720000pt;}
.y24{bottom:458.240000pt;}
.y54{bottom:461.760000pt;}
.yac{bottom:463.360000pt;}
.y9a{bottom:468.800000pt;}
.ydf{bottom:472.960000pt;}
.y70{bottom:473.280000pt;}
.y23{bottom:473.600000pt;}
.y53{bottom:480.000000pt;}
.yab{bottom:481.920000pt;}
.y99{bottom:487.040000pt;}
.y22{bottom:488.960000pt;}
.y6f{bottom:491.520000pt;}
.yde{bottom:492.480000pt;}
.y52{bottom:498.560000pt;}
.yaa{bottom:499.840000pt;}
.y98{bottom:505.600000pt;}
.y6e{bottom:511.040000pt;}
.y51{bottom:516.800000pt;}
.ya9{bottom:518.720000pt;}
.y21{bottom:519.360000pt;}
.y97{bottom:523.840000pt;}
.ydd{bottom:529.280000pt;}
.y6d{bottom:529.600000pt;}
.y20{bottom:534.720000pt;}
.y50{bottom:535.360000pt;}
.y96{bottom:542.400000pt;}
.y6c{bottom:547.840000pt;}
.y1f{bottom:549.760000pt;}
.y4f{bottom:553.600000pt;}
.ya8{bottom:555.520000pt;}
.y95{bottom:560.640000pt;}
.y1e{bottom:565.440000pt;}
.y6b{bottom:566.400000pt;}
.ydc{bottom:567.360000pt;}
.y4e{bottom:572.160000pt;}
.ya7{bottom:573.760000pt;}
.y94{bottom:579.200000pt;}
.y1d{bottom:580.800000pt;}
.y6a{bottom:584.640000pt;}
.ydb{bottom:585.920000pt;}
.y4d{bottom:590.400000pt;}
.ya6{bottom:592.320000pt;}
.y1c{bottom:595.840000pt;}
.y93{bottom:597.440000pt;}
.y69{bottom:603.200000pt;}
.yda{bottom:604.160000pt;}
.y4c{bottom:608.960000pt;}
.y1b{bottom:611.840000pt;}
.y92{bottom:616.000000pt;}
.y68{bottom:621.440000pt;}
.yd9{bottom:623.680000pt;}
.y4b{bottom:627.200000pt;}
.y1a{bottom:629.760000pt;}
.y91{bottom:634.240000pt;}
.y67{bottom:640.000000pt;}
.yd8{bottom:642.240000pt;}
.ybd{bottom:644.480000pt;}
.y19{bottom:645.120000pt;}
.y4a{bottom:645.760000pt;}
.y90{bottom:652.480000pt;}
.y66{bottom:659.520000pt;}
.y18{bottom:660.480000pt;}
.y49{bottom:664.000000pt;}
.y8f{bottom:671.040000pt;}
.yc5{bottom:671.680000pt;}
.y17{bottom:675.840000pt;}
.y65{bottom:679.040000pt;}
.y48{bottom:682.560000pt;}
.ycd{bottom:685.120000pt;}
.y8e{bottom:689.280000pt;}
.y16{bottom:691.200000pt;}
.yc4{bottom:693.760000pt;}
.ycc{bottom:696.320000pt;}
.y64{bottom:697.280000pt;}
.y47{bottom:700.800000pt;}
.yc3{bottom:704.960000pt;}
.y15{bottom:706.560000pt;}
.ycb{bottom:707.200000pt;}
.y8d{bottom:707.840000pt;}
.yc2{bottom:716.160000pt;}
.y63{bottom:716.800000pt;}
.yca{bottom:718.400000pt;}
.y46{bottom:719.360000pt;}
.y14{bottom:721.920000pt;}
.yc1{bottom:727.040000pt;}
.y8c{bottom:727.360000pt;}
.yc9{bottom:729.600000pt;}
.yd7{bottom:735.360000pt;}
.y62{bottom:736.320000pt;}
.y13{bottom:737.280000pt;}
.y45{bottom:737.600000pt;}
.yc0{bottom:738.240000pt;}
.yc8{bottom:740.800000pt;}
.y8b{bottom:746.880000pt;}
.ybf{bottom:749.440000pt;}
.yc7{bottom:751.680000pt;}
.y12{bottom:752.640000pt;}
.yd6{bottom:753.600000pt;}
.y44{bottom:756.160000pt;}
.yc6{bottom:762.880000pt;}
.y8a{bottom:766.400000pt;}
.y11{bottom:768.000000pt;}
.yd5{bottom:773.440000pt;}
.y43{bottom:774.400000pt;}
.y10{bottom:783.680000pt;}
.y89{bottom:785.920000pt;}
.ycf{bottom:791.680000pt;}
.y42{bottom:792.960000pt;}
.ybe{bottom:794.880000pt;}
.yf{bottom:801.600000pt;}
.yce{bottom:802.880000pt;}
.y88{bottom:805.440000pt;}
.yd4{bottom:810.240000pt;}
.y41{bottom:811.200000pt;}
.ye{bottom:816.960000pt;}
.y87{bottom:824.960000pt;}
.yd3{bottom:828.480000pt;}
.y5f{bottom:829.440000pt;}
.y40{bottom:829.760000pt;}
.yd{bottom:832.320000pt;}
.y86{bottom:844.480000pt;}
.y3f{bottom:848.000000pt;}
.yc{bottom:863.680000pt;}
.y85{bottom:864.000000pt;}
.y3e{bottom:866.560000pt;}
.y84{bottom:883.520000pt;}
.yd2{bottom:884.480000pt;}
.y3d{bottom:884.800000pt;}
.yb{bottom:885.120000pt;}
.y3c{bottom:903.360000pt;}
.yd1{bottom:904.640000pt;}
.ya{bottom:906.560000pt;}
.yd0{bottom:920.640000pt;}
.y3b{bottom:921.600000pt;}
.y9{bottom:927.360000pt;}
.y3a{bottom:940.160000pt;}
.y8{bottom:947.200000pt;}
.y39{bottom:958.400000pt;}
.y7{bottom:971.840000pt;}
.y38{bottom:976.960000pt;}
.y80{bottom:994.880000pt;}
.y37{bottom:995.200000pt;}
.y6{bottom:1013.760000pt;}
.h2{height:12.480000pt;}
.hc{height:33.918750pt;}
.h10{height:39.827838pt;}
.h1{height:45.070080pt;}
.hf{height:45.517366pt;}
.h3{height:52.762500pt;}
.h8{height:54.180000pt;}
.h9{height:56.070000pt;}
.h11{height:56.896993pt;}
.ha{height:62.781250pt;}
.h4{height:62.812500pt;}
.h6{height:64.500000pt;}
.he{height:66.750000pt;}
.hd{height:70.875625pt;}
.hb{height:70.896250pt;}
.h7{height:74.820000pt;}
.h5{height:86.429463pt;}
.h0{height:1122.666667pt;}
.w1{width:75.253333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:56.639867pt;}
.x5{left:66.240000pt;}
.x23{left:70.400000pt;}
.x22{left:75.520000pt;}
.x7{left:80.640000pt;}
.x1{left:83.200000pt;}
.x9{left:85.120000pt;}
.xa{left:94.400000pt;}
.x24{left:100.480000pt;}
.x25{left:104.000000pt;}
.xb{left:118.400000pt;}
.xd{left:148.800000pt;}
.x12{left:168.640000pt;}
.x15{left:172.160000pt;}
.x10{left:174.080000pt;}
.x16{left:175.680000pt;}
.x14{left:181.760000pt;}
.x13{left:184.960000pt;}
.x8{left:189.120000pt;}
.x11{left:196.800000pt;}
.xc{left:217.280000pt;}
.xf{left:224.000000pt;}
.xe{left:229.760000pt;}
.x1f{left:257.920000pt;}
.x20{left:328.640000pt;}
.x1e{left:395.520000pt;}
.x1d{left:407.040000pt;}
.x6{left:434.240000pt;}
.x19{left:475.200000pt;}
.x17{left:479.360000pt;}
.x1c{left:482.560000pt;}
.x1b{left:487.040000pt;}
.x1a{left:490.240000pt;}
.x18{left:502.080000pt;}
.x21{left:704.640000pt;}
.x3{left:711.360000pt;}
.x2{left:718.080000pt;}
}




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