
    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_fd03dd4b4775d70eb4387a83.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_f0805598af0f7bbfe97d3fd7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_c3e82c0336f3eed058b3b320.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_f2eff5d7791fa22059b25e52.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_296fcc0a38e37f62b1c101ed.woff')format("woff");}.ff5{font-family:ff5;line-height:0.109000;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_2688e6982941f80b777f3d50.woff')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_e55b5f2174ab3f402f0bc49d.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v4{vertical-align:-21.708618px;}
.v2{vertical-align:-2.919067px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.919067px;}
.v1{vertical-align:21.708618px;}
.lsb{letter-spacing:-0.025405px;}
.ls7{letter-spacing:-0.023910px;}
.ls3{letter-spacing:-0.017933px;}
.ls6{letter-spacing:-0.011955px;}
.ls11{letter-spacing:-0.010760px;}
.lsa{letter-spacing:-0.010162px;}
.ls8{letter-spacing:-0.005978px;}
.ls4{letter-spacing:-0.005380px;}
.ls9{letter-spacing:-0.005081px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005380px;}
.ls10{letter-spacing:0.005978px;}
.lsd{letter-spacing:0.007173px;}
.lsf{letter-spacing:0.017933px;}
.lsc{letter-spacing:0.020718px;}
.ls1{letter-spacing:0.533982px;}
.ls0{letter-spacing:3.015935px;}
.ls12{letter-spacing:11.281524px;}
.lse{letter-spacing:11.626354px;}
.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;}
}
.wsa{word-spacing:-41.855155px;}
.ws1{word-spacing:-0.065873px;}
.ws7{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.053798px;}
.ws9{word-spacing:-0.048419px;}
.ws0{word-spacing:-0.045430px;}
.ws6{word-spacing:-0.041843px;}
.ws3{word-spacing:-0.040647px;}
.ws2{word-spacing:-0.035865px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:13.385042px;}
.ws8{word-spacing:13.395801px;}
._12{margin-left:-11.615992px;}
._19{margin-left:-10.502241px;}
._4{margin-left:-6.664732px;}
._6{margin-left:-5.439907px;}
._e{margin-left:-4.277176px;}
._1{margin-left:-3.124603px;}
._2{margin-left:-1.549390px;}
._1a{width:6.676584px;}
._a{width:8.102039px;}
._18{width:9.149199px;}
._9{width:10.318533px;}
._8{width:11.550516px;}
._5{width:13.503398px;}
._3{width:14.985742px;}
._b{width:16.088213px;}
._c{width:17.412051px;}
._15{width:18.626077px;}
._16{width:20.412451px;}
._0{width:21.536515px;}
._17{width:22.720705px;}
._11{width:24.663412px;}
._10{width:25.764042px;}
._13{width:27.096278px;}
._14{width:28.132043px;}
._7{width:29.847352px;}
._d{width:59.765937px;}
._f{width:168.292149px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.832000px;}
.fs2{font-size:45.429600px;}
.fs6{font-size:50.809198px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775599px;}
.fs3{font-size:65.872799px;}
.fs5{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y28{bottom:49.419000px;}
.y27{bottom:64.363896px;}
.y26{bottom:79.308151px;}
.yc5{bottom:95.722992px;}
.y53{bottom:98.410153px;}
.y98{bottom:103.188542px;}
.y25{bottom:110.452505px;}
.yc4{bottom:112.153023px;}
.y52{bottom:116.338349px;}
.y97{bottom:119.632023px;}
.y6f{bottom:124.735454px;}
.y24{bottom:128.393959px;}
.yc3{bottom:128.596504px;}
.y51{bottom:134.279804px;}
.y96{bottom:136.075504px;}
.y6e{bottom:142.663162px;}
.yc2{bottom:145.039650px;}
.y23{bottom:146.321805px;}
.y50{bottom:152.207119px;}
.y6d{bottom:160.591359px;}
.yc1{bottom:161.468522px;}
.y22{bottom:164.248727px;}
.y4f{bottom:170.135315px;}
.y95{bottom:170.445571px;}
.yc0{bottom:177.912003px;}
.y6c{bottom:178.532963px;}
.y21{bottom:182.190372px;}
.y4e{bottom:188.076961px;}
.y94{bottom:188.373768px;}
.ybf{bottom:194.355148px;}
.y6b{bottom:196.460647px;}
.y20{bottom:200.118569px;}
.y4d{bottom:206.005158px;}
.y93{bottom:206.301964px;}
.ybe{bottom:210.784019px;}
.y6a{bottom:214.388844px;}
.y1f{bottom:218.060215px;}
.y4c{bottom:223.933354px;}
.y92{bottom:224.243610px;}
.ybd{bottom:227.227500px;}
.y69{bottom:232.329769px;}
.y1e{bottom:235.988411px;}
.y4b{bottom:241.875000px;}
.y91{bottom:242.171806px;}
.ybc{bottom:243.670509px;}
.y68{bottom:250.257965px;}
.y1d{bottom:253.916608px;}
.y4a{bottom:259.802113px;}
.y90{bottom:260.100003px;}
.ybb{bottom:260.100150px;}
.y67{bottom:268.199611px;}
.y1c{bottom:271.858253px;}
.yba{bottom:276.542999px;}
.y49{bottom:277.743759px;}
.y8f{bottom:278.041649px;}
.y66{bottom:286.127808px;}
.y1b{bottom:289.786450px;}
.yb9{bottom:292.985458px;}
.y48{bottom:295.671955px;}
.y8e{bottom:295.968909px;}
.y65{bottom:304.056004px;}
.y1a{bottom:307.714361px;}
.yb8{bottom:309.415489px;}
.y47{bottom:313.600152px;}
.y8d{bottom:313.897105px;}
.y64{bottom:321.997650px;}
.y19{bottom:325.655762px;}
.yb7{bottom:325.857636px;}
.y46{bottom:331.541798px;}
.y8c{bottom:331.838751px;}
.y63{bottom:339.924786px;}
.yb6{bottom:342.301117px;}
.y18{bottom:343.583958px;}
.y45{bottom:349.469994px;}
.y8b{bottom:349.766948px;}
.y62{bottom:357.852982px;}
.yb5{bottom:358.731149px;}
.y17{bottom:361.512154px;}
.y44{bottom:367.397659px;}
.y8a{bottom:367.695144px;}
.yb4{bottom:375.173995px;}
.y61{bottom:375.794628px;}
.y43{bottom:385.339305px;}
.y89{bottom:385.635601px;}
.yb3{bottom:391.616004px;}
.y16{bottom:393.547669px;}
.y60{bottom:393.722824px;}
.y42{bottom:403.267502px;}
.y88{bottom:403.563797px;}
.yb2{bottom:408.046036px;}
.y5f{bottom:411.651021px;}
.y87{bottom:421.491994px;}
.yb1{bottom:424.489516px;}
.y5e{bottom:429.592666px;}
.y41{bottom:439.137131px;}
.y86{bottom:439.433640px;}
.yb0{bottom:440.931618px;}
.y5d{bottom:447.519904px;}
.y15{bottom:447.533982px;}
.yaf{bottom:457.361650px;}
.y85{bottom:457.361836px;}
.y14{bottom:463.977174px;}
.y5c{bottom:465.448101px;}
.yae{bottom:473.805131px;}
.y84{bottom:475.303482px;}
.y40{bottom:478.138153px;}
.y5b{bottom:483.389747px;}
.yad{bottom:490.233552px;}
.y13{bottom:495.885539px;}
.y3f{bottom:496.066350px;}
.y5a{bottom:501.317943px;}
.yac{bottom:506.677033px;}
.y83{bottom:511.159515px;}
.y12{bottom:512.329019px;}
.y3e{bottom:514.007995px;}
.y59{bottom:519.245483px;}
.yab{bottom:523.120514px;}
.y11{bottom:528.772500px;}
.y3d{bottom:531.935638px;}
.y58{bottom:537.187129px;}
.yaa{bottom:539.550018px;}
.y10{bottom:545.202532px;}
.y3c{bottom:549.863835px;}
.y57{bottom:555.115326px;}
.ya9{bottom:555.992509px;}
.y82{bottom:558.989803px;}
.yf{bottom:561.646013px;}
.y3b{bottom:567.805480px;}
.ya8{bottom:572.435990px;}
.y56{bottom:573.056972px;}
.y81{bottom:576.917244px;}
.ye{bottom:578.089494px;}
.y3a{bottom:585.733318px;}
.ya7{bottom:588.864549px;}
.y55{bottom:590.985168px;}
.yd{bottom:594.519525px;}
.y80{bottom:594.845440px;}
.y39{bottom:603.661366px;}
.ya6{bottom:605.308030px;}
.yc{bottom:610.963006px;}
.y7f{bottom:612.787086px;}
.y38{bottom:621.602607px;}
.ya5{bottom:621.751510px;}
.yb{bottom:627.406487px;}
.y7e{bottom:630.715283px;}
.ya4{bottom:638.180208px;}
.y54{bottom:638.734497px;}
.y37{bottom:639.530803px;}
.ya{bottom:643.836518px;}
.y7d{bottom:648.643479px;}
.ya3{bottom:654.623689px;}
.y36{bottom:657.459000px;}
.y9{bottom:660.279999px;}
.y7c{bottom:666.583758px;}
.ya2{bottom:671.067169px;}
.y35{bottom:675.400433px;}
.y8{bottom:676.723480px;}
.y7b{bottom:684.511954px;}
.ya1{bottom:687.496627px;}
.y34{bottom:693.328629px;}
.y7a{bottom:702.440151px;}
.ya0{bottom:703.939027px;}
.y33{bottom:711.255582px;}
.y79{bottom:720.381796px;}
.y9f{bottom:720.382507px;}
.y7{bottom:727.388994px;}
.y32{bottom:729.197227px;}
.y9e{bottom:736.811539px;}
.y78{bottom:738.309993px;}
.y6{bottom:745.329964px;}
.y31{bottom:747.125424px;}
.y9d{bottom:753.255020px;}
.y77{bottom:756.238189px;}
.y5{bottom:761.759995px;}
.y30{bottom:765.053620px;}
.ycc{bottom:768.199677px;}
.y76{bottom:774.179835px;}
.y2f{bottom:782.995266px;}
.ycb{bottom:784.641930px;}
.y9c{bottom:787.625976px;}
.y4{bottom:791.811036px;}
.y75{bottom:792.108031px;}
.y2e{bottom:800.923463px;}
.yca{bottom:801.071961px;}
.y74{bottom:810.035832px;}
.yc9{bottom:817.515015px;}
.y73{bottom:827.976951px;}
.y2d{bottom:827.977322px;}
.yc8{bottom:833.957451px;}
.y72{bottom:845.905147px;}
.y2c{bottom:845.905269px;}
.y3{bottom:845.931945px;}
.y9b{bottom:850.386193px;}
.yc7{bottom:850.387482px;}
.y71{bottom:863.833344px;}
.y2b{bottom:863.833466px;}
.y9a{bottom:866.829674px;}
.yc6{bottom:866.830536px;}
.y2{bottom:872.824614px;}
.y70{bottom:881.774990px;}
.y99{bottom:883.273155px;}
.y2a{bottom:899.703186px;}
.y1{bottom:899.730195px;}
.y29{bottom:934.519684px;}
.he{height:34.956728px;}
.h4{height:37.013299px;}
.h1e{height:37.015193px;}
.h1f{height:37.017081px;}
.h6{height:37.228493px;}
.h8{height:41.125612px;}
.h11{height:41.126204px;}
.h19{height:41.126373px;}
.hd{height:41.126379px;}
.h1d{height:41.126424px;}
.h9{height:41.126595px;}
.hf{height:41.126607px;}
.ha{height:41.126751px;}
.hc{height:41.127015px;}
.h12{height:41.127017px;}
.h14{height:41.127018px;}
.h10{height:41.127232px;}
.h1a{height:41.127563px;}
.h18{height:41.127659px;}
.h1b{height:41.127718px;}
.h16{height:41.127904px;}
.h15{height:41.128236px;}
.h17{height:41.128494px;}
.h1c{height:41.128633px;}
.h13{height:41.129136px;}
.hb{height:41.130711px;}
.h5{height:43.395975px;}
.h7{height:49.637575px;}
.h2{height:59.565422px;}
.h3{height:78.009197px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x9{left:59.103000px;}
.x5{left:63.611999px;}
.x10{left:76.964069px;}
.xb{left:80.365499px;}
.xf{left:81.512999px;}
.xc{left:97.996502px;}
.x8{left:101.627998px;}
.xd{left:102.775497px;}
.x4{left:108.540001px;}
.x1{left:112.049995px;}
.x2{left:127.169455px;}
.x7{left:140.939998px;}
.x6{left:146.083599px;}
.xe{left:204.417000px;}
.x3{left:279.220525px;}
.xa{left:297.486008px;}
@media print{
.v4{vertical-align:-19.296549pt;}
.v2{vertical-align:-2.594727pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594727pt;}
.v1{vertical-align:19.296549pt;}
.lsb{letter-spacing:-0.022582pt;}
.ls7{letter-spacing:-0.021254pt;}
.ls3{letter-spacing:-0.015940pt;}
.ls6{letter-spacing:-0.010627pt;}
.ls11{letter-spacing:-0.009564pt;}
.lsa{letter-spacing:-0.009033pt;}
.ls8{letter-spacing:-0.005313pt;}
.ls4{letter-spacing:-0.004782pt;}
.ls9{letter-spacing:-0.004516pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004782pt;}
.ls10{letter-spacing:0.005313pt;}
.lsd{letter-spacing:0.006376pt;}
.lsf{letter-spacing:0.015940pt;}
.lsc{letter-spacing:0.018416pt;}
.ls1{letter-spacing:0.474651pt;}
.ls0{letter-spacing:2.680831pt;}
.ls12{letter-spacing:10.028022pt;}
.lse{letter-spacing:10.334537pt;}
.wsa{word-spacing:-37.204582pt;}
.ws1{word-spacing:-0.058554pt;}
.ws7{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.047821pt;}
.ws9{word-spacing:-0.043039pt;}
.ws0{word-spacing:-0.040382pt;}
.ws6{word-spacing:-0.037194pt;}
.ws3{word-spacing:-0.036131pt;}
.ws2{word-spacing:-0.031880pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:11.897815pt;}
.ws8{word-spacing:11.907379pt;}
._12{margin-left:-10.325326pt;}
._19{margin-left:-9.335326pt;}
._4{margin-left:-5.924206pt;}
._6{margin-left:-4.835473pt;}
._e{margin-left:-3.801935pt;}
._1{margin-left:-2.777425pt;}
._2{margin-left:-1.377235pt;}
._1a{width:5.934741pt;}
._a{width:7.201813pt;}
._18{width:8.132621pt;}
._9{width:9.172030pt;}
._8{width:10.267126pt;}
._5{width:12.003021pt;}
._3{width:13.320660pt;}
._b{width:14.300634pt;}
._c{width:15.477378pt;}
._15{width:16.556513pt;}
._16{width:18.144400pt;}
._0{width:19.143569pt;}
._17{width:20.196183pt;}
._11{width:21.923033pt;}
._10{width:22.901370pt;}
._13{width:24.085581pt;}
._14{width:25.006260pt;}
._7{width:26.530979pt;}
._d{width:53.125277pt;}
._f{width:149.593021pt;}
.fs7{font-size:39.850667pt;}
.fs2{font-size:40.381867pt;}
.fs6{font-size:45.163732pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133865pt;}
.fs3{font-size:58.553599pt;}
.fs5{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:43.928000pt;}
.y27{bottom:57.212352pt;}
.y26{bottom:70.496134pt;}
.yc5{bottom:85.087104pt;}
.y53{bottom:87.475691pt;}
.y98{bottom:91.723149pt;}
.y25{bottom:98.180005pt;}
.yc4{bottom:99.691576pt;}
.y52{bottom:103.411866pt;}
.y97{bottom:106.339576pt;}
.y6f{bottom:110.875959pt;}
.y24{bottom:114.127964pt;}
.yc3{bottom:114.308004pt;}
.y51{bottom:119.359825pt;}
.y96{bottom:120.956004pt;}
.y6e{bottom:126.811700pt;}
.yc2{bottom:128.924133pt;}
.y23{bottom:130.063827pt;}
.y50{bottom:135.295217pt;}
.y6d{bottom:142.747874pt;}
.yc1{bottom:143.527575pt;}
.y22{bottom:145.998868pt;}
.y4f{bottom:151.231391pt;}
.y95{bottom:151.507174pt;}
.yc0{bottom:158.144003pt;}
.y6c{bottom:158.695967pt;}
.y21{bottom:161.946998pt;}
.y4e{bottom:167.179521pt;}
.y94{bottom:167.443349pt;}
.ybf{bottom:172.760132pt;}
.y6b{bottom:174.631686pt;}
.y20{bottom:177.883172pt;}
.y4d{bottom:183.115696pt;}
.y93{bottom:183.379523pt;}
.ybe{bottom:187.363572pt;}
.y6a{bottom:190.567861pt;}
.y1f{bottom:193.831302pt;}
.y4c{bottom:199.051870pt;}
.y92{bottom:199.327653pt;}
.ybd{bottom:201.980000pt;}
.y69{bottom:206.515350pt;}
.y1e{bottom:209.767477pt;}
.y4b{bottom:215.000000pt;}
.y91{bottom:215.263828pt;}
.ybc{bottom:216.596008pt;}
.y68{bottom:222.451525pt;}
.y1d{bottom:225.703651pt;}
.y4a{bottom:230.935212pt;}
.y90{bottom:231.200002pt;}
.ybb{bottom:231.200133pt;}
.y67{bottom:238.399655pt;}
.y1c{bottom:241.651781pt;}
.yba{bottom:245.815999pt;}
.y49{bottom:246.883341pt;}
.y8f{bottom:247.148132pt;}
.y66{bottom:254.335829pt;}
.y1b{bottom:257.587955pt;}
.yb9{bottom:260.431518pt;}
.y48{bottom:262.819516pt;}
.y8e{bottom:263.083475pt;}
.y65{bottom:270.272004pt;}
.y1a{bottom:273.523877pt;}
.yb8{bottom:275.035991pt;}
.y47{bottom:278.755690pt;}
.y8d{bottom:279.019649pt;}
.y64{bottom:286.220133pt;}
.y19{bottom:289.471788pt;}
.yb7{bottom:289.651232pt;}
.y46{bottom:294.703820pt;}
.y8c{bottom:294.967779pt;}
.y63{bottom:302.155365pt;}
.yb6{bottom:304.267660pt;}
.y18{bottom:305.407963pt;}
.y45{bottom:310.639995pt;}
.y8b{bottom:310.903953pt;}
.y62{bottom:318.091539pt;}
.yb5{bottom:318.872132pt;}
.y17{bottom:321.344137pt;}
.y44{bottom:326.575697pt;}
.y8a{bottom:326.840128pt;}
.yb4{bottom:333.487996pt;}
.y61{bottom:334.039669pt;}
.y43{bottom:342.523827pt;}
.y89{bottom:342.787201pt;}
.yb3{bottom:348.103115pt;}
.y16{bottom:349.820150pt;}
.y60{bottom:349.975844pt;}
.y42{bottom:358.460001pt;}
.y88{bottom:358.723375pt;}
.yb2{bottom:362.707587pt;}
.y5f{bottom:365.912018pt;}
.y87{bottom:374.659550pt;}
.yb1{bottom:377.324015pt;}
.y5e{bottom:381.860148pt;}
.y41{bottom:390.344116pt;}
.y86{bottom:390.607680pt;}
.yb0{bottom:391.939216pt;}
.y5d{bottom:397.795471pt;}
.y15{bottom:397.807984pt;}
.yaf{bottom:406.543688pt;}
.y85{bottom:406.543854pt;}
.y14{bottom:412.424154pt;}
.y5c{bottom:413.731645pt;}
.yae{bottom:421.160116pt;}
.y84{bottom:422.491984pt;}
.y40{bottom:425.011692pt;}
.y5b{bottom:429.679775pt;}
.yad{bottom:435.763157pt;}
.y13{bottom:440.787145pt;}
.y3f{bottom:440.947866pt;}
.y5a{bottom:445.615949pt;}
.yac{bottom:450.379584pt;}
.y83{bottom:454.364014pt;}
.y12{bottom:455.403573pt;}
.y3e{bottom:456.895996pt;}
.y59{bottom:461.551541pt;}
.yab{bottom:464.996012pt;}
.y11{bottom:470.020000pt;}
.y3d{bottom:472.831678pt;}
.y58{bottom:477.499671pt;}
.yaa{bottom:479.600016pt;}
.y10{bottom:484.624473pt;}
.y3c{bottom:488.767853pt;}
.y57{bottom:493.435845pt;}
.ya9{bottom:494.215563pt;}
.y82{bottom:496.879825pt;}
.yf{bottom:499.240900pt;}
.y3b{bottom:504.715983pt;}
.ya8{bottom:508.831991pt;}
.y56{bottom:509.383975pt;}
.y81{bottom:512.815328pt;}
.ye{bottom:513.857328pt;}
.y3a{bottom:520.651838pt;}
.ya7{bottom:523.435154pt;}
.y55{bottom:525.320149pt;}
.yd{bottom:528.461800pt;}
.y80{bottom:528.751503pt;}
.y39{bottom:536.587881pt;}
.ya6{bottom:538.051582pt;}
.yc{bottom:543.078228pt;}
.y7f{bottom:544.699632pt;}
.y38{bottom:552.535651pt;}
.ya5{bottom:552.668009pt;}
.yb{bottom:557.694655pt;}
.y7e{bottom:560.635807pt;}
.ya4{bottom:567.271296pt;}
.y54{bottom:567.763997pt;}
.y37{bottom:568.471825pt;}
.ya{bottom:572.299127pt;}
.y7d{bottom:576.571981pt;}
.ya3{bottom:581.887723pt;}
.y36{bottom:584.408000pt;}
.y9{bottom:586.915555pt;}
.y7c{bottom:592.518896pt;}
.ya2{bottom:596.504151pt;}
.y35{bottom:600.355940pt;}
.y8{bottom:601.531982pt;}
.y7b{bottom:608.455070pt;}
.ya1{bottom:611.108113pt;}
.y34{bottom:616.292115pt;}
.y7a{bottom:624.391245pt;}
.ya0{bottom:625.723579pt;}
.y33{bottom:632.227184pt;}
.y79{bottom:640.339375pt;}
.y9f{bottom:640.340007pt;}
.y7{bottom:646.567994pt;}
.y32{bottom:648.175313pt;}
.y9e{bottom:654.943590pt;}
.y78{bottom:656.275549pt;}
.y6{bottom:662.515523pt;}
.y31{bottom:664.111488pt;}
.y9d{bottom:669.560017pt;}
.y77{bottom:672.211724pt;}
.y5{bottom:677.119996pt;}
.y30{bottom:680.047662pt;}
.ycc{bottom:682.844157pt;}
.y76{bottom:688.159853pt;}
.y2f{bottom:695.995792pt;}
.ycb{bottom:697.459493pt;}
.y9c{bottom:700.111979pt;}
.y4{bottom:703.832032pt;}
.y75{bottom:704.096028pt;}
.y2e{bottom:711.931967pt;}
.yca{bottom:712.063965pt;}
.y74{bottom:720.031850pt;}
.yc9{bottom:726.680013pt;}
.y73{bottom:735.979512pt;}
.y2d{bottom:735.979841pt;}
.yc8{bottom:741.295512pt;}
.y72{bottom:751.915687pt;}
.y2c{bottom:751.915795pt;}
.y3{bottom:751.939507pt;}
.y9b{bottom:755.898838pt;}
.yc7{bottom:755.899984pt;}
.y71{bottom:767.851861pt;}
.y2b{bottom:767.851969pt;}
.y9a{bottom:770.515265pt;}
.yc6{bottom:770.516032pt;}
.y2{bottom:775.844101pt;}
.y70{bottom:783.799991pt;}
.y99{bottom:785.131693pt;}
.y2a{bottom:799.736165pt;}
.y1{bottom:799.760173pt;}
.y29{bottom:830.684164pt;}
.he{height:31.072648pt;}
.h4{height:32.900710pt;}
.h1e{height:32.902394pt;}
.h1f{height:32.904072pt;}
.h6{height:33.091994pt;}
.h8{height:36.556099pt;}
.h11{height:36.556626pt;}
.h19{height:36.556776pt;}
.hd{height:36.556782pt;}
.h1d{height:36.556822pt;}
.h9{height:36.556973pt;}
.hf{height:36.556984pt;}
.ha{height:36.557112pt;}
.hc{height:36.557347pt;}
.h12{height:36.557348pt;}
.h14{height:36.557349pt;}
.h10{height:36.557540pt;}
.h1a{height:36.557834pt;}
.h18{height:36.557919pt;}
.h1b{height:36.557972pt;}
.h16{height:36.558137pt;}
.h15{height:36.558432pt;}
.h17{height:36.558661pt;}
.h1c{height:36.558785pt;}
.h13{height:36.559232pt;}
.hb{height:36.560632pt;}
.h5{height:38.574200pt;}
.h7{height:44.122289pt;}
.h2{height:52.947042pt;}
.h3{height:69.341508pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x9{left:52.536000pt;}
.x5{left:56.544000pt;}
.x10{left:68.412506pt;}
.xb{left:71.436000pt;}
.xf{left:72.455999pt;}
.xc{left:87.108002pt;}
.x8{left:90.335998pt;}
.xd{left:91.355998pt;}
.x4{left:96.480001pt;}
.x1{left:99.599996pt;}
.x2{left:113.039516pt;}
.x7{left:125.279998pt;}
.x6{left:129.852088pt;}
.xe{left:181.704000pt;}
.x3{left:248.196023pt;}
.xa{left:264.432007pt;}
}




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