
    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_b0d3c91917219299de73d09b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0974d7709d8403b5723dc88f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fc3a28f223c309f357793820.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c2f7142ecc5a8e11b2b432e2.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_02c4ecf6e69917d45a22d163.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_34ae971f736cc4c37930c134.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_32253d9481b57596fdedfa25.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_5325534a47713bf52f8bfeab.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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);}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.002720px;}
.ls8{letter-spacing:101.280000px;}
.ls10{letter-spacing:687.240000px;}
.ls3{letter-spacing:700.920000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.640000px;}
.ws1{word-spacing:-13.500000px;}
.ws7{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._4{margin-left:-6.617760px;}
._13{margin-left:-5.562000px;}
._6{margin-left:-4.392000px;}
._7{margin-left:-2.880000px;}
._2{margin-left:-1.446240px;}
._1{width:1.077600px;}
._a{width:2.267040px;}
._3{width:3.545280px;}
._b{width:5.410800px;}
._9{width:6.703200px;}
._8{width:7.709040px;}
._c{width:8.964000px;}
._e{width:10.039680px;}
._d{width:11.175120px;}
._f{width:12.669120px;}
._11{width:13.900800px;}
._10{width:16.792560px;}
._19{width:18.645120px;}
._12{width:20.495760px;}
._15{width:21.764640px;}
._18{width:22.969920px;}
._17{width:24.382080px;}
._1a{width:25.589520px;}
._16{width:26.951760px;}
._1c{width:28.440480px;}
._14{width:67.646400px;}
._1b{width:85.722000px;}
._5{width:98.304000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.240000px;}
.y6e{bottom:20.340000px;}
.yc{bottom:37.080000px;}
.yb{bottom:57.060000px;}
.ya{bottom:72.576000px;}
.yb9{bottom:118.656000px;}
.y81{bottom:121.896000px;}
.y6c{bottom:125.676000px;}
.ye8{bottom:126.216000px;}
.yb8{bottom:135.936000px;}
.y80{bottom:139.176000px;}
.y3b{bottom:141.876000px;}
.y6b{bottom:142.956000px;}
.ye7{bottom:143.496000px;}
.yb7{bottom:153.210000px;}
.y7f{bottom:156.450000px;}
.y3a{bottom:159.150000px;}
.y6a{bottom:160.230000px;}
.ye6{bottom:160.590000px;}
.yb6{bottom:170.490000px;}
.y7e{bottom:173.730000px;}
.y39{bottom:176.430000px;}
.y69{bottom:177.330000px;}
.ye5{bottom:177.870000px;}
.yb5{bottom:187.590000px;}
.y7d{bottom:190.830000px;}
.y38{bottom:193.530000px;}
.y68{bottom:194.610000px;}
.ye4{bottom:195.150000px;}
.yb4{bottom:204.870000px;}
.y7c{bottom:208.110000px;}
.y37{bottom:210.810000px;}
.y67{bottom:211.890000px;}
.ye3{bottom:212.430000px;}
.yb3{bottom:222.150000px;}
.y7b{bottom:225.390000px;}
.y36{bottom:228.090000px;}
.y66{bottom:229.170000px;}
.ye2{bottom:229.710000px;}
.yb2{bottom:239.430000px;}
.y7a{bottom:242.670000px;}
.y35{bottom:245.370000px;}
.y65{bottom:246.450000px;}
.ye1{bottom:246.990000px;}
.yb1{bottom:256.710000px;}
.y79{bottom:259.950000px;}
.y34{bottom:262.650000px;}
.y64{bottom:263.550000px;}
.ye0{bottom:264.090000px;}
.yb0{bottom:273.990000px;}
.y78{bottom:277.050000px;}
.y33{bottom:279.750000px;}
.y63{bottom:280.830000px;}
.ydf{bottom:281.370000px;}
.yaf{bottom:291.090000px;}
.y77{bottom:294.330000px;}
.y32{bottom:297.030000px;}
.y62{bottom:298.110000px;}
.yde{bottom:298.650000px;}
.yae{bottom:308.370000px;}
.y76{bottom:311.610000px;}
.y31{bottom:314.310000px;}
.y61{bottom:315.390000px;}
.ydd{bottom:315.930000px;}
.yad{bottom:325.695000px;}
.y75{bottom:328.935000px;}
.y30{bottom:331.635000px;}
.y60{bottom:332.715000px;}
.ydc{bottom:333.255000px;}
.yac{bottom:342.975000px;}
.y74{bottom:346.215000px;}
.y2f{bottom:348.915000px;}
.y5f{bottom:349.995000px;}
.ydb{bottom:350.355000px;}
.yab{bottom:360.255000px;}
.y73{bottom:363.495000px;}
.y2e{bottom:366.195000px;}
.y5e{bottom:367.095000px;}
.yda{bottom:367.635000px;}
.yaa{bottom:377.355000px;}
.y72{bottom:378.255000px;}
.y8d{bottom:380.595000px;}
.y2d{bottom:383.295000px;}
.y5d{bottom:384.375000px;}
.yd9{bottom:384.915000px;}
.ya9{bottom:394.635000px;}
.y71{bottom:396.255000px;}
.y8c{bottom:397.875000px;}
.y2c{bottom:400.575000px;}
.y5c{bottom:401.655000px;}
.yd8{bottom:402.195000px;}
.ya8{bottom:411.915000px;}
.y70{bottom:414.255000px;}
.y8b{bottom:415.155000px;}
.y2b{bottom:417.855000px;}
.y5b{bottom:418.935000px;}
.yd7{bottom:419.475000px;}
.ya7{bottom:429.195000px;}
.y6d{bottom:432.255000px;}
.y8a{bottom:432.435000px;}
.y2a{bottom:435.135000px;}
.y5a{bottom:436.215000px;}
.yd6{bottom:436.755000px;}
.ya6{bottom:446.475000px;}
.y89{bottom:449.715000px;}
.y29{bottom:452.415000px;}
.y59{bottom:453.495000px;}
.yd5{bottom:454.935000px;}
.ya5{bottom:463.755000px;}
.y88{bottom:466.995000px;}
.y28{bottom:469.695000px;}
.y58{bottom:470.595000px;}
.yd4{bottom:473.295000px;}
.ya4{bottom:480.855000px;}
.y87{bottom:484.095000px;}
.y27{bottom:486.795000px;}
.y57{bottom:487.875000px;}
.yd3{bottom:491.655000px;}
.ya3{bottom:498.135000px;}
.y86{bottom:501.375000px;}
.y56{bottom:505.155000px;}
.y26{bottom:506.415000px;}
.yd2{bottom:508.935000px;}
.ya2{bottom:515.415000px;}
.y85{bottom:516.135000px;}
.y55{bottom:522.435000px;}
.y25{bottom:523.695000px;}
.yd1{bottom:526.215000px;}
.ya1{bottom:532.695000px;}
.y84{bottom:534.135000px;}
.y54{bottom:539.715000px;}
.y24{bottom:540.795000px;}
.yd0{bottom:543.495000px;}
.ya0{bottom:549.975000px;}
.y83{bottom:552.135000px;}
.y53{bottom:556.995000px;}
.y23{bottom:558.075000px;}
.ycf{bottom:558.255000px;}
.y9f{bottom:567.255000px;}
.y82{bottom:570.165000px;}
.y52{bottom:574.125000px;}
.y22{bottom:575.385000px;}
.yce{bottom:576.285000px;}
.y9e{bottom:584.385000px;}
.y51{bottom:591.405000px;}
.y21{bottom:592.665000px;}
.ycd{bottom:594.105000px;}
.y9d{bottom:601.665000px;}
.y50{bottom:608.685000px;}
.y20{bottom:609.945000px;}
.ycc{bottom:612.105000px;}
.y9c{bottom:618.945000px;}
.y4f{bottom:625.965000px;}
.y1f{bottom:627.045000px;}
.ycb{bottom:630.105000px;}
.y9b{bottom:636.225000px;}
.y4e{bottom:643.245000px;}
.y1e{bottom:644.325000px;}
.yca{bottom:648.105000px;}
.y9a{bottom:653.505000px;}
.y4d{bottom:660.345000px;}
.y1d{bottom:661.605000px;}
.yc9{bottom:666.105000px;}
.y99{bottom:670.785000px;}
.y4c{bottom:677.625000px;}
.y1c{bottom:678.885000px;}
.yc8{bottom:684.105000px;}
.y98{bottom:688.965000px;}
.y4b{bottom:694.905000px;}
.y1b{bottom:696.165000px;}
.yc7{bottom:705.345000px;}
.y97{bottom:707.325000px;}
.y4a{bottom:712.185000px;}
.y1a{bottom:713.445000px;}
.yc6{bottom:722.625000px;}
.y96{bottom:725.685000px;}
.y49{bottom:729.465000px;}
.y19{bottom:730.545000px;}
.yc5{bottom:739.905000px;}
.y95{bottom:742.965000px;}
.y48{bottom:746.745000px;}
.y18{bottom:747.825000px;}
.yc4{bottom:757.185000px;}
.y94{bottom:760.245000px;}
.y47{bottom:763.845000px;}
.y17{bottom:765.105000px;}
.yc3{bottom:774.465000px;}
.y93{bottom:777.345000px;}
.y46{bottom:781.125000px;}
.y16{bottom:782.385000px;}
.yc2{bottom:791.745000px;}
.y92{bottom:794.625000px;}
.y45{bottom:798.405000px;}
.y15{bottom:799.665000px;}
.yc1{bottom:806.505000px;}
.y91{bottom:809.385000px;}
.y44{bottom:815.685000px;}
.y14{bottom:819.105000px;}
.yc0{bottom:824.550000px;}
.y90{bottom:827.430000px;}
.y43{bottom:833.010000px;}
.y13{bottom:836.790000px;}
.ybf{bottom:842.550000px;}
.y8f{bottom:845.430000px;}
.y42{bottom:850.290000px;}
.y12{bottom:855.870000px;}
.ybe{bottom:860.550000px;}
.y8e{bottom:863.430000px;}
.y41{bottom:867.390000px;}
.y11{bottom:874.770000px;}
.ybd{bottom:878.550000px;}
.y40{bottom:884.670000px;}
.y10{bottom:893.850000px;}
.ybc{bottom:896.550000px;}
.y3f{bottom:901.950000px;}
.yf{bottom:912.390000px;}
.ybb{bottom:914.550000px;}
.y3e{bottom:919.230000px;}
.ye{bottom:930.210000px;}
.yba{bottom:932.550000px;}
.y3d{bottom:936.510000px;}
.yd{bottom:950.910000px;}
.y3c{bottom:953.610000px;}
.y9{bottom:972.510000px;}
.y8{bottom:992.850000px;}
.y7{bottom:1010.130000px;}
.y6{bottom:1028.130000px;}
.y5{bottom:1044.870000px;}
.y4{bottom:1087.200000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.hb{height:17.100000px;}
.h10{height:17.136000px;}
.hc{height:17.280000px;}
.hd{height:17.316000px;}
.ha{height:34.380000px;}
.h6{height:39.049805px;}
.hf{height:41.493516px;}
.h4{height:42.164648px;}
.h1{height:43.215117px;}
.he{height:43.506914px;}
.h7{height:46.736719px;}
.h8{height:47.901094px;}
.h9{height:48.496641px;}
.h3{height:50.800781px;}
.h2{height:52.066406px;}
.h5{height:71.613281px;}
.h0{height:1188.000000px;}
.w2{width:45.540000px;}
.w11{width:48.780000px;}
.w14{width:63.000000px;}
.w12{width:63.036000px;}
.wa{width:71.820000px;}
.w10{width:81.900000px;}
.wf{width:85.356000px;}
.w9{width:92.196000px;}
.w7{width:98.136000px;}
.wc{width:112.536000px;}
.w4{width:126.000000px;}
.wd{width:144.360000px;}
.w3{width:145.296000px;}
.wb{width:151.410000px;}
.w13{width:158.220000px;}
.w8{width:164.520000px;}
.w6{width:176.970000px;}
.we{width:180.930000px;}
.w5{width:203.970000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x8{left:108.035986px;}
.x20{left:114.875986px;}
.x2{left:120.635986px;}
.x9{left:135.395986px;}
.x1{left:139.895986px;}
.x10{left:141.695986px;}
.x1a{left:153.749986px;}
.x16{left:155.010000px;}
.x5{left:180.569986px;}
.xc{left:189.569986px;}
.x1d{left:195.150000px;}
.x21{left:214.589986px;}
.xa{left:224.129986px;}
.x28{left:227.550000px;}
.x27{left:243.569986px;}
.x23{left:254.190000px;}
.x1c{left:288.434986px;}
.x14{left:293.654986px;}
.x17{left:301.035000px;}
.x2e{left:304.995000px;}
.x26{left:306.974986px;}
.x22{left:313.994986px;}
.xd{left:347.654986px;}
.x2d{left:354.854986px;}
.xe{left:358.634986px;}
.x1b{left:370.694986px;}
.x12{left:373.394986px;}
.xb{left:384.014986px;}
.xf{left:391.574986px;}
.x7{left:398.774986px;}
.x24{left:406.335000px;}
.x29{left:409.215000px;}
.x11{left:413.174986px;}
.x13{left:417.674986px;}
.x6{left:424.874986px;}
.x18{left:427.755000px;}
.x3{left:459.074986px;}
.x2f{left:464.115000px;}
.x2a{left:495.465000px;}
.x25{left:519.585000px;}
.x4{left:531.104986px;}
.x30{left:550.185000px;}
.x1e{left:552.345000px;}
.x2b{left:578.085000px;}
.x1f{left:624.885000px;}
.x2c{left:627.585000px;}
.x19{left:632.445000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.891307pt;}
.ls8{letter-spacing:90.026667pt;}
.ls10{letter-spacing:610.880000pt;}
.ls3{letter-spacing:623.040000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.013333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws7{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._4{margin-left:-5.882453pt;}
._13{margin-left:-4.944000pt;}
._6{margin-left:-3.904000pt;}
._7{margin-left:-2.560000pt;}
._2{margin-left:-1.285547pt;}
._1{width:0.957867pt;}
._a{width:2.015147pt;}
._3{width:3.151360pt;}
._b{width:4.809600pt;}
._9{width:5.958400pt;}
._8{width:6.852480pt;}
._c{width:7.968000pt;}
._e{width:8.924160pt;}
._d{width:9.933440pt;}
._f{width:11.261440pt;}
._11{width:12.356267pt;}
._10{width:14.926720pt;}
._19{width:16.573440pt;}
._12{width:18.218453pt;}
._15{width:19.346347pt;}
._18{width:20.417707pt;}
._17{width:21.672960pt;}
._1a{width:22.746240pt;}
._16{width:23.957120pt;}
._1c{width:25.280427pt;}
._14{width:60.130133pt;}
._1b{width:76.197333pt;}
._5{width:87.381333pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:2.880000pt;}
.y6e{bottom:18.080000pt;}
.yc{bottom:32.960000pt;}
.yb{bottom:50.720000pt;}
.ya{bottom:64.512000pt;}
.yb9{bottom:105.472000pt;}
.y81{bottom:108.352000pt;}
.y6c{bottom:111.712000pt;}
.ye8{bottom:112.192000pt;}
.yb8{bottom:120.832000pt;}
.y80{bottom:123.712000pt;}
.y3b{bottom:126.112000pt;}
.y6b{bottom:127.072000pt;}
.ye7{bottom:127.552000pt;}
.yb7{bottom:136.186667pt;}
.y7f{bottom:139.066667pt;}
.y3a{bottom:141.466667pt;}
.y6a{bottom:142.426667pt;}
.ye6{bottom:142.746667pt;}
.yb6{bottom:151.546667pt;}
.y7e{bottom:154.426667pt;}
.y39{bottom:156.826667pt;}
.y69{bottom:157.626667pt;}
.ye5{bottom:158.106667pt;}
.yb5{bottom:166.746667pt;}
.y7d{bottom:169.626667pt;}
.y38{bottom:172.026667pt;}
.y68{bottom:172.986667pt;}
.ye4{bottom:173.466667pt;}
.yb4{bottom:182.106667pt;}
.y7c{bottom:184.986667pt;}
.y37{bottom:187.386667pt;}
.y67{bottom:188.346667pt;}
.ye3{bottom:188.826667pt;}
.yb3{bottom:197.466667pt;}
.y7b{bottom:200.346667pt;}
.y36{bottom:202.746667pt;}
.y66{bottom:203.706667pt;}
.ye2{bottom:204.186667pt;}
.yb2{bottom:212.826667pt;}
.y7a{bottom:215.706667pt;}
.y35{bottom:218.106667pt;}
.y65{bottom:219.066667pt;}
.ye1{bottom:219.546667pt;}
.yb1{bottom:228.186667pt;}
.y79{bottom:231.066667pt;}
.y34{bottom:233.466667pt;}
.y64{bottom:234.266667pt;}
.ye0{bottom:234.746667pt;}
.yb0{bottom:243.546667pt;}
.y78{bottom:246.266667pt;}
.y33{bottom:248.666667pt;}
.y63{bottom:249.626667pt;}
.ydf{bottom:250.106667pt;}
.yaf{bottom:258.746667pt;}
.y77{bottom:261.626667pt;}
.y32{bottom:264.026667pt;}
.y62{bottom:264.986667pt;}
.yde{bottom:265.466667pt;}
.yae{bottom:274.106667pt;}
.y76{bottom:276.986667pt;}
.y31{bottom:279.386667pt;}
.y61{bottom:280.346667pt;}
.ydd{bottom:280.826667pt;}
.yad{bottom:289.506667pt;}
.y75{bottom:292.386667pt;}
.y30{bottom:294.786667pt;}
.y60{bottom:295.746667pt;}
.ydc{bottom:296.226667pt;}
.yac{bottom:304.866667pt;}
.y74{bottom:307.746667pt;}
.y2f{bottom:310.146667pt;}
.y5f{bottom:311.106667pt;}
.ydb{bottom:311.426667pt;}
.yab{bottom:320.226667pt;}
.y73{bottom:323.106667pt;}
.y2e{bottom:325.506667pt;}
.y5e{bottom:326.306667pt;}
.yda{bottom:326.786667pt;}
.yaa{bottom:335.426667pt;}
.y72{bottom:336.226667pt;}
.y8d{bottom:338.306667pt;}
.y2d{bottom:340.706667pt;}
.y5d{bottom:341.666667pt;}
.yd9{bottom:342.146667pt;}
.ya9{bottom:350.786667pt;}
.y71{bottom:352.226667pt;}
.y8c{bottom:353.666667pt;}
.y2c{bottom:356.066667pt;}
.y5c{bottom:357.026667pt;}
.yd8{bottom:357.506667pt;}
.ya8{bottom:366.146667pt;}
.y70{bottom:368.226667pt;}
.y8b{bottom:369.026667pt;}
.y2b{bottom:371.426667pt;}
.y5b{bottom:372.386667pt;}
.yd7{bottom:372.866667pt;}
.ya7{bottom:381.506667pt;}
.y6d{bottom:384.226667pt;}
.y8a{bottom:384.386667pt;}
.y2a{bottom:386.786667pt;}
.y5a{bottom:387.746667pt;}
.yd6{bottom:388.226667pt;}
.ya6{bottom:396.866667pt;}
.y89{bottom:399.746667pt;}
.y29{bottom:402.146667pt;}
.y59{bottom:403.106667pt;}
.yd5{bottom:404.386667pt;}
.ya5{bottom:412.226667pt;}
.y88{bottom:415.106667pt;}
.y28{bottom:417.506667pt;}
.y58{bottom:418.306667pt;}
.yd4{bottom:420.706667pt;}
.ya4{bottom:427.426667pt;}
.y87{bottom:430.306667pt;}
.y27{bottom:432.706667pt;}
.y57{bottom:433.666667pt;}
.yd3{bottom:437.026667pt;}
.ya3{bottom:442.786667pt;}
.y86{bottom:445.666667pt;}
.y56{bottom:449.026667pt;}
.y26{bottom:450.146667pt;}
.yd2{bottom:452.386667pt;}
.ya2{bottom:458.146667pt;}
.y85{bottom:458.786667pt;}
.y55{bottom:464.386667pt;}
.y25{bottom:465.506667pt;}
.yd1{bottom:467.746667pt;}
.ya1{bottom:473.506667pt;}
.y84{bottom:474.786667pt;}
.y54{bottom:479.746667pt;}
.y24{bottom:480.706667pt;}
.yd0{bottom:483.106667pt;}
.ya0{bottom:488.866667pt;}
.y83{bottom:490.786667pt;}
.y53{bottom:495.106667pt;}
.y23{bottom:496.066667pt;}
.ycf{bottom:496.226667pt;}
.y9f{bottom:504.226667pt;}
.y82{bottom:506.813333pt;}
.y52{bottom:510.333333pt;}
.y22{bottom:511.453333pt;}
.yce{bottom:512.253333pt;}
.y9e{bottom:519.453333pt;}
.y51{bottom:525.693333pt;}
.y21{bottom:526.813333pt;}
.ycd{bottom:528.093333pt;}
.y9d{bottom:534.813333pt;}
.y50{bottom:541.053333pt;}
.y20{bottom:542.173333pt;}
.ycc{bottom:544.093333pt;}
.y9c{bottom:550.173333pt;}
.y4f{bottom:556.413333pt;}
.y1f{bottom:557.373333pt;}
.ycb{bottom:560.093333pt;}
.y9b{bottom:565.533333pt;}
.y4e{bottom:571.773333pt;}
.y1e{bottom:572.733333pt;}
.yca{bottom:576.093333pt;}
.y9a{bottom:580.893333pt;}
.y4d{bottom:586.973333pt;}
.y1d{bottom:588.093333pt;}
.yc9{bottom:592.093333pt;}
.y99{bottom:596.253333pt;}
.y4c{bottom:602.333333pt;}
.y1c{bottom:603.453333pt;}
.yc8{bottom:608.093333pt;}
.y98{bottom:612.413333pt;}
.y4b{bottom:617.693333pt;}
.y1b{bottom:618.813333pt;}
.yc7{bottom:626.973333pt;}
.y97{bottom:628.733333pt;}
.y4a{bottom:633.053333pt;}
.y1a{bottom:634.173333pt;}
.yc6{bottom:642.333333pt;}
.y96{bottom:645.053333pt;}
.y49{bottom:648.413333pt;}
.y19{bottom:649.373333pt;}
.yc5{bottom:657.693333pt;}
.y95{bottom:660.413333pt;}
.y48{bottom:663.773333pt;}
.y18{bottom:664.733333pt;}
.yc4{bottom:673.053333pt;}
.y94{bottom:675.773333pt;}
.y47{bottom:678.973333pt;}
.y17{bottom:680.093333pt;}
.yc3{bottom:688.413333pt;}
.y93{bottom:690.973333pt;}
.y46{bottom:694.333333pt;}
.y16{bottom:695.453333pt;}
.yc2{bottom:703.773333pt;}
.y92{bottom:706.333333pt;}
.y45{bottom:709.693333pt;}
.y15{bottom:710.813333pt;}
.yc1{bottom:716.893333pt;}
.y91{bottom:719.453333pt;}
.y44{bottom:725.053333pt;}
.y14{bottom:728.093333pt;}
.yc0{bottom:732.933333pt;}
.y90{bottom:735.493333pt;}
.y43{bottom:740.453333pt;}
.y13{bottom:743.813333pt;}
.ybf{bottom:748.933333pt;}
.y8f{bottom:751.493333pt;}
.y42{bottom:755.813333pt;}
.y12{bottom:760.773333pt;}
.ybe{bottom:764.933333pt;}
.y8e{bottom:767.493333pt;}
.y41{bottom:771.013333pt;}
.y11{bottom:777.573333pt;}
.ybd{bottom:780.933333pt;}
.y40{bottom:786.373333pt;}
.y10{bottom:794.533333pt;}
.ybc{bottom:796.933333pt;}
.y3f{bottom:801.733333pt;}
.yf{bottom:811.013333pt;}
.ybb{bottom:812.933333pt;}
.y3e{bottom:817.093333pt;}
.ye{bottom:826.853333pt;}
.yba{bottom:828.933333pt;}
.y3d{bottom:832.453333pt;}
.yd{bottom:845.253333pt;}
.y3c{bottom:847.653333pt;}
.y9{bottom:864.453333pt;}
.y8{bottom:882.533333pt;}
.y7{bottom:897.893333pt;}
.y6{bottom:913.893333pt;}
.y5{bottom:928.773333pt;}
.y4{bottom:966.400000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.hb{height:15.200000pt;}
.h10{height:15.232000pt;}
.hc{height:15.360000pt;}
.hd{height:15.392000pt;}
.ha{height:30.560000pt;}
.h6{height:34.710938pt;}
.hf{height:36.883125pt;}
.h4{height:37.479688pt;}
.h1{height:38.413438pt;}
.he{height:38.672812pt;}
.h7{height:41.543750pt;}
.h8{height:42.578750pt;}
.h9{height:43.108125pt;}
.h3{height:45.156250pt;}
.h2{height:46.281250pt;}
.h5{height:63.656250pt;}
.h0{height:1056.000000pt;}
.w2{width:40.480000pt;}
.w11{width:43.360000pt;}
.w14{width:56.000000pt;}
.w12{width:56.032000pt;}
.wa{width:63.840000pt;}
.w10{width:72.800000pt;}
.wf{width:75.872000pt;}
.w9{width:81.952000pt;}
.w7{width:87.232000pt;}
.wc{width:100.032000pt;}
.w4{width:112.000000pt;}
.wd{width:128.320000pt;}
.w3{width:129.152000pt;}
.wb{width:134.586667pt;}
.w13{width:140.640000pt;}
.w8{width:146.240000pt;}
.w6{width:157.306667pt;}
.we{width:160.826667pt;}
.w5{width:181.306667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x8{left:96.031988pt;}
.x20{left:102.111988pt;}
.x2{left:107.231988pt;}
.x9{left:120.351988pt;}
.x1{left:124.351988pt;}
.x10{left:125.951988pt;}
.x1a{left:136.666655pt;}
.x16{left:137.786667pt;}
.x5{left:160.506655pt;}
.xc{left:168.506655pt;}
.x1d{left:173.466667pt;}
.x21{left:190.746655pt;}
.xa{left:199.226655pt;}
.x28{left:202.266667pt;}
.x27{left:216.506655pt;}
.x23{left:225.946667pt;}
.x1c{left:256.386655pt;}
.x14{left:261.026655pt;}
.x17{left:267.586667pt;}
.x2e{left:271.106667pt;}
.x26{left:272.866655pt;}
.x22{left:279.106655pt;}
.xd{left:309.026655pt;}
.x2d{left:315.426655pt;}
.xe{left:318.786655pt;}
.x1b{left:329.506655pt;}
.x12{left:331.906655pt;}
.xb{left:341.346655pt;}
.xf{left:348.066655pt;}
.x7{left:354.466655pt;}
.x24{left:361.186667pt;}
.x29{left:363.746667pt;}
.x11{left:367.266655pt;}
.x13{left:371.266655pt;}
.x6{left:377.666655pt;}
.x18{left:380.226667pt;}
.x3{left:408.066655pt;}
.x2f{left:412.546667pt;}
.x2a{left:440.413333pt;}
.x25{left:461.853333pt;}
.x4{left:472.093321pt;}
.x30{left:489.053333pt;}
.x1e{left:490.973333pt;}
.x2b{left:513.853333pt;}
.x1f{left:555.453333pt;}
.x2c{left:557.853333pt;}
.x19{left:562.173333pt;}
}




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