
    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_bfd2251e5c51c3133e576113.woff')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_482517ac0b377457aea2c609.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_06aa8274f3de93b4d6238a42.woff')format("woff");}.ff3{font-family:ff3;line-height:0.927000;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_9be6e869800407303be2526e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_3bd18626b10e6c36d824815f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.935000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.936000px;}
.ls1{letter-spacing:-4.800000px;}
.ls4{letter-spacing:-1.020000px;}
.ls3{letter-spacing:-0.855000px;}
.ls0{letter-spacing:-0.840000px;}
.ls2{letter-spacing:0.000000px;}
.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;}
}
.ws80{word-spacing:-14.178000px;}
.ws1c{word-spacing:-9.238218px;}
.ws28{word-spacing:-6.156000px;}
.ws33{word-spacing:-5.814000px;}
.ws87{word-spacing:-4.902000px;}
.ws3f{word-spacing:-3.933000px;}
.ws72{word-spacing:-3.819000px;}
.ws17{word-spacing:-3.078000px;}
.ws93{word-spacing:-3.060000px;}
.ws20{word-spacing:-2.736000px;}
.ws62{word-spacing:-2.679000px;}
.ws9c{word-spacing:-2.652000px;}
.ws30{word-spacing:-2.565000px;}
.ws3b{word-spacing:-2.508000px;}
.ws9f{word-spacing:-2.346000px;}
.ws27{word-spacing:-2.337000px;}
.ws79{word-spacing:-2.280000px;}
.wsa4{word-spacing:-2.166000px;}
.ws99{word-spacing:-2.142000px;}
.ws77{word-spacing:-2.109000px;}
.ws56{word-spacing:-2.052000px;}
.ws8c{word-spacing:-1.938000px;}
.wsa2{word-spacing:-1.785000px;}
.ws57{word-spacing:-1.767000px;}
.ws2{word-spacing:-1.596000px;}
.ws9a{word-spacing:-1.581000px;}
.ws35{word-spacing:-1.539000px;}
.ws95{word-spacing:-1.530000px;}
.ws4e{word-spacing:-1.482000px;}
.ws88{word-spacing:-1.425000px;}
.ws94{word-spacing:-1.275000px;}
.ws7f{word-spacing:-1.254000px;}
.wsa3{word-spacing:-1.224000px;}
.ws6e{word-spacing:-1.197000px;}
.ws96{word-spacing:-1.173000px;}
.ws70{word-spacing:-1.140000px;}
.ws1b{word-spacing:-1.026000px;}
.ws1f{word-spacing:-0.855000px;}
.ws97{word-spacing:-0.816000px;}
.ws91{word-spacing:-0.714000px;}
.ws5b{word-spacing:-0.684000px;}
.ws3c{word-spacing:-0.627000px;}
.ws23{word-spacing:-0.570000px;}
.ws84{word-spacing:-0.399000px;}
.ws81{word-spacing:-0.342000px;}
.ws29{word-spacing:-0.171000px;}
.ws6d{word-spacing:-0.114000px;}
.ws6c{word-spacing:-0.057000px;}
.ws92{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.ws64{word-spacing:0.057000px;}
.ws78{word-spacing:0.114000px;}
.ws9d{word-spacing:0.153000px;}
.ws16{word-spacing:0.228000px;}
.ws63{word-spacing:0.399000px;}
.ws3d{word-spacing:0.456000px;}
.ws83{word-spacing:0.513000px;}
.ws43{word-spacing:0.570000px;}
.ws58{word-spacing:0.627000px;}
.ws6b{word-spacing:0.684000px;}
.ws2e{word-spacing:0.798000px;}
.ws0{word-spacing:0.840000px;}
.wsd{word-spacing:0.969000px;}
.ws8f{word-spacing:1.020000px;}
.ws2c{word-spacing:1.026000px;}
.ws65{word-spacing:1.083000px;}
.wsa0{word-spacing:1.122000px;}
.wsa1{word-spacing:1.275000px;}
.ws1e{word-spacing:1.311000px;}
.ws71{word-spacing:1.482000px;}
.ws3{word-spacing:1.710000px;}
.ws22{word-spacing:1.938000px;}
.ws1a{word-spacing:1.995000px;}
.ws89{word-spacing:2.052000px;}
.wsc{word-spacing:2.109000px;}
.ws2a{word-spacing:2.166000px;}
.ws82{word-spacing:2.280000px;}
.ws11{word-spacing:2.337000px;}
.ws19{word-spacing:2.394000px;}
.ws85{word-spacing:2.508000px;}
.ws8e{word-spacing:2.601000px;}
.ws25{word-spacing:2.622000px;}
.ws3e{word-spacing:2.679000px;}
.ws4{word-spacing:2.736000px;}
.ws69{word-spacing:2.793000px;}
.ws8{word-spacing:2.850000px;}
.ws6f{word-spacing:2.907000px;}
.ws90{word-spacing:2.958000px;}
.ws36{word-spacing:3.021000px;}
.ws2f{word-spacing:3.192000px;}
.ws8b{word-spacing:3.249000px;}
.wsf{word-spacing:3.306000px;}
.ws5e{word-spacing:3.477000px;}
.ws15{word-spacing:3.591000px;}
.ws8d{word-spacing:3.672000px;}
.ws66{word-spacing:3.705000px;}
.ws2d{word-spacing:3.819000px;}
.ws7b{word-spacing:4.161000px;}
.ws7{word-spacing:4.275000px;}
.ws51{word-spacing:4.446000px;}
.ws59{word-spacing:4.503000px;}
.ws10{word-spacing:4.560000px;}
.ws2b{word-spacing:4.617000px;}
.ws6a{word-spacing:4.845000px;}
.wsb{word-spacing:4.959000px;}
.ws37{word-spacing:5.073000px;}
.ws7c{word-spacing:5.130000px;}
.ws61{word-spacing:5.187000px;}
.wsa6{word-spacing:5.244000px;}
.ws7d{word-spacing:5.472000px;}
.ws14{word-spacing:5.529000px;}
.ws9e{word-spacing:5.610000px;}
.ws42{word-spacing:5.643000px;}
.ws47{word-spacing:5.700000px;}
.ws31{word-spacing:5.814000px;}
.wsa{word-spacing:5.928000px;}
.ws38{word-spacing:5.985000px;}
.ws98{word-spacing:6.018000px;}
.ws18{word-spacing:6.156000px;}
.ws34{word-spacing:6.213000px;}
.wse{word-spacing:6.327000px;}
.ws86{word-spacing:6.555000px;}
.ws13{word-spacing:6.612000px;}
.ws21{word-spacing:6.669000px;}
.ws5d{word-spacing:6.726000px;}
.wsa5{word-spacing:6.783000px;}
.ws5f{word-spacing:6.840000px;}
.ws24{word-spacing:7.182000px;}
.ws4a{word-spacing:7.467000px;}
.ws8a{word-spacing:7.581000px;}
.ws9b{word-spacing:7.599000px;}
.ws3a{word-spacing:7.638000px;}
.ws5c{word-spacing:7.923000px;}
.ws26{word-spacing:8.094000px;}
.ws74{word-spacing:8.151000px;}
.ws68{word-spacing:8.265000px;}
.ws6{word-spacing:8.436000px;}
.ws54{word-spacing:8.664000px;}
.ws55{word-spacing:8.721000px;}
.ws40{word-spacing:8.949000px;}
.ws5a{word-spacing:9.120000px;}
.ws44{word-spacing:9.177000px;}
.ws7a{word-spacing:9.519000px;}
.ws60{word-spacing:9.576000px;}
.ws49{word-spacing:9.747000px;}
.ws46{word-spacing:9.861000px;}
.ws1d{word-spacing:10.032000px;}
.ws75{word-spacing:10.374000px;}
.ws9{word-spacing:10.488000px;}
.ws5{word-spacing:10.830000px;}
.ws12{word-spacing:11.343000px;}
.ws67{word-spacing:11.685000px;}
.ws50{word-spacing:12.084000px;}
.ws4f{word-spacing:12.198000px;}
.ws39{word-spacing:13.509000px;}
.ws76{word-spacing:14.364000px;}
.ws41{word-spacing:14.934000px;}
.ws32{word-spacing:15.105000px;}
.ws53{word-spacing:16.245000px;}
.ws4c{word-spacing:16.986000px;}
.ws7e{word-spacing:19.950000px;}
.ws52{word-spacing:22.401000px;}
.ws73{word-spacing:24.054000px;}
.ws4d{word-spacing:25.935000px;}
.ws45{word-spacing:31.464000px;}
.ws48{word-spacing:34.143000px;}
.ws4b{word-spacing:35.967000px;}
._6{margin-left:-23.337000px;}
._5{margin-left:-21.537000px;}
._4{margin-left:-7.032600px;}
._0{margin-left:-5.400000px;}
._2{margin-left:-3.012000px;}
._1{margin-left:-1.800000px;}
._3{width:1.731600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:33.231000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.519750px;}
.y2e{bottom:106.299300px;}
.y9f{bottom:107.453850px;}
.y21{bottom:111.827100px;}
.y8e{bottom:113.309400px;}
.y6f{bottom:114.768300px;}
.y54{bottom:115.751550px;}
.y9e{bottom:122.447850px;}
.yc3{bottom:123.501750px;}
.y20{bottom:129.824850px;}
.y8d{bottom:131.307150px;}
.y6e{bottom:132.766050px;}
.y53{bottom:133.749300px;}
.yc2{bottom:141.499500px;}
.y9d{bottom:141.700350px;}
.y1f{bottom:147.822600px;}
.y8c{bottom:149.304900px;}
.y6d{bottom:150.763800px;}
.y52{bottom:151.747050px;}
.y2d{bottom:153.256500px;}
.y9c{bottom:156.694350px;}
.yc1{bottom:159.497250px;}
.y1e{bottom:165.820350px;}
.y8b{bottom:167.302650px;}
.y6c{bottom:168.761550px;}
.y51{bottom:169.744800px;}
.y2c{bottom:171.254250px;}
.y9b{bottom:175.946850px;}
.yc0{bottom:177.495000px;}
.y1d{bottom:183.818100px;}
.y8a{bottom:185.300400px;}
.y6b{bottom:186.759300px;}
.y50{bottom:187.742550px;}
.y2b{bottom:189.252000px;}
.y9a{bottom:190.940850px;}
.ybf{bottom:195.492750px;}
.y1c{bottom:201.815850px;}
.y89{bottom:203.298150px;}
.y6a{bottom:204.757050px;}
.y4f{bottom:205.740300px;}
.y2a{bottom:207.249750px;}
.y99{bottom:210.193350px;}
.ybe{bottom:213.490500px;}
.y1b{bottom:219.813600px;}
.y88{bottom:221.295900px;}
.y69{bottom:222.754800px;}
.y4e{bottom:223.738050px;}
.y98{bottom:225.187350px;}
.y29{bottom:225.247500px;}
.y7c{bottom:232.245300px;}
.y1a{bottom:237.811350px;}
.y87{bottom:239.293650px;}
.ybd{bottom:239.995500px;}
.y97{bottom:240.181350px;}
.y4d{bottom:241.735800px;}
.y28{bottom:243.245250px;}
.y68{bottom:249.259800px;}
.y7b{bottom:250.243050px;}
.y19{bottom:255.809100px;}
.y86{bottom:257.291400px;}
.y96{bottom:259.433850px;}
.y4c{bottom:259.733550px;}
.y27{bottom:261.254250px;}
.y67{bottom:267.257550px;}
.y7a{bottom:268.240800px;}
.y18{bottom:273.806850px;}
.y95{bottom:274.427850px;}
.ybc{bottom:275.991000px;}
.y4b{bottom:277.731300px;}
.y26{bottom:279.252000px;}
.y85{bottom:283.796400px;}
.y66{bottom:285.255300px;}
.y79{bottom:286.238550px;}
.y94{bottom:289.421850px;}
.y17{bottom:291.804600px;}
.y4a{bottom:295.729050px;}
.y25{bottom:297.249750px;}
.y84{bottom:301.794150px;}
.y65{bottom:303.253050px;}
.y78{bottom:304.236300px;}
.y93{bottom:308.674350px;}
.y16{bottom:309.802350px;}
.y49{bottom:313.726800px;}
.y24{bottom:315.247500px;}
.y83{bottom:319.791900px;}
.y64{bottom:321.250800px;}
.y77{bottom:322.234050px;}
.y15{bottom:327.800100px;}
.y92{bottom:327.926850px;}
.y48{bottom:331.724550px;}
.y23{bottom:333.245250px;}
.y82{bottom:337.789650px;}
.y63{bottom:339.248550px;}
.y76{bottom:340.231800px;}
.y14{bottom:345.797850px;}
.ybb{bottom:347.089050px;}
.y91{bottom:347.179350px;}
.y47{bottom:349.722300px;}
.y22{bottom:351.243000px;}
.y81{bottom:355.787400px;}
.y62{bottom:357.246300px;}
.y75{bottom:358.229550px;}
.yba{bottom:362.083050px;}
.y13{bottom:363.795600px;}
.y90{bottom:366.431850px;}
.y80{bottom:373.785150px;}
.y61{bottom:375.244050px;}
.y46{bottom:376.227300px;}
.yb9{bottom:377.077050px;}
.y12{bottom:381.793350px;}
.y7f{bottom:391.782900px;}
.y60{bottom:393.241800px;}
.y45{bottom:394.225050px;}
.y2f{bottom:395.369100px;}
.yb8{bottom:396.329550px;}
.y11{bottom:399.791100px;}
.y7e{bottom:409.780650px;}
.y5f{bottom:411.239550px;}
.yb7{bottom:411.323550px;}
.y44{bottom:412.222800px;}
.y10{bottom:417.788850px;}
.y70{bottom:420.880950px;}
.yb6{bottom:426.317550px;}
.y7d{bottom:427.778400px;}
.y5e{bottom:429.237300px;}
.y43{bottom:430.220550px;}
.yb5{bottom:441.311550px;}
.yf{bottom:444.293850px;}
.y5d{bottom:447.235050px;}
.y42{bottom:448.218300px;}
.yb4{bottom:460.564050px;}
.ye{bottom:462.291600px;}
.y5c{bottom:465.232800px;}
.y41{bottom:466.216050px;}
.y8f{bottom:467.652600px;}
.yb3{bottom:475.558050px;}
.yd{bottom:480.289350px;}
.y5b{bottom:483.230550px;}
.y40{bottom:484.213800px;}
.yb2{bottom:494.810550px;}
.yc{bottom:498.287100px;}
.y5a{bottom:501.228300px;}
.y3f{bottom:502.211550px;}
.yb1{bottom:509.804550px;}
.yb{bottom:516.284850px;}
.y59{bottom:519.226050px;}
.y3e{bottom:520.209300px;}
.yb0{bottom:529.057050px;}
.ya{bottom:534.282600px;}
.y58{bottom:537.223800px;}
.y3d{bottom:538.207050px;}
.yaf{bottom:544.051050px;}
.y9{bottom:552.280350px;}
.y57{bottom:555.221550px;}
.y74{bottom:556.204800px;}
.yae{bottom:563.303550px;}
.y3c{bottom:564.712050px;}
.y8{bottom:570.278100px;}
.y56{bottom:573.219300px;}
.y73{bottom:574.202550px;}
.yad{bottom:578.297550px;}
.y7{bottom:588.275850px;}
.y3b{bottom:591.217050px;}
.y72{bottom:592.200300px;}
.yac{bottom:593.291550px;}
.y6{bottom:606.273600px;}
.y55{bottom:609.214800px;}
.yab{bottom:612.544050px;}
.y3a{bottom:617.722050px;}
.y71{bottom:618.705300px;}
.y5{bottom:624.271350px;}
.yaa{bottom:627.538050px;}
.y39{bottom:635.719800px;}
.ya9{bottom:646.790550px;}
.y38{bottom:653.717550px;}
.ya8{bottom:661.784550px;}
.y37{bottom:671.715300px;}
.ya7{bottom:681.037050px;}
.yc9{bottom:681.203550px;}
.y36{bottom:689.713050px;}
.ya6{bottom:696.031050px;}
.yc8{bottom:699.201300px;}
.y35{bottom:707.710800px;}
.y4{bottom:714.274350px;}
.ya5{bottom:715.283550px;}
.yc7{bottom:717.199050px;}
.y34{bottom:725.708550px;}
.ya4{bottom:730.277550px;}
.yc6{bottom:735.196800px;}
.y33{bottom:743.706300px;}
.ya3{bottom:749.530050px;}
.y3{bottom:750.274350px;}
.yc5{bottom:753.194550px;}
.y32{bottom:761.704050px;}
.ya2{bottom:764.524050px;}
.yc4{bottom:779.699550px;}
.y31{bottom:779.701800px;}
.ya1{bottom:783.776550px;}
.y2{bottom:786.274350px;}
.y30{bottom:797.699550px;}
.ya0{bottom:798.770550px;}
.h2{height:29.652000px;}
.h7{height:32.805000px;}
.h8{height:34.992000px;}
.ha{height:37.179000px;}
.h9{height:37.281000px;}
.h5{height:41.553000px;}
.h4{height:41.667000px;}
.h6{height:43.161399px;}
.h3{height:84.600000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x5{left:80.787450px;}
.x3{left:85.040550px;}
.x1{left:309.185250px;}
.x4{left:329.527500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.832000pt;}
.ls1{letter-spacing:-4.266667pt;}
.ls4{letter-spacing:-0.906667pt;}
.ls3{letter-spacing:-0.760000pt;}
.ls0{letter-spacing:-0.746667pt;}
.ls2{letter-spacing:0.000000pt;}
.ws80{word-spacing:-12.602667pt;}
.ws1c{word-spacing:-8.211749pt;}
.ws28{word-spacing:-5.472000pt;}
.ws33{word-spacing:-5.168000pt;}
.ws87{word-spacing:-4.357333pt;}
.ws3f{word-spacing:-3.496000pt;}
.ws72{word-spacing:-3.394667pt;}
.ws17{word-spacing:-2.736000pt;}
.ws93{word-spacing:-2.720000pt;}
.ws20{word-spacing:-2.432000pt;}
.ws62{word-spacing:-2.381333pt;}
.ws9c{word-spacing:-2.357333pt;}
.ws30{word-spacing:-2.280000pt;}
.ws3b{word-spacing:-2.229333pt;}
.ws9f{word-spacing:-2.085333pt;}
.ws27{word-spacing:-2.077333pt;}
.ws79{word-spacing:-2.026667pt;}
.wsa4{word-spacing:-1.925333pt;}
.ws99{word-spacing:-1.904000pt;}
.ws77{word-spacing:-1.874667pt;}
.ws56{word-spacing:-1.824000pt;}
.ws8c{word-spacing:-1.722667pt;}
.wsa2{word-spacing:-1.586667pt;}
.ws57{word-spacing:-1.570667pt;}
.ws2{word-spacing:-1.418667pt;}
.ws9a{word-spacing:-1.405333pt;}
.ws35{word-spacing:-1.368000pt;}
.ws95{word-spacing:-1.360000pt;}
.ws4e{word-spacing:-1.317333pt;}
.ws88{word-spacing:-1.266667pt;}
.ws94{word-spacing:-1.133333pt;}
.ws7f{word-spacing:-1.114667pt;}
.wsa3{word-spacing:-1.088000pt;}
.ws6e{word-spacing:-1.064000pt;}
.ws96{word-spacing:-1.042667pt;}
.ws70{word-spacing:-1.013333pt;}
.ws1b{word-spacing:-0.912000pt;}
.ws1f{word-spacing:-0.760000pt;}
.ws97{word-spacing:-0.725333pt;}
.ws91{word-spacing:-0.634667pt;}
.ws5b{word-spacing:-0.608000pt;}
.ws3c{word-spacing:-0.557333pt;}
.ws23{word-spacing:-0.506667pt;}
.ws84{word-spacing:-0.354667pt;}
.ws81{word-spacing:-0.304000pt;}
.ws29{word-spacing:-0.152000pt;}
.ws6d{word-spacing:-0.101333pt;}
.ws6c{word-spacing:-0.050667pt;}
.ws92{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.ws64{word-spacing:0.050667pt;}
.ws78{word-spacing:0.101333pt;}
.ws9d{word-spacing:0.136000pt;}
.ws16{word-spacing:0.202667pt;}
.ws63{word-spacing:0.354667pt;}
.ws3d{word-spacing:0.405333pt;}
.ws83{word-spacing:0.456000pt;}
.ws43{word-spacing:0.506667pt;}
.ws58{word-spacing:0.557333pt;}
.ws6b{word-spacing:0.608000pt;}
.ws2e{word-spacing:0.709333pt;}
.ws0{word-spacing:0.746667pt;}
.wsd{word-spacing:0.861333pt;}
.ws8f{word-spacing:0.906667pt;}
.ws2c{word-spacing:0.912000pt;}
.ws65{word-spacing:0.962667pt;}
.wsa0{word-spacing:0.997333pt;}
.wsa1{word-spacing:1.133333pt;}
.ws1e{word-spacing:1.165333pt;}
.ws71{word-spacing:1.317333pt;}
.ws3{word-spacing:1.520000pt;}
.ws22{word-spacing:1.722667pt;}
.ws1a{word-spacing:1.773333pt;}
.ws89{word-spacing:1.824000pt;}
.wsc{word-spacing:1.874667pt;}
.ws2a{word-spacing:1.925333pt;}
.ws82{word-spacing:2.026667pt;}
.ws11{word-spacing:2.077333pt;}
.ws19{word-spacing:2.128000pt;}
.ws85{word-spacing:2.229333pt;}
.ws8e{word-spacing:2.312000pt;}
.ws25{word-spacing:2.330667pt;}
.ws3e{word-spacing:2.381333pt;}
.ws4{word-spacing:2.432000pt;}
.ws69{word-spacing:2.482667pt;}
.ws8{word-spacing:2.533333pt;}
.ws6f{word-spacing:2.584000pt;}
.ws90{word-spacing:2.629333pt;}
.ws36{word-spacing:2.685333pt;}
.ws2f{word-spacing:2.837333pt;}
.ws8b{word-spacing:2.888000pt;}
.wsf{word-spacing:2.938667pt;}
.ws5e{word-spacing:3.090667pt;}
.ws15{word-spacing:3.192000pt;}
.ws8d{word-spacing:3.264000pt;}
.ws66{word-spacing:3.293333pt;}
.ws2d{word-spacing:3.394667pt;}
.ws7b{word-spacing:3.698667pt;}
.ws7{word-spacing:3.800000pt;}
.ws51{word-spacing:3.952000pt;}
.ws59{word-spacing:4.002667pt;}
.ws10{word-spacing:4.053333pt;}
.ws2b{word-spacing:4.104000pt;}
.ws6a{word-spacing:4.306667pt;}
.wsb{word-spacing:4.408000pt;}
.ws37{word-spacing:4.509333pt;}
.ws7c{word-spacing:4.560000pt;}
.ws61{word-spacing:4.610667pt;}
.wsa6{word-spacing:4.661333pt;}
.ws7d{word-spacing:4.864000pt;}
.ws14{word-spacing:4.914667pt;}
.ws9e{word-spacing:4.986667pt;}
.ws42{word-spacing:5.016000pt;}
.ws47{word-spacing:5.066667pt;}
.ws31{word-spacing:5.168000pt;}
.wsa{word-spacing:5.269333pt;}
.ws38{word-spacing:5.320000pt;}
.ws98{word-spacing:5.349333pt;}
.ws18{word-spacing:5.472000pt;}
.ws34{word-spacing:5.522667pt;}
.wse{word-spacing:5.624000pt;}
.ws86{word-spacing:5.826667pt;}
.ws13{word-spacing:5.877333pt;}
.ws21{word-spacing:5.928000pt;}
.ws5d{word-spacing:5.978667pt;}
.wsa5{word-spacing:6.029333pt;}
.ws5f{word-spacing:6.080000pt;}
.ws24{word-spacing:6.384000pt;}
.ws4a{word-spacing:6.637333pt;}
.ws8a{word-spacing:6.738667pt;}
.ws9b{word-spacing:6.754667pt;}
.ws3a{word-spacing:6.789333pt;}
.ws5c{word-spacing:7.042667pt;}
.ws26{word-spacing:7.194667pt;}
.ws74{word-spacing:7.245333pt;}
.ws68{word-spacing:7.346667pt;}
.ws6{word-spacing:7.498667pt;}
.ws54{word-spacing:7.701333pt;}
.ws55{word-spacing:7.752000pt;}
.ws40{word-spacing:7.954667pt;}
.ws5a{word-spacing:8.106667pt;}
.ws44{word-spacing:8.157333pt;}
.ws7a{word-spacing:8.461333pt;}
.ws60{word-spacing:8.512000pt;}
.ws49{word-spacing:8.664000pt;}
.ws46{word-spacing:8.765333pt;}
.ws1d{word-spacing:8.917333pt;}
.ws75{word-spacing:9.221333pt;}
.ws9{word-spacing:9.322667pt;}
.ws5{word-spacing:9.626667pt;}
.ws12{word-spacing:10.082667pt;}
.ws67{word-spacing:10.386667pt;}
.ws50{word-spacing:10.741333pt;}
.ws4f{word-spacing:10.842667pt;}
.ws39{word-spacing:12.008000pt;}
.ws76{word-spacing:12.768000pt;}
.ws41{word-spacing:13.274667pt;}
.ws32{word-spacing:13.426667pt;}
.ws53{word-spacing:14.440000pt;}
.ws4c{word-spacing:15.098667pt;}
.ws7e{word-spacing:17.733333pt;}
.ws52{word-spacing:19.912000pt;}
.ws73{word-spacing:21.381333pt;}
.ws4d{word-spacing:23.053333pt;}
.ws45{word-spacing:27.968000pt;}
.ws48{word-spacing:30.349333pt;}
.ws4b{word-spacing:31.970667pt;}
._6{margin-left:-20.744000pt;}
._5{margin-left:-19.144000pt;}
._4{margin-left:-6.251200pt;}
._0{margin-left:-4.800000pt;}
._2{margin-left:-2.677333pt;}
._1{margin-left:-1.600000pt;}
._3{width:1.539200pt;}
.fs3{font-size:29.538667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.795333pt;}
.y2e{bottom:94.488267pt;}
.y9f{bottom:95.514533pt;}
.y21{bottom:99.401867pt;}
.y8e{bottom:100.719467pt;}
.y6f{bottom:102.016267pt;}
.y54{bottom:102.890267pt;}
.y9e{bottom:108.842533pt;}
.yc3{bottom:109.779333pt;}
.y20{bottom:115.399867pt;}
.y8d{bottom:116.717467pt;}
.y6e{bottom:118.014267pt;}
.y53{bottom:118.888267pt;}
.yc2{bottom:125.777333pt;}
.y9d{bottom:125.955867pt;}
.y1f{bottom:131.397867pt;}
.y8c{bottom:132.715467pt;}
.y6d{bottom:134.012267pt;}
.y52{bottom:134.886267pt;}
.y2d{bottom:136.228000pt;}
.y9c{bottom:139.283867pt;}
.yc1{bottom:141.775333pt;}
.y1e{bottom:147.395867pt;}
.y8b{bottom:148.713467pt;}
.y6c{bottom:150.010267pt;}
.y51{bottom:150.884267pt;}
.y2c{bottom:152.226000pt;}
.y9b{bottom:156.397200pt;}
.yc0{bottom:157.773333pt;}
.y1d{bottom:163.393867pt;}
.y8a{bottom:164.711467pt;}
.y6b{bottom:166.008267pt;}
.y50{bottom:166.882267pt;}
.y2b{bottom:168.224000pt;}
.y9a{bottom:169.725200pt;}
.ybf{bottom:173.771333pt;}
.y1c{bottom:179.391867pt;}
.y89{bottom:180.709467pt;}
.y6a{bottom:182.006267pt;}
.y4f{bottom:182.880267pt;}
.y2a{bottom:184.222000pt;}
.y99{bottom:186.838533pt;}
.ybe{bottom:189.769333pt;}
.y1b{bottom:195.389867pt;}
.y88{bottom:196.707467pt;}
.y69{bottom:198.004267pt;}
.y4e{bottom:198.878267pt;}
.y98{bottom:200.166533pt;}
.y29{bottom:200.220000pt;}
.y7c{bottom:206.440267pt;}
.y1a{bottom:211.387867pt;}
.y87{bottom:212.705467pt;}
.ybd{bottom:213.329333pt;}
.y97{bottom:213.494533pt;}
.y4d{bottom:214.876267pt;}
.y28{bottom:216.218000pt;}
.y68{bottom:221.564267pt;}
.y7b{bottom:222.438267pt;}
.y19{bottom:227.385867pt;}
.y86{bottom:228.703467pt;}
.y96{bottom:230.607867pt;}
.y4c{bottom:230.874267pt;}
.y27{bottom:232.226000pt;}
.y67{bottom:237.562267pt;}
.y7a{bottom:238.436267pt;}
.y18{bottom:243.383867pt;}
.y95{bottom:243.935867pt;}
.ybc{bottom:245.325333pt;}
.y4b{bottom:246.872267pt;}
.y26{bottom:248.224000pt;}
.y85{bottom:252.263467pt;}
.y66{bottom:253.560267pt;}
.y79{bottom:254.434267pt;}
.y94{bottom:257.263867pt;}
.y17{bottom:259.381867pt;}
.y4a{bottom:262.870267pt;}
.y25{bottom:264.222000pt;}
.y84{bottom:268.261467pt;}
.y65{bottom:269.558267pt;}
.y78{bottom:270.432267pt;}
.y93{bottom:274.377200pt;}
.y16{bottom:275.379867pt;}
.y49{bottom:278.868267pt;}
.y24{bottom:280.220000pt;}
.y83{bottom:284.259467pt;}
.y64{bottom:285.556267pt;}
.y77{bottom:286.430267pt;}
.y15{bottom:291.377867pt;}
.y92{bottom:291.490533pt;}
.y48{bottom:294.866267pt;}
.y23{bottom:296.218000pt;}
.y82{bottom:300.257467pt;}
.y63{bottom:301.554267pt;}
.y76{bottom:302.428267pt;}
.y14{bottom:307.375867pt;}
.ybb{bottom:308.523600pt;}
.y91{bottom:308.603867pt;}
.y47{bottom:310.864267pt;}
.y22{bottom:312.216000pt;}
.y81{bottom:316.255467pt;}
.y62{bottom:317.552267pt;}
.y75{bottom:318.426267pt;}
.yba{bottom:321.851600pt;}
.y13{bottom:323.373867pt;}
.y90{bottom:325.717200pt;}
.y80{bottom:332.253467pt;}
.y61{bottom:333.550267pt;}
.y46{bottom:334.424267pt;}
.yb9{bottom:335.179600pt;}
.y12{bottom:339.371867pt;}
.y7f{bottom:348.251467pt;}
.y60{bottom:349.548267pt;}
.y45{bottom:350.422267pt;}
.y2f{bottom:351.439200pt;}
.yb8{bottom:352.292933pt;}
.y11{bottom:355.369867pt;}
.y7e{bottom:364.249467pt;}
.y5f{bottom:365.546267pt;}
.yb7{bottom:365.620933pt;}
.y44{bottom:366.420267pt;}
.y10{bottom:371.367867pt;}
.y70{bottom:374.116400pt;}
.yb6{bottom:378.948933pt;}
.y7d{bottom:380.247467pt;}
.y5e{bottom:381.544267pt;}
.y43{bottom:382.418267pt;}
.yb5{bottom:392.276933pt;}
.yf{bottom:394.927867pt;}
.y5d{bottom:397.542267pt;}
.y42{bottom:398.416267pt;}
.yb4{bottom:409.390267pt;}
.ye{bottom:410.925867pt;}
.y5c{bottom:413.540267pt;}
.y41{bottom:414.414267pt;}
.y8f{bottom:415.691200pt;}
.yb3{bottom:422.718267pt;}
.yd{bottom:426.923867pt;}
.y5b{bottom:429.538267pt;}
.y40{bottom:430.412267pt;}
.yb2{bottom:439.831600pt;}
.yc{bottom:442.921867pt;}
.y5a{bottom:445.536267pt;}
.y3f{bottom:446.410267pt;}
.yb1{bottom:453.159600pt;}
.yb{bottom:458.919867pt;}
.y59{bottom:461.534267pt;}
.y3e{bottom:462.408267pt;}
.yb0{bottom:470.272933pt;}
.ya{bottom:474.917867pt;}
.y58{bottom:477.532267pt;}
.y3d{bottom:478.406267pt;}
.yaf{bottom:483.600933pt;}
.y9{bottom:490.915867pt;}
.y57{bottom:493.530267pt;}
.y74{bottom:494.404267pt;}
.yae{bottom:500.714267pt;}
.y3c{bottom:501.966267pt;}
.y8{bottom:506.913867pt;}
.y56{bottom:509.528267pt;}
.y73{bottom:510.402267pt;}
.yad{bottom:514.042267pt;}
.y7{bottom:522.911867pt;}
.y3b{bottom:525.526267pt;}
.y72{bottom:526.400267pt;}
.yac{bottom:527.370267pt;}
.y6{bottom:538.909867pt;}
.y55{bottom:541.524267pt;}
.yab{bottom:544.483600pt;}
.y3a{bottom:549.086267pt;}
.y71{bottom:549.960267pt;}
.y5{bottom:554.907867pt;}
.yaa{bottom:557.811600pt;}
.y39{bottom:565.084267pt;}
.ya9{bottom:574.924933pt;}
.y38{bottom:581.082267pt;}
.ya8{bottom:588.252933pt;}
.y37{bottom:597.080267pt;}
.ya7{bottom:605.366267pt;}
.yc9{bottom:605.514267pt;}
.y36{bottom:613.078267pt;}
.ya6{bottom:618.694267pt;}
.yc8{bottom:621.512267pt;}
.y35{bottom:629.076267pt;}
.y4{bottom:634.910533pt;}
.ya5{bottom:635.807600pt;}
.yc7{bottom:637.510267pt;}
.y34{bottom:645.074267pt;}
.ya4{bottom:649.135600pt;}
.yc6{bottom:653.508267pt;}
.y33{bottom:661.072267pt;}
.ya3{bottom:666.248933pt;}
.y3{bottom:666.910533pt;}
.yc5{bottom:669.506267pt;}
.y32{bottom:677.070267pt;}
.ya2{bottom:679.576933pt;}
.yc4{bottom:693.066267pt;}
.y31{bottom:693.068267pt;}
.ya1{bottom:696.690267pt;}
.y2{bottom:698.910533pt;}
.y30{bottom:709.066267pt;}
.ya0{bottom:710.018267pt;}
.h2{height:26.357333pt;}
.h7{height:29.160000pt;}
.h8{height:31.104000pt;}
.ha{height:33.048000pt;}
.h9{height:33.138667pt;}
.h5{height:36.936000pt;}
.h4{height:37.037333pt;}
.h6{height:38.365688pt;}
.h3{height:75.200000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x5{left:71.811067pt;}
.x3{left:75.591600pt;}
.x1{left:274.831333pt;}
.x4{left:292.913333pt;}
}




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