
    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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_03df7d352b808bb37310df0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103516;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_12e25869175572d9210e3d0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.238000;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_65f6c00d6933233a08a87149.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_6001cf1948e683b18b7f9d94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.288000;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_fb48e533be08e88b1c8ac4e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.224000;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_d89c3f93e67bb9ef8ef7856e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.224000;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,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;}
.ls9{letter-spacing:0.120078px;}
.lsa{letter-spacing:0.155964px;}
.ls8{letter-spacing:0.240156px;}
.ls4{letter-spacing:0.370032px;}
.ls5{letter-spacing:0.475056px;}
.ls7{letter-spacing:0.482832px;}
.ls6{letter-spacing:0.504000px;}
.ls2{letter-spacing:11.254032px;}
.ls3{letter-spacing:11.260032px;}
.ls1{letter-spacing:32.458086px;}
.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;}
}
.ws8{word-spacing:-53.188986px;}
.ws1{word-spacing:-33.261606px;}
.ws3{word-spacing:-29.959914px;}
.ws4{word-spacing:-29.563968px;}
.ws5{word-spacing:-27.257706px;}
.ws7{word-spacing:-27.017550px;}
.ws6{word-spacing:-26.897472px;}
.ws0{word-spacing:-24.516000px;}
.ws2{word-spacing:0.000000px;}
._29{margin-left:-3274.026276px;}
._15{margin-left:-2678.828370px;}
._23{margin-left:-19.401354px;}
._b{margin-left:-12.321156px;}
._a{margin-left:-11.193840px;}
._6{margin-left:-9.186000px;}
._4{margin-left:-7.452000px;}
._7{margin-left:-6.264000px;}
._8{margin-left:-5.206524px;}
._9{margin-left:-3.407388px;}
._1{margin-left:-2.376000px;}
._3{margin-left:-1.080000px;}
._2{width:1.296000px;}
._16{width:2.574000px;}
._5{width:3.738000px;}
._1a{width:4.762716px;}
._1f{width:5.776902px;}
._19{width:6.784278px;}
._13{width:7.798086px;}
._14{width:8.917512px;}
._18{width:9.959982px;}
._e{width:11.086488px;}
._17{width:12.094728px;}
._11{width:13.198524px;}
._12{width:14.649678px;}
._24{width:16.169958px;}
._21{width:17.397480px;}
._20{width:18.609462px;}
._1c{width:20.481354px;}
._1d{width:21.988824px;}
._1e{width:23.219556px;}
._22{width:24.312972px;}
._10{width:25.736490px;}
._f{width:27.452580px;}
._d{width:31.328022px;}
._c{width:32.335590px;}
._27{width:35.635140px;}
._28{width:36.954960px;}
._25{width:38.067174px;}
._26{width:39.694692px;}
._1b{width:1070.885766px;}
._0{width:2113.657500px;}
.fc5{color:rgb(42,96,153);}
.fc4{color:rgb(201,33,30);}
.fc3{color:transparent;}
.fc1{color:rgb(195,65,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.018000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.078000px;}
.fs3{font-size:131.982000px;}
.fs6{font-size:136.637821px;}
.fs5{font-size:144.054000px;}
.fs4{font-size:155.964000px;}
.fs7{font-size:192.018000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y4d{bottom:12.373500px;}
.y3b{bottom:12.501000px;}
.y2b{bottom:13.138500px;}
.y1f{bottom:14.031000px;}
.ya5{bottom:15.519000px;}
.ya6{bottom:15.690000px;}
.ya0{bottom:16.710000px;}
.y8{bottom:19.134000px;}
.y26{bottom:20.026500px;}
.yc4{bottom:20.154000px;}
.y9a{bottom:21.514500px;}
.y9d{bottom:22.279500px;}
.yd6{bottom:23.470500px;}
.yd0{bottom:27.679500px;}
.y3c{bottom:34.738500px;}
.y5b{bottom:36.949500px;}
.y74{bottom:38.778000px;}
.y23{bottom:43.114500px;}
.y2a{bottom:43.411500px;}
.yb4{bottom:47.451000px;}
.y67{bottom:49.705500px;}
.y93{bottom:52.851000px;}
.y3a{bottom:60.207000px;}
.y2{bottom:60.675000px;}
.y9f{bottom:61.567500px;}
.y99{bottom:65.182500px;}
.y4b{bottom:68.457000px;}
.y1e{bottom:68.923500px;}
.yc3{bottom:70.284000px;}
.y29{bottom:73.558500px;}
.y5a{bottom:91.884000px;}
.y73{bottom:93.501000px;}
.ycf{bottom:96.987000px;}
.yb3{bottom:97.582500px;}
.y92{bottom:97.710000px;}
.y7f{bottom:97.879500px;}
.y84{bottom:102.217500px;}
.y66{bottom:104.640000px;}
.y98{bottom:108.679500px;}
.y7{bottom:114.079500px;}
.y4a{bottom:116.163000px;}
.y1d{bottom:123.817500px;}
.yc2{bottom:124.710000px;}
.y94{bottom:141.207000px;}
.yb2{bottom:147.501000px;}
.y72{bottom:148.435500px;}
.y59{bottom:150.987000px;}
.y97{bottom:152.178000px;}
.y7e{bottom:152.773500px;}
.y83{bottom:157.110000px;}
.y6{bottom:158.938500px;}
.yce{bottom:161.914500px;}
.y49{bottom:163.870500px;}
.yc1{bottom:174.670500px;}
.y1c{bottom:178.582500px;}
.y91{bottom:187.554000px;}
.yb1{bottom:197.631000px;}
.y71{bottom:203.329500px;}
.y32{bottom:204.051000px;}
.y58{bottom:205.879500px;}
.y7d{bottom:207.666000px;}
.y48{bottom:211.578000px;}
.y82{bottom:212.002500px;}
.yd7{bottom:215.490000px;}
.y5{bottom:215.617500px;}
.y65{bottom:218.635500px;}
.ycd{bottom:226.884000px;}
.yc0{bottom:229.138500px;}
.y90{bottom:232.582500px;}
.y1b{bottom:233.475000px;}
.y31{bottom:234.367500px;}
.yb0{bottom:252.057000px;}
.y70{bottom:258.051000px;}
.y47{bottom:259.284000px;}
.y4{bottom:260.901000px;}
.y7c{bottom:262.431000px;}
.y30{bottom:264.514500px;}
.y57{bottom:265.110000px;}
.y81{bottom:266.767500px;}
.y64{bottom:273.529500px;}
.ybf{bottom:279.057000px;}
.y1a{bottom:288.367500px;}
.y2f{bottom:294.831000px;}
.ycc{bottom:296.149500px;}
.yaf{bottom:302.017500px;}
.y28{bottom:302.782500px;}
.y3{bottom:306.226500px;}
.y46{bottom:306.949500px;}
.y9c{bottom:311.457000px;}
.y6f{bottom:312.987000px;}
.y7b{bottom:317.323500px;}
.y56{bottom:319.875000px;}
.y80{bottom:321.661500px;}
.y8f{bottom:322.257000px;}
.y63{bottom:332.758500px;}
.y27{bottom:332.929500px;}
.y4c{bottom:333.226500px;}
.ybe{bottom:333.523500px;}
.ya1{bottom:343.134000px;}
.y19{bottom:343.857000px;}
.yae{bottom:352.105500px;}
.y45{bottom:354.657000px;}
.ycb{bottom:361.119000px;}
.y8e{bottom:367.284000px;}
.y6e{bottom:367.879500px;}
.y39{bottom:374.640000px;}
.y55{bottom:374.767500px;}
.y21{bottom:374.938500px;}
.y7a{bottom:376.554000px;}
.ybd{bottom:383.611500px;}
.y22{bottom:387.523500px;}
.y18{bottom:398.749500px;}
.y9e{bottom:401.767500px;}
.yad{bottom:402.235500px;}
.y44{bottom:402.363000px;}
.y8d{bottom:412.101000px;}
.y38{bottom:422.305500px;}
.y6d{bottom:422.602500px;}
.yca{bottom:426.090000px;}
.yd4{bottom:428.301000px;}
.y79{bottom:431.319000px;}
.ybc{bottom:433.573500px;}
.y54{bottom:434.040000px;}
.y62{bottom:442.417500px;}
.y43{bottom:450.070500px;}
.y17{bottom:453.684000px;}
.yac{bottom:456.534000px;}
.y8c{bottom:456.958500px;}
.y24{bottom:468.226500px;}
.y6c{bottom:477.538500px;}
.ybb{bottom:483.661500px;}
.y78{bottom:486.211500px;}
.y53{bottom:488.763000px;}
.yc9{bottom:495.354000px;}
.y61{bottom:497.310000px;}
.y42{bottom:497.778000px;}
.y8b{bottom:501.987000px;}
.yab{bottom:506.622000px;}
.y16{bottom:508.407000px;}
.yd3{bottom:535.875000px;}
.y6b{bottom:536.767500px;}
.yba{bottom:537.958500px;}
.y77{bottom:541.105500px;}
.y41{bottom:545.484000px;}
.y8a{bottom:546.802500px;}
.y52{bottom:548.035500px;}
.y60{bottom:552.075000px;}
.yaa{bottom:556.582500px;}
.yb{bottom:558.538500px;}
.y15{bottom:563.301000px;}
.yc8{bottom:564.831000px;}
.y37{bottom:565.426500px;}
.yb9{bottom:588.090000px;}
.y6a{bottom:591.534000px;}
.y89{bottom:591.661500px;}
.y40{bottom:593.149500px;}
.y76{bottom:595.870500px;}
.y51{bottom:602.758500px;}
.y5f{bottom:606.967500px;}
.ya9{bottom:611.007000px;}
.y36{bottom:613.134000px;}
.ya{bottom:613.261500px;}
.y14{bottom:616.110000px;}
.yf{bottom:616.407000px;}
.y2e{bottom:624.826500px;}
.yc7{bottom:629.758500px;}
.y88{bottom:636.690000px;}
.yb8{bottom:638.178000px;}
.y3f{bottom:640.857000px;}
.yd2{bottom:643.578000px;}
.y69{bottom:646.426500px;}
.y75{bottom:650.763000px;}
.y2d{bottom:655.101000px;}
.y50{bottom:657.651000px;}
.ya8{bottom:661.138500px;}
.y5e{bottom:666.240000px;}
.y13{bottom:671.002500px;}
.y35{bottom:678.954000px;}
.y87{bottom:681.505500px;}
.y2c{bottom:685.290000px;}
.yb7{bottom:688.138500px;}
.y3e{bottom:688.734000px;}
.ye{bottom:689.923500px;}
.ya4{bottom:693.963000px;}
.yc6{bottom:699.066000px;}
.y68{bottom:705.657000px;}
.y4f{bottom:712.587000px;}
.y5d{bottom:720.963000px;}
.y12{bottom:725.938500px;}
.y86{bottom:726.363000px;}
.y34{bottom:733.890000px;}
.y3d{bottom:736.440000px;}
.ya3{bottom:737.461500px;}
.yb6{bottom:738.226500px;}
.y96{bottom:750.387000px;}
.yd1{bottom:751.279500px;}
.yd{bottom:763.567500px;}
.yc5{bottom:764.035500px;}
.y85{bottom:771.349500px;}
.y4e{bottom:772.582500px;}
.y20{bottom:776.919000px;}
.y11{bottom:780.661500px;}
.ya2{bottom:780.958500px;}
.y5c{bottom:781.129500px;}
.y25{bottom:784.105500px;}
.y9b{bottom:785.338500px;}
.ya7{bottom:785.934000px;}
.y33{bottom:788.611500px;}
.y95{bottom:793.884000px;}
.yb5{bottom:794.479500px;}
.yc{bottom:837.382500px;}
.yd5{bottom:843.973500px;}
.y9{bottom:844.101000px;}
.y10{bottom:845.758500px;}
.h3{height:55.998325px;}
.h6{height:87.009645px;}
.h4{height:96.767578px;}
.hb{height:105.192000px;}
.h5{height:106.596000px;}
.h10{height:116.955972px;}
.hf{height:118.516986px;}
.ha{height:128.550468px;}
.hc{height:130.266234px;}
.he{height:133.085237px;}
.h7{height:136.865334px;}
.h11{height:142.181298px;}
.hd{height:149.383998px;}
.h9{height:151.908936px;}
.h8{height:161.734668px;}
.h12{height:172.047378px;}
.h2{height:892.870500px;}
.h0{height:892.913386px;}
.h1{height:893.250000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x39{left:1.659000px;}
.x42{left:9.013500px;}
.x12{left:10.035000px;}
.x14{left:11.565000px;}
.x4b{left:12.883500px;}
.x10{left:14.839500px;}
.x49{left:17.092500px;}
.x36{left:20.707500px;}
.x3a{left:21.769500px;}
.xd{left:23.386500px;}
.x50{left:24.619500px;}
.x24{left:25.936500px;}
.x44{left:27.595500px;}
.x57{left:28.786500px;}
.x13{left:30.147000px;}
.x15{left:31.635000px;}
.x41{left:32.995500px;}
.x11{left:35.121000px;}
.x30{left:37.204500px;}
.x2e{left:38.863500px;}
.x1f{left:41.839500px;}
.x17{left:44.391000px;}
.x26{left:47.707500px;}
.x43{left:50.088000px;}
.x32{left:53.830500px;}
.x25{left:55.191000px;}
.x31{left:56.380500px;}
.x3{left:57.741000px;}
.x1{left:59.569500px;}
.x2f{left:63.312000px;}
.x52{left:64.332000px;}
.x55{left:66.756000px;}
.x33{left:69.732000px;}
.xa{left:75.600000px;}
.xe{left:77.386500px;}
.x20{left:80.830500px;}
.x4d{left:84.741000px;}
.x53{left:87.760500px;}
.x46{left:109.956000px;}
.x2d{left:113.868000px;}
.x5a{left:116.248500px;}
.x3b{left:133.639500px;}
.x23{left:151.030500px;}
.x4a{left:159.448500px;}
.x47{left:163.488000px;}
.x51{left:168.888000px;}
.x4{left:172.630500px;}
.x45{left:209.835000px;}
.x6{left:225.736500px;}
.x38{left:235.347000px;}
.x34{left:254.395500px;}
.xb{left:266.259000px;}
.x5{left:267.916500px;}
.x5b{left:290.835000px;}
.x40{left:297.892500px;}
.x21{left:299.721000px;}
.x5d{left:309.288000px;}
.x22{left:310.819500px;}
.x8{left:313.795500px;}
.xf{left:318.897000px;}
.x35{left:325.360500px;}
.x1b{left:372.430500px;}
.x3f{left:383.230500px;}
.x54{left:389.565000px;}
.x48{left:391.521000px;}
.x37{left:403.936500px;}
.x56{left:411.165000px;}
.x9{left:456.448500px;}
.x19{left:465.591000px;}
.x18{left:473.839500px;}
.x2{left:479.536500px;}
.x59{left:487.488000px;}
.x5c{left:497.991000px;}
.xc{left:508.791000px;}
.x58{left:517.039500px;}
.x4e{left:548.248500px;}
.x2b{left:553.947000px;}
.x4f{left:566.703000px;}
.x4c{left:595.360500px;}
.x3e{left:601.059000px;}
.x2c{left:631.332000px;}
.x1e{left:633.756000px;}
.x3c{left:658.969500px;}
.x29{left:664.795500px;}
.x2a{left:673.512000px;}
.x28{left:677.380500px;}
.x27{left:685.035000px;}
.x1d{left:686.395500px;}
.x1c{left:697.195500px;}
.x7{left:761.569500px;}
.x1a{left:824.116500px;}
.x16{left:885.430500px;}
.x3d{left:1157.556000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106736pt;}
.lsa{letter-spacing:0.138635pt;}
.ls8{letter-spacing:0.213472pt;}
.ls4{letter-spacing:0.328917pt;}
.ls5{letter-spacing:0.422272pt;}
.ls7{letter-spacing:0.429184pt;}
.ls6{letter-spacing:0.448000pt;}
.ls2{letter-spacing:10.003584pt;}
.ls3{letter-spacing:10.008917pt;}
.ls1{letter-spacing:28.851632pt;}
.ws8{word-spacing:-47.279099pt;}
.ws1{word-spacing:-29.565872pt;}
.ws3{word-spacing:-26.631035pt;}
.ws4{word-spacing:-26.279083pt;}
.ws5{word-spacing:-24.229072pt;}
.ws7{word-spacing:-24.015600pt;}
.ws6{word-spacing:-23.908864pt;}
.ws0{word-spacing:-21.792000pt;}
.ws2{word-spacing:0.000000pt;}
._29{margin-left:-2910.245579pt;}
._15{margin-left:-2381.180773pt;}
._23{margin-left:-17.245648pt;}
._b{margin-left:-10.952139pt;}
._a{margin-left:-9.950080pt;}
._6{margin-left:-8.165333pt;}
._4{margin-left:-6.624000pt;}
._7{margin-left:-5.568000pt;}
._8{margin-left:-4.628021pt;}
._9{margin-left:-3.028789pt;}
._1{margin-left:-2.112000pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.152000pt;}
._16{width:2.288000pt;}
._5{width:3.322667pt;}
._1a{width:4.233525pt;}
._1f{width:5.135024pt;}
._19{width:6.030469pt;}
._13{width:6.931632pt;}
._14{width:7.926677pt;}
._18{width:8.853317pt;}
._e{width:9.854656pt;}
._17{width:10.750869pt;}
._11{width:11.732021pt;}
._12{width:13.021936pt;}
._24{width:14.373296pt;}
._21{width:15.464427pt;}
._20{width:16.541744pt;}
._1c{width:18.205648pt;}
._1d{width:19.545621pt;}
._1e{width:20.639605pt;}
._22{width:21.611531pt;}
._10{width:22.876880pt;}
._f{width:24.402293pt;}
._d{width:27.847131pt;}
._c{width:28.742747pt;}
._27{width:31.675680pt;}
._28{width:32.848853pt;}
._25{width:33.837488pt;}
._26{width:35.284171pt;}
._1b{width:951.898459pt;}
._0{width:1878.806667pt;}
.fs0{font-size:74.682667pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.736000pt;}
.fs3{font-size:117.317333pt;}
.fs6{font-size:121.455841pt;}
.fs5{font-size:128.048000pt;}
.fs4{font-size:138.634667pt;}
.fs7{font-size:170.682667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y4d{bottom:10.998667pt;}
.y3b{bottom:11.112000pt;}
.y2b{bottom:11.678667pt;}
.y1f{bottom:12.472000pt;}
.ya5{bottom:13.794667pt;}
.ya6{bottom:13.946667pt;}
.ya0{bottom:14.853333pt;}
.y8{bottom:17.008000pt;}
.y26{bottom:17.801333pt;}
.yc4{bottom:17.914667pt;}
.y9a{bottom:19.124000pt;}
.y9d{bottom:19.804000pt;}
.yd6{bottom:20.862667pt;}
.yd0{bottom:24.604000pt;}
.y3c{bottom:30.878667pt;}
.y5b{bottom:32.844000pt;}
.y74{bottom:34.469333pt;}
.y23{bottom:38.324000pt;}
.y2a{bottom:38.588000pt;}
.yb4{bottom:42.178667pt;}
.y67{bottom:44.182667pt;}
.y93{bottom:46.978667pt;}
.y3a{bottom:53.517333pt;}
.y2{bottom:53.933333pt;}
.y9f{bottom:54.726667pt;}
.y99{bottom:57.940000pt;}
.y4b{bottom:60.850667pt;}
.y1e{bottom:61.265333pt;}
.yc3{bottom:62.474667pt;}
.y29{bottom:65.385333pt;}
.y5a{bottom:81.674667pt;}
.y73{bottom:83.112000pt;}
.ycf{bottom:86.210667pt;}
.yb3{bottom:86.740000pt;}
.y92{bottom:86.853333pt;}
.y7f{bottom:87.004000pt;}
.y84{bottom:90.860000pt;}
.y66{bottom:93.013333pt;}
.y98{bottom:96.604000pt;}
.y7{bottom:101.404000pt;}
.y4a{bottom:103.256000pt;}
.y1d{bottom:110.060000pt;}
.yc2{bottom:110.853333pt;}
.y94{bottom:125.517333pt;}
.yb2{bottom:131.112000pt;}
.y72{bottom:131.942667pt;}
.y59{bottom:134.210667pt;}
.y97{bottom:135.269333pt;}
.y7e{bottom:135.798667pt;}
.y83{bottom:139.653333pt;}
.y6{bottom:141.278667pt;}
.yce{bottom:143.924000pt;}
.y49{bottom:145.662667pt;}
.yc1{bottom:155.262667pt;}
.y1c{bottom:158.740000pt;}
.y91{bottom:166.714667pt;}
.yb1{bottom:175.672000pt;}
.y71{bottom:180.737333pt;}
.y32{bottom:181.378667pt;}
.y58{bottom:183.004000pt;}
.y7d{bottom:184.592000pt;}
.y48{bottom:188.069333pt;}
.y82{bottom:188.446667pt;}
.yd7{bottom:191.546667pt;}
.y5{bottom:191.660000pt;}
.y65{bottom:194.342667pt;}
.ycd{bottom:201.674667pt;}
.yc0{bottom:203.678667pt;}
.y90{bottom:206.740000pt;}
.y1b{bottom:207.533333pt;}
.y31{bottom:208.326667pt;}
.yb0{bottom:224.050667pt;}
.y70{bottom:229.378667pt;}
.y47{bottom:230.474667pt;}
.y4{bottom:231.912000pt;}
.y7c{bottom:233.272000pt;}
.y30{bottom:235.124000pt;}
.y57{bottom:235.653333pt;}
.y81{bottom:237.126667pt;}
.y64{bottom:243.137333pt;}
.ybf{bottom:248.050667pt;}
.y1a{bottom:256.326667pt;}
.y2f{bottom:262.072000pt;}
.ycc{bottom:263.244000pt;}
.yaf{bottom:268.460000pt;}
.y28{bottom:269.140000pt;}
.y3{bottom:272.201333pt;}
.y46{bottom:272.844000pt;}
.y9c{bottom:276.850667pt;}
.y6f{bottom:278.210667pt;}
.y7b{bottom:282.065333pt;}
.y56{bottom:284.333333pt;}
.y80{bottom:285.921333pt;}
.y8f{bottom:286.450667pt;}
.y63{bottom:295.785333pt;}
.y27{bottom:295.937333pt;}
.y4c{bottom:296.201333pt;}
.ybe{bottom:296.465333pt;}
.ya1{bottom:305.008000pt;}
.y19{bottom:305.650667pt;}
.yae{bottom:312.982667pt;}
.y45{bottom:315.250667pt;}
.ycb{bottom:320.994667pt;}
.y8e{bottom:326.474667pt;}
.y6e{bottom:327.004000pt;}
.y39{bottom:333.013333pt;}
.y55{bottom:333.126667pt;}
.y21{bottom:333.278667pt;}
.y7a{bottom:334.714667pt;}
.ybd{bottom:340.988000pt;}
.y22{bottom:344.465333pt;}
.y18{bottom:354.444000pt;}
.y9e{bottom:357.126667pt;}
.yad{bottom:357.542667pt;}
.y44{bottom:357.656000pt;}
.y8d{bottom:366.312000pt;}
.y38{bottom:375.382667pt;}
.y6d{bottom:375.646667pt;}
.yca{bottom:378.746667pt;}
.yd4{bottom:380.712000pt;}
.y79{bottom:383.394667pt;}
.ybc{bottom:385.398667pt;}
.y54{bottom:385.813333pt;}
.y62{bottom:393.260000pt;}
.y43{bottom:400.062667pt;}
.y17{bottom:403.274667pt;}
.yac{bottom:405.808000pt;}
.y8c{bottom:406.185333pt;}
.y24{bottom:416.201333pt;}
.y6c{bottom:424.478667pt;}
.ybb{bottom:429.921333pt;}
.y78{bottom:432.188000pt;}
.y53{bottom:434.456000pt;}
.yc9{bottom:440.314667pt;}
.y61{bottom:442.053333pt;}
.y42{bottom:442.469333pt;}
.y8b{bottom:446.210667pt;}
.yab{bottom:450.330667pt;}
.y16{bottom:451.917333pt;}
.yd3{bottom:476.333333pt;}
.y6b{bottom:477.126667pt;}
.yba{bottom:478.185333pt;}
.y77{bottom:480.982667pt;}
.y41{bottom:484.874667pt;}
.y8a{bottom:486.046667pt;}
.y52{bottom:487.142667pt;}
.y60{bottom:490.733333pt;}
.yaa{bottom:494.740000pt;}
.yb{bottom:496.478667pt;}
.y15{bottom:500.712000pt;}
.yc8{bottom:502.072000pt;}
.y37{bottom:502.601333pt;}
.yb9{bottom:522.746667pt;}
.y6a{bottom:525.808000pt;}
.y89{bottom:525.921333pt;}
.y40{bottom:527.244000pt;}
.y76{bottom:529.662667pt;}
.y51{bottom:535.785333pt;}
.y5f{bottom:539.526667pt;}
.ya9{bottom:543.117333pt;}
.y36{bottom:545.008000pt;}
.ya{bottom:545.121333pt;}
.y14{bottom:547.653333pt;}
.yf{bottom:547.917333pt;}
.y2e{bottom:555.401333pt;}
.yc7{bottom:559.785333pt;}
.y88{bottom:565.946667pt;}
.yb8{bottom:567.269333pt;}
.y3f{bottom:569.650667pt;}
.yd2{bottom:572.069333pt;}
.y69{bottom:574.601333pt;}
.y75{bottom:578.456000pt;}
.y2d{bottom:582.312000pt;}
.y50{bottom:584.578667pt;}
.ya8{bottom:587.678667pt;}
.y5e{bottom:592.213333pt;}
.y13{bottom:596.446667pt;}
.y35{bottom:603.514667pt;}
.y87{bottom:605.782667pt;}
.y2c{bottom:609.146667pt;}
.yb7{bottom:611.678667pt;}
.y3e{bottom:612.208000pt;}
.ye{bottom:613.265333pt;}
.ya4{bottom:616.856000pt;}
.yc6{bottom:621.392000pt;}
.y68{bottom:627.250667pt;}
.y4f{bottom:633.410667pt;}
.y5d{bottom:640.856000pt;}
.y12{bottom:645.278667pt;}
.y86{bottom:645.656000pt;}
.y34{bottom:652.346667pt;}
.y3d{bottom:654.613333pt;}
.ya3{bottom:655.521333pt;}
.yb6{bottom:656.201333pt;}
.y96{bottom:667.010667pt;}
.yd1{bottom:667.804000pt;}
.yd{bottom:678.726667pt;}
.yc5{bottom:679.142667pt;}
.y85{bottom:685.644000pt;}
.y4e{bottom:686.740000pt;}
.y20{bottom:690.594667pt;}
.y11{bottom:693.921333pt;}
.ya2{bottom:694.185333pt;}
.y5c{bottom:694.337333pt;}
.y25{bottom:696.982667pt;}
.y9b{bottom:698.078667pt;}
.ya7{bottom:698.608000pt;}
.y33{bottom:700.988000pt;}
.y95{bottom:705.674667pt;}
.yb5{bottom:706.204000pt;}
.yc{bottom:744.340000pt;}
.yd5{bottom:750.198667pt;}
.y9{bottom:750.312000pt;}
.y10{bottom:751.785333pt;}
.h3{height:49.776289pt;}
.h6{height:77.341906pt;}
.h4{height:86.015625pt;}
.hb{height:93.504000pt;}
.h5{height:94.752000pt;}
.h10{height:103.960864pt;}
.hf{height:105.348432pt;}
.ha{height:114.267083pt;}
.hc{height:115.792208pt;}
.he{height:118.297989pt;}
.h7{height:121.658075pt;}
.h11{height:126.383376pt;}
.hd{height:132.785776pt;}
.h9{height:135.030165pt;}
.h8{height:143.764149pt;}
.h12{height:152.931003pt;}
.h2{height:793.662667pt;}
.h0{height:793.700787pt;}
.h1{height:794.000000pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x39{left:1.474667pt;}
.x42{left:8.012000pt;}
.x12{left:8.920000pt;}
.x14{left:10.280000pt;}
.x4b{left:11.452000pt;}
.x10{left:13.190667pt;}
.x49{left:15.193333pt;}
.x36{left:18.406667pt;}
.x3a{left:19.350667pt;}
.xd{left:20.788000pt;}
.x50{left:21.884000pt;}
.x24{left:23.054667pt;}
.x44{left:24.529333pt;}
.x57{left:25.588000pt;}
.x13{left:26.797333pt;}
.x15{left:28.120000pt;}
.x41{left:29.329333pt;}
.x11{left:31.218667pt;}
.x30{left:33.070667pt;}
.x2e{left:34.545333pt;}
.x1f{left:37.190667pt;}
.x17{left:39.458667pt;}
.x26{left:42.406667pt;}
.x43{left:44.522667pt;}
.x32{left:47.849333pt;}
.x25{left:49.058667pt;}
.x31{left:50.116000pt;}
.x3{left:51.325333pt;}
.x1{left:52.950667pt;}
.x2f{left:56.277333pt;}
.x52{left:57.184000pt;}
.x55{left:59.338667pt;}
.x33{left:61.984000pt;}
.xa{left:67.200000pt;}
.xe{left:68.788000pt;}
.x20{left:71.849333pt;}
.x4d{left:75.325333pt;}
.x53{left:78.009333pt;}
.x46{left:97.738667pt;}
.x2d{left:101.216000pt;}
.x5a{left:103.332000pt;}
.x3b{left:118.790667pt;}
.x23{left:134.249333pt;}
.x4a{left:141.732000pt;}
.x47{left:145.322667pt;}
.x51{left:150.122667pt;}
.x4{left:153.449333pt;}
.x45{left:186.520000pt;}
.x6{left:200.654667pt;}
.x38{left:209.197333pt;}
.x34{left:226.129333pt;}
.xb{left:236.674667pt;}
.x5{left:238.148000pt;}
.x5b{left:258.520000pt;}
.x40{left:264.793333pt;}
.x21{left:266.418667pt;}
.x5d{left:274.922667pt;}
.x22{left:276.284000pt;}
.x8{left:278.929333pt;}
.xf{left:283.464000pt;}
.x35{left:289.209333pt;}
.x1b{left:331.049333pt;}
.x3f{left:340.649333pt;}
.x54{left:346.280000pt;}
.x48{left:348.018667pt;}
.x37{left:359.054667pt;}
.x56{left:365.480000pt;}
.x9{left:405.732000pt;}
.x19{left:413.858667pt;}
.x18{left:421.190667pt;}
.x2{left:426.254667pt;}
.x59{left:433.322667pt;}
.x5c{left:442.658667pt;}
.xc{left:452.258667pt;}
.x58{left:459.590667pt;}
.x4e{left:487.332000pt;}
.x2b{left:492.397333pt;}
.x4f{left:503.736000pt;}
.x4c{left:529.209333pt;}
.x3e{left:534.274667pt;}
.x2c{left:561.184000pt;}
.x1e{left:563.338667pt;}
.x3c{left:585.750667pt;}
.x29{left:590.929333pt;}
.x2a{left:598.677333pt;}
.x28{left:602.116000pt;}
.x27{left:608.920000pt;}
.x1d{left:610.129333pt;}
.x1c{left:619.729333pt;}
.x7{left:676.950667pt;}
.x1a{left:732.548000pt;}
.x16{left:787.049333pt;}
.x3d{left:1028.938667pt;}
}




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