
    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_0953b3552556b7cc4bfeeb3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ccc95d2b6327dc3113d31cc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_92b483859d28b8bc69a7d5bc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0f67027473735ea482228d52.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5958599dce62125e6fdc3689.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.378600px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.037440px;}
.lse{letter-spacing:0.252720px;}
.ls8{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.341400px;}
.lsf{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.369360px;}
.ls10{letter-spacing:0.369600px;}
.ls5{letter-spacing:0.378600px;}
.ls9{letter-spacing:0.378720px;}
.ls11{letter-spacing:0.485280px;}
.ls2{letter-spacing:0.504000px;}
.ls12{letter-spacing:5.788080px;}
.ls13{letter-spacing:6.120000px;}
.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;}
}
.wsc{word-spacing:-27.180000px;}
.ws0{word-spacing:-24.300000px;}
.ws4{word-spacing:-21.438600px;}
.wsb{word-spacing:-21.429600px;}
.ws2{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.ws3{word-spacing:-21.401400px;}
.ws9{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.050640px;}
.ws6{word-spacing:-20.700000px;}
.ws8{word-spacing:-0.084240px;}
.ws7{word-spacing:0.000000px;}
._25{margin-left:-5.896800px;}
._1e{margin-left:-4.822320px;}
._16{margin-left:-3.783360px;}
._13{margin-left:-2.697360px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._20{width:2.406720px;}
._8{width:3.410880px;}
._7{width:4.444080px;}
._27{width:5.495040px;}
._19{width:6.498720px;}
._17{width:8.508240px;}
._3{width:9.940320px;}
._28{width:10.954320px;}
._f{width:12.025680px;}
._4{width:13.478400px;}
._5{width:14.917200px;}
._10{width:16.174080px;}
._c{width:17.460480px;}
._d{width:18.670800px;}
._12{width:19.879440px;}
._23{width:22.862160px;}
._9{width:23.965920px;}
._a{width:25.880160px;}
._b{width:26.923680px;}
._2b{width:28.199760px;}
._1f{width:29.379120px;}
._21{width:30.774720px;}
._22{width:32.461920px;}
._18{width:34.369920px;}
._6{width:35.717760px;}
._35{width:37.455120px;}
._11{width:38.772960px;}
._1a{width:40.209600px;}
._1b{width:41.400960px;}
._26{width:43.552080px;}
._e{width:45.405360px;}
._2c{width:47.427120px;}
._33{width:49.314960px;}
._37{width:50.364000px;}
._29{width:52.228800px;}
._2a{width:53.239680px;}
._2d{width:54.699120px;}
._3a{width:55.983600px;}
._15{width:57.116160px;}
._14{width:58.239840px;}
._34{width:59.267520px;}
._3e{width:60.409920px;}
._30{width:62.119440px;}
._24{width:64.106640px;}
._2e{width:65.941920px;}
._1d{width:68.402880px;}
._1c{width:69.497280px;}
._3d{width:70.758720px;}
._31{width:75.664080px;}
._32{width:76.719360px;}
._38{width:79.169040px;}
._39{width:82.991520px;}
._36{width:87.526800px;}
._2f{width:98.141040px;}
._2{width:118.645440px;}
._3c{width:136.323840px;}
._3b{width:138.164880px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.y56{bottom:4.500000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y55{bottom:28.620000px;}
.y7d{bottom:28.830000px;}
.y8{bottom:44.640000px;}
.y96{bottom:46.290000px;}
.y60{bottom:52.740000px;}
.y7c{bottom:52.950000px;}
.y9b{bottom:60.120000px;}
.y95{bottom:70.410000px;}
.y5f{bottom:76.860000px;}
.y7b{bottom:77.070000px;}
.y9a{bottom:84.240000px;}
.y71{bottom:93.636000px;}
.y94{bottom:94.530000px;}
.yb5{bottom:95.076000px;}
.y72{bottom:95.256000px;}
.y30{bottom:98.856000px;}
.y6e{bottom:100.980000px;}
.y5e{bottom:101.160000px;}
.y7a{bottom:101.190000px;}
.y8f{bottom:104.256000px;}
.y99{bottom:108.360000px;}
.y93{bottom:118.830000px;}
.y70{bottom:121.356000px;}
.yb4{bottom:122.796000px;}
.y53{bottom:122.976000px;}
.y5d{bottom:125.280000px;}
.y79{bottom:125.310000px;}
.y2f{bottom:126.576000px;}
.y8e{bottom:132.156000px;}
.y98{bottom:132.480000px;}
.ya5{bottom:141.696000px;}
.y6f{bottom:149.076000px;}
.y5c{bottom:149.400000px;}
.y78{bottom:149.430000px;}
.yb3{bottom:150.510000px;}
.y52{bottom:150.870000px;}
.y2e{bottom:154.470000px;}
.y8d{bottom:159.870000px;}
.ya4{bottom:169.410000px;}
.y6d{bottom:169.590000px;}
.y5b{bottom:173.565000px;}
.y77{bottom:173.730000px;}
.yb2{bottom:178.410000px;}
.y51{bottom:178.590000px;}
.y2d{bottom:182.190000px;}
.y8c{bottom:187.590000px;}
.ya3{bottom:197.130000px;}
.y5a{bottom:197.685000px;}
.y76{bottom:197.850000px;}
.yb1{bottom:206.130000px;}
.y50{bottom:206.310000px;}
.y2c{bottom:209.910000px;}
.y8b{bottom:215.310000px;}
.y59{bottom:221.805000px;}
.ya2{bottom:225.030000px;}
.yb0{bottom:233.850000px;}
.y4f{bottom:234.030000px;}
.y2b{bottom:237.630000px;}
.y8a{bottom:243.210000px;}
.y58{bottom:246.105000px;}
.ya1{bottom:252.750000px;}
.yaf{bottom:261.750000px;}
.y4e{bottom:261.930000px;}
.y2a{bottom:265.530000px;}
.y89{bottom:270.930000px;}
.ya0{bottom:280.470000px;}
.yae{bottom:289.470000px;}
.y4d{bottom:289.650000px;}
.y29{bottom:293.250000px;}
.y88{bottom:298.650000px;}
.y9f{bottom:308.190000px;}
.yad{bottom:317.190000px;}
.y4c{bottom:317.370000px;}
.y28{bottom:320.970000px;}
.y87{bottom:326.550000px;}
.y9e{bottom:336.090000px;}
.yac{bottom:344.955000px;}
.y4b{bottom:345.135000px;}
.y27{bottom:348.915000px;}
.y86{bottom:354.315000px;}
.y9d{bottom:363.855000px;}
.yab{bottom:372.855000px;}
.y4a{bottom:373.035000px;}
.y26{bottom:376.635000px;}
.y85{bottom:382.035000px;}
.y6c{bottom:387.615000px;}
.y9c{bottom:391.575000px;}
.yaa{bottom:400.575000px;}
.y49{bottom:400.755000px;}
.y25{bottom:404.355000px;}
.y84{bottom:409.755000px;}
.y97{bottom:411.915000px;}
.y6b{bottom:412.635000px;}
.ya9{bottom:428.295000px;}
.y48{bottom:428.475000px;}
.y24{bottom:432.075000px;}
.y83{bottom:437.655000px;}
.y6a{bottom:445.575000px;}
.ya8{bottom:456.015000px;}
.y47{bottom:456.375000px;}
.y23{bottom:459.975000px;}
.y82{bottom:465.375000px;}
.y69{bottom:473.295000px;}
.ya7{bottom:483.915000px;}
.y46{bottom:484.095000px;}
.y22{bottom:487.695000px;}
.y81{bottom:493.095000px;}
.y68{bottom:501.195000px;}
.ya6{bottom:511.635000px;}
.y45{bottom:511.815000px;}
.y21{bottom:515.415000px;}
.y80{bottom:520.995000px;}
.y67{bottom:528.915000px;}
.y44{bottom:539.535000px;}
.y20{bottom:543.315000px;}
.y7f{bottom:548.715000px;}
.y66{bottom:556.635000px;}
.y92{bottom:564.735000px;}
.y43{bottom:567.435000px;}
.y1f{bottom:571.035000px;}
.y7e{bottom:576.435000px;}
.y65{bottom:584.535000px;}
.y42{bottom:595.155000px;}
.y75{bottom:596.775000px;}
.y1e{bottom:598.755000px;}
.y64{bottom:612.285000px;}
.y41{bottom:622.905000px;}
.y1d{bottom:626.505000px;}
.y63{bottom:640.005000px;}
.y40{bottom:650.805000px;}
.y1c{bottom:654.405000px;}
.y62{bottom:667.725000px;}
.y3f{bottom:678.525000px;}
.y1b{bottom:682.125000px;}
.y61{bottom:695.625000px;}
.y91{bottom:703.905000px;}
.y3e{bottom:706.245000px;}
.y1a{bottom:709.845000px;}
.y57{bottom:715.965000px;}
.y90{bottom:728.745000px;}
.y3d{bottom:733.965000px;}
.y19{bottom:737.745000px;}
.y3c{bottom:761.865000px;}
.y18{bottom:765.465000px;}
.y3b{bottom:789.585000px;}
.y17{bottom:793.185000px;}
.y74{bottom:814.965000px;}
.y3a{bottom:817.305000px;}
.y16{bottom:820.905000px;}
.y73{bottom:839.805000px;}
.y39{bottom:845.025000px;}
.y15{bottom:848.805000px;}
.y38{bottom:872.970000px;}
.y14{bottom:876.570000px;}
.y37{bottom:900.690000px;}
.y13{bottom:904.290000px;}
.y36{bottom:928.410000px;}
.y12{bottom:932.010000px;}
.y35{bottom:956.310000px;}
.y11{bottom:959.910000px;}
.y54{bottom:982.410000px;}
.y34{bottom:984.030000px;}
.y10{bottom:987.630000px;}
.y33{bottom:1011.750000px;}
.yf{bottom:1015.350000px;}
.y32{bottom:1039.470000px;}
.ye{bottom:1043.250000px;}
.y31{bottom:1067.370000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.he{height:24.120000px;}
.h7{height:27.576000px;}
.h2{height:41.400000px;}
.hc{height:48.240000px;}
.h4{height:53.709961px;}
.h13{height:58.819922px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h9{height:96.508125px;}
.h11{height:138.456000px;}
.h12{height:152.100000px;}
.hf{height:217.290000px;}
.h10{height:217.470000px;}
.hd{height:265.710000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:44.136000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.wc{width:112.320000px;}
.w10{width:119.196000px;}
.w11{width:119.340000px;}
.w12{width:119.376000px;}
.w13{width:119.556000px;}
.we{width:120.816000px;}
.wa{width:233.130000px;}
.w8{width:293.790000px;}
.wd{width:301.035000px;}
.w9{width:380.055000px;}
.wb{width:414.075000px;}
.wf{width:599.685000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.x2{left:8.640000px;}
.x12{left:10.296000px;}
.x7{left:13.860000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x15{left:115.236000px;}
.x8{left:127.475987px;}
.x13{left:130.896000px;}
.xa{left:138.635987px;}
.x9{left:141.695987px;}
.x18{left:207.570000px;}
.xf{left:297.074987px;}
.xe{left:312.014987px;}
.x1a{left:327.495000px;}
.xd{left:332.534987px;}
.x10{left:345.494987px;}
.x16{left:349.095000px;}
.xb{left:382.754987px;}
.x11{left:390.134987px;}
.x14{left:425.415000px;}
.x1b{left:447.555000px;}
.x17{left:462.135000px;}
.xc{left:467.744987px;}
.x1c{left:567.645000px;}
.x1d{left:687.930000px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.336533pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.224640pt;}
.ls8{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.303467pt;}
.lsf{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.328320pt;}
.ls10{letter-spacing:0.328533pt;}
.ls5{letter-spacing:0.336533pt;}
.ls9{letter-spacing:0.336640pt;}
.ls11{letter-spacing:0.431360pt;}
.ls2{letter-spacing:0.448000pt;}
.ls12{letter-spacing:5.144960pt;}
.ls13{letter-spacing:5.440000pt;}
.wsc{word-spacing:-24.160000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws4{word-spacing:-19.056533pt;}
.wsb{word-spacing:-19.048533pt;}
.ws2{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.ws3{word-spacing:-19.023467pt;}
.ws9{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.711680pt;}
.ws6{word-spacing:-18.400000pt;}
.ws8{word-spacing:-0.074880pt;}
.ws7{word-spacing:0.000000pt;}
._25{margin-left:-5.241600pt;}
._1e{margin-left:-4.286507pt;}
._16{margin-left:-3.362987pt;}
._13{margin-left:-2.397653pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._20{width:2.139307pt;}
._8{width:3.031893pt;}
._7{width:3.950293pt;}
._27{width:4.884480pt;}
._19{width:5.776640pt;}
._17{width:7.562880pt;}
._3{width:8.835840pt;}
._28{width:9.737173pt;}
._f{width:10.689493pt;}
._4{width:11.980800pt;}
._5{width:13.259733pt;}
._10{width:14.376960pt;}
._c{width:15.520427pt;}
._d{width:16.596267pt;}
._12{width:17.670613pt;}
._23{width:20.321920pt;}
._9{width:21.303040pt;}
._a{width:23.004587pt;}
._b{width:23.932160pt;}
._2b{width:25.066453pt;}
._1f{width:26.114773pt;}
._21{width:27.355307pt;}
._22{width:28.855040pt;}
._18{width:30.551040pt;}
._6{width:31.749120pt;}
._35{width:33.293440pt;}
._11{width:34.464853pt;}
._1a{width:35.741867pt;}
._1b{width:36.800853pt;}
._26{width:38.712960pt;}
._e{width:40.360320pt;}
._2c{width:42.157440pt;}
._33{width:43.835520pt;}
._37{width:44.768000pt;}
._29{width:46.425600pt;}
._2a{width:47.324160pt;}
._2d{width:48.621440pt;}
._3a{width:49.763200pt;}
._15{width:50.769920pt;}
._14{width:51.768747pt;}
._34{width:52.682240pt;}
._3e{width:53.697707pt;}
._30{width:55.217280pt;}
._24{width:56.983680pt;}
._2e{width:58.615040pt;}
._1d{width:60.802560pt;}
._1c{width:61.775360pt;}
._3d{width:62.896640pt;}
._31{width:67.256960pt;}
._32{width:68.194987pt;}
._38{width:70.372480pt;}
._39{width:73.770240pt;}
._36{width:77.801600pt;}
._2f{width:87.236480pt;}
._2{width:105.462613pt;}
._3c{width:121.176747pt;}
._3b{width:122.813227pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.y56{bottom:4.000000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y55{bottom:25.440000pt;}
.y7d{bottom:25.626667pt;}
.y8{bottom:39.680000pt;}
.y96{bottom:41.146667pt;}
.y60{bottom:46.880000pt;}
.y7c{bottom:47.066667pt;}
.y9b{bottom:53.440000pt;}
.y95{bottom:62.586667pt;}
.y5f{bottom:68.320000pt;}
.y7b{bottom:68.506667pt;}
.y9a{bottom:74.880000pt;}
.y71{bottom:83.232000pt;}
.y94{bottom:84.026667pt;}
.yb5{bottom:84.512000pt;}
.y72{bottom:84.672000pt;}
.y30{bottom:87.872000pt;}
.y6e{bottom:89.760000pt;}
.y5e{bottom:89.920000pt;}
.y7a{bottom:89.946667pt;}
.y8f{bottom:92.672000pt;}
.y99{bottom:96.320000pt;}
.y93{bottom:105.626667pt;}
.y70{bottom:107.872000pt;}
.yb4{bottom:109.152000pt;}
.y53{bottom:109.312000pt;}
.y5d{bottom:111.360000pt;}
.y79{bottom:111.386667pt;}
.y2f{bottom:112.512000pt;}
.y8e{bottom:117.472000pt;}
.y98{bottom:117.760000pt;}
.ya5{bottom:125.952000pt;}
.y6f{bottom:132.512000pt;}
.y5c{bottom:132.800000pt;}
.y78{bottom:132.826667pt;}
.yb3{bottom:133.786667pt;}
.y52{bottom:134.106667pt;}
.y2e{bottom:137.306667pt;}
.y8d{bottom:142.106667pt;}
.ya4{bottom:150.586667pt;}
.y6d{bottom:150.746667pt;}
.y5b{bottom:154.280000pt;}
.y77{bottom:154.426667pt;}
.yb2{bottom:158.586667pt;}
.y51{bottom:158.746667pt;}
.y2d{bottom:161.946667pt;}
.y8c{bottom:166.746667pt;}
.ya3{bottom:175.226667pt;}
.y5a{bottom:175.720000pt;}
.y76{bottom:175.866667pt;}
.yb1{bottom:183.226667pt;}
.y50{bottom:183.386667pt;}
.y2c{bottom:186.586667pt;}
.y8b{bottom:191.386667pt;}
.y59{bottom:197.160000pt;}
.ya2{bottom:200.026667pt;}
.yb0{bottom:207.866667pt;}
.y4f{bottom:208.026667pt;}
.y2b{bottom:211.226667pt;}
.y8a{bottom:216.186667pt;}
.y58{bottom:218.760000pt;}
.ya1{bottom:224.666667pt;}
.yaf{bottom:232.666667pt;}
.y4e{bottom:232.826667pt;}
.y2a{bottom:236.026667pt;}
.y89{bottom:240.826667pt;}
.ya0{bottom:249.306667pt;}
.yae{bottom:257.306667pt;}
.y4d{bottom:257.466667pt;}
.y29{bottom:260.666667pt;}
.y88{bottom:265.466667pt;}
.y9f{bottom:273.946667pt;}
.yad{bottom:281.946667pt;}
.y4c{bottom:282.106667pt;}
.y28{bottom:285.306667pt;}
.y87{bottom:290.266667pt;}
.y9e{bottom:298.746667pt;}
.yac{bottom:306.626667pt;}
.y4b{bottom:306.786667pt;}
.y27{bottom:310.146667pt;}
.y86{bottom:314.946667pt;}
.y9d{bottom:323.426667pt;}
.yab{bottom:331.426667pt;}
.y4a{bottom:331.586667pt;}
.y26{bottom:334.786667pt;}
.y85{bottom:339.586667pt;}
.y6c{bottom:344.546667pt;}
.y9c{bottom:348.066667pt;}
.yaa{bottom:356.066667pt;}
.y49{bottom:356.226667pt;}
.y25{bottom:359.426667pt;}
.y84{bottom:364.226667pt;}
.y97{bottom:366.146667pt;}
.y6b{bottom:366.786667pt;}
.ya9{bottom:380.706667pt;}
.y48{bottom:380.866667pt;}
.y24{bottom:384.066667pt;}
.y83{bottom:389.026667pt;}
.y6a{bottom:396.066667pt;}
.ya8{bottom:405.346667pt;}
.y47{bottom:405.666667pt;}
.y23{bottom:408.866667pt;}
.y82{bottom:413.666667pt;}
.y69{bottom:420.706667pt;}
.ya7{bottom:430.146667pt;}
.y46{bottom:430.306667pt;}
.y22{bottom:433.506667pt;}
.y81{bottom:438.306667pt;}
.y68{bottom:445.506667pt;}
.ya6{bottom:454.786667pt;}
.y45{bottom:454.946667pt;}
.y21{bottom:458.146667pt;}
.y80{bottom:463.106667pt;}
.y67{bottom:470.146667pt;}
.y44{bottom:479.586667pt;}
.y20{bottom:482.946667pt;}
.y7f{bottom:487.746667pt;}
.y66{bottom:494.786667pt;}
.y92{bottom:501.986667pt;}
.y43{bottom:504.386667pt;}
.y1f{bottom:507.586667pt;}
.y7e{bottom:512.386667pt;}
.y65{bottom:519.586667pt;}
.y42{bottom:529.026667pt;}
.y75{bottom:530.466667pt;}
.y1e{bottom:532.226667pt;}
.y64{bottom:544.253333pt;}
.y41{bottom:553.693333pt;}
.y1d{bottom:556.893333pt;}
.y63{bottom:568.893333pt;}
.y40{bottom:578.493333pt;}
.y1c{bottom:581.693333pt;}
.y62{bottom:593.533333pt;}
.y3f{bottom:603.133333pt;}
.y1b{bottom:606.333333pt;}
.y61{bottom:618.333333pt;}
.y91{bottom:625.693333pt;}
.y3e{bottom:627.773333pt;}
.y1a{bottom:630.973333pt;}
.y57{bottom:636.413333pt;}
.y90{bottom:647.773333pt;}
.y3d{bottom:652.413333pt;}
.y19{bottom:655.773333pt;}
.y3c{bottom:677.213333pt;}
.y18{bottom:680.413333pt;}
.y3b{bottom:701.853333pt;}
.y17{bottom:705.053333pt;}
.y74{bottom:724.413333pt;}
.y3a{bottom:726.493333pt;}
.y16{bottom:729.693333pt;}
.y73{bottom:746.493333pt;}
.y39{bottom:751.133333pt;}
.y15{bottom:754.493333pt;}
.y38{bottom:775.973333pt;}
.y14{bottom:779.173333pt;}
.y37{bottom:800.613333pt;}
.y13{bottom:803.813333pt;}
.y36{bottom:825.253333pt;}
.y12{bottom:828.453333pt;}
.y35{bottom:850.053333pt;}
.y11{bottom:853.253333pt;}
.y54{bottom:873.253333pt;}
.y34{bottom:874.693333pt;}
.y10{bottom:877.893333pt;}
.y33{bottom:899.333333pt;}
.yf{bottom:902.533333pt;}
.y32{bottom:923.973333pt;}
.ye{bottom:927.333333pt;}
.y31{bottom:948.773333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.he{height:21.440000pt;}
.h7{height:24.512000pt;}
.h2{height:36.800000pt;}
.hc{height:42.880000pt;}
.h4{height:47.742188pt;}
.h13{height:52.284375pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h9{height:85.785000pt;}
.h11{height:123.072000pt;}
.h12{height:135.200000pt;}
.hf{height:193.146667pt;}
.h10{height:193.306667pt;}
.hd{height:236.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:39.232000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.wc{width:99.840000pt;}
.w10{width:105.952000pt;}
.w11{width:106.080000pt;}
.w12{width:106.112000pt;}
.w13{width:106.272000pt;}
.we{width:107.392000pt;}
.wa{width:207.226667pt;}
.w8{width:261.146667pt;}
.wd{width:267.586667pt;}
.w9{width:337.826667pt;}
.wb{width:368.066667pt;}
.wf{width:533.053333pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.x2{left:7.680000pt;}
.x12{left:9.152000pt;}
.x7{left:12.320000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x15{left:102.432000pt;}
.x8{left:113.311988pt;}
.x13{left:116.352000pt;}
.xa{left:123.231988pt;}
.x9{left:125.951988pt;}
.x18{left:184.506667pt;}
.xf{left:264.066655pt;}
.xe{left:277.346655pt;}
.x1a{left:291.106667pt;}
.xd{left:295.586655pt;}
.x10{left:307.106655pt;}
.x16{left:310.306667pt;}
.xb{left:340.226655pt;}
.x11{left:346.786655pt;}
.x14{left:378.146667pt;}
.x1b{left:397.826667pt;}
.x17{left:410.786667pt;}
.xc{left:415.773322pt;}
.x1c{left:504.573333pt;}
.x1d{left:611.493333pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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