
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dcca74c4de71b7a5cfd2f04a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_350e1b892f3ddeb8a9d5c063.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c16dc8505f6844fc67b6227b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af59584081f852be40503eb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.813477;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_4ae3163079a105373430e7d7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c628020853662ad2f673a9b2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e44b854cf12e7fffbd6b64c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f6745e1aa38064aa56492927.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7a3eae992b9233365b7a573c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e1412329505adc3d6c4001c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.900000px;}
.ls13{letter-spacing:16.506720px;}
.ls1{letter-spacing:37.596000px;}
.ls12{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.328000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-7.566480px;}
._9{margin-left:-6.359040px;}
._6{margin-left:-5.207760px;}
._17{margin-left:-4.191840px;}
._1{margin-left:-3.179520px;}
._a{margin-left:-2.063040px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._f{width:2.430000px;}
._8{width:3.446640px;}
._4{width:4.883760px;}
._11{width:5.956800px;}
._10{width:7.290720px;}
._12{width:8.555040px;}
._16{width:9.648960px;}
._13{width:10.669440px;}
._5{width:12.029040px;}
._3{width:13.214880px;}
._15{width:16.952640px;}
._18{width:18.967200px;}
._19{width:20.697840px;}
._1a{width:21.787200px;}
._e{width:25.471200px;}
._14{width:27.310320px;}
._d{width:29.581200px;}
._c{width:32.093280px;}
._b{width:37.658880px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y7{bottom:14.760000px;}
.y2b{bottom:25.560000px;}
.y6{bottom:43.920000px;}
.y2a{bottom:45.360000px;}
.yd{bottom:57.240000px;}
.y5{bottom:64.080000px;}
.y29{bottom:65.160000px;}
.yb{bottom:73.800000px;}
.ybc{bottom:77.400000px;}
.ya{bottom:78.300000px;}
.y28{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.y71{bottom:88.200000px;}
.yaa{bottom:90.180000px;}
.yf7{bottom:95.400000px;}
.ybb{bottom:97.200000px;}
.y7b{bottom:99.180000px;}
.y27{bottom:104.940000px;}
.ye2{bottom:106.200000px;}
.y9{bottom:107.490000px;}
.y70{bottom:108.180000px;}
.y3b{bottom:108.720000px;}
.ya9{bottom:109.980000px;}
.yf6{bottom:115.200000px;}
.yba{bottom:117.180000px;}
.y7a{bottom:118.980000px;}
.y3{bottom:122.610000px;}
.y26{bottom:124.740000px;}
.ye1{bottom:126.180000px;}
.y6f{bottom:127.980000px;}
.y3a{bottom:128.520000px;}
.ya8{bottom:129.780000px;}
.yf5{bottom:135.180000px;}
.y8{bottom:136.650000px;}
.yb9{bottom:136.980000px;}
.y79{bottom:138.780000px;}
.y25{bottom:144.540000px;}
.ye0{bottom:145.980000px;}
.y6e{bottom:147.780000px;}
.y39{bottom:148.320000px;}
.ya7{bottom:149.580000px;}
.yf4{bottom:155.010000px;}
.yb8{bottom:156.810000px;}
.y78{bottom:158.610000px;}
.y24{bottom:164.340000px;}
.ydf{bottom:165.810000px;}
.y6d{bottom:167.610000px;}
.y38{bottom:168.150000px;}
.ya6{bottom:169.410000px;}
.yf3{bottom:174.810000px;}
.yb7{bottom:176.610000px;}
.y77{bottom:178.410000px;}
.y23{bottom:184.320000px;}
.yde{bottom:185.610000px;}
.y6c{bottom:187.410000px;}
.y37{bottom:187.950000px;}
.yf2{bottom:194.610000px;}
.yb6{bottom:196.410000px;}
.y76{bottom:198.390000px;}
.y22{bottom:204.120000px;}
.ydd{bottom:205.410000px;}
.y6b{bottom:207.390000px;}
.y36{bottom:207.930000px;}
.yf1{bottom:214.410000px;}
.yb5{bottom:216.390000px;}
.y75{bottom:218.190000px;}
.y21{bottom:223.920000px;}
.ydc{bottom:225.390000px;}
.y6a{bottom:227.190000px;}
.y35{bottom:227.730000px;}
.yf0{bottom:234.390000px;}
.yb4{bottom:236.190000px;}
.y74{bottom:237.990000px;}
.y20{bottom:243.750000px;}
.ydb{bottom:245.190000px;}
.y69{bottom:246.990000px;}
.y34{bottom:247.530000px;}
.yef{bottom:254.190000px;}
.y91{bottom:255.990000px;}
.y73{bottom:257.790000px;}
.y1f{bottom:263.550000px;}
.yda{bottom:264.990000px;}
.y68{bottom:266.790000px;}
.y33{bottom:267.330000px;}
.yee{bottom:273.990000px;}
.y90{bottom:275.790000px;}
.ya5{bottom:277.590000px;}
.y1e{bottom:283.530000px;}
.yd9{bottom:284.790000px;}
.y67{bottom:286.590000px;}
.y32{bottom:287.130000px;}
.yed{bottom:293.790000px;}
.y8f{bottom:295.590000px;}
.ya4{bottom:297.570000px;}
.y1d{bottom:303.330000px;}
.yd8{bottom:304.590000px;}
.y66{bottom:306.570000px;}
.y31{bottom:307.110000px;}
.yec{bottom:313.590000px;}
.y8e{bottom:315.570000px;}
.ya3{bottom:317.370000px;}
.y1c{bottom:323.130000px;}
.yd7{bottom:324.570000px;}
.y65{bottom:326.370000px;}
.y30{bottom:326.910000px;}
.yeb{bottom:333.570000px;}
.y8d{bottom:335.370000px;}
.ya2{bottom:337.170000px;}
.y1b{bottom:342.930000px;}
.yd6{bottom:344.370000px;}
.y64{bottom:346.170000px;}
.y2f{bottom:346.710000px;}
.yea{bottom:353.370000px;}
.y8c{bottom:355.170000px;}
.ya1{bottom:356.970000px;}
.y1a{bottom:362.730000px;}
.ye9{bottom:364.170000px;}
.y63{bottom:365.970000px;}
.y2e{bottom:366.510000px;}
.yd5{bottom:373.170000px;}
.y8b{bottom:374.970000px;}
.ya0{bottom:376.770000px;}
.y19{bottom:382.710000px;}
.ye8{bottom:383.970000px;}
.y62{bottom:385.770000px;}
.y2d{bottom:386.310000px;}
.yd4{bottom:392.970000px;}
.y8a{bottom:394.770000px;}
.y18{bottom:402.510000px;}
.ye7{bottom:403.815000px;}
.y61{bottom:405.795000px;}
.y2c{bottom:406.335000px;}
.yd3{bottom:412.815000px;}
.y89{bottom:414.795000px;}
.y17{bottom:421.095000px;}
.ye6{bottom:423.795000px;}
.y60{bottom:425.595000px;}
.yd2{bottom:432.795000px;}
.y88{bottom:434.595000px;}
.ye5{bottom:443.595000px;}
.y72{bottom:445.395000px;}
.yd1{bottom:452.595000px;}
.y5f{bottom:454.395000px;}
.ye4{bottom:463.395000px;}
.y9f{bottom:465.195000px;}
.yd0{bottom:472.395000px;}
.y5e{bottom:474.195000px;}
.ye3{bottom:483.195000px;}
.y9e{bottom:484.995000px;}
.ycf{bottom:492.195000px;}
.y5d{bottom:493.995000px;}
.yb3{bottom:502.995000px;}
.y9d{bottom:504.975000px;}
.yce{bottom:511.995000px;}
.y5c{bottom:513.975000px;}
.yb2{bottom:522.975000px;}
.y9c{bottom:524.775000px;}
.ycd{bottom:531.975000px;}
.y5b{bottom:533.775000px;}
.yb1{bottom:542.775000px;}
.y9b{bottom:544.575000px;}
.ycc{bottom:551.775000px;}
.y5a{bottom:553.575000px;}
.yb0{bottom:562.575000px;}
.y9a{bottom:564.375000px;}
.ycb{bottom:571.575000px;}
.y59{bottom:573.375000px;}
.yaf{bottom:582.375000px;}
.yca{bottom:591.375000px;}
.y58{bottom:593.175000px;}
.y87{bottom:602.175000px;}
.yc9{bottom:611.175000px;}
.y57{bottom:613.155000px;}
.y86{bottom:622.155000px;}
.yc8{bottom:631.155000px;}
.y56{bottom:632.955000px;}
.y85{bottom:641.955000px;}
.yc7{bottom:650.985000px;}
.y55{bottom:652.785000px;}
.y84{bottom:661.785000px;}
.yc6{bottom:670.785000px;}
.y99{bottom:672.585000px;}
.y54{bottom:681.585000px;}
.yc5{bottom:690.585000px;}
.y98{bottom:692.385000px;}
.y53{bottom:701.385000px;}
.yc4{bottom:710.385000px;}
.y97{bottom:712.365000px;}
.y52{bottom:721.365000px;}
.yc3{bottom:730.365000px;}
.y96{bottom:732.165000px;}
.y51{bottom:741.165000px;}
.yc2{bottom:750.165000px;}
.y95{bottom:751.965000px;}
.y50{bottom:760.965000px;}
.yc1{bottom:769.965000px;}
.y94{bottom:771.765000px;}
.y4f{bottom:780.765000px;}
.yc0{bottom:789.765000px;}
.y93{bottom:791.565000px;}
.y4e{bottom:800.565000px;}
.ybf{bottom:809.565000px;}
.y92{bottom:811.545000px;}
.y4d{bottom:820.545000px;}
.ybe{bottom:829.545000px;}
.y15{bottom:838.365000px;}
.y4c{bottom:840.345000px;}
.ybd{bottom:849.345000px;}
.y83{bottom:860.145000px;}
.y14{bottom:863.925000px;}
.y4b{bottom:869.145000px;}
.y82{bottom:879.945000px;}
.y4a{bottom:888.945000px;}
.y13{bottom:889.125000px;}
.y81{bottom:899.790000px;}
.y12{bottom:904.290000px;}
.y49{bottom:908.790000px;}
.y80{bottom:919.770000px;}
.y11{bottom:926.070000px;}
.y48{bottom:928.770000px;}
.y7f{bottom:939.570000px;}
.y10{bottom:947.850000px;}
.y47{bottom:948.570000px;}
.y7e{bottom:959.370000px;}
.y46{bottom:968.370000px;}
.yf{bottom:972.870000px;}
.y7d{bottom:979.170000px;}
.y45{bottom:988.170000px;}
.y7c{bottom:998.970000px;}
.ye{bottom:1004.550000px;}
.y44{bottom:1007.970000px;}
.yae{bottom:1018.950000px;}
.y43{bottom:1027.950000px;}
.yc{bottom:1031.550000px;}
.yad{bottom:1038.750000px;}
.y1{bottom:1047.750000px;}
.yac{bottom:1058.550000px;}
.y42{bottom:1067.550000px;}
.yab{bottom:1078.350000px;}
.y41{bottom:1087.350000px;}
.y40{bottom:1107.150000px;}
.y3f{bottom:1127.130000px;}
.y3e{bottom:1146.960000px;}
.y3d{bottom:1166.760000px;}
.y3c{bottom:1195.740000px;}
.h3{height:2.864531px;}
.hd{height:19.800000px;}
.hb{height:28.115859px;}
.hc{height:42.164648px;}
.h10{height:42.835781px;}
.hf{height:43.215117px;}
.h11{height:43.506914px;}
.h9{height:46.736719px;}
.h7{height:47.901094px;}
.ha{height:53.224453px;}
.h6{height:55.987031px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.he{height:416.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xd{left:80.999987px;}
.xc{left:108.035987px;}
.x7{left:109.845000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.xb{left:206.309987px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xa{left:343.875000px;}
.x8{left:681.270000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls1{letter-spacing:33.418667pt;}
.ls12{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.736000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-6.725760pt;}
._9{margin-left:-5.652480pt;}
._6{margin-left:-4.629120pt;}
._17{margin-left:-3.726080pt;}
._1{margin-left:-2.826240pt;}
._a{margin-left:-1.833813pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._f{width:2.160000pt;}
._8{width:3.063680pt;}
._4{width:4.341120pt;}
._11{width:5.294933pt;}
._10{width:6.480640pt;}
._12{width:7.604480pt;}
._16{width:8.576853pt;}
._13{width:9.483947pt;}
._5{width:10.692480pt;}
._3{width:11.746560pt;}
._15{width:15.069013pt;}
._18{width:16.859733pt;}
._19{width:18.398080pt;}
._1a{width:19.366400pt;}
._e{width:22.641067pt;}
._14{width:24.275840pt;}
._d{width:26.294400pt;}
._c{width:28.527360pt;}
._b{width:33.474560pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y7{bottom:13.120000pt;}
.y2b{bottom:22.720000pt;}
.y6{bottom:39.040000pt;}
.y2a{bottom:40.320000pt;}
.yd{bottom:50.880000pt;}
.y5{bottom:56.960000pt;}
.y29{bottom:57.920000pt;}
.yb{bottom:65.600000pt;}
.ybc{bottom:68.800000pt;}
.ya{bottom:69.600000pt;}
.y28{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.y71{bottom:78.400000pt;}
.yaa{bottom:80.160000pt;}
.yf7{bottom:84.800000pt;}
.ybb{bottom:86.400000pt;}
.y7b{bottom:88.160000pt;}
.y27{bottom:93.280000pt;}
.ye2{bottom:94.400000pt;}
.y9{bottom:95.546667pt;}
.y70{bottom:96.160000pt;}
.y3b{bottom:96.640000pt;}
.ya9{bottom:97.760000pt;}
.yf6{bottom:102.400000pt;}
.yba{bottom:104.160000pt;}
.y7a{bottom:105.760000pt;}
.y3{bottom:108.986667pt;}
.y26{bottom:110.880000pt;}
.ye1{bottom:112.160000pt;}
.y6f{bottom:113.760000pt;}
.y3a{bottom:114.240000pt;}
.ya8{bottom:115.360000pt;}
.yf5{bottom:120.160000pt;}
.y8{bottom:121.466667pt;}
.yb9{bottom:121.760000pt;}
.y79{bottom:123.360000pt;}
.y25{bottom:128.480000pt;}
.ye0{bottom:129.760000pt;}
.y6e{bottom:131.360000pt;}
.y39{bottom:131.840000pt;}
.ya7{bottom:132.960000pt;}
.yf4{bottom:137.786667pt;}
.yb8{bottom:139.386667pt;}
.y78{bottom:140.986667pt;}
.y24{bottom:146.080000pt;}
.ydf{bottom:147.386667pt;}
.y6d{bottom:148.986667pt;}
.y38{bottom:149.466667pt;}
.ya6{bottom:150.586667pt;}
.yf3{bottom:155.386667pt;}
.yb7{bottom:156.986667pt;}
.y77{bottom:158.586667pt;}
.y23{bottom:163.840000pt;}
.yde{bottom:164.986667pt;}
.y6c{bottom:166.586667pt;}
.y37{bottom:167.066667pt;}
.yf2{bottom:172.986667pt;}
.yb6{bottom:174.586667pt;}
.y76{bottom:176.346667pt;}
.y22{bottom:181.440000pt;}
.ydd{bottom:182.586667pt;}
.y6b{bottom:184.346667pt;}
.y36{bottom:184.826667pt;}
.yf1{bottom:190.586667pt;}
.yb5{bottom:192.346667pt;}
.y75{bottom:193.946667pt;}
.y21{bottom:199.040000pt;}
.ydc{bottom:200.346667pt;}
.y6a{bottom:201.946667pt;}
.y35{bottom:202.426667pt;}
.yf0{bottom:208.346667pt;}
.yb4{bottom:209.946667pt;}
.y74{bottom:211.546667pt;}
.y20{bottom:216.666667pt;}
.ydb{bottom:217.946667pt;}
.y69{bottom:219.546667pt;}
.y34{bottom:220.026667pt;}
.yef{bottom:225.946667pt;}
.y91{bottom:227.546667pt;}
.y73{bottom:229.146667pt;}
.y1f{bottom:234.266667pt;}
.yda{bottom:235.546667pt;}
.y68{bottom:237.146667pt;}
.y33{bottom:237.626667pt;}
.yee{bottom:243.546667pt;}
.y90{bottom:245.146667pt;}
.ya5{bottom:246.746667pt;}
.y1e{bottom:252.026667pt;}
.yd9{bottom:253.146667pt;}
.y67{bottom:254.746667pt;}
.y32{bottom:255.226667pt;}
.yed{bottom:261.146667pt;}
.y8f{bottom:262.746667pt;}
.ya4{bottom:264.506667pt;}
.y1d{bottom:269.626667pt;}
.yd8{bottom:270.746667pt;}
.y66{bottom:272.506667pt;}
.y31{bottom:272.986667pt;}
.yec{bottom:278.746667pt;}
.y8e{bottom:280.506667pt;}
.ya3{bottom:282.106667pt;}
.y1c{bottom:287.226667pt;}
.yd7{bottom:288.506667pt;}
.y65{bottom:290.106667pt;}
.y30{bottom:290.586667pt;}
.yeb{bottom:296.506667pt;}
.y8d{bottom:298.106667pt;}
.ya2{bottom:299.706667pt;}
.y1b{bottom:304.826667pt;}
.yd6{bottom:306.106667pt;}
.y64{bottom:307.706667pt;}
.y2f{bottom:308.186667pt;}
.yea{bottom:314.106667pt;}
.y8c{bottom:315.706667pt;}
.ya1{bottom:317.306667pt;}
.y1a{bottom:322.426667pt;}
.ye9{bottom:323.706667pt;}
.y63{bottom:325.306667pt;}
.y2e{bottom:325.786667pt;}
.yd5{bottom:331.706667pt;}
.y8b{bottom:333.306667pt;}
.ya0{bottom:334.906667pt;}
.y19{bottom:340.186667pt;}
.ye8{bottom:341.306667pt;}
.y62{bottom:342.906667pt;}
.y2d{bottom:343.386667pt;}
.yd4{bottom:349.306667pt;}
.y8a{bottom:350.906667pt;}
.y18{bottom:357.786667pt;}
.ye7{bottom:358.946667pt;}
.y61{bottom:360.706667pt;}
.y2c{bottom:361.186667pt;}
.yd3{bottom:366.946667pt;}
.y89{bottom:368.706667pt;}
.y17{bottom:374.306667pt;}
.ye6{bottom:376.706667pt;}
.y60{bottom:378.306667pt;}
.yd2{bottom:384.706667pt;}
.y88{bottom:386.306667pt;}
.ye5{bottom:394.306667pt;}
.y72{bottom:395.906667pt;}
.yd1{bottom:402.306667pt;}
.y5f{bottom:403.906667pt;}
.ye4{bottom:411.906667pt;}
.y9f{bottom:413.506667pt;}
.yd0{bottom:419.906667pt;}
.y5e{bottom:421.506667pt;}
.ye3{bottom:429.506667pt;}
.y9e{bottom:431.106667pt;}
.ycf{bottom:437.506667pt;}
.y5d{bottom:439.106667pt;}
.yb3{bottom:447.106667pt;}
.y9d{bottom:448.866667pt;}
.yce{bottom:455.106667pt;}
.y5c{bottom:456.866667pt;}
.yb2{bottom:464.866667pt;}
.y9c{bottom:466.466667pt;}
.ycd{bottom:472.866667pt;}
.y5b{bottom:474.466667pt;}
.yb1{bottom:482.466667pt;}
.y9b{bottom:484.066667pt;}
.ycc{bottom:490.466667pt;}
.y5a{bottom:492.066667pt;}
.yb0{bottom:500.066667pt;}
.y9a{bottom:501.666667pt;}
.ycb{bottom:508.066667pt;}
.y59{bottom:509.666667pt;}
.yaf{bottom:517.666667pt;}
.yca{bottom:525.666667pt;}
.y58{bottom:527.266667pt;}
.y87{bottom:535.266667pt;}
.yc9{bottom:543.266667pt;}
.y57{bottom:545.026667pt;}
.y86{bottom:553.026667pt;}
.yc8{bottom:561.026667pt;}
.y56{bottom:562.626667pt;}
.y85{bottom:570.626667pt;}
.yc7{bottom:578.653333pt;}
.y55{bottom:580.253333pt;}
.y84{bottom:588.253333pt;}
.yc6{bottom:596.253333pt;}
.y99{bottom:597.853333pt;}
.y54{bottom:605.853333pt;}
.yc5{bottom:613.853333pt;}
.y98{bottom:615.453333pt;}
.y53{bottom:623.453333pt;}
.yc4{bottom:631.453333pt;}
.y97{bottom:633.213333pt;}
.y52{bottom:641.213333pt;}
.yc3{bottom:649.213333pt;}
.y96{bottom:650.813333pt;}
.y51{bottom:658.813333pt;}
.yc2{bottom:666.813333pt;}
.y95{bottom:668.413333pt;}
.y50{bottom:676.413333pt;}
.yc1{bottom:684.413333pt;}
.y94{bottom:686.013333pt;}
.y4f{bottom:694.013333pt;}
.yc0{bottom:702.013333pt;}
.y93{bottom:703.613333pt;}
.y4e{bottom:711.613333pt;}
.ybf{bottom:719.613333pt;}
.y92{bottom:721.373333pt;}
.y4d{bottom:729.373333pt;}
.ybe{bottom:737.373333pt;}
.y15{bottom:745.213333pt;}
.y4c{bottom:746.973333pt;}
.ybd{bottom:754.973333pt;}
.y83{bottom:764.573333pt;}
.y14{bottom:767.933333pt;}
.y4b{bottom:772.573333pt;}
.y82{bottom:782.173333pt;}
.y4a{bottom:790.173333pt;}
.y13{bottom:790.333333pt;}
.y81{bottom:799.813333pt;}
.y12{bottom:803.813333pt;}
.y49{bottom:807.813333pt;}
.y80{bottom:817.573333pt;}
.y11{bottom:823.173333pt;}
.y48{bottom:825.573333pt;}
.y7f{bottom:835.173333pt;}
.y10{bottom:842.533333pt;}
.y47{bottom:843.173333pt;}
.y7e{bottom:852.773333pt;}
.y46{bottom:860.773333pt;}
.yf{bottom:864.773333pt;}
.y7d{bottom:870.373333pt;}
.y45{bottom:878.373333pt;}
.y7c{bottom:887.973333pt;}
.ye{bottom:892.933333pt;}
.y44{bottom:895.973333pt;}
.yae{bottom:905.733333pt;}
.y43{bottom:913.733333pt;}
.yc{bottom:916.933333pt;}
.yad{bottom:923.333333pt;}
.y1{bottom:931.333333pt;}
.yac{bottom:940.933333pt;}
.y42{bottom:948.933333pt;}
.yab{bottom:958.533333pt;}
.y41{bottom:966.533333pt;}
.y40{bottom:984.133333pt;}
.y3f{bottom:1001.893333pt;}
.y3e{bottom:1019.520000pt;}
.y3d{bottom:1037.120000pt;}
.y3c{bottom:1062.880000pt;}
.h3{height:2.546250pt;}
.hd{height:17.600000pt;}
.hb{height:24.991875pt;}
.hc{height:37.479688pt;}
.h10{height:38.076250pt;}
.hf{height:38.413438pt;}
.h11{height:38.672812pt;}
.h9{height:41.543750pt;}
.h7{height:42.578750pt;}
.ha{height:47.310625pt;}
.h6{height:49.766250pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.he{height:370.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xd{left:71.999988pt;}
.xc{left:96.031988pt;}
.x7{left:97.640000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.xb{left:183.386655pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xa{left:305.666667pt;}
.x8{left:605.573333pt;}
}




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