
    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_57b8268dedf7cc9c29765dd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_b35aef1655a7bc085efc86e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_238f9d696f3723751372ec5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_b919f776a75ac8db7c727b74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.786000;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_4d241cf2e2b7c79b2b2efb17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_f4d3cc76c6c7be448e33ada6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_86986a0ff6d30c7ebb7388ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776000;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_d6576bf8fe0441e5b6aefbfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_3e7ea2048233d77c7e27176c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972000;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_ee7d1bdecb00556bcac2b197.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.785000;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_b669b816ba9d5ab80be56bd0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-86.417370px;}
.v6{vertical-align:-1.158493px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.093992px;}
.v9{vertical-align:2.780845px;}
.v8{vertical-align:4.185808px;}
.v2{vertical-align:8.041770px;}
.v1{vertical-align:13.322850px;}
.v5{vertical-align:86.417370px;}
.v3{vertical-align:96.019254px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:32.139858px;}
.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;}
}
.ws5{word-spacing:-83.897035px;}
.ws3{word-spacing:-55.931357px;}
.ws1{word-spacing:-50.338263px;}
.ws4{word-spacing:-44.360985px;}
.ws6{word-spacing:-34.957126px;}
.ws7{word-spacing:-34.657003px;}
.wsd{word-spacing:-33.270714px;}
.ws8{word-spacing:-19.076139px;}
.wse{word-spacing:0.000000px;}
.wsc{word-spacing:263.445146px;}
.wsb{word-spacing:430.660987px;}
.wsa{word-spacing:589.886298px;}
.ws9{word-spacing:589.886478px;}
.ws2{word-spacing:2062.357929px;}
.ws0{word-spacing:3614.546013px;}
._21{margin-left:-14.690995px;}
._1{margin-left:-12.602543px;}
._38{margin-left:-10.802166px;}
._2d{margin-left:-9.145851px;}
._6{margin-left:-7.777586px;}
._3{margin-left:-6.049221px;}
._5{margin-left:-4.320877px;}
._8{margin-left:-2.808573px;}
._c{margin-left:-1.512308px;}
._35{width:1.056213px;}
._9{width:2.189373px;}
._d{width:3.859892px;}
._2{width:5.041017px;}
._4{width:6.049205px;}
._2a{width:7.129454px;}
._0{width:8.569729px;}
._29{width:9.938079px;}
._2e{width:11.234290px;}
._20{width:12.746599px;}
._10{width:14.907039px;}
._32{width:16.803726px;}
._33{width:17.849402px;}
._2c{width:19.227920px;}
._28{width:21.172317px;}
._19{width:22.900669px;}
._22{width:26.141330px;}
._24{width:29.194847px;}
._18{width:30.246166px;}
._30{width:32.190563px;}
._34{width:33.667153px;}
._1e{width:35.647268px;}
._1b{width:38.023752px;}
._36{width:42.909048px;}
._2b{width:51.634527px;}
._27{width:53.794964px;}
._1f{width:56.387496px;}
._11{width:59.628157px;}
._37{width:61.962630px;}
._15{width:66.109525px;}
._14{width:67.405730px;}
._12{width:73.022888px;}
._2f{width:79.076589px;}
._17{width:81.016528px;}
._16{width:82.312778px;}
._1a{width:85.985530px;}
._13{width:88.578059px;}
._7{width:89.658279px;}
._1c{width:97.867953px;}
._e{width:106.077627px;}
._f{width:107.157843px;}
._1d{width:111.478728px;}
._a{width:136.971925px;}
._b{width:138.052145px;}
._25{width:157.064021px;}
._26{width:158.144242px;}
._23{width:178.884470px;}
._31{width:181.909087px;}
._39{width:288.246033px;}
._3a{width:294.361733px;}
.fc5{color:rgb(250,128,114);}
.fc4{color:rgb(210,105,30);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(187,54,93);}
.fsd{font-size:48.600528px;}
.fse{font-size:58.320630px;}
.fsb{font-size:60.001584px;}
.fsa{font-size:60.012186px;}
.fsf{font-size:68.040738px;}
.fsc{font-size:72.014622px;}
.fs5{font-size:144.029064px;}
.fs8{font-size:150.030318px;}
.fs6{font-size:150.030582px;}
.fs3{font-size:192.038898px;}
.fs9{font-size:216.043422px;}
.fs2{font-size:216.044046px;}
.fs7{font-size:240.048132px;}
.fs4{font-size:240.048744px;}
.fs1{font-size:360.073110px;}
.fs0{font-size:504.101730px;}
.y0{bottom:0.000000px;}
.y5e{bottom:7.050741px;}
.y5d{bottom:53.935294px;}
.y11{bottom:59.547255px;}
.y5c{bottom:100.819851px;}
.y5b{bottom:161.492149px;}
.y5a{bottom:208.376706px;}
.y50{bottom:218.785563px;}
.y59{bottom:269.048892px;}
.y58{bottom:315.933448px;}
.y26{bottom:375.421934px;}
.y57{bottom:376.605747px;}
.y56{bottom:423.490303px;}
.y25{bottom:456.438398px;}
.y55{bottom:484.162489px;}
.y54{bottom:531.047046px;}
.y24{bottom:537.454861px;}
.y53{bottom:591.719344px;}
.y23{bottom:618.471347px;}
.y52{bottom:638.603901px;}
.y22{bottom:699.487880px;}
.y51{bottom:772.748689px;}
.y21{bottom:780.504344px;}
.y20{bottom:861.520807px;}
.y8a{bottom:890.540618px;}
.y7c{bottom:911.443206px;}
.y1f{bottom:942.537363px;}
.y7d{bottom:947.543277px;}
.y8b{bottom:971.961976px;}
.y7e{bottom:993.193489px;}
.y88{bottom:1009.245396px;}
.y1e{bottom:1023.553826px;}
.y7f{bottom:1038.948113px;}
.y80{bottom:1084.702737px;}
.y1d{bottom:1104.570290px;}
.y81{bottom:1130.457360px;}
.y82{bottom:1176.211976px;}
.y1c{bottom:1185.586753px;}
.y83{bottom:1222.071021px;}
.y1b{bottom:1266.603239px;}
.y84{bottom:1267.825635px;}
.y89{bottom:1283.773129px;}
.y85{bottom:1313.580260px;}
.y1a{bottom:1347.619703px;}
.y86{bottom:1359.334886px;}
.y87{bottom:1394.011113px;}
.y62{bottom:1464.954398px;}
.y61{bottom:1481.743752px;}
.y63{bottom:1497.942349px;}
.y12{bottom:1526.551911px;}
.y64{bottom:1575.711143px;}
.y65{bottom:1653.479937px;}
.y6a{bottom:1660.722694px;}
.y6f{bottom:1668.828713px;}
.y74{bottom:1669.288366px;}
.y6b{bottom:1669.440762px;}
.y6d{bottom:1669.600529px;}
.y71{bottom:1670.240220px;}
.y66{bottom:1731.248740px;}
.y6c{bottom:1746.693649px;}
.y70{bottom:1747.170331px;}
.y6e{bottom:1748.683013px;}
.y72{bottom:1748.938535px;}
.y42{bottom:1772.967371px;}
.y67{bottom:1809.017535px;}
.y41{bottom:1817.976453px;}
.y75{bottom:1824.513396px;}
.y78{bottom:1826.036918px;}
.y73{bottom:1848.910795px;}
.y40{bottom:1862.985535px;}
.y68{bottom:1886.786330px;}
.y77{bottom:1902.708967px;}
.y76{bottom:1927.417349px;}
.y79{bottom:1928.540027px;}
.y3e{bottom:1929.817110px;}
.y7b{bottom:1945.355913px;}
.y69{bottom:1964.555124px;}
.y3d{bottom:1974.833394px;}
.y3a{bottom:1978.695901px;}
.y7a{bottom:1979.253421px;}
.y3c{bottom:2019.849678px;}
.y39{bottom:2023.704984px;}
.y3b{bottom:2064.865962px;}
.y38{bottom:2068.714066px;}
.y27{bottom:2096.324895px;}
.y37{bottom:2113.723149px;}
.y3f{bottom:2128.247428px;}
.y36{bottom:2158.732231px;}
.y30{bottom:2213.910112px;}
.y4f{bottom:2220.479445px;}
.y34{bottom:2232.765389px;}
.y2f{bottom:2258.919195px;}
.y33{bottom:2277.781673px;}
.y4e{bottom:2301.495908px;}
.y2e{bottom:2303.928277px;}
.y32{bottom:2322.797957px;}
.y2d{bottom:2348.937360px;}
.y31{bottom:2367.814241px;}
.y4d{bottom:2382.512395px;}
.y2c{bottom:2393.946442px;}
.y35{bottom:2431.146024px;}
.y2a{bottom:2448.313458px;}
.y4c{bottom:2463.528881px;}
.y2b{bottom:2511.694890px;}
.y4b{bottom:2544.545345px;}
.y29{bottom:2577.647910px;}
.y46{bottom:2676.122909px;}
.y44{bottom:2676.122914px;}
.y47{bottom:2676.387015px;}
.y45{bottom:2744.945473px;}
.y43{bottom:2744.945526px;}
.y4a{bottom:2770.770869px;}
.y28{bottom:2835.826992px;}
.y49{bottom:2842.785455px;}
.y48{bottom:2914.800042px;}
.y10{bottom:3053.463770px;}
.yf{bottom:3134.480282px;}
.y19{bottom:3176.544395px;}
.ye{bottom:3215.496745px;}
.yd{bottom:3296.513208px;}
.y18{bottom:3296.513231px;}
.y17{bottom:3377.529741px;}
.yc{bottom:3377.529788px;}
.y16{bottom:3458.546204px;}
.yb{bottom:3458.546251px;}
.y15{bottom:3539.562691px;}
.ya{bottom:3539.562714px;}
.y9{bottom:3620.579177px;}
.y14{bottom:3701.595664px;}
.y8{bottom:3701.595734px;}
.y13{bottom:3782.612127px;}
.y7{bottom:3782.612197px;}
.y6{bottom:3863.628660px;}
.y5{bottom:3944.645123px;}
.y4{bottom:4025.661587px;}
.y3{bottom:4185.919425px;}
.y60{bottom:4468.553423px;}
.y5f{bottom:4545.003360px;}
.y2{bottom:4663.767832px;}
.y1{bottom:4824.149940px;}
.h14{height:36.925011px;}
.h15{height:44.310010px;}
.he{height:45.587141px;}
.hd{height:45.595196px;}
.h10{height:47.378596px;}
.h12{height:48.957829px;}
.hf{height:49.781004px;}
.h11{height:49.971483px;}
.h16{height:51.695014px;}
.h13{height:54.714234px;}
.h7{height:108.021798px;}
.h8{height:112.774757px;}
.hc{height:117.473739px;}
.ha{height:117.473946px;}
.h9{height:144.029173px;}
.h4{height:150.366457px;}
.h3{height:169.162488px;}
.h6{height:195.999937px;}
.hb{height:213.492993px;}
.h5{height:281.937245px;}
.h2{height:295.260095px;}
.h1{height:391.182942px;}
.h0{height:5044.500000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x4{left:87.851618px;}
.x5{left:108.215466px;}
.x12{left:160.165165px;}
.xc{left:161.835210px;}
.xe{left:176.345814px;}
.x13{left:182.857049px;}
.xd{left:184.527093px;}
.xa{left:253.866280px;}
.xb{left:420.512695px;}
.x1c{left:474.522015px;}
.x6{left:532.168252px;}
.x3{left:632.292016px;}
.x1{left:642.567681px;}
.x2{left:911.017563px;}
.xf{left:995.567311px;}
.x11{left:1011.049254px;}
.x10{left:1018.259188px;}
.x22{left:1036.328160px;}
.x21{left:1506.938307px;}
.x36{left:1790.436751px;}
.x35{left:1799.554179px;}
.x4a{left:1800.734961px;}
.x34{left:1809.093493px;}
.x33{left:1818.632808px;}
.x47{left:1823.588360px;}
.x48{left:1825.524444px;}
.x49{left:1837.691412px;}
.x7{left:1840.074102px;}
.x1e{left:1865.705792px;}
.x20{left:1868.078589px;}
.x1f{left:1870.451385px;}
.x46{left:1883.977136px;}
.x45{left:1894.173863px;}
.x37{left:1915.074215px;}
.x23{left:1948.534870px;}
.x24{left:1956.339772px;}
.x39{left:1963.863423px;}
.x3d{left:2012.652631px;}
.x8{left:2078.663268px;}
.x4b{left:2113.242798px;}
.x25{left:2147.148774px;}
.x14{left:2148.512202px;}
.x26{left:2151.496549px;}
.x15{left:2171.528942px;}
.x3e{left:2207.809418px;}
.x28{left:2329.238801px;}
.x27{left:2334.559261px;}
.x3f{left:2402.966205px;}
.x44{left:2406.647982px;}
.x52{left:2422.730544px;}
.x1d{left:2439.341886px;}
.x38{left:2500.544576px;}
.x4e{left:2501.880156px;}
.x2a{left:2524.395580px;}
.x9{left:2527.414970px;}
.x29{left:2529.716040px;}
.x4d{left:2538.836607px;}
.x3a{left:2549.333784px;}
.x4c{left:2585.122328px;}
.x1b{left:2617.867086px;}
.x18{left:2624.977559px;}
.x1a{left:2628.547315px;}
.x19{left:2639.275593px;}
.x4f{left:2716.738505px;}
.x2c{left:2719.552372px;}
.x2b{left:2724.872817px;}
.x50{left:2759.323086px;}
.x40{left:2793.279779px;}
.x51{left:2809.747036px;}
.x2d{left:2872.297869px;}
.x2e{left:2891.036649px;}
.x41{left:2988.436611px;}
.x2f{left:3070.782869px;}
.x30{left:3086.193420px;}
.x16{left:3104.658862px;}
.x17{left:3127.507502px;}
.x3b{left:3134.804085px;}
.x42{left:3183.593383px;}
.x53{left:3218.658357px;}
.x31{left:3265.939635px;}
.x32{left:3281.350187px;}
.x3c{left:3329.960962px;}
.x43{left:3378.750155px;}
@media print{
.v4{vertical-align:-76.815440pt;}
.v6{vertical-align:-1.029772pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.972437pt;}
.v9{vertical-align:2.471862pt;}
.v8{vertical-align:3.720718pt;}
.v2{vertical-align:7.148240pt;}
.v1{vertical-align:11.842533pt;}
.v5{vertical-align:76.815440pt;}
.v3{vertical-align:85.350448pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:28.568762pt;}
.ws5{word-spacing:-74.575142pt;}
.ws3{word-spacing:-49.716762pt;}
.ws1{word-spacing:-44.745122pt;}
.ws4{word-spacing:-39.431987pt;}
.ws6{word-spacing:-31.073001pt;}
.ws7{word-spacing:-30.806225pt;}
.wsd{word-spacing:-29.573968pt;}
.ws8{word-spacing:-16.956568pt;}
.wse{word-spacing:0.000000pt;}
.wsc{word-spacing:234.173463pt;}
.wsb{word-spacing:382.809766pt;}
.wsa{word-spacing:524.343376pt;}
.ws9{word-spacing:524.343536pt;}
.ws2{word-spacing:1833.207048pt;}
.ws0{word-spacing:3212.929789pt;}
._21{margin-left:-13.058662pt;}
._1{margin-left:-11.202261pt;}
._38{margin-left:-9.601925pt;}
._2d{margin-left:-8.129645pt;}
._6{margin-left:-6.913409pt;}
._3{margin-left:-5.377085pt;}
._5{margin-left:-3.840780pt;}
._8{margin-left:-2.496509pt;}
._c{margin-left:-1.344274pt;}
._35{width:0.938856pt;}
._9{width:1.946109pt;}
._d{width:3.431015pt;}
._2{width:4.480904pt;}
._4{width:5.377071pt;}
._2a{width:6.337292pt;}
._0{width:7.617537pt;}
._29{width:8.833848pt;}
._2e{width:9.986036pt;}
._20{width:11.330310pt;}
._10{width:13.250701pt;}
._32{width:14.936646pt;}
._33{width:15.866135pt;}
._2c{width:17.091485pt;}
._28{width:18.819837pt;}
._19{width:20.356150pt;}
._22{width:23.236737pt;}
._24{width:25.950976pt;}
._18{width:26.885481pt;}
._30{width:28.613834pt;}
._34{width:29.926358pt;}
._1e{width:31.686460pt;}
._1b{width:33.798891pt;}
._36{width:38.141376pt;}
._2b{width:45.897357pt;}
._27{width:47.817746pt;}
._1f{width:50.122219pt;}
._11{width:53.002806pt;}
._37{width:55.077894pt;}
._15{width:58.764022pt;}
._14{width:59.916204pt;}
._12{width:64.909233pt;}
._2f{width:70.290301pt;}
._17{width:72.014692pt;}
._16{width:73.166914pt;}
._1a{width:76.431582pt;}
._13{width:78.736052pt;}
._7{width:79.696248pt;}
._1c{width:86.993736pt;}
._e{width:94.291224pt;}
._f{width:95.251416pt;}
._1d{width:99.092202pt;}
._a{width:121.752822pt;}
._b{width:122.713018pt;}
._25{width:139.612464pt;}
._26{width:140.572659pt;}
._23{width:159.008418pt;}
._31{width:161.696966pt;}
._39{width:256.218696pt;}
._3a{width:261.654874pt;}
.fsd{font-size:43.200469pt;}
.fse{font-size:51.840560pt;}
.fsb{font-size:53.334741pt;}
.fsa{font-size:53.344165pt;}
.fsf{font-size:60.480656pt;}
.fsc{font-size:64.012997pt;}
.fs5{font-size:128.025835pt;}
.fs8{font-size:133.360283pt;}
.fs6{font-size:133.360517pt;}
.fs3{font-size:170.701243pt;}
.fs9{font-size:192.038597pt;}
.fs2{font-size:192.039152pt;}
.fs7{font-size:213.376117pt;}
.fs4{font-size:213.376661pt;}
.fs1{font-size:320.064987pt;}
.fs0{font-size:448.090427pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:6.267325pt;}
.y5d{bottom:47.942484pt;}
.y11{bottom:52.930893pt;}
.y5c{bottom:89.617645pt;}
.y5b{bottom:143.548577pt;}
.y5a{bottom:185.223739pt;}
.y50{bottom:194.476056pt;}
.y59{bottom:239.154570pt;}
.y58{bottom:280.829732pt;}
.y26{bottom:333.708386pt;}
.y57{bottom:334.760664pt;}
.y56{bottom:376.435825pt;}
.y25{bottom:405.723020pt;}
.y55{bottom:430.366657pt;}
.y54{bottom:472.041819pt;}
.y24{bottom:477.737654pt;}
.y53{bottom:525.972750pt;}
.y23{bottom:549.752309pt;}
.y52{bottom:567.647912pt;}
.y22{bottom:621.767005pt;}
.y51{bottom:686.887724pt;}
.y21{bottom:693.781639pt;}
.y20{bottom:765.796273pt;}
.y8a{bottom:791.591660pt;}
.y7c{bottom:810.171739pt;}
.y1f{bottom:837.810989pt;}
.y7d{bottom:842.260691pt;}
.y8b{bottom:863.966201pt;}
.y7e{bottom:882.838657pt;}
.y88{bottom:897.107019pt;}
.y1e{bottom:909.825623pt;}
.y7f{bottom:923.509433pt;}
.y80{bottom:964.180211pt;}
.y1d{bottom:981.840257pt;}
.y81{bottom:1004.850987pt;}
.y82{bottom:1045.521756pt;}
.y1c{bottom:1053.854891pt;}
.y83{bottom:1086.285352pt;}
.y1b{bottom:1125.869546pt;}
.y84{bottom:1126.956120pt;}
.y89{bottom:1141.131671pt;}
.y85{bottom:1167.626897pt;}
.y1a{bottom:1197.884180pt;}
.y86{bottom:1208.297676pt;}
.y87{bottom:1239.120989pt;}
.y62{bottom:1302.181687pt;}
.y61{bottom:1317.105557pt;}
.y63{bottom:1331.504311pt;}
.y12{bottom:1356.935032pt;}
.y64{bottom:1400.632127pt;}
.y65{bottom:1469.759944pt;}
.y6a{bottom:1476.197951pt;}
.y6f{bottom:1483.403300pt;}
.y74{bottom:1483.811881pt;}
.y6b{bottom:1483.947344pt;}
.y6d{bottom:1484.089360pt;}
.y71{bottom:1484.657973pt;}
.y66{bottom:1538.887769pt;}
.y6c{bottom:1552.616577pt;}
.y70{bottom:1553.040295pt;}
.y6e{bottom:1554.384900pt;}
.y72{bottom:1554.612031pt;}
.y42{bottom:1575.970996pt;}
.y67{bottom:1608.015587pt;}
.y41{bottom:1615.979069pt;}
.y75{bottom:1621.789685pt;}
.y78{bottom:1623.143927pt;}
.y73{bottom:1643.476262pt;}
.y40{bottom:1655.987143pt;}
.y68{bottom:1677.143404pt;}
.y77{bottom:1691.296859pt;}
.y76{bottom:1713.259866pt;}
.y79{bottom:1714.257802pt;}
.y3e{bottom:1715.392987pt;}
.y7b{bottom:1729.205256pt;}
.y69{bottom:1746.271221pt;}
.y3d{bottom:1755.407461pt;}
.y3a{bottom:1758.840801pt;}
.y7a{bottom:1759.336375pt;}
.y3c{bottom:1795.421936pt;}
.y39{bottom:1798.848875pt;}
.y3b{bottom:1835.436411pt;}
.y38{bottom:1838.856948pt;}
.y27{bottom:1863.399907pt;}
.y37{bottom:1878.865021pt;}
.y3f{bottom:1891.775492pt;}
.y36{bottom:1918.873095pt;}
.y30{bottom:1967.920100pt;}
.y4f{bottom:1973.759507pt;}
.y34{bottom:1984.680346pt;}
.y2f{bottom:2007.928173pt;}
.y33{bottom:2024.694821pt;}
.y4e{bottom:2045.774141pt;}
.y2e{bottom:2047.936247pt;}
.y32{bottom:2064.709295pt;}
.y2d{bottom:2087.944320pt;}
.y31{bottom:2104.723770pt;}
.y4d{bottom:2117.788795pt;}
.y2c{bottom:2127.952393pt;}
.y35{bottom:2161.018688pt;}
.y2a{bottom:2176.278629pt;}
.y4c{bottom:2189.803450pt;}
.y2b{bottom:2232.617680pt;}
.y4b{bottom:2261.818084pt;}
.y29{bottom:2291.242587pt;}
.y46{bottom:2378.775919pt;}
.y44{bottom:2378.775923pt;}
.y47{bottom:2379.010680pt;}
.y45{bottom:2439.951532pt;}
.y43{bottom:2439.951579pt;}
.y4a{bottom:2462.907439pt;}
.y28{bottom:2520.735104pt;}
.y49{bottom:2526.920405pt;}
.y48{bottom:2590.933371pt;}
.y10{bottom:2714.190018pt;}
.yf{bottom:2786.204695pt;}
.y19{bottom:2823.595017pt;}
.ye{bottom:2858.219329pt;}
.yd{bottom:2930.233963pt;}
.y18{bottom:2930.233983pt;}
.y17{bottom:3002.248659pt;}
.yc{bottom:3002.248700pt;}
.y16{bottom:3074.263293pt;}
.yb{bottom:3074.263334pt;}
.y15{bottom:3146.277947pt;}
.ya{bottom:3146.277968pt;}
.y9{bottom:3218.292602pt;}
.y14{bottom:3290.307257pt;}
.y8{bottom:3290.307319pt;}
.y13{bottom:3362.321891pt;}
.y7{bottom:3362.321953pt;}
.y6{bottom:3434.336587pt;}
.y5{bottom:3506.351221pt;}
.y4{bottom:3578.365855pt;}
.y3{bottom:3720.817267pt;}
.y60{bottom:3972.047487pt;}
.y5f{bottom:4040.002987pt;}
.y2{bottom:4145.571406pt;}
.y1{bottom:4288.133280pt;}
.h14{height:32.822232pt;}
.h15{height:39.386675pt;}
.he{height:40.521903pt;}
.hd{height:40.529063pt;}
.h10{height:42.114308pt;}
.h12{height:43.518070pt;}
.hf{height:44.249781pt;}
.h11{height:44.419096pt;}
.h16{height:45.951123pt;}
.h13{height:48.634875pt;}
.h7{height:96.019376pt;}
.h8{height:100.244229pt;}
.hc{height:104.421101pt;}
.ha{height:104.421285pt;}
.h9{height:128.025932pt;}
.h4{height:133.659073pt;}
.h3{height:150.366656pt;}
.h6{height:174.222166pt;}
.hb{height:189.771549pt;}
.h5{height:250.610885pt;}
.h2{height:262.453418pt;}
.h1{height:347.718171pt;}
.h0{height:4484.000000pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x4{left:78.090327pt;}
.x5{left:96.191525pt;}
.x12{left:142.369036pt;}
.xc{left:143.853520pt;}
.xe{left:156.751835pt;}
.x13{left:162.539599pt;}
.xd{left:164.024083pt;}
.xa{left:225.658916pt;}
.xb{left:373.789063pt;}
.x1c{left:421.797347pt;}
.x6{left:473.038447pt;}
.x3{left:562.037348pt;}
.x1{left:571.171272pt;}
.x2{left:809.793389pt;}
.xf{left:884.948720pt;}
.x11{left:898.710448pt;}
.x10{left:905.119279pt;}
.x22{left:921.180587pt;}
.x21{left:1339.500717pt;}
.x36{left:1591.499335pt;}
.x35{left:1599.603715pt;}
.x4a{left:1600.653299pt;}
.x34{left:1608.083105pt;}
.x33{left:1616.562496pt;}
.x47{left:1620.967431pt;}
.x48{left:1622.688395pt;}
.x49{left:1633.503477pt;}
.x7{left:1635.621424pt;}
.x1e{left:1658.405148pt;}
.x20{left:1660.514301pt;}
.x1f{left:1662.623453pt;}
.x46{left:1674.646343pt;}
.x45{left:1683.710100pt;}
.x37{left:1702.288191pt;}
.x23{left:1732.030996pt;}
.x24{left:1738.968686pt;}
.x39{left:1745.656376pt;}
.x3d{left:1789.024560pt;}
.x8{left:1847.700683pt;}
.x4b{left:1878.438043pt;}
.x25{left:1908.576688pt;}
.x14{left:1909.788624pt;}
.x26{left:1912.441377pt;}
.x15{left:1930.247949pt;}
.x3e{left:1962.497260pt;}
.x28{left:2070.434490pt;}
.x27{left:2075.163788pt;}
.x3f{left:2135.969960pt;}
.x44{left:2139.242651pt;}
.x52{left:2153.538261pt;}
.x1d{left:2168.303899pt;}
.x38{left:2222.706289pt;}
.x4e{left:2223.893472pt;}
.x2a{left:2243.907182pt;}
.x9{left:2246.591084pt;}
.x29{left:2248.636480pt;}
.x4d{left:2256.743651pt;}
.x3a{left:2266.074474pt;}
.x4c{left:2297.886513pt;}
.x1b{left:2326.992966pt;}
.x18{left:2333.313385pt;}
.x1a{left:2336.486502pt;}
.x19{left:2346.022749pt;}
.x4f{left:2414.878671pt;}
.x2c{left:2417.379886pt;}
.x2b{left:2422.109171pt;}
.x50{left:2452.731632pt;}
.x40{left:2482.915359pt;}
.x51{left:2497.552921pt;}
.x2d{left:2553.153661pt;}
.x2e{left:2569.810354pt;}
.x41{left:2656.388098pt;}
.x2f{left:2729.584772pt;}
.x30{left:2743.283040pt;}
.x16{left:2759.696767pt;}
.x17{left:2780.006669pt;}
.x3b{left:2786.492520pt;}
.x42{left:2829.860784pt;}
.x53{left:2861.029651pt;}
.x31{left:2903.057453pt;}
.x32{left:2916.755722pt;}
.x3c{left:2959.965299pt;}
.x43{left:3003.333471pt;}
}




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