
    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_c9dadde7a9a487ca75f28daa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_20d4924faed60ba81a1a949d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_e07a68a4a3c59b7b5e3f2dd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_5f626096eaa0698212fb4159.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_d89751f4fd4733f48bde577d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005000;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_d4a00ad0ad2e08fd0a5efacc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.140000;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_e04c2f670b6b43b56ffc478c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{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;}
}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws7{word-spacing:-15.001902px;}
.ws3{word-spacing:-13.505088px;}
.ws6{word-spacing:-10.504682px;}
.ws4{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._0{width:1.155706px;}
._b{width:2.196162px;}
._1{width:5.135132px;}
._a{width:8.500889px;}
._2{width:13.284631px;}
._8{width:35.100468px;}
._9{width:37.000053px;}
._3{width:51.591668px;}
._4{width:52.972609px;}
._6{width:87.148999px;}
._5{width:140.606416px;}
._7{width:147.145502px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs7{font-size:42.018727px;}
.fs3{font-size:54.020354px;}
.fs8{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yaf{bottom:3.779660px;}
.ya9{bottom:4.925012px;}
.yab{bottom:5.066692px;}
.yad{bottom:5.070822px;}
.yb5{bottom:5.908156px;}
.yb7{bottom:7.951205px;}
.yb4{bottom:15.824999px;}
.yb0{bottom:20.655020px;}
.yac{bottom:21.735020px;}
.yb3{bottom:25.741841px;}
.yb2{bottom:35.658684px;}
.yaa{bottom:40.095019px;}
.yae{bottom:42.255019px;}
.yb1{bottom:45.575526px;}
.y93{bottom:55.515787px;}
.ya8{bottom:57.375018px;}
.y38{bottom:59.446116px;}
.y92{bottom:78.024268px;}
.ya7{bottom:78.024275px;}
.y4a{bottom:79.932707px;}
.y37{bottom:81.954596px;}
.y91{bottom:100.532748px;}
.ya6{bottom:100.532756px;}
.y74{bottom:101.505879px;}
.y49{bottom:102.441187px;}
.y36{bottom:104.463077px;}
.y90{bottom:123.041229px;}
.ya5{bottom:123.041236px;}
.y73{bottom:124.014359px;}
.y48{bottom:124.949668px;}
.y35{bottom:126.971558px;}
.yb6{bottom:127.215015px;}
.y8f{bottom:145.549710px;}
.ya4{bottom:145.549717px;}
.y72{bottom:146.522840px;}
.y47{bottom:147.458149px;}
.y34{bottom:149.480038px;}
.y8e{bottom:168.058190px;}
.y71{bottom:169.031321px;}
.y46{bottom:169.966629px;}
.y33{bottom:171.988519px;}
.y8d{bottom:190.566671px;}
.y70{bottom:191.539801px;}
.y45{bottom:192.475110px;}
.y7d{bottom:192.738559px;}
.y32{bottom:194.497000px;}
.ye6{bottom:207.578417px;}
.y8c{bottom:213.075152px;}
.y6f{bottom:214.048282px;}
.y44{bottom:214.983591px;}
.y31{bottom:217.005480px;}
.ye5{bottom:227.836050px;}
.y8b{bottom:235.583632px;}
.y6e{bottom:236.556763px;}
.y43{bottom:237.492071px;}
.ya3{bottom:238.730997px;}
.y30{bottom:239.513961px;}
.y8a{bottom:258.092113px;}
.y6d{bottom:259.065243px;}
.y42{bottom:260.000552px;}
.ya2{bottom:261.239478px;}
.y2f{bottom:262.022442px;}
.yb8{bottom:267.796056px;}
.y89{bottom:280.600594px;}
.y6c{bottom:281.573724px;}
.y41{bottom:282.509033px;}
.ya1{bottom:283.747958px;}
.y2e{bottom:284.530922px;}
.y88{bottom:303.109074px;}
.y6b{bottom:304.082205px;}
.y40{bottom:305.017513px;}
.ye9{bottom:305.512992px;}
.ya0{bottom:306.256439px;}
.y2d{bottom:307.039403px;}
.y87{bottom:325.617555px;}
.ye8{bottom:325.770624px;}
.y6a{bottom:326.590685px;}
.y3f{bottom:327.525994px;}
.y9f{bottom:328.764920px;}
.y2c{bottom:329.547884px;}
.ye7{bottom:346.028257px;}
.y86{bottom:348.126036px;}
.y3e{bottom:350.034475px;}
.y9e{bottom:351.273400px;}
.y2b{bottom:352.056364px;}
.y85{bottom:370.634516px;}
.y3d{bottom:372.542955px;}
.y9d{bottom:373.781881px;}
.y2a{bottom:374.564845px;}
.yb9{bottom:377.457271px;}
.y77{bottom:381.009557px;}
.y84{bottom:393.142997px;}
.y9c{bottom:396.290362px;}
.y29{bottom:397.073326px;}
.y76{bottom:399.016341px;}
.yd4{bottom:409.194190px;}
.y83{bottom:415.651478px;}
.y75{bottom:417.023126px;}
.y4e{bottom:418.606365px;}
.y9b{bottom:418.798842px;}
.y28{bottom:419.581806px;}
.yd3{bottom:431.702671px;}
.y82{bottom:438.159958px;}
.y9a{bottom:441.307323px;}
.y27{bottom:442.090287px;}
.y81{bottom:460.668439px;}
.y99{bottom:463.815804px;}
.y26{bottom:464.598768px;}
.y1a{bottom:464.673781px;}
.yd2{bottom:476.719632px;}
.y80{bottom:483.176920px;}
.y98{bottom:486.324284px;}
.y25{bottom:487.107248px;}
.y19{bottom:487.182261px;}
.yd1{bottom:499.228113px;}
.y7f{bottom:505.685400px;}
.y97{bottom:508.832765px;}
.y24{bottom:509.615729px;}
.y18{bottom:509.690742px;}
.y7e{bottom:528.193881px;}
.y96{bottom:531.341246px;}
.y23{bottom:532.124210px;}
.y17{bottom:532.199223px;}
.yd0{bottom:544.245074px;}
.y95{bottom:553.849726px;}
.y22{bottom:554.632690px;}
.y16{bottom:554.707703px;}
.ycf{bottom:566.753555px;}
.y7c{bottom:575.382759px;}
.y94{bottom:576.358207px;}
.y21{bottom:577.141171px;}
.y15{bottom:577.216184px;}
.y20{bottom:599.649652px;}
.y14{bottom:599.724665px;}
.yce{bottom:611.770516px;}
.y7b{bottom:621.815921px;}
.y1f{bottom:622.158132px;}
.y13{bottom:622.233145px;}
.y69{bottom:624.835542px;}
.y1e{bottom:644.666613px;}
.y12{bottom:644.741626px;}
.y68{bottom:647.344023px;}
.ycd{bottom:656.787478px;}
.y1d{bottom:667.175094px;}
.y11{bottom:667.250107px;}
.y67{bottom:669.852503px;}
.ycc{bottom:679.295958px;}
.y1c{bottom:689.683574px;}
.y10{bottom:689.758587px;}
.y66{bottom:692.360984px;}
.y1b{bottom:712.192055px;}
.yf{bottom:712.267068px;}
.y65{bottom:714.869465px;}
.ycb{bottom:724.312920px;}
.ye{bottom:734.775549px;}
.y64{bottom:737.377945px;}
.yd{bottom:757.284029px;}
.y4d{bottom:758.255501px;}
.y63{bottom:759.886426px;}
.ye4{bottom:764.749299px;}
.yc{bottom:779.792510px;}
.y62{bottom:782.394907px;}
.yb{bottom:802.300991px;}
.y3c{bottom:804.322869px;}
.yca{bottom:804.788162px;}
.y61{bottom:804.903387px;}
.y5e{bottom:809.849211px;}
.ye2{bottom:824.797264px;}
.ya{bottom:824.809471px;}
.y3b{bottom:826.831350px;}
.yc9{bottom:827.296643px;}
.y60{bottom:827.411868px;}
.y5d{bottom:832.357692px;}
.ye1{bottom:847.305744px;}
.y3a{bottom:849.339831px;}
.yc8{bottom:849.805124px;}
.y5f{bottom:849.920349px;}
.y5c{bottom:854.866173px;}
.ye0{bottom:869.814225px;}
.y4c{bottom:870.872961px;}
.y39{bottom:871.848311px;}
.yc7{bottom:872.313604px;}
.y5b{bottom:877.374653px;}
.y7a{bottom:886.690124px;}
.ydf{bottom:892.322706px;}
.yc6{bottom:894.822085px;}
.y5a{bottom:899.883134px;}
.y79{bottom:904.696908px;}
.yde{bottom:914.831186px;}
.y9{bottom:916.940311px;}
.yc5{bottom:917.330566px;}
.y59{bottom:922.391615px;}
.y78{bottom:922.703693px;}
.ydd{bottom:937.339667px;}
.y8{bottom:939.448792px;}
.yc4{bottom:939.839046px;}
.y58{bottom:944.900095px;}
.ydc{bottom:959.848148px;}
.y7{bottom:961.957272px;}
.yc3{bottom:962.347527px;}
.y57{bottom:967.408576px;}
.ydb{bottom:982.356628px;}
.y6{bottom:984.465753px;}
.yc2{bottom:984.856008px;}
.y56{bottom:989.917057px;}
.yda{bottom:1004.865109px;}
.y5{bottom:1006.974234px;}
.yc1{bottom:1007.364488px;}
.y55{bottom:1012.425537px;}
.yd9{bottom:1027.373590px;}
.y4{bottom:1029.482714px;}
.yc0{bottom:1029.872969px;}
.y54{bottom:1034.934018px;}
.yd8{bottom:1049.882070px;}
.ybf{bottom:1052.381450px;}
.y53{bottom:1057.442498px;}
.yd7{bottom:1072.390551px;}
.ybe{bottom:1074.889930px;}
.y4b{bottom:1075.550048px;}
.y52{bottom:1079.950979px;}
.yd6{bottom:1094.899032px;}
.ybd{bottom:1097.398411px;}
.y51{bottom:1102.459460px;}
.yd5{bottom:1117.407512px;}
.ybc{bottom:1119.906891px;}
.y50{bottom:1124.967940px;}
.y3{bottom:1139.147004px;}
.ybb{bottom:1142.415372px;}
.y4f{bottom:1147.476421px;}
.ye3{bottom:1160.094691px;}
.yba{bottom:1164.923853px;}
.y2{bottom:1168.408029px;}
.h9{height:9.000000px;}
.h7{height:12.959999px;}
.ha{height:15.033783px;}
.hd{height:19.439999px;}
.h8{height:22.751155px;}
.hc{height:24.187179px;}
.he{height:34.161225px;}
.h6{height:43.918547px;}
.h12{height:48.132135px;}
.hf{height:48.786186px;}
.hb{height:53.639998px;}
.h4{height:53.653825px;}
.h11{height:58.774145px;}
.h10{height:58.801424px;}
.h5{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:30.959999px;}
.w7{width:46.079998px;}
.w4{width:62.279997px;}
.w3{width:65.879997px;}
.w2{width:66.239997px;}
.w6{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.552352px;}
.xa{left:44.584693px;}
.xb{left:52.301066px;}
.x1{left:64.390281px;}
.x8{left:119.519995px;}
.x9{left:127.079995px;}
.x2{left:188.380357px;}
.x4{left:464.802871px;}
.x7{left:496.079979px;}
.x6{left:618.479974px;}
.x5{left:620.279974px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws7{word-spacing:-13.335024pt;}
.ws3{word-spacing:-12.004523pt;}
.ws6{word-spacing:-9.337495pt;}
.ws4{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._0{width:1.027294pt;}
._b{width:1.952144pt;}
._1{width:4.564561pt;}
._a{width:7.556346pt;}
._2{width:11.808561pt;}
._8{width:31.200416pt;}
._9{width:32.888936pt;}
._3{width:45.859260pt;}
._4{width:47.086764pt;}
._6{width:77.465777pt;}
._5{width:124.983481pt;}
._7{width:130.796002pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs7{font-size:37.349980pt;}
.fs3{font-size:48.018092pt;}
.fs8{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yaf{bottom:3.359697pt;}
.ya9{bottom:4.377788pt;}
.yab{bottom:4.503726pt;}
.yad{bottom:4.507398pt;}
.yb5{bottom:5.251695pt;}
.yb7{bottom:7.067738pt;}
.yb4{bottom:14.066666pt;}
.yb0{bottom:18.360018pt;}
.yac{bottom:19.320018pt;}
.yb3{bottom:22.881637pt;}
.yb2{bottom:31.696608pt;}
.yaa{bottom:35.640017pt;}
.yae{bottom:37.560017pt;}
.yb1{bottom:40.511579pt;}
.y93{bottom:49.347366pt;}
.ya8{bottom:51.000016pt;}
.y38{bottom:52.840992pt;}
.y92{bottom:69.354905pt;}
.ya7{bottom:69.354911pt;}
.y4a{bottom:71.051295pt;}
.y37{bottom:72.848530pt;}
.y91{bottom:89.362443pt;}
.ya6{bottom:89.362449pt;}
.y74{bottom:90.227448pt;}
.y49{bottom:91.058833pt;}
.y36{bottom:92.856068pt;}
.y90{bottom:109.369981pt;}
.ya5{bottom:109.369988pt;}
.y73{bottom:110.234986pt;}
.y48{bottom:111.066372pt;}
.y35{bottom:112.863607pt;}
.yb6{bottom:113.080014pt;}
.y8f{bottom:129.377520pt;}
.ya4{bottom:129.377526pt;}
.y72{bottom:130.242524pt;}
.y47{bottom:131.073910pt;}
.y34{bottom:132.871145pt;}
.y8e{bottom:149.385058pt;}
.y71{bottom:150.250063pt;}
.y46{bottom:151.081448pt;}
.y33{bottom:152.878684pt;}
.y8d{bottom:169.392596pt;}
.y70{bottom:170.257601pt;}
.y45{bottom:171.088987pt;}
.y7d{bottom:171.323163pt;}
.y32{bottom:172.886222pt;}
.ye6{bottom:184.514148pt;}
.y8c{bottom:189.400135pt;}
.y6f{bottom:190.265140pt;}
.y44{bottom:191.096525pt;}
.y31{bottom:192.893760pt;}
.ye5{bottom:202.520933pt;}
.y8b{bottom:209.407673pt;}
.y6e{bottom:210.272678pt;}
.y43{bottom:211.104064pt;}
.ya3{bottom:212.205331pt;}
.y30{bottom:212.901299pt;}
.y8a{bottom:229.415212pt;}
.y6d{bottom:230.280216pt;}
.y42{bottom:231.111602pt;}
.ya2{bottom:232.212869pt;}
.y2f{bottom:232.908837pt;}
.yb8{bottom:238.040939pt;}
.y89{bottom:249.422750pt;}
.y6c{bottom:250.287755pt;}
.y41{bottom:251.119140pt;}
.ya1{bottom:252.220407pt;}
.y2e{bottom:252.916375pt;}
.y88{bottom:269.430288pt;}
.y6b{bottom:270.295293pt;}
.y40{bottom:271.126679pt;}
.ye9{bottom:271.567104pt;}
.ya0{bottom:272.227946pt;}
.y2d{bottom:272.923914pt;}
.y87{bottom:289.437827pt;}
.ye8{bottom:289.573888pt;}
.y6a{bottom:290.302831pt;}
.y3f{bottom:291.134217pt;}
.y9f{bottom:292.235484pt;}
.y2c{bottom:292.931452pt;}
.ye7{bottom:307.580673pt;}
.y86{bottom:309.445365pt;}
.y3e{bottom:311.141755pt;}
.y9e{bottom:312.243023pt;}
.y2b{bottom:312.938990pt;}
.y85{bottom:329.452903pt;}
.y3d{bottom:331.149294pt;}
.y9d{bottom:332.250561pt;}
.y2a{bottom:332.946529pt;}
.yb9{bottom:335.517575pt;}
.y77{bottom:338.675162pt;}
.y84{bottom:349.460442pt;}
.y9c{bottom:352.258099pt;}
.y29{bottom:352.954067pt;}
.y76{bottom:354.681192pt;}
.yd4{bottom:363.728169pt;}
.y83{bottom:369.467980pt;}
.y75{bottom:370.687223pt;}
.y4e{bottom:372.094547pt;}
.y9b{bottom:372.265638pt;}
.y28{bottom:372.961606pt;}
.yd3{bottom:383.735708pt;}
.y82{bottom:389.475518pt;}
.y9a{bottom:392.273176pt;}
.y27{bottom:392.969144pt;}
.y81{bottom:409.483057pt;}
.y99{bottom:412.280714pt;}
.y26{bottom:412.976682pt;}
.y1a{bottom:413.043361pt;}
.yd2{bottom:423.750784pt;}
.y80{bottom:429.490595pt;}
.y98{bottom:432.288253pt;}
.y25{bottom:432.984221pt;}
.y19{bottom:433.050899pt;}
.yd1{bottom:443.758323pt;}
.y7f{bottom:449.498134pt;}
.y97{bottom:452.295791pt;}
.y24{bottom:452.991759pt;}
.y18{bottom:453.058437pt;}
.y7e{bottom:469.505672pt;}
.y96{bottom:472.303329pt;}
.y23{bottom:472.999297pt;}
.y17{bottom:473.065976pt;}
.yd0{bottom:483.773399pt;}
.y95{bottom:492.310868pt;}
.y22{bottom:493.006836pt;}
.y16{bottom:493.073514pt;}
.ycf{bottom:503.780938pt;}
.y7c{bottom:511.451341pt;}
.y94{bottom:512.318406pt;}
.y21{bottom:513.014374pt;}
.y15{bottom:513.081053pt;}
.y20{bottom:533.021913pt;}
.y14{bottom:533.088591pt;}
.yce{bottom:543.796014pt;}
.y7b{bottom:552.725263pt;}
.y1f{bottom:553.029451pt;}
.y13{bottom:553.096129pt;}
.y69{bottom:555.409371pt;}
.y1e{bottom:573.036989pt;}
.y12{bottom:573.103668pt;}
.y68{bottom:575.416909pt;}
.ycd{bottom:583.811091pt;}
.y1d{bottom:593.044528pt;}
.y11{bottom:593.111206pt;}
.y67{bottom:595.424448pt;}
.ycc{bottom:603.818630pt;}
.y1c{bottom:613.052066pt;}
.y10{bottom:613.118744pt;}
.y66{bottom:615.431986pt;}
.y1b{bottom:633.059604pt;}
.yf{bottom:633.126283pt;}
.y65{bottom:635.439524pt;}
.ycb{bottom:643.833706pt;}
.ye{bottom:653.133821pt;}
.y64{bottom:655.447063pt;}
.yd{bottom:673.141359pt;}
.y4d{bottom:674.004890pt;}
.y63{bottom:675.454601pt;}
.ye4{bottom:679.777155pt;}
.yc{bottom:693.148898pt;}
.y62{bottom:695.462139pt;}
.yb{bottom:713.156436pt;}
.y3c{bottom:714.953662pt;}
.yca{bottom:715.367255pt;}
.y61{bottom:715.469678pt;}
.y5e{bottom:719.865966pt;}
.ye2{bottom:733.153123pt;}
.ya{bottom:733.163975pt;}
.y3b{bottom:734.961200pt;}
.yc9{bottom:735.374794pt;}
.y60{bottom:735.477216pt;}
.y5d{bottom:739.873504pt;}
.ye1{bottom:753.160662pt;}
.y3a{bottom:754.968738pt;}
.yc8{bottom:755.382332pt;}
.y5f{bottom:755.484754pt;}
.y5c{bottom:759.881042pt;}
.ye0{bottom:773.168200pt;}
.y4c{bottom:774.109298pt;}
.y39{bottom:774.976277pt;}
.yc7{bottom:775.389870pt;}
.y5b{bottom:779.888581pt;}
.y7a{bottom:788.168999pt;}
.ydf{bottom:793.175738pt;}
.yc6{bottom:795.397409pt;}
.y5a{bottom:799.896119pt;}
.y79{bottom:804.175030pt;}
.yde{bottom:813.183277pt;}
.y9{bottom:815.058054pt;}
.yc5{bottom:815.404947pt;}
.y59{bottom:819.903657pt;}
.y78{bottom:820.181060pt;}
.ydd{bottom:833.190815pt;}
.y8{bottom:835.065593pt;}
.yc4{bottom:835.412486pt;}
.y58{bottom:839.911196pt;}
.ydc{bottom:853.198354pt;}
.y7{bottom:855.073131pt;}
.yc3{bottom:855.420024pt;}
.y57{bottom:859.918734pt;}
.ydb{bottom:873.205892pt;}
.y6{bottom:875.080669pt;}
.yc2{bottom:875.427562pt;}
.y56{bottom:879.926272pt;}
.yda{bottom:893.213430pt;}
.y5{bottom:895.088208pt;}
.yc1{bottom:895.435101pt;}
.y55{bottom:899.933811pt;}
.yd9{bottom:913.220969pt;}
.y4{bottom:915.095746pt;}
.yc0{bottom:915.442639pt;}
.y54{bottom:919.941349pt;}
.yd8{bottom:933.228507pt;}
.ybf{bottom:935.450177pt;}
.y53{bottom:939.948888pt;}
.yd7{bottom:953.236045pt;}
.ybe{bottom:955.457716pt;}
.y4b{bottom:956.044488pt;}
.y52{bottom:959.956426pt;}
.yd6{bottom:973.243584pt;}
.ybd{bottom:975.465254pt;}
.y51{bottom:979.963964pt;}
.yd5{bottom:993.251122pt;}
.ybc{bottom:995.472792pt;}
.y50{bottom:999.971503pt;}
.y3{bottom:1012.575115pt;}
.ybb{bottom:1015.480331pt;}
.y4f{bottom:1019.979041pt;}
.ye3{bottom:1031.195281pt;}
.yba{bottom:1035.487869pt;}
.y2{bottom:1038.584915pt;}
.h9{height:8.000000pt;}
.h7{height:11.520000pt;}
.ha{height:13.363363pt;}
.hd{height:17.279999pt;}
.h8{height:20.223249pt;}
.hc{height:21.499714pt;}
.he{height:30.365533pt;}
.h6{height:39.038709pt;}
.h12{height:42.784120pt;}
.hf{height:43.365499pt;}
.hb{height:47.679998pt;}
.h4{height:47.692289pt;}
.h11{height:52.243684pt;}
.h10{height:52.267933pt;}
.h5{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:27.519999pt;}
.w7{width:40.959998pt;}
.w4{width:55.359998pt;}
.w3{width:58.559998pt;}
.w2{width:58.879998pt;}
.w6{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.713202pt;}
.xa{left:39.630838pt;}
.xb{left:46.489837pt;}
.x1{left:57.235805pt;}
.x8{left:106.239996pt;}
.x9{left:112.959995pt;}
.x2{left:167.449206pt;}
.x4{left:413.158108pt;}
.x7{left:440.959982pt;}
.x6{left:549.759977pt;}
.x5{left:551.359977pt;}
}




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