
    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_f45745fc56bbccf3c7afd24d.woff')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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a83d875a653d0e6d4d46d4ef.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0241f13c92ae554a28d40ca2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_98fdec8bb04df025fcbb7444.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_4c224ca204becb80eded7799.woff')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21666685f992b918dec5ea4f.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_edce43766bc153e504d5b982.woff')format("woff");}.ffb{font-family:ffb;line-height:1.331331;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_71489cc6fdbca54bb628947e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.751953;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_b0a1ccba08c512d3b306a3f1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_730b1fe69252856fb7644b47.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_730b1fe69252856fb7644b47.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.ls6{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.026640px;}
.lsd{letter-spacing:-0.018973px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.lse{letter-spacing:0.056920px;}
.ls2{letter-spacing:0.113841px;}
.lsf{letter-spacing:0.117360px;}
.lsc{letter-spacing:0.208708px;}
.ls8{letter-spacing:0.227682px;}
.ls1e{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.666720px;}
.ls1a{letter-spacing:0.696000px;}
.ls17{letter-spacing:1.386720px;}
.ls1c{letter-spacing:3.546720px;}
.ls14{letter-spacing:4.986720px;}
.ls15{letter-spacing:5.706720px;}
.ls18{letter-spacing:6.426720px;}
.ls11{letter-spacing:7.146720px;}
.ls12{letter-spacing:10.026720px;}
.ls1f{letter-spacing:10.746720px;}
.ls4{letter-spacing:11.497927px;}
.ls3{letter-spacing:12.256866px;}
.ls16{letter-spacing:15.066720px;}
.ls21{letter-spacing:16.506720px;}
.ls20{letter-spacing:20.826720px;}
.ls10{letter-spacing:36.666720px;}
.ls1d{letter-spacing:46.026720px;}
.ls1b{letter-spacing:199.530720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.ws8{word-spacing:-57.129137px;}
.wsb{word-spacing:-56.977349px;}
.ws9{word-spacing:-56.920429px;}
.wsa{word-spacing:-56.901455px;}
.ws5{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.012000px;}
.ws7{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws6{word-spacing:-8.928000px;}
.wsd{word-spacing:0.000000px;}
._13{margin-left:-9.779280px;}
._9{margin-left:-8.594400px;}
._3{margin-left:-7.153200px;}
._12{margin-left:-5.094000px;}
._f{margin-left:-3.884400px;}
._11{margin-left:-2.821181px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.343600px;}
._7{width:3.346560px;}
._8{width:4.436880px;}
._e{width:6.166800px;}
._4{width:7.884000px;}
._6{width:9.139680px;}
._d{width:10.366800px;}
._5{width:12.294000px;}
._c{width:13.326480px;}
._b{width:14.700960px;}
._10{width:17.706480px;}
._a{width:18.883440px;}
._19{width:19.892640px;}
._14{width:21.603120px;}
._18{width:24.396240px;}
._15{width:29.162160px;}
._16{width:30.358800px;}
._17{width:32.825280px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:0.525000px;}
.y4b{bottom:2.700000px;}
.y5{bottom:4.140000px;}
.y59{bottom:5.010000px;}
.y3e{bottom:5.745000px;}
.y57{bottom:9.180000px;}
.y2{bottom:9.900000px;}
.y4a{bottom:10.260000px;}
.y4{bottom:23.070000px;}
.y3d{bottom:25.905000px;}
.y56{bottom:28.980000px;}
.y49{bottom:40.320000px;}
.y3c{bottom:46.065000px;}
.y3{bottom:48.090000px;}
.y55{bottom:51.300000px;}
.y48{bottom:51.480000px;}
.y7{bottom:57.600000px;}
.y47{bottom:62.640000px;}
.y3b{bottom:66.045000px;}
.y54{bottom:70.380000px;}
.y46{bottom:74.340000px;}
.y3a{bottom:86.205000px;}
.y45{bottom:87.300000px;}
.y40{bottom:93.240000px;}
.y53{bottom:93.780000px;}
.y44{bottom:100.440000px;}
.y8a{bottom:104.760000px;}
.y39{bottom:106.365000px;}
.y52{bottom:111.600000px;}
.y43{bottom:113.250000px;}
.y51{bottom:119.550000px;}
.y89{bottom:124.920000px;}
.y38{bottom:126.345000px;}
.y50{bottom:135.390000px;}
.y88{bottom:145.080000px;}
.y37{bottom:146.550000px;}
.y4f{bottom:151.050000px;}
.y87{bottom:165.060000px;}
.y4e{bottom:166.530000px;}
.y36{bottom:166.710000px;}
.y42{bottom:175.350000px;}
.y4d{bottom:182.010000px;}
.y41{bottom:185.970000px;}
.y35{bottom:186.690000px;}
.y86{bottom:188.280000px;}
.y4c{bottom:197.130000px;}
.y34{bottom:206.850000px;}
.y85{bottom:211.350000px;}
.y33{bottom:226.830000px;}
.y84{bottom:231.510000px;}
.y32{bottom:246.990000px;}
.y83{bottom:251.670000px;}
.y31{bottom:267.150000px;}
.y82{bottom:271.650000px;}
.y30{bottom:287.130000px;}
.y81{bottom:291.810000px;}
.y2f{bottom:307.290000px;}
.ye{bottom:309.105000px;}
.y80{bottom:311.970000px;}
.y9e{bottom:324.390000px;}
.y2e{bottom:327.450000px;}
.y7f{bottom:331.950000px;}
.y1c{bottom:346.890000px;}
.y2d{bottom:347.430000px;}
.y9d{bottom:348.870000px;}
.y7e{bottom:352.110000px;}
.y2c{bottom:367.620000px;}
.y1b{bottom:371.220000px;}
.y7d{bottom:372.090000px;}
.y9c{bottom:375.150000px;}
.y2b{bottom:387.780000px;}
.y7c{bottom:395.310000px;}
.y1a{bottom:395.340000px;}
.y9b{bottom:401.250000px;}
.y2a{bottom:407.760000px;}
.y7b{bottom:418.350000px;}
.y19{bottom:419.460000px;}
.y9a{bottom:427.350000px;}
.y29{bottom:427.920000px;}
.y7a{bottom:438.510000px;}
.y18{bottom:443.580000px;}
.y28{bottom:448.080000px;}
.y99{bottom:453.495000px;}
.y79{bottom:458.715000px;}
.y17{bottom:467.700000px;}
.y27{bottom:468.060000px;}
.y78{bottom:478.695000px;}
.y98{bottom:479.595000px;}
.y26{bottom:487.860000px;}
.y16{bottom:491.820000px;}
.y77{bottom:498.855000px;}
.y25{bottom:505.860000px;}
.y97{bottom:505.875000px;}
.y15{bottom:515.940000px;}
.y76{bottom:519.015000px;}
.y24{bottom:526.740000px;}
.y96{bottom:531.975000px;}
.y75{bottom:538.995000px;}
.y14{bottom:540.240000px;}
.y23{bottom:547.440000px;}
.y95{bottom:558.075000px;}
.y74{bottom:559.155000px;}
.y13{bottom:564.360000px;}
.y22{bottom:565.620000px;}
.y73{bottom:579.315000px;}
.y21{bottom:583.620000px;}
.y94{bottom:584.175000px;}
.y12{bottom:588.480000px;}
.y72{bottom:599.295000px;}
.y20{bottom:601.845000px;}
.y93{bottom:610.275000px;}
.y11{bottom:612.645000px;}
.y71{bottom:619.455000px;}
.y1f{bottom:619.845000px;}
.y92{bottom:636.375000px;}
.y10{bottom:636.765000px;}
.y1e{bottom:638.025000px;}
.y70{bottom:639.435000px;}
.y1d{bottom:656.025000px;}
.y6f{bottom:659.595000px;}
.yf{bottom:660.885000px;}
.y6e{bottom:679.785000px;}
.y6d{bottom:699.765000px;}
.y6c{bottom:719.925000px;}
.y6b{bottom:740.085000px;}
.y6a{bottom:760.065000px;}
.y69{bottom:780.225000px;}
.y68{bottom:800.385000px;}
.y67{bottom:820.365000px;}
.y66{bottom:840.525000px;}
.y65{bottom:860.685000px;}
.y91{bottom:863.565000px;}
.y64{bottom:880.665000px;}
.y90{bottom:886.785000px;}
.y63{bottom:900.825000px;}
.y8f{bottom:906.945000px;}
.y62{bottom:921.030000px;}
.y8e{bottom:926.970000px;}
.y61{bottom:941.010000px;}
.y8d{bottom:947.130000px;}
.y60{bottom:961.170000px;}
.y8c{bottom:967.110000px;}
.yd{bottom:982.230000px;}
.y5f{bottom:984.210000px;}
.y8b{bottom:987.270000px;}
.yc{bottom:987.990000px;}
.y5e{bottom:1007.430000px;}
.yb{bottom:1007.970000px;}
.y5d{bottom:1027.410000px;}
.ya{bottom:1028.130000px;}
.y5c{bottom:1047.570000px;}
.y9{bottom:1049.910000px;}
.y5b{bottom:1067.730000px;}
.y8{bottom:1072.230000px;}
.y58{bottom:1075.680000px;}
.y5a{bottom:1087.710000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.ha{height:4.165313px;}
.h10{height:5.653125px;}
.h16{height:12.006914px;}
.h19{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h14{height:52.971680px;}
.h15{height:54.421875px;}
.he{height:57.243164px;}
.h7{height:57.324375px;}
.h18{height:58.621992px;}
.h6{height:58.651172px;}
.hf{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h17{height:70.218281px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h11{height:215.130000px;}
.hb{height:670.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.074500px;}
.w4{width:132.694500px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:6.876000px;}
.x18{left:8.134500px;}
.x4{left:12.765000px;}
.x17{left:16.054500px;}
.x1f{left:18.214500px;}
.x15{left:19.654500px;}
.x16{left:26.134500px;}
.x21{left:29.194500px;}
.xf{left:33.334500px;}
.x6{left:35.985000px;}
.x20{left:47.734500px;}
.x10{left:50.794500px;}
.xe{left:55.114500px;}
.x23{left:57.094500px;}
.x1a{left:62.130000px;}
.x22{left:66.268500px;}
.x13{left:73.288500px;}
.x1{left:78.301500px;}
.x14{left:79.588500px;}
.x12{left:82.468500px;}
.x7{left:86.400000px;}
.x2{left:95.788500px;}
.x24{left:102.808500px;}
.x1e{left:106.768500px;}
.x29{left:113.436000px;}
.x11{left:124.588500px;}
.x5{left:141.330000px;}
.x3{left:182.385000px;}
.x25{left:202.710000px;}
.x26{left:210.090000px;}
.x19{left:219.105000px;}
.x1b{left:316.680000px;}
.x1c{left:330.000000px;}
.xc{left:425.595000px;}
.x27{left:449.745000px;}
.x1d{left:575.955000px;}
.xb{left:607.605000px;}
.xa{left:651.750000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.xd{left:806.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.023680pt;}
.lsd{letter-spacing:-0.016865pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.050596pt;}
.ls2{letter-spacing:0.101192pt;}
.lsf{letter-spacing:0.104320pt;}
.lsc{letter-spacing:0.185518pt;}
.ls8{letter-spacing:0.202384pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls1a{letter-spacing:0.618667pt;}
.ls17{letter-spacing:1.232640pt;}
.ls1c{letter-spacing:3.152640pt;}
.ls14{letter-spacing:4.432640pt;}
.ls15{letter-spacing:5.072640pt;}
.ls18{letter-spacing:5.712640pt;}
.ls11{letter-spacing:6.352640pt;}
.ls12{letter-spacing:8.912640pt;}
.ls1f{letter-spacing:9.552640pt;}
.ls4{letter-spacing:10.220379pt;}
.ls3{letter-spacing:10.894992pt;}
.ls16{letter-spacing:13.392640pt;}
.ls21{letter-spacing:14.672640pt;}
.ls20{letter-spacing:18.512640pt;}
.ls10{letter-spacing:32.592640pt;}
.ls1d{letter-spacing:40.912640pt;}
.ls1b{letter-spacing:177.360640pt;}
.wse{word-spacing:-53.120000pt;}
.ws8{word-spacing:-50.781455pt;}
.wsb{word-spacing:-50.646533pt;}
.ws9{word-spacing:-50.595937pt;}
.wsa{word-spacing:-50.579071pt;}
.ws5{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws6{word-spacing:-7.936000pt;}
.wsd{word-spacing:0.000000pt;}
._13{margin-left:-8.692693pt;}
._9{margin-left:-7.639467pt;}
._3{margin-left:-6.358400pt;}
._12{margin-left:-4.528000pt;}
._f{margin-left:-3.452800pt;}
._11{margin-left:-2.507716pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.083200pt;}
._7{width:2.974720pt;}
._8{width:3.943893pt;}
._e{width:5.481600pt;}
._4{width:7.008000pt;}
._6{width:8.124160pt;}
._d{width:9.214933pt;}
._5{width:10.928000pt;}
._c{width:11.845760pt;}
._b{width:13.067520pt;}
._10{width:15.739093pt;}
._a{width:16.785280pt;}
._19{width:17.682347pt;}
._14{width:19.202773pt;}
._18{width:21.685547pt;}
._15{width:25.921920pt;}
._16{width:26.985600pt;}
._17{width:29.178027pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:0.466667pt;}
.y4b{bottom:2.400000pt;}
.y5{bottom:3.680000pt;}
.y59{bottom:4.453333pt;}
.y3e{bottom:5.106667pt;}
.y57{bottom:8.160000pt;}
.y2{bottom:8.800000pt;}
.y4a{bottom:9.120000pt;}
.y4{bottom:20.506667pt;}
.y3d{bottom:23.026667pt;}
.y56{bottom:25.760000pt;}
.y49{bottom:35.840000pt;}
.y3c{bottom:40.946667pt;}
.y3{bottom:42.746667pt;}
.y55{bottom:45.600000pt;}
.y48{bottom:45.760000pt;}
.y7{bottom:51.200000pt;}
.y47{bottom:55.680000pt;}
.y3b{bottom:58.706667pt;}
.y54{bottom:62.560000pt;}
.y46{bottom:66.080000pt;}
.y3a{bottom:76.626667pt;}
.y45{bottom:77.600000pt;}
.y40{bottom:82.880000pt;}
.y53{bottom:83.360000pt;}
.y44{bottom:89.280000pt;}
.y8a{bottom:93.120000pt;}
.y39{bottom:94.546667pt;}
.y52{bottom:99.200000pt;}
.y43{bottom:100.666667pt;}
.y51{bottom:106.266667pt;}
.y89{bottom:111.040000pt;}
.y38{bottom:112.306667pt;}
.y50{bottom:120.346667pt;}
.y88{bottom:128.960000pt;}
.y37{bottom:130.266667pt;}
.y4f{bottom:134.266667pt;}
.y87{bottom:146.720000pt;}
.y4e{bottom:148.026667pt;}
.y36{bottom:148.186667pt;}
.y42{bottom:155.866667pt;}
.y4d{bottom:161.786667pt;}
.y41{bottom:165.306667pt;}
.y35{bottom:165.946667pt;}
.y86{bottom:167.360000pt;}
.y4c{bottom:175.226667pt;}
.y34{bottom:183.866667pt;}
.y85{bottom:187.866667pt;}
.y33{bottom:201.626667pt;}
.y84{bottom:205.786667pt;}
.y32{bottom:219.546667pt;}
.y83{bottom:223.706667pt;}
.y31{bottom:237.466667pt;}
.y82{bottom:241.466667pt;}
.y30{bottom:255.226667pt;}
.y81{bottom:259.386667pt;}
.y2f{bottom:273.146667pt;}
.ye{bottom:274.760000pt;}
.y80{bottom:277.306667pt;}
.y9e{bottom:288.346667pt;}
.y2e{bottom:291.066667pt;}
.y7f{bottom:295.066667pt;}
.y1c{bottom:308.346667pt;}
.y2d{bottom:308.826667pt;}
.y9d{bottom:310.106667pt;}
.y7e{bottom:312.986667pt;}
.y2c{bottom:326.773333pt;}
.y1b{bottom:329.973333pt;}
.y7d{bottom:330.746667pt;}
.y9c{bottom:333.466667pt;}
.y2b{bottom:344.693333pt;}
.y7c{bottom:351.386667pt;}
.y1a{bottom:351.413333pt;}
.y9b{bottom:356.666667pt;}
.y2a{bottom:362.453333pt;}
.y7b{bottom:371.866667pt;}
.y19{bottom:372.853333pt;}
.y9a{bottom:379.866667pt;}
.y29{bottom:380.373333pt;}
.y7a{bottom:389.786667pt;}
.y18{bottom:394.293333pt;}
.y28{bottom:398.293333pt;}
.y99{bottom:403.106667pt;}
.y79{bottom:407.746667pt;}
.y17{bottom:415.733333pt;}
.y27{bottom:416.053333pt;}
.y78{bottom:425.506667pt;}
.y98{bottom:426.306667pt;}
.y26{bottom:433.653333pt;}
.y16{bottom:437.173333pt;}
.y77{bottom:443.426667pt;}
.y25{bottom:449.653333pt;}
.y97{bottom:449.666667pt;}
.y15{bottom:458.613333pt;}
.y76{bottom:461.346667pt;}
.y24{bottom:468.213333pt;}
.y96{bottom:472.866667pt;}
.y75{bottom:479.106667pt;}
.y14{bottom:480.213333pt;}
.y23{bottom:486.613333pt;}
.y95{bottom:496.066667pt;}
.y74{bottom:497.026667pt;}
.y13{bottom:501.653333pt;}
.y22{bottom:502.773333pt;}
.y73{bottom:514.946667pt;}
.y21{bottom:518.773333pt;}
.y94{bottom:519.266667pt;}
.y12{bottom:523.093333pt;}
.y72{bottom:532.706667pt;}
.y20{bottom:534.973333pt;}
.y93{bottom:542.466667pt;}
.y11{bottom:544.573333pt;}
.y71{bottom:550.626667pt;}
.y1f{bottom:550.973333pt;}
.y92{bottom:565.666667pt;}
.y10{bottom:566.013333pt;}
.y1e{bottom:567.133333pt;}
.y70{bottom:568.386667pt;}
.y1d{bottom:583.133333pt;}
.y6f{bottom:586.306667pt;}
.yf{bottom:587.453333pt;}
.y6e{bottom:604.253333pt;}
.y6d{bottom:622.013333pt;}
.y6c{bottom:639.933333pt;}
.y6b{bottom:657.853333pt;}
.y6a{bottom:675.613333pt;}
.y69{bottom:693.533333pt;}
.y68{bottom:711.453333pt;}
.y67{bottom:729.213333pt;}
.y66{bottom:747.133333pt;}
.y65{bottom:765.053333pt;}
.y91{bottom:767.613333pt;}
.y64{bottom:782.813333pt;}
.y90{bottom:788.253333pt;}
.y63{bottom:800.733333pt;}
.y8f{bottom:806.173333pt;}
.y62{bottom:818.693333pt;}
.y8e{bottom:823.973333pt;}
.y61{bottom:836.453333pt;}
.y8d{bottom:841.893333pt;}
.y60{bottom:854.373333pt;}
.y8c{bottom:859.653333pt;}
.yd{bottom:873.093333pt;}
.y5f{bottom:874.853333pt;}
.y8b{bottom:877.573333pt;}
.yc{bottom:878.213333pt;}
.y5e{bottom:895.493333pt;}
.yb{bottom:895.973333pt;}
.y5d{bottom:913.253333pt;}
.ya{bottom:913.893333pt;}
.y5c{bottom:931.173333pt;}
.y9{bottom:933.253333pt;}
.y5b{bottom:949.093333pt;}
.y8{bottom:953.093333pt;}
.y58{bottom:956.160000pt;}
.y5a{bottom:966.853333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.ha{height:3.702500pt;}
.h10{height:5.025000pt;}
.h16{height:10.672812pt;}
.h19{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h14{height:47.085938pt;}
.h15{height:48.375000pt;}
.he{height:50.882812pt;}
.h7{height:50.955000pt;}
.h18{height:52.108438pt;}
.h6{height:52.134375pt;}
.hf{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h17{height:62.416250pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h11{height:191.226667pt;}
.hb{height:595.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.510667pt;}
.w4{width:117.950667pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.112000pt;}
.x18{left:7.230667pt;}
.x4{left:11.346667pt;}
.x17{left:14.270667pt;}
.x1f{left:16.190667pt;}
.x15{left:17.470667pt;}
.x16{left:23.230667pt;}
.x21{left:25.950667pt;}
.xf{left:29.630667pt;}
.x6{left:31.986667pt;}
.x20{left:42.430667pt;}
.x10{left:45.150667pt;}
.xe{left:48.990667pt;}
.x23{left:50.750667pt;}
.x1a{left:55.226667pt;}
.x22{left:58.905333pt;}
.x13{left:65.145333pt;}
.x1{left:69.601333pt;}
.x14{left:70.745333pt;}
.x12{left:73.305333pt;}
.x7{left:76.800000pt;}
.x2{left:85.145333pt;}
.x24{left:91.385333pt;}
.x1e{left:94.905333pt;}
.x29{left:100.832000pt;}
.x11{left:110.745333pt;}
.x5{left:125.626667pt;}
.x3{left:162.120000pt;}
.x25{left:180.186667pt;}
.x26{left:186.746667pt;}
.x19{left:194.760000pt;}
.x1b{left:281.493333pt;}
.x1c{left:293.333333pt;}
.xc{left:378.306667pt;}
.x27{left:399.773333pt;}
.x1d{left:511.960000pt;}
.xb{left:540.093333pt;}
.xa{left:579.333333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.xd{left:717.120000pt;}
}




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