
    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_c4223245cb40c22233e19869.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_d6ed3e720131d40aedb89d24.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_0cbb557236c68ff1a311012a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_0cc049879906abdd6fb5a477.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_667d7ec130e6f399feaa0158.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_f3f05f4d5e4b7393eb5910cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_9391fa68bb51b10c28a92698.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_d1bed4b8f5ea4d5e3728b594.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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;}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.498522px;}
.v1{vertical-align:-4.668000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:52.748915px;}
.ls2{letter-spacing:300.978014px;}
.ls3{letter-spacing:328.690363px;}
.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;}
}
.ws19{word-spacing:-311.823310px;}
.ws9{word-spacing:-19.823579px;}
.ws28{word-spacing:-15.637104px;}
.ws14{word-spacing:-14.280391px;}
.ws12{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.035866px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:5.373823px;}
.ws16{word-spacing:5.439277px;}
.wsf{word-spacing:5.624884px;}
.ws11{word-spacing:5.635641px;}
.ws13{word-spacing:5.684660px;}
.ws15{word-spacing:5.701096px;}
.ws27{word-spacing:6.157205px;}
.ws1{word-spacing:6.159278px;}
.wsa{word-spacing:6.182079px;}
.ws6{word-spacing:6.224732px;}
.ws0{word-spacing:8.237588px;}
.wse{word-spacing:8.323665px;}
.ws5{word-spacing:12.660557px;}
.wsd{word-spacing:12.696422px;}
.ws2{word-spacing:16.880672px;}
.ws4{word-spacing:17.454519px;}
.ws3{word-spacing:17.502340px;}
.wsc{word-spacing:21.716465px;}
.wsb{word-spacing:21.784068px;}
.ws20{word-spacing:71.695334px;}
.ws22{word-spacing:84.391757px;}
.ws1b{word-spacing:90.739968px;}
.ws1a{word-spacing:98.092416px;}
.ws1d{word-spacing:103.436390px;}
.ws21{word-spacing:106.628429px;}
.ws1c{word-spacing:111.900672px;}
.ws1e{word-spacing:112.976640px;}
.ws1f{word-spacing:135.213312px;}
.ws23{word-spacing:152.141875px;}
.ws24{word-spacing:178.510914px;}
.ws17{word-spacing:207.845512px;}
.ws26{word-spacing:217.948424px;}
.ws25{word-spacing:228.186912px;}
.ws18{word-spacing:248.145532px;}
._11{margin-left:-301.026296px;}
._1{margin-left:-6.972253px;}
._4{margin-left:-5.432732px;}
._8{margin-left:-3.416791px;}
._2{margin-left:-2.238007px;}
._9{margin-left:-1.040102px;}
._5{width:1.300720px;}
._0{width:2.324084px;}
._1a{width:12.696422px;}
._d{width:20.923057px;}
._e{width:22.340941px;}
._6{width:23.384273px;}
._c{width:26.973139px;}
._b{width:29.997148px;}
._3{width:37.529659px;}
._7{width:76.213528px;}
._1d{width:84.427622px;}
._24{width:90.775834px;}
._27{width:97.330901px;}
._23{width:100.518088px;}
._20{width:103.472256px;}
._1e{width:106.628429px;}
._15{width:109.820467px;}
._26{width:112.738699px;}
._17{width:122.790696px;}
._21{width:125.708928px;}
._22{width:128.900966px;}
._12{width:131.483290px;}
._16{width:135.249178px;}
._18{width:141.597389px;}
._13{width:158.131430px;}
._f{width:165.375971px;}
._a{width:184.431971px;}
._2c{width:205.672436px;}
._1f{width:224.482790px;}
._2d{width:228.283476px;}
._28{width:232.516685px;}
._25{width:240.012595px;}
._1c{width:243.455693px;}
._10{width:264.461758px;}
._1b{width:272.040576px;}
._2a{width:280.217933px;}
._29{width:291.049344px;}
._19{width:311.134080px;}
._14{width:342.920560px;}
._2b{width:430.387200px;}
.fc4{color:rgb(26,71,111);}
.fc3{color:rgb(13,128,51);}
.fc2{color:rgb(231,242,235);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:29.887800px;}
.fs5{font-size:31.190172px;}
.fs3{font-size:35.865600px;}
.fs6{font-size:39.011856px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.985500px;}
.y8d{bottom:14.701869px;}
.yac{bottom:18.878262px;}
.y8c{bottom:25.432544px;}
.yab{bottom:39.627452px;}
.y76{bottom:41.570802px;}
.y8a{bottom:42.163029px;}
.y6e{bottom:42.334500px;}
.y55{bottom:44.235000px;}
.y1b{bottom:48.180000px;}
.ya7{bottom:49.173000px;}
.yaa{bottom:50.358126px;}
.y6d{bottom:59.101500px;}
.y8{bottom:59.655000px;}
.ya6{bottom:60.231000px;}
.ya8{bottom:62.446008px;}
.y27{bottom:63.064500px;}
.y54{bottom:64.558500px;}
.y33{bottom:68.334000px;}
.y1a{bottom:68.503500px;}
.y61{bottom:68.988000px;}
.ya5{bottom:70.692000px;}
.y7{bottom:73.852500px;}
.y6c{bottom:79.425000px;}
.ya4{bottom:81.153000px;}
.y26{bottom:83.388000px;}
.y47{bottom:83.490000px;}
.y3d{bottom:86.181000px;}
.y32{bottom:86.266500px;}
.yb5{bottom:86.434500px;}
.y6{bottom:88.048500px;}
.y19{bottom:88.828500px;}
.y53{bottom:89.365500px;}
.ya3{bottom:91.614000px;}
.y60{bottom:93.793500px;}
.y6b{bottom:99.750000px;}
.y8b{bottom:99.855577px;}
.ya2{bottom:102.075000px;}
.y46{bottom:103.813500px;}
.y31{bottom:104.199000px;}
.y3c{bottom:106.504500px;}
.y25{bottom:108.195000px;}
.y52{bottom:109.689000px;}
.y82{bottom:110.396793px;}
.yb4{bottom:111.241500px;}
.y5f{bottom:111.727500px;}
.ya9{bottom:112.312333px;}
.ya1{bottom:112.536000px;}
.y18{bottom:113.635500px;}
.ya0{bottom:122.995500px;}
.y45{bottom:124.138500px;}
.y6a{bottom:124.557000px;}
.y30{bottom:125.121000px;}
.y3b{bottom:126.828000px;}
.yd{bottom:127.627500px;}
.y24{bottom:128.518500px;}
.y7b{bottom:129.009504px;}
.y5e{bottom:129.660000px;}
.y51{bottom:130.014000px;}
.yb3{bottom:131.566500px;}
.y9f{bottom:133.456500px;}
.y17{bottom:133.959000px;}
.y74{bottom:134.513652px;}
.y2f{bottom:143.053500px;}
.y9e{bottom:143.917500px;}
.y69{bottom:144.880500px;}
.y72{bottom:146.004768px;}
.y5d{bottom:147.592500px;}
.y23{bottom:148.843500px;}
.y44{bottom:148.945500px;}
.y3a{bottom:151.635000px;}
.y86{bottom:152.764248px;}
.y75{bottom:153.150504px;}
.y16{bottom:154.282500px;}
.y9d{bottom:154.378500px;}
.y50{bottom:154.821000px;}
.yb2{bottom:155.824500px;}
.y5{bottom:157.143000px;}
.y70{bottom:157.833858px;}
.y7f{bottom:163.108667px;}
.y9c{bottom:164.839500px;}
.y68{bottom:165.204000px;}
.y2e{bottom:165.469500px;}
.y5c{bottom:165.525000px;}
.y22{bottom:169.167000px;}
.y43{bottom:169.269000px;}
.y7a{bottom:169.566384px;}
.y79{bottom:170.133698px;}
.y39{bottom:171.958500px;}
.y88{bottom:174.491148px;}
.y15{bottom:174.606000px;}
.y4f{bottom:175.144500px;}
.y9b{bottom:175.300500px;}
.y85{bottom:177.098376px;}
.y7d{bottom:181.274769px;}
.y5b{bottom:183.457500px;}
.y83{bottom:183.749222px;}
.y9a{bottom:185.761500px;}
.y2d{bottom:185.793000px;}
.y77{bottom:189.374075px;}
.y21{bottom:189.490500px;}
.yc{bottom:189.691500px;}
.y67{bottom:190.011000px;}
.yb1{bottom:191.880000px;}
.y38{bottom:192.282000px;}
.y42{bottom:194.076000px;}
.y14{bottom:194.929500px;}
.y73{bottom:195.469677px;}
.y99{bottom:196.221000px;}
.y4{bottom:196.236000px;}
.y4e{bottom:199.951500px;}
.y80{bottom:201.287658px;}
.y78{bottom:201.975677px;}
.y5a{bottom:204.379500px;}
.y2c{bottom:206.116500px;}
.y98{bottom:206.682000px;}
.y7e{bottom:210.147405px;}
.y66{bottom:210.334500px;}
.y89{bottom:210.352604px;}
.y7c{bottom:211.016481px;}
.yb0{bottom:212.203500px;}
.y20{bottom:214.297500px;}
.y41{bottom:214.399500px;}
.y87{bottom:216.411995px;}
.y37{bottom:217.089000px;}
.y97{bottom:217.143000px;}
.y4d{bottom:217.884000px;}
.y71{bottom:219.115787px;}
.y13{bottom:219.736500px;}
.y6f{bottom:221.940284px;}
.y2b{bottom:226.441500px;}
.y59{bottom:226.795500px;}
.y96{bottom:227.604000px;}
.yb6{bottom:228.054000px;}
.y81{bottom:228.542847px;}
.y3{bottom:229.944000px;}
.y65{bottom:230.658000px;}
.y1f{bottom:234.621000px;}
.y4c{bottom:235.816500px;}
.yaf{bottom:237.010500px;}
.y36{bottom:237.412500px;}
.y95{bottom:238.065000px;}
.y40{bottom:239.206500px;}
.y84{bottom:239.877047px;}
.y12{bottom:240.061500px;}
.y58{bottom:247.119000px;}
.y94{bottom:248.526000px;}
.y2a{bottom:251.248500px;}
.yb{bottom:251.754000px;}
.y4b{bottom:253.749000px;}
.y1e{bottom:254.944500px;}
.y64{bottom:255.465000px;}
.yae{bottom:257.334000px;}
.y35{bottom:257.737500px;}
.y93{bottom:258.987000px;}
.y3f{bottom:259.530000px;}
.y11{bottom:260.385000px;}
.y92{bottom:269.446500px;}
.y29{bottom:271.572000px;}
.y4a{bottom:271.681500px;}
.y57{bottom:271.926000px;}
.y1d{bottom:275.269500px;}
.y63{bottom:275.790000px;}
.y34{bottom:278.061000px;}
.y3e{bottom:279.853500px;}
.y91{bottom:279.907500px;}
.yad{bottom:281.593500px;}
.y2{bottom:285.007500px;}
.y10{bottom:285.192000px;}
.y90{bottom:291.624000px;}
.y28{bottom:291.895500px;}
.y56{bottom:292.249500px;}
.y49{bottom:292.603500px;}
.y1c{bottom:295.593000px;}
.y62{bottom:296.113500px;}
.y8f{bottom:302.085000px;}
.yf{bottom:305.515500px;}
.y48{bottom:310.536000px;}
.y1{bottom:311.905500px;}
.y8e{bottom:313.143000px;}
.ya{bottom:361.560000px;}
.ye{bottom:397.629000px;}
.h6{height:26.899200px;}
.hb{height:32.530375px;}
.h5{height:34.239550px;}
.hd{height:34.959275px;}
.h4{height:35.865450px;}
.hc{height:40.688147px;}
.h8{height:44.416950px;}
.h7{height:44.422950px;}
.h9{height:44.831700px;}
.h3{height:49.090950px;}
.h2{height:61.545198px;}
.ha{height:280.800000px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w2{width:386.100000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x9{left:12.756000px;}
.xa{left:16.824000px;}
.x28{left:18.612711px;}
.x1{left:28.138500px;}
.x27{left:29.343386px;}
.x2d{left:41.587411px;}
.x29{left:43.566973px;}
.xc{left:49.090500px;}
.x11{left:76.351500px;}
.xe{left:81.819000px;}
.x22{left:97.433076px;}
.x14{left:101.018015px;}
.x2c{left:113.173500px;}
.x26{left:126.824744px;}
.x21{left:139.788461px;}
.x2e{left:143.763000px;}
.x15{left:155.781873px;}
.x23{left:161.853335px;}
.x1a{left:166.922945px;}
.x25{left:173.428944px;}
.x2{left:176.554500px;}
.xd{left:180.640500px;}
.x3{left:182.421000px;}
.xf{left:190.158000px;}
.x1c{left:193.212494px;}
.x2a{left:196.153930px;}
.x6{left:198.376500px;}
.x8{left:206.938500px;}
.x7{left:209.269500px;}
.x1f{left:212.320095px;}
.xb{left:215.400000px;}
.x4{left:217.324500px;}
.x12{left:219.272703px;}
.x18{left:220.672881px;}
.x2b{left:222.102000px;}
.x10{left:230.989500px;}
.x1d{left:232.683029px;}
.x5{left:237.625500px;}
.x1b{left:242.846390px;}
.x17{left:250.052478px;}
.x13{left:266.854614px;}
.x20{left:286.203626px;}
.x24{left:294.290861px;}
.x1e{left:295.509981px;}
.x19{left:339.555236px;}
.x16{left:374.318276px;}
@media print{
.v2{vertical-align:-13.776464pt;}
.v1{vertical-align:-4.149333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.381333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:46.887925pt;}
.ls2{letter-spacing:267.536013pt;}
.ls3{letter-spacing:292.169212pt;}
.ws19{word-spacing:-277.176276pt;}
.ws9{word-spacing:-17.620959pt;}
.ws28{word-spacing:-13.899648pt;}
.ws14{word-spacing:-12.693681pt;}
.ws12{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.031881pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:4.776731pt;}
.ws16{word-spacing:4.834913pt;}
.wsf{word-spacing:4.999897pt;}
.ws11{word-spacing:5.009459pt;}
.ws13{word-spacing:5.053031pt;}
.ws15{word-spacing:5.067641pt;}
.ws27{word-spacing:5.473071pt;}
.ws1{word-spacing:5.474914pt;}
.wsa{word-spacing:5.495182pt;}
.ws6{word-spacing:5.533096pt;}
.ws0{word-spacing:7.322300pt;}
.wse{word-spacing:7.398814pt;}
.ws5{word-spacing:11.253828pt;}
.wsd{word-spacing:11.285709pt;}
.ws2{word-spacing:15.005042pt;}
.ws4{word-spacing:15.515128pt;}
.ws3{word-spacing:15.557635pt;}
.wsc{word-spacing:19.303525pt;}
.wsb{word-spacing:19.363616pt;}
.ws20{word-spacing:63.729186pt;}
.ws22{word-spacing:75.014895pt;}
.ws1b{word-spacing:80.657749pt;}
.ws1a{word-spacing:87.193259pt;}
.ws1d{word-spacing:91.943458pt;}
.ws21{word-spacing:94.780826pt;}
.ws1c{word-spacing:99.467264pt;}
.ws1e{word-spacing:100.423680pt;}
.ws1f{word-spacing:120.189611pt;}
.ws23{word-spacing:135.237222pt;}
.ws24{word-spacing:158.676368pt;}
.ws17{word-spacing:184.751567pt;}
.ws26{word-spacing:193.731933pt;}
.ws25{word-spacing:202.832811pt;}
.ws18{word-spacing:220.573806pt;}
._11{margin-left:-267.578930pt;}
._1{margin-left:-6.197558pt;}
._4{margin-left:-4.829095pt;}
._8{margin-left:-3.037147pt;}
._2{margin-left:-1.989340pt;}
._9{margin-left:-0.924535pt;}
._5{width:1.156196pt;}
._0{width:2.065853pt;}
._1a{width:11.285709pt;}
._d{width:18.598273pt;}
._e{width:19.858614pt;}
._6{width:20.786021pt;}
._c{width:23.976123pt;}
._b{width:26.664131pt;}
._3{width:33.359697pt;}
._7{width:67.745359pt;}
._1d{width:75.046775pt;}
._24{width:80.689630pt;}
._27{width:86.516357pt;}
._23{width:89.349412pt;}
._20{width:91.975339pt;}
._1e{width:94.780826pt;}
._15{width:97.618193pt;}
._26{width:100.212177pt;}
._17{width:109.147285pt;}
._21{width:111.741269pt;}
._22{width:114.578637pt;}
._12{width:116.874035pt;}
._16{width:120.221491pt;}
._18{width:125.864346pt;}
._13{width:140.561271pt;}
._f{width:147.000863pt;}
._a{width:163.939529pt;}
._2c{width:182.819943pt;}
._1f{width:199.540258pt;}
._2d{width:202.918645pt;}
._28{width:206.681498pt;}
._25{width:213.344529pt;}
._1c{width:216.405060pt;}
._10{width:235.077118pt;}
._1b{width:241.813845pt;}
._2a{width:249.082607pt;}
._29{width:258.710528pt;}
._19{width:276.563627pt;}
._14{width:304.818276pt;}
._2b{width:382.566400pt;}
.fs7{font-size:26.566933pt;}
.fs5{font-size:27.724597pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:34.677205pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.542667pt;}
.y8d{bottom:13.068328pt;}
.yac{bottom:16.780677pt;}
.y8c{bottom:22.606705pt;}
.yab{bottom:35.224401pt;}
.y76{bottom:36.951824pt;}
.y8a{bottom:37.478248pt;}
.y6e{bottom:37.630667pt;}
.y55{bottom:39.320000pt;}
.y1b{bottom:42.826667pt;}
.ya7{bottom:43.709333pt;}
.yaa{bottom:44.762779pt;}
.y6d{bottom:52.534667pt;}
.y8{bottom:53.026667pt;}
.ya6{bottom:53.538667pt;}
.ya8{bottom:55.507562pt;}
.y27{bottom:56.057333pt;}
.y54{bottom:57.385333pt;}
.y33{bottom:60.741333pt;}
.y1a{bottom:60.892000pt;}
.y61{bottom:61.322667pt;}
.ya5{bottom:62.837333pt;}
.y7{bottom:65.646667pt;}
.y6c{bottom:70.600000pt;}
.ya4{bottom:72.136000pt;}
.y26{bottom:74.122667pt;}
.y47{bottom:74.213333pt;}
.y3d{bottom:76.605333pt;}
.y32{bottom:76.681333pt;}
.yb5{bottom:76.830667pt;}
.y6{bottom:78.265333pt;}
.y19{bottom:78.958667pt;}
.y53{bottom:79.436000pt;}
.ya3{bottom:81.434667pt;}
.y60{bottom:83.372000pt;}
.y6b{bottom:88.666667pt;}
.y8b{bottom:88.760513pt;}
.ya2{bottom:90.733333pt;}
.y46{bottom:92.278667pt;}
.y31{bottom:92.621333pt;}
.y3c{bottom:94.670667pt;}
.y25{bottom:96.173333pt;}
.y52{bottom:97.501333pt;}
.y82{bottom:98.130483pt;}
.yb4{bottom:98.881333pt;}
.y5f{bottom:99.313333pt;}
.ya9{bottom:99.833185pt;}
.ya1{bottom:100.032000pt;}
.y18{bottom:101.009333pt;}
.ya0{bottom:109.329333pt;}
.y45{bottom:110.345333pt;}
.y6a{bottom:110.717333pt;}
.y30{bottom:111.218667pt;}
.y3b{bottom:112.736000pt;}
.yd{bottom:113.446667pt;}
.y24{bottom:114.238667pt;}
.y7b{bottom:114.675115pt;}
.y5e{bottom:115.253333pt;}
.y51{bottom:115.568000pt;}
.yb3{bottom:116.948000pt;}
.y9f{bottom:118.628000pt;}
.y17{bottom:119.074667pt;}
.y74{bottom:119.567691pt;}
.y2f{bottom:127.158667pt;}
.y9e{bottom:127.926667pt;}
.y69{bottom:128.782667pt;}
.y72{bottom:129.782016pt;}
.y5d{bottom:131.193333pt;}
.y23{bottom:132.305333pt;}
.y44{bottom:132.396000pt;}
.y3a{bottom:134.786667pt;}
.y86{bottom:135.790443pt;}
.y75{bottom:136.133781pt;}
.y16{bottom:137.140000pt;}
.y9d{bottom:137.225333pt;}
.y50{bottom:137.618667pt;}
.yb2{bottom:138.510667pt;}
.y5{bottom:139.682667pt;}
.y70{bottom:140.296763pt;}
.y7f{bottom:144.985481pt;}
.y9c{bottom:146.524000pt;}
.y68{bottom:146.848000pt;}
.y2e{bottom:147.084000pt;}
.y5c{bottom:147.133333pt;}
.y22{bottom:150.370667pt;}
.y43{bottom:150.461333pt;}
.y7a{bottom:150.725675pt;}
.y79{bottom:151.229953pt;}
.y39{bottom:152.852000pt;}
.y88{bottom:155.103243pt;}
.y15{bottom:155.205333pt;}
.y4f{bottom:155.684000pt;}
.y9b{bottom:155.822667pt;}
.y85{bottom:157.420779pt;}
.y7d{bottom:161.133128pt;}
.y5b{bottom:163.073333pt;}
.y83{bottom:163.332641pt;}
.y9a{bottom:165.121333pt;}
.y2d{bottom:165.149333pt;}
.y77{bottom:168.332511pt;}
.y21{bottom:168.436000pt;}
.yc{bottom:168.614667pt;}
.y67{bottom:168.898667pt;}
.yb1{bottom:170.560000pt;}
.y38{bottom:170.917333pt;}
.y42{bottom:172.512000pt;}
.y14{bottom:173.270667pt;}
.y73{bottom:173.750824pt;}
.y99{bottom:174.418667pt;}
.y4{bottom:174.432000pt;}
.y4e{bottom:177.734667pt;}
.y80{bottom:178.922363pt;}
.y78{bottom:179.533935pt;}
.y5a{bottom:181.670667pt;}
.y2c{bottom:183.214667pt;}
.y98{bottom:183.717333pt;}
.y7e{bottom:186.797693pt;}
.y66{bottom:186.964000pt;}
.y89{bottom:186.980092pt;}
.y7c{bottom:187.570205pt;}
.yb0{bottom:188.625333pt;}
.y20{bottom:190.486667pt;}
.y41{bottom:190.577333pt;}
.y87{bottom:192.366217pt;}
.y37{bottom:192.968000pt;}
.y97{bottom:193.016000pt;}
.y4d{bottom:193.674667pt;}
.y71{bottom:194.769588pt;}
.y13{bottom:195.321333pt;}
.y6f{bottom:197.280252pt;}
.y2b{bottom:201.281333pt;}
.y59{bottom:201.596000pt;}
.y96{bottom:202.314667pt;}
.yb6{bottom:202.714667pt;}
.y81{bottom:203.149197pt;}
.y3{bottom:204.394667pt;}
.y65{bottom:205.029333pt;}
.y1f{bottom:208.552000pt;}
.y4c{bottom:209.614667pt;}
.yaf{bottom:210.676000pt;}
.y36{bottom:211.033333pt;}
.y95{bottom:211.613333pt;}
.y40{bottom:212.628000pt;}
.y84{bottom:213.224041pt;}
.y12{bottom:213.388000pt;}
.y58{bottom:219.661333pt;}
.y94{bottom:220.912000pt;}
.y2a{bottom:223.332000pt;}
.yb{bottom:223.781333pt;}
.y4b{bottom:225.554667pt;}
.y1e{bottom:226.617333pt;}
.y64{bottom:227.080000pt;}
.yae{bottom:228.741333pt;}
.y35{bottom:229.100000pt;}
.y93{bottom:230.210667pt;}
.y3f{bottom:230.693333pt;}
.y11{bottom:231.453333pt;}
.y92{bottom:239.508000pt;}
.y29{bottom:241.397333pt;}
.y4a{bottom:241.494667pt;}
.y57{bottom:241.712000pt;}
.y1d{bottom:244.684000pt;}
.y63{bottom:245.146667pt;}
.y34{bottom:247.165333pt;}
.y3e{bottom:248.758667pt;}
.y91{bottom:248.806667pt;}
.yad{bottom:250.305333pt;}
.y2{bottom:253.340000pt;}
.y10{bottom:253.504000pt;}
.y90{bottom:259.221333pt;}
.y28{bottom:259.462667pt;}
.y56{bottom:259.777333pt;}
.y49{bottom:260.092000pt;}
.y1c{bottom:262.749333pt;}
.y62{bottom:263.212000pt;}
.y8f{bottom:268.520000pt;}
.yf{bottom:271.569333pt;}
.y48{bottom:276.032000pt;}
.y1{bottom:277.249333pt;}
.y8e{bottom:278.349333pt;}
.ya{bottom:321.386667pt;}
.ye{bottom:353.448000pt;}
.h6{height:23.910400pt;}
.hb{height:28.915889pt;}
.h5{height:30.435155pt;}
.hd{height:31.074911pt;}
.h4{height:31.880400pt;}
.hc{height:36.167242pt;}
.h8{height:39.481733pt;}
.h7{height:39.487067pt;}
.h9{height:39.850400pt;}
.h3{height:43.636400pt;}
.h2{height:54.706843pt;}
.ha{height:249.600000pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w2{width:343.200000pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x9{left:11.338667pt;}
.xa{left:14.954667pt;}
.x28{left:16.544632pt;}
.x1{left:25.012000pt;}
.x27{left:26.083009pt;}
.x2d{left:36.966588pt;}
.x29{left:38.726198pt;}
.xc{left:43.636000pt;}
.x11{left:67.868000pt;}
.xe{left:72.728000pt;}
.x22{left:86.607179pt;}
.x14{left:89.793791pt;}
.x2c{left:100.598667pt;}
.x26{left:112.733105pt;}
.x21{left:124.256409pt;}
.x2e{left:127.789333pt;}
.x15{left:138.472776pt;}
.x23{left:143.869631pt;}
.x1a{left:148.375951pt;}
.x25{left:154.159061pt;}
.x2{left:156.937333pt;}
.xd{left:160.569333pt;}
.x3{left:162.152000pt;}
.xf{left:169.029333pt;}
.x1c{left:171.744439pt;}
.x2a{left:174.359048pt;}
.x6{left:176.334667pt;}
.x8{left:183.945333pt;}
.x7{left:186.017333pt;}
.x1f{left:188.728973pt;}
.xb{left:191.466667pt;}
.x4{left:193.177333pt;}
.x12{left:194.909069pt;}
.x18{left:196.153672pt;}
.x2b{left:197.424000pt;}
.x10{left:205.324000pt;}
.x1d{left:206.829359pt;}
.x5{left:211.222667pt;}
.x1b{left:215.863457pt;}
.x17{left:222.268869pt;}
.x13{left:237.204101pt;}
.x20{left:254.403223pt;}
.x24{left:261.591876pt;}
.x1e{left:262.675539pt;}
.x19{left:301.826876pt;}
.x16{left:332.727356pt;}
}




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