
    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_ff581a458275c9c7f0684bac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_32ef46419ce8cf5c6cc638ea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_284c347e557829734f1829d9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1145dc70b5b99bf4335041f4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_3758d965c76843d69d20052d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f26c2093d84bf3efe5963c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ef742bced735b019a83114a9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_744cf219ecc1e0954098f090.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_e7eb9a6eb9ff6518cf64d492.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270600px;}
.ls8{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.187200px;}
.lsa{letter-spacing:-0.094800px;}
.lsd{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.328200px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.672000px;}
.ls5{letter-spacing:22.986720px;}
.ls6{letter-spacing:26.586720px;}
.ls4{letter-spacing:115.012800px;}
.lsc{letter-spacing:202.828800px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.wsa{word-spacing:-13.225200px;}
.wsb{word-spacing:-13.160160px;}
.ws9{word-spacing:-13.147200px;}
.ws8{word-spacing:-13.093920px;}
.ws0{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.342200px;}
.ws5{word-spacing:-9.092400px;}
.ws1{word-spacing:-7.884000px;}
.ws2{word-spacing:-7.632000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-3.978000px;}
._b{margin-left:-2.801280px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._7{width:2.397840px;}
._1a{width:3.525840px;}
._14{width:5.140800px;}
._10{width:6.162720px;}
._d{width:7.620000px;}
._c{width:8.665200px;}
._f{width:10.338480px;}
._8{width:12.318000px;}
._e{width:13.333920px;}
._1c{width:14.342400px;}
._1b{width:15.485280px;}
._1e{width:16.501200px;}
._20{width:17.614320px;}
._18{width:19.149600px;}
._17{width:20.258640px;}
._19{width:21.334320px;}
._4{width:22.448160px;}
._12{width:23.971200px;}
._11{width:25.577280px;}
._13{width:26.968320px;}
._21{width:28.001760px;}
._22{width:30.485040px;}
._23{width:31.672800px;}
._1f{width:32.927760px;}
._25{width:36.923760px;}
._24{width:38.254320px;}
._a{width:45.022320px;}
._9{width:46.373760px;}
._6{width:53.126640px;}
._26{width:68.731440px;}
._27{width:70.031280px;}
._0{width:75.000000px;}
._16{width:115.012800px;}
._3{width:181.620000px;}
._5{width:201.060000px;}
._1d{width:1070.211720px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y59{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y58{bottom:12.240000px;}
.y57{bottom:22.680000px;}
.y56{bottom:33.300000px;}
.y55{bottom:50.940000px;}
.y7{bottom:56.520000px;}
.y6{bottom:70.596000px;}
.y54{bottom:103.860000px;}
.y41{bottom:112.536000px;}
.y53{bottom:117.900000px;}
.yd0{bottom:119.196000px;}
.y40{bottom:130.176000px;}
.y52{bottom:131.940000px;}
.ycf{bottom:136.656000px;}
.y93{bottom:139.896000px;}
.y51{bottom:145.980000px;}
.y3f{bottom:147.636000px;}
.yce{bottom:154.290000px;}
.y92{bottom:157.350000px;}
.y50{bottom:160.020000px;}
.y3e{bottom:165.270000px;}
.ycd{bottom:171.930000px;}
.y4f{bottom:174.060000px;}
.y91{bottom:174.990000px;}
.y3d{bottom:182.910000px;}
.y4e{bottom:188.280000px;}
.ycc{bottom:189.570000px;}
.y90{bottom:192.630000px;}
.y3c{bottom:200.550000px;}
.y4d{bottom:202.320000px;}
.ycb{bottom:207.030000px;}
.y8f{bottom:210.270000px;}
.y4c{bottom:216.360000px;}
.y3b{bottom:218.010000px;}
.yca{bottom:224.670000px;}
.y8e{bottom:227.730000px;}
.y4b{bottom:230.400000px;}
.y3a{bottom:235.650000px;}
.yc9{bottom:242.310000px;}
.y4a{bottom:243.000000px;}
.y8d{bottom:245.370000px;}
.y49{bottom:251.460000px;}
.y39{bottom:253.290000px;}
.yc8{bottom:259.770000px;}
.y8c{bottom:263.010000px;}
.y48{bottom:265.725000px;}
.y38{bottom:270.750000px;}
.yc7{bottom:277.410000px;}
.y47{bottom:279.765000px;}
.y8b{bottom:280.470000px;}
.y37{bottom:288.390000px;}
.y46{bottom:293.805000px;}
.yc6{bottom:295.050000px;}
.y8a{bottom:298.110000px;}
.y36{bottom:306.030000px;}
.y45{bottom:307.845000px;}
.yc5{bottom:312.510000px;}
.y89{bottom:315.750000px;}
.y44{bottom:320.445000px;}
.y35{bottom:323.490000px;}
.yc4{bottom:330.150000px;}
.y43{bottom:331.425000px;}
.y88{bottom:333.210000px;}
.y34{bottom:341.175000px;}
.yc3{bottom:347.835000px;}
.y87{bottom:350.895000px;}
.y33{bottom:358.815000px;}
.yc2{bottom:365.295000px;}
.y86{bottom:368.535000px;}
.y32{bottom:376.455000px;}
.yc1{bottom:382.935000px;}
.y85{bottom:386.175000px;}
.y31{bottom:393.735000px;}
.yc0{bottom:400.575000px;}
.y84{bottom:403.635000px;}
.y30{bottom:411.015000px;}
.ybf{bottom:418.215000px;}
.y83{bottom:421.275000px;}
.y2f{bottom:428.295000px;}
.ybe{bottom:435.675000px;}
.y82{bottom:438.915000px;}
.y2e{bottom:445.575000px;}
.ybd{bottom:453.315000px;}
.y81{bottom:456.375000px;}
.y2d{bottom:462.675000px;}
.ybc{bottom:470.955000px;}
.y80{bottom:474.015000px;}
.y2c{bottom:479.955000px;}
.ybb{bottom:488.415000px;}
.y7f{bottom:491.655000px;}
.y2b{bottom:497.235000px;}
.yba{bottom:506.055000px;}
.y7e{bottom:509.115000px;}
.y2a{bottom:514.515000px;}
.yb9{bottom:523.695000px;}
.y7d{bottom:526.755000px;}
.y29{bottom:531.795000px;}
.yb8{bottom:541.155000px;}
.y7c{bottom:544.395000px;}
.y28{bottom:549.075000px;}
.yb7{bottom:558.795000px;}
.y7b{bottom:561.855000px;}
.y27{bottom:566.175000px;}
.yb6{bottom:576.435000px;}
.y7a{bottom:579.495000px;}
.y26{bottom:583.455000px;}
.yb5{bottom:594.075000px;}
.y79{bottom:597.135000px;}
.y25{bottom:600.735000px;}
.yb4{bottom:611.565000px;}
.y42{bottom:614.805000px;}
.y24{bottom:620.205000px;}
.yb3{bottom:629.205000px;}
.y78{bottom:632.265000px;}
.y23{bottom:637.485000px;}
.yb2{bottom:646.845000px;}
.y77{bottom:649.905000px;}
.y22{bottom:654.765000px;}
.yb1{bottom:664.305000px;}
.y76{bottom:667.545000px;}
.y21{bottom:672.045000px;}
.yb0{bottom:681.945000px;}
.y75{bottom:685.005000px;}
.y20{bottom:689.325000px;}
.yaf{bottom:699.585000px;}
.y74{bottom:702.645000px;}
.y1f{bottom:706.605000px;}
.yae{bottom:717.045000px;}
.y73{bottom:720.285000px;}
.y1e{bottom:723.705000px;}
.yad{bottom:734.685000px;}
.y72{bottom:737.745000px;}
.y1d{bottom:740.985000px;}
.yac{bottom:752.325000px;}
.y71{bottom:755.385000px;}
.y1c{bottom:758.265000px;}
.yab{bottom:769.965000px;}
.y70{bottom:773.025000px;}
.y1b{bottom:775.545000px;}
.yaa{bottom:787.425000px;}
.y6f{bottom:790.665000px;}
.y1a{bottom:792.825000px;}
.ya9{bottom:805.065000px;}
.y6e{bottom:808.125000px;}
.y19{bottom:810.105000px;}
.ya8{bottom:822.705000px;}
.y6d{bottom:825.765000px;}
.y18{bottom:827.205000px;}
.ya7{bottom:840.165000px;}
.y6c{bottom:843.405000px;}
.y17{bottom:844.485000px;}
.ya6{bottom:857.805000px;}
.y6b{bottom:860.865000px;}
.y16{bottom:861.765000px;}
.ya5{bottom:875.490000px;}
.y6a{bottom:878.550000px;}
.y15{bottom:879.090000px;}
.ya4{bottom:892.950000px;}
.y69{bottom:896.190000px;}
.y14{bottom:896.370000px;}
.ya3{bottom:910.590000px;}
.y13{bottom:913.470000px;}
.y68{bottom:913.650000px;}
.ya2{bottom:928.230000px;}
.y12{bottom:930.750000px;}
.y67{bottom:931.290000px;}
.ya1{bottom:945.690000px;}
.y11{bottom:948.030000px;}
.y66{bottom:948.930000px;}
.ya0{bottom:963.330000px;}
.y10{bottom:965.310000px;}
.y65{bottom:966.570000px;}
.y9f{bottom:980.970000px;}
.yf{bottom:982.590000px;}
.y64{bottom:984.030000px;}
.y9e{bottom:998.610000px;}
.ye{bottom:999.330000px;}
.y63{bottom:1001.670000px;}
.yd{bottom:1013.730000px;}
.y9d{bottom:1016.070000px;}
.y62{bottom:1019.310000px;}
.yc{bottom:1030.110000px;}
.y9c{bottom:1033.710000px;}
.y61{bottom:1036.770000px;}
.yb{bottom:1049.550000px;}
.y9b{bottom:1051.350000px;}
.y60{bottom:1054.410000px;}
.y9a{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5f{bottom:1072.050000px;}
.y99{bottom:1086.450000px;}
.y5e{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.y98{bottom:1104.090000px;}
.y5d{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y97{bottom:1121.550000px;}
.y5c{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y96{bottom:1139.220000px;}
.y5b{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y95{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y94{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y5a{bottom:1197.540000px;}
.he{height:20.117109px;}
.h10{height:30.480469px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.ha{height:41.726953px;}
.h9{height:42.164648px;}
.hb{height:43.302656px;}
.hc{height:43.681992px;}
.h8{height:45.720703px;}
.h12{height:50.273438px;}
.h5{height:50.597578px;}
.h7{height:56.084062px;}
.h11{height:58.819922px;}
.hf{height:60.960938px;}
.h6{height:65.837812px;}
.hd{height:344.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x3{left:112.895987px;}
.xb{left:127.655987px;}
.x9{left:134.994000px;}
.xd{left:138.455987px;}
.xa{left:159.509987px;}
.x7{left:194.969987px;}
.x4{left:318.494987px;}
.x8{left:342.614987px;}
.x6{left:362.954987px;}
.x5{left:446.654987px;}
.xc{left:614.984987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240533pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.166400pt;}
.lsa{letter-spacing:-0.084267pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.291733pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.597333pt;}
.ls5{letter-spacing:20.432640pt;}
.ls6{letter-spacing:23.632640pt;}
.ls4{letter-spacing:102.233600pt;}
.lsc{letter-spacing:180.292267pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.wsa{word-spacing:-11.755733pt;}
.wsb{word-spacing:-11.697920pt;}
.ws9{word-spacing:-11.686400pt;}
.ws8{word-spacing:-11.639040pt;}
.ws0{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.193067pt;}
.ws5{word-spacing:-8.082133pt;}
.ws1{word-spacing:-7.008000pt;}
.ws2{word-spacing:-6.784000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-3.536000pt;}
._b{margin-left:-2.490027pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._7{width:2.131413pt;}
._1a{width:3.134080pt;}
._14{width:4.569600pt;}
._10{width:5.477973pt;}
._d{width:6.773333pt;}
._c{width:7.702400pt;}
._f{width:9.189760pt;}
._8{width:10.949333pt;}
._e{width:11.852373pt;}
._1c{width:12.748800pt;}
._1b{width:13.764693pt;}
._1e{width:14.667733pt;}
._20{width:15.657173pt;}
._18{width:17.021867pt;}
._17{width:18.007680pt;}
._19{width:18.963840pt;}
._4{width:19.953920pt;}
._12{width:21.307733pt;}
._11{width:22.735360pt;}
._13{width:23.971840pt;}
._21{width:24.890453pt;}
._22{width:27.097813pt;}
._23{width:28.153600pt;}
._1f{width:29.269120pt;}
._25{width:32.821120pt;}
._24{width:34.003840pt;}
._a{width:40.019840pt;}
._9{width:41.221120pt;}
._6{width:47.223680pt;}
._26{width:61.094613pt;}
._27{width:62.250027pt;}
._0{width:66.666667pt;}
._16{width:102.233600pt;}
._3{width:161.440000pt;}
._5{width:178.720000pt;}
._1d{width:951.299307pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y59{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:10.880000pt;}
.y57{bottom:20.160000pt;}
.y56{bottom:29.600000pt;}
.y55{bottom:45.280000pt;}
.y7{bottom:50.240000pt;}
.y6{bottom:62.752000pt;}
.y54{bottom:92.320000pt;}
.y41{bottom:100.032000pt;}
.y53{bottom:104.800000pt;}
.yd0{bottom:105.952000pt;}
.y40{bottom:115.712000pt;}
.y52{bottom:117.280000pt;}
.ycf{bottom:121.472000pt;}
.y93{bottom:124.352000pt;}
.y51{bottom:129.760000pt;}
.y3f{bottom:131.232000pt;}
.yce{bottom:137.146667pt;}
.y92{bottom:139.866667pt;}
.y50{bottom:142.240000pt;}
.y3e{bottom:146.906667pt;}
.ycd{bottom:152.826667pt;}
.y4f{bottom:154.720000pt;}
.y91{bottom:155.546667pt;}
.y3d{bottom:162.586667pt;}
.y4e{bottom:167.360000pt;}
.ycc{bottom:168.506667pt;}
.y90{bottom:171.226667pt;}
.y3c{bottom:178.266667pt;}
.y4d{bottom:179.840000pt;}
.ycb{bottom:184.026667pt;}
.y8f{bottom:186.906667pt;}
.y4c{bottom:192.320000pt;}
.y3b{bottom:193.786667pt;}
.yca{bottom:199.706667pt;}
.y8e{bottom:202.426667pt;}
.y4b{bottom:204.800000pt;}
.y3a{bottom:209.466667pt;}
.yc9{bottom:215.386667pt;}
.y4a{bottom:216.000000pt;}
.y8d{bottom:218.106667pt;}
.y49{bottom:223.520000pt;}
.y39{bottom:225.146667pt;}
.yc8{bottom:230.906667pt;}
.y8c{bottom:233.786667pt;}
.y48{bottom:236.200000pt;}
.y38{bottom:240.666667pt;}
.yc7{bottom:246.586667pt;}
.y47{bottom:248.680000pt;}
.y8b{bottom:249.306667pt;}
.y37{bottom:256.346667pt;}
.y46{bottom:261.160000pt;}
.yc6{bottom:262.266667pt;}
.y8a{bottom:264.986667pt;}
.y36{bottom:272.026667pt;}
.y45{bottom:273.640000pt;}
.yc5{bottom:277.786667pt;}
.y89{bottom:280.666667pt;}
.y44{bottom:284.840000pt;}
.y35{bottom:287.546667pt;}
.yc4{bottom:293.466667pt;}
.y43{bottom:294.600000pt;}
.y88{bottom:296.186667pt;}
.y34{bottom:303.266667pt;}
.yc3{bottom:309.186667pt;}
.y87{bottom:311.906667pt;}
.y33{bottom:318.946667pt;}
.yc2{bottom:324.706667pt;}
.y86{bottom:327.586667pt;}
.y32{bottom:334.626667pt;}
.yc1{bottom:340.386667pt;}
.y85{bottom:343.266667pt;}
.y31{bottom:349.986667pt;}
.yc0{bottom:356.066667pt;}
.y84{bottom:358.786667pt;}
.y30{bottom:365.346667pt;}
.ybf{bottom:371.746667pt;}
.y83{bottom:374.466667pt;}
.y2f{bottom:380.706667pt;}
.ybe{bottom:387.266667pt;}
.y82{bottom:390.146667pt;}
.y2e{bottom:396.066667pt;}
.ybd{bottom:402.946667pt;}
.y81{bottom:405.666667pt;}
.y2d{bottom:411.266667pt;}
.ybc{bottom:418.626667pt;}
.y80{bottom:421.346667pt;}
.y2c{bottom:426.626667pt;}
.ybb{bottom:434.146667pt;}
.y7f{bottom:437.026667pt;}
.y2b{bottom:441.986667pt;}
.yba{bottom:449.826667pt;}
.y7e{bottom:452.546667pt;}
.y2a{bottom:457.346667pt;}
.yb9{bottom:465.506667pt;}
.y7d{bottom:468.226667pt;}
.y29{bottom:472.706667pt;}
.yb8{bottom:481.026667pt;}
.y7c{bottom:483.906667pt;}
.y28{bottom:488.066667pt;}
.yb7{bottom:496.706667pt;}
.y7b{bottom:499.426667pt;}
.y27{bottom:503.266667pt;}
.yb6{bottom:512.386667pt;}
.y7a{bottom:515.106667pt;}
.y26{bottom:518.626667pt;}
.yb5{bottom:528.066667pt;}
.y79{bottom:530.786667pt;}
.y25{bottom:533.986667pt;}
.yb4{bottom:543.613333pt;}
.y42{bottom:546.493333pt;}
.y24{bottom:551.293333pt;}
.yb3{bottom:559.293333pt;}
.y78{bottom:562.013333pt;}
.y23{bottom:566.653333pt;}
.yb2{bottom:574.973333pt;}
.y77{bottom:577.693333pt;}
.y22{bottom:582.013333pt;}
.yb1{bottom:590.493333pt;}
.y76{bottom:593.373333pt;}
.y21{bottom:597.373333pt;}
.yb0{bottom:606.173333pt;}
.y75{bottom:608.893333pt;}
.y20{bottom:612.733333pt;}
.yaf{bottom:621.853333pt;}
.y74{bottom:624.573333pt;}
.y1f{bottom:628.093333pt;}
.yae{bottom:637.373333pt;}
.y73{bottom:640.253333pt;}
.y1e{bottom:643.293333pt;}
.yad{bottom:653.053333pt;}
.y72{bottom:655.773333pt;}
.y1d{bottom:658.653333pt;}
.yac{bottom:668.733333pt;}
.y71{bottom:671.453333pt;}
.y1c{bottom:674.013333pt;}
.yab{bottom:684.413333pt;}
.y70{bottom:687.133333pt;}
.y1b{bottom:689.373333pt;}
.yaa{bottom:699.933333pt;}
.y6f{bottom:702.813333pt;}
.y1a{bottom:704.733333pt;}
.ya9{bottom:715.613333pt;}
.y6e{bottom:718.333333pt;}
.y19{bottom:720.093333pt;}
.ya8{bottom:731.293333pt;}
.y6d{bottom:734.013333pt;}
.y18{bottom:735.293333pt;}
.ya7{bottom:746.813333pt;}
.y6c{bottom:749.693333pt;}
.y17{bottom:750.653333pt;}
.ya6{bottom:762.493333pt;}
.y6b{bottom:765.213333pt;}
.y16{bottom:766.013333pt;}
.ya5{bottom:778.213333pt;}
.y6a{bottom:780.933333pt;}
.y15{bottom:781.413333pt;}
.ya4{bottom:793.733333pt;}
.y69{bottom:796.613333pt;}
.y14{bottom:796.773333pt;}
.ya3{bottom:809.413333pt;}
.y13{bottom:811.973333pt;}
.y68{bottom:812.133333pt;}
.ya2{bottom:825.093333pt;}
.y12{bottom:827.333333pt;}
.y67{bottom:827.813333pt;}
.ya1{bottom:840.613333pt;}
.y11{bottom:842.693333pt;}
.y66{bottom:843.493333pt;}
.ya0{bottom:856.293333pt;}
.y10{bottom:858.053333pt;}
.y65{bottom:859.173333pt;}
.y9f{bottom:871.973333pt;}
.yf{bottom:873.413333pt;}
.y64{bottom:874.693333pt;}
.y9e{bottom:887.653333pt;}
.ye{bottom:888.293333pt;}
.y63{bottom:890.373333pt;}
.yd{bottom:901.093333pt;}
.y9d{bottom:903.173333pt;}
.y62{bottom:906.053333pt;}
.yc{bottom:915.653333pt;}
.y9c{bottom:918.853333pt;}
.y61{bottom:921.573333pt;}
.yb{bottom:932.933333pt;}
.y9b{bottom:934.533333pt;}
.y60{bottom:937.253333pt;}
.y9a{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5f{bottom:952.933333pt;}
.y99{bottom:965.733333pt;}
.y5e{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.y98{bottom:981.413333pt;}
.y5d{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y97{bottom:996.933333pt;}
.y5c{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y96{bottom:1012.640000pt;}
.y5b{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y95{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y94{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y5a{bottom:1064.480000pt;}
.he{height:17.881875pt;}
.h10{height:27.093750pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.ha{height:37.090625pt;}
.h9{height:37.479688pt;}
.hb{height:38.491250pt;}
.hc{height:38.828437pt;}
.h8{height:40.640625pt;}
.h12{height:44.687500pt;}
.h5{height:44.975625pt;}
.h7{height:49.852500pt;}
.h11{height:52.284375pt;}
.hf{height:54.187500pt;}
.h6{height:58.522500pt;}
.hd{height:305.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x3{left:100.351988pt;}
.xb{left:113.471988pt;}
.x9{left:119.994667pt;}
.xd{left:123.071988pt;}
.xa{left:141.786655pt;}
.x7{left:173.306655pt;}
.x4{left:283.106655pt;}
.x8{left:304.546655pt;}
.x6{left:322.626655pt;}
.x5{left:397.026655pt;}
.xc{left:546.653322pt;}
}




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