
    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_848cc628671e0c30bc35425e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_4088ec30cfccd049c686b8b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_20092035ad5d8cfc287e104e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_9b76414527db25c92b5bc926.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2159164e5cead477a456c23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_a460817c470bf0f2a79f23b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_44fd031947587e900fb7784a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1ff0231dbb281f9a04967fe8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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:ff9;src:url('chunks/assets/font_44a2b6367197d459c90aadc4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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:ffa;src:url('chunks/assets/font_536f2f2bcb75a3094d342ec4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ce7ec0038d08b467512f4de6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033300px;}
.ls5{letter-spacing:0.079860px;}
.lsc{letter-spacing:0.122946px;}
.ls0{letter-spacing:0.187842px;}
.ls3{letter-spacing:0.189257px;}
.ls4{letter-spacing:0.189300px;}
.ls6{letter-spacing:0.229200px;}
.ls9{letter-spacing:0.272340px;}
.lsf{letter-spacing:0.335519px;}
.lsd{letter-spacing:0.909719px;}
.lse{letter-spacing:1.630197px;}
.lsb{letter-spacing:2.350616px;}
.ls10{letter-spacing:5.232412px;}
.lsa{letter-spacing:8.834566px;}
.ls1{letter-spacing:46.065046px;}
.ls11{letter-spacing:64.047018px;}
.ls7{letter-spacing:64.076417px;}
.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;}
}
.ws2{word-spacing:-35.855943px;}
.ws1{word-spacing:-14.939976px;}
.ws0{word-spacing:-12.059981px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-3.802944px;}
._6{margin-left:-2.632453px;}
._0{margin-left:-1.440825px;}
._2{width:1.002395px;}
._e{width:2.232466px;}
._a{width:3.861417px;}
._9{width:5.193301px;}
._b{width:6.813739px;}
._d{width:7.978689px;}
._5{width:9.108046px;}
._7{width:10.362534px;}
._c{width:12.363952px;}
._f{width:13.850125px;}
._13{width:17.489596px;}
._12{width:18.592718px;}
._11{width:20.498051px;}
._10{width:21.634012px;}
._1{width:100.137518px;}
._3{width:231.193804px;}
._4{width:1036.866328px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.239980px;}
.fs1{font-size:17.999971px;}
.fs4{font-size:23.759962px;}
.fsa{font-size:35.999942px;}
.fs7{font-size:38.879938px;}
.fs2{font-size:48.239923px;}
.fs0{font-size:53.999914px;}
.fs3{font-size:59.759904px;}
.fs5{font-size:71.999885px;}
.fs9{font-size:84.239865px;}
.fs6{font-size:95.759847px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.957208px;}
.y9{bottom:68.700790px;}
.y8{bottom:78.780774px;}
.y7{bottom:96.421346px;}
.yaa{bottom:135.841283px;}
.ydd{bottom:139.981276px;}
.y76{bottom:145.020668px;}
.y42{bottom:149.521261px;}
.y75{bottom:152.401256px;}
.ya9{bottom:154.381253px;}
.ydc{bottom:158.521246px;}
.y41{bottom:166.981233px;}
.y74{bottom:170.761227px;}
.ya8{bottom:172.921223px;}
.ydb{bottom:177.961215px;}
.y40{bottom:186.421202px;}
.y73{bottom:189.481197px;}
.ya7{bottom:190.201196px;}
.yda{bottom:196.501186px;}
.y3f{bottom:206.941169px;}
.ya6{bottom:207.301168px;}
.y72{bottom:207.841167px;}
.yd9{bottom:215.941154px;}
.ya5{bottom:225.661139px;}
.y3e{bottom:227.281136px;}
.y71{bottom:228.001135px;}
.yd8{bottom:234.301125px;}
.ya4{bottom:244.381109px;}
.y3d{bottom:245.641107px;}
.y70{bottom:246.361106px;}
.yd7{bottom:253.741094px;}
.ya3{bottom:262.921079px;}
.y6f{bottom:264.721076px;}
.y3c{bottom:267.061073px;}
.yd6{bottom:273.001063px;}
.ya2{bottom:281.641049px;}
.y3b{bottom:284.701044px;}
.y6e{bottom:285.961042px;}
.yd5{bottom:292.261032px;}
.ya1{bottom:300.181020px;}
.y6d{bottom:304.681013px;}
.y3a{bottom:306.481010px;}
.yd4{bottom:311.701001px;}
.ya0{bottom:318.900990px;}
.y6c{bottom:323.400983px;}
.y39{bottom:325.200980px;}
.yd3{bottom:330.780971px;}
.y9f{bottom:337.440960px;}
.y6b{bottom:341.760953px;}
.y38{bottom:346.440946px;}
.yd2{bottom:349.140941px;}
.y9e{bottom:355.980930px;}
.y6a{bottom:363.000919px;}
.yd1{bottom:366.780913px;}
.y37{bottom:367.860911px;}
.y9d{bottom:373.980902px;}
.y69{bottom:381.720889px;}
.yd0{bottom:383.880886px;}
.y36{bottom:385.500883px;}
.y9c{bottom:391.260874px;}
.y68{bottom:400.080860px;}
.ycf{bottom:402.240856px;}
.y35{bottom:403.680854px;}
.y9b{bottom:408.540846px;}
.yce{bottom:419.880828px;}
.y67{bottom:420.420827px;}
.y34{bottom:421.320826px;}
.y9a{bottom:426.900817px;}
.ycd{bottom:437.160801px;}
.y66{bottom:438.780798px;}
.y33{bottom:441.480794px;}
.y99{bottom:444.000790px;}
.ycc{bottom:455.340771px;}
.y65{bottom:456.240770px;}
.y32{bottom:462.720760px;}
.y98{bottom:463.440758px;}
.ycb{bottom:474.060742px;}
.y64{bottom:474.600741px;}
.yfa{bottom:478.380735px;}
.y31{bottom:481.440730px;}
.y97{bottom:481.800729px;}
.yca{bottom:491.700713px;}
.y63{bottom:495.120708px;}
.yf9{bottom:496.740705px;}
.y30{bottom:499.080701px;}
.yc9{bottom:509.880684px;}
.y62{bottom:513.480678px;}
.yf8{bottom:515.280676px;}
.y96{bottom:517.260672px;}
.y2f{bottom:517.440672px;}
.yc8{bottom:527.520656px;}
.y61{bottom:532.200648px;}
.yf7{bottom:534.720644px;}
.y95{bottom:535.620643px;}
.y2e{bottom:538.860638px;}
.yc7{bottom:545.880627px;}
.y60{bottom:552.720616px;}
.y94{bottom:552.900615px;}
.yf6{bottom:553.260615px;}
.y2d{bottom:557.220608px;}
.yc6{bottom:564.420597px;}
.y5f{bottom:571.080586px;}
.y93{bottom:572.340584px;}
.yf5{bottom:572.520584px;}
.y2c{bottom:575.760579px;}
.yc5{bottom:582.060569px;}
.y5e{bottom:589.620557px;}
.y92{bottom:590.700555px;}
.yf4{bottom:591.960553px;}
.y2b{bottom:594.480549px;}
.yc4{bottom:599.340541px;}
.y5d{bottom:607.980527px;}
.y91{bottom:609.060526px;}
.y2a{bottom:610.320523px;}
.yf3{bottom:610.500523px;}
.yc3{bottom:616.620513px;}
.y29{bottom:620.220508px;}
.y90{bottom:626.700497px;}
.yf2{bottom:629.040494px;}
.y5c{bottom:629.400493px;}
.yc2{bottom:634.800484px;}
.y28{bottom:638.940478px;}
.y8f{bottom:644.880468px;}
.y5b{bottom:648.120463px;}
.yf1{bottom:648.480462px;}
.yc1{bottom:653.160455px;}
.y27{bottom:656.400450px;}
.y8e{bottom:663.240439px;}
.y5a{bottom:666.660433px;}
.yf0{bottom:667.020433px;}
.yc0{bottom:671.340426px;}
.y26{bottom:674.760420px;}
.y8d{bottom:682.320408px;}
.y59{bottom:685.020404px;}
.yef{bottom:686.460402px;}
.ybf{bottom:689.700396px;}
.y25{bottom:693.480390px;}
.y8c{bottom:700.680379px;}
.yee{bottom:705.000372px;}
.y58{bottom:705.360371px;}
.ybe{bottom:707.160369px;}
.y24{bottom:712.020361px;}
.y8b{bottom:718.320351px;}
.y57{bottom:723.720342px;}
.yed{bottom:724.440341px;}
.ybd{bottom:725.520339px;}
.y23{bottom:730.740331px;}
.y8a{bottom:737.580320px;}
.y56{bottom:742.260312px;}
.yec{bottom:742.980311px;}
.ybc{bottom:744.240309px;}
.y22{bottom:749.460301px;}
.y89{bottom:755.220292px;}
.yeb{bottom:762.420280px;}
.y55{bottom:762.780280px;}
.y21{bottom:768.000271px;}
.y88{bottom:774.660261px;}
.y54{bottom:778.980254px;}
.ybb{bottom:780.420251px;}
.yea{bottom:780.960250px;}
.y20{bottom:785.640243px;}
.y53{bottom:791.580233px;}
.y87{bottom:793.020231px;}
.yba{bottom:798.780222px;}
.ye9{bottom:800.220220px;}
.y1f{bottom:803.820214px;}
.y52{bottom:809.040206px;}
.y86{bottom:811.380202px;}
.yb9{bottom:816.240194px;}
.ye8{bottom:819.660189px;}
.y1e{bottom:819.840188px;}
.y51{bottom:826.320178px;}
.y1d{bottom:829.740172px;}
.y85{bottom:829.920172px;}
.yb8{bottom:834.600165px;}
.ye7{bottom:838.200159px;}
.y50{bottom:844.680149px;}
.y84{bottom:847.560144px;}
.y1c{bottom:849.720140px;}
.yb7{bottom:853.320135px;}
.ye6{bottom:857.640128px;}
.y4f{bottom:863.400119px;}
.y83{bottom:865.920115px;}
.yb6{bottom:871.860105px;}
.y1b{bottom:873.300103px;}
.ye5{bottom:876.180098px;}
.y4e{bottom:880.860091px;}
.y82{bottom:884.460085px;}
.y1a{bottom:889.140077px;}
.yb5{bottom:890.580075px;}
.y4d{bottom:895.620067px;}
.y4c{bottom:902.640056px;}
.y81{bottom:903.000055px;}
.y19{bottom:904.260053px;}
.yb4{bottom:908.040047px;}
.y18{bottom:911.460042px;}
.ye4{bottom:914.160037px;}
.y4b{bottom:920.280028px;}
.y80{bottom:922.440024px;}
.yb3{bottom:926.400018px;}
.y17{bottom:930.180012px;}
.ye3{bottom:933.420007px;}
.y4a{bottom:938.459998px;}
.y7f{bottom:940.979994px;}
.yb2{bottom:944.039990px;}
.y16{bottom:948.719982px;}
.ye2{bottom:952.679976px;}
.y49{bottom:956.819969px;}
.y7e{bottom:959.339965px;}
.yb1{bottom:961.319962px;}
.y15{bottom:964.379957px;}
.ye1{bottom:972.119945px;}
.y13{bottom:972.479944px;}
.y14{bottom:976.259938px;}
.y7d{bottom:976.619937px;}
.yb0{bottom:979.499933px;}
.y12{bottom:990.659915px;}
.y48{bottom:993.719910px;}
.y7c{bottom:996.059906px;}
.yaf{bottom:997.139905px;}
.ye0{bottom:1009.919884px;}
.y11{bottom:1010.999882px;}
.y47{bottom:1013.159879px;}
.y7b{bottom:1014.419877px;}
.yae{bottom:1015.139876px;}
.ydf{bottom:1029.359853px;}
.y46{bottom:1030.799851px;}
.y7a{bottom:1031.699849px;}
.yad{bottom:1033.499846px;}
.y10{bottom:1039.979836px;}
.yde{bottom:1047.899823px;}
.y45{bottom:1048.979822px;}
.y79{bottom:1049.879820px;}
.yac{bottom:1051.139818px;}
.yf{bottom:1067.339792px;}
.y44{bottom:1068.419791px;}
.y78{bottom:1068.599790px;}
.y43{bottom:1085.879763px;}
.yab{bottom:1086.599761px;}
.y77{bottom:1086.959761px;}
.ye{bottom:1088.039759px;}
.y6{bottom:1112.879719px;}
.y5{bottom:1125.479699px;}
.y4{bottom:1133.759686px;}
.y3{bottom:1150.499659px;}
.yd{bottom:1154.819652px;}
.y2{bottom:1163.459638px;}
.yc{bottom:1168.679630px;}
.ya{bottom:1178.582400px;}
.y1{bottom:1196.039586px;}
.h12{height:8.295455px;}
.hd{height:8.911040px;}
.h14{height:12.199199px;}
.h6{height:12.780000px;}
.h2{height:13.104471px;}
.hc{height:13.122049px;}
.h5{height:15.836107px;}
.hf{height:17.297902px;}
.h11{height:17.321105px;}
.h13{height:24.398398px;}
.hb{height:28.343627px;}
.h7{height:32.976510px;}
.h3{height:35.167092px;}
.h1{height:39.313414px;}
.h10{height:41.522629px;}
.h4{height:43.506844px;}
.ha{height:43.565204px;}
.h8{height:52.488197px;}
.he{height:61.328925px;}
.h9{height:69.809302px;}
.h0{height:1263.000000px;}
.w2{width:4.140000px;}
.w1{width:165.960000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999827px;}
.x13{left:134.999784px;}
.x15{left:154.793752px;}
.x4{left:160.019470px;}
.x14{left:161.999728px;}
.xc{left:201.959677px;}
.x5{left:206.459670px;}
.xb{left:313.559498px;}
.xd{left:317.159596px;}
.xe{left:329.939472px;}
.x2{left:353.159877px;}
.x16{left:424.621595px;}
.x6{left:428.399315px;}
.xf{left:432.179309px;}
.x10{left:437.039301px;}
.x3{left:446.399821px;}
.x11{left:557.999107px;}
.x12{left:562.859099px;}
.x7{left:608.580000px;}
.xa{left:649.073005px;}
.x9{left:684.178905px;}
.x8{left:774.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.029600pt;}
.ls5{letter-spacing:0.070987pt;}
.lsc{letter-spacing:0.109286pt;}
.ls0{letter-spacing:0.166971pt;}
.ls3{letter-spacing:0.168228pt;}
.ls4{letter-spacing:0.168266pt;}
.ls6{letter-spacing:0.203733pt;}
.ls9{letter-spacing:0.242080pt;}
.lsf{letter-spacing:0.298240pt;}
.lsd{letter-spacing:0.808639pt;}
.lse{letter-spacing:1.449064pt;}
.lsb{letter-spacing:2.089437pt;}
.ls10{letter-spacing:4.651033pt;}
.lsa{letter-spacing:7.852947pt;}
.ls1{letter-spacing:40.946708pt;}
.ls11{letter-spacing:56.930682pt;}
.ls7{letter-spacing:56.956816pt;}
.ws2{word-spacing:-31.871949pt;}
.ws1{word-spacing:-13.279979pt;}
.ws0{word-spacing:-10.719983pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-3.380395pt;}
._6{margin-left:-2.339958pt;}
._0{margin-left:-1.280733pt;}
._2{width:0.891018pt;}
._e{width:1.984414pt;}
._a{width:3.432371pt;}
._9{width:4.616267pt;}
._b{width:6.056657pt;}
._d{width:7.092168pt;}
._5{width:8.096041pt;}
._7{width:9.211142pt;}
._c{width:10.990180pt;}
._f{width:12.311222pt;}
._13{width:15.546308pt;}
._12{width:16.526860pt;}
._11{width:18.220490pt;}
._10{width:19.230233pt;}
._1{width:89.011127pt;}
._3{width:205.505603pt;}
._4{width:921.658958pt;}
.fs8{font-size:10.879983pt;}
.fs1{font-size:15.999974pt;}
.fs4{font-size:21.119966pt;}
.fsa{font-size:31.999949pt;}
.fs7{font-size:34.559945pt;}
.fs2{font-size:42.879931pt;}
.fs0{font-size:47.999923pt;}
.fs3{font-size:53.119915pt;}
.fs5{font-size:63.999898pt;}
.fs9{font-size:74.879880pt;}
.fs6{font-size:85.119864pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.517518pt;}
.y9{bottom:61.067369pt;}
.y8{bottom:70.027355pt;}
.y7{bottom:85.707863pt;}
.yaa{bottom:120.747807pt;}
.ydd{bottom:124.427801pt;}
.y76{bottom:128.907260pt;}
.y42{bottom:132.907787pt;}
.y75{bottom:135.467783pt;}
.ya9{bottom:137.227780pt;}
.ydc{bottom:140.907775pt;}
.y41{bottom:148.427763pt;}
.y74{bottom:151.787757pt;}
.ya8{bottom:153.707754pt;}
.ydb{bottom:158.187747pt;}
.y40{bottom:165.707735pt;}
.y73{bottom:168.427731pt;}
.ya7{bottom:169.067729pt;}
.yda{bottom:174.667721pt;}
.y3f{bottom:183.947706pt;}
.ya6{bottom:184.267705pt;}
.y72{bottom:184.747704pt;}
.yd9{bottom:191.947693pt;}
.ya5{bottom:200.587679pt;}
.y3e{bottom:202.027677pt;}
.y71{bottom:202.667676pt;}
.yd8{bottom:208.267667pt;}
.ya4{bottom:217.227652pt;}
.y3d{bottom:218.347651pt;}
.y70{bottom:218.987650pt;}
.yd7{bottom:225.547639pt;}
.ya3{bottom:233.707626pt;}
.y6f{bottom:235.307624pt;}
.y3c{bottom:237.387620pt;}
.yd6{bottom:242.667612pt;}
.ya2{bottom:250.347599pt;}
.y3b{bottom:253.067595pt;}
.y6e{bottom:254.187593pt;}
.yd5{bottom:259.787584pt;}
.ya1{bottom:266.827573pt;}
.y6d{bottom:270.827567pt;}
.y3a{bottom:272.427564pt;}
.yd4{bottom:277.067557pt;}
.ya0{bottom:283.467546pt;}
.y6c{bottom:287.467540pt;}
.y39{bottom:289.067537pt;}
.yd3{bottom:294.027530pt;}
.y9f{bottom:299.947520pt;}
.y6b{bottom:303.787514pt;}
.y38{bottom:307.947507pt;}
.yd2{bottom:310.347503pt;}
.y9e{bottom:316.427494pt;}
.y6a{bottom:322.667484pt;}
.yd1{bottom:326.027478pt;}
.y37{bottom:326.987477pt;}
.y9d{bottom:332.427468pt;}
.y69{bottom:339.307457pt;}
.yd0{bottom:341.227454pt;}
.y36{bottom:342.667452pt;}
.y9c{bottom:347.787444pt;}
.y68{bottom:355.627431pt;}
.ycf{bottom:357.547428pt;}
.y35{bottom:358.827426pt;}
.y9b{bottom:363.147419pt;}
.yce{bottom:373.227403pt;}
.y67{bottom:373.707402pt;}
.y34{bottom:374.507401pt;}
.y9a{bottom:379.467393pt;}
.ycd{bottom:388.587378pt;}
.y66{bottom:390.027376pt;}
.y33{bottom:392.427372pt;}
.y99{bottom:394.667369pt;}
.ycc{bottom:404.747352pt;}
.y65{bottom:405.547351pt;}
.y32{bottom:411.307342pt;}
.y98{bottom:411.947341pt;}
.ycb{bottom:421.387326pt;}
.y64{bottom:421.867325pt;}
.yfa{bottom:425.227320pt;}
.y31{bottom:427.947315pt;}
.y97{bottom:428.267315pt;}
.yca{bottom:437.067301pt;}
.y63{bottom:440.107296pt;}
.yf9{bottom:441.547294pt;}
.y30{bottom:443.627290pt;}
.yc9{bottom:453.227275pt;}
.y62{bottom:456.427270pt;}
.yf8{bottom:458.027267pt;}
.y96{bottom:459.787264pt;}
.y2f{bottom:459.947264pt;}
.yc8{bottom:468.907250pt;}
.y61{bottom:473.067243pt;}
.yf7{bottom:475.307240pt;}
.y95{bottom:476.107238pt;}
.y2e{bottom:478.987234pt;}
.yc7{bottom:485.227224pt;}
.y60{bottom:491.307214pt;}
.y94{bottom:491.467214pt;}
.yf6{bottom:491.787213pt;}
.y2d{bottom:495.307208pt;}
.yc6{bottom:501.707197pt;}
.y5f{bottom:507.627188pt;}
.y93{bottom:508.747186pt;}
.yf5{bottom:508.907186pt;}
.y2c{bottom:511.787181pt;}
.yc5{bottom:517.387172pt;}
.y5e{bottom:524.107161pt;}
.y92{bottom:525.067160pt;}
.yf4{bottom:526.187158pt;}
.y2b{bottom:528.427155pt;}
.yc4{bottom:532.747148pt;}
.y5d{bottom:540.427135pt;}
.y91{bottom:541.387134pt;}
.y2a{bottom:542.507132pt;}
.yf3{bottom:542.667132pt;}
.yc3{bottom:548.107123pt;}
.y29{bottom:551.307118pt;}
.y90{bottom:557.067109pt;}
.yf2{bottom:559.147105pt;}
.y5c{bottom:559.467105pt;}
.yc2{bottom:564.267097pt;}
.y28{bottom:567.947091pt;}
.y8f{bottom:573.227083pt;}
.y5b{bottom:576.107078pt;}
.yf1{bottom:576.427078pt;}
.yc1{bottom:580.587071pt;}
.y27{bottom:583.467066pt;}
.y8e{bottom:589.547057pt;}
.y5a{bottom:592.587052pt;}
.yf0{bottom:592.907051pt;}
.yc0{bottom:596.747045pt;}
.y26{bottom:599.787040pt;}
.y8d{bottom:606.507030pt;}
.y59{bottom:608.907026pt;}
.yef{bottom:610.187024pt;}
.ybf{bottom:613.067019pt;}
.y25{bottom:616.427014pt;}
.y8c{bottom:622.827003pt;}
.yee{bottom:626.666997pt;}
.y58{bottom:626.986997pt;}
.ybe{bottom:628.586994pt;}
.y24{bottom:632.906987pt;}
.y8b{bottom:638.506978pt;}
.y57{bottom:643.306971pt;}
.yed{bottom:643.946970pt;}
.ybd{bottom:644.906968pt;}
.y23{bottom:649.546961pt;}
.y8a{bottom:655.626951pt;}
.y56{bottom:659.786944pt;}
.yec{bottom:660.426943pt;}
.ybc{bottom:661.546942pt;}
.y22{bottom:666.186934pt;}
.y89{bottom:671.306926pt;}
.yeb{bottom:677.706916pt;}
.y55{bottom:678.026915pt;}
.y21{bottom:682.666908pt;}
.y88{bottom:688.586898pt;}
.y54{bottom:692.426892pt;}
.ybb{bottom:693.706890pt;}
.yea{bottom:694.186889pt;}
.y20{bottom:698.346883pt;}
.y53{bottom:703.626874pt;}
.y87{bottom:704.906872pt;}
.yba{bottom:710.026864pt;}
.ye9{bottom:711.306862pt;}
.y1f{bottom:714.506857pt;}
.y52{bottom:719.146849pt;}
.y86{bottom:721.226846pt;}
.yb9{bottom:725.546839pt;}
.ye8{bottom:728.586834pt;}
.y1e{bottom:728.746834pt;}
.y51{bottom:734.506825pt;}
.y1d{bottom:737.546820pt;}
.y85{bottom:737.706820pt;}
.yb8{bottom:741.866813pt;}
.ye7{bottom:745.066808pt;}
.y50{bottom:750.826799pt;}
.y84{bottom:753.386795pt;}
.y1c{bottom:755.306792pt;}
.yb7{bottom:758.506786pt;}
.ye6{bottom:762.346780pt;}
.y4f{bottom:767.466772pt;}
.y83{bottom:769.706768pt;}
.yb6{bottom:774.986760pt;}
.y1b{bottom:776.266758pt;}
.ye5{bottom:778.826754pt;}
.y4e{bottom:782.986747pt;}
.y82{bottom:786.186742pt;}
.y1a{bottom:790.346735pt;}
.yb5{bottom:791.626733pt;}
.y4d{bottom:796.106726pt;}
.y4c{bottom:802.346716pt;}
.y81{bottom:802.666716pt;}
.y19{bottom:803.786714pt;}
.yb4{bottom:807.146709pt;}
.y18{bottom:810.186704pt;}
.ye4{bottom:812.586700pt;}
.y4b{bottom:818.026691pt;}
.y80{bottom:819.946688pt;}
.yb3{bottom:823.466682pt;}
.y17{bottom:826.826677pt;}
.ye3{bottom:829.706672pt;}
.y4a{bottom:834.186665pt;}
.y7f{bottom:836.426662pt;}
.yb2{bottom:839.146657pt;}
.y16{bottom:843.306651pt;}
.ye2{bottom:846.826645pt;}
.y49{bottom:850.506639pt;}
.y7e{bottom:852.746636pt;}
.yb1{bottom:854.506633pt;}
.y15{bottom:857.226628pt;}
.ye1{bottom:864.106617pt;}
.y13{bottom:864.426617pt;}
.y14{bottom:867.786612pt;}
.y7d{bottom:868.106611pt;}
.yb0{bottom:870.666607pt;}
.y12{bottom:880.586591pt;}
.y48{bottom:883.306587pt;}
.y7c{bottom:885.386583pt;}
.yaf{bottom:886.346582pt;}
.ye0{bottom:897.706564pt;}
.y11{bottom:898.666562pt;}
.y47{bottom:900.586559pt;}
.y7b{bottom:901.706557pt;}
.yae{bottom:902.346556pt;}
.ydf{bottom:914.986536pt;}
.y46{bottom:916.266534pt;}
.y7a{bottom:917.066533pt;}
.yad{bottom:918.666530pt;}
.y10{bottom:924.426521pt;}
.yde{bottom:931.466510pt;}
.y45{bottom:932.426508pt;}
.y79{bottom:933.226507pt;}
.yac{bottom:934.346505pt;}
.yf{bottom:948.746482pt;}
.y44{bottom:949.706480pt;}
.y78{bottom:949.866480pt;}
.y43{bottom:965.226456pt;}
.yab{bottom:965.866455pt;}
.y77{bottom:966.186454pt;}
.ye{bottom:967.146453pt;}
.y6{bottom:989.226417pt;}
.y5{bottom:1000.426399pt;}
.y4{bottom:1007.786388pt;}
.y3{bottom:1022.666364pt;}
.yd{bottom:1026.506358pt;}
.y2{bottom:1034.186345pt;}
.yc{bottom:1038.826338pt;}
.ya{bottom:1047.628800pt;}
.y1{bottom:1063.146299pt;}
.h12{height:7.373738pt;}
.hd{height:7.920925pt;}
.h14{height:10.843733pt;}
.h6{height:11.360000pt;}
.h2{height:11.648419pt;}
.hc{height:11.664044pt;}
.h5{height:14.076540pt;}
.hf{height:15.375913pt;}
.h11{height:15.396538pt;}
.h13{height:21.687465pt;}
.hb{height:25.194335pt;}
.h7{height:29.312453pt;}
.h3{height:31.259637pt;}
.h1{height:34.945257pt;}
.h10{height:36.909003pt;}
.h4{height:38.672751pt;}
.ha{height:38.724626pt;}
.h8{height:46.656175pt;}
.he{height:54.514600pt;}
.h9{height:62.052713pt;}
.h0{height:1122.666667pt;}
.w2{width:3.680000pt;}
.w1{width:147.520000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999846pt;}
.x13{left:119.999808pt;}
.x15{left:137.594447pt;}
.x4{left:142.239529pt;}
.x14{left:143.999758pt;}
.xc{left:179.519713pt;}
.x5{left:183.519706pt;}
.xb{left:278.719554pt;}
.xd{left:281.919641pt;}
.xe{left:293.279531pt;}
.x2{left:313.919891pt;}
.x16{left:377.441418pt;}
.x6{left:380.799391pt;}
.xf{left:384.159385pt;}
.x10{left:388.479378pt;}
.x3{left:396.799841pt;}
.x11{left:495.999206pt;}
.x12{left:500.319199pt;}
.x7{left:540.960000pt;}
.xa{left:576.953782pt;}
.x9{left:608.159027pt;}
.x8{left:688.480000pt;}
}




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