
    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_f6d1aaa1f7f72ecb00e95188.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_5b86f2fdf72b6e388383938b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_6c5ce2d2d36af04cb72b1cfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.745117;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_716360f15f39e99645466c1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_fc66fc2e1122740ad7d15f1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_7471656eda370ab621cd3785.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_ee4759c9c7c754ba54514b9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b7abf023a28cdff20a1fa216.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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);}
.v3{vertical-align:-15.120207px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.879793px;}
.v1{vertical-align:27.360009px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.049946px;}
.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;}
}
.ws7{word-spacing:-13.553062px;}
.ws2{word-spacing:-13.503116px;}
.ws4{word-spacing:-12.057638px;}
.ws1{word-spacing:-10.900104px;}
.ws0{word-spacing:-9.970031px;}
.ws5{word-spacing:-8.785141px;}
.ws6{word-spacing:-6.832887px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-2.978160px;}
._1{margin-left:-1.039406px;}
._0{width:1.453645px;}
._2{width:2.604702px;}
._3{width:3.621479px;}
._8{width:5.108713px;}
._c{width:6.306480px;}
._b{width:7.757243px;}
._4{width:9.231265px;}
._5{width:10.775699px;}
._e{width:12.139946px;}
._6{width:14.753548px;}
._7{width:15.850804px;}
._a{width:17.750532px;}
._9{width:18.819314px;}
._19{width:20.064358px;}
._14{width:21.359793px;}
._10{width:22.375891px;}
._11{width:23.476495px;}
._12{width:26.459781px;}
._13{width:27.656075px;}
._17{width:28.959245px;}
._15{width:30.768974px;}
._18{width:34.963025px;}
._16{width:60.373862px;}
._d{width:71.456907px;}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.234015px;}
.fs3{font-size:35.992890px;}
.fs9{font-size:38.872305px;}
.fs1{font-size:41.751720px;}
.fs0{font-size:48.230550px;}
.fs8{font-size:51.110100px;}
.fs6{font-size:59.748300px;}
.fs5{font-size:71.985600px;}
.fs2{font-size:77.744700px;}
.fs4{font-size:84.223355px;}
.fs7{font-size:95.741105px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.340019px;}
.y2d{bottom:3.959988px;}
.y49{bottom:53.820054px;}
.y48{bottom:55.800065px;}
.ya{bottom:56.520081px;}
.y47{bottom:69.660073px;}
.y9{bottom:73.080048px;}
.y8{bottom:86.760018px;}
.ybb{bottom:88.380021px;}
.yab{bottom:91.260018px;}
.y7a{bottom:92.160073px;}
.yd3{bottom:97.380021px;}
.y79{bottom:102.960046px;}
.ybc{bottom:103.140015px;}
.yfb{bottom:104.760018px;}
.yb8{bottom:106.740029px;}
.yba{bottom:106.920067px;}
.yaa{bottom:109.620025px;}
.yd2{bottom:115.740029px;}
.y43{bottom:115.920067px;}
.yb9{bottom:117.720040px;}
.ya9{bottom:121.320054px;}
.yfa{bottom:123.120025px;}
.yb7{bottom:124.920067px;}
.y78{bottom:127.980034px;}
.yd1{bottom:133.920067px;}
.y42{bottom:134.280075px;}
.ya8{bottom:139.680061px;}
.yb6{bottom:143.280075px;}
.y77{bottom:146.160073px;}
.yf9{bottom:147.420067px;}
.y41{bottom:152.640015px;}
.ya7{bottom:158.040070px;}
.yd0{bottom:158.220040px;}
.yb5{bottom:161.640015px;}
.y76{bottom:164.520081px;}
.yf8{bottom:165.780075px;}
.y40{bottom:170.820054px;}
.ya6{bottom:176.400078px;}
.y11a{bottom:178.200050px;}
.yb4{bottom:179.820054px;}
.ycf{bottom:182.520081px;}
.y75{bottom:182.880021px;}
.y3f{bottom:189.180061px;}
.yf7{bottom:190.080048px;}
.ya5{bottom:194.580048px;}
.y119{bottom:196.560059px;}
.yb3{bottom:198.180061px;}
.yce{bottom:200.880021px;}
.y74{bottom:201.240029px;}
.y3e{bottom:207.540070px;}
.yf6{bottom:208.440056px;}
.ya4{bottom:212.940056px;}
.yb2{bottom:216.540070px;}
.ycd{bottom:219.240029px;}
.y73{bottom:219.420067px;}
.y118{bottom:220.680061px;}
.y3d{bottom:225.900078px;}
.ya3{bottom:231.300065px;}
.yf5{bottom:232.740029px;}
.yb1{bottom:234.900078px;}
.y72{bottom:237.780075px;}
.y117{bottom:239.040070px;}
.ycc{bottom:243.540070px;}
.y3c{bottom:244.080048px;}
.ya2{bottom:249.480034px;}
.yb0{bottom:253.080048px;}
.y71{bottom:256.140015px;}
.yf4{bottom:257.040070px;}
.y116{bottom:257.400078px;}
.ycb{bottom:261.900078px;}
.y3b{bottom:262.440056px;}
.ya1{bottom:267.840042px;}
.yaf{bottom:271.440056px;}
.y70{bottom:274.500023px;}
.yf3{bottom:275.400078px;}
.yca{bottom:280.080048px;}
.y3a{bottom:280.800065px;}
.y115{bottom:281.700050px;}
.ya0{bottom:286.200050px;}
.yae{bottom:289.800065px;}
.y6f{bottom:292.680061px;}
.y39{bottom:299.160073px;}
.yf2{bottom:299.700050px;}
.y114{bottom:300.060059px;}
.yc9{bottom:304.380021px;}
.y9f{bottom:304.560059px;}
.yad{bottom:308.160073px;}
.y6e{bottom:311.040070px;}
.y38{bottom:317.340042px;}
.yf1{bottom:318.060059px;}
.yac{bottom:322.380021px;}
.y9e{bottom:322.740029px;}
.y113{bottom:324.360031px;}
.y6d{bottom:329.400078px;}
.y37{bottom:335.700050px;}
.y9d{bottom:341.100037px;}
.yf0{bottom:342.180061px;}
.y112{bottom:342.720040px;}
.y6c{bottom:347.580048px;}
.y36{bottom:354.060059px;}
.y9c{bottom:359.460046px;}
.yef{bottom:360.540070px;}
.yc8{bottom:365.400078px;}
.y6b{bottom:365.940056px;}
.y111{bottom:367.020081px;}
.y35{bottom:372.240029px;}
.y9b{bottom:377.820054px;}
.yee{bottom:378.900078px;}
.yc7{bottom:383.760018px;}
.y6a{bottom:384.300065px;}
.y110{bottom:385.380021px;}
.y34{bottom:391.500023px;}
.y9a{bottom:396.000023px;}
.yed{bottom:397.260018px;}
.yc6{bottom:401.940056px;}
.y69{bottom:402.660073px;}
.y10f{bottom:409.500023px;}
.y22{bottom:412.560059px;}
.y99{bottom:414.360031px;}
.yec{bottom:415.440056px;}
.y68{bottom:420.840042px;}
.yc5{bottom:426.240029px;}
.y33{bottom:426.600037px;}
.y10e{bottom:427.860031px;}
.y21{bottom:430.920067px;}
.y98{bottom:432.720040px;}
.yeb{bottom:433.800065px;}
.y32{bottom:437.580048px;}
.y67{bottom:439.200050px;}
.yc4{bottom:444.600037px;}
.y31{bottom:448.560059px;}
.y20{bottom:449.280075px;}
.y97{bottom:450.900078px;}
.yea{bottom:452.160073px;}
.y66{bottom:457.560059px;}
.y30{bottom:459.540070px;}
.yc3{bottom:462.960046px;}
.y1f{bottom:467.460046px;}
.y96{bottom:469.260018px;}
.y2f{bottom:470.520081px;}
.y65{bottom:475.920067px;}
.ye9{bottom:476.460046px;}
.yc2{bottom:481.320054px;}
.y2e{bottom:481.500023px;}
.y1e{bottom:485.820054px;}
.y95{bottom:487.620060px;}
.y64{bottom:494.100037px;}
.ye8{bottom:494.820054px;}
.y2c{bottom:499.140049px;}
.y2b{bottom:503.100037px;}
.y1d{bottom:504.180061px;}
.yc1{bottom:505.440056px;}
.y94{bottom:505.980034px;}
.y63{bottom:512.460046px;}
.ye7{bottom:513.000058px;}
.y10d{bottom:513.180061px;}
.y1c{bottom:522.540036px;}
.yc0{bottom:523.800065px;}
.y93{bottom:524.160038px;}
.y2a{bottom:530.640049px;}
.y62{bottom:530.820054px;}
.ye6{bottom:537.300065px;}
.y10c{bottom:537.480034px;}
.y1b{bottom:540.720040px;}
.ybf{bottom:542.160038px;}
.y92{bottom:542.520047px;}
.y61{bottom:549.000058px;}
.ye5{bottom:555.660038px;}
.y10b{bottom:555.840042px;}
.y29{bottom:558.180061px;}
.y1a{bottom:559.080048px;}
.y91{bottom:560.880055px;}
.ybe{bottom:566.460046px;}
.y60{bottom:567.360031px;}
.ye4{bottom:574.020047px;}
.y19{bottom:577.440056px;}
.y28{bottom:579.240063px;}
.y10a{bottom:579.960046px;}
.ybd{bottom:584.820054px;}
.y5f{bottom:585.720040px;}
.ye3{bottom:592.380055px;}
.y18{bottom:595.620060px;}
.y90{bottom:597.420033px;}
.y109{bottom:598.320054px;}
.y27{bottom:600.300065px;}
.y5e{bottom:604.080048px;}
.ye2{bottom:610.560059px;}
.y17{bottom:613.980034px;}
.y8f{bottom:615.780041px;}
.y26{bottom:621.360031px;}
.y5d{bottom:622.260053px;}
.y108{bottom:622.620060px;}
.ye1{bottom:628.920033px;}
.y16{bottom:632.340042px;}
.y8e{bottom:634.140049px;}
.y5c{bottom:640.620060px;}
.y107{bottom:640.980034px;}
.y25{bottom:642.420033px;}
.y15{bottom:650.700050px;}
.y8d{bottom:652.320054px;}
.ye0{bottom:653.220040px;}
.y5b{bottom:658.980034px;}
.y24{bottom:663.480034px;}
.y106{bottom:665.280041px;}
.y14{bottom:668.880055px;}
.y8c{bottom:670.680061px;}
.ydf{bottom:671.580048px;}
.y5a{bottom:677.160038px;}
.y105{bottom:683.640049px;}
.y23{bottom:684.540036px;}
.y13{bottom:687.240063px;}
.y8b{bottom:689.040036px;}
.yde{bottom:689.940056px;}
.y59{bottom:695.520047px;}
.y104{bottom:702.000058px;}
.y12{bottom:705.600037px;}
.y8a{bottom:707.400043px;}
.ydd{bottom:708.120060px;}
.y58{bottom:713.880055px;}
.y11{bottom:724.860031px;}
.y89{bottom:725.580048px;}
.y103{bottom:726.300065px;}
.y57{bottom:732.240063px;}
.ydc{bottom:732.420033px;}
.y88{bottom:743.940056px;}
.y102{bottom:744.660038px;}
.y10{bottom:745.200050px;}
.y56{bottom:750.420033px;}
.ydb{bottom:750.780041px;}
.yf{bottom:759.780041px;}
.y87{bottom:762.300065px;}
.y55{bottom:768.780041px;}
.yda{bottom:769.140049px;}
.y86{bottom:780.660056px;}
.y54{bottom:787.140049px;}
.ye{bottom:788.400044px;}
.yd9{bottom:793.440056px;}
.y85{bottom:798.840042px;}
.y53{bottom:805.500040px;}
.y101{bottom:811.440056px;}
.yd8{bottom:811.800047px;}
.y84{bottom:817.200050px;}
.y52{bottom:823.680045px;}
.yd{bottom:824.040053px;}
.y100{bottom:829.800047px;}
.yd7{bottom:829.980051px;}
.y83{bottom:835.560042px;}
.y51{bottom:842.040053px;}
.yc{bottom:847.800047px;}
.yd6{bottom:848.340042px;}
.y82{bottom:853.740046px;}
.yff{bottom:854.100054px;}
.y50{bottom:860.400044px;}
.yd5{bottom:866.700050px;}
.yb{bottom:871.740046px;}
.y81{bottom:872.100054px;}
.yfe{bottom:872.460046px;}
.y4f{bottom:878.580048px;}
.y80{bottom:890.460046px;}
.yd4{bottom:891.000040px;}
.yfd{bottom:896.760053px;}
.y4e{bottom:896.940056px;}
.y7f{bottom:908.820054px;}
.y7{bottom:910.800047px;}
.y4d{bottom:915.300047px;}
.yfc{bottom:921.060050px;}
.y7e{bottom:927.000049px;}
.y2{bottom:932.400044px;}
.y6{bottom:932.760053px;}
.y4c{bottom:933.660047px;}
.y1{bottom:945.180045px;}
.y7d{bottom:945.360049px;}
.y4b{bottom:951.840051px;}
.y5{bottom:952.560050px;}
.y7c{bottom:963.720048px;}
.y46{bottom:968.760053px;}
.y4{bottom:972.900044px;}
.y45{bottom:984.960046px;}
.y3{bottom:985.500049px;}
.y44{bottom:998.640049px;}
.y7b{bottom:998.820049px;}
.h13{height:13.139992px;}
.h14{height:13.679970px;}
.h11{height:18.180004px;}
.h3{height:30.416780px;}
.h16{height:32.851292px;}
.h2{height:33.676605px;}
.h8{height:35.136709px;}
.h12{height:35.799569px;}
.h9{height:41.718784px;}
.hd{height:47.971499px;}
.h7{height:50.263383px;}
.h17{height:52.250589px;}
.h4{height:56.600267px;}
.h6{height:56.638229px;}
.h10{height:59.427386px;}
.h18{height:59.543307px;}
.h15{height:59.543311px;}
.hf{height:61.177825px;}
.h5{height:61.316905px;}
.he{height:73.707912px;}
.ha{height:79.604803px;}
.hc{height:79.692958px;}
.hb{height:95.226870px;}
.h1{height:1062.750000px;}
.h0{height:1063.080045px;}
.w2{width:1.440033px;}
.w4{width:5.939998px;}
.w3{width:12.060002px;}
.w5{width:18.000000px;}
.w0{width:748.260000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x2{left:50.399999px;}
.xa{left:84.959997px;}
.x12{left:90.540003px;}
.x18{left:97.200002px;}
.x16{left:106.200002px;}
.x1a{left:127.439999px;}
.x1d{left:136.079999px;}
.xf{left:141.120002px;}
.x21{left:148.860008px;}
.xc{left:155.340002px;}
.x1f{left:191.340002px;}
.x1{left:216.539996px;}
.x5{left:278.460005px;}
.xb{left:282.240006px;}
.x19{left:300.959988px;}
.xe{left:303.120002px;}
.x10{left:307.439999px;}
.x1e{left:312.480011px;}
.x7{left:330.660015px;}
.x9{left:367.740006px;}
.xd{left:374.040012px;}
.x11{left:382.500000px;}
.x6{left:383.579990px;}
.x3{left:422.459988px;}
.x4{left:463.319996px;}
.x13{left:494.639992px;}
.x14{left:515.879998px;}
.x20{left:547.920010px;}
.x1b{left:616.500000px;}
.x1c{left:625.320030px;}
.x17{left:636.480011px;}
.x8{left:665.460023px;}
.x15{left:711.000000px;}
@media print{
.v3{vertical-align:-13.440184pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.559816pt;}
.v1{vertical-align:24.320008pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.044396pt;}
.ws7{word-spacing:-12.047166pt;}
.ws2{word-spacing:-12.002770pt;}
.ws4{word-spacing:-10.717900pt;}
.ws1{word-spacing:-9.688982pt;}
.ws0{word-spacing:-8.862249pt;}
.ws5{word-spacing:-7.809014pt;}
.ws6{word-spacing:-6.073678pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-2.647253pt;}
._1{margin-left:-0.923916pt;}
._0{width:1.292129pt;}
._2{width:2.315290pt;}
._3{width:3.219092pt;}
._8{width:4.541078pt;}
._c{width:5.605760pt;}
._b{width:6.895327pt;}
._4{width:8.205569pt;}
._5{width:9.578399pt;}
._e{width:10.791063pt;}
._6{width:13.114265pt;}
._7{width:14.089603pt;}
._a{width:15.778251pt;}
._9{width:16.728279pt;}
._19{width:17.834985pt;}
._14{width:18.986482pt;}
._10{width:19.889681pt;}
._11{width:20.867995pt;}
._12{width:23.519805pt;}
._13{width:24.583178pt;}
._17{width:25.741551pt;}
._15{width:27.350199pt;}
._18{width:31.078244pt;}
._16{width:53.665655pt;}
._d{width:63.517250pt;}
.fsa{font-size:26.874680pt;}
.fs3{font-size:31.993680pt;}
.fs9{font-size:34.553160pt;}
.fs1{font-size:37.112640pt;}
.fs0{font-size:42.871600pt;}
.fs8{font-size:45.431200pt;}
.fs6{font-size:53.109600pt;}
.fs5{font-size:63.987200pt;}
.fs2{font-size:69.106400pt;}
.fs4{font-size:74.865204pt;}
.fs7{font-size:85.103204pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.080017pt;}
.y2d{bottom:3.519989pt;}
.y49{bottom:47.840048pt;}
.y48{bottom:49.600058pt;}
.ya{bottom:50.240072pt;}
.y47{bottom:61.920065pt;}
.y9{bottom:64.960043pt;}
.y8{bottom:77.120016pt;}
.ybb{bottom:78.560019pt;}
.yab{bottom:81.120016pt;}
.y7a{bottom:81.920065pt;}
.yd3{bottom:86.560019pt;}
.y79{bottom:91.520041pt;}
.ybc{bottom:91.680014pt;}
.yfb{bottom:93.120016pt;}
.yb8{bottom:94.880026pt;}
.yba{bottom:95.040060pt;}
.yaa{bottom:97.440023pt;}
.yd2{bottom:102.880026pt;}
.y43{bottom:103.040060pt;}
.yb9{bottom:104.640036pt;}
.ya9{bottom:107.840048pt;}
.yfa{bottom:109.440023pt;}
.yb7{bottom:111.040060pt;}
.y78{bottom:113.760031pt;}
.yd1{bottom:119.040060pt;}
.y42{bottom:119.360067pt;}
.ya8{bottom:124.160055pt;}
.yb6{bottom:127.360067pt;}
.y77{bottom:129.920065pt;}
.yf9{bottom:131.040060pt;}
.y41{bottom:135.680014pt;}
.ya7{bottom:140.480063pt;}
.yd0{bottom:140.640036pt;}
.yb5{bottom:143.680014pt;}
.y76{bottom:146.240072pt;}
.yf8{bottom:147.360067pt;}
.y40{bottom:151.840048pt;}
.ya6{bottom:156.800070pt;}
.y11a{bottom:158.400045pt;}
.yb4{bottom:159.840048pt;}
.ycf{bottom:162.240072pt;}
.y75{bottom:162.560019pt;}
.y3f{bottom:168.160055pt;}
.yf7{bottom:168.960043pt;}
.ya5{bottom:172.960043pt;}
.y119{bottom:174.720053pt;}
.yb3{bottom:176.160055pt;}
.yce{bottom:178.560019pt;}
.y74{bottom:178.880026pt;}
.y3e{bottom:184.480063pt;}
.yf6{bottom:185.280050pt;}
.ya4{bottom:189.280050pt;}
.yb2{bottom:192.480063pt;}
.ycd{bottom:194.880026pt;}
.y73{bottom:195.040060pt;}
.y118{bottom:196.160055pt;}
.y3d{bottom:200.800070pt;}
.ya3{bottom:205.600058pt;}
.yf5{bottom:206.880026pt;}
.yb1{bottom:208.800070pt;}
.y72{bottom:211.360067pt;}
.y117{bottom:212.480063pt;}
.ycc{bottom:216.480063pt;}
.y3c{bottom:216.960043pt;}
.ya2{bottom:221.760031pt;}
.yb0{bottom:224.960043pt;}
.y71{bottom:227.680014pt;}
.yf4{bottom:228.480063pt;}
.y116{bottom:228.800070pt;}
.ycb{bottom:232.800070pt;}
.y3b{bottom:233.280050pt;}
.ya1{bottom:238.080038pt;}
.yaf{bottom:241.280050pt;}
.y70{bottom:244.000021pt;}
.yf3{bottom:244.800070pt;}
.yca{bottom:248.960043pt;}
.y3a{bottom:249.600058pt;}
.y115{bottom:250.400045pt;}
.ya0{bottom:254.400045pt;}
.yae{bottom:257.600058pt;}
.y6f{bottom:260.160055pt;}
.y39{bottom:265.920065pt;}
.yf2{bottom:266.400045pt;}
.y114{bottom:266.720053pt;}
.yc9{bottom:270.560019pt;}
.y9f{bottom:270.720053pt;}
.yad{bottom:273.920065pt;}
.y6e{bottom:276.480063pt;}
.y38{bottom:282.080038pt;}
.yf1{bottom:282.720053pt;}
.yac{bottom:286.560019pt;}
.y9e{bottom:286.880026pt;}
.y113{bottom:288.320028pt;}
.y6d{bottom:292.800070pt;}
.y37{bottom:298.400045pt;}
.y9d{bottom:303.200033pt;}
.yf0{bottom:304.160055pt;}
.y112{bottom:304.640036pt;}
.y6c{bottom:308.960043pt;}
.y36{bottom:314.720053pt;}
.y9c{bottom:319.520041pt;}
.yef{bottom:320.480063pt;}
.yc8{bottom:324.800070pt;}
.y6b{bottom:325.280050pt;}
.y111{bottom:326.240072pt;}
.y35{bottom:330.880026pt;}
.y9b{bottom:335.840048pt;}
.yee{bottom:336.800070pt;}
.yc7{bottom:341.120016pt;}
.y6a{bottom:341.600058pt;}
.y110{bottom:342.560019pt;}
.y34{bottom:348.000021pt;}
.y9a{bottom:352.000021pt;}
.yed{bottom:353.120016pt;}
.yc6{bottom:357.280050pt;}
.y69{bottom:357.920065pt;}
.y10f{bottom:364.000021pt;}
.y22{bottom:366.720053pt;}
.y99{bottom:368.320028pt;}
.yec{bottom:369.280050pt;}
.y68{bottom:374.080038pt;}
.yc5{bottom:378.880026pt;}
.y33{bottom:379.200033pt;}
.y10e{bottom:380.320028pt;}
.y21{bottom:383.040060pt;}
.y98{bottom:384.640036pt;}
.yeb{bottom:385.600058pt;}
.y32{bottom:388.960043pt;}
.y67{bottom:390.400045pt;}
.yc4{bottom:395.200033pt;}
.y31{bottom:398.720053pt;}
.y20{bottom:399.360067pt;}
.y97{bottom:400.800070pt;}
.yea{bottom:401.920065pt;}
.y66{bottom:406.720053pt;}
.y30{bottom:408.480063pt;}
.yc3{bottom:411.520041pt;}
.y1f{bottom:415.520041pt;}
.y96{bottom:417.120016pt;}
.y2f{bottom:418.240072pt;}
.y65{bottom:423.040060pt;}
.ye9{bottom:423.520041pt;}
.yc2{bottom:427.840048pt;}
.y2e{bottom:428.000021pt;}
.y1e{bottom:431.840048pt;}
.y95{bottom:433.440054pt;}
.y64{bottom:439.200033pt;}
.ye8{bottom:439.840048pt;}
.y2c{bottom:443.680044pt;}
.y2b{bottom:447.200033pt;}
.y1d{bottom:448.160055pt;}
.yc1{bottom:449.280050pt;}
.y94{bottom:449.760031pt;}
.y63{bottom:455.520041pt;}
.ye7{bottom:456.000052pt;}
.y10d{bottom:456.160055pt;}
.y1c{bottom:464.480032pt;}
.yc0{bottom:465.600058pt;}
.y93{bottom:465.920034pt;}
.y2a{bottom:471.680044pt;}
.y62{bottom:471.840048pt;}
.ye6{bottom:477.600058pt;}
.y10c{bottom:477.760031pt;}
.y1b{bottom:480.640036pt;}
.ybf{bottom:481.920034pt;}
.y92{bottom:482.240042pt;}
.y61{bottom:488.000052pt;}
.ye5{bottom:493.920034pt;}
.y10b{bottom:494.080038pt;}
.y29{bottom:496.160055pt;}
.y1a{bottom:496.960043pt;}
.y91{bottom:498.560049pt;}
.ybe{bottom:503.520041pt;}
.y60{bottom:504.320028pt;}
.ye4{bottom:510.240042pt;}
.y19{bottom:513.280050pt;}
.y28{bottom:514.880056pt;}
.y10a{bottom:515.520041pt;}
.ybd{bottom:519.840048pt;}
.y5f{bottom:520.640036pt;}
.ye3{bottom:526.560049pt;}
.y18{bottom:529.440054pt;}
.y90{bottom:531.040030pt;}
.y109{bottom:531.840048pt;}
.y27{bottom:533.600058pt;}
.y5e{bottom:536.960043pt;}
.ye2{bottom:542.720053pt;}
.y17{bottom:545.760031pt;}
.y8f{bottom:547.360037pt;}
.y26{bottom:552.320028pt;}
.y5d{bottom:553.120047pt;}
.y108{bottom:553.440054pt;}
.ye1{bottom:559.040030pt;}
.y16{bottom:562.080038pt;}
.y8e{bottom:563.680044pt;}
.y5c{bottom:569.440054pt;}
.y107{bottom:569.760031pt;}
.y25{bottom:571.040030pt;}
.y15{bottom:578.400045pt;}
.y8d{bottom:579.840048pt;}
.ye0{bottom:580.640036pt;}
.y5b{bottom:585.760031pt;}
.y24{bottom:589.760031pt;}
.y106{bottom:591.360037pt;}
.y14{bottom:594.560049pt;}
.y8c{bottom:596.160055pt;}
.ydf{bottom:596.960043pt;}
.y5a{bottom:601.920034pt;}
.y105{bottom:607.680044pt;}
.y23{bottom:608.480032pt;}
.y13{bottom:610.880056pt;}
.y8b{bottom:612.480032pt;}
.yde{bottom:613.280050pt;}
.y59{bottom:618.240042pt;}
.y104{bottom:624.000052pt;}
.y12{bottom:627.200033pt;}
.y8a{bottom:628.800039pt;}
.ydd{bottom:629.440054pt;}
.y58{bottom:634.560049pt;}
.y11{bottom:644.320028pt;}
.y89{bottom:644.960043pt;}
.y103{bottom:645.600058pt;}
.y57{bottom:650.880056pt;}
.ydc{bottom:651.040030pt;}
.y88{bottom:661.280050pt;}
.y102{bottom:661.920034pt;}
.y10{bottom:662.400045pt;}
.y56{bottom:667.040030pt;}
.ydb{bottom:667.360037pt;}
.yf{bottom:675.360037pt;}
.y87{bottom:677.600058pt;}
.y55{bottom:683.360037pt;}
.yda{bottom:683.680044pt;}
.y86{bottom:693.920050pt;}
.y54{bottom:699.680044pt;}
.ye{bottom:700.800039pt;}
.yd9{bottom:705.280050pt;}
.y85{bottom:710.080038pt;}
.y53{bottom:716.000036pt;}
.y101{bottom:721.280050pt;}
.yd8{bottom:721.600042pt;}
.y84{bottom:726.400045pt;}
.y52{bottom:732.160040pt;}
.yd{bottom:732.480047pt;}
.y100{bottom:737.600042pt;}
.yd7{bottom:737.760046pt;}
.y83{bottom:742.720038pt;}
.y51{bottom:748.480047pt;}
.yc{bottom:753.600042pt;}
.yd6{bottom:754.080038pt;}
.y82{bottom:758.880041pt;}
.yff{bottom:759.200048pt;}
.y50{bottom:764.800039pt;}
.yd5{bottom:770.400045pt;}
.yb{bottom:774.880041pt;}
.y81{bottom:775.200048pt;}
.yfe{bottom:775.520041pt;}
.y4f{bottom:780.960043pt;}
.y80{bottom:791.520041pt;}
.yd4{bottom:792.000036pt;}
.yfd{bottom:797.120047pt;}
.y4e{bottom:797.280050pt;}
.y7f{bottom:807.840048pt;}
.y7{bottom:809.600042pt;}
.y4d{bottom:813.600042pt;}
.yfc{bottom:818.720045pt;}
.y7e{bottom:824.000044pt;}
.y2{bottom:828.800039pt;}
.y6{bottom:829.120047pt;}
.y4c{bottom:829.920042pt;}
.y1{bottom:840.160040pt;}
.y7d{bottom:840.320044pt;}
.y4b{bottom:846.080046pt;}
.y5{bottom:846.720045pt;}
.y7c{bottom:856.640043pt;}
.y46{bottom:861.120047pt;}
.y4{bottom:864.800039pt;}
.y45{bottom:875.520041pt;}
.y3{bottom:876.000044pt;}
.y44{bottom:887.680044pt;}
.y7b{bottom:887.840044pt;}
.h13{height:11.679993pt;}
.h14{height:12.159973pt;}
.h11{height:16.160004pt;}
.h3{height:27.037138pt;}
.h16{height:29.201149pt;}
.h2{height:29.934760pt;}
.h8{height:31.232630pt;}
.h12{height:31.821839pt;}
.h9{height:37.083363pt;}
.hd{height:42.641333pt;}
.h7{height:44.678563pt;}
.h17{height:46.444968pt;}
.h4{height:50.311349pt;}
.h6{height:50.345092pt;}
.h10{height:52.824343pt;}
.h18{height:52.927384pt;}
.h15{height:52.927388pt;}
.hf{height:54.380289pt;}
.h5{height:54.503916pt;}
.he{height:65.518144pt;}
.ha{height:70.759825pt;}
.hc{height:70.838185pt;}
.hb{height:84.646107pt;}
.h1{height:944.666667pt;}
.h0{height:944.960040pt;}
.w2{width:1.280029pt;}
.w4{width:5.279998pt;}
.w3{width:10.720002pt;}
.w5{width:16.000000pt;}
.w0{width:665.120000pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x2{left:44.799999pt;}
.xa{left:75.519997pt;}
.x12{left:80.480003pt;}
.x18{left:86.400002pt;}
.x16{left:94.400002pt;}
.x1a{left:113.279999pt;}
.x1d{left:120.959999pt;}
.xf{left:125.440002pt;}
.x21{left:132.320007pt;}
.xc{left:138.080002pt;}
.x1f{left:170.080002pt;}
.x1{left:192.479996pt;}
.x5{left:247.520004pt;}
.xb{left:250.880005pt;}
.x19{left:267.519989pt;}
.xe{left:269.440002pt;}
.x10{left:273.279999pt;}
.x1e{left:277.760010pt;}
.x7{left:293.920013pt;}
.x9{left:326.880005pt;}
.xd{left:332.480011pt;}
.x11{left:340.000000pt;}
.x6{left:340.959991pt;}
.x3{left:375.519989pt;}
.x4{left:411.839996pt;}
.x13{left:439.679993pt;}
.x14{left:458.559998pt;}
.x20{left:487.040009pt;}
.x1b{left:548.000000pt;}
.x1c{left:555.840027pt;}
.x17{left:565.760010pt;}
.x8{left:591.520020pt;}
.x15{left:632.000000pt;}
}




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