
    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_6c5e158b8417308f1f87e635.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171000;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_1e39a8bb60e407d908c2347f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.166000;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_45f4c0070adc9103cfe5a5ad.woff')format("woff");}.ff3{font-family:ff3;line-height:0.772949;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cdb686cbdfbf63a5e01ad112.woff')format("woff");}.ff5{font-family:ff5;line-height:1.171000;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_b59111086fac7375ee88879b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.166000;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_d70b859a2b8c7174a6bfcd90.woff')format("woff");}.ff7{font-family:ff7;line-height:1.048000;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_9b2ab4e76c18a8a8b803beea.woff')format("woff");}.ff8{font-family:ff8;line-height:0.974121;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_198e0f11d74b05e39bbf79fb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.898926;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_b6e6d52398e80b10f7161447.woff')format("woff");}.ffa{font-family:ffa;line-height:1.196000;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_c263c95960e3991c22f59aa5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.196000;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;}
.ls1c{letter-spacing:-1.074000px;}
.ls2d{letter-spacing:-0.490800px;}
.ls16{letter-spacing:-0.471000px;}
.ls31{letter-spacing:-0.359400px;}
.ls20{letter-spacing:-0.355800px;}
.ls27{letter-spacing:-0.353400px;}
.ls2a{letter-spacing:-0.348000px;}
.ls28{letter-spacing:-0.285600px;}
.ls22{letter-spacing:-0.280200px;}
.ls29{letter-spacing:-0.196800px;}
.ls21{letter-spacing:-0.178800px;}
.ls23{letter-spacing:-0.151788px;}
.ls32{letter-spacing:-0.147600px;}
.ls18{letter-spacing:-0.139800px;}
.ls1d{letter-spacing:-0.126600px;}
.ls34{letter-spacing:-0.122400px;}
.ls2e{letter-spacing:-0.115200px;}
.ls1a{letter-spacing:-0.114600px;}
.ls26{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.078000px;}
.ls17{letter-spacing:-0.046800px;}
.ls13{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.034560px;}
.ls1{letter-spacing:0.046080px;}
.ls0{letter-spacing:0.050700px;}
.ls12{letter-spacing:0.071280px;}
.ls2f{letter-spacing:0.071400px;}
.ls24{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.216600px;}
.lsf{letter-spacing:0.216720px;}
.ls2c{letter-spacing:0.229200px;}
.ls1e{letter-spacing:0.238800px;}
.ls4{letter-spacing:0.251400px;}
.ls11{letter-spacing:0.272880px;}
.ls19{letter-spacing:0.274800px;}
.ls25{letter-spacing:0.307200px;}
.ls2b{letter-spacing:0.310800px;}
.ls14{letter-spacing:0.317400px;}
.ls7{letter-spacing:0.338400px;}
.ls33{letter-spacing:0.356400px;}
.ls1b{letter-spacing:0.360600px;}
.ls9{letter-spacing:0.417024px;}
.lsa{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.766080px;}
.ls5{letter-spacing:5.328000px;}
.lsd{letter-spacing:8.352000px;}
.ls10{letter-spacing:16.272000px;}
.ls6{letter-spacing:19.728000px;}
.lsb{letter-spacing:24.739200px;}
.ls3{letter-spacing:91.103760px;}
.lse{letter-spacing:101.952000px;}
.ls2{letter-spacing:144.684000px;}
.lsc{letter-spacing:148.716000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-202.636726px;}
.ws0{word-spacing:-84.031500px;}
.ws1{word-spacing:-83.952000px;}
.ws20{word-spacing:-53.184000px;}
.ws1f{word-spacing:-47.952000px;}
.ws21{word-spacing:-47.845200px;}
.ws22{word-spacing:-47.598600px;}
.ws17{word-spacing:-41.119200px;}
.ws13{word-spacing:-41.026800px;}
.ws7{word-spacing:-41.003400px;}
.ws1b{word-spacing:-40.990800px;}
.ws1c{word-spacing:-40.786560px;}
.ws8{word-spacing:-40.752000px;}
.ws11{word-spacing:-40.705200px;}
.ws19{word-spacing:-40.654200px;}
.ws14{word-spacing:-40.637400px;}
.ws12{word-spacing:-40.612200px;}
.ws1d{word-spacing:-40.425000px;}
.ws10{word-spacing:-40.281000px;}
.ws18{word-spacing:-39.706800px;}
.ws25{word-spacing:-38.758800px;}
.ws26{word-spacing:-38.677200px;}
.ws2b{word-spacing:-38.664600px;}
.ws2a{word-spacing:-38.519400px;}
.ws2{word-spacing:-38.448000px;}
.ws2d{word-spacing:-38.300400px;}
.ws2c{word-spacing:-38.088600px;}
.ws28{word-spacing:-37.957200px;}
.ws2e{word-spacing:-37.266480px;}
.ws27{word-spacing:-36.910080px;}
.ws29{word-spacing:-36.794880px;}
.ws23{word-spacing:-2.612160px;}
.ws34{word-spacing:-1.580640px;}
.wsc{word-spacing:-1.488240px;}
.ws24{word-spacing:-0.804240px;}
.ws2f{word-spacing:-0.781920px;}
.ws9{word-spacing:-0.685680px;}
.ws3{word-spacing:-0.007200px;}
.ws35{word-spacing:0.000000px;}
.ws1a{word-spacing:5.573520px;}
.wsf{word-spacing:17.282160px;}
.ws6{word-spacing:50.351760px;}
.ws5{word-spacing:50.436360px;}
.ws4{word-spacing:51.233760px;}
.wsd{word-spacing:55.731600px;}
.wse{word-spacing:56.693520px;}
.ws15{word-spacing:59.061960px;}
.ws16{word-spacing:60.057360px;}
.ws30{word-spacing:90.804240px;}
.ws33{word-spacing:92.567520px;}
.ws31{word-spacing:92.892960px;}
.ws32{word-spacing:93.114720px;}
.wsb{word-spacing:329.711760px;}
.wsa{word-spacing:330.779520px;}
._1e{margin-left:-16.674192px;}
._0{margin-left:-10.913760px;}
._5{margin-left:-9.237888px;}
._1{margin-left:-7.555680px;}
._6{margin-left:-5.037120px;}
._4{margin-left:-3.777840px;}
._3{margin-left:-2.098800px;}
._12{margin-left:-1.044960px;}
._2{width:1.679040px;}
._8{width:3.170880px;}
._7{width:4.739040px;}
._10{width:5.875680px;}
._26{width:8.705520px;}
._1a{width:14.387040px;}
._1b{width:15.598560px;}
._2a{width:16.649280px;}
._e{width:18.287040px;}
._13{width:20.240640px;}
._2f{width:21.413520px;}
._1d{width:24.212016px;}
._1c{width:25.326432px;}
._31{width:38.149920px;}
._a{width:40.425120px;}
._9{width:41.516640px;}
._11{width:45.290160px;}
._19{width:46.431600px;}
._21{width:48.317520px;}
._1f{width:49.600800px;}
._f{width:50.867520px;}
._17{width:52.181280px;}
._c{width:56.707200px;}
._d{width:58.370400px;}
._14{width:61.094160px;}
._2c{width:76.533840px;}
._2d{width:77.656800px;}
._2e{width:78.729360px;}
._25{width:81.148320px;}
._24{width:82.175520px;}
._20{width:89.677440px;}
._2b{width:91.418880px;}
._18{width:92.560560px;}
._b{width:97.170960px;}
._15{width:100.741440px;}
._16{width:101.896080px;}
._28{width:105.282000px;}
._27{width:106.296960px;}
._30{width:130.558080px;}
._22{width:264.043440px;}
._23{width:301.893600px;}
._29{width:492.933360px;}
.fc4{color:transparent;}
.fc3{color:rgb(1,65,111);}
.fc2{color:rgb(7,65,110);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:7.200000px;}
.fs2{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs8{font-size:202.788514px;}
.fs5{font-size:203.760000px;}
.fs7{font-size:203.904000px;}
.fs6{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.fsa{font-size:264.384000px;}
.fs0{font-size:419.760000px;}
.fs1{font-size:419.904000px;}
.y0{bottom:0.000000px;}
.y8{bottom:28.260000px;}
.y4d{bottom:81.468000px;}
.y4c{bottom:139.068000px;}
.y4b{bottom:214.665000px;}
.y4a{bottom:272.265000px;}
.y49{bottom:329.865000px;}
.y48{bottom:405.465000px;}
.y47{bottom:463.065000px;}
.y46{bottom:520.665000px;}
.y45{bottom:596.265000px;}
.y44{bottom:653.865000px;}
.y43{bottom:741.705000px;}
.y42{bottom:991.650000px;}
.y14{bottom:999.030000px;}
.y41{bottom:1049.250000px;}
.y13{bottom:1060.230000px;}
.y40{bottom:1106.850000px;}
.y12{bottom:1121.430000px;}
.y3f{bottom:1164.450000px;}
.y11{bottom:1182.630000px;}
.y3e{bottom:1222.050000px;}
.y10{bottom:1243.830000px;}
.y3d{bottom:1279.650000px;}
.y35{bottom:1288.290000px;}
.yf{bottom:1305.030000px;}
.y3c{bottom:1337.250000px;}
.ye{bottom:1366.230000px;}
.y3b{bottom:1394.850000px;}
.y34{bottom:1422.285000px;}
.yd{bottom:1427.430000px;}
.y3a{bottom:1452.450000px;}
.y24{bottom:1499.610000px;}
.y39{bottom:1510.050000px;}
.y33{bottom:1551.135000px;}
.y23{bottom:1560.810000px;}
.y38{bottom:1567.650000px;}
.y22{bottom:1622.055000px;}
.y37{bottom:1625.250000px;}
.y21{bottom:1683.255000px;}
.y36{bottom:1683.390000px;}
.y32{bottom:1684.230000px;}
.y2f{bottom:1810.410000px;}
.y30{bottom:3027.810000px;}
.y31{bottom:3035.235000px;}
.y20{bottom:3128.430000px;}
.y1f{bottom:3189.630000px;}
.y1e{bottom:3250.830000px;}
.y2c{bottom:3265.410000px;}
.y1d{bottom:3312.030000px;}
.y2b{bottom:3338.715000px;}
.y1c{bottom:3373.230000px;}
.y2a{bottom:3411.795000px;}
.y1b{bottom:3434.475000px;}
.y29{bottom:3485.055000px;}
.y1a{bottom:3495.675000px;}
.y19{bottom:3556.875000px;}
.y28{bottom:3558.135000px;}
.y18{bottom:3618.075000px;}
.y27{bottom:3625.455000px;}
.y2e{bottom:3632.910000px;}
.y17{bottom:3679.275000px;}
.y26{bottom:3683.055000px;}
.y16{bottom:3740.475000px;}
.y25{bottom:3740.655000px;}
.y15{bottom:3867.585000px;}
.y2d{bottom:3868.125000px;}
.y6{bottom:4164.690000px;}
.y5{bottom:4222.290000px;}
.y4{bottom:4279.890000px;}
.y3{bottom:4427.820000px;}
.y2{bottom:4553.850000px;}
.y1{bottom:4679.850000px;}
.yc{bottom:4859.820000px;}
.ya{bottom:5024.340000px;}
.yb{bottom:5027.040000px;}
.y7{bottom:5049.900000px;}
.y9{bottom:5052.420000px;}
.h7{height:3.060000px;}
.h6{height:5.498437px;}
.h5{height:5.579850px;}
.h9{height:28.440000px;}
.h8{height:29.880000px;}
.he{height:163.788480px;}
.h4{height:168.017760px;}
.h13{height:168.143616px;}
.h11{height:175.515120px;}
.h10{height:175.646592px;}
.hf{height:175.855664px;}
.hb{height:178.086240px;}
.hd{height:178.212096px;}
.hc{height:205.234560px;}
.ha{height:226.189440px;}
.h12{height:231.071616px;}
.h2{height:359.314560px;}
.h3{height:359.437824px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:22.680000px;}
.w4{width:29.880000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x3{left:-7.200107px;}
.x0{left:0.000000px;}
.x4{left:18.360000px;}
.xe{left:22.859947px;}
.x7{left:23.867947px;}
.x8{left:33.479947px;}
.x13{left:58.931947px;}
.x14{left:112.931947px;}
.x1{left:120.491947px;}
.x2{left:129.383947px;}
.x12{left:1504.289947px;}
.x11{left:1506.779947px;}
.xd{left:2037.524947px;}
.x15{left:2182.214947px;}
.x5{left:2424.749947px;}
.x10{left:2460.314947px;}
.x6{left:2478.749947px;}
.xf{left:2606.114947px;}
.xc{left:2719.334947px;}
.x9{left:2825.894947px;}
.xa{left:2844.254947px;}
.xb{left:3285.464947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.954667pt;}
.ls2d{letter-spacing:-0.436267pt;}
.ls16{letter-spacing:-0.418667pt;}
.ls31{letter-spacing:-0.319467pt;}
.ls20{letter-spacing:-0.316267pt;}
.ls27{letter-spacing:-0.314133pt;}
.ls2a{letter-spacing:-0.309333pt;}
.ls28{letter-spacing:-0.253867pt;}
.ls22{letter-spacing:-0.249067pt;}
.ls29{letter-spacing:-0.174933pt;}
.ls21{letter-spacing:-0.158933pt;}
.ls23{letter-spacing:-0.134922pt;}
.ls32{letter-spacing:-0.131200pt;}
.ls18{letter-spacing:-0.124267pt;}
.ls1d{letter-spacing:-0.112533pt;}
.ls34{letter-spacing:-0.108800pt;}
.ls2e{letter-spacing:-0.102400pt;}
.ls1a{letter-spacing:-0.101867pt;}
.ls26{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.069333pt;}
.ls17{letter-spacing:-0.041600pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.030720pt;}
.ls1{letter-spacing:0.040960pt;}
.ls0{letter-spacing:0.045067pt;}
.ls12{letter-spacing:0.063360pt;}
.ls2f{letter-spacing:0.063467pt;}
.ls24{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.192533pt;}
.lsf{letter-spacing:0.192640pt;}
.ls2c{letter-spacing:0.203733pt;}
.ls1e{letter-spacing:0.212267pt;}
.ls4{letter-spacing:0.223467pt;}
.ls11{letter-spacing:0.242560pt;}
.ls19{letter-spacing:0.244267pt;}
.ls25{letter-spacing:0.273067pt;}
.ls2b{letter-spacing:0.276267pt;}
.ls14{letter-spacing:0.282133pt;}
.ls7{letter-spacing:0.300800pt;}
.ls33{letter-spacing:0.316800pt;}
.ls1b{letter-spacing:0.320533pt;}
.ls9{letter-spacing:0.370688pt;}
.lsa{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.680960pt;}
.ls5{letter-spacing:4.736000pt;}
.lsd{letter-spacing:7.424000pt;}
.ls10{letter-spacing:14.464000pt;}
.ls6{letter-spacing:17.536000pt;}
.lsb{letter-spacing:21.990400pt;}
.ls3{letter-spacing:80.981120pt;}
.lse{letter-spacing:90.624000pt;}
.ls2{letter-spacing:128.608000pt;}
.lsc{letter-spacing:132.192000pt;}
.ws1e{word-spacing:-180.121534pt;}
.ws0{word-spacing:-74.694667pt;}
.ws1{word-spacing:-74.624000pt;}
.ws20{word-spacing:-47.274667pt;}
.ws1f{word-spacing:-42.624000pt;}
.ws21{word-spacing:-42.529067pt;}
.ws22{word-spacing:-42.309867pt;}
.ws17{word-spacing:-36.550400pt;}
.ws13{word-spacing:-36.468267pt;}
.ws7{word-spacing:-36.447467pt;}
.ws1b{word-spacing:-36.436267pt;}
.ws1c{word-spacing:-36.254720pt;}
.ws8{word-spacing:-36.224000pt;}
.ws11{word-spacing:-36.182400pt;}
.ws19{word-spacing:-36.137067pt;}
.ws14{word-spacing:-36.122133pt;}
.ws12{word-spacing:-36.099733pt;}
.ws1d{word-spacing:-35.933333pt;}
.ws10{word-spacing:-35.805333pt;}
.ws18{word-spacing:-35.294933pt;}
.ws25{word-spacing:-34.452267pt;}
.ws26{word-spacing:-34.379733pt;}
.ws2b{word-spacing:-34.368533pt;}
.ws2a{word-spacing:-34.239467pt;}
.ws2{word-spacing:-34.176000pt;}
.ws2d{word-spacing:-34.044800pt;}
.ws2c{word-spacing:-33.856533pt;}
.ws28{word-spacing:-33.739733pt;}
.ws2e{word-spacing:-33.125760pt;}
.ws27{word-spacing:-32.808960pt;}
.ws29{word-spacing:-32.706560pt;}
.ws23{word-spacing:-2.321920pt;}
.ws34{word-spacing:-1.405013pt;}
.wsc{word-spacing:-1.322880pt;}
.ws24{word-spacing:-0.714880pt;}
.ws2f{word-spacing:-0.695040pt;}
.ws9{word-spacing:-0.609493pt;}
.ws3{word-spacing:-0.006400pt;}
.ws35{word-spacing:0.000000pt;}
.ws1a{word-spacing:4.954240pt;}
.wsf{word-spacing:15.361920pt;}
.ws6{word-spacing:44.757120pt;}
.ws5{word-spacing:44.832320pt;}
.ws4{word-spacing:45.541120pt;}
.wsd{word-spacing:49.539200pt;}
.wse{word-spacing:50.394240pt;}
.ws15{word-spacing:52.499520pt;}
.ws16{word-spacing:53.384320pt;}
.ws30{word-spacing:80.714880pt;}
.ws33{word-spacing:82.282240pt;}
.ws31{word-spacing:82.571520pt;}
.ws32{word-spacing:82.768640pt;}
.wsb{word-spacing:293.077120pt;}
.wsa{word-spacing:294.026240pt;}
._1e{margin-left:-14.821504pt;}
._0{margin-left:-9.701120pt;}
._5{margin-left:-8.211456pt;}
._1{margin-left:-6.716160pt;}
._6{margin-left:-4.477440pt;}
._4{margin-left:-3.358080pt;}
._3{margin-left:-1.865600pt;}
._12{margin-left:-0.928853pt;}
._2{width:1.492480pt;}
._8{width:2.818560pt;}
._7{width:4.212480pt;}
._10{width:5.222827pt;}
._26{width:7.738240pt;}
._1a{width:12.788480pt;}
._1b{width:13.865387pt;}
._2a{width:14.799360pt;}
._e{width:16.255147pt;}
._13{width:17.991680pt;}
._2f{width:19.034240pt;}
._1d{width:21.521792pt;}
._1c{width:22.512384pt;}
._31{width:33.911040pt;}
._a{width:35.933440pt;}
._9{width:36.903680pt;}
._11{width:40.257920pt;}
._19{width:41.272533pt;}
._21{width:42.948907pt;}
._1f{width:44.089600pt;}
._f{width:45.215573pt;}
._17{width:46.383360pt;}
._c{width:50.406400pt;}
._d{width:51.884800pt;}
._14{width:54.305920pt;}
._2c{width:68.030080pt;}
._2d{width:69.028267pt;}
._2e{width:69.981653pt;}
._25{width:72.131840pt;}
._24{width:73.044907pt;}
._20{width:79.713280pt;}
._2b{width:81.261227pt;}
._18{width:82.276053pt;}
._b{width:86.374187pt;}
._15{width:89.547947pt;}
._16{width:90.574293pt;}
._28{width:93.584000pt;}
._27{width:94.486187pt;}
._30{width:116.051627pt;}
._22{width:234.705280pt;}
._23{width:268.349867pt;}
._29{width:438.162987pt;}
.fs3{font-size:6.400000pt;}
.fs2{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs8{font-size:180.256457pt;}
.fs5{font-size:181.120000pt;}
.fs7{font-size:181.248000pt;}
.fs6{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.fsa{font-size:235.008000pt;}
.fs0{font-size:373.120000pt;}
.fs1{font-size:373.248000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:25.120000pt;}
.y4d{bottom:72.416000pt;}
.y4c{bottom:123.616000pt;}
.y4b{bottom:190.813333pt;}
.y4a{bottom:242.013333pt;}
.y49{bottom:293.213333pt;}
.y48{bottom:360.413333pt;}
.y47{bottom:411.613333pt;}
.y46{bottom:462.813333pt;}
.y45{bottom:530.013333pt;}
.y44{bottom:581.213333pt;}
.y43{bottom:659.293333pt;}
.y42{bottom:881.466667pt;}
.y14{bottom:888.026667pt;}
.y41{bottom:932.666667pt;}
.y13{bottom:942.426667pt;}
.y40{bottom:983.866667pt;}
.y12{bottom:996.826667pt;}
.y3f{bottom:1035.066667pt;}
.y11{bottom:1051.226667pt;}
.y3e{bottom:1086.266667pt;}
.y10{bottom:1105.626667pt;}
.y3d{bottom:1137.466667pt;}
.y35{bottom:1145.146667pt;}
.yf{bottom:1160.026667pt;}
.y3c{bottom:1188.666667pt;}
.ye{bottom:1214.426667pt;}
.y3b{bottom:1239.866667pt;}
.y34{bottom:1264.253333pt;}
.yd{bottom:1268.826667pt;}
.y3a{bottom:1291.066667pt;}
.y24{bottom:1332.986667pt;}
.y39{bottom:1342.266667pt;}
.y33{bottom:1378.786667pt;}
.y23{bottom:1387.386667pt;}
.y38{bottom:1393.466667pt;}
.y22{bottom:1441.826667pt;}
.y37{bottom:1444.666667pt;}
.y21{bottom:1496.226667pt;}
.y36{bottom:1496.346667pt;}
.y32{bottom:1497.093333pt;}
.y2f{bottom:1609.253333pt;}
.y30{bottom:2691.386667pt;}
.y31{bottom:2697.986667pt;}
.y20{bottom:2780.826667pt;}
.y1f{bottom:2835.226667pt;}
.y1e{bottom:2889.626667pt;}
.y2c{bottom:2902.586667pt;}
.y1d{bottom:2944.026667pt;}
.y2b{bottom:2967.746667pt;}
.y1c{bottom:2998.426667pt;}
.y2a{bottom:3032.706667pt;}
.y1b{bottom:3052.866667pt;}
.y29{bottom:3097.826667pt;}
.y1a{bottom:3107.266667pt;}
.y19{bottom:3161.666667pt;}
.y28{bottom:3162.786667pt;}
.y18{bottom:3216.066667pt;}
.y27{bottom:3222.626667pt;}
.y2e{bottom:3229.253333pt;}
.y17{bottom:3270.466667pt;}
.y26{bottom:3273.826667pt;}
.y16{bottom:3324.866667pt;}
.y25{bottom:3325.026667pt;}
.y15{bottom:3437.853333pt;}
.y2d{bottom:3438.333333pt;}
.y6{bottom:3701.946667pt;}
.y5{bottom:3753.146667pt;}
.y4{bottom:3804.346667pt;}
.y3{bottom:3935.840000pt;}
.y2{bottom:4047.866667pt;}
.y1{bottom:4159.866667pt;}
.yc{bottom:4319.840000pt;}
.ya{bottom:4466.080000pt;}
.yb{bottom:4468.480000pt;}
.y7{bottom:4488.800000pt;}
.y9{bottom:4491.040000pt;}
.h7{height:2.720000pt;}
.h6{height:4.887500pt;}
.h5{height:4.959867pt;}
.h9{height:25.280000pt;}
.h8{height:26.560000pt;}
.he{height:145.589760pt;}
.h4{height:149.349120pt;}
.h13{height:149.460992pt;}
.h11{height:156.013440pt;}
.h10{height:156.130304pt;}
.hf{height:156.316146pt;}
.hb{height:158.298880pt;}
.hd{height:158.410752pt;}
.hc{height:182.430720pt;}
.ha{height:201.057280pt;}
.h12{height:205.396992pt;}
.h2{height:319.390720pt;}
.h3{height:319.500288pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:20.160000pt;}
.w4{width:26.560000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x3{left:-6.400095pt;}
.x0{left:0.000000pt;}
.x4{left:16.320000pt;}
.xe{left:20.319953pt;}
.x7{left:21.215953pt;}
.x8{left:29.759953pt;}
.x13{left:52.383953pt;}
.x14{left:100.383953pt;}
.x1{left:107.103953pt;}
.x2{left:115.007953pt;}
.x12{left:1337.146619pt;}
.x11{left:1339.359953pt;}
.xd{left:1811.133286pt;}
.x15{left:1939.746619pt;}
.x5{left:2155.333286pt;}
.x10{left:2186.946619pt;}
.x6{left:2203.333286pt;}
.xf{left:2316.546619pt;}
.xc{left:2417.186619pt;}
.x9{left:2511.906619pt;}
.xa{left:2528.226619pt;}
.xb{left:2920.413286pt;}
}




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