
    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_987661314ceecec9d7262997.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_85799354bce8c020dcff61d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b4b34d4e99cb57df5b2f5997.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_bec53ca9bf48a0edaadb07bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_f20580f53b425bb068ac7c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_9102e7594c606f85b55c92c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_c5d095ac93be482b4959b931.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_d4f8d1fdf6ed2b14f07e2c36.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_3cd99c49f7e1c5e9f126f1ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_0f2e8fd6943e0be9f7c27b6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-2.400000px;}
.ls4{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.408000px;}
.ls8{letter-spacing:-0.024000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls9{letter-spacing:8.400000px;}
.ls5{letter-spacing:9.600000px;}
.lsd{letter-spacing:138.384000px;}
.ls7{letter-spacing:176.400000px;}
.ls6{letter-spacing:194.400000px;}
.lsc{letter-spacing:376.980000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.592000px;}
.ws3{word-spacing:-15.600000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
._32{margin-left:-8.118000px;}
._1b{margin-left:-7.050000px;}
._3{margin-left:-5.778000px;}
._12{margin-left:-4.548000px;}
._2{margin-left:-3.318000px;}
._b{margin-left:-2.166000px;}
._0{margin-left:-1.080000px;}
._1{width:1.380000px;}
._5{width:3.138000px;}
._10{width:4.512000px;}
._11{width:5.628000px;}
._13{width:6.660000px;}
._8{width:8.544000px;}
._7{width:9.636000px;}
._2b{width:10.656000px;}
._17{width:11.658000px;}
._1a{width:12.816000px;}
._14{width:13.824000px;}
._f{width:15.480000px;}
._1c{width:16.752000px;}
._2f{width:19.668000px;}
._c{width:20.988000px;}
._a{width:22.554000px;}
._9{width:23.616000px;}
._6{width:24.648000px;}
._16{width:25.992000px;}
._4{width:27.792000px;}
._31{width:28.872000px;}
._19{width:30.240000px;}
._d{width:31.314000px;}
._18{width:32.754000px;}
._e{width:34.434000px;}
._15{width:35.568000px;}
._2e{width:36.990000px;}
._2d{width:38.826000px;}
._24{width:48.870000px;}
._21{width:50.112000px;}
._22{width:51.840000px;}
._20{width:53.280000px;}
._26{width:55.722000px;}
._27{width:57.870000px;}
._25{width:59.040000px;}
._29{width:66.948000px;}
._2a{width:67.962000px;}
._23{width:72.990000px;}
._1e{width:82.434000px;}
._1f{width:84.180000px;}
._1d{width:85.254000px;}
._2c{width:105.480000px;}
._28{width:120.102000px;}
._30{width:377.310000px;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:6.900000px;}
.y57{bottom:7.200000px;}
.y52{bottom:30.585000px;}
.y54{bottom:30.600000px;}
.y4e{bottom:30.892500px;}
.y56{bottom:30.900000px;}
.y51{bottom:54.585000px;}
.y5a{bottom:54.600000px;}
.y7{bottom:57.337500px;}
.y59{bottom:78.300000px;}
.y9d{bottom:95.737500px;}
.y33{bottom:99.337500px;}
.ybb{bottom:112.237500px;}
.y9c{bottom:119.437500px;}
.y32{bottom:123.037500px;}
.y76{bottom:124.537500px;}
.y4d{bottom:126.637500px;}
.yba{bottom:129.937500px;}
.y3e{bottom:131.737500px;}
.y9b{bottom:143.137500px;}
.y31{bottom:146.737500px;}
.y75{bottom:148.237500px;}
.yb9{bottom:154.530000px;}
.y3d{bottom:155.745000px;}
.y9a{bottom:167.130000px;}
.y30{bottom:170.775000px;}
.yb8{bottom:178.875000px;}
.y3c{bottom:179.475000px;}
.y4c{bottom:182.175000px;}
.y74{bottom:186.975000px;}
.y99{bottom:190.875000px;}
.y2f{bottom:194.475000px;}
.y3b{bottom:203.175000px;}
.yb7{bottom:203.475000px;}
.y73{bottom:210.975000px;}
.y98{bottom:214.575000px;}
.y2e{bottom:218.175000px;}
.y4b{bottom:220.875000px;}
.y3a{bottom:227.175000px;}
.y97{bottom:238.575000px;}
.y2d{bottom:242.175000px;}
.y4a{bottom:244.575000px;}
.y72{bottom:249.675000px;}
.y39{bottom:250.875000px;}
.yb6{bottom:251.775000px;}
.y96{bottom:262.275000px;}
.y2c{bottom:265.875000px;}
.y49{bottom:268.575000px;}
.y71{bottom:273.675000px;}
.y38{bottom:274.575000px;}
.y95{bottom:285.975000px;}
.y2b{bottom:289.575000px;}
.y70{bottom:297.375000px;}
.y37{bottom:298.575000px;}
.y48{bottom:307.275000px;}
.y94{bottom:309.975000px;}
.y2a{bottom:313.575000px;}
.y6f{bottom:321.075000px;}
.y36{bottom:322.275000px;}
.y47{bottom:330.975000px;}
.y93{bottom:333.675000px;}
.y29{bottom:337.275000px;}
.y6e{bottom:345.120000px;}
.y35{bottom:346.005000px;}
.y46{bottom:355.005000px;}
.y92{bottom:357.405000px;}
.y28{bottom:361.005000px;}
.y6d{bottom:368.820000px;}
.y34{bottom:370.005000px;}
.y45{bottom:378.720000px;}
.y91{bottom:381.405000px;}
.y27{bottom:385.005000px;}
.y6c{bottom:392.505000px;}
.yb5{bottom:393.705000px;}
.y44{bottom:402.420000px;}
.y90{bottom:405.105000px;}
.y26{bottom:408.705000px;}
.y6b{bottom:416.505000px;}
.yb4{bottom:417.420000px;}
.y43{bottom:426.405000px;}
.y8f{bottom:428.820000px;}
.y25{bottom:432.405000px;}
.y6a{bottom:440.205000px;}
.yb3{bottom:441.405000px;}
.y42{bottom:450.120000px;}
.y8e{bottom:452.820000px;}
.y24{bottom:456.420000px;}
.y69{bottom:463.905000px;}
.yb2{bottom:465.120000px;}
.y41{bottom:473.820000px;}
.y8d{bottom:476.505000px;}
.y23{bottom:480.120000px;}
.y68{bottom:487.905000px;}
.yb1{bottom:488.820000px;}
.y40{bottom:497.820000px;}
.y8c{bottom:500.205000px;}
.y22{bottom:503.805000px;}
.y67{bottom:511.650000px;}
.yb0{bottom:512.850000px;}
.y21{bottom:527.850000px;}
.y66{bottom:535.350000px;}
.y3f{bottom:536.550000px;}
.y8b{bottom:539.250000px;}
.y20{bottom:551.550000px;}
.y65{bottom:559.350000px;}
.yaf{bottom:560.250000px;}
.y1f{bottom:575.250000px;}
.y8a{bottom:577.950000px;}
.y64{bottom:583.050000px;}
.yae{bottom:584.250000px;}
.y1e{bottom:599.250000px;}
.y89{bottom:601.650000px;}
.y63{bottom:606.750000px;}
.yad{bottom:607.950000px;}
.y1d{bottom:622.950000px;}
.y62{bottom:630.750000px;}
.yac{bottom:631.650000px;}
.y88{bottom:640.650000px;}
.y1c{bottom:646.650000px;}
.y61{bottom:654.450000px;}
.yab{bottom:655.650000px;}
.y87{bottom:664.350000px;}
.y1b{bottom:670.650000px;}
.yaa{bottom:679.380000px;}
.y86{bottom:688.080000px;}
.y60{bottom:693.195000px;}
.y1a{bottom:694.380000px;}
.ya9{bottom:703.080000px;}
.y85{bottom:712.095000px;}
.y19{bottom:718.080000px;}
.ya8{bottom:727.095000px;}
.y5f{bottom:732.195000px;}
.y84{bottom:735.780000px;}
.y18{bottom:742.080000px;}
.ya7{bottom:750.780000px;}
.y5e{bottom:755.880000px;}
.y83{bottom:759.780000px;}
.y17{bottom:765.780000px;}
.ya6{bottom:774.795000px;}
.y82{bottom:783.480000px;}
.y16{bottom:789.795000px;}
.y5d{bottom:794.580000px;}
.ya5{bottom:798.480000px;}
.y81{bottom:807.195000px;}
.y15{bottom:813.480000px;}
.y5c{bottom:818.580000px;}
.ya4{bottom:822.195000px;}
.y80{bottom:831.195000px;}
.y14{bottom:837.195000px;}
.y5b{bottom:842.295000px;}
.ya3{bottom:846.225000px;}
.y7f{bottom:854.925000px;}
.y13{bottom:861.225000px;}
.ya2{bottom:869.925000px;}
.y58{bottom:875.025000px;}
.y7e{bottom:878.625000px;}
.y12{bottom:884.925000px;}
.ya1{bottom:893.625000px;}
.y7d{bottom:902.625000px;}
.y11{bottom:908.625000px;}
.ya0{bottom:917.625000px;}
.y7c{bottom:926.325000px;}
.y10{bottom:932.625000px;}
.y9f{bottom:941.325000px;}
.yf{bottom:956.325000px;}
.y7b{bottom:965.025000px;}
.y55{bottom:970.725000px;}
.ye{bottom:980.025000px;}
.y7a{bottom:989.025000px;}
.yd{bottom:1004.025000px;}
.y79{bottom:1012.725000px;}
.y53{bottom:1019.355000px;}
.yc{bottom:1027.755000px;}
.y78{bottom:1036.455000px;}
.yb{bottom:1051.455000px;}
.y77{bottom:1060.455000px;}
.y50{bottom:1067.670000px;}
.ya{bottom:1075.455000px;}
.y9e{bottom:1084.155000px;}
.y9{bottom:1099.155000px;}
.y8{bottom:1122.855000px;}
.y6{bottom:1143.570000px;}
.y5{bottom:1164.255000px;}
.y4{bottom:1182.570000px;}
.y3{bottom:1200.900000px;}
.y2{bottom:1219.200000px;}
.y1{bottom:1237.500000px;}
.h13{height:23.700000px;}
.h12{height:23.737500px;}
.h11{height:24.000000px;}
.hc{height:47.400000px;}
.h10{height:47.700000px;}
.ha{height:47.737500px;}
.h7{height:50.484375px;}
.h5{height:50.800781px;}
.h9{height:51.609375px;}
.h2{height:61.435547px;}
.h4{height:65.645508px;}
.h8{height:70.664062px;}
.hb{height:71.400000px;}
.he{height:71.824219px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.h3{height:84.656250px;}
.hd{height:95.100000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:126.637500px;}
.w3{width:349.905000px;}
.w5{width:573.180000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.800000px;}
.xb{left:84.937487px;}
.x9{left:89.737487px;}
.xc{left:93.937487px;}
.x5{left:141.937487px;}
.x6{left:170.429987px;}
.x11{left:213.075000px;}
.x13{left:246.374987px;}
.x8{left:300.119987px;}
.x3{left:350.504987px;}
.xd{left:379.019987px;}
.x12{left:419.849987px;}
.x4{left:433.949987px;}
.x10{left:436.350000px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
.xe{left:744.824987px;}
.xa{left:807.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-2.133333pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.362667pt;}
.ls8{letter-spacing:-0.021333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls9{letter-spacing:7.466667pt;}
.ls5{letter-spacing:8.533333pt;}
.lsd{letter-spacing:123.008000pt;}
.ls7{letter-spacing:156.800000pt;}
.ls6{letter-spacing:172.800000pt;}
.lsc{letter-spacing:335.093333pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.637333pt;}
.ws3{word-spacing:-13.866667pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
._32{margin-left:-7.216000pt;}
._1b{margin-left:-6.266667pt;}
._3{margin-left:-5.136000pt;}
._12{margin-left:-4.042667pt;}
._2{margin-left:-2.949333pt;}
._b{margin-left:-1.925333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.226667pt;}
._5{width:2.789333pt;}
._10{width:4.010667pt;}
._11{width:5.002667pt;}
._13{width:5.920000pt;}
._8{width:7.594667pt;}
._7{width:8.565333pt;}
._2b{width:9.472000pt;}
._17{width:10.362667pt;}
._1a{width:11.392000pt;}
._14{width:12.288000pt;}
._f{width:13.760000pt;}
._1c{width:14.890667pt;}
._2f{width:17.482667pt;}
._c{width:18.656000pt;}
._a{width:20.048000pt;}
._9{width:20.992000pt;}
._6{width:21.909333pt;}
._16{width:23.104000pt;}
._4{width:24.704000pt;}
._31{width:25.664000pt;}
._19{width:26.880000pt;}
._d{width:27.834667pt;}
._18{width:29.114667pt;}
._e{width:30.608000pt;}
._15{width:31.616000pt;}
._2e{width:32.880000pt;}
._2d{width:34.512000pt;}
._24{width:43.440000pt;}
._21{width:44.544000pt;}
._22{width:46.080000pt;}
._20{width:47.360000pt;}
._26{width:49.530667pt;}
._27{width:51.440000pt;}
._25{width:52.480000pt;}
._29{width:59.509333pt;}
._2a{width:60.410667pt;}
._23{width:64.880000pt;}
._1e{width:73.274667pt;}
._1f{width:74.826667pt;}
._1d{width:75.781333pt;}
._2c{width:93.760000pt;}
._28{width:106.757333pt;}
._30{width:335.386667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:6.133333pt;}
.y57{bottom:6.400000pt;}
.y52{bottom:27.186667pt;}
.y54{bottom:27.200000pt;}
.y4e{bottom:27.460000pt;}
.y56{bottom:27.466667pt;}
.y51{bottom:48.520000pt;}
.y5a{bottom:48.533333pt;}
.y7{bottom:50.966667pt;}
.y59{bottom:69.600000pt;}
.y9d{bottom:85.100000pt;}
.y33{bottom:88.300000pt;}
.ybb{bottom:99.766667pt;}
.y9c{bottom:106.166667pt;}
.y32{bottom:109.366667pt;}
.y76{bottom:110.700000pt;}
.y4d{bottom:112.566667pt;}
.yba{bottom:115.500000pt;}
.y3e{bottom:117.100000pt;}
.y9b{bottom:127.233333pt;}
.y31{bottom:130.433333pt;}
.y75{bottom:131.766667pt;}
.yb9{bottom:137.360000pt;}
.y3d{bottom:138.440000pt;}
.y9a{bottom:148.560000pt;}
.y30{bottom:151.800000pt;}
.yb8{bottom:159.000000pt;}
.y3c{bottom:159.533333pt;}
.y4c{bottom:161.933333pt;}
.y74{bottom:166.200000pt;}
.y99{bottom:169.666667pt;}
.y2f{bottom:172.866667pt;}
.y3b{bottom:180.600000pt;}
.yb7{bottom:180.866667pt;}
.y73{bottom:187.533333pt;}
.y98{bottom:190.733333pt;}
.y2e{bottom:193.933333pt;}
.y4b{bottom:196.333333pt;}
.y3a{bottom:201.933333pt;}
.y97{bottom:212.066667pt;}
.y2d{bottom:215.266667pt;}
.y4a{bottom:217.400000pt;}
.y72{bottom:221.933333pt;}
.y39{bottom:223.000000pt;}
.yb6{bottom:223.800000pt;}
.y96{bottom:233.133333pt;}
.y2c{bottom:236.333333pt;}
.y49{bottom:238.733333pt;}
.y71{bottom:243.266667pt;}
.y38{bottom:244.066667pt;}
.y95{bottom:254.200000pt;}
.y2b{bottom:257.400000pt;}
.y70{bottom:264.333333pt;}
.y37{bottom:265.400000pt;}
.y48{bottom:273.133333pt;}
.y94{bottom:275.533333pt;}
.y2a{bottom:278.733333pt;}
.y6f{bottom:285.400000pt;}
.y36{bottom:286.466667pt;}
.y47{bottom:294.200000pt;}
.y93{bottom:296.600000pt;}
.y29{bottom:299.800000pt;}
.y6e{bottom:306.773333pt;}
.y35{bottom:307.560000pt;}
.y46{bottom:315.560000pt;}
.y92{bottom:317.693333pt;}
.y28{bottom:320.893333pt;}
.y6d{bottom:327.840000pt;}
.y34{bottom:328.893333pt;}
.y45{bottom:336.640000pt;}
.y91{bottom:339.026667pt;}
.y27{bottom:342.226667pt;}
.y6c{bottom:348.893333pt;}
.yb5{bottom:349.960000pt;}
.y44{bottom:357.706667pt;}
.y90{bottom:360.093333pt;}
.y26{bottom:363.293333pt;}
.y6b{bottom:370.226667pt;}
.yb4{bottom:371.040000pt;}
.y43{bottom:379.026667pt;}
.y8f{bottom:381.173333pt;}
.y25{bottom:384.360000pt;}
.y6a{bottom:391.293333pt;}
.yb3{bottom:392.360000pt;}
.y42{bottom:400.106667pt;}
.y8e{bottom:402.506667pt;}
.y24{bottom:405.706667pt;}
.y69{bottom:412.360000pt;}
.yb2{bottom:413.440000pt;}
.y41{bottom:421.173333pt;}
.y8d{bottom:423.560000pt;}
.y23{bottom:426.773333pt;}
.y68{bottom:433.693333pt;}
.yb1{bottom:434.506667pt;}
.y40{bottom:442.506667pt;}
.y8c{bottom:444.626667pt;}
.y22{bottom:447.826667pt;}
.y67{bottom:454.800000pt;}
.yb0{bottom:455.866667pt;}
.y21{bottom:469.200000pt;}
.y66{bottom:475.866667pt;}
.y3f{bottom:476.933333pt;}
.y8b{bottom:479.333333pt;}
.y20{bottom:490.266667pt;}
.y65{bottom:497.200000pt;}
.yaf{bottom:498.000000pt;}
.y1f{bottom:511.333333pt;}
.y8a{bottom:513.733333pt;}
.y64{bottom:518.266667pt;}
.yae{bottom:519.333333pt;}
.y1e{bottom:532.666667pt;}
.y89{bottom:534.800000pt;}
.y63{bottom:539.333333pt;}
.yad{bottom:540.400000pt;}
.y1d{bottom:553.733333pt;}
.y62{bottom:560.666667pt;}
.yac{bottom:561.466667pt;}
.y88{bottom:569.466667pt;}
.y1c{bottom:574.800000pt;}
.y61{bottom:581.733333pt;}
.yab{bottom:582.800000pt;}
.y87{bottom:590.533333pt;}
.y1b{bottom:596.133333pt;}
.yaa{bottom:603.893333pt;}
.y86{bottom:611.626667pt;}
.y60{bottom:616.173333pt;}
.y1a{bottom:617.226667pt;}
.ya9{bottom:624.960000pt;}
.y85{bottom:632.973333pt;}
.y19{bottom:638.293333pt;}
.ya8{bottom:646.306667pt;}
.y5f{bottom:650.840000pt;}
.y84{bottom:654.026667pt;}
.y18{bottom:659.626667pt;}
.ya7{bottom:667.360000pt;}
.y5e{bottom:671.893333pt;}
.y83{bottom:675.360000pt;}
.y17{bottom:680.693333pt;}
.ya6{bottom:688.706667pt;}
.y82{bottom:696.426667pt;}
.y16{bottom:702.040000pt;}
.y5d{bottom:706.293333pt;}
.ya5{bottom:709.760000pt;}
.y81{bottom:717.506667pt;}
.y15{bottom:723.093333pt;}
.y5c{bottom:727.626667pt;}
.ya4{bottom:730.840000pt;}
.y80{bottom:738.840000pt;}
.y14{bottom:744.173333pt;}
.y5b{bottom:748.706667pt;}
.ya3{bottom:752.200000pt;}
.y7f{bottom:759.933333pt;}
.y13{bottom:765.533333pt;}
.ya2{bottom:773.266667pt;}
.y58{bottom:777.800000pt;}
.y7e{bottom:781.000000pt;}
.y12{bottom:786.600000pt;}
.ya1{bottom:794.333333pt;}
.y7d{bottom:802.333333pt;}
.y11{bottom:807.666667pt;}
.ya0{bottom:815.666667pt;}
.y7c{bottom:823.400000pt;}
.y10{bottom:829.000000pt;}
.y9f{bottom:836.733333pt;}
.yf{bottom:850.066667pt;}
.y7b{bottom:857.800000pt;}
.y55{bottom:862.866667pt;}
.ye{bottom:871.133333pt;}
.y7a{bottom:879.133333pt;}
.yd{bottom:892.466667pt;}
.y79{bottom:900.200000pt;}
.y53{bottom:906.093333pt;}
.yc{bottom:913.560000pt;}
.y78{bottom:921.293333pt;}
.yb{bottom:934.626667pt;}
.y77{bottom:942.626667pt;}
.y50{bottom:949.040000pt;}
.ya{bottom:955.960000pt;}
.y9e{bottom:963.693333pt;}
.y9{bottom:977.026667pt;}
.y8{bottom:998.093333pt;}
.y6{bottom:1016.506667pt;}
.y5{bottom:1034.893333pt;}
.y4{bottom:1051.173333pt;}
.y3{bottom:1067.466667pt;}
.y2{bottom:1083.733333pt;}
.y1{bottom:1100.000000pt;}
.h13{height:21.066667pt;}
.h12{height:21.100000pt;}
.h11{height:21.333333pt;}
.hc{height:42.133333pt;}
.h10{height:42.400000pt;}
.ha{height:42.433333pt;}
.h7{height:44.875000pt;}
.h5{height:45.156250pt;}
.h9{height:45.875000pt;}
.h2{height:54.609375pt;}
.h4{height:58.351562pt;}
.h8{height:62.812500pt;}
.hb{height:63.466667pt;}
.he{height:63.843750pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.h3{height:75.250000pt;}
.hd{height:84.533333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.566667pt;}
.w3{width:311.026667pt;}
.w5{width:509.493333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.933333pt;}
.xb{left:75.499988pt;}
.x9{left:79.766655pt;}
.xc{left:83.499988pt;}
.x5{left:126.166655pt;}
.x6{left:151.493322pt;}
.x11{left:189.400000pt;}
.x13{left:218.999988pt;}
.x8{left:266.773322pt;}
.x3{left:311.559988pt;}
.xd{left:336.906655pt;}
.x12{left:373.199988pt;}
.x4{left:385.733322pt;}
.x10{left:387.866667pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
.xe{left:662.066655pt;}
.xa{left:718.106655pt;}
}




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