
    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_e1890a89b0f1d358322c0d6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_2d261ffcfa810871fd1a46c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136000;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_f5b6e47f3eb5689f3104920a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_56182858b7d0d7ddc7933930.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928000;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_b45b785c5a543458b65eb68a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.749000;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_57f982ae69202405d2b4117e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2f9ee6b599634ad7f3407407.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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;}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080357,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);}
.m2{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-9.186000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.419988px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005400px;}
.ls4{letter-spacing:2.682568px;}
.ls3{letter-spacing:4.926542px;}
.ls0{letter-spacing:33.440400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-56.792400px;}
.ws0{word-spacing:-15.129963px;}
.ws5{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.177833px;}
.ws3{word-spacing:-12.749850px;}
.ws6{word-spacing:-10.006666px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:6.199023px;}
._17{margin-left:-605.947800px;}
._5{margin-left:-33.078907px;}
._a{margin-left:-7.167600px;}
._1{margin-left:-5.754600px;}
._b{margin-left:-4.671000px;}
._2{margin-left:-2.750921px;}
._0{margin-left:-1.147487px;}
._3{width:1.024771px;}
._4{width:2.050420px;}
._9{width:3.293399px;}
._8{width:4.494000px;}
._10{width:6.048000px;}
._c{width:7.441200px;}
._f{width:8.607600px;}
._e{width:9.878584px;}
._11{width:10.884746px;}
._7{width:11.946000px;}
._d{width:13.300200px;}
._18{width:17.874689px;}
._12{width:19.275286px;}
._13{width:20.749514px;}
._14{width:21.942886px;}
._15{width:23.819400px;}
._16{width:25.015121px;}
._6{width:200.471400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,103,135);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:27.996600px;}
.fsb{font-size:35.995200px;}
.fs5{font-size:41.998800px;}
.fsd{font-size:48.000000px;}
.fs0{font-size:50.999400px;}
.fs3{font-size:51.993000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fse{font-size:60.000000px;}
.fsc{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs9{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fsa{font-size:90.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:81.547820px;}
.y67{bottom:81.553500px;}
.y80{bottom:81.562350px;}
.y18{bottom:94.987436px;}
.y7f{bottom:97.289850px;}
.y66{bottom:97.294500px;}
.y17{bottom:108.511050px;}
.y7e{bottom:113.017350px;}
.y65{bottom:113.022000px;}
.y16{bottom:122.031450px;}
.y7d{bottom:128.744850px;}
.y64{bottom:128.749500px;}
.y7c{bottom:144.566850px;}
.y7a{bottom:144.577050px;}
.y63{bottom:147.543300px;}
.y7b{bottom:150.519000px;}
.y37{bottom:160.299450px;}
.y79{bottom:160.304550px;}
.y52{bottom:160.323000px;}
.y36{bottom:176.031000px;}
.y78{bottom:176.032050px;}
.y51{bottom:176.050500px;}
.y62{bottom:190.659600px;}
.y77{bottom:191.769000px;}
.y50{bottom:191.778000px;}
.y35{bottom:200.778000px;}
.y61{bottom:206.400600px;}
.y76{bottom:207.496500px;}
.y74{bottom:207.496950px;}
.y4f{bottom:207.505500px;}
.y75{bottom:213.534000px;}
.y60{bottom:222.128100px;}
.y73{bottom:223.318950px;}
.y4e{bottom:223.327500px;}
.y5f{bottom:237.855600px;}
.y72{bottom:239.046450px;}
.y4d{bottom:239.055000px;}
.y34{bottom:250.289921px;}
.y5e{bottom:253.588500px;}
.y71{bottom:254.778000px;}
.y4c{bottom:254.782500px;}
.y33{bottom:264.569753px;}
.y5d{bottom:269.419950px;}
.y4b{bottom:270.510000px;}
.y32{bottom:278.773086px;}
.y70{bottom:279.525000px;}
.y5c{bottom:285.147450px;}
.y4a{bottom:289.303500px;}
.y31{bottom:293.052918px;}
.y5b{bottom:300.874950px;}
.y30{bottom:307.332750px;}
.y5a{bottom:316.602450px;}
.y2f{bottom:321.541068px;}
.y49{bottom:330.223500px;}
.y6f{bottom:331.231950px;}
.y59{bottom:332.424450px;}
.y2e{bottom:335.820900px;}
.y48{bottom:345.951000px;}
.y6e{bottom:346.959450px;}
.y58{bottom:348.151950px;}
.y2d{bottom:350.026835px;}
.y47{bottom:361.678500px;}
.y6d{bottom:362.692350px;}
.y57{bottom:363.883500px;}
.y2c{bottom:364.306667px;}
.y46{bottom:377.406000px;}
.y2b{bottom:378.510000px;}
.y6c{bottom:378.514350px;}
.y56{bottom:382.591500px;}
.y45{bottom:393.133500px;}
.y6b{bottom:394.241850px;}
.y2a{bottom:401.811000px;}
.y44{bottom:408.955500px;}
.y6a{bottom:409.981500px;}
.yb2{bottom:424.263274px;}
.ydf{bottom:424.351975px;}
.y43{bottom:424.692450px;}
.y69{bottom:425.709000px;}
.y55{bottom:425.712000px;}
.yde{bottom:437.787391px;}
.yb1{bottom:438.549480px;}
.y42{bottom:440.419950px;}
.y68{bottom:441.436500px;}
.y54{bottom:441.439500px;}
.y29{bottom:451.303950px;}
.ydd{bottom:451.308905px;}
.yb0{bottom:452.835687px;}
.y41{bottom:456.151500px;}
.ydc{bottom:464.830419px;}
.y27{bottom:467.035500px;}
.yaf{bottom:467.037745px;}
.y40{bottom:471.879000px;}
.y28{bottom:473.074500px;}
.ydb{bottom:478.350882px;}
.yae{bottom:481.323952px;}
.y26{bottom:482.763000px;}
.y3f{bottom:487.701000px;}
.yda{bottom:491.872396px;}
.yad{bottom:495.526010px;}
.y25{bottom:498.585000px;}
.y23{bottom:498.595950px;}
.y24{bottom:504.538500px;}
.y85{bottom:504.791276px;}
.yd9{bottom:505.308862px;}
.y3e{bottom:506.409000px;}
.yac{bottom:509.812217px;}
.y22{bottom:514.323450px;}
.yd8{bottom:518.829326px;}
.y84{bottom:521.289582px;}
.yab{bottom:524.013000px;}
.y21{bottom:530.050950px;}
.yd7{bottom:532.350839px;}
.y83{bottom:537.787888px;}
.yaa{bottom:541.275000px;}
.y20{bottom:545.782500px;}
.yd6{bottom:545.871303px;}
.y3d{bottom:547.330950px;}
.y82{bottom:554.286194px;}
.yd5{bottom:559.392817px;}
.y1f{bottom:561.510000px;}
.y3c{bottom:563.058450px;}
.y81{bottom:570.784500px;}
.yd4{bottom:572.914331px;}
.y1e{bottom:577.332000px;}
.y1c{bottom:577.336500px;}
.y3b{bottom:578.785950px;}
.ya9{bottom:582.944550px;}
.y1d{bottom:583.285500px;}
.yd3{bottom:586.349747px;}
.y1b{bottom:593.064000px;}
.y3a{bottom:594.607950px;}
.ya8{bottom:598.677450px;}
.yd2{bottom:599.871260px;}
.y39{bottom:610.335450px;}
.yd1{bottom:613.392774px;}
.ya7{bottom:614.409000px;}
.y1a{bottom:617.811000px;}
.y38{bottom:626.062950px;}
.yd0{bottom:626.913238px;}
.ya6{bottom:639.156000px;}
.ycf{bottom:640.434751px;}
.yce{bottom:653.870167px;}
.ycd{bottom:667.391681px;}
.ycc{bottom:680.913195px;}
.ycb{bottom:694.433658px;}
.ya5{bottom:695.793000px;}
.y15{bottom:697.323000px;}
.y14{bottom:706.081500px;}
.yca{bottom:707.955172px;}
.ya4{bottom:711.524550px;}
.yc9{bottom:721.391638px;}
.ya3{bottom:727.342500px;}
.yc8{bottom:734.912102px;}
.ya2{bottom:743.074050px;}
.yc7{bottom:748.433616px;}
.ya1{bottom:758.806950px;}
.yc6{bottom:761.954079px;}
.ya0{bottom:774.538500px;}
.yc5{bottom:775.475593px;}
.y13{bottom:778.277572px;}
.yc4{bottom:788.997107px;}
.y9e{bottom:790.271550px;}
.y9f{bottom:796.308000px;}
.y12{bottom:802.342884px;}
.yc3{bottom:802.432523px;}
.y9d{bottom:806.089500px;}
.y11{bottom:815.782500px;}
.yc2{bottom:815.954036px;}
.y10{bottom:820.459500px;}
.y9c{bottom:821.821050px;}
.yc1{bottom:829.474500px;}
.y9b{bottom:837.553950px;}
.ye{bottom:844.273685px;}
.yc0{bottom:844.441500px;}
.yf{bottom:852.945000px;}
.y9a{bottom:853.285500px;}
.yb{bottom:868.333685px;}
.yd{bottom:868.336500px;}
.y98{bottom:869.017050px;}
.y99{bottom:875.055000px;}
.yc{bottom:877.011000px;}
.y97{bottom:884.835000px;}
.ybf{bottom:890.362293px;}
.y8{bottom:892.314184px;}
.ya{bottom:892.318500px;}
.y96{bottom:900.566550px;}
.y9{bottom:900.991500px;}
.ybe{bottom:904.648500px;}
.y6{bottom:916.299000px;}
.y95{bottom:916.299450px;}
.ybd{bottom:921.912000px;}
.y7{bottom:924.973500px;}
.y94{bottom:932.031000px;}
.y93{bottom:947.763900px;}
.y5{bottom:961.273500px;}
.ybc{bottom:961.791850px;}
.y92{bottom:963.580500px;}
.y90{bottom:963.582000px;}
.y91{bottom:969.534000px;}
.ybb{bottom:976.078057px;}
.y8f{bottom:979.313550px;}
.yba{bottom:990.278839px;}
.y8e{bottom:995.046450px;}
.y4{bottom:1003.294500px;}
.yb9{bottom:1004.566321px;}
.y8d{bottom:1010.778000px;}
.yb8{bottom:1018.767104px;}
.y8c{bottom:1026.595950px;}
.yb7{bottom:1033.053311px;}
.y8b{bottom:1042.327500px;}
.yb6{bottom:1047.340793px;}
.y89{bottom:1058.060550px;}
.yb5{bottom:1061.541576px;}
.y8a{bottom:1064.013000px;}
.y88{bottom:1073.793450px;}
.yb4{bottom:1075.827783px;}
.y53{bottom:1085.595000px;}
.y87{bottom:1089.525000px;}
.yb3{bottom:1090.029841px;}
.y2{bottom:1094.541194px;}
.y1{bottom:1111.039500px;}
.y3{bottom:1114.101000px;}
.y86{bottom:1141.059000px;}
.h7{height:19.569623px;}
.he{height:25.160645px;}
.h9{height:29.189166px;}
.h8{height:29.357161px;}
.h11{height:34.968750px;}
.h3{height:35.648581px;}
.h12{height:37.314000px;}
.hd{height:37.746000px;}
.hf{height:37.767600px;}
.h14{height:37.840919px;}
.hb{height:39.387000px;}
.h2{height:45.950459px;}
.h6{height:46.845693px;}
.h13{height:54.060000px;}
.ha{height:58.716000px;}
.h10{height:67.574459px;}
.h4{height:70.277459px;}
.hc{height:81.090000px;}
.h5{height:124.338000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:55.275450px;}
.x3{left:63.779400px;}
.x19{left:67.691250px;}
.x2a{left:68.796750px;}
.x2d{left:77.301900px;}
.x2b{left:90.141600px;}
.x1e{left:91.842450px;}
.x1c{left:96.859800px;}
.x20{left:99.325950px;}
.x1f{left:100.941600px;}
.x1d{left:104.088150px;}
.x21{left:107.234550px;}
.x2c{left:111.401550px;}
.x1{left:207.751500px;}
.xc{left:239.725500px;}
.xd{left:247.974000px;}
.x4{left:249.081000px;}
.x5{left:257.329500px;}
.x18{left:264.303000px;}
.x12{left:280.035000px;}
.x13{left:288.369000px;}
.x6{left:404.872500px;}
.x7{left:413.121000px;}
.xe{left:417.373500px;}
.x14{left:423.156000px;}
.xf{left:425.707500px;}
.x2e{left:427.068000px;}
.x15{left:431.404500px;}
.x25{left:455.725950px;}
.x22{left:464.229900px;}
.x2f{left:469.587000px;}
.x30{left:481.321465px;}
.x1a{left:569.169000px;}
.x1b{left:573.079500px;}
.x2{left:583.369500px;}
.x10{left:584.985000px;}
.x11{left:593.235000px;}
.x16{left:603.099000px;}
.x17{left:623.679000px;}
.x8{left:626.230500px;}
.x9{left:646.809000px;}
.x26{left:673.002000px;}
.x27{left:681.420000px;}
.xa{left:792.057000px;}
.x28{left:795.714000px;}
.x29{left:804.217500px;}
.xb{left:812.635500px;}
.x23{left:859.650000px;}
@media print{
.v1{vertical-align:-8.165333pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.373323pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004800pt;}
.ls4{letter-spacing:2.384505pt;}
.ls3{letter-spacing:4.379148pt;}
.ls0{letter-spacing:29.724800pt;}
.ws1{word-spacing:-50.482133pt;}
.ws0{word-spacing:-13.448856pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.602518pt;}
.ws3{word-spacing:-11.333200pt;}
.ws6{word-spacing:-8.894814pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:5.510243pt;}
._17{margin-left:-538.620267pt;}
._5{margin-left:-29.403473pt;}
._a{margin-left:-6.371200pt;}
._1{margin-left:-5.115200pt;}
._b{margin-left:-4.152000pt;}
._2{margin-left:-2.445263pt;}
._0{margin-left:-1.019988pt;}
._3{width:0.910907pt;}
._4{width:1.822595pt;}
._9{width:2.927466pt;}
._8{width:3.994667pt;}
._10{width:5.376000pt;}
._c{width:6.614400pt;}
._f{width:7.651200pt;}
._e{width:8.780963pt;}
._11{width:9.675330pt;}
._7{width:10.618667pt;}
._d{width:11.822400pt;}
._18{width:15.888613pt;}
._12{width:17.133588pt;}
._13{width:18.444012pt;}
._14{width:19.504788pt;}
._15{width:21.172800pt;}
._16{width:22.235663pt;}
._6{width:178.196800pt;}
.fs4{font-size:24.885867pt;}
.fsb{font-size:31.995733pt;}
.fs5{font-size:37.332267pt;}
.fsd{font-size:42.666667pt;}
.fs0{font-size:45.332800pt;}
.fs3{font-size:46.216000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fse{font-size:53.333333pt;}
.fsc{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs9{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fsa{font-size:80.000000pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:72.486951pt;}
.y67{bottom:72.492000pt;}
.y80{bottom:72.499867pt;}
.y18{bottom:84.433277pt;}
.y7f{bottom:86.479867pt;}
.y66{bottom:86.484000pt;}
.y17{bottom:96.454267pt;}
.y7e{bottom:100.459867pt;}
.y65{bottom:100.464000pt;}
.y16{bottom:108.472400pt;}
.y7d{bottom:114.439867pt;}
.y64{bottom:114.444000pt;}
.y7c{bottom:128.503867pt;}
.y7a{bottom:128.512933pt;}
.y63{bottom:131.149600pt;}
.y7b{bottom:133.794667pt;}
.y37{bottom:142.488400pt;}
.y79{bottom:142.492933pt;}
.y52{bottom:142.509333pt;}
.y36{bottom:156.472000pt;}
.y78{bottom:156.472933pt;}
.y51{bottom:156.489333pt;}
.y62{bottom:169.475200pt;}
.y77{bottom:170.461333pt;}
.y50{bottom:170.469333pt;}
.y35{bottom:178.469333pt;}
.y61{bottom:183.467200pt;}
.y76{bottom:184.441333pt;}
.y74{bottom:184.441733pt;}
.y4f{bottom:184.449333pt;}
.y75{bottom:189.808000pt;}
.y60{bottom:197.447200pt;}
.y73{bottom:198.505733pt;}
.y4e{bottom:198.513333pt;}
.y5f{bottom:211.427200pt;}
.y72{bottom:212.485733pt;}
.y4d{bottom:212.493333pt;}
.y34{bottom:222.479930pt;}
.y5e{bottom:225.412000pt;}
.y71{bottom:226.469333pt;}
.y4c{bottom:226.473333pt;}
.y33{bottom:235.173114pt;}
.y5d{bottom:239.484400pt;}
.y4b{bottom:240.453333pt;}
.y32{bottom:247.798299pt;}
.y70{bottom:248.466667pt;}
.y5c{bottom:253.464400pt;}
.y4a{bottom:257.158667pt;}
.y31{bottom:260.491483pt;}
.y5b{bottom:267.444400pt;}
.y30{bottom:273.184667pt;}
.y5a{bottom:281.424400pt;}
.y2f{bottom:285.814283pt;}
.y49{bottom:293.532000pt;}
.y6f{bottom:294.428400pt;}
.y59{bottom:295.488400pt;}
.y2e{bottom:298.507467pt;}
.y48{bottom:307.512000pt;}
.y6e{bottom:308.408400pt;}
.y58{bottom:309.468400pt;}
.y2d{bottom:311.134965pt;}
.y47{bottom:321.492000pt;}
.y6d{bottom:322.393200pt;}
.y57{bottom:323.452000pt;}
.y2c{bottom:323.828149pt;}
.y46{bottom:335.472000pt;}
.y2b{bottom:336.453333pt;}
.y6c{bottom:336.457200pt;}
.y56{bottom:340.081333pt;}
.y45{bottom:349.452000pt;}
.y6b{bottom:350.437200pt;}
.y2a{bottom:357.165333pt;}
.y44{bottom:363.516000pt;}
.y6a{bottom:364.428000pt;}
.yb2{bottom:377.122910pt;}
.ydf{bottom:377.201756pt;}
.y43{bottom:377.504400pt;}
.y69{bottom:378.408000pt;}
.y55{bottom:378.410667pt;}
.yde{bottom:389.144348pt;}
.yb1{bottom:389.821760pt;}
.y42{bottom:391.484400pt;}
.y68{bottom:392.388000pt;}
.y54{bottom:392.390667pt;}
.y29{bottom:401.159067pt;}
.ydd{bottom:401.163471pt;}
.yb0{bottom:402.520611pt;}
.y41{bottom:405.468000pt;}
.ydc{bottom:413.182594pt;}
.y27{bottom:415.142667pt;}
.yaf{bottom:415.144662pt;}
.y40{bottom:419.448000pt;}
.y28{bottom:420.510667pt;}
.ydb{bottom:425.200784pt;}
.yae{bottom:427.843513pt;}
.y26{bottom:429.122667pt;}
.y3f{bottom:433.512000pt;}
.yda{bottom:437.219908pt;}
.yad{bottom:440.467565pt;}
.y25{bottom:443.186667pt;}
.y23{bottom:443.196400pt;}
.y24{bottom:448.478667pt;}
.y85{bottom:448.703357pt;}
.yd9{bottom:449.163433pt;}
.y3e{bottom:450.141333pt;}
.yac{bottom:453.166415pt;}
.y22{bottom:457.176400pt;}
.yd8{bottom:461.181623pt;}
.y84{bottom:463.368518pt;}
.yab{bottom:465.789333pt;}
.y21{bottom:471.156400pt;}
.yd7{bottom:473.200746pt;}
.y83{bottom:478.033678pt;}
.yaa{bottom:481.133333pt;}
.y20{bottom:485.140000pt;}
.yd6{bottom:485.218936pt;}
.y3d{bottom:486.516400pt;}
.y82{bottom:492.698839pt;}
.yd5{bottom:497.238059pt;}
.y1f{bottom:499.120000pt;}
.y3c{bottom:500.496400pt;}
.y81{bottom:507.364000pt;}
.yd4{bottom:509.257183pt;}
.y1e{bottom:513.184000pt;}
.y1c{bottom:513.188000pt;}
.y3b{bottom:514.476400pt;}
.ya9{bottom:518.172933pt;}
.y1d{bottom:518.476000pt;}
.yd3{bottom:521.199775pt;}
.y1b{bottom:527.168000pt;}
.y3a{bottom:528.540400pt;}
.ya8{bottom:532.157733pt;}
.yd2{bottom:533.218898pt;}
.y39{bottom:542.520400pt;}
.yd1{bottom:545.238021pt;}
.ya7{bottom:546.141333pt;}
.y1a{bottom:549.165333pt;}
.y38{bottom:556.500400pt;}
.yd0{bottom:557.256211pt;}
.ya6{bottom:568.138667pt;}
.ycf{bottom:569.275334pt;}
.yce{bottom:581.217927pt;}
.ycd{bottom:593.237050pt;}
.ycc{bottom:605.256173pt;}
.ycb{bottom:617.274363pt;}
.ya5{bottom:618.482667pt;}
.y15{bottom:619.842667pt;}
.y14{bottom:627.628000pt;}
.yca{bottom:629.293486pt;}
.ya4{bottom:632.466267pt;}
.yc9{bottom:641.237012pt;}
.ya3{bottom:646.526667pt;}
.yc8{bottom:653.255202pt;}
.ya2{bottom:660.510267pt;}
.yc7{bottom:665.274325pt;}
.ya1{bottom:674.495067pt;}
.yc6{bottom:677.292515pt;}
.ya0{bottom:688.478667pt;}
.yc5{bottom:689.311638pt;}
.y13{bottom:691.802286pt;}
.yc4{bottom:701.330761pt;}
.y9e{bottom:702.463600pt;}
.y9f{bottom:707.829333pt;}
.y12{bottom:713.193675pt;}
.yc3{bottom:713.273353pt;}
.y9d{bottom:716.524000pt;}
.y11{bottom:725.140000pt;}
.yc2{bottom:725.292477pt;}
.y10{bottom:729.297333pt;}
.y9c{bottom:730.507600pt;}
.yc1{bottom:737.310667pt;}
.y9b{bottom:744.492400pt;}
.ye{bottom:750.465498pt;}
.yc0{bottom:750.614667pt;}
.yf{bottom:758.173333pt;}
.y9a{bottom:758.476000pt;}
.yb{bottom:771.852164pt;}
.yd{bottom:771.854667pt;}
.y98{bottom:772.459600pt;}
.y99{bottom:777.826667pt;}
.yc{bottom:779.565333pt;}
.y97{bottom:786.520000pt;}
.ybf{bottom:791.433149pt;}
.y8{bottom:793.168164pt;}
.ya{bottom:793.172000pt;}
.y96{bottom:800.503600pt;}
.y9{bottom:800.881333pt;}
.ybe{bottom:804.132000pt;}
.y6{bottom:814.488000pt;}
.y95{bottom:814.488400pt;}
.ybd{bottom:819.477333pt;}
.y7{bottom:822.198667pt;}
.y94{bottom:828.472000pt;}
.y93{bottom:842.456800pt;}
.y5{bottom:854.465333pt;}
.ybc{bottom:854.926089pt;}
.y92{bottom:856.516000pt;}
.y90{bottom:856.517333pt;}
.y91{bottom:861.808000pt;}
.ybb{bottom:867.624939pt;}
.y8f{bottom:870.500933pt;}
.yba{bottom:880.247857pt;}
.y8e{bottom:884.485733pt;}
.y4{bottom:891.817333pt;}
.yb9{bottom:892.947841pt;}
.y8d{bottom:898.469333pt;}
.yb8{bottom:905.570759pt;}
.y8c{bottom:912.529733pt;}
.yb7{bottom:918.269610pt;}
.y8b{bottom:926.513333pt;}
.yb6{bottom:930.969594pt;}
.y89{bottom:940.498267pt;}
.yb5{bottom:943.592512pt;}
.y8a{bottom:945.789333pt;}
.y88{bottom:954.483067pt;}
.yb4{bottom:956.291363pt;}
.y53{bottom:964.973333pt;}
.y87{bottom:968.466667pt;}
.yb3{bottom:968.915414pt;}
.y2{bottom:972.925506pt;}
.y1{bottom:987.590667pt;}
.y3{bottom:990.312000pt;}
.y86{bottom:1014.274667pt;}
.h7{height:17.395221pt;}
.he{height:22.365018pt;}
.h9{height:25.945925pt;}
.h8{height:26.095254pt;}
.h11{height:31.083333pt;}
.h3{height:31.687627pt;}
.h12{height:33.168000pt;}
.hd{height:33.552000pt;}
.hf{height:33.571200pt;}
.h14{height:33.636372pt;}
.hb{height:35.010667pt;}
.h2{height:40.844853pt;}
.h6{height:41.640616pt;}
.h13{height:48.053333pt;}
.ha{height:52.192000pt;}
.h10{height:60.066186pt;}
.h4{height:62.468853pt;}
.hc{height:72.080000pt;}
.h5{height:110.522667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:49.133733pt;}
.x3{left:56.692800pt;}
.x19{left:60.170000pt;}
.x2a{left:61.152667pt;}
.x2d{left:68.712800pt;}
.x2b{left:80.125867pt;}
.x1e{left:81.637733pt;}
.x1c{left:86.097600pt;}
.x20{left:88.289733pt;}
.x1f{left:89.725867pt;}
.x1d{left:92.522800pt;}
.x21{left:95.319600pt;}
.x2c{left:99.023600pt;}
.x1{left:184.668000pt;}
.xc{left:213.089333pt;}
.xd{left:220.421333pt;}
.x4{left:221.405333pt;}
.x5{left:228.737333pt;}
.x18{left:234.936000pt;}
.x12{left:248.920000pt;}
.x13{left:256.328000pt;}
.x6{left:359.886667pt;}
.x7{left:367.218667pt;}
.xe{left:370.998667pt;}
.x14{left:376.138667pt;}
.xf{left:378.406667pt;}
.x2e{left:379.616000pt;}
.x15{left:383.470667pt;}
.x25{left:405.089733pt;}
.x22{left:412.648800pt;}
.x2f{left:417.410667pt;}
.x30{left:427.841302pt;}
.x1a{left:505.928000pt;}
.x1b{left:509.404000pt;}
.x2{left:518.550667pt;}
.x10{left:519.986667pt;}
.x11{left:527.320000pt;}
.x16{left:536.088000pt;}
.x17{left:554.381333pt;}
.x8{left:556.649333pt;}
.x9{left:574.941333pt;}
.x26{left:598.224000pt;}
.x27{left:605.706667pt;}
.xa{left:704.050667pt;}
.x28{left:707.301333pt;}
.x29{left:714.860000pt;}
.xb{left:722.342667pt;}
.x23{left:764.133333pt;}
}




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