
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d15f044fdf2e26cde913930.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_793713191a159d68d486df70.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_d7a792a8b0307b6be9bb16a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ba5b30ca5b6d698bf7d5ad87.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_edd47660fd1d55b7e3e94e27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_34274a0f5ea76ff70b481355.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_9b6283bdc9819b7137c6b750.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_48d28eac066d9b4a2b573869.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1fb7d769431d38ecb926e9ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.763672;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_48a2ff71ffe75b171f3f355e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_346d5eed61df35caa9a612e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a3dda98c8fb8008e2c32daf0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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:ffe;src:url('chunks/assets/font_adb64e110b51d4125dc31151.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691895;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:fff;src:url('chunks/assets/font_0aca0f5f110fcdbbc3446904.woff2')format("woff");}.fff{font-family:fff;line-height:0.691895;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:ff10;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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:ff11;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;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;}
.ls9{letter-spacing:-0.162000px;}
.ls5{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005040px;}
.ls0{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.052560px;}
.lsd{letter-spacing:0.054720px;}
.ls3{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.133200px;}
.ls8{letter-spacing:0.180000px;}
.lse{letter-spacing:0.245520px;}
.ls11{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.670080px;}
.lsa{letter-spacing:0.900000px;}
.lsf{letter-spacing:125.946720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(60,92,116),0 0.015em rgb(60,92,116),0.015em 0 rgb(60,92,116),0 -0.015em  rgb(60,92,116);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(60,92,116);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.102720px;}
.ws9{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.734480px;}
.wsb{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.625280px;}
.ws4{word-spacing:-12.690000px;}
.ws5{word-spacing:-12.492000px;}
.ws2{word-spacing:-12.312000px;}
.ws3{word-spacing:-12.168000px;}
.ws6{word-spacing:-12.150000px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-3.378240px;}
._3{margin-left:-2.157120px;}
._1{margin-left:-1.080000px;}
._0{width:1.242000px;}
._6{width:2.367840px;}
._7{width:3.667200px;}
._4{width:5.299200px;}
._5{width:6.727680px;}
._8{width:8.544960px;}
._b{width:10.458720px;}
._9{width:11.666160px;}
._e{width:15.358320px;}
._12{width:16.374240px;}
._d{width:17.569440px;}
._10{width:18.645120px;}
._1a{width:20.139120px;}
._13{width:22.111200px;}
._f{width:23.485680px;}
._11{width:24.561360px;}
._16{width:26.294400px;}
._17{width:27.609120px;}
._14{width:29.295360px;}
._15{width:30.332160px;}
._c{width:33.644880px;}
._18{width:35.198640px;}
._19{width:44.939520px;}
._2{width:71.127360px;}
._1b{width:105.655680px;}
._1c{width:209.697840px;}
.fc5{color:transparent;}
.fc3{color:rgb(60,92,116);}
.fc2{color:rgb(60,92,115);}
.fc4{color:rgb(193,89,76);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:2.880000px;}
.y18{bottom:3.600000px;}
.y48{bottom:4.680000px;}
.y21{bottom:18.360000px;}
.y17{bottom:22.500000px;}
.y20{bottom:33.840000px;}
.y16{bottom:41.400000px;}
.y1f{bottom:49.320000px;}
.y46{bottom:57.060000px;}
.y15{bottom:60.300000px;}
.y1e{bottom:64.800000px;}
.y7{bottom:66.780000px;}
.y47{bottom:71.820000px;}
.y45{bottom:73.800000px;}
.y14{bottom:79.200000px;}
.y1d{bottom:80.280000px;}
.y6{bottom:83.160000px;}
.y44{bottom:90.720000px;}
.y1c{bottom:97.380000px;}
.y13{bottom:98.145000px;}
.y5{bottom:99.540000px;}
.y1b{bottom:116.460000px;}
.y12{bottom:117.225000px;}
.y86{bottom:120.240000px;}
.y4{bottom:124.920000px;}
.yb7{bottom:133.380000px;}
.y11{bottom:136.125000px;}
.y1a{bottom:137.160000px;}
.y85{bottom:137.340000px;}
.y3f{bottom:141.300000px;}
.yb6{bottom:150.480000px;}
.y84{bottom:154.650000px;}
.y10{bottom:155.025000px;}
.y3e{bottom:158.610000px;}
.yb5{bottom:167.790000px;}
.y83{bottom:171.930000px;}
.y3d{bottom:175.710000px;}
.yb4{bottom:185.070000px;}
.y82{bottom:189.030000px;}
.y3c{bottom:192.990000px;}
.yb3{bottom:202.170000px;}
.y81{bottom:206.310000px;}
.y3b{bottom:210.270000px;}
.yb2{bottom:219.450000px;}
.y80{bottom:223.590000px;}
.y3a{bottom:227.370000px;}
.yb1{bottom:236.550000px;}
.y7f{bottom:240.690000px;}
.y39{bottom:244.650000px;}
.yb0{bottom:253.830000px;}
.y7e{bottom:257.970000px;}
.y38{bottom:261.930000px;}
.yaf{bottom:271.110000px;}
.y7d{bottom:275.070000px;}
.y37{bottom:279.030000px;}
.yae{bottom:288.210000px;}
.y7c{bottom:292.350000px;}
.y36{bottom:296.310000px;}
.yad{bottom:305.490000px;}
.y7b{bottom:309.630000px;}
.y35{bottom:313.410000px;}
.yac{bottom:322.770000px;}
.y7a{bottom:326.730000px;}
.y34{bottom:330.690000px;}
.yab{bottom:339.870000px;}
.y79{bottom:344.190000px;}
.y33{bottom:347.970000px;}
.yaa{bottom:357.150000px;}
.y78{bottom:362.910000px;}
.y32{bottom:365.070000px;}
.ya9{bottom:374.250000px;}
.y77{bottom:380.190000px;}
.y31{bottom:382.350000px;}
.ya8{bottom:391.530000px;}
.y76{bottom:397.290000px;}
.y30{bottom:399.630000px;}
.ya7{bottom:408.855000px;}
.y75{bottom:414.615000px;}
.y2f{bottom:416.775000px;}
.ya6{bottom:425.955000px;}
.y74{bottom:431.895000px;}
.y2e{bottom:434.055000px;}
.ya5{bottom:443.415000px;}
.y73{bottom:448.995000px;}
.y2d{bottom:451.155000px;}
.ya4{bottom:462.135000px;}
.y72{bottom:466.275000px;}
.y2c{bottom:468.435000px;}
.ya3{bottom:479.415000px;}
.y71{bottom:483.375000px;}
.y2b{bottom:485.715000px;}
.ya2{bottom:496.515000px;}
.y70{bottom:500.655000px;}
.y2a{bottom:502.815000px;}
.ya1{bottom:513.795000px;}
.y6f{bottom:517.935000px;}
.y29{bottom:520.095000px;}
.ya0{bottom:531.075000px;}
.y6e{bottom:535.035000px;}
.y28{bottom:537.375000px;}
.y9f{bottom:548.175000px;}
.y6d{bottom:552.315000px;}
.y27{bottom:554.475000px;}
.y9e{bottom:565.455000px;}
.y6c{bottom:569.595000px;}
.y26{bottom:571.755000px;}
.y43{bottom:571.935000px;}
.y9d{bottom:582.555000px;}
.y6b{bottom:586.695000px;}
.yd1{bottom:588.135000px;}
.y25{bottom:588.855000px;}
.y42{bottom:590.655000px;}
.y9c{bottom:599.835000px;}
.y6a{bottom:603.975000px;}
.yd0{bottom:605.595000px;}
.y24{bottom:606.135000px;}
.y41{bottom:607.935000px;}
.y9b{bottom:617.115000px;}
.y69{bottom:621.075000px;}
.ycf{bottom:622.875000px;}
.y23{bottom:623.595000px;}
.y40{bottom:625.035000px;}
.y9a{bottom:634.215000px;}
.y68{bottom:638.355000px;}
.yce{bottom:640.155000px;}
.y99{bottom:652.605000px;}
.y67{bottom:655.665000px;}
.ycd{bottom:657.285000px;}
.y19{bottom:659.265000px;}
.y98{bottom:669.705000px;}
.y66{bottom:672.765000px;}
.ycc{bottom:674.565000px;}
.y97{bottom:686.985000px;}
.y65{bottom:690.045000px;}
.ycb{bottom:691.665000px;}
.y96{bottom:704.085000px;}
.y64{bottom:707.325000px;}
.yca{bottom:708.945000px;}
.y95{bottom:721.365000px;}
.y63{bottom:724.425000px;}
.yc8{bottom:724.605000px;}
.yc9{bottom:726.225000px;}
.y94{bottom:738.645000px;}
.y62{bottom:741.705000px;}
.yc7{bottom:743.325000px;}
.y93{bottom:755.745000px;}
.y61{bottom:758.805000px;}
.yc6{bottom:760.605000px;}
.y92{bottom:774.105000px;}
.y60{bottom:776.085000px;}
.yc5{bottom:777.885000px;}
.y91{bottom:791.205000px;}
.y5f{bottom:793.365000px;}
.yc4{bottom:794.985000px;}
.y90{bottom:808.305000px;}
.y5e{bottom:810.465000px;}
.yc3{bottom:812.265000px;}
.yf{bottom:814.965000px;}
.y8f{bottom:826.665000px;}
.y5d{bottom:827.745000px;}
.yc2{bottom:829.365000px;}
.y8e{bottom:843.945000px;}
.y5c{bottom:845.025000px;}
.yc1{bottom:846.645000px;}
.y8d{bottom:861.045000px;}
.y5b{bottom:862.125000px;}
.yc0{bottom:863.925000px;}
.y8c{bottom:878.145000px;}
.y5a{bottom:879.405000px;}
.ybf{bottom:881.025000px;}
.y59{bottom:896.505000px;}
.ybe{bottom:898.350000px;}
.y58{bottom:913.830000px;}
.ybd{bottom:915.630000px;}
.y57{bottom:931.110000px;}
.ybc{bottom:932.730000px;}
.y56{bottom:948.210000px;}
.ybb{bottom:950.010000px;}
.y55{bottom:965.490000px;}
.yba{bottom:967.110000px;}
.y54{bottom:982.590000px;}
.yb9{bottom:984.390000px;}
.ye{bottom:989.970000px;}
.y8b{bottom:999.870000px;}
.y53{bottom:1000.050000px;}
.yb8{bottom:1001.670000px;}
.yd{bottom:1009.050000px;}
.y8a{bottom:1017.150000px;}
.y52{bottom:1018.770000px;}
.yc{bottom:1027.950000px;}
.y89{bottom:1034.250000px;}
.y51{bottom:1036.050000px;}
.yb{bottom:1049.550000px;}
.y88{bottom:1051.530000px;}
.y50{bottom:1053.330000px;}
.y87{bottom:1068.990000px;}
.y4f{bottom:1070.430000px;}
.ya{bottom:1070.790000px;}
.y4e{bottom:1087.710000px;}
.y4d{bottom:1104.810000px;}
.y9{bottom:1111.830000px;}
.y4c{bottom:1122.090000px;}
.y8{bottom:1128.210000px;}
.y4b{bottom:1139.370000px;}
.y3{bottom:1148.580000px;}
.y4a{bottom:1156.500000px;}
.y2{bottom:1170.720000px;}
.y49{bottom:1173.780000px;}
.y1{bottom:1192.680000px;}
.h13{height:20.160000px;}
.h3{height:36.571289px;}
.h10{height:39.313477px;}
.he{height:39.339844px;}
.h5{height:40.472227px;}
.h11{height:43.536094px;}
.h15{height:44.907539px;}
.ha{height:48.224531px;}
.h4{height:48.256875px;}
.h14{height:48.761719px;}
.h7{height:49.065469px;}
.h8{height:49.777031px;}
.h12{height:51.408000px;}
.hd{height:58.433906px;}
.hb{height:63.303398px;}
.hf{height:65.884219px;}
.h2{height:71.613281px;}
.h6{height:78.626953px;}
.hc{height:155.700000px;}
.h9{height:170.490000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.536000px;}
.w3{width:892.799973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:20.550000px;}
.x1{left:42.479987px;}
.x4{left:446.504987px;}
.x3{left:463.604987px;}
.x2{left:751.469987px;}
.x5{left:798.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004480pt;}
.ls0{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.046720pt;}
.lsd{letter-spacing:0.048640pt;}
.ls3{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.118400pt;}
.ls8{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.218240pt;}
.ls11{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.595627pt;}
.lsa{letter-spacing:0.800000pt;}
.lsf{letter-spacing:111.952640pt;}
.ws0{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.424640pt;}
.ws9{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.208427pt;}
.wsb{word-spacing:-12.160000pt;}
.ws7{word-spacing:-12.111360pt;}
.ws4{word-spacing:-11.280000pt;}
.ws5{word-spacing:-11.104000pt;}
.ws2{word-spacing:-10.944000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws6{word-spacing:-10.800000pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-3.002880pt;}
._3{margin-left:-1.917440pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.104000pt;}
._6{width:2.104747pt;}
._7{width:3.259733pt;}
._4{width:4.710400pt;}
._5{width:5.980160pt;}
._8{width:7.595520pt;}
._b{width:9.296640pt;}
._9{width:10.369920pt;}
._e{width:13.651840pt;}
._12{width:14.554880pt;}
._d{width:15.617280pt;}
._10{width:16.573440pt;}
._1a{width:17.901440pt;}
._13{width:19.654400pt;}
._f{width:20.876160pt;}
._11{width:21.832320pt;}
._16{width:23.372800pt;}
._17{width:24.541440pt;}
._14{width:26.040320pt;}
._15{width:26.961920pt;}
._c{width:29.906560pt;}
._18{width:31.287680pt;}
._19{width:39.946240pt;}
._2{width:63.224320pt;}
._1b{width:93.916160pt;}
._1c{width:186.398080pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.560000pt;}
.y18{bottom:3.200000pt;}
.y48{bottom:4.160000pt;}
.y21{bottom:16.320000pt;}
.y17{bottom:20.000000pt;}
.y20{bottom:30.080000pt;}
.y16{bottom:36.800000pt;}
.y1f{bottom:43.840000pt;}
.y46{bottom:50.720000pt;}
.y15{bottom:53.600000pt;}
.y1e{bottom:57.600000pt;}
.y7{bottom:59.360000pt;}
.y47{bottom:63.840000pt;}
.y45{bottom:65.600000pt;}
.y14{bottom:70.400000pt;}
.y1d{bottom:71.360000pt;}
.y6{bottom:73.920000pt;}
.y44{bottom:80.640000pt;}
.y1c{bottom:86.560000pt;}
.y13{bottom:87.240000pt;}
.y5{bottom:88.480000pt;}
.y1b{bottom:103.520000pt;}
.y12{bottom:104.200000pt;}
.y86{bottom:106.880000pt;}
.y4{bottom:111.040000pt;}
.yb7{bottom:118.560000pt;}
.y11{bottom:121.000000pt;}
.y1a{bottom:121.920000pt;}
.y85{bottom:122.080000pt;}
.y3f{bottom:125.600000pt;}
.yb6{bottom:133.760000pt;}
.y84{bottom:137.466667pt;}
.y10{bottom:137.800000pt;}
.y3e{bottom:140.986667pt;}
.yb5{bottom:149.146667pt;}
.y83{bottom:152.826667pt;}
.y3d{bottom:156.186667pt;}
.yb4{bottom:164.506667pt;}
.y82{bottom:168.026667pt;}
.y3c{bottom:171.546667pt;}
.yb3{bottom:179.706667pt;}
.y81{bottom:183.386667pt;}
.y3b{bottom:186.906667pt;}
.yb2{bottom:195.066667pt;}
.y80{bottom:198.746667pt;}
.y3a{bottom:202.106667pt;}
.yb1{bottom:210.266667pt;}
.y7f{bottom:213.946667pt;}
.y39{bottom:217.466667pt;}
.yb0{bottom:225.626667pt;}
.y7e{bottom:229.306667pt;}
.y38{bottom:232.826667pt;}
.yaf{bottom:240.986667pt;}
.y7d{bottom:244.506667pt;}
.y37{bottom:248.026667pt;}
.yae{bottom:256.186667pt;}
.y7c{bottom:259.866667pt;}
.y36{bottom:263.386667pt;}
.yad{bottom:271.546667pt;}
.y7b{bottom:275.226667pt;}
.y35{bottom:278.586667pt;}
.yac{bottom:286.906667pt;}
.y7a{bottom:290.426667pt;}
.y34{bottom:293.946667pt;}
.yab{bottom:302.106667pt;}
.y79{bottom:305.946667pt;}
.y33{bottom:309.306667pt;}
.yaa{bottom:317.466667pt;}
.y78{bottom:322.586667pt;}
.y32{bottom:324.506667pt;}
.ya9{bottom:332.666667pt;}
.y77{bottom:337.946667pt;}
.y31{bottom:339.866667pt;}
.ya8{bottom:348.026667pt;}
.y76{bottom:353.146667pt;}
.y30{bottom:355.226667pt;}
.ya7{bottom:363.426667pt;}
.y75{bottom:368.546667pt;}
.y2f{bottom:370.466667pt;}
.ya6{bottom:378.626667pt;}
.y74{bottom:383.906667pt;}
.y2e{bottom:385.826667pt;}
.ya5{bottom:394.146667pt;}
.y73{bottom:399.106667pt;}
.y2d{bottom:401.026667pt;}
.ya4{bottom:410.786667pt;}
.y72{bottom:414.466667pt;}
.y2c{bottom:416.386667pt;}
.ya3{bottom:426.146667pt;}
.y71{bottom:429.666667pt;}
.y2b{bottom:431.746667pt;}
.ya2{bottom:441.346667pt;}
.y70{bottom:445.026667pt;}
.y2a{bottom:446.946667pt;}
.ya1{bottom:456.706667pt;}
.y6f{bottom:460.386667pt;}
.y29{bottom:462.306667pt;}
.ya0{bottom:472.066667pt;}
.y6e{bottom:475.586667pt;}
.y28{bottom:477.666667pt;}
.y9f{bottom:487.266667pt;}
.y6d{bottom:490.946667pt;}
.y27{bottom:492.866667pt;}
.y9e{bottom:502.626667pt;}
.y6c{bottom:506.306667pt;}
.y26{bottom:508.226667pt;}
.y43{bottom:508.386667pt;}
.y9d{bottom:517.826667pt;}
.y6b{bottom:521.506667pt;}
.yd1{bottom:522.786667pt;}
.y25{bottom:523.426667pt;}
.y42{bottom:525.026667pt;}
.y9c{bottom:533.186667pt;}
.y6a{bottom:536.866667pt;}
.yd0{bottom:538.306667pt;}
.y24{bottom:538.786667pt;}
.y41{bottom:540.386667pt;}
.y9b{bottom:548.546667pt;}
.y69{bottom:552.066667pt;}
.ycf{bottom:553.666667pt;}
.y23{bottom:554.306667pt;}
.y40{bottom:555.586667pt;}
.y9a{bottom:563.746667pt;}
.y68{bottom:567.426667pt;}
.yce{bottom:569.026667pt;}
.y99{bottom:580.093333pt;}
.y67{bottom:582.813333pt;}
.ycd{bottom:584.253333pt;}
.y19{bottom:586.013333pt;}
.y98{bottom:595.293333pt;}
.y66{bottom:598.013333pt;}
.ycc{bottom:599.613333pt;}
.y97{bottom:610.653333pt;}
.y65{bottom:613.373333pt;}
.ycb{bottom:614.813333pt;}
.y96{bottom:625.853333pt;}
.y64{bottom:628.733333pt;}
.yca{bottom:630.173333pt;}
.y95{bottom:641.213333pt;}
.y63{bottom:643.933333pt;}
.yc8{bottom:644.093333pt;}
.yc9{bottom:645.533333pt;}
.y94{bottom:656.573333pt;}
.y62{bottom:659.293333pt;}
.yc7{bottom:660.733333pt;}
.y93{bottom:671.773333pt;}
.y61{bottom:674.493333pt;}
.yc6{bottom:676.093333pt;}
.y92{bottom:688.093333pt;}
.y60{bottom:689.853333pt;}
.yc5{bottom:691.453333pt;}
.y91{bottom:703.293333pt;}
.y5f{bottom:705.213333pt;}
.yc4{bottom:706.653333pt;}
.y90{bottom:718.493333pt;}
.y5e{bottom:720.413333pt;}
.yc3{bottom:722.013333pt;}
.yf{bottom:724.413333pt;}
.y8f{bottom:734.813333pt;}
.y5d{bottom:735.773333pt;}
.yc2{bottom:737.213333pt;}
.y8e{bottom:750.173333pt;}
.y5c{bottom:751.133333pt;}
.yc1{bottom:752.573333pt;}
.y8d{bottom:765.373333pt;}
.y5b{bottom:766.333333pt;}
.yc0{bottom:767.933333pt;}
.y8c{bottom:780.573333pt;}
.y5a{bottom:781.693333pt;}
.ybf{bottom:783.133333pt;}
.y59{bottom:796.893333pt;}
.ybe{bottom:798.533333pt;}
.y58{bottom:812.293333pt;}
.ybd{bottom:813.893333pt;}
.y57{bottom:827.653333pt;}
.ybc{bottom:829.093333pt;}
.y56{bottom:842.853333pt;}
.ybb{bottom:844.453333pt;}
.y55{bottom:858.213333pt;}
.yba{bottom:859.653333pt;}
.y54{bottom:873.413333pt;}
.yb9{bottom:875.013333pt;}
.ye{bottom:879.973333pt;}
.y8b{bottom:888.773333pt;}
.y53{bottom:888.933333pt;}
.yb8{bottom:890.373333pt;}
.yd{bottom:896.933333pt;}
.y8a{bottom:904.133333pt;}
.y52{bottom:905.573333pt;}
.yc{bottom:913.733333pt;}
.y89{bottom:919.333333pt;}
.y51{bottom:920.933333pt;}
.yb{bottom:932.933333pt;}
.y88{bottom:934.693333pt;}
.y50{bottom:936.293333pt;}
.y87{bottom:950.213333pt;}
.y4f{bottom:951.493333pt;}
.ya{bottom:951.813333pt;}
.y4e{bottom:966.853333pt;}
.y4d{bottom:982.053333pt;}
.y9{bottom:988.293333pt;}
.y4c{bottom:997.413333pt;}
.y8{bottom:1002.853333pt;}
.y4b{bottom:1012.773333pt;}
.y3{bottom:1020.960000pt;}
.y4a{bottom:1028.000000pt;}
.y2{bottom:1040.640000pt;}
.y49{bottom:1043.360000pt;}
.y1{bottom:1060.160000pt;}
.h13{height:17.920000pt;}
.h3{height:32.507812pt;}
.h10{height:34.945312pt;}
.he{height:34.968750pt;}
.h5{height:35.975313pt;}
.h11{height:38.698750pt;}
.h15{height:39.917813pt;}
.ha{height:42.866250pt;}
.h4{height:42.895000pt;}
.h14{height:43.343750pt;}
.h7{height:43.613750pt;}
.h8{height:44.246250pt;}
.h12{height:45.696000pt;}
.hd{height:51.941250pt;}
.hb{height:56.269687pt;}
.hf{height:58.563750pt;}
.h2{height:63.656250pt;}
.h6{height:69.890625pt;}
.hc{height:138.400000pt;}
.h9{height:151.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.032000pt;}
.w3{width:793.599976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:18.266667pt;}
.x1{left:37.759988pt;}
.x4{left:396.893322pt;}
.x3{left:412.093322pt;}
.x2{left:667.973322pt;}
.x5{left:710.053333pt;}
}




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