
    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_47299fe9bb4250e0dea2b2bd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_9a70ab9afdcbb83b858f8435.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_7dab5deb89c9fb569810c854.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_4208e984319f538795e32fc6.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_ad2cac6889375fa521306d37.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_b3f116aad71f7be5d34dc11c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_a34ee3f397a20cdca51ac3d7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_a1f9521b9054e47008329b51.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.924000px;}
.ls4{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.360000px;}
.lse{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.ls2{letter-spacing:636.840000px;}
.ls6{letter-spacing:637.560000px;}
.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:-18.000000px;}
.wsa{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.166000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-8.007840px;}
._4{margin-left:-6.633840px;}
._7{margin-left:-4.968000px;}
._8{margin-left:-3.672000px;}
._9{margin-left:-2.500560px;}
._1{margin-left:-1.430160px;}
._3{width:1.437600px;}
._2{width:2.772960px;}
._6{width:4.500000px;}
._15{width:5.834160px;}
._d{width:6.928800px;}
._10{width:7.932000px;}
._a{width:8.964000px;}
._11{width:10.425840px;}
._14{width:11.678640px;}
._f{width:13.551360px;}
._e{width:16.434000px;}
._16{width:17.629200px;}
._17{width:18.972480px;}
._23{width:20.135760px;}
._12{width:22.048080px;}
._13{width:23.246640px;}
._19{width:24.863520px;}
._b{width:25.872720px;}
._c{width:26.904960px;}
._1a{width:28.505520px;}
._45{width:29.561760px;}
._2b{width:32.984160px;}
._1d{width:36.330720px;}
._1e{width:37.771680px;}
._1c{width:44.102880px;}
._1b{width:45.716400px;}
._24{width:46.904880px;}
._3a{width:57.904080px;}
._25{width:65.911920px;}
._2e{width:71.712000px;}
._3e{width:72.907200px;}
._28{width:78.344880px;}
._18{width:82.055040px;}
._20{width:83.537040px;}
._1f{width:84.560400px;}
._42{width:88.504560px;}
._3f{width:89.602560px;}
._3b{width:90.715680px;}
._22{width:97.285920px;}
._21{width:98.663760px;}
._33{width:100.874880px;}
._36{width:105.297120px;}
._26{width:110.257200px;}
._39{width:117.488160px;}
._3c{width:121.073760px;}
._30{width:123.520560px;}
._40{width:131.830560px;}
._44{width:134.277360px;}
._5{width:136.122000px;}
._43{width:144.380160px;}
._2c{width:147.245280px;}
._38{width:158.121600px;}
._3d{width:177.005760px;}
._2f{width:179.160480px;}
._2a{width:184.117200px;}
._41{width:187.374240px;}
._35{width:191.826240px;}
._27{width:209.037120px;}
._37{width:217.705680px;}
._31{width:248.541840px;}
._29{width:255.713040px;}
._2d{width:264.856320px;}
._32{width:288.401760px;}
._34{width:290.490000px;}
.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:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.240000px;}
.y8c{bottom:3.270000px;}
.y82{bottom:11.700000px;}
.y7b{bottom:11.880000px;}
.y83{bottom:20.340000px;}
.y7c{bottom:20.520000px;}
.y8b{bottom:20.550000px;}
.y7f{bottom:28.980000px;}
.y86{bottom:29.160000px;}
.yc{bottom:37.080000px;}
.y80{bottom:37.620000px;}
.y85{bottom:37.800000px;}
.yd0{bottom:46.260000px;}
.yce{bottom:54.900000px;}
.yb{bottom:57.060000px;}
.ycf{bottom:63.540000px;}
.yd3{bottom:63.585000px;}
.yd1{bottom:72.180000px;}
.yd4{bottom:72.225000px;}
.ya{bottom:72.576000px;}
.y41{bottom:111.456000px;}
.ycb{bottom:114.156000px;}
.y77{bottom:114.336000px;}
.y79{bottom:117.936000px;}
.ya7{bottom:118.116000px;}
.yf5{bottom:126.936000px;}
.y40{bottom:128.736000px;}
.yca{bottom:131.436000px;}
.y76{bottom:131.616000px;}
.y78{bottom:131.976000px;}
.ya6{bottom:135.216000px;}
.yf4{bottom:144.216000px;}
.y3f{bottom:146.016000px;}
.yc9{bottom:148.536000px;}
.y75{bottom:148.716000px;}
.ya5{bottom:152.490000px;}
.yf3{bottom:161.490000px;}
.y3e{bottom:163.290000px;}
.yc8{bottom:165.810000px;}
.y74{bottom:165.990000px;}
.ya4{bottom:169.770000px;}
.yf2{bottom:178.590000px;}
.yf6{bottom:180.030000px;}
.y3d{bottom:180.570000px;}
.yc7{bottom:183.090000px;}
.y73{bottom:183.270000px;}
.ya3{bottom:187.050000px;}
.yf1{bottom:195.870000px;}
.y3c{bottom:197.670000px;}
.yc6{bottom:200.370000px;}
.y72{bottom:200.550000px;}
.ya2{bottom:204.330000px;}
.yf0{bottom:213.150000px;}
.y3b{bottom:214.950000px;}
.yc5{bottom:217.650000px;}
.y71{bottom:217.830000px;}
.ya1{bottom:221.610000px;}
.yef{bottom:230.430000px;}
.y3a{bottom:232.230000px;}
.yc4{bottom:234.930000px;}
.y70{bottom:235.110000px;}
.ya0{bottom:238.710000px;}
.yee{bottom:247.710000px;}
.y39{bottom:249.510000px;}
.yc3{bottom:252.030000px;}
.y6f{bottom:252.210000px;}
.y9f{bottom:255.990000px;}
.yed{bottom:264.990000px;}
.y38{bottom:266.790000px;}
.yc2{bottom:269.310000px;}
.y6e{bottom:269.490000px;}
.y9e{bottom:273.270000px;}
.yec{bottom:282.090000px;}
.y37{bottom:284.070000px;}
.yc1{bottom:286.590000px;}
.y6d{bottom:286.770000px;}
.y9d{bottom:290.550000px;}
.yeb{bottom:299.370000px;}
.y36{bottom:301.170000px;}
.yc0{bottom:303.870000px;}
.y6c{bottom:304.050000px;}
.y9c{bottom:307.830000px;}
.yea{bottom:316.650000px;}
.y35{bottom:318.450000px;}
.ybf{bottom:321.150000px;}
.y6b{bottom:321.330000px;}
.y9b{bottom:324.930000px;}
.ye9{bottom:333.930000px;}
.y34{bottom:335.730000px;}
.y6a{bottom:338.475000px;}
.y9a{bottom:342.255000px;}
.ye8{bottom:351.255000px;}
.y33{bottom:353.055000px;}
.ybe{bottom:355.575000px;}
.y69{bottom:355.755000px;}
.y99{bottom:359.535000px;}
.ye7{bottom:368.535000px;}
.y32{bottom:370.335000px;}
.ybd{bottom:372.855000px;}
.y68{bottom:373.035000px;}
.y98{bottom:376.815000px;}
.ye6{bottom:385.635000px;}
.y31{bottom:387.615000px;}
.ybc{bottom:390.135000px;}
.y67{bottom:390.315000px;}
.y97{bottom:394.095000px;}
.ye5{bottom:402.915000px;}
.y30{bottom:404.715000px;}
.ybb{bottom:407.415000px;}
.y66{bottom:407.595000px;}
.y96{bottom:411.375000px;}
.ye4{bottom:420.195000px;}
.y2f{bottom:421.995000px;}
.yba{bottom:424.695000px;}
.y65{bottom:424.875000px;}
.y95{bottom:428.475000px;}
.ye3{bottom:437.475000px;}
.y2e{bottom:441.435000px;}
.yb9{bottom:441.795000px;}
.y64{bottom:441.975000px;}
.y94{bottom:445.755000px;}
.ye2{bottom:454.755000px;}
.y2d{bottom:458.715000px;}
.yb8{bottom:459.075000px;}
.y63{bottom:459.255000px;}
.y93{bottom:463.035000px;}
.ye1{bottom:471.855000px;}
.y2c{bottom:475.995000px;}
.yb7{bottom:476.355000px;}
.y62{bottom:476.535000px;}
.y92{bottom:480.315000px;}
.ye0{bottom:489.135000px;}
.y2b{bottom:493.275000px;}
.yb6{bottom:493.635000px;}
.y61{bottom:493.815000px;}
.y91{bottom:497.595000px;}
.ydf{bottom:506.415000px;}
.y2a{bottom:510.555000px;}
.yb5{bottom:510.915000px;}
.y60{bottom:511.095000px;}
.y90{bottom:514.875000px;}
.yde{bottom:523.695000px;}
.y29{bottom:527.835000px;}
.yb4{bottom:528.195000px;}
.y5f{bottom:528.375000px;}
.y8f{bottom:531.975000px;}
.ydd{bottom:540.975000px;}
.y28{bottom:544.935000px;}
.yb3{bottom:545.295000px;}
.y5e{bottom:545.475000px;}
.y8e{bottom:549.255000px;}
.ydc{bottom:558.255000px;}
.y27{bottom:562.215000px;}
.yb2{bottom:562.575000px;}
.y5d{bottom:562.755000px;}
.y8d{bottom:565.095000px;}
.ydb{bottom:575.355000px;}
.y26{bottom:579.495000px;}
.yb1{bottom:579.855000px;}
.y5c{bottom:580.035000px;}
.yda{bottom:592.635000px;}
.y25{bottom:596.775000px;}
.yb0{bottom:597.135000px;}
.y5b{bottom:597.315000px;}
.y8a{bottom:603.075000px;}
.yd9{bottom:609.945000px;}
.y24{bottom:614.085000px;}
.yaf{bottom:614.445000px;}
.y5a{bottom:614.625000px;}
.yd8{bottom:627.225000px;}
.yd6{bottom:630.465000px;}
.y23{bottom:631.365000px;}
.yae{bottom:631.725000px;}
.y59{bottom:631.905000px;}
.y89{bottom:640.905000px;}
.yd7{bottom:641.265000px;}
.y22{bottom:648.465000px;}
.yad{bottom:648.825000px;}
.y58{bottom:649.005000px;}
.y21{bottom:665.745000px;}
.yac{bottom:666.105000px;}
.y57{bottom:666.285000px;}
.y88{bottom:678.885000px;}
.y20{bottom:683.025000px;}
.yab{bottom:683.385000px;}
.y56{bottom:683.565000px;}
.y1f{bottom:700.305000px;}
.yaa{bottom:700.665000px;}
.y55{bottom:700.845000px;}
.y87{bottom:716.685000px;}
.y1e{bottom:717.585000px;}
.ya9{bottom:717.945000px;}
.y54{bottom:718.125000px;}
.yd5{bottom:720.105000px;}
.ya8{bottom:731.805000px;}
.y1d{bottom:734.865000px;}
.y53{bottom:735.225000px;}
.y1c{bottom:751.965000px;}
.y52{bottom:752.505000px;}
.y1b{bottom:769.245000px;}
.y51{bottom:769.785000px;}
.y84{bottom:771.765000px;}
.y1a{bottom:786.525000px;}
.y50{bottom:787.065000px;}
.y19{bottom:803.805000px;}
.y4f{bottom:804.345000px;}
.yd2{bottom:809.745000px;}
.y18{bottom:821.085000px;}
.y4e{bottom:821.625000px;}
.y81{bottom:827.025000px;}
.y17{bottom:838.365000px;}
.y4d{bottom:838.725000px;}
.y16{bottom:855.465000px;}
.y4c{bottom:856.005000px;}
.y15{bottom:872.790000px;}
.y4b{bottom:873.330000px;}
.y7e{bottom:882.150000px;}
.y4a{bottom:890.610000px;}
.y14{bottom:892.230000px;}
.ycd{bottom:899.430000px;}
.y49{bottom:907.890000px;}
.y13{bottom:915.990000px;}
.y48{bottom:925.170000px;}
.y12{bottom:934.890000px;}
.y7a{bottom:937.230000px;}
.y47{bottom:942.270000px;}
.y11{bottom:948.030000px;}
.y46{bottom:959.550000px;}
.y10{bottom:966.570000px;}
.y45{bottom:976.830000px;}
.yf{bottom:984.390000px;}
.ycc{bottom:988.890000px;}
.y44{bottom:994.110000px;}
.ye{bottom:1005.090000px;}
.y43{bottom:1011.390000px;}
.yd{bottom:1025.790000px;}
.y42{bottom:1028.490000px;}
.y9{bottom:1047.390000px;}
.y8{bottom:1067.730000px;}
.y7{bottom:1085.010000px;}
.y6{bottom:1103.010000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1162.080000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h9{height:29.158594px;}
.h10{height:34.380000px;}
.hc{height:34.560000px;}
.h11{height:34.596000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h14{height:43.506914px;}
.hb{height:43.681992px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.hd{height:51.660000px;}
.he{height:51.696000px;}
.hf{height:51.840000px;}
.h8{height:53.224453px;}
.h6{height:71.613281px;}
.h12{height:86.220000px;}
.h13{height:86.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:87.840000px;}
.w3{width:134.280000px;}
.w7{width:139.356000px;}
.w9{width:143.460000px;}
.w8{width:148.536000px;}
.wa{width:152.130000px;}
.w4{width:235.335000px;}
.w5{width:304.050000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.xf{left:117.575987px;}
.x1{left:126.395987px;}
.x22{left:129.635987px;}
.x8{left:133.055987px;}
.x27{left:135.035987px;}
.x21{left:144.035987px;}
.x17{left:152.489987px;}
.x9{left:160.229987px;}
.x5{left:168.149987px;}
.x1e{left:170.309987px;}
.x1c{left:173.729987px;}
.xa{left:190.109987px;}
.x18{left:197.670000px;}
.x11{left:198.929987px;}
.x12{left:205.949987px;}
.xc{left:223.049987px;}
.x1f{left:232.049987px;}
.x16{left:235.109987px;}
.xd{left:239.609987px;}
.x13{left:244.110000px;}
.x24{left:246.269987px;}
.xb{left:299.234987px;}
.x19{left:338.115000px;}
.x23{left:356.114987px;}
.xe{left:378.974987px;}
.x7{left:386.354987px;}
.x25{left:388.154987px;}
.x26{left:400.214987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x14{left:480.345000px;}
.x1a{left:487.725000px;}
.x4{left:518.504987px;}
.x1b{left:632.265000px;}
.x1d{left:647.204987px;}
.x15{left:653.504987px;}
.x10{left:676.049987px;}
.x20{left:678.389987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.821333pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.320000pt;}
.lse{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls2{letter-spacing:566.080000pt;}
.ls6{letter-spacing:566.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.592000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.118080pt;}
._4{margin-left:-5.896747pt;}
._7{margin-left:-4.416000pt;}
._8{margin-left:-3.264000pt;}
._9{margin-left:-2.222720pt;}
._1{margin-left:-1.271253pt;}
._3{width:1.277867pt;}
._2{width:2.464853pt;}
._6{width:4.000000pt;}
._15{width:5.185920pt;}
._d{width:6.158933pt;}
._10{width:7.050667pt;}
._a{width:7.968000pt;}
._11{width:9.267413pt;}
._14{width:10.381013pt;}
._f{width:12.045653pt;}
._e{width:14.608000pt;}
._16{width:15.670400pt;}
._17{width:16.864427pt;}
._23{width:17.898453pt;}
._12{width:19.598293pt;}
._13{width:20.663680pt;}
._19{width:22.100907pt;}
._b{width:22.997973pt;}
._c{width:23.915520pt;}
._1a{width:25.338240pt;}
._45{width:26.277120pt;}
._2b{width:29.319253pt;}
._1d{width:32.293973pt;}
._1e{width:33.574827pt;}
._1c{width:39.202560pt;}
._1b{width:40.636800pt;}
._24{width:41.693227pt;}
._3a{width:51.470293pt;}
._25{width:58.588373pt;}
._2e{width:63.744000pt;}
._3e{width:64.806400pt;}
._28{width:69.639893pt;}
._18{width:72.937813pt;}
._20{width:74.255147pt;}
._1f{width:75.164800pt;}
._42{width:78.670720pt;}
._3f{width:79.646720pt;}
._3b{width:80.636160pt;}
._22{width:86.476373pt;}
._21{width:87.701120pt;}
._33{width:89.666560pt;}
._36{width:93.597440pt;}
._26{width:98.006400pt;}
._39{width:104.433920pt;}
._3c{width:107.621120pt;}
._30{width:109.796053pt;}
._40{width:117.182720pt;}
._44{width:119.357653pt;}
._5{width:120.997333pt;}
._43{width:128.337920pt;}
._2c{width:130.884693pt;}
._38{width:140.552533pt;}
._3d{width:157.338453pt;}
._2f{width:159.253760pt;}
._2a{width:163.659733pt;}
._41{width:166.554880pt;}
._35{width:170.512213pt;}
._27{width:185.810773pt;}
._37{width:193.516160pt;}
._31{width:220.926080pt;}
._29{width:227.300480pt;}
._2d{width:235.427840pt;}
._32{width:256.357120pt;}
._34{width:258.213333pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.880000pt;}
.y8c{bottom:2.906667pt;}
.y82{bottom:10.400000pt;}
.y7b{bottom:10.560000pt;}
.y83{bottom:18.080000pt;}
.y7c{bottom:18.240000pt;}
.y8b{bottom:18.266667pt;}
.y7f{bottom:25.760000pt;}
.y86{bottom:25.920000pt;}
.yc{bottom:32.960000pt;}
.y80{bottom:33.440000pt;}
.y85{bottom:33.600000pt;}
.yd0{bottom:41.120000pt;}
.yce{bottom:48.800000pt;}
.yb{bottom:50.720000pt;}
.ycf{bottom:56.480000pt;}
.yd3{bottom:56.520000pt;}
.yd1{bottom:64.160000pt;}
.yd4{bottom:64.200000pt;}
.ya{bottom:64.512000pt;}
.y41{bottom:99.072000pt;}
.ycb{bottom:101.472000pt;}
.y77{bottom:101.632000pt;}
.y79{bottom:104.832000pt;}
.ya7{bottom:104.992000pt;}
.yf5{bottom:112.832000pt;}
.y40{bottom:114.432000pt;}
.yca{bottom:116.832000pt;}
.y76{bottom:116.992000pt;}
.y78{bottom:117.312000pt;}
.ya6{bottom:120.192000pt;}
.yf4{bottom:128.192000pt;}
.y3f{bottom:129.792000pt;}
.yc9{bottom:132.032000pt;}
.y75{bottom:132.192000pt;}
.ya5{bottom:135.546667pt;}
.yf3{bottom:143.546667pt;}
.y3e{bottom:145.146667pt;}
.yc8{bottom:147.386667pt;}
.y74{bottom:147.546667pt;}
.ya4{bottom:150.906667pt;}
.yf2{bottom:158.746667pt;}
.yf6{bottom:160.026667pt;}
.y3d{bottom:160.506667pt;}
.yc7{bottom:162.746667pt;}
.y73{bottom:162.906667pt;}
.ya3{bottom:166.266667pt;}
.yf1{bottom:174.106667pt;}
.y3c{bottom:175.706667pt;}
.yc6{bottom:178.106667pt;}
.y72{bottom:178.266667pt;}
.ya2{bottom:181.626667pt;}
.yf0{bottom:189.466667pt;}
.y3b{bottom:191.066667pt;}
.yc5{bottom:193.466667pt;}
.y71{bottom:193.626667pt;}
.ya1{bottom:196.986667pt;}
.yef{bottom:204.826667pt;}
.y3a{bottom:206.426667pt;}
.yc4{bottom:208.826667pt;}
.y70{bottom:208.986667pt;}
.ya0{bottom:212.186667pt;}
.yee{bottom:220.186667pt;}
.y39{bottom:221.786667pt;}
.yc3{bottom:224.026667pt;}
.y6f{bottom:224.186667pt;}
.y9f{bottom:227.546667pt;}
.yed{bottom:235.546667pt;}
.y38{bottom:237.146667pt;}
.yc2{bottom:239.386667pt;}
.y6e{bottom:239.546667pt;}
.y9e{bottom:242.906667pt;}
.yec{bottom:250.746667pt;}
.y37{bottom:252.506667pt;}
.yc1{bottom:254.746667pt;}
.y6d{bottom:254.906667pt;}
.y9d{bottom:258.266667pt;}
.yeb{bottom:266.106667pt;}
.y36{bottom:267.706667pt;}
.yc0{bottom:270.106667pt;}
.y6c{bottom:270.266667pt;}
.y9c{bottom:273.626667pt;}
.yea{bottom:281.466667pt;}
.y35{bottom:283.066667pt;}
.ybf{bottom:285.466667pt;}
.y6b{bottom:285.626667pt;}
.y9b{bottom:288.826667pt;}
.ye9{bottom:296.826667pt;}
.y34{bottom:298.426667pt;}
.y6a{bottom:300.866667pt;}
.y9a{bottom:304.226667pt;}
.ye8{bottom:312.226667pt;}
.y33{bottom:313.826667pt;}
.ybe{bottom:316.066667pt;}
.y69{bottom:316.226667pt;}
.y99{bottom:319.586667pt;}
.ye7{bottom:327.586667pt;}
.y32{bottom:329.186667pt;}
.ybd{bottom:331.426667pt;}
.y68{bottom:331.586667pt;}
.y98{bottom:334.946667pt;}
.ye6{bottom:342.786667pt;}
.y31{bottom:344.546667pt;}
.ybc{bottom:346.786667pt;}
.y67{bottom:346.946667pt;}
.y97{bottom:350.306667pt;}
.ye5{bottom:358.146667pt;}
.y30{bottom:359.746667pt;}
.ybb{bottom:362.146667pt;}
.y66{bottom:362.306667pt;}
.y96{bottom:365.666667pt;}
.ye4{bottom:373.506667pt;}
.y2f{bottom:375.106667pt;}
.yba{bottom:377.506667pt;}
.y65{bottom:377.666667pt;}
.y95{bottom:380.866667pt;}
.ye3{bottom:388.866667pt;}
.y2e{bottom:392.386667pt;}
.yb9{bottom:392.706667pt;}
.y64{bottom:392.866667pt;}
.y94{bottom:396.226667pt;}
.ye2{bottom:404.226667pt;}
.y2d{bottom:407.746667pt;}
.yb8{bottom:408.066667pt;}
.y63{bottom:408.226667pt;}
.y93{bottom:411.586667pt;}
.ye1{bottom:419.426667pt;}
.y2c{bottom:423.106667pt;}
.yb7{bottom:423.426667pt;}
.y62{bottom:423.586667pt;}
.y92{bottom:426.946667pt;}
.ye0{bottom:434.786667pt;}
.y2b{bottom:438.466667pt;}
.yb6{bottom:438.786667pt;}
.y61{bottom:438.946667pt;}
.y91{bottom:442.306667pt;}
.ydf{bottom:450.146667pt;}
.y2a{bottom:453.826667pt;}
.yb5{bottom:454.146667pt;}
.y60{bottom:454.306667pt;}
.y90{bottom:457.666667pt;}
.yde{bottom:465.506667pt;}
.y29{bottom:469.186667pt;}
.yb4{bottom:469.506667pt;}
.y5f{bottom:469.666667pt;}
.y8f{bottom:472.866667pt;}
.ydd{bottom:480.866667pt;}
.y28{bottom:484.386667pt;}
.yb3{bottom:484.706667pt;}
.y5e{bottom:484.866667pt;}
.y8e{bottom:488.226667pt;}
.ydc{bottom:496.226667pt;}
.y27{bottom:499.746667pt;}
.yb2{bottom:500.066667pt;}
.y5d{bottom:500.226667pt;}
.y8d{bottom:502.306667pt;}
.ydb{bottom:511.426667pt;}
.y26{bottom:515.106667pt;}
.yb1{bottom:515.426667pt;}
.y5c{bottom:515.586667pt;}
.yda{bottom:526.786667pt;}
.y25{bottom:530.466667pt;}
.yb0{bottom:530.786667pt;}
.y5b{bottom:530.946667pt;}
.y8a{bottom:536.066667pt;}
.yd9{bottom:542.173333pt;}
.y24{bottom:545.853333pt;}
.yaf{bottom:546.173333pt;}
.y5a{bottom:546.333333pt;}
.yd8{bottom:557.533333pt;}
.yd6{bottom:560.413333pt;}
.y23{bottom:561.213333pt;}
.yae{bottom:561.533333pt;}
.y59{bottom:561.693333pt;}
.y89{bottom:569.693333pt;}
.yd7{bottom:570.013333pt;}
.y22{bottom:576.413333pt;}
.yad{bottom:576.733333pt;}
.y58{bottom:576.893333pt;}
.y21{bottom:591.773333pt;}
.yac{bottom:592.093333pt;}
.y57{bottom:592.253333pt;}
.y88{bottom:603.453333pt;}
.y20{bottom:607.133333pt;}
.yab{bottom:607.453333pt;}
.y56{bottom:607.613333pt;}
.y1f{bottom:622.493333pt;}
.yaa{bottom:622.813333pt;}
.y55{bottom:622.973333pt;}
.y87{bottom:637.053333pt;}
.y1e{bottom:637.853333pt;}
.ya9{bottom:638.173333pt;}
.y54{bottom:638.333333pt;}
.yd5{bottom:640.093333pt;}
.ya8{bottom:650.493333pt;}
.y1d{bottom:653.213333pt;}
.y53{bottom:653.533333pt;}
.y1c{bottom:668.413333pt;}
.y52{bottom:668.893333pt;}
.y1b{bottom:683.773333pt;}
.y51{bottom:684.253333pt;}
.y84{bottom:686.013333pt;}
.y1a{bottom:699.133333pt;}
.y50{bottom:699.613333pt;}
.y19{bottom:714.493333pt;}
.y4f{bottom:714.973333pt;}
.yd2{bottom:719.773333pt;}
.y18{bottom:729.853333pt;}
.y4e{bottom:730.333333pt;}
.y81{bottom:735.133333pt;}
.y17{bottom:745.213333pt;}
.y4d{bottom:745.533333pt;}
.y16{bottom:760.413333pt;}
.y4c{bottom:760.893333pt;}
.y15{bottom:775.813333pt;}
.y4b{bottom:776.293333pt;}
.y7e{bottom:784.133333pt;}
.y4a{bottom:791.653333pt;}
.y14{bottom:793.093333pt;}
.ycd{bottom:799.493333pt;}
.y49{bottom:807.013333pt;}
.y13{bottom:814.213333pt;}
.y48{bottom:822.373333pt;}
.y12{bottom:831.013333pt;}
.y7a{bottom:833.093333pt;}
.y47{bottom:837.573333pt;}
.y11{bottom:842.693333pt;}
.y46{bottom:852.933333pt;}
.y10{bottom:859.173333pt;}
.y45{bottom:868.293333pt;}
.yf{bottom:875.013333pt;}
.ycc{bottom:879.013333pt;}
.y44{bottom:883.653333pt;}
.ye{bottom:893.413333pt;}
.y43{bottom:899.013333pt;}
.yd{bottom:911.813333pt;}
.y42{bottom:914.213333pt;}
.y9{bottom:931.013333pt;}
.y8{bottom:949.093333pt;}
.y7{bottom:964.453333pt;}
.y6{bottom:980.453333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1032.960000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h9{height:25.918750pt;}
.h10{height:30.560000pt;}
.hc{height:30.720000pt;}
.h11{height:30.752000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h14{height:38.672812pt;}
.hb{height:38.828437pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.hd{height:45.920000pt;}
.he{height:45.952000pt;}
.hf{height:46.080000pt;}
.h8{height:47.310625pt;}
.h6{height:63.656250pt;}
.h12{height:76.640000pt;}
.h13{height:76.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:78.080000pt;}
.w3{width:119.360000pt;}
.w7{width:123.872000pt;}
.w9{width:127.520000pt;}
.w8{width:132.032000pt;}
.wa{width:135.226667pt;}
.w4{width:209.186667pt;}
.w5{width:270.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.xf{left:104.511988pt;}
.x1{left:112.351988pt;}
.x22{left:115.231988pt;}
.x8{left:118.271988pt;}
.x27{left:120.031988pt;}
.x21{left:128.031988pt;}
.x17{left:135.546655pt;}
.x9{left:142.426655pt;}
.x5{left:149.466655pt;}
.x1e{left:151.386655pt;}
.x1c{left:154.426655pt;}
.xa{left:168.986655pt;}
.x18{left:175.706667pt;}
.x11{left:176.826655pt;}
.x12{left:183.066655pt;}
.xc{left:198.266655pt;}
.x1f{left:206.266655pt;}
.x16{left:208.986655pt;}
.xd{left:212.986655pt;}
.x13{left:216.986667pt;}
.x24{left:218.906655pt;}
.xb{left:265.986655pt;}
.x19{left:300.546667pt;}
.x23{left:316.546655pt;}
.xe{left:336.866655pt;}
.x7{left:343.426655pt;}
.x25{left:345.026655pt;}
.x26{left:355.746655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x14{left:426.973333pt;}
.x1a{left:433.533333pt;}
.x4{left:460.893322pt;}
.x1b{left:562.013333pt;}
.x1d{left:575.293322pt;}
.x15{left:580.893322pt;}
.x10{left:600.933322pt;}
.x20{left:603.013322pt;}
}




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