
    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_327ee47f6b1aee53b3432ca6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_dedc41debc59fd5b470216a3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c174096ed5f7a30a599d0c1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_699ec8127aec316cdb4735f7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_9dd88e21b21bf03454212eea.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_6c557e02ad4165274b32ebe1.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_6718958894d7b229c8684b45.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_480b36ab0a2a4c2729b76efa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_0267d80b3a425b252f114bfd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d872227cf8aada8262acf56c.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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_a9d675528ae1dd6a33a62a12.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f2adf9548a66888183fb84e4.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4c2a6656380766209be023b1.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd{letter-spacing:-2.052000px;}
.lsf{letter-spacing:-1.746000px;}
.lsb{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.483600px;}
.lse{letter-spacing:-0.420600px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.152400px;}
.lsc{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.440000px;}
.ls10{letter-spacing:8.957280px;}
.ls6{letter-spacing:40.625280px;}
.ls5{letter-spacing:40.637280px;}
.ls8{letter-spacing:88.560000px;}
.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;}
}
.ws1{word-spacing:-83.520000px;}
.wse{word-spacing:-66.240000px;}
.ws4{word-spacing:-60.480000px;}
.wsd{word-spacing:-23.549640px;}
.ws0{word-spacing:-19.010880px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.890800px;}
.wsb{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.ws10{word-spacing:-15.732000px;}
.wsa{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.814000px;}
.ws2{word-spacing:-14.650800px;}
.wsc{word-spacing:-14.508000px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-3.879360px;}
._3{margin-left:-2.744640px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._38{width:3.744000px;}
._c{width:4.769280px;}
._b{width:5.895360px;}
._a{width:7.249920px;}
._9{width:8.677440px;}
._13{width:9.763200px;}
._6{width:11.764800px;}
._7{width:13.169760px;}
._8{width:14.611680px;}
._20{width:18.394560px;}
._36{width:19.566720px;}
._5{width:20.733120px;}
._37{width:21.755520px;}
._12{width:22.921920px;}
._21{width:24.379680px;}
._17{width:25.634880px;}
._18{width:27.555840px;}
._2a{width:28.696320px;}
._24{width:30.312000px;}
._25{width:31.492800px;}
._42{width:32.590080px;}
._e{width:33.837120px;}
._d{width:35.280000px;}
._10{width:37.330560px;}
._f{width:38.352960px;}
._2e{width:40.245120px;}
._2d{width:41.615040px;}
._14{width:43.096320px;}
._15{width:44.461440px;}
._16{width:45.812160px;}
._46{width:47.661120px;}
._55{width:48.974400px;}
._50{width:51.122880px;}
._35{width:52.185600px;}
._4d{width:53.354400px;}
._32{width:54.714240px;}
._31{width:56.211840px;}
._11{width:57.697920px;}
._29{width:58.806720px;}
._3f{width:60.612480px;}
._40{width:61.778880px;}
._61{width:62.968320px;}
._3c{width:64.108800px;}
._4f{width:65.228160px;}
._4c{width:67.208640px;}
._4a{width:68.851200px;}
._1b{width:70.464960px;}
._19{width:71.766720px;}
._1a{width:73.621440px;}
._54{width:74.626560px;}
._33{width:75.712320px;}
._41{width:77.919840px;}
._45{width:78.960960px;}
._44{width:80.415360px;}
._2b{width:81.780480px;}
._34{width:83.067840px;}
._23{width:84.528000px;}
._47{width:86.212800px;}
._43{width:87.782400px;}
._1f{width:89.599680px;}
._3b{width:91.584000px;}
._22{width:93.173760px;}
._4b{width:94.420800px;}
._59{width:95.886720px;}
._3d{width:97.580160px;}
._3e{width:99.031680px;}
._39{width:100.725120px;}
._3a{width:102.049920px;}
._53{width:103.668480px;}
._5c{width:112.011840px;}
._1e{width:113.601600px;}
._57{width:115.165440px;}
._56{width:116.383680px;}
._49{width:117.443520px;}
._48{width:118.454160px;}
._52{width:120.188160px;}
._4e{width:129.388800px;}
._5e{width:131.160960px;}
._5f{width:134.015040px;}
._60{width:135.146880px;}
._5d{width:141.568320px;}
._5a{width:144.780000px;}
._5b{width:146.802240px;}
._30{width:149.544000px;}
._2f{width:151.401600px;}
._28{width:154.875840px;}
._58{width:162.227520px;}
._1c{width:170.012160px;}
._2c{width:178.625280px;}
._69{width:180.440640px;}
._68{width:181.463040px;}
._26{width:190.783200px;}
._65{width:194.120640px;}
._51{width:195.716160px;}
._27{width:197.745600px;}
._4{width:199.596000px;}
._63{width:238.227840px;}
._62{width:272.186400px;}
._67{width:302.999040px;}
._66{width:330.073920px;}
._64{width:703.733760px;}
._6a{width:847.896000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1b{bottom:1.425000px;}
.y13{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y18{bottom:26.625000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y17{bottom:44.985000px;}
.y1{bottom:51.120000px;}
.y16{bottom:68.055000px;}
.y42{bottom:75.240000px;}
.y15{bottom:92.895000px;}
.y3c{bottom:127.836000px;}
.y7d{bottom:133.956000px;}
.y6d{bottom:134.316000px;}
.y3b{bottom:152.310000px;}
.y6c{bottom:158.790000px;}
.y3a{bottom:177.150000px;}
.y72{bottom:183.270000px;}
.y6b{bottom:183.630000px;}
.y39{bottom:202.035000px;}
.y71{bottom:207.795000px;}
.y6a{bottom:208.155000px;}
.y38{bottom:226.515000px;}
.y69{bottom:232.995000px;}
.y37{bottom:251.355000px;}
.y68{bottom:257.475000px;}
.y36{bottom:275.835000px;}
.y83{bottom:281.955000px;}
.y67{bottom:282.315000px;}
.y35{bottom:300.675000px;}
.y66{bottom:306.795000px;}
.y34{bottom:325.155000px;}
.y75{bottom:331.305000px;}
.y65{bottom:331.665000px;}
.y33{bottom:350.025000px;}
.y70{bottom:355.785000px;}
.y64{bottom:356.145000px;}
.y32{bottom:374.505000px;}
.y6f{bottom:380.625000px;}
.y63{bottom:380.985000px;}
.y31{bottom:399.345000px;}
.y7c{bottom:405.105000px;}
.y62{bottom:405.465000px;}
.y30{bottom:423.825000px;}
.y7b{bottom:429.945000px;}
.y61{bottom:430.305000px;}
.y2f{bottom:448.665000px;}
.y60{bottom:454.830000px;}
.y2e{bottom:473.190000px;}
.y82{bottom:479.310000px;}
.y5f{bottom:479.670000px;}
.y3f{bottom:497.670000px;}
.y2d{bottom:498.030000px;}
.y81{bottom:503.790000px;}
.y5e{bottom:504.150000px;}
.y3e{bottom:522.150000px;}
.y2c{bottom:522.510000px;}
.y5d{bottom:528.990000px;}
.y2b{bottom:547.350000px;}
.y5c{bottom:553.110000px;}
.y6e{bottom:553.470000px;}
.y2a{bottom:571.470000px;}
.y3d{bottom:571.830000px;}
.y88{bottom:577.980000px;}
.y5b{bottom:578.340000px;}
.y29{bottom:596.700000px;}
.y7a{bottom:602.460000px;}
.y5a{bottom:602.820000px;}
.y28{bottom:620.100000px;}
.y59{bottom:627.660000px;}
.y27{bottom:647.100000px;}
.y85{bottom:651.780000px;}
.y58{bottom:652.140000px;}
.y26{bottom:668.700000px;}
.y57{bottom:676.980000px;}
.y25{bottom:690.660000px;}
.y79{bottom:701.130000px;}
.y56{bottom:701.490000px;}
.y24{bottom:712.650000px;}
.y78{bottom:725.970000px;}
.y55{bottom:726.330000px;}
.y23{bottom:734.250000px;}
.y74{bottom:750.450000px;}
.y54{bottom:750.810000px;}
.y22{bottom:756.210000px;}
.y73{bottom:775.290000px;}
.y53{bottom:775.650000px;}
.y21{bottom:777.810000px;}
.y20{bottom:799.770000px;}
.y52{bottom:800.130000px;}
.y1f{bottom:821.730000px;}
.y51{bottom:824.970000px;}
.y1e{bottom:843.375000px;}
.y80{bottom:849.135000px;}
.y50{bottom:849.495000px;}
.y1d{bottom:864.975000px;}
.y7f{bottom:873.975000px;}
.y4f{bottom:874.335000px;}
.y1c{bottom:884.415000px;}
.y1a{bottom:892.710000px;}
.y4e{bottom:899.175000px;}
.y14{bottom:899.910000px;}
.y19{bottom:903.893143px;}
.y4d{bottom:923.655000px;}
.y4c{bottom:948.495000px;}
.y7e{bottom:972.645000px;}
.y4b{bottom:973.005000px;}
.y86{bottom:997.485000px;}
.y4a{bottom:997.845000px;}
.y12{bottom:1018.365000px;}
.y84{bottom:1021.965000px;}
.y49{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.y48{bottom:1047.165000px;}
.y77{bottom:1071.285000px;}
.y47{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y76{bottom:1096.170000px;}
.y46{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.y45{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y87{bottom:1145.490000px;}
.y44{bottom:1145.850000px;}
.y4{bottom:1156.650000px;}
.y43{bottom:1170.330000px;}
.y41{bottom:1187.250000px;}
.y40{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.857187px;}
.h17{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1c{height:30.480469px;}
.h18{height:36.861328px;}
.h1f{height:47.901094px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h9{height:56.084062px;}
.h1d{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h15{height:63.984375px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1e{height:68.084282px;}
.h6{height:70.714687px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.350000px;}
.h12{height:118.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.x15{left:64.825500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x21{left:117.756000px;}
.x1c{left:123.516000px;}
.x1d{left:150.555000px;}
.x19{left:162.075000px;}
.x12{left:165.295500px;}
.x4{left:168.930000px;}
.x6{left:208.860000px;}
.x16{left:213.940500px;}
.x14{left:215.020500px;}
.x13{left:281.980500px;}
.x17{left:325.030998px;}
.x11{left:335.650500px;}
.xa{left:445.860000px;}
.x1a{left:473.580000px;}
.x1f{left:489.090000px;}
.x1e{left:516.090000px;}
.x1b{left:527.610000px;}
.x7{left:722.445000px;}
.x20{left:761.370000px;}
.x1{left:773.610000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.824000pt;}
.lsf{letter-spacing:-1.552000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.429867pt;}
.lse{letter-spacing:-0.373867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.135467pt;}
.lsc{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls10{letter-spacing:7.962027pt;}
.ls6{letter-spacing:36.111360pt;}
.ls5{letter-spacing:36.122027pt;}
.ls8{letter-spacing:78.720000pt;}
.ws1{word-spacing:-74.240000pt;}
.wse{word-spacing:-58.880000pt;}
.ws4{word-spacing:-53.760000pt;}
.wsd{word-spacing:-20.933013pt;}
.ws0{word-spacing:-16.898560pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.902933pt;}
.wsb{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws10{word-spacing:-13.984000pt;}
.wsa{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.168000pt;}
.ws2{word-spacing:-13.022933pt;}
.wsc{word-spacing:-12.896000pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-3.448320pt;}
._3{margin-left:-2.439680pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._38{width:3.328000pt;}
._c{width:4.239360pt;}
._b{width:5.240320pt;}
._a{width:6.444373pt;}
._9{width:7.713280pt;}
._13{width:8.678400pt;}
._6{width:10.457600pt;}
._7{width:11.706453pt;}
._8{width:12.988160pt;}
._20{width:16.350720pt;}
._36{width:17.392640pt;}
._5{width:18.429440pt;}
._37{width:19.338240pt;}
._12{width:20.375040pt;}
._21{width:21.670827pt;}
._17{width:22.786560pt;}
._18{width:24.494080pt;}
._2a{width:25.507840pt;}
._24{width:26.944000pt;}
._25{width:27.993600pt;}
._42{width:28.968960pt;}
._e{width:30.077440pt;}
._d{width:31.360000pt;}
._10{width:33.182720pt;}
._f{width:34.091520pt;}
._2e{width:35.773440pt;}
._2d{width:36.991147pt;}
._14{width:38.307840pt;}
._15{width:39.521280pt;}
._16{width:40.721920pt;}
._46{width:42.365440pt;}
._55{width:43.532800pt;}
._50{width:45.442560pt;}
._35{width:46.387200pt;}
._4d{width:47.426133pt;}
._32{width:48.634880pt;}
._31{width:49.966080pt;}
._11{width:51.287040pt;}
._29{width:52.272640pt;}
._3f{width:53.877760pt;}
._40{width:54.914560pt;}
._61{width:55.971840pt;}
._3c{width:56.985600pt;}
._4f{width:57.980587pt;}
._4c{width:59.741013pt;}
._4a{width:61.201067pt;}
._1b{width:62.635520pt;}
._19{width:63.792640pt;}
._1a{width:65.441280pt;}
._54{width:66.334720pt;}
._33{width:67.299840pt;}
._41{width:69.262080pt;}
._45{width:70.187520pt;}
._44{width:71.480320pt;}
._2b{width:72.693760pt;}
._34{width:73.838080pt;}
._23{width:75.136000pt;}
._47{width:76.633600pt;}
._43{width:78.028800pt;}
._1f{width:79.644160pt;}
._3b{width:81.408000pt;}
._22{width:82.821120pt;}
._4b{width:83.929600pt;}
._59{width:85.232640pt;}
._3d{width:86.737920pt;}
._3e{width:88.028160pt;}
._39{width:89.533440pt;}
._3a{width:90.711040pt;}
._53{width:92.149760pt;}
._5c{width:99.566080pt;}
._1e{width:100.979200pt;}
._57{width:102.369280pt;}
._56{width:103.452160pt;}
._49{width:104.394240pt;}
._48{width:105.292587pt;}
._52{width:106.833920pt;}
._4e{width:115.012267pt;}
._5e{width:116.587520pt;}
._5f{width:119.124480pt;}
._60{width:120.130560pt;}
._5d{width:125.838507pt;}
._5a{width:128.693333pt;}
._5b{width:130.490880pt;}
._30{width:132.928000pt;}
._2f{width:134.579200pt;}
._28{width:137.667413pt;}
._58{width:144.202240pt;}
._1c{width:151.121920pt;}
._2c{width:158.778027pt;}
._69{width:160.391680pt;}
._68{width:161.300480pt;}
._26{width:169.585067pt;}
._65{width:172.551680pt;}
._51{width:173.969920pt;}
._27{width:175.773867pt;}
._4{width:177.418667pt;}
._63{width:211.758080pt;}
._62{width:241.943467pt;}
._67{width:269.332480pt;}
._66{width:293.399040pt;}
._64{width:625.541120pt;}
._6a{width:753.685333pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1b{bottom:1.266667pt;}
.y13{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y18{bottom:23.666667pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y17{bottom:39.986667pt;}
.y1{bottom:45.440000pt;}
.y16{bottom:60.493333pt;}
.y42{bottom:66.880000pt;}
.y15{bottom:82.573333pt;}
.y3c{bottom:113.632000pt;}
.y7d{bottom:119.072000pt;}
.y6d{bottom:119.392000pt;}
.y3b{bottom:135.386667pt;}
.y6c{bottom:141.146667pt;}
.y3a{bottom:157.466667pt;}
.y72{bottom:162.906667pt;}
.y6b{bottom:163.226667pt;}
.y39{bottom:179.586667pt;}
.y71{bottom:184.706667pt;}
.y6a{bottom:185.026667pt;}
.y38{bottom:201.346667pt;}
.y69{bottom:207.106667pt;}
.y37{bottom:223.426667pt;}
.y68{bottom:228.866667pt;}
.y36{bottom:245.186667pt;}
.y83{bottom:250.626667pt;}
.y67{bottom:250.946667pt;}
.y35{bottom:267.266667pt;}
.y66{bottom:272.706667pt;}
.y34{bottom:289.026667pt;}
.y75{bottom:294.493333pt;}
.y65{bottom:294.813333pt;}
.y33{bottom:311.133333pt;}
.y70{bottom:316.253333pt;}
.y64{bottom:316.573333pt;}
.y32{bottom:332.893333pt;}
.y6f{bottom:338.333333pt;}
.y63{bottom:338.653333pt;}
.y31{bottom:354.973333pt;}
.y7c{bottom:360.093333pt;}
.y62{bottom:360.413333pt;}
.y30{bottom:376.733333pt;}
.y7b{bottom:382.173333pt;}
.y61{bottom:382.493333pt;}
.y2f{bottom:398.813333pt;}
.y60{bottom:404.293333pt;}
.y2e{bottom:420.613333pt;}
.y82{bottom:426.053333pt;}
.y5f{bottom:426.373333pt;}
.y3f{bottom:442.373333pt;}
.y2d{bottom:442.693333pt;}
.y81{bottom:447.813333pt;}
.y5e{bottom:448.133333pt;}
.y3e{bottom:464.133333pt;}
.y2c{bottom:464.453333pt;}
.y5d{bottom:470.213333pt;}
.y2b{bottom:486.533333pt;}
.y5c{bottom:491.653333pt;}
.y6e{bottom:491.973333pt;}
.y2a{bottom:507.973333pt;}
.y3d{bottom:508.293333pt;}
.y88{bottom:513.760000pt;}
.y5b{bottom:514.080000pt;}
.y29{bottom:530.400000pt;}
.y7a{bottom:535.520000pt;}
.y5a{bottom:535.840000pt;}
.y28{bottom:551.200000pt;}
.y59{bottom:557.920000pt;}
.y27{bottom:575.200000pt;}
.y85{bottom:579.360000pt;}
.y58{bottom:579.680000pt;}
.y26{bottom:594.400000pt;}
.y57{bottom:601.760000pt;}
.y25{bottom:613.920000pt;}
.y79{bottom:623.226667pt;}
.y56{bottom:623.546667pt;}
.y24{bottom:633.466667pt;}
.y78{bottom:645.306667pt;}
.y55{bottom:645.626667pt;}
.y23{bottom:652.666667pt;}
.y74{bottom:667.066667pt;}
.y54{bottom:667.386667pt;}
.y22{bottom:672.186667pt;}
.y73{bottom:689.146667pt;}
.y53{bottom:689.466667pt;}
.y21{bottom:691.386667pt;}
.y20{bottom:710.906667pt;}
.y52{bottom:711.226667pt;}
.y1f{bottom:730.426667pt;}
.y51{bottom:733.306667pt;}
.y1e{bottom:749.666667pt;}
.y80{bottom:754.786667pt;}
.y50{bottom:755.106667pt;}
.y1d{bottom:768.866667pt;}
.y7f{bottom:776.866667pt;}
.y4f{bottom:777.186667pt;}
.y1c{bottom:786.146667pt;}
.y1a{bottom:793.520000pt;}
.y4e{bottom:799.266667pt;}
.y14{bottom:799.920000pt;}
.y19{bottom:803.460571pt;}
.y4d{bottom:821.026667pt;}
.y4c{bottom:843.106667pt;}
.y7e{bottom:864.573333pt;}
.y4b{bottom:864.893333pt;}
.y86{bottom:886.653333pt;}
.y4a{bottom:886.973333pt;}
.y12{bottom:905.213333pt;}
.y84{bottom:908.413333pt;}
.y49{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.y48{bottom:930.813333pt;}
.y77{bottom:952.253333pt;}
.y47{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y76{bottom:974.373333pt;}
.y46{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.y45{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y87{bottom:1018.213333pt;}
.y44{bottom:1018.533333pt;}
.y4{bottom:1028.133333pt;}
.y43{bottom:1040.293333pt;}
.y41{bottom:1055.333333pt;}
.y40{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:12.317500pt;}
.h17{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1c{height:27.093750pt;}
.h18{height:32.765625pt;}
.h1f{height:42.578750pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h9{height:49.852500pt;}
.h1d{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h15{height:56.875000pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h6{height:62.857500pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:91.866667pt;}
.h12{height:105.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.x15{left:57.622667pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x21{left:104.672000pt;}
.x1c{left:109.792000pt;}
.x1d{left:133.826667pt;}
.x19{left:144.066667pt;}
.x12{left:146.929333pt;}
.x4{left:150.160000pt;}
.x6{left:185.653333pt;}
.x16{left:190.169333pt;}
.x14{left:191.129333pt;}
.x13{left:250.649333pt;}
.x17{left:288.916443pt;}
.x11{left:298.356000pt;}
.xa{left:396.320000pt;}
.x1a{left:420.960000pt;}
.x1f{left:434.746667pt;}
.x1e{left:458.746667pt;}
.x1b{left:468.986667pt;}
.x7{left:642.173333pt;}
.x20{left:676.773333pt;}
.x1{left:687.653333pt;}
}




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