
    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_3a071439d040de22278c402c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_f3c2b16699aa568dd80da07d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d5a24612dad67ba4d34691d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_e664911a95048b50e3306aa6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_097eaadd771f90451be87aa6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_456f2ea3f5195b71ee0098f2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_6ed85fcf6ca014031504768c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d18861fe735072766e52e0f0.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_77da7aebaa19fec04cf412d2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_75efa0eddae863cf27ca6ad1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_befa4f5bd97d63b95af893cd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_a532a2e397419812a3429f82.woff')format("woff");}.ffc{font-family:ffc;line-height:0.920410;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;}
.ls16{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.439920px;}
.ls9{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.386720px;}
.ls11{letter-spacing:2.340000px;}
.ls13{letter-spacing:4.500000px;}
.ls12{letter-spacing:13.860000px;}
.lsf{letter-spacing:37.001280px;}
.ls15{letter-spacing:46.026720px;}
.lsb{letter-spacing:82.746720px;}
.lse{letter-spacing:157.265280px;}
.ls2{letter-spacing:198.300000px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws4{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.482000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-8.320320px;}
._6{margin-left:-6.822720px;}
._5{margin-left:-5.166720px;}
._0{margin-left:-1.008000px;}
._1{width:1.380000px;}
._d{width:2.766720px;}
._15{width:3.864240px;}
._10{width:4.894800px;}
._11{width:6.253680px;}
._12{width:7.343040px;}
._e{width:8.904240px;}
._c{width:10.034160px;}
._19{width:11.528160px;}
._8{width:12.834480px;}
._9{width:13.890960px;}
._f{width:16.374240px;}
._16{width:17.449920px;}
._1a{width:18.645120px;}
._17{width:21.573360px;}
._18{width:22.589280px;}
._1c{width:24.083280px;}
._1d{width:25.093680px;}
._1b{width:26.609040px;}
._b{width:32.623440px;}
._a{width:33.704640px;}
._13{width:40.129200px;}
._14{width:41.215200px;}
._4{width:393.420000px;}
._3{width:833.400000px;}
._2{width:1590.936000px;}
.fc7{color:transparent;}
.fc8{color:rgb(13,64,95);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(153,153,153);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.916000px;}
.y38{bottom:3.240000px;}
.y37{bottom:20.514000px;}
.y36{bottom:38.514000px;}
.ye{bottom:43.740000px;}
.y35{bottom:59.214000px;}
.yc{bottom:68.580000px;}
.y34{bottom:79.194000px;}
.ya{bottom:94.896000px;}
.y33{bottom:123.474000px;}
.yd0{bottom:131.976000px;}
.yac{bottom:136.836000px;}
.y28{bottom:138.636000px;}
.y32{bottom:140.754000px;}
.ycf{bottom:157.710000px;}
.y31{bottom:158.034000px;}
.y86{bottom:159.330000px;}
.yab{bottom:162.570000px;}
.y60{bottom:162.750000px;}
.ye8{bottom:169.770000px;}
.ye9{bottom:174.450000px;}
.y30{bottom:175.134000px;}
.yce{bottom:183.630000px;}
.y85{bottom:185.070000px;}
.yaa{bottom:188.490000px;}
.y5f{bottom:188.670000px;}
.y2f{bottom:192.414000px;}
.ye7{bottom:195.510000px;}
.ycd{bottom:209.550000px;}
.y2e{bottom:209.739000px;}
.y84{bottom:210.990000px;}
.ya9{bottom:214.410000px;}
.y5e{bottom:214.590000px;}
.ye6{bottom:221.430000px;}
.y2d{bottom:227.019000px;}
.ycc{bottom:235.470000px;}
.y83{bottom:236.910000px;}
.ya8{bottom:240.150000px;}
.y5d{bottom:240.330000px;}
.y2c{bottom:244.299000px;}
.ye5{bottom:247.350000px;}
.ycb{bottom:261.210000px;}
.y2b{bottom:261.399000px;}
.y82{bottom:262.650000px;}
.ya7{bottom:266.070000px;}
.y5c{bottom:266.250000px;}
.ye4{bottom:273.270000px;}
.y2a{bottom:278.679000px;}
.yca{bottom:287.130000px;}
.y81{bottom:288.570000px;}
.ya6{bottom:291.990000px;}
.y29{bottom:295.959000px;}
.ye3{bottom:299.010000px;}
.y5b{bottom:307.110000px;}
.yc9{bottom:313.050000px;}
.y80{bottom:314.490000px;}
.ya5{bottom:317.910000px;}
.ye2{bottom:324.930000px;}
.yc8{bottom:339.015000px;}
.y5a{bottom:339.375000px;}
.y7f{bottom:340.455000px;}
.ya4{bottom:343.695000px;}
.ye1{bottom:350.895000px;}
.y7e{bottom:366.195000px;}
.y59{bottom:366.735000px;}
.ya3{bottom:369.615000px;}
.yc7{bottom:373.755000px;}
.ye0{bottom:376.815000px;}
.y7d{bottom:392.115000px;}
.y58{bottom:392.655000px;}
.ya2{bottom:395.535000px;}
.yc6{bottom:400.035000px;}
.ydf{bottom:402.555000px;}
.yc5{bottom:417.315000px;}
.y7c{bottom:418.035000px;}
.y57{bottom:418.575000px;}
.ya1{bottom:421.455000px;}
.yde{bottom:428.475000px;}
.yc4{bottom:434.595000px;}
.y7b{bottom:443.955000px;}
.ya0{bottom:447.195000px;}
.yc3{bottom:451.875000px;}
.y27{bottom:454.035000px;}
.ydd{bottom:454.395000px;}
.y56{bottom:459.075000px;}
.yc2{bottom:469.155000px;}
.y7a{bottom:469.695000px;}
.y26{bottom:471.315000px;}
.y9f{bottom:473.115000px;}
.ydc{bottom:480.315000px;}
.y55{bottom:486.615000px;}
.y25{bottom:487.875000px;}
.yc1{bottom:490.755000px;}
.y79{bottom:495.615000px;}
.y9e{bottom:499.035000px;}
.ydb{bottom:506.055000px;}
.y24{bottom:511.455000px;}
.y54{bottom:512.535000px;}
.y78{bottom:521.535000px;}
.y9d{bottom:524.955000px;}
.yc0{bottom:526.035000px;}
.yda{bottom:531.975000px;}
.y23{bottom:537.555000px;}
.y53{bottom:538.455000px;}
.ybf{bottom:543.315000px;}
.y77{bottom:547.455000px;}
.y9c{bottom:550.695000px;}
.y22{bottom:555.375000px;}
.yd9{bottom:557.895000px;}
.ybe{bottom:560.595000px;}
.y52{bottom:564.195000px;}
.y76{bottom:573.195000px;}
.y21{bottom:574.275000px;}
.y9b{bottom:576.615000px;}
.ybd{bottom:577.875000px;}
.yd8{bottom:586.695000px;}
.y51{bottom:590.115000px;}
.y20{bottom:593.355000px;}
.ybc{bottom:595.155000px;}
.y75{bottom:599.115000px;}
.y9a{bottom:602.535000px;}
.y1f{bottom:612.285000px;}
.yd7{bottom:615.525000px;}
.y50{bottom:616.065000px;}
.y74{bottom:625.065000px;}
.y99{bottom:628.485000px;}
.ybb{bottom:629.565000px;}
.y1e{bottom:631.185000px;}
.yd6{bottom:635.325000px;}
.y4f{bottom:641.985000px;}
.yba{bottom:646.845000px;}
.y1d{bottom:650.265000px;}
.y73{bottom:650.985000px;}
.y98{bottom:654.225000px;}
.yd5{bottom:655.305000px;}
.yb9{bottom:664.125000px;}
.y4e{bottom:667.725000px;}
.y1c{bottom:669.165000px;}
.yd4{bottom:675.105000px;}
.y72{bottom:676.725000px;}
.y97{bottom:680.145000px;}
.yb8{bottom:681.405000px;}
.y1b{bottom:688.245000px;}
.y4d{bottom:693.645000px;}
.yd3{bottom:694.905000px;}
.yb7{bottom:698.505000px;}
.y71{bottom:702.645000px;}
.y96{bottom:706.065000px;}
.y1a{bottom:707.145000px;}
.yd2{bottom:714.705000px;}
.y4c{bottom:719.565000px;}
.y19{bottom:726.045000px;}
.y70{bottom:728.565000px;}
.y95{bottom:731.985000px;}
.yb6{bottom:733.785000px;}
.yd1{bottom:734.505000px;}
.y18{bottom:745.125000px;}
.y4b{bottom:745.485000px;}
.yb5{bottom:751.065000px;}
.y6f{bottom:754.485000px;}
.y94{bottom:757.725000px;}
.y17{bottom:764.025000px;}
.yb4{bottom:768.345000px;}
.y4a{bottom:771.225000px;}
.y6e{bottom:780.225000px;}
.y16{bottom:783.105000px;}
.y93{bottom:783.645000px;}
.yb3{bottom:785.625000px;}
.y49{bottom:797.145000px;}
.y15{bottom:802.365000px;}
.yb2{bottom:802.905000px;}
.y6d{bottom:806.145000px;}
.y92{bottom:809.565000px;}
.yb1{bottom:820.005000px;}
.y14{bottom:822.705000px;}
.y48{bottom:823.065000px;}
.y6c{bottom:832.065000px;}
.y91{bottom:835.305000px;}
.yb0{bottom:837.285000px;}
.y13{bottom:841.245000px;}
.y47{bottom:848.805000px;}
.yaf{bottom:854.565000px;}
.y6b{bottom:857.805000px;}
.y12{bottom:859.245000px;}
.y90{bottom:861.225000px;}
.yae{bottom:871.890000px;}
.y46{bottom:874.770000px;}
.y11{bottom:879.990000px;}
.y6a{bottom:883.770000px;}
.y8f{bottom:887.190000px;}
.y10{bottom:900.690000px;}
.yad{bottom:906.630000px;}
.y69{bottom:909.690000px;}
.y8e{bottom:913.110000px;}
.yf{bottom:921.390000px;}
.y45{bottom:926.610000px;}
.y68{bottom:935.610000px;}
.y8d{bottom:938.850000px;}
.y9{bottom:941.370000px;}
.y44{bottom:952.350000px;}
.y8{bottom:958.650000px;}
.y67{bottom:961.350000px;}
.y8c{bottom:964.770000px;}
.y7{bottom:972.690000px;}
.y43{bottom:978.270000px;}
.y66{bottom:987.270000px;}
.y8b{bottom:990.690000px;}
.y42{bottom:1004.190000px;}
.y65{bottom:1013.190000px;}
.y8a{bottom:1016.610000px;}
.y6{bottom:1027.230000px;}
.y41{bottom:1030.110000px;}
.y64{bottom:1039.110000px;}
.y89{bottom:1042.350000px;}
.y5{bottom:1052.070000px;}
.y40{bottom:1055.850000px;}
.y63{bottom:1064.850000px;}
.y88{bottom:1068.270000px;}
.y4{bottom:1073.130000px;}
.y3f{bottom:1081.770000px;}
.y62{bottom:1090.770000px;}
.y3{bottom:1093.830000px;}
.y87{bottom:1098.690000px;}
.y3e{bottom:1107.690000px;}
.y2{bottom:1114.530000px;}
.y61{bottom:1116.690000px;}
.y1{bottom:1131.270000px;}
.y3d{bottom:1142.640000px;}
.y3c{bottom:1166.400000px;}
.y3b{bottom:1180.440000px;}
.y3a{bottom:1201.140000px;}
.y39{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h5{height:39.471680px;}
.hb{height:42.327773px;}
.h7{height:47.381836px;}
.h4{height:52.435898px;}
.h2{height:53.077852px;}
.h9{height:58.121719px;}
.ha{height:58.833281px;}
.hd{height:63.175781px;}
.h3{height:63.949219px;}
.he{height:65.884219px;}
.hc{height:309.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:348.015000px;}
.w4{width:348.375000px;}
.w3{width:349.230000px;}
.w6{width:349.590000px;}
.w5{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.460000px;}
.x9{left:97.776000px;}
.x7{left:106.235987px;}
.xc{left:107.315987px;}
.x17{left:121.355987px;}
.x1e{left:133.235987px;}
.x13{left:135.755987px;}
.xd{left:140.795987px;}
.xe{left:145.295987px;}
.x14{left:157.349987px;}
.x1d{left:160.229987px;}
.x1c{left:180.749987px;}
.x12{left:205.049987px;}
.x16{left:225.389987px;}
.x1b{left:234.029987px;}
.x2{left:254.189987px;}
.xf{left:269.849987px;}
.x6{left:273.989987px;}
.xb{left:312.915000px;}
.x15{left:327.134987px;}
.x19{left:333.974987px;}
.x11{left:357.734987px;}
.x5{left:362.414987px;}
.x1a{left:372.854987px;}
.x4{left:379.874987px;}
.x3{left:398.414987px;}
.x10{left:419.834987px;}
.x18{left:429.914987px;}
.x8{left:446.474987px;}
.x1{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.391040pt;}
.ls9{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.232640pt;}
.ls11{letter-spacing:2.080000pt;}
.ls13{letter-spacing:4.000000pt;}
.ls12{letter-spacing:12.320000pt;}
.lsf{letter-spacing:32.890027pt;}
.ls15{letter-spacing:40.912640pt;}
.lsb{letter-spacing:73.552640pt;}
.lse{letter-spacing:139.791360pt;}
.ls2{letter-spacing:176.266667pt;}
.ws7{word-spacing:-58.880000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws3{word-spacing:-11.984000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-7.395840pt;}
._6{margin-left:-6.064640pt;}
._5{margin-left:-4.592640pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.226667pt;}
._d{width:2.459307pt;}
._15{width:3.434880pt;}
._10{width:4.350933pt;}
._11{width:5.558827pt;}
._12{width:6.527147pt;}
._e{width:7.914880pt;}
._c{width:8.919253pt;}
._19{width:10.247253pt;}
._8{width:11.408427pt;}
._9{width:12.347520pt;}
._f{width:14.554880pt;}
._16{width:15.511040pt;}
._1a{width:16.573440pt;}
._17{width:19.176320pt;}
._18{width:20.079360pt;}
._1c{width:21.407360pt;}
._1d{width:22.305493pt;}
._1b{width:23.652480pt;}
._b{width:28.998613pt;}
._a{width:29.959680pt;}
._13{width:35.670400pt;}
._14{width:36.635733pt;}
._4{width:349.706667pt;}
._3{width:740.800000pt;}
._2{width:1414.165333pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.592000pt;}
.y38{bottom:2.880000pt;}
.y37{bottom:18.234667pt;}
.y36{bottom:34.234667pt;}
.ye{bottom:38.880000pt;}
.y35{bottom:52.634667pt;}
.yc{bottom:60.960000pt;}
.y34{bottom:70.394667pt;}
.ya{bottom:84.352000pt;}
.y33{bottom:109.754667pt;}
.yd0{bottom:117.312000pt;}
.yac{bottom:121.632000pt;}
.y28{bottom:123.232000pt;}
.y32{bottom:125.114667pt;}
.ycf{bottom:140.186667pt;}
.y31{bottom:140.474667pt;}
.y86{bottom:141.626667pt;}
.yab{bottom:144.506667pt;}
.y60{bottom:144.666667pt;}
.ye8{bottom:150.906667pt;}
.ye9{bottom:155.066667pt;}
.y30{bottom:155.674667pt;}
.yce{bottom:163.226667pt;}
.y85{bottom:164.506667pt;}
.yaa{bottom:167.546667pt;}
.y5f{bottom:167.706667pt;}
.y2f{bottom:171.034667pt;}
.ye7{bottom:173.786667pt;}
.ycd{bottom:186.266667pt;}
.y2e{bottom:186.434667pt;}
.y84{bottom:187.546667pt;}
.ya9{bottom:190.586667pt;}
.y5e{bottom:190.746667pt;}
.ye6{bottom:196.826667pt;}
.y2d{bottom:201.794667pt;}
.ycc{bottom:209.306667pt;}
.y83{bottom:210.586667pt;}
.ya8{bottom:213.466667pt;}
.y5d{bottom:213.626667pt;}
.y2c{bottom:217.154667pt;}
.ye5{bottom:219.866667pt;}
.ycb{bottom:232.186667pt;}
.y2b{bottom:232.354667pt;}
.y82{bottom:233.466667pt;}
.ya7{bottom:236.506667pt;}
.y5c{bottom:236.666667pt;}
.ye4{bottom:242.906667pt;}
.y2a{bottom:247.714667pt;}
.yca{bottom:255.226667pt;}
.y81{bottom:256.506667pt;}
.ya6{bottom:259.546667pt;}
.y29{bottom:263.074667pt;}
.ye3{bottom:265.786667pt;}
.y5b{bottom:272.986667pt;}
.yc9{bottom:278.266667pt;}
.y80{bottom:279.546667pt;}
.ya5{bottom:282.586667pt;}
.ye2{bottom:288.826667pt;}
.yc8{bottom:301.346667pt;}
.y5a{bottom:301.666667pt;}
.y7f{bottom:302.626667pt;}
.ya4{bottom:305.506667pt;}
.ye1{bottom:311.906667pt;}
.y7e{bottom:325.506667pt;}
.y59{bottom:325.986667pt;}
.ya3{bottom:328.546667pt;}
.yc7{bottom:332.226667pt;}
.ye0{bottom:334.946667pt;}
.y7d{bottom:348.546667pt;}
.y58{bottom:349.026667pt;}
.ya2{bottom:351.586667pt;}
.yc6{bottom:355.586667pt;}
.ydf{bottom:357.826667pt;}
.yc5{bottom:370.946667pt;}
.y7c{bottom:371.586667pt;}
.y57{bottom:372.066667pt;}
.ya1{bottom:374.626667pt;}
.yde{bottom:380.866667pt;}
.yc4{bottom:386.306667pt;}
.y7b{bottom:394.626667pt;}
.ya0{bottom:397.506667pt;}
.yc3{bottom:401.666667pt;}
.y27{bottom:403.586667pt;}
.ydd{bottom:403.906667pt;}
.y56{bottom:408.066667pt;}
.yc2{bottom:417.026667pt;}
.y7a{bottom:417.506667pt;}
.y26{bottom:418.946667pt;}
.y9f{bottom:420.546667pt;}
.ydc{bottom:426.946667pt;}
.y55{bottom:432.546667pt;}
.y25{bottom:433.666667pt;}
.yc1{bottom:436.226667pt;}
.y79{bottom:440.546667pt;}
.y9e{bottom:443.586667pt;}
.ydb{bottom:449.826667pt;}
.y24{bottom:454.626667pt;}
.y54{bottom:455.586667pt;}
.y78{bottom:463.586667pt;}
.y9d{bottom:466.626667pt;}
.yc0{bottom:467.586667pt;}
.yda{bottom:472.866667pt;}
.y23{bottom:477.826667pt;}
.y53{bottom:478.626667pt;}
.ybf{bottom:482.946667pt;}
.y77{bottom:486.626667pt;}
.y9c{bottom:489.506667pt;}
.y22{bottom:493.666667pt;}
.yd9{bottom:495.906667pt;}
.ybe{bottom:498.306667pt;}
.y52{bottom:501.506667pt;}
.y76{bottom:509.506667pt;}
.y21{bottom:510.466667pt;}
.y9b{bottom:512.546667pt;}
.ybd{bottom:513.666667pt;}
.yd8{bottom:521.506667pt;}
.y51{bottom:524.546667pt;}
.y20{bottom:527.426667pt;}
.ybc{bottom:529.026667pt;}
.y75{bottom:532.546667pt;}
.y9a{bottom:535.586667pt;}
.y1f{bottom:544.253333pt;}
.yd7{bottom:547.133333pt;}
.y50{bottom:547.613333pt;}
.y74{bottom:555.613333pt;}
.y99{bottom:558.653333pt;}
.ybb{bottom:559.613333pt;}
.y1e{bottom:561.053333pt;}
.yd6{bottom:564.733333pt;}
.y4f{bottom:570.653333pt;}
.yba{bottom:574.973333pt;}
.y1d{bottom:578.013333pt;}
.y73{bottom:578.653333pt;}
.y98{bottom:581.533333pt;}
.yd5{bottom:582.493333pt;}
.yb9{bottom:590.333333pt;}
.y4e{bottom:593.533333pt;}
.y1c{bottom:594.813333pt;}
.yd4{bottom:600.093333pt;}
.y72{bottom:601.533333pt;}
.y97{bottom:604.573333pt;}
.yb8{bottom:605.693333pt;}
.y1b{bottom:611.773333pt;}
.y4d{bottom:616.573333pt;}
.yd3{bottom:617.693333pt;}
.yb7{bottom:620.893333pt;}
.y71{bottom:624.573333pt;}
.y96{bottom:627.613333pt;}
.y1a{bottom:628.573333pt;}
.yd2{bottom:635.293333pt;}
.y4c{bottom:639.613333pt;}
.y19{bottom:645.373333pt;}
.y70{bottom:647.613333pt;}
.y95{bottom:650.653333pt;}
.yb6{bottom:652.253333pt;}
.yd1{bottom:652.893333pt;}
.y18{bottom:662.333333pt;}
.y4b{bottom:662.653333pt;}
.yb5{bottom:667.613333pt;}
.y6f{bottom:670.653333pt;}
.y94{bottom:673.533333pt;}
.y17{bottom:679.133333pt;}
.yb4{bottom:682.973333pt;}
.y4a{bottom:685.533333pt;}
.y6e{bottom:693.533333pt;}
.y16{bottom:696.093333pt;}
.y93{bottom:696.573333pt;}
.yb3{bottom:698.333333pt;}
.y49{bottom:708.573333pt;}
.y15{bottom:713.213333pt;}
.yb2{bottom:713.693333pt;}
.y6d{bottom:716.573333pt;}
.y92{bottom:719.613333pt;}
.yb1{bottom:728.893333pt;}
.y14{bottom:731.293333pt;}
.y48{bottom:731.613333pt;}
.y6c{bottom:739.613333pt;}
.y91{bottom:742.493333pt;}
.yb0{bottom:744.253333pt;}
.y13{bottom:747.773333pt;}
.y47{bottom:754.493333pt;}
.yaf{bottom:759.613333pt;}
.y6b{bottom:762.493333pt;}
.y12{bottom:763.773333pt;}
.y90{bottom:765.533333pt;}
.yae{bottom:775.013333pt;}
.y46{bottom:777.573333pt;}
.y11{bottom:782.213333pt;}
.y6a{bottom:785.573333pt;}
.y8f{bottom:788.613333pt;}
.y10{bottom:800.613333pt;}
.yad{bottom:805.893333pt;}
.y69{bottom:808.613333pt;}
.y8e{bottom:811.653333pt;}
.yf{bottom:819.013333pt;}
.y45{bottom:823.653333pt;}
.y68{bottom:831.653333pt;}
.y8d{bottom:834.533333pt;}
.y9{bottom:836.773333pt;}
.y44{bottom:846.533333pt;}
.y8{bottom:852.133333pt;}
.y67{bottom:854.533333pt;}
.y8c{bottom:857.573333pt;}
.y7{bottom:864.613333pt;}
.y43{bottom:869.573333pt;}
.y66{bottom:877.573333pt;}
.y8b{bottom:880.613333pt;}
.y42{bottom:892.613333pt;}
.y65{bottom:900.613333pt;}
.y8a{bottom:903.653333pt;}
.y6{bottom:913.093333pt;}
.y41{bottom:915.653333pt;}
.y64{bottom:923.653333pt;}
.y89{bottom:926.533333pt;}
.y5{bottom:935.173333pt;}
.y40{bottom:938.533333pt;}
.y63{bottom:946.533333pt;}
.y88{bottom:949.573333pt;}
.y4{bottom:953.893333pt;}
.y3f{bottom:961.573333pt;}
.y62{bottom:969.573333pt;}
.y3{bottom:972.293333pt;}
.y87{bottom:976.613333pt;}
.y3e{bottom:984.613333pt;}
.y2{bottom:990.693333pt;}
.y61{bottom:992.613333pt;}
.y1{bottom:1005.573333pt;}
.y3d{bottom:1015.680000pt;}
.y3c{bottom:1036.800000pt;}
.y3b{bottom:1049.280000pt;}
.y3a{bottom:1067.680000pt;}
.y39{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h5{height:35.085938pt;}
.hb{height:37.624687pt;}
.h7{height:42.117188pt;}
.h4{height:46.609688pt;}
.h2{height:47.180312pt;}
.h9{height:51.663750pt;}
.ha{height:52.296250pt;}
.hd{height:56.156250pt;}
.h3{height:56.843750pt;}
.he{height:58.563750pt;}
.hc{height:275.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:309.346667pt;}
.w4{width:309.666667pt;}
.w3{width:310.426667pt;}
.w6{width:310.746667pt;}
.w5{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.520000pt;}
.x9{left:86.912000pt;}
.x7{left:94.431988pt;}
.xc{left:95.391988pt;}
.x17{left:107.871988pt;}
.x1e{left:118.431988pt;}
.x13{left:120.671988pt;}
.xd{left:125.151988pt;}
.xe{left:129.151988pt;}
.x14{left:139.866655pt;}
.x1d{left:142.426655pt;}
.x1c{left:160.666655pt;}
.x12{left:182.266655pt;}
.x16{left:200.346655pt;}
.x1b{left:208.026655pt;}
.x2{left:225.946655pt;}
.xf{left:239.866655pt;}
.x6{left:243.546655pt;}
.xb{left:278.146667pt;}
.x15{left:290.786655pt;}
.x19{left:296.866655pt;}
.x11{left:317.986655pt;}
.x5{left:322.146655pt;}
.x1a{left:331.426655pt;}
.x4{left:337.666655pt;}
.x3{left:354.146655pt;}
.x10{left:373.186655pt;}
.x18{left:382.146655pt;}
.x8{left:396.866655pt;}
.x1{left:699.333322pt;}
}




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