
    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_4927c2c3a3249c4b8af01f76.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4a290c74a81e55ea5e563aff.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025391;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_abcf972cab215777cdc5b4a2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.025391;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_503172f127876b62c576151e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_15130c56d12cb5e84c8bf83e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_489d68cab92a4559151c9c96.woff')format("woff");}.ffa{font-family:ffa;line-height:0.721191;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.229800px;}
.lsf{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.406080px;}
.ls3{letter-spacing:2.340000px;}
.ls1{letter-spacing:19.781280px;}
.ls9{letter-spacing:39.905280px;}
.lsb{letter-spacing:49.985280px;}
.ls2{letter-spacing:59.345280px;}
.lsd{letter-spacing:62.261280px;}
.lsa{letter-spacing:73.025280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.ws1{word-spacing:-18.808440px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.392000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-4.106880px;}
._5{margin-left:-2.119200px;}
._1{margin-left:-1.022400px;}
._3{width:1.523520px;}
._4{width:2.649600px;}
._10{width:4.100160px;}
._8{width:5.393760px;}
._7{width:6.624000px;}
._9{width:8.093760px;}
._f{width:9.354480px;}
._a{width:10.624320px;}
._b{width:11.787840px;}
._6{width:12.850560px;}
._d{width:14.175360px;}
._e{width:15.235200px;}
._15{width:19.637760px;}
._14{width:20.799360px;}
._1a{width:24.652800px;}
._1b{width:25.898880px;}
._0{width:33.739200px;}
._2{width:34.966080px;}
._1f{width:37.823040px;}
._20{width:39.810240px;}
._1d{width:41.267520px;}
._1e{width:42.459360px;}
._1c{width:66.968640px;}
._12{width:514.200000px;}
._16{width:619.542240px;}
._19{width:847.740000px;}
._18{width:1106.605440px;}
._17{width:1107.875040px;}
._13{width:1252.236000px;}
._11{width:1337.340000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:2.880000px;}
.y65{bottom:3.060000px;}
.y3a{bottom:3.600000px;}
.y61{bottom:18.360000px;}
.y6a{bottom:18.540000px;}
.y39{bottom:52.920000px;}
.y38{bottom:56.700000px;}
.y35{bottom:110.340000px;}
.y5d{bottom:121.860000px;}
.y34{bottom:124.200000px;}
.y33{bottom:128.700000px;}
.y79{bottom:135.720000px;}
.y32{bottom:139.140000px;}
.y5c{bottom:140.760000px;}
.ya3{bottom:150.120000px;}
.y78{bottom:154.800000px;}
.y5b{bottom:159.840000px;}
.y31{bottom:170.100000px;}
.y77{bottom:173.700000px;}
.y5a{bottom:178.740000px;}
.y30{bottom:189.180000px;}
.ya2{bottom:194.760000px;}
.y59{bottom:197.640000px;}
.y2f{bottom:208.080000px;}
.ya1{bottom:213.660000px;}
.y76{bottom:215.640000px;}
.y58{bottom:216.720000px;}
.y2e{bottom:226.980000px;}
.ya0{bottom:229.140000px;}
.y57{bottom:235.620000px;}
.y2d{bottom:246.090000px;}
.yc8{bottom:247.890000px;}
.y56{bottom:254.730000px;}
.y75{bottom:260.310000px;}
.y2c{bottom:264.990000px;}
.yc7{bottom:266.790000px;}
.y55{bottom:273.630000px;}
.y74{bottom:279.390000px;}
.y2b{bottom:284.070000px;}
.yc6{bottom:285.690000px;}
.y54{bottom:292.530000px;}
.y73{bottom:294.690000px;}
.y92{bottom:302.610000px;}
.y2a{bottom:302.970000px;}
.yc5{bottom:304.770000px;}
.y53{bottom:311.610000px;}
.y91{bottom:321.510000px;}
.y29{bottom:321.870000px;}
.yc4{bottom:323.670000px;}
.y52{bottom:330.510000px;}
.y90{bottom:340.410000px;}
.y28{bottom:340.770000px;}
.yc3{bottom:342.750000px;}
.y51{bottom:349.590000px;}
.y8f{bottom:359.490000px;}
.y27{bottom:361.110000px;}
.yc2{bottom:361.650000px;}
.y50{bottom:368.490000px;}
.y8e{bottom:378.390000px;}
.y26{bottom:380.010000px;}
.yc1{bottom:380.730000px;}
.y4f{bottom:387.570000px;}
.y8d{bottom:397.470000px;}
.yc0{bottom:399.630000px;}
.y25{bottom:400.170000px;}
.y4e{bottom:406.470000px;}
.y8c{bottom:416.370000px;}
.ybf{bottom:418.530000px;}
.y24{bottom:419.070000px;}
.y4d{bottom:425.370000px;}
.y8b{bottom:435.270000px;}
.ybe{bottom:437.610000px;}
.y23{bottom:439.410000px;}
.y4c{bottom:444.450000px;}
.y8a{bottom:454.350000px;}
.ybd{bottom:456.510000px;}
.y22{bottom:458.310000px;}
.y4b{bottom:463.350000px;}
.y89{bottom:473.295000px;}
.ybc{bottom:475.635000px;}
.y21{bottom:478.515000px;}
.y4a{bottom:482.475000px;}
.ybb{bottom:494.535000px;}
.y20{bottom:497.415000px;}
.y49{bottom:501.375000px;}
.yba{bottom:513.435000px;}
.y88{bottom:515.235000px;}
.y1f{bottom:516.495000px;}
.y48{bottom:520.275000px;}
.yb9{bottom:532.515000px;}
.y1e{bottom:535.395000px;}
.y47{bottom:539.355000px;}
.yb8{bottom:551.415000px;}
.y9f{bottom:557.175000px;}
.y46{bottom:558.255000px;}
.y87{bottom:559.875000px;}
.yb7{bottom:570.495000px;}
.y9e{bottom:576.075000px;}
.y1d{bottom:577.335000px;}
.y86{bottom:578.955000px;}
.yb6{bottom:589.395000px;}
.y9d{bottom:595.155000px;}
.y45{bottom:596.235000px;}
.y85{bottom:597.855000px;}
.yb5{bottom:608.295000px;}
.y44{bottom:611.535000px;}
.y84{bottom:613.155000px;}
.y9c{bottom:614.055000px;}
.y1c{bottom:621.975000px;}
.y9b{bottom:633.135000px;}
.y1b{bottom:641.055000px;}
.yb4{bottom:650.235000px;}
.y9a{bottom:652.035000px;}
.y1a{bottom:659.955000px;}
.y99{bottom:670.935000px;}
.y19{bottom:679.035000px;}
.y98{bottom:690.015000px;}
.yb3{bottom:695.055000px;}
.y18{bottom:697.965000px;}
.y97{bottom:708.945000px;}
.yb2{bottom:713.985000px;}
.y17{bottom:716.865000px;}
.yb1{bottom:732.885000px;}
.y16{bottom:735.945000px;}
.y96{bottom:750.885000px;}
.yb0{bottom:751.785000px;}
.y15{bottom:754.845000px;}
.yaf{bottom:771.945000px;}
.y14{bottom:773.925000px;}
.yae{bottom:792.105000px;}
.y13{bottom:792.825000px;}
.y95{bottom:795.525000px;}
.y72{bottom:807.585000px;}
.y12{bottom:811.725000px;}
.yad{bottom:812.445000px;}
.y94{bottom:814.605000px;}
.y71{bottom:826.665000px;}
.y93{bottom:829.905000px;}
.y11{bottom:830.805000px;}
.yac{bottom:831.345000px;}
.y70{bottom:845.565000px;}
.y10{bottom:849.705000px;}
.yab{bottom:850.425000px;}
.y6f{bottom:861.585000px;}
.yf{bottom:868.785000px;}
.yaa{bottom:869.325000px;}
.y6e{bottom:877.965000px;}
.ye{bottom:887.685000px;}
.ya9{bottom:888.225000px;}
.y6d{bottom:894.165000px;}
.yd{bottom:906.585000px;}
.ya8{bottom:908.385000px;}
.y6c{bottom:910.365000px;}
.yc{bottom:925.665000px;}
.y6b{bottom:926.790000px;}
.ya7{bottom:928.590000px;}
.y83{bottom:941.370000px;}
.y69{bottom:942.990000px;}
.yb{bottom:944.610000px;}
.ya6{bottom:948.750000px;}
.y82{bottom:960.270000px;}
.y43{bottom:962.250000px;}
.ya{bottom:963.690000px;}
.ya5{bottom:968.910000px;}
.y68{bottom:974.850000px;}
.y81{bottom:979.170000px;}
.y9{bottom:982.590000px;}
.ya4{bottom:987.990000px;}
.y67{bottom:991.050000px;}
.y80{bottom:998.250000px;}
.y8{bottom:1001.670000px;}
.y42{bottom:1006.890000px;}
.y66{bottom:1007.430000px;}
.y7f{bottom:1017.150000px;}
.y7{bottom:1020.570000px;}
.y41{bottom:1025.970000px;}
.y7e{bottom:1036.230000px;}
.y64{bottom:1039.110000px;}
.y6{bottom:1039.470000px;}
.y40{bottom:1044.870000px;}
.y7d{bottom:1055.130000px;}
.y63{bottom:1055.490000px;}
.y5{bottom:1058.550000px;}
.y3f{bottom:1063.770000px;}
.y62{bottom:1071.690000px;}
.y7c{bottom:1074.210000px;}
.y3{bottom:1077.450000px;}
.y3e{bottom:1082.850000px;}
.y4{bottom:1083.390000px;}
.y60{bottom:1088.070000px;}
.y7b{bottom:1093.110000px;}
.y2{bottom:1099.590000px;}
.y3d{bottom:1101.750000px;}
.y5e{bottom:1119.750000px;}
.y3c{bottom:1120.830000px;}
.y1{bottom:1130.730000px;}
.y7a{bottom:1135.050000px;}
.y3b{bottom:1139.730000px;}
.y37{bottom:1175.760000px;}
.y36{bottom:1194.660000px;}
.ha{height:15.480000px;}
.he{height:15.660000px;}
.h10{height:15.696000px;}
.h9{height:18.900000px;}
.h7{height:24.156563px;}
.hc{height:30.960000px;}
.hf{height:31.140000px;}
.h4{height:33.359063px;}
.hb{height:38.100586px;}
.h8{height:38.535469px;}
.hd{height:43.136719px;}
.h3{height:52.914375px;}
.h5{height:58.283437px;}
.h6{height:86.255508px;}
.h2{height:104.686172px;}
.h11{height:509.295000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:29.556000px;}
.w5{width:120.816000px;}
.w7{width:120.960000px;}
.w6{width:120.996000px;}
.w8{width:714.210000px;}
.w3{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.xa{left:21.270000px;}
.xd{left:29.016000px;}
.x1{left:80.999987px;}
.x8{left:84.815987px;}
.x14{left:89.316000px;}
.x2{left:102.275987px;}
.x5{left:108.035987px;}
.x6{left:135.035987px;}
.xc{left:162.029987px;}
.x3{left:191.189973px;}
.x4{left:196.409987px;}
.xe{left:203.430000px;}
.x7{left:318.314987px;}
.xf{left:324.975000px;}
.x9{left:431.535000px;}
.x10{left:446.685000px;}
.x11{left:568.365000px;}
.x12{left:689.910000px;}
.x15{left:705.894000px;}
.xb{left:750.389987px;}
.x16{left:752.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.204267pt;}
.lsf{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.360960pt;}
.ls3{letter-spacing:2.080000pt;}
.ls1{letter-spacing:17.583360pt;}
.ls9{letter-spacing:35.471360pt;}
.lsb{letter-spacing:44.431360pt;}
.ls2{letter-spacing:52.751360pt;}
.lsd{letter-spacing:55.343360pt;}
.lsa{letter-spacing:64.911360pt;}
.ws2{word-spacing:-58.880000pt;}
.ws1{word-spacing:-16.718613pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-3.650560pt;}
._5{margin-left:-1.883733pt;}
._1{margin-left:-0.908800pt;}
._3{width:1.354240pt;}
._4{width:2.355200pt;}
._10{width:3.644587pt;}
._8{width:4.794453pt;}
._7{width:5.888000pt;}
._9{width:7.194453pt;}
._f{width:8.315093pt;}
._a{width:9.443840pt;}
._b{width:10.478080pt;}
._6{width:11.422720pt;}
._d{width:12.600320pt;}
._e{width:13.542400pt;}
._15{width:17.455787pt;}
._14{width:18.488320pt;}
._1a{width:21.913600pt;}
._1b{width:23.021227pt;}
._0{width:29.990400pt;}
._2{width:31.080960pt;}
._1f{width:33.620480pt;}
._20{width:35.386880pt;}
._1d{width:36.682240pt;}
._1e{width:37.741653pt;}
._1c{width:59.527680pt;}
._12{width:457.066667pt;}
._16{width:550.704213pt;}
._19{width:753.546667pt;}
._18{width:983.649280pt;}
._17{width:984.777813pt;}
._13{width:1113.098667pt;}
._11{width:1188.746667pt;}
.fs4{font-size:26.880000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.560000pt;}
.y65{bottom:2.720000pt;}
.y3a{bottom:3.200000pt;}
.y61{bottom:16.320000pt;}
.y6a{bottom:16.480000pt;}
.y39{bottom:47.040000pt;}
.y38{bottom:50.400000pt;}
.y35{bottom:98.080000pt;}
.y5d{bottom:108.320000pt;}
.y34{bottom:110.400000pt;}
.y33{bottom:114.400000pt;}
.y79{bottom:120.640000pt;}
.y32{bottom:123.680000pt;}
.y5c{bottom:125.120000pt;}
.ya3{bottom:133.440000pt;}
.y78{bottom:137.600000pt;}
.y5b{bottom:142.080000pt;}
.y31{bottom:151.200000pt;}
.y77{bottom:154.400000pt;}
.y5a{bottom:158.880000pt;}
.y30{bottom:168.160000pt;}
.ya2{bottom:173.120000pt;}
.y59{bottom:175.680000pt;}
.y2f{bottom:184.960000pt;}
.ya1{bottom:189.920000pt;}
.y76{bottom:191.680000pt;}
.y58{bottom:192.640000pt;}
.y2e{bottom:201.760000pt;}
.ya0{bottom:203.680000pt;}
.y57{bottom:209.440000pt;}
.y2d{bottom:218.746667pt;}
.yc8{bottom:220.346667pt;}
.y56{bottom:226.426667pt;}
.y75{bottom:231.386667pt;}
.y2c{bottom:235.546667pt;}
.yc7{bottom:237.146667pt;}
.y55{bottom:243.226667pt;}
.y74{bottom:248.346667pt;}
.y2b{bottom:252.506667pt;}
.yc6{bottom:253.946667pt;}
.y54{bottom:260.026667pt;}
.y73{bottom:261.946667pt;}
.y92{bottom:268.986667pt;}
.y2a{bottom:269.306667pt;}
.yc5{bottom:270.906667pt;}
.y53{bottom:276.986667pt;}
.y91{bottom:285.786667pt;}
.y29{bottom:286.106667pt;}
.yc4{bottom:287.706667pt;}
.y52{bottom:293.786667pt;}
.y90{bottom:302.586667pt;}
.y28{bottom:302.906667pt;}
.yc3{bottom:304.666667pt;}
.y51{bottom:310.746667pt;}
.y8f{bottom:319.546667pt;}
.y27{bottom:320.986667pt;}
.yc2{bottom:321.466667pt;}
.y50{bottom:327.546667pt;}
.y8e{bottom:336.346667pt;}
.y26{bottom:337.786667pt;}
.yc1{bottom:338.426667pt;}
.y4f{bottom:344.506667pt;}
.y8d{bottom:353.306667pt;}
.yc0{bottom:355.226667pt;}
.y25{bottom:355.706667pt;}
.y4e{bottom:361.306667pt;}
.y8c{bottom:370.106667pt;}
.ybf{bottom:372.026667pt;}
.y24{bottom:372.506667pt;}
.y4d{bottom:378.106667pt;}
.y8b{bottom:386.906667pt;}
.ybe{bottom:388.986667pt;}
.y23{bottom:390.586667pt;}
.y4c{bottom:395.066667pt;}
.y8a{bottom:403.866667pt;}
.ybd{bottom:405.786667pt;}
.y22{bottom:407.386667pt;}
.y4b{bottom:411.866667pt;}
.y89{bottom:420.706667pt;}
.ybc{bottom:422.786667pt;}
.y21{bottom:425.346667pt;}
.y4a{bottom:428.866667pt;}
.ybb{bottom:439.586667pt;}
.y20{bottom:442.146667pt;}
.y49{bottom:445.666667pt;}
.yba{bottom:456.386667pt;}
.y88{bottom:457.986667pt;}
.y1f{bottom:459.106667pt;}
.y48{bottom:462.466667pt;}
.yb9{bottom:473.346667pt;}
.y1e{bottom:475.906667pt;}
.y47{bottom:479.426667pt;}
.yb8{bottom:490.146667pt;}
.y9f{bottom:495.266667pt;}
.y46{bottom:496.226667pt;}
.y87{bottom:497.666667pt;}
.yb7{bottom:507.106667pt;}
.y9e{bottom:512.066667pt;}
.y1d{bottom:513.186667pt;}
.y86{bottom:514.626667pt;}
.yb6{bottom:523.906667pt;}
.y9d{bottom:529.026667pt;}
.y45{bottom:529.986667pt;}
.y85{bottom:531.426667pt;}
.yb5{bottom:540.706667pt;}
.y44{bottom:543.586667pt;}
.y84{bottom:545.026667pt;}
.y9c{bottom:545.826667pt;}
.y1c{bottom:552.866667pt;}
.y9b{bottom:562.786667pt;}
.y1b{bottom:569.826667pt;}
.yb4{bottom:577.986667pt;}
.y9a{bottom:579.586667pt;}
.y1a{bottom:586.626667pt;}
.y99{bottom:596.386667pt;}
.y19{bottom:603.586667pt;}
.y98{bottom:613.346667pt;}
.yb3{bottom:617.826667pt;}
.y18{bottom:620.413333pt;}
.y97{bottom:630.173333pt;}
.yb2{bottom:634.653333pt;}
.y17{bottom:637.213333pt;}
.yb1{bottom:651.453333pt;}
.y16{bottom:654.173333pt;}
.y96{bottom:667.453333pt;}
.yb0{bottom:668.253333pt;}
.y15{bottom:670.973333pt;}
.yaf{bottom:686.173333pt;}
.y14{bottom:687.933333pt;}
.yae{bottom:704.093333pt;}
.y13{bottom:704.733333pt;}
.y95{bottom:707.133333pt;}
.y72{bottom:717.853333pt;}
.y12{bottom:721.533333pt;}
.yad{bottom:722.173333pt;}
.y94{bottom:724.093333pt;}
.y71{bottom:734.813333pt;}
.y93{bottom:737.693333pt;}
.y11{bottom:738.493333pt;}
.yac{bottom:738.973333pt;}
.y70{bottom:751.613333pt;}
.y10{bottom:755.293333pt;}
.yab{bottom:755.933333pt;}
.y6f{bottom:765.853333pt;}
.yf{bottom:772.253333pt;}
.yaa{bottom:772.733333pt;}
.y6e{bottom:780.413333pt;}
.ye{bottom:789.053333pt;}
.ya9{bottom:789.533333pt;}
.y6d{bottom:794.813333pt;}
.yd{bottom:805.853333pt;}
.ya8{bottom:807.453333pt;}
.y6c{bottom:809.213333pt;}
.yc{bottom:822.813333pt;}
.y6b{bottom:823.813333pt;}
.ya7{bottom:825.413333pt;}
.y83{bottom:836.773333pt;}
.y69{bottom:838.213333pt;}
.yb{bottom:839.653333pt;}
.ya6{bottom:843.333333pt;}
.y82{bottom:853.573333pt;}
.y43{bottom:855.333333pt;}
.ya{bottom:856.613333pt;}
.ya5{bottom:861.253333pt;}
.y68{bottom:866.533333pt;}
.y81{bottom:870.373333pt;}
.y9{bottom:873.413333pt;}
.ya4{bottom:878.213333pt;}
.y67{bottom:880.933333pt;}
.y80{bottom:887.333333pt;}
.y8{bottom:890.373333pt;}
.y42{bottom:895.013333pt;}
.y66{bottom:895.493333pt;}
.y7f{bottom:904.133333pt;}
.y7{bottom:907.173333pt;}
.y41{bottom:911.973333pt;}
.y7e{bottom:921.093333pt;}
.y64{bottom:923.653333pt;}
.y6{bottom:923.973333pt;}
.y40{bottom:928.773333pt;}
.y7d{bottom:937.893333pt;}
.y63{bottom:938.213333pt;}
.y5{bottom:940.933333pt;}
.y3f{bottom:945.573333pt;}
.y62{bottom:952.613333pt;}
.y7c{bottom:954.853333pt;}
.y3{bottom:957.733333pt;}
.y3e{bottom:962.533333pt;}
.y4{bottom:963.013333pt;}
.y60{bottom:967.173333pt;}
.y7b{bottom:971.653333pt;}
.y2{bottom:977.413333pt;}
.y3d{bottom:979.333333pt;}
.y5e{bottom:995.333333pt;}
.y3c{bottom:996.293333pt;}
.y1{bottom:1005.093333pt;}
.y7a{bottom:1008.933333pt;}
.y3b{bottom:1013.093333pt;}
.y37{bottom:1045.120000pt;}
.y36{bottom:1061.920000pt;}
.ha{height:13.760000pt;}
.he{height:13.920000pt;}
.h10{height:13.952000pt;}
.h9{height:16.800000pt;}
.h7{height:21.472500pt;}
.hc{height:27.520000pt;}
.hf{height:27.680000pt;}
.h4{height:29.652500pt;}
.hb{height:33.867188pt;}
.h8{height:34.253750pt;}
.hd{height:38.343750pt;}
.h3{height:47.035000pt;}
.h5{height:51.807500pt;}
.h6{height:76.671562pt;}
.h2{height:93.054375pt;}
.h11{height:452.706667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:26.272000pt;}
.w5{width:107.392000pt;}
.w7{width:107.520000pt;}
.w6{width:107.552000pt;}
.w8{width:634.853333pt;}
.w3{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.xa{left:18.906667pt;}
.xd{left:25.792000pt;}
.x1{left:71.999988pt;}
.x8{left:75.391988pt;}
.x14{left:79.392000pt;}
.x2{left:90.911988pt;}
.x5{left:96.031988pt;}
.x6{left:120.031988pt;}
.xc{left:144.026655pt;}
.x3{left:169.946643pt;}
.x4{left:174.586655pt;}
.xe{left:180.826667pt;}
.x7{left:282.946655pt;}
.xf{left:288.866667pt;}
.x9{left:383.586667pt;}
.x10{left:397.053333pt;}
.x11{left:505.213333pt;}
.x12{left:613.253333pt;}
.x15{left:627.461333pt;}
.xb{left:667.013322pt;}
.x16{left:668.933322pt;}
}




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