
    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_c3d0901e1b5ebded553ed1d9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_be2559ea70e911bdd9fa8dcf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_5b63ab6b4b33edd96ba6936c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_f0a1a883f444eb8b88821ef5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_df5c7d4c5a15bff8b529f854.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_ac6157e84cb8d867300a6184.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_154df5fdfd40768a7d68d486.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.791000px;}
.v1{vertical-align:83.400000px;}
.ls31{letter-spacing:-7.245000px;}
.ls12{letter-spacing:-6.900000px;}
.ls30{letter-spacing:-6.693000px;}
.ls21{letter-spacing:-6.000000px;}
.ls29{letter-spacing:-3.036000px;}
.ls2b{letter-spacing:-2.691000px;}
.ls2d{letter-spacing:-2.208000px;}
.ls2c{letter-spacing:-2.070000px;}
.ls17{letter-spacing:-1.035000px;}
.ls23{letter-spacing:-0.897000px;}
.ls16{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls2f{letter-spacing:-0.621000px;}
.ls24{letter-spacing:-0.483000px;}
.ls15{letter-spacing:-0.414000px;}
.ls7{letter-spacing:-0.345000px;}
.ls13{letter-spacing:-0.276000px;}
.ls14{letter-spacing:-0.207000px;}
.ls22{letter-spacing:-0.060000px;}
.ls6{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.003158px;}
.ls1{letter-spacing:0.069000px;}
.lse{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.138000px;}
.ls2{letter-spacing:0.207000px;}
.ls1b{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.276000px;}
.lsd{letter-spacing:0.345000px;}
.ls20{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.414000px;}
.ls1e{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.483000px;}
.ls4{letter-spacing:0.552000px;}
.ls25{letter-spacing:0.621000px;}
.ls2a{letter-spacing:0.690000px;}
.ls3{letter-spacing:0.759000px;}
.lsa{letter-spacing:0.828000px;}
.lsf{letter-spacing:2.730000px;}
.ls18{letter-spacing:3.795000px;}
.ls0{letter-spacing:3.900000px;}
.ls1c{letter-spacing:4.200000px;}
.ls19{letter-spacing:4.260000px;}
.ls28{letter-spacing:4.416000px;}
.ls11{letter-spacing:4.692000px;}
.ls32{letter-spacing:4.761000px;}
.ls34{letter-spacing:5.400000px;}
.ls8{letter-spacing:6.240000px;}
.ls1a{letter-spacing:6.900000px;}
.ls9{letter-spacing:7.731000px;}
.ls1f{letter-spacing:8.880000px;}
.ls1d{letter-spacing:8.940000px;}
.ls27{letter-spacing:10.212000px;}
.ls10{letter-spacing:10.281000px;}
.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;}
}
.ws3{word-spacing:-57.062164px;}
.ws2{word-spacing:-30.348000px;}
.ws0{word-spacing:-21.075000px;}
.ws12{word-spacing:-19.389000px;}
.ws8{word-spacing:-17.802000px;}
.ws13{word-spacing:-17.664000px;}
.ws6{word-spacing:-17.526000px;}
.ws15{word-spacing:-17.457000px;}
.wsc{word-spacing:-17.388000px;}
.wsb{word-spacing:-17.319000px;}
.wsd{word-spacing:-17.250000px;}
.ws17{word-spacing:-17.181000px;}
.ws14{word-spacing:-17.112000px;}
.wse{word-spacing:-17.100000px;}
.ws7{word-spacing:-17.043000px;}
.ws1{word-spacing:-16.860000px;}
.ws9{word-spacing:-16.836000px;}
.ws11{word-spacing:-16.698000px;}
.ws10{word-spacing:-16.629000px;}
.wsf{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.422000px;}
.wsa{word-spacing:-16.008000px;}
.ws5{word-spacing:-11.633400px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1615.752000px;}
._10{margin-left:-17.826000px;}
._e{margin-left:-16.374000px;}
._12{margin-left:-14.820000px;}
._8{margin-left:-10.044000px;}
._9{margin-left:-8.100000px;}
._14{margin-left:-7.089000px;}
._b{margin-left:-6.060000px;}
._3{margin-left:-4.725000px;}
._a{margin-left:-3.072000px;}
._2{margin-left:-1.800000px;}
._c{width:1.380000px;}
._7{width:2.505000px;}
._1{width:4.080000px;}
._4{width:6.000000px;}
._6{width:7.500000px;}
._5{width:9.360000px;}
._d{width:10.452000px;}
._15{width:12.345000px;}
._13{width:13.386000px;}
._f{width:16.593000px;}
._11{width:18.850642px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.200000px;}
.fsa{font-size:41.400000px;}
.fs9{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:203.068200px;}
.y0{bottom:0.000000px;}
.y72{bottom:56.679300px;}
.y1{bottom:56.691000px;}
.y4a{bottom:106.300500px;}
.y9d{bottom:106.686750px;}
.y9b{bottom:106.824750px;}
.y71{bottom:107.869500px;}
.ybf{bottom:111.000000px;}
.y23{bottom:112.655250px;}
.y9a{bottom:127.231500px;}
.y49{bottom:127.500000px;}
.y70{bottom:128.724750px;}
.y22{bottom:133.510500px;}
.y99{bottom:147.638250px;}
.y6f{bottom:149.580000px;}
.y21{bottom:154.365750px;}
.y98{bottom:168.045000px;}
.y6e{bottom:170.435250px;}
.y48{bottom:172.771500px;}
.y20{bottom:175.221000px;}
.ybe{bottom:182.250000px;}
.y97{bottom:188.451750px;}
.y6d{bottom:191.290500px;}
.y47{bottom:193.626750px;}
.y1f{bottom:196.076250px;}
.ybd{bottom:202.200000px;}
.y96{bottom:208.858500px;}
.y46{bottom:214.482000px;}
.y1e{bottom:216.931500px;}
.y6c{bottom:222.769500px;}
.y95{bottom:229.265250px;}
.y45{bottom:235.337250px;}
.ybc{bottom:236.850000px;}
.y1d{bottom:237.786750px;}
.y6b{bottom:242.419500px;}
.y94{bottom:249.672000px;}
.y44{bottom:256.192500px;}
.y1c{bottom:258.642000px;}
.y6a{bottom:262.069500px;}
.y93{bottom:270.078750px;}
.y43{bottom:277.047750px;}
.y1b{bottom:279.497250px;}
.y69{bottom:281.719500px;}
.ybb{bottom:286.278750px;}
.y92{bottom:290.485500px;}
.y42{bottom:297.903000px;}
.y1a{bottom:300.352500px;}
.y68{bottom:301.369500px;}
.yba{bottom:306.823500px;}
.y91{bottom:310.892250px;}
.y41{bottom:318.758250px;}
.y67{bottom:321.019500px;}
.y19{bottom:321.207750px;}
.yb9{bottom:327.368250px;}
.y90{bottom:331.299000px;}
.y40{bottom:339.613500px;}
.y66{bottom:340.669500px;}
.y18{bottom:342.063000px;}
.yb8{bottom:347.913000px;}
.y8f{bottom:351.705750px;}
.y65{bottom:360.319500px;}
.y3f{bottom:360.468750px;}
.y17{bottom:362.918250px;}
.yb7{bottom:368.457750px;}
.y8e{bottom:372.112500px;}
.y64{bottom:379.969500px;}
.y3e{bottom:381.324000px;}
.y16{bottom:383.773500px;}
.yb6{bottom:389.002500px;}
.y8d{bottom:392.519250px;}
.y63{bottom:399.619500px;}
.y3d{bottom:402.179250px;}
.y15{bottom:404.628750px;}
.yb5{bottom:409.547250px;}
.y8c{bottom:412.926000px;}
.y62{bottom:419.269500px;}
.y3c{bottom:423.034500px;}
.y14{bottom:425.484000px;}
.yb4{bottom:430.092000px;}
.y8b{bottom:433.332750px;}
.y61{bottom:438.919500px;}
.y3b{bottom:443.889750px;}
.y13{bottom:446.339250px;}
.yb3{bottom:450.636750px;}
.y8a{bottom:453.739500px;}
.y60{bottom:458.569500px;}
.y3a{bottom:464.745000px;}
.y12{bottom:467.194500px;}
.yb2{bottom:471.181500px;}
.y89{bottom:474.146250px;}
.y5f{bottom:478.219500px;}
.y39{bottom:485.600250px;}
.y11{bottom:488.049750px;}
.yb1{bottom:491.726250px;}
.y88{bottom:494.553000px;}
.y5e{bottom:497.869500px;}
.y38{bottom:506.455500px;}
.y10{bottom:508.905000px;}
.yb0{bottom:512.271000px;}
.y87{bottom:514.959750px;}
.y5d{bottom:517.519500px;}
.y37{bottom:527.310750px;}
.yf{bottom:529.760250px;}
.yaf{bottom:532.815750px;}
.y86{bottom:535.366500px;}
.y5c{bottom:537.169500px;}
.y36{bottom:548.166000px;}
.ye{bottom:550.615500px;}
.yae{bottom:553.360500px;}
.y85{bottom:555.773250px;}
.y5b{bottom:556.819500px;}
.y35{bottom:569.021250px;}
.yd{bottom:571.470750px;}
.yad{bottom:573.905250px;}
.y84{bottom:576.180000px;}
.y5a{bottom:576.469500px;}
.y34{bottom:589.876500px;}
.yc{bottom:592.326000px;}
.yac{bottom:594.528750px;}
.y59{bottom:596.119500px;}
.y83{bottom:596.586750px;}
.y33{bottom:610.731750px;}
.yb{bottom:613.181250px;}
.ya{bottom:613.186500px;}
.yab{bottom:615.073500px;}
.y58{bottom:615.769500px;}
.y82{bottom:616.993500px;}
.y32{bottom:631.587000px;}
.y57{bottom:635.419500px;}
.yaa{bottom:635.618250px;}
.y81{bottom:637.400250px;}
.y31{bottom:652.442250px;}
.y56{bottom:655.069500px;}
.ya9{bottom:656.163000px;}
.y80{bottom:657.807000px;}
.y30{bottom:673.297500px;}
.y55{bottom:674.719500px;}
.y9{bottom:675.736500px;}
.ya8{bottom:676.707750px;}
.y7f{bottom:678.213750px;}
.y2f{bottom:694.152750px;}
.y54{bottom:694.369500px;}
.y8{bottom:695.236500px;}
.ya7{bottom:697.252500px;}
.y7e{bottom:698.620500px;}
.y53{bottom:714.019500px;}
.y2e{bottom:715.008000px;}
.ya6{bottom:717.797250px;}
.y7d{bottom:719.027250px;}
.y7{bottom:725.367000px;}
.y52{bottom:733.669500px;}
.y2d{bottom:735.863250px;}
.ya5{bottom:738.342000px;}
.y7c{bottom:739.434000px;}
.y51{bottom:753.319500px;}
.y2c{bottom:756.718500px;}
.y6{bottom:757.767000px;}
.ya4{bottom:758.886750px;}
.y7b{bottom:759.840750px;}
.y50{bottom:772.969500px;}
.y2b{bottom:777.573750px;}
.ya3{bottom:779.431500px;}
.y7a{bottom:780.247500px;}
.y5{bottom:790.167000px;}
.y4f{bottom:792.619500px;}
.y2a{bottom:798.429000px;}
.ya2{bottom:799.976250px;}
.y79{bottom:800.654250px;}
.y4e{bottom:812.269500px;}
.y29{bottom:819.284250px;}
.ya1{bottom:820.521000px;}
.y78{bottom:821.061000px;}
.y4d{bottom:831.919500px;}
.y28{bottom:840.139500px;}
.ya0{bottom:841.065750px;}
.y77{bottom:841.467750px;}
.y4c{bottom:851.569500px;}
.y4{bottom:857.067000px;}
.y27{bottom:860.994750px;}
.y9f{bottom:861.610500px;}
.y76{bottom:861.874500px;}
.y3{bottom:875.067000px;}
.y26{bottom:881.844750px;}
.y9e{bottom:882.155250px;}
.y75{bottom:882.281250px;}
.y74{bottom:902.688000px;}
.y25{bottom:902.700000px;}
.y2{bottom:903.697500px;}
.y73{bottom:948.394500px;}
.y24{bottom:948.406500px;}
.y9c{bottom:966.394500px;}
.y4b{bottom:966.406500px;}
.hc{height:28.229062px;}
.h11{height:29.039941px;}
.ha{height:40.757812px;}
.h10{height:45.852539px;}
.hd{height:47.039062px;}
.h4{height:50.947266px;}
.he{height:52.265625px;}
.h3{height:53.494629px;}
.h8{height:58.589355px;}
.hb{height:58.610355px;}
.hf{height:58.740234px;}
.h9{height:60.105469px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h7{height:172.429492px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x6{left:89.100750px;}
.x7{left:99.921450px;}
.x5{left:106.310587px;}
.x4{left:121.305150px;}
.x8{left:136.063050px;}
.x9{left:157.338300px;}
.x2{left:233.857500px;}
.x1{left:609.670500px;}
@media print{
.v3{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.258667pt;}
.v1{vertical-align:74.133333pt;}
.ls31{letter-spacing:-6.440000pt;}
.ls12{letter-spacing:-6.133333pt;}
.ls30{letter-spacing:-5.949333pt;}
.ls21{letter-spacing:-5.333333pt;}
.ls29{letter-spacing:-2.698667pt;}
.ls2b{letter-spacing:-2.392000pt;}
.ls2d{letter-spacing:-1.962667pt;}
.ls2c{letter-spacing:-1.840000pt;}
.ls17{letter-spacing:-0.920000pt;}
.ls23{letter-spacing:-0.797333pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls2f{letter-spacing:-0.552000pt;}
.ls24{letter-spacing:-0.429333pt;}
.ls15{letter-spacing:-0.368000pt;}
.ls7{letter-spacing:-0.306667pt;}
.ls13{letter-spacing:-0.245333pt;}
.ls14{letter-spacing:-0.184000pt;}
.ls22{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.002807pt;}
.ls1{letter-spacing:0.061333pt;}
.lse{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.122667pt;}
.ls2{letter-spacing:0.184000pt;}
.ls1b{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.245333pt;}
.lsd{letter-spacing:0.306667pt;}
.ls20{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.368000pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.429333pt;}
.ls4{letter-spacing:0.490667pt;}
.ls25{letter-spacing:0.552000pt;}
.ls2a{letter-spacing:0.613333pt;}
.ls3{letter-spacing:0.674667pt;}
.lsa{letter-spacing:0.736000pt;}
.lsf{letter-spacing:2.426667pt;}
.ls18{letter-spacing:3.373333pt;}
.ls0{letter-spacing:3.466667pt;}
.ls1c{letter-spacing:3.733333pt;}
.ls19{letter-spacing:3.786667pt;}
.ls28{letter-spacing:3.925333pt;}
.ls11{letter-spacing:4.170667pt;}
.ls32{letter-spacing:4.232000pt;}
.ls34{letter-spacing:4.800000pt;}
.ls8{letter-spacing:5.546667pt;}
.ls1a{letter-spacing:6.133333pt;}
.ls9{letter-spacing:6.872000pt;}
.ls1f{letter-spacing:7.893333pt;}
.ls1d{letter-spacing:7.946667pt;}
.ls27{letter-spacing:9.077333pt;}
.ls10{letter-spacing:9.138667pt;}
.ws3{word-spacing:-50.721924pt;}
.ws2{word-spacing:-26.976000pt;}
.ws0{word-spacing:-18.733333pt;}
.ws12{word-spacing:-17.234667pt;}
.ws8{word-spacing:-15.824000pt;}
.ws13{word-spacing:-15.701333pt;}
.ws6{word-spacing:-15.578667pt;}
.ws15{word-spacing:-15.517333pt;}
.wsc{word-spacing:-15.456000pt;}
.wsb{word-spacing:-15.394667pt;}
.wsd{word-spacing:-15.333333pt;}
.ws17{word-spacing:-15.272000pt;}
.ws14{word-spacing:-15.210667pt;}
.wse{word-spacing:-15.200000pt;}
.ws7{word-spacing:-15.149333pt;}
.ws1{word-spacing:-14.986667pt;}
.ws9{word-spacing:-14.965333pt;}
.ws11{word-spacing:-14.842667pt;}
.ws10{word-spacing:-14.781333pt;}
.wsf{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.597333pt;}
.wsa{word-spacing:-14.229333pt;}
.ws5{word-spacing:-10.340800pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1436.224000pt;}
._10{margin-left:-15.845333pt;}
._e{margin-left:-14.554667pt;}
._12{margin-left:-13.173333pt;}
._8{margin-left:-8.928000pt;}
._9{margin-left:-7.200000pt;}
._14{margin-left:-6.301333pt;}
._b{margin-left:-5.386667pt;}
._3{margin-left:-4.200000pt;}
._a{margin-left:-2.730667pt;}
._2{margin-left:-1.600000pt;}
._c{width:1.226667pt;}
._7{width:2.226667pt;}
._1{width:3.626667pt;}
._4{width:5.333333pt;}
._6{width:6.666667pt;}
._5{width:8.320000pt;}
._d{width:9.290667pt;}
._15{width:10.973333pt;}
._13{width:11.898667pt;}
._f{width:14.749333pt;}
._11{width:16.756126pt;}
.fsb{font-size:30.400000pt;}
.fsa{font-size:36.800000pt;}
.fs9{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:180.505067pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:50.381600pt;}
.y1{bottom:50.392000pt;}
.y4a{bottom:94.489333pt;}
.y9d{bottom:94.832667pt;}
.y9b{bottom:94.955333pt;}
.y71{bottom:95.884000pt;}
.ybf{bottom:98.666667pt;}
.y23{bottom:100.138000pt;}
.y9a{bottom:113.094667pt;}
.y49{bottom:113.333333pt;}
.y70{bottom:114.422000pt;}
.y22{bottom:118.676000pt;}
.y99{bottom:131.234000pt;}
.y6f{bottom:132.960000pt;}
.y21{bottom:137.214000pt;}
.y98{bottom:149.373333pt;}
.y6e{bottom:151.498000pt;}
.y48{bottom:153.574667pt;}
.y20{bottom:155.752000pt;}
.ybe{bottom:162.000000pt;}
.y97{bottom:167.512667pt;}
.y6d{bottom:170.036000pt;}
.y47{bottom:172.112667pt;}
.y1f{bottom:174.290000pt;}
.ybd{bottom:179.733333pt;}
.y96{bottom:185.652000pt;}
.y46{bottom:190.650667pt;}
.y1e{bottom:192.828000pt;}
.y6c{bottom:198.017333pt;}
.y95{bottom:203.791333pt;}
.y45{bottom:209.188667pt;}
.ybc{bottom:210.533333pt;}
.y1d{bottom:211.366000pt;}
.y6b{bottom:215.484000pt;}
.y94{bottom:221.930667pt;}
.y44{bottom:227.726667pt;}
.y1c{bottom:229.904000pt;}
.y6a{bottom:232.950667pt;}
.y93{bottom:240.070000pt;}
.y43{bottom:246.264667pt;}
.y1b{bottom:248.442000pt;}
.y69{bottom:250.417333pt;}
.ybb{bottom:254.470000pt;}
.y92{bottom:258.209333pt;}
.y42{bottom:264.802667pt;}
.y1a{bottom:266.980000pt;}
.y68{bottom:267.884000pt;}
.yba{bottom:272.732000pt;}
.y91{bottom:276.348667pt;}
.y41{bottom:283.340667pt;}
.y67{bottom:285.350667pt;}
.y19{bottom:285.518000pt;}
.yb9{bottom:290.994000pt;}
.y90{bottom:294.488000pt;}
.y40{bottom:301.878667pt;}
.y66{bottom:302.817333pt;}
.y18{bottom:304.056000pt;}
.yb8{bottom:309.256000pt;}
.y8f{bottom:312.627333pt;}
.y65{bottom:320.284000pt;}
.y3f{bottom:320.416667pt;}
.y17{bottom:322.594000pt;}
.yb7{bottom:327.518000pt;}
.y8e{bottom:330.766667pt;}
.y64{bottom:337.750667pt;}
.y3e{bottom:338.954667pt;}
.y16{bottom:341.132000pt;}
.yb6{bottom:345.780000pt;}
.y8d{bottom:348.906000pt;}
.y63{bottom:355.217333pt;}
.y3d{bottom:357.492667pt;}
.y15{bottom:359.670000pt;}
.yb5{bottom:364.042000pt;}
.y8c{bottom:367.045333pt;}
.y62{bottom:372.684000pt;}
.y3c{bottom:376.030667pt;}
.y14{bottom:378.208000pt;}
.yb4{bottom:382.304000pt;}
.y8b{bottom:385.184667pt;}
.y61{bottom:390.150667pt;}
.y3b{bottom:394.568667pt;}
.y13{bottom:396.746000pt;}
.yb3{bottom:400.566000pt;}
.y8a{bottom:403.324000pt;}
.y60{bottom:407.617333pt;}
.y3a{bottom:413.106667pt;}
.y12{bottom:415.284000pt;}
.yb2{bottom:418.828000pt;}
.y89{bottom:421.463333pt;}
.y5f{bottom:425.084000pt;}
.y39{bottom:431.644667pt;}
.y11{bottom:433.822000pt;}
.yb1{bottom:437.090000pt;}
.y88{bottom:439.602667pt;}
.y5e{bottom:442.550667pt;}
.y38{bottom:450.182667pt;}
.y10{bottom:452.360000pt;}
.yb0{bottom:455.352000pt;}
.y87{bottom:457.742000pt;}
.y5d{bottom:460.017333pt;}
.y37{bottom:468.720667pt;}
.yf{bottom:470.898000pt;}
.yaf{bottom:473.614000pt;}
.y86{bottom:475.881333pt;}
.y5c{bottom:477.484000pt;}
.y36{bottom:487.258667pt;}
.ye{bottom:489.436000pt;}
.yae{bottom:491.876000pt;}
.y85{bottom:494.020667pt;}
.y5b{bottom:494.950667pt;}
.y35{bottom:505.796667pt;}
.yd{bottom:507.974000pt;}
.yad{bottom:510.138000pt;}
.y84{bottom:512.160000pt;}
.y5a{bottom:512.417333pt;}
.y34{bottom:524.334667pt;}
.yc{bottom:526.512000pt;}
.yac{bottom:528.470000pt;}
.y59{bottom:529.884000pt;}
.y83{bottom:530.299333pt;}
.y33{bottom:542.872667pt;}
.yb{bottom:545.050000pt;}
.ya{bottom:545.054667pt;}
.yab{bottom:546.732000pt;}
.y58{bottom:547.350667pt;}
.y82{bottom:548.438667pt;}
.y32{bottom:561.410667pt;}
.y57{bottom:564.817333pt;}
.yaa{bottom:564.994000pt;}
.y81{bottom:566.578000pt;}
.y31{bottom:579.948667pt;}
.y56{bottom:582.284000pt;}
.ya9{bottom:583.256000pt;}
.y80{bottom:584.717333pt;}
.y30{bottom:598.486667pt;}
.y55{bottom:599.750667pt;}
.y9{bottom:600.654667pt;}
.ya8{bottom:601.518000pt;}
.y7f{bottom:602.856667pt;}
.y2f{bottom:617.024667pt;}
.y54{bottom:617.217333pt;}
.y8{bottom:617.988000pt;}
.ya7{bottom:619.780000pt;}
.y7e{bottom:620.996000pt;}
.y53{bottom:634.684000pt;}
.y2e{bottom:635.562667pt;}
.ya6{bottom:638.042000pt;}
.y7d{bottom:639.135333pt;}
.y7{bottom:644.770667pt;}
.y52{bottom:652.150667pt;}
.y2d{bottom:654.100667pt;}
.ya5{bottom:656.304000pt;}
.y7c{bottom:657.274667pt;}
.y51{bottom:669.617333pt;}
.y2c{bottom:672.638667pt;}
.y6{bottom:673.570667pt;}
.ya4{bottom:674.566000pt;}
.y7b{bottom:675.414000pt;}
.y50{bottom:687.084000pt;}
.y2b{bottom:691.176667pt;}
.ya3{bottom:692.828000pt;}
.y7a{bottom:693.553333pt;}
.y5{bottom:702.370667pt;}
.y4f{bottom:704.550667pt;}
.y2a{bottom:709.714667pt;}
.ya2{bottom:711.090000pt;}
.y79{bottom:711.692667pt;}
.y4e{bottom:722.017333pt;}
.y29{bottom:728.252667pt;}
.ya1{bottom:729.352000pt;}
.y78{bottom:729.832000pt;}
.y4d{bottom:739.484000pt;}
.y28{bottom:746.790667pt;}
.ya0{bottom:747.614000pt;}
.y77{bottom:747.971333pt;}
.y4c{bottom:756.950667pt;}
.y4{bottom:761.837333pt;}
.y27{bottom:765.328667pt;}
.y9f{bottom:765.876000pt;}
.y76{bottom:766.110667pt;}
.y3{bottom:777.837333pt;}
.y26{bottom:783.862000pt;}
.y9e{bottom:784.138000pt;}
.y75{bottom:784.250000pt;}
.y74{bottom:802.389333pt;}
.y25{bottom:802.400000pt;}
.y2{bottom:803.286667pt;}
.y73{bottom:843.017333pt;}
.y24{bottom:843.028000pt;}
.y9c{bottom:859.017333pt;}
.y4b{bottom:859.028000pt;}
.hc{height:25.092500pt;}
.h11{height:25.813281pt;}
.ha{height:36.229167pt;}
.h10{height:40.757812pt;}
.hd{height:41.812500pt;}
.h4{height:45.286458pt;}
.he{height:46.458333pt;}
.h3{height:47.550781pt;}
.h8{height:52.079427pt;}
.hb{height:52.098094pt;}
.hf{height:52.213542pt;}
.h9{height:53.427083pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h7{height:153.270660pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x6{left:79.200667pt;}
.x7{left:88.819067pt;}
.x5{left:94.498300pt;}
.x4{left:107.826800pt;}
.x8{left:120.944933pt;}
.x9{left:139.856267pt;}
.x2{left:207.873333pt;}
.x1{left:541.929333pt;}
}




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