
    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_3e5cf9fd7dbdf144c845cbd0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ec8d864d3cda94c5cae20fbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_de684728d73aa7baa6962688.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_9a1bc93a14fa4990275c4b7c.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v1{vertical-align:-27.000000px;}
.v2{vertical-align:-2.880600px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.360000px;}
.ls3e{letter-spacing:-0.234468px;}
.ls20{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.192384px;}
.ls36{letter-spacing:-0.186372px;}
.ls3c{letter-spacing:-0.180360px;}
.ls1b{letter-spacing:-0.180000px;}
.ls4d{letter-spacing:-0.156312px;}
.ls4e{letter-spacing:-0.144288px;}
.ls37{letter-spacing:-0.138276px;}
.ls18{letter-spacing:-0.136800px;}
.ls21{letter-spacing:-0.122400px;}
.ls3d{letter-spacing:-0.120240px;}
.ls45{letter-spacing:-0.114228px;}
.ls4a{letter-spacing:-0.102204px;}
.ls11{letter-spacing:-0.086400px;}
.ls2f{letter-spacing:-0.079200px;}
.ls4c{letter-spacing:-0.078156px;}
.ls12{letter-spacing:-0.072000px;}
.ls40{letter-spacing:-0.066132px;}
.ls15{letter-spacing:-0.057600px;}
.ls3f{letter-spacing:-0.054108px;}
.ls2d{letter-spacing:-0.050400px;}
.ls49{letter-spacing:-0.048096px;}
.ls1d{letter-spacing:-0.043200px;}
.ls43{letter-spacing:-0.042084px;}
.ls19{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.028800px;}
.ls3b{letter-spacing:-0.024048px;}
.lsf{letter-spacing:-0.021600px;}
.ls48{letter-spacing:-0.018036px;}
.ls10{letter-spacing:-0.014400px;}
.ls38{letter-spacing:-0.012024px;}
.ls14{letter-spacing:-0.007200px;}
.ls13{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007200px;}
.ls33{letter-spacing:0.012024px;}
.ls2{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.028800px;}
.ls35{letter-spacing:0.030060px;}
.ls6{letter-spacing:0.036000px;}
.ls47{letter-spacing:0.042084px;}
.lsc{letter-spacing:0.043200px;}
.ls31{letter-spacing:0.048096px;}
.ls5{letter-spacing:0.050400px;}
.ls3a{letter-spacing:0.054108px;}
.ls7{letter-spacing:0.057600px;}
.ls3{letter-spacing:0.064800px;}
.lse{letter-spacing:0.072000px;}
.ls32{letter-spacing:0.078156px;}
.lsb{letter-spacing:0.079200px;}
.ls4{letter-spacing:0.086400px;}
.ls42{letter-spacing:0.090180px;}
.lsd{letter-spacing:0.093600px;}
.ls39{letter-spacing:0.096192px;}
.ls1e{letter-spacing:0.100800px;}
.ls46{letter-spacing:0.102204px;}
.ls23{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.108216px;}
.ls41{letter-spacing:0.114228px;}
.ls9{letter-spacing:0.115200px;}
.ls4b{letter-spacing:0.120240px;}
.ls27{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.178200px;}
.ls24{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.181944px;}
.ls1a{letter-spacing:1.800000px;}
.ls30{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.400000px;}
.ls2a{letter-spacing:5.760000px;}
.ls2c{letter-spacing:6.120000px;}
.ls29{letter-spacing:9.720000px;}
.ls2e{letter-spacing:12.153600px;}
.ls1f{letter-spacing:14.760000px;}
.ls22{letter-spacing:17.280000px;}
.ls1c{letter-spacing:18.360000px;}
.ls25{letter-spacing:20.880000px;}
.ls0{letter-spacing:1337.040000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.086400px;}
.ws0{word-spacing:-18.064800px;}
.ws2{word-spacing:-18.050400px;}
.ws3{word-spacing:-18.007200px;}
.ws5{word-spacing:-17.985600px;}
.ws11{word-spacing:-17.920800px;}
.ws4{word-spacing:-17.863200px;}
.ws14{word-spacing:-15.138216px;}
.ws15{word-spacing:-15.017976px;}
.ws12{word-spacing:-14.849640px;}
.ws13{word-spacing:-14.795532px;}
.wsf{word-spacing:-12.151944px;}
.wsd{word-spacing:-0.057600px;}
.ws10{word-spacing:-0.050400px;}
.ws21{word-spacing:-0.012024px;}
.wsa{word-spacing:0.000000px;}
.wsb{word-spacing:0.007200px;}
.ws7{word-spacing:0.086400px;}
.ws8{word-spacing:0.129600px;}
.ws6{word-spacing:0.136800px;}
.ws9{word-spacing:0.187200px;}
.ws1f{word-spacing:0.925848px;}
.wse{word-spacing:1.339200px;}
.ws18{word-spacing:2.891772px;}
.ws20{word-spacing:3.583152px;}
.ws17{word-spacing:4.533048px;}
.ws1a{word-spacing:5.032044px;}
.ws19{word-spacing:5.741460px;}
.ws22{word-spacing:5.993964px;}
.ws1d{word-spacing:6.252480px;}
.ws1b{word-spacing:6.589152px;}
.ws1c{word-spacing:6.619212px;}
.ws1e{word-spacing:9.589140px;}
.ws16{word-spacing:12.829608px;}
.wsc{word-spacing:27.352800px;}
._22{margin-left:-21.578400px;}
._e{margin-left:-19.519200px;}
._f{margin-left:-18.201600px;}
._1d{margin-left:-16.610400px;}
._17{margin-left:-15.480000px;}
._16{margin-left:-14.464800px;}
._28{margin-left:-12.096000px;}
._25{margin-left:-10.814400px;}
._24{margin-left:-9.576000px;}
._27{margin-left:-6.775200px;}
._26{margin-left:-5.407200px;}
._29{margin-left:-4.010400px;}
._c{margin-left:-2.505600px;}
._2{margin-left:-1.072800px;}
._0{width:1.152000px;}
._3{width:2.462400px;}
._5{width:3.499200px;}
._8{width:4.723200px;}
._b{width:5.788800px;}
._4{width:6.825600px;}
._6{width:8.265600px;}
._7{width:9.280800px;}
._d{width:11.116800px;}
._11{width:12.564000px;}
._15{width:14.500800px;}
._14{width:15.717600px;}
._1{width:16.747200px;}
._21{width:19.987200px;}
._1b{width:21.873600px;}
._1a{width:23.025600px;}
._20{width:24.696000px;}
._10{width:26.272800px;}
._13{width:27.345600px;}
._19{width:28.440000px;}
._12{width:29.476800px;}
._1e{width:30.823200px;}
._1f{width:31.838400px;}
._9{width:33.300000px;}
._a{width:34.401600px;}
._1c{width:40.312800px;}
._23{width:414.000000px;}
._18{width:2398.680000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(19,19,19);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:111.810450px;}
.y4a{bottom:121.350450px;}
.y75{bottom:124.140450px;}
.y62{bottom:125.130450px;}
.y84{bottom:125.310450px;}
.y7e{bottom:127.650600px;}
.y2b{bottom:132.510450px;}
.y49{bottom:142.050450px;}
.y74{bottom:144.840450px;}
.y61{bottom:146.010450px;}
.y7d{bottom:148.350600px;}
.y2a{bottom:153.210450px;}
.y48{bottom:161.940450px;}
.y73{bottom:165.540450px;}
.y60{bottom:166.710450px;}
.y7c{bottom:169.050600px;}
.y29{bottom:173.910450px;}
.y47{bottom:174.180450px;}
.y72{bottom:186.240450px;}
.y5f{bottom:187.410450px;}
.y7b{bottom:189.750600px;}
.y28{bottom:194.610450px;}
.y71{bottom:206.940450px;}
.y5e{bottom:208.110450px;}
.y7a{bottom:210.450600px;}
.y27{bottom:215.310450px;}
.y70{bottom:227.640450px;}
.y5d{bottom:228.810450px;}
.y79{bottom:230.250450px;}
.y26{bottom:236.010450px;}
.y78{bottom:242.670450px;}
.y6f{bottom:248.340450px;}
.y5c{bottom:249.510450px;}
.y25{bottom:256.710450px;}
.y6e{bottom:269.040450px;}
.y5b{bottom:270.210450px;}
.y24{bottom:277.410450px;}
.y6d{bottom:289.740450px;}
.y5a{bottom:290.910450px;}
.y23{bottom:297.930450px;}
.y6c{bottom:310.440450px;}
.y59{bottom:311.610450px;}
.y22{bottom:318.810450px;}
.y6b{bottom:331.140450px;}
.y58{bottom:332.310450px;}
.y21{bottom:339.510450px;}
.y69{bottom:351.840450px;}
.y57{bottom:353.010450px;}
.y6a{bottom:358.590450px;}
.y20{bottom:360.210450px;}
.y68{bottom:372.540450px;}
.y56{bottom:373.710450px;}
.y1f{bottom:380.820450px;}
.y67{bottom:393.240450px;}
.y55{bottom:394.410450px;}
.y1e{bottom:401.610450px;}
.y66{bottom:413.940450px;}
.y54{bottom:415.110450px;}
.y1d{bottom:422.310450px;}
.y65{bottom:434.640450px;}
.y83{bottom:435.630450px;}
.y53{bottom:435.810450px;}
.y77{bottom:436.710600px;}
.y1c{bottom:443.010450px;}
.y76{bottom:453.270600px;}
.y82{bottom:456.330450px;}
.y52{bottom:456.510450px;}
.y64{bottom:460.200600px;}
.y1b{bottom:463.710450px;}
.y81{bottom:477.030450px;}
.y51{bottom:477.210450px;}
.y1a{bottom:484.410450px;}
.y80{bottom:497.730450px;}
.y50{bottom:497.910450px;}
.y19{bottom:505.110450px;}
.y4f{bottom:518.610450px;}
.y18{bottom:525.810450px;}
.y4e{bottom:539.130450px;}
.y7f{bottom:539.310450px;}
.y17{bottom:546.510450px;}
.ya5{bottom:552.451269px;}
.y4d{bottom:560.010450px;}
.y16{bottom:567.210450px;}
.ya4{bottom:569.731260px;}
.y4c{bottom:580.710450px;}
.ya3{bottom:586.921071px;}
.y15{bottom:587.910450px;}
.y46{bottom:601.410450px;}
.ya2{bottom:604.201062px;}
.y14{bottom:608.610450px;}
.ya1{bottom:621.481053px;}
.y45{bottom:622.110450px;}
.y13{bottom:629.310450px;}
.ya0{bottom:638.670864px;}
.y44{bottom:642.810450px;}
.y12{bottom:650.010450px;}
.y9f{bottom:655.950855px;}
.y43{bottom:663.510450px;}
.y11{bottom:670.710450px;}
.y9e{bottom:673.230846px;}
.y42{bottom:684.210450px;}
.y9d{bottom:690.420657px;}
.y10{bottom:691.230450px;}
.y41{bottom:704.910450px;}
.y9c{bottom:707.700648px;}
.yf{bottom:712.110450px;}
.y9b{bottom:724.980639px;}
.y40{bottom:725.610450px;}
.ye{bottom:732.810450px;}
.y9a{bottom:742.170450px;}
.y3f{bottom:746.310450px;}
.yd{bottom:753.510450px;}
.y99{bottom:758.910450px;}
.y3e{bottom:767.010450px;}
.y98{bottom:773.222061px;}
.yc{bottom:774.210450px;}
.y3d{bottom:787.710450px;}
.y97{bottom:790.502052px;}
.yb{bottom:794.910450px;}
.y96{bottom:807.691863px;}
.y3c{bottom:808.410450px;}
.ya{bottom:820.110450px;}
.y95{bottom:824.971854px;}
.y3b{bottom:829.110450px;}
.y9{bottom:840.810450px;}
.y94{bottom:842.251845px;}
.y3a{bottom:849.810450px;}
.y93{bottom:859.441656px;}
.y8{bottom:861.510450px;}
.y39{bottom:870.330450px;}
.y4b{bottom:870.510450px;}
.y92{bottom:876.721647px;}
.y7{bottom:882.030450px;}
.y38{bottom:891.210450px;}
.y91{bottom:894.001638px;}
.y6{bottom:902.730450px;}
.y90{bottom:911.191449px;}
.y37{bottom:911.910450px;}
.y5{bottom:923.610450px;}
.y8f{bottom:928.471440px;}
.y36{bottom:932.610450px;}
.y4{bottom:944.310450px;}
.y8e{bottom:945.751431px;}
.y35{bottom:953.310450px;}
.y8d{bottom:962.941242px;}
.y3{bottom:969.330450px;}
.y34{bottom:974.010450px;}
.y8c{bottom:980.221233px;}
.y2{bottom:990.030450px;}
.y33{bottom:994.710450px;}
.y8b{bottom:997.501224px;}
.y1{bottom:1010.640450px;}
.y8a{bottom:1014.691035px;}
.y32{bottom:1015.410450px;}
.y89{bottom:1031.971026px;}
.y31{bottom:1036.110450px;}
.y88{bottom:1049.251017px;}
.y30{bottom:1056.810450px;}
.y87{bottom:1066.440828px;}
.y2f{bottom:1077.510450px;}
.y86{bottom:1083.720819px;}
.y2e{bottom:1098.210450px;}
.y85{bottom:1100.820450px;}
.y63{bottom:1118.640450px;}
.y2d{bottom:1118.820450px;}
.h5{height:33.268184px;}
.h8{height:41.772832px;}
.h3{height:50.027344px;}
.h4{height:52.971680px;}
.h6{height:52.972280px;}
.h7{height:53.397598px;}
.h9{height:58.975137px;}
.h2{height:63.949219px;}
.h1{height:70.628906px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:106.380000px;}
.x1{left:119.700000px;}
.x8{left:127.710000px;}
.x2{left:163.260000px;}
.x7{left:171.450000px;}
.x6{left:180.990000px;}
.x5{left:207.180000px;}
.x3{left:223.470000px;}
.x9{left:265.770000px;}
.xd{left:621.990000px;}
.xc{left:626.940000px;}
.xb{left:693.720000px;}
.xa{left:734.850000px;}
@media print{
.v1{vertical-align:-24.000000pt;}
.v2{vertical-align:-2.560533pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls3e{letter-spacing:-0.208416pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.171008pt;}
.ls36{letter-spacing:-0.165664pt;}
.ls3c{letter-spacing:-0.160320pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls4d{letter-spacing:-0.138944pt;}
.ls4e{letter-spacing:-0.128256pt;}
.ls37{letter-spacing:-0.122912pt;}
.ls18{letter-spacing:-0.121600pt;}
.ls21{letter-spacing:-0.108800pt;}
.ls3d{letter-spacing:-0.106880pt;}
.ls45{letter-spacing:-0.101536pt;}
.ls4a{letter-spacing:-0.090848pt;}
.ls11{letter-spacing:-0.076800pt;}
.ls2f{letter-spacing:-0.070400pt;}
.ls4c{letter-spacing:-0.069472pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls40{letter-spacing:-0.058784pt;}
.ls15{letter-spacing:-0.051200pt;}
.ls3f{letter-spacing:-0.048096pt;}
.ls2d{letter-spacing:-0.044800pt;}
.ls49{letter-spacing:-0.042752pt;}
.ls1d{letter-spacing:-0.038400pt;}
.ls43{letter-spacing:-0.037408pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.025600pt;}
.ls3b{letter-spacing:-0.021376pt;}
.lsf{letter-spacing:-0.019200pt;}
.ls48{letter-spacing:-0.016032pt;}
.ls10{letter-spacing:-0.012800pt;}
.ls38{letter-spacing:-0.010688pt;}
.ls14{letter-spacing:-0.006400pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006400pt;}
.ls33{letter-spacing:0.010688pt;}
.ls2{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.025600pt;}
.ls35{letter-spacing:0.026720pt;}
.ls6{letter-spacing:0.032000pt;}
.ls47{letter-spacing:0.037408pt;}
.lsc{letter-spacing:0.038400pt;}
.ls31{letter-spacing:0.042752pt;}
.ls5{letter-spacing:0.044800pt;}
.ls3a{letter-spacing:0.048096pt;}
.ls7{letter-spacing:0.051200pt;}
.ls3{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.064000pt;}
.ls32{letter-spacing:0.069472pt;}
.lsb{letter-spacing:0.070400pt;}
.ls4{letter-spacing:0.076800pt;}
.ls42{letter-spacing:0.080160pt;}
.lsd{letter-spacing:0.083200pt;}
.ls39{letter-spacing:0.085504pt;}
.ls1e{letter-spacing:0.089600pt;}
.ls46{letter-spacing:0.090848pt;}
.ls23{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.096192pt;}
.ls41{letter-spacing:0.101536pt;}
.ls9{letter-spacing:0.102400pt;}
.ls4b{letter-spacing:0.106880pt;}
.ls27{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.158400pt;}
.ls24{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.161728pt;}
.ls1a{letter-spacing:1.600000pt;}
.ls30{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:4.800000pt;}
.ls2a{letter-spacing:5.120000pt;}
.ls2c{letter-spacing:5.440000pt;}
.ls29{letter-spacing:8.640000pt;}
.ls2e{letter-spacing:10.803200pt;}
.ls1f{letter-spacing:13.120000pt;}
.ls22{letter-spacing:15.360000pt;}
.ls1c{letter-spacing:16.320000pt;}
.ls25{letter-spacing:18.560000pt;}
.ls0{letter-spacing:1188.480000pt;}
.ws1{word-spacing:-16.076800pt;}
.ws0{word-spacing:-16.057600pt;}
.ws2{word-spacing:-16.044800pt;}
.ws3{word-spacing:-16.006400pt;}
.ws5{word-spacing:-15.987200pt;}
.ws11{word-spacing:-15.929600pt;}
.ws4{word-spacing:-15.878400pt;}
.ws14{word-spacing:-13.456192pt;}
.ws15{word-spacing:-13.349312pt;}
.ws12{word-spacing:-13.199680pt;}
.ws13{word-spacing:-13.151584pt;}
.wsf{word-spacing:-10.801728pt;}
.wsd{word-spacing:-0.051200pt;}
.ws10{word-spacing:-0.044800pt;}
.ws21{word-spacing:-0.010688pt;}
.wsa{word-spacing:0.000000pt;}
.wsb{word-spacing:0.006400pt;}
.ws7{word-spacing:0.076800pt;}
.ws8{word-spacing:0.115200pt;}
.ws6{word-spacing:0.121600pt;}
.ws9{word-spacing:0.166400pt;}
.ws1f{word-spacing:0.822976pt;}
.wse{word-spacing:1.190400pt;}
.ws18{word-spacing:2.570464pt;}
.ws20{word-spacing:3.185024pt;}
.ws17{word-spacing:4.029376pt;}
.ws1a{word-spacing:4.472928pt;}
.ws19{word-spacing:5.103520pt;}
.ws22{word-spacing:5.327968pt;}
.ws1d{word-spacing:5.557760pt;}
.ws1b{word-spacing:5.857024pt;}
.ws1c{word-spacing:5.883744pt;}
.ws1e{word-spacing:8.523680pt;}
.ws16{word-spacing:11.404096pt;}
.wsc{word-spacing:24.313600pt;}
._22{margin-left:-19.180800pt;}
._e{margin-left:-17.350400pt;}
._f{margin-left:-16.179200pt;}
._1d{margin-left:-14.764800pt;}
._17{margin-left:-13.760000pt;}
._16{margin-left:-12.857600pt;}
._28{margin-left:-10.752000pt;}
._25{margin-left:-9.612800pt;}
._24{margin-left:-8.512000pt;}
._27{margin-left:-6.022400pt;}
._26{margin-left:-4.806400pt;}
._29{margin-left:-3.564800pt;}
._c{margin-left:-2.227200pt;}
._2{margin-left:-0.953600pt;}
._0{width:1.024000pt;}
._3{width:2.188800pt;}
._5{width:3.110400pt;}
._8{width:4.198400pt;}
._b{width:5.145600pt;}
._4{width:6.067200pt;}
._6{width:7.347200pt;}
._7{width:8.249600pt;}
._d{width:9.881600pt;}
._11{width:11.168000pt;}
._15{width:12.889600pt;}
._14{width:13.971200pt;}
._1{width:14.886400pt;}
._21{width:17.766400pt;}
._1b{width:19.443200pt;}
._1a{width:20.467200pt;}
._20{width:21.952000pt;}
._10{width:23.353600pt;}
._13{width:24.307200pt;}
._19{width:25.280000pt;}
._12{width:26.201600pt;}
._1e{width:27.398400pt;}
._1f{width:28.300800pt;}
._9{width:29.600000pt;}
._a{width:30.579200pt;}
._1c{width:35.833600pt;}
._23{width:368.000000pt;}
._18{width:2132.160000pt;}
.fs2{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:99.387067pt;}
.y4a{bottom:107.867067pt;}
.y75{bottom:110.347067pt;}
.y62{bottom:111.227067pt;}
.y84{bottom:111.387067pt;}
.y7e{bottom:113.467200pt;}
.y2b{bottom:117.787067pt;}
.y49{bottom:126.267067pt;}
.y74{bottom:128.747067pt;}
.y61{bottom:129.787067pt;}
.y7d{bottom:131.867200pt;}
.y2a{bottom:136.187067pt;}
.y48{bottom:143.947067pt;}
.y73{bottom:147.147067pt;}
.y60{bottom:148.187067pt;}
.y7c{bottom:150.267200pt;}
.y29{bottom:154.587067pt;}
.y47{bottom:154.827067pt;}
.y72{bottom:165.547067pt;}
.y5f{bottom:166.587067pt;}
.y7b{bottom:168.667200pt;}
.y28{bottom:172.987067pt;}
.y71{bottom:183.947067pt;}
.y5e{bottom:184.987067pt;}
.y7a{bottom:187.067200pt;}
.y27{bottom:191.387067pt;}
.y70{bottom:202.347067pt;}
.y5d{bottom:203.387067pt;}
.y79{bottom:204.667067pt;}
.y26{bottom:209.787067pt;}
.y78{bottom:215.707067pt;}
.y6f{bottom:220.747067pt;}
.y5c{bottom:221.787067pt;}
.y25{bottom:228.187067pt;}
.y6e{bottom:239.147067pt;}
.y5b{bottom:240.187067pt;}
.y24{bottom:246.587067pt;}
.y6d{bottom:257.547067pt;}
.y5a{bottom:258.587067pt;}
.y23{bottom:264.827067pt;}
.y6c{bottom:275.947067pt;}
.y59{bottom:276.987067pt;}
.y22{bottom:283.387067pt;}
.y6b{bottom:294.347067pt;}
.y58{bottom:295.387067pt;}
.y21{bottom:301.787067pt;}
.y69{bottom:312.747067pt;}
.y57{bottom:313.787067pt;}
.y6a{bottom:318.747067pt;}
.y20{bottom:320.187067pt;}
.y68{bottom:331.147067pt;}
.y56{bottom:332.187067pt;}
.y1f{bottom:338.507067pt;}
.y67{bottom:349.547067pt;}
.y55{bottom:350.587067pt;}
.y1e{bottom:356.987067pt;}
.y66{bottom:367.947067pt;}
.y54{bottom:368.987067pt;}
.y1d{bottom:375.387067pt;}
.y65{bottom:386.347067pt;}
.y83{bottom:387.227067pt;}
.y53{bottom:387.387067pt;}
.y77{bottom:388.187200pt;}
.y1c{bottom:393.787067pt;}
.y76{bottom:402.907200pt;}
.y82{bottom:405.627067pt;}
.y52{bottom:405.787067pt;}
.y64{bottom:409.067200pt;}
.y1b{bottom:412.187067pt;}
.y81{bottom:424.027067pt;}
.y51{bottom:424.187067pt;}
.y1a{bottom:430.587067pt;}
.y80{bottom:442.427067pt;}
.y50{bottom:442.587067pt;}
.y19{bottom:448.987067pt;}
.y4f{bottom:460.987067pt;}
.y18{bottom:467.387067pt;}
.y4e{bottom:479.227067pt;}
.y7f{bottom:479.387067pt;}
.y17{bottom:485.787067pt;}
.ya5{bottom:491.067795pt;}
.y4d{bottom:497.787067pt;}
.y16{bottom:504.187067pt;}
.ya4{bottom:506.427787pt;}
.y4c{bottom:516.187067pt;}
.ya3{bottom:521.707619pt;}
.y15{bottom:522.587067pt;}
.y46{bottom:534.587067pt;}
.ya2{bottom:537.067611pt;}
.y14{bottom:540.987067pt;}
.ya1{bottom:552.427603pt;}
.y45{bottom:552.987067pt;}
.y13{bottom:559.387067pt;}
.ya0{bottom:567.707435pt;}
.y44{bottom:571.387067pt;}
.y12{bottom:577.787067pt;}
.y9f{bottom:583.067427pt;}
.y43{bottom:589.787067pt;}
.y11{bottom:596.187067pt;}
.y9e{bottom:598.427419pt;}
.y42{bottom:608.187067pt;}
.y9d{bottom:613.707251pt;}
.y10{bottom:614.427067pt;}
.y41{bottom:626.587067pt;}
.y9c{bottom:629.067243pt;}
.yf{bottom:632.987067pt;}
.y9b{bottom:644.427235pt;}
.y40{bottom:644.987067pt;}
.ye{bottom:651.387067pt;}
.y9a{bottom:659.707067pt;}
.y3f{bottom:663.387067pt;}
.yd{bottom:669.787067pt;}
.y99{bottom:674.587067pt;}
.y3e{bottom:681.787067pt;}
.y98{bottom:687.308499pt;}
.yc{bottom:688.187067pt;}
.y3d{bottom:700.187067pt;}
.y97{bottom:702.668491pt;}
.yb{bottom:706.587067pt;}
.y96{bottom:717.948323pt;}
.y3c{bottom:718.587067pt;}
.ya{bottom:728.987067pt;}
.y95{bottom:733.308315pt;}
.y3b{bottom:736.987067pt;}
.y9{bottom:747.387067pt;}
.y94{bottom:748.668307pt;}
.y3a{bottom:755.387067pt;}
.y93{bottom:763.948139pt;}
.y8{bottom:765.787067pt;}
.y39{bottom:773.627067pt;}
.y4b{bottom:773.787067pt;}
.y92{bottom:779.308131pt;}
.y7{bottom:784.027067pt;}
.y38{bottom:792.187067pt;}
.y91{bottom:794.668123pt;}
.y6{bottom:802.427067pt;}
.y90{bottom:809.947955pt;}
.y37{bottom:810.587067pt;}
.y5{bottom:820.987067pt;}
.y8f{bottom:825.307947pt;}
.y36{bottom:828.987067pt;}
.y4{bottom:839.387067pt;}
.y8e{bottom:840.667939pt;}
.y35{bottom:847.387067pt;}
.y8d{bottom:855.947771pt;}
.y3{bottom:861.627067pt;}
.y34{bottom:865.787067pt;}
.y8c{bottom:871.307763pt;}
.y2{bottom:880.027067pt;}
.y33{bottom:884.187067pt;}
.y8b{bottom:886.667755pt;}
.y1{bottom:898.347067pt;}
.y8a{bottom:901.947587pt;}
.y32{bottom:902.587067pt;}
.y89{bottom:917.307579pt;}
.y31{bottom:920.987067pt;}
.y88{bottom:932.667571pt;}
.y30{bottom:939.387067pt;}
.y87{bottom:947.947403pt;}
.y2f{bottom:957.787067pt;}
.y86{bottom:963.307395pt;}
.y2e{bottom:976.187067pt;}
.y85{bottom:978.507067pt;}
.y63{bottom:994.347067pt;}
.y2d{bottom:994.507067pt;}
.h5{height:29.571719pt;}
.h8{height:37.131406pt;}
.h3{height:44.468750pt;}
.h4{height:47.085938pt;}
.h6{height:47.086471pt;}
.h7{height:47.464531pt;}
.h9{height:52.422344pt;}
.h2{height:56.843750pt;}
.h1{height:62.781250pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:94.560000pt;}
.x1{left:106.400000pt;}
.x8{left:113.520000pt;}
.x2{left:145.120000pt;}
.x7{left:152.400000pt;}
.x6{left:160.880000pt;}
.x5{left:184.160000pt;}
.x3{left:198.640000pt;}
.x9{left:236.240000pt;}
.xd{left:552.880000pt;}
.xc{left:557.280000pt;}
.xb{left:616.640000pt;}
.xa{left:653.200000pt;}
}




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