
    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_588aee4adc74361c607f6a2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_f71b83e34c570f2bd7cdfaae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932000;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_12a708163157c2b86ae607a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_d42ab06d82b01932b3ea26e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_66cd84d6c761df06054ee463.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_37e9a09c0ae6ff88ad879ac0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_22bf0f41446a7c23bc0b41f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d5e87707076b41333a44cbd7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e02d8b883bde68d6589612c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.920000;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_e2ae37c626a4e74d446dfbe3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727000;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.236742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236742,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.257776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257776,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);}
.v2{vertical-align:-19.980000px;}
.v4{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:21.978000px;}
.ls13{letter-spacing:-5.148000px;}
.ls7{letter-spacing:-2.247084px;}
.ls12{letter-spacing:-2.014848px;}
.ls4{letter-spacing:-1.504800px;}
.lsa{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.384780px;}
.ls10{letter-spacing:-0.314820px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.716400px;}
.ls9{letter-spacing:3.360000px;}
.lse{letter-spacing:8.640000px;}
.ls0{letter-spacing:11.040000px;}
.ls8{letter-spacing:21.572400px;}
.ls1{letter-spacing:70.538673px;}
.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;}
}
.ws1{word-spacing:-30.848400px;}
.ws46{word-spacing:-30.780000px;}
.ws12{word-spacing:-29.520000px;}
.ws13{word-spacing:-17.622000px;}
.ws17{word-spacing:-16.962000px;}
.ws30{word-spacing:-16.302000px;}
.ws0{word-spacing:-16.038000px;}
.ws18{word-spacing:-15.504000px;}
.ws16{word-spacing:-14.760000px;}
.ws2{word-spacing:-14.616000px;}
.ws3{word-spacing:-14.184000px;}
.ws43{word-spacing:-13.878000px;}
.ws31{word-spacing:-10.273626px;}
.ws32{word-spacing:-9.888846px;}
.ws45{word-spacing:-9.734934px;}
.ws2f{word-spacing:-9.339660px;}
.ws44{word-spacing:-8.405694px;}
.ws57{word-spacing:-5.616000px;}
.wsf{word-spacing:-5.520000px;}
.ws23{word-spacing:-4.950000px;}
.ws3b{word-spacing:-3.168000px;}
.ws24{word-spacing:-3.060000px;}
.ws7{word-spacing:-3.036000px;}
.ws39{word-spacing:-2.880000px;}
.ws26{word-spacing:-2.760000px;}
.ws34{word-spacing:-2.220000px;}
.ws37{word-spacing:-2.040000px;}
.wsd{word-spacing:-1.848000px;}
.ws3c{word-spacing:-1.650000px;}
.ws1e{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.518000px;}
.ws40{word-spacing:-1.452000px;}
.ws35{word-spacing:-1.020000px;}
.ws56{word-spacing:-0.990000px;}
.ws25{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.858000px;}
.ws1a{word-spacing:-0.792000px;}
.ws5{word-spacing:-0.264000px;}
.ws15{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws2a{word-spacing:0.060000px;}
.ws48{word-spacing:0.314820px;}
.ws49{word-spacing:0.540000px;}
.ws10{word-spacing:0.576000px;}
.ws14{word-spacing:0.594000px;}
.ws8{word-spacing:0.660000px;}
.ws36{word-spacing:0.780000px;}
.ws47{word-spacing:0.810000px;}
.ws54{word-spacing:0.924000px;}
.ws33{word-spacing:1.200000px;}
.ws3a{word-spacing:1.320000px;}
.wse{word-spacing:1.504800px;}
.ws21{word-spacing:1.716000px;}
.wsa{word-spacing:1.848000px;}
.ws38{word-spacing:1.920000px;}
.ws4a{word-spacing:2.014848px;}
.ws3f{word-spacing:2.112000px;}
.ws19{word-spacing:2.244000px;}
.ws11{word-spacing:2.247084px;}
.ws2e{word-spacing:2.280000px;}
.ws41{word-spacing:2.508000px;}
.ws2c{word-spacing:2.820000px;}
.ws53{word-spacing:3.036000px;}
.ws28{word-spacing:3.360000px;}
.ws6{word-spacing:3.432000px;}
.ws1f{word-spacing:3.960000px;}
.ws3e{word-spacing:4.026000px;}
.ws20{word-spacing:4.158000px;}
.ws9{word-spacing:4.554000px;}
.ws55{word-spacing:5.148000px;}
.ws4d{word-spacing:5.214000px;}
.ws51{word-spacing:5.478000px;}
.ws27{word-spacing:5.640000px;}
.ws2d{word-spacing:6.360000px;}
.ws2b{word-spacing:6.660000px;}
.ws42{word-spacing:6.996000px;}
.ws22{word-spacing:7.062000px;}
.ws4c{word-spacing:7.194000px;}
.ws4b{word-spacing:7.920000px;}
.ws52{word-spacing:9.768000px;}
.ws50{word-spacing:9.834000px;}
.ws1d{word-spacing:9.966000px;}
.ws1c{word-spacing:10.560000px;}
.ws29{word-spacing:11.700000px;}
.wsc{word-spacing:11.880000px;}
.wsb{word-spacing:12.474000px;}
.ws4f{word-spacing:13.662000px;}
.ws4e{word-spacing:18.282000px;}
._13{margin-left:-15.714332px;}
._7{margin-left:-9.761760px;}
._5{margin-left:-8.448000px;}
._e{margin-left:-6.763200px;}
._0{margin-left:-5.760000px;}
._2{margin-left:-4.320000px;}
._4{margin-left:-3.298200px;}
._1{margin-left:-1.440000px;}
._3{width:1.737000px;}
._6{width:2.739600px;}
._f{width:3.792000px;}
._16{width:4.967910px;}
._14{width:6.081690px;}
._15{width:7.483170px;}
._17{width:8.857410px;}
._c{width:11.127600px;}
._d{width:12.764400px;}
._b{width:14.406000px;}
._10{width:20.442000px;}
._11{width:35.916000px;}
._a{width:58.891800px;}
._9{width:60.942137px;}
._8{width:70.765502px;}
._12{width:1549.774377px;}
.fca{color:rgb(64,98,167);}
.fc8{color:rgb(75,152,122);}
.fc7{color:rgb(72,127,31);}
.fc6{color:rgb(87,178,71);}
.fc5{color:transparent;}
.fc4{color:rgb(0,39,35);}
.fc9{color:rgb(90,174,62);}
.fc3{color:rgb(72,165,41);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(0,89,87);}
.fse{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fsc{font-size:38.478000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:76.097400px;}
.fs9{font-size:81.532800px;}
.fsb{font-size:87.753600px;}
.fsf{font-size:108.000000px;}
.fs3{font-size:138.000000px;}
.fs0{font-size:144.000000px;}
.fs2{font-size:150.480000px;}
.fs6{font-size:224.708400px;}
.y0{bottom:0.000000px;}
.y15{bottom:26.803050px;}
.y14{bottom:43.303050px;}
.y13{bottom:59.803050px;}
.y29{bottom:74.834550px;}
.y12{bottom:76.303050px;}
.y61{bottom:84.290550px;}
.y28{bottom:95.834550px;}
.y60{bottom:103.790550px;}
.y27{bottom:116.834550px;}
.y5f{bottom:123.290550px;}
.y26{bottom:137.834550px;}
.y5e{bottom:142.790550px;}
.y25{bottom:158.834550px;}
.yc{bottom:158.834700px;}
.y5d{bottom:162.290550px;}
.yb{bottom:179.834700px;}
.y5c{bottom:181.790550px;}
.y24{bottom:200.834700px;}
.y5b{bottom:201.290550px;}
.y5a{bottom:220.790550px;}
.ya{bottom:221.834700px;}
.y59{bottom:240.290550px;}
.y9{bottom:242.834700px;}
.y82{bottom:248.264700px;}
.y23{bottom:263.834700px;}
.y81{bottom:266.264700px;}
.y8{bottom:284.834700px;}
.y80{bottom:301.272600px;}
.y67{bottom:304.119450px;}
.y7{bottom:305.834700px;}
.y9c{bottom:306.324450px;}
.y7f{bottom:319.272600px;}
.y6{bottom:326.834700px;}
.y7e{bottom:337.272600px;}
.y69{bottom:338.658300px;}
.y9b{bottom:344.932350px;}
.y22{bottom:347.834700px;}
.y63{bottom:352.404450px;}
.y7d{bottom:355.272600px;}
.y68{bottom:356.483250px;}
.y5{bottom:368.834700px;}
.y7c{bottom:373.272600px;}
.y4{bottom:389.834700px;}
.y9a{bottom:398.650650px;}
.y8e{bottom:408.696900px;}
.y3{bottom:410.834700px;}
.y99{bottom:420.250650px;}
.y2{bottom:431.834700px;}
.y21{bottom:452.834700px;}
.y98{bottom:458.858550px;}
.y20{bottom:473.834700px;}
.y8d{bottom:474.311400px;}
.y58{bottom:475.145400px;}
.y66{bottom:478.185600px;}
.y1{bottom:484.736250px;}
.y8c{bottom:493.563450px;}
.y57{bottom:494.645400px;}
.y65{bottom:496.010550px;}
.y97{bottom:510.776850px;}
.y8b{bottom:512.815500px;}
.y56{bottom:514.145400px;}
.y1f{bottom:526.748100px;}
.y64{bottom:531.660300px;}
.y96{bottom:531.776850px;}
.y8a{bottom:532.067400px;}
.y55{bottom:533.645400px;}
.y89{bottom:551.319300px;}
.y95{bottom:552.776850px;}
.y62{bottom:568.971900px;}
.y88{bottom:570.571350px;}
.y94{bottom:573.776850px;}
.y4d{bottom:586.747350px;}
.y87{bottom:589.823250px;}
.y37{bottom:593.273100px;}
.y1e{bottom:607.634400px;}
.y4c{bottom:607.747350px;}
.y86{bottom:609.075300px;}
.y10{bottom:611.139300px;}
.y36{bottom:612.773100px;}
.y85{bottom:628.327200px;}
.y4b{bottom:628.747350px;}
.y35{bottom:632.273100px;}
.y84{bottom:647.579250px;}
.y4a{bottom:649.747350px;}
.y34{bottom:651.773100px;}
.yf{bottom:654.639300px;}
.y83{bottom:666.831150px;}
.y1d{bottom:669.134400px;}
.y49{bottom:670.747350px;}
.y33{bottom:671.273100px;}
.y6a{bottom:685.118850px;}
.y32{bottom:690.773100px;}
.ye{bottom:698.139300px;}
.y8f{bottom:703.925250px;}
.y48{bottom:704.503350px;}
.y31{bottom:710.273100px;}
.y47{bottom:725.503350px;}
.y30{bottom:729.773100px;}
.y1c{bottom:730.634400px;}
.yd{bottom:741.639300px;}
.y46{bottom:746.503350px;}
.y7b{bottom:746.834550px;}
.y2f{bottom:749.273100px;}
.y45{bottom:767.503350px;}
.y7a{bottom:767.834550px;}
.y2e{bottom:768.773100px;}
.y2d{bottom:788.273100px;}
.y44{bottom:788.503350px;}
.y79{bottom:788.834550px;}
.y1b{bottom:792.134400px;}
.y2c{bottom:807.773100px;}
.y93{bottom:809.834550px;}
.y2b{bottom:827.273100px;}
.y54{bottom:829.556250px;}
.y78{bottom:830.834550px;}
.y2a{bottom:846.773100px;}
.y77{bottom:851.834550px;}
.y1a{bottom:853.634400px;}
.y76{bottom:872.834550px;}
.y92{bottom:893.834550px;}
.y52{bottom:895.384500px;}
.y75{bottom:914.834550px;}
.y51{bottom:916.384500px;}
.y3f{bottom:932.938350px;}
.y74{bottom:935.834550px;}
.y50{bottom:937.384500px;}
.y91{bottom:956.834550px;}
.y4f{bottom:971.140350px;}
.y73{bottom:977.834550px;}
.y4e{bottom:992.140350px;}
.y72{bottom:998.834550px;}
.y43{bottom:1014.716550px;}
.y71{bottom:1019.834550px;}
.y53{bottom:1026.191250px;}
.y42{bottom:1034.216550px;}
.y70{bottom:1040.834550px;}
.y19{bottom:1046.013000px;}
.y41{bottom:1053.716550px;}
.y6f{bottom:1061.834550px;}
.y3a{bottom:1071.626100px;}
.y40{bottom:1073.216550px;}
.y18{bottom:1075.444350px;}
.y3c{bottom:1079.968200px;}
.y3e{bottom:1080.736350px;}
.y6e{bottom:1082.834550px;}
.y39{bottom:1092.626100px;}
.y3b{bottom:1097.633550px;}
.y3d{bottom:1098.401850px;}
.y6d{bottom:1103.834550px;}
.y17{bottom:1104.875700px;}
.y6c{bottom:1124.834550px;}
.y16{bottom:1134.307050px;}
.y38{bottom:1134.885900px;}
.y90{bottom:1159.299150px;}
.y6b{bottom:1165.429050px;}
.y11{bottom:1204.006950px;}
.h14{height:22.415184px;}
.hf{height:34.272000px;}
.h7{height:34.945312px;}
.h13{height:38.448000px;}
.hb{height:42.720000px;}
.ha{height:42.840000px;}
.h10{height:44.885760px;}
.h4{height:46.992000px;}
.h3{height:47.124000px;}
.h12{height:49.374336px;}
.h15{height:49.451292px;}
.h17{height:51.264000px;}
.hd{height:51.336000px;}
.h8{height:51.408000px;}
.hc{height:54.333544px;}
.he{height:58.214419px;}
.h11{height:62.656070px;}
.h16{height:77.112000px;}
.h6{height:98.532000px;}
.h2{height:102.816000px;}
.h5{height:107.442720px;}
.h9{height:160.441798px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x7{left:85.039350px;}
.x9{left:100.996200px;}
.x18{left:102.613800px;}
.x2{left:127.559100px;}
.x17{left:130.395750px;}
.xf{left:174.219750px;}
.x10{left:177.878550px;}
.xe{left:182.250750px;}
.xc{left:185.232300px;}
.xd{left:200.982300px;}
.xb{left:284.047500px;}
.x5{left:288.967050px;}
.xa{left:302.380350px;}
.x16{left:306.420300px;}
.x1b{left:376.192050px;}
.x15{left:408.778500px;}
.x8{left:411.602400px;}
.x14{left:416.809350px;}
.x13{left:435.540900px;}
.x11{left:468.079050px;}
.x1c{left:495.098850px;}
.x1d{left:496.178850px;}
.x1a{left:513.012750px;}
.x12{left:546.310650px;}
.x3{left:584.281350px;}
.x4{left:627.375000px;}
.x19{left:653.100000px;}
.x6{left:683.565900px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v4{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:19.536000pt;}
.ls13{letter-spacing:-4.576000pt;}
.ls7{letter-spacing:-1.997408pt;}
.ls12{letter-spacing:-1.790976pt;}
.ls4{letter-spacing:-1.337600pt;}
.lsa{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.342027pt;}
.ls10{letter-spacing:-0.279840pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.636800pt;}
.ls9{letter-spacing:2.986667pt;}
.lse{letter-spacing:7.680000pt;}
.ls0{letter-spacing:9.813333pt;}
.ls8{letter-spacing:19.175467pt;}
.ls1{letter-spacing:62.701043pt;}
.ws1{word-spacing:-27.420800pt;}
.ws46{word-spacing:-27.360000pt;}
.ws12{word-spacing:-26.240000pt;}
.ws13{word-spacing:-15.664000pt;}
.ws17{word-spacing:-15.077333pt;}
.ws30{word-spacing:-14.490667pt;}
.ws0{word-spacing:-14.256000pt;}
.ws18{word-spacing:-13.781333pt;}
.ws16{word-spacing:-13.120000pt;}
.ws2{word-spacing:-12.992000pt;}
.ws3{word-spacing:-12.608000pt;}
.ws43{word-spacing:-12.336000pt;}
.ws31{word-spacing:-9.132112pt;}
.ws32{word-spacing:-8.790085pt;}
.ws45{word-spacing:-8.653275pt;}
.ws2f{word-spacing:-8.301920pt;}
.ws44{word-spacing:-7.471728pt;}
.ws57{word-spacing:-4.992000pt;}
.wsf{word-spacing:-4.906667pt;}
.ws23{word-spacing:-4.400000pt;}
.ws3b{word-spacing:-2.816000pt;}
.ws24{word-spacing:-2.720000pt;}
.ws7{word-spacing:-2.698667pt;}
.ws39{word-spacing:-2.560000pt;}
.ws26{word-spacing:-2.453333pt;}
.ws34{word-spacing:-1.973333pt;}
.ws37{word-spacing:-1.813333pt;}
.wsd{word-spacing:-1.642667pt;}
.ws3c{word-spacing:-1.466667pt;}
.ws1e{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.349333pt;}
.ws40{word-spacing:-1.290667pt;}
.ws35{word-spacing:-0.906667pt;}
.ws56{word-spacing:-0.880000pt;}
.ws25{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.762667pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws5{word-spacing:-0.234667pt;}
.ws15{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.053333pt;}
.ws48{word-spacing:0.279840pt;}
.ws49{word-spacing:0.480000pt;}
.ws10{word-spacing:0.512000pt;}
.ws14{word-spacing:0.528000pt;}
.ws8{word-spacing:0.586667pt;}
.ws36{word-spacing:0.693333pt;}
.ws47{word-spacing:0.720000pt;}
.ws54{word-spacing:0.821333pt;}
.ws33{word-spacing:1.066667pt;}
.ws3a{word-spacing:1.173333pt;}
.wse{word-spacing:1.337600pt;}
.ws21{word-spacing:1.525333pt;}
.wsa{word-spacing:1.642667pt;}
.ws38{word-spacing:1.706667pt;}
.ws4a{word-spacing:1.790976pt;}
.ws3f{word-spacing:1.877333pt;}
.ws19{word-spacing:1.994667pt;}
.ws11{word-spacing:1.997408pt;}
.ws2e{word-spacing:2.026667pt;}
.ws41{word-spacing:2.229333pt;}
.ws2c{word-spacing:2.506667pt;}
.ws53{word-spacing:2.698667pt;}
.ws28{word-spacing:2.986667pt;}
.ws6{word-spacing:3.050667pt;}
.ws1f{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.578667pt;}
.ws20{word-spacing:3.696000pt;}
.ws9{word-spacing:4.048000pt;}
.ws55{word-spacing:4.576000pt;}
.ws4d{word-spacing:4.634667pt;}
.ws51{word-spacing:4.869333pt;}
.ws27{word-spacing:5.013333pt;}
.ws2d{word-spacing:5.653333pt;}
.ws2b{word-spacing:5.920000pt;}
.ws42{word-spacing:6.218667pt;}
.ws22{word-spacing:6.277333pt;}
.ws4c{word-spacing:6.394667pt;}
.ws4b{word-spacing:7.040000pt;}
.ws52{word-spacing:8.682667pt;}
.ws50{word-spacing:8.741333pt;}
.ws1d{word-spacing:8.858667pt;}
.ws1c{word-spacing:9.386667pt;}
.ws29{word-spacing:10.400000pt;}
.wsc{word-spacing:10.560000pt;}
.wsb{word-spacing:11.088000pt;}
.ws4f{word-spacing:12.144000pt;}
.ws4e{word-spacing:16.250667pt;}
._13{margin-left:-13.968295pt;}
._7{margin-left:-8.677120pt;}
._5{margin-left:-7.509333pt;}
._e{margin-left:-6.011733pt;}
._0{margin-left:-5.120000pt;}
._2{margin-left:-3.840000pt;}
._4{margin-left:-2.931733pt;}
._1{margin-left:-1.280000pt;}
._3{width:1.544000pt;}
._6{width:2.435200pt;}
._f{width:3.370667pt;}
._16{width:4.415920pt;}
._14{width:5.405947pt;}
._15{width:6.651707pt;}
._17{width:7.873253pt;}
._c{width:9.891200pt;}
._d{width:11.346133pt;}
._b{width:12.805333pt;}
._10{width:18.170667pt;}
._11{width:31.925333pt;}
._a{width:52.348267pt;}
._9{width:54.170788pt;}
._8{width:62.902669pt;}
._12{width:1377.577224pt;}
.fse{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fsc{font-size:34.202667pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:67.642133pt;}
.fs9{font-size:72.473600pt;}
.fsb{font-size:78.003200pt;}
.fsf{font-size:96.000000pt;}
.fs3{font-size:122.666667pt;}
.fs0{font-size:128.000000pt;}
.fs2{font-size:133.760000pt;}
.fs6{font-size:199.740800pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:23.824933pt;}
.y14{bottom:38.491600pt;}
.y13{bottom:53.158267pt;}
.y29{bottom:66.519600pt;}
.y12{bottom:67.824933pt;}
.y61{bottom:74.924933pt;}
.y28{bottom:85.186267pt;}
.y60{bottom:92.258267pt;}
.y27{bottom:103.852933pt;}
.y5f{bottom:109.591600pt;}
.y26{bottom:122.519600pt;}
.y5e{bottom:126.924933pt;}
.y25{bottom:141.186267pt;}
.yc{bottom:141.186400pt;}
.y5d{bottom:144.258267pt;}
.yb{bottom:159.853067pt;}
.y5c{bottom:161.591600pt;}
.y24{bottom:178.519733pt;}
.y5b{bottom:178.924933pt;}
.y5a{bottom:196.258267pt;}
.ya{bottom:197.186400pt;}
.y59{bottom:213.591600pt;}
.y9{bottom:215.853067pt;}
.y82{bottom:220.679733pt;}
.y23{bottom:234.519733pt;}
.y81{bottom:236.679733pt;}
.y8{bottom:253.186400pt;}
.y80{bottom:267.797867pt;}
.y67{bottom:270.328400pt;}
.y7{bottom:271.853067pt;}
.y9c{bottom:272.288400pt;}
.y7f{bottom:283.797867pt;}
.y6{bottom:290.519733pt;}
.y7e{bottom:299.797867pt;}
.y69{bottom:301.029600pt;}
.y9b{bottom:306.606533pt;}
.y22{bottom:309.186400pt;}
.y63{bottom:313.248400pt;}
.y7d{bottom:315.797867pt;}
.y68{bottom:316.874000pt;}
.y5{bottom:327.853067pt;}
.y7c{bottom:331.797867pt;}
.y4{bottom:346.519733pt;}
.y9a{bottom:354.356133pt;}
.y8e{bottom:363.286133pt;}
.y3{bottom:365.186400pt;}
.y99{bottom:373.556133pt;}
.y2{bottom:383.853067pt;}
.y21{bottom:402.519733pt;}
.y98{bottom:407.874267pt;}
.y20{bottom:421.186400pt;}
.y8d{bottom:421.610133pt;}
.y58{bottom:422.351467pt;}
.y66{bottom:425.053867pt;}
.y1{bottom:430.876667pt;}
.y8c{bottom:438.723067pt;}
.y57{bottom:439.684800pt;}
.y65{bottom:440.898267pt;}
.y97{bottom:454.023867pt;}
.y8b{bottom:455.836000pt;}
.y56{bottom:457.018133pt;}
.y1f{bottom:468.220533pt;}
.y64{bottom:472.586933pt;}
.y96{bottom:472.690533pt;}
.y8a{bottom:472.948800pt;}
.y55{bottom:474.351467pt;}
.y89{bottom:490.061600pt;}
.y95{bottom:491.357200pt;}
.y62{bottom:505.752800pt;}
.y88{bottom:507.174533pt;}
.y94{bottom:510.023867pt;}
.y4d{bottom:521.553200pt;}
.y87{bottom:524.287333pt;}
.y37{bottom:527.353867pt;}
.y1e{bottom:540.119467pt;}
.y4c{bottom:540.219867pt;}
.y86{bottom:541.400267pt;}
.y10{bottom:543.234933pt;}
.y36{bottom:544.687200pt;}
.y85{bottom:558.513067pt;}
.y4b{bottom:558.886533pt;}
.y35{bottom:562.020533pt;}
.y84{bottom:575.626000pt;}
.y4a{bottom:577.553200pt;}
.y34{bottom:579.353867pt;}
.yf{bottom:581.901600pt;}
.y83{bottom:592.738800pt;}
.y1d{bottom:594.786133pt;}
.y49{bottom:596.219867pt;}
.y33{bottom:596.687200pt;}
.y6a{bottom:608.994533pt;}
.y32{bottom:614.020533pt;}
.ye{bottom:620.568267pt;}
.y8f{bottom:625.711333pt;}
.y48{bottom:626.225200pt;}
.y31{bottom:631.353867pt;}
.y47{bottom:644.891867pt;}
.y30{bottom:648.687200pt;}
.y1c{bottom:649.452800pt;}
.yd{bottom:659.234933pt;}
.y46{bottom:663.558533pt;}
.y7b{bottom:663.852933pt;}
.y2f{bottom:666.020533pt;}
.y45{bottom:682.225200pt;}
.y7a{bottom:682.519600pt;}
.y2e{bottom:683.353867pt;}
.y2d{bottom:700.687200pt;}
.y44{bottom:700.891867pt;}
.y79{bottom:701.186267pt;}
.y1b{bottom:704.119467pt;}
.y2c{bottom:718.020533pt;}
.y93{bottom:719.852933pt;}
.y2b{bottom:735.353867pt;}
.y54{bottom:737.383333pt;}
.y78{bottom:738.519600pt;}
.y2a{bottom:752.687200pt;}
.y77{bottom:757.186267pt;}
.y1a{bottom:758.786133pt;}
.y76{bottom:775.852933pt;}
.y92{bottom:794.519600pt;}
.y52{bottom:795.897333pt;}
.y75{bottom:813.186267pt;}
.y51{bottom:814.564000pt;}
.y3f{bottom:829.278533pt;}
.y74{bottom:831.852933pt;}
.y50{bottom:833.230667pt;}
.y91{bottom:850.519600pt;}
.y4f{bottom:863.235867pt;}
.y73{bottom:869.186267pt;}
.y4e{bottom:881.902533pt;}
.y72{bottom:887.852933pt;}
.y43{bottom:901.970267pt;}
.y71{bottom:906.519600pt;}
.y53{bottom:912.170000pt;}
.y42{bottom:919.303600pt;}
.y70{bottom:925.186267pt;}
.y19{bottom:929.789333pt;}
.y41{bottom:936.636933pt;}
.y6f{bottom:943.852933pt;}
.y3a{bottom:952.556533pt;}
.y40{bottom:953.970267pt;}
.y18{bottom:955.950533pt;}
.y3c{bottom:959.971733pt;}
.y3e{bottom:960.654533pt;}
.y6e{bottom:962.519600pt;}
.y39{bottom:971.223200pt;}
.y3b{bottom:975.674267pt;}
.y3d{bottom:976.357200pt;}
.y6d{bottom:981.186267pt;}
.y17{bottom:982.111733pt;}
.y6c{bottom:999.852933pt;}
.y16{bottom:1008.272933pt;}
.y38{bottom:1008.787467pt;}
.y90{bottom:1030.488133pt;}
.y6b{bottom:1035.936933pt;}
.y11{bottom:1070.228400pt;}
.h14{height:19.924608pt;}
.hf{height:30.464000pt;}
.h7{height:31.062500pt;}
.h13{height:34.176000pt;}
.hb{height:37.973333pt;}
.ha{height:38.080000pt;}
.h10{height:39.898453pt;}
.h4{height:41.770667pt;}
.h3{height:41.888000pt;}
.h12{height:43.888299pt;}
.h15{height:43.956704pt;}
.h17{height:45.568000pt;}
.hd{height:45.632000pt;}
.h8{height:45.696000pt;}
.hc{height:48.296483pt;}
.he{height:51.746150pt;}
.h11{height:55.694285pt;}
.h16{height:68.544000pt;}
.h6{height:87.584000pt;}
.h2{height:91.392000pt;}
.h5{height:95.504640pt;}
.h9{height:142.614931pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x7{left:75.590533pt;}
.x9{left:89.774400pt;}
.x18{left:91.212267pt;}
.x2{left:113.385867pt;}
.x17{left:115.907333pt;}
.xf{left:154.862000pt;}
.x10{left:158.114267pt;}
.xe{left:162.000667pt;}
.xc{left:164.650933pt;}
.xd{left:178.650933pt;}
.xb{left:252.486667pt;}
.x5{left:256.859600pt;}
.xa{left:268.782533pt;}
.x16{left:272.373600pt;}
.x1b{left:334.392933pt;}
.x15{left:363.358667pt;}
.x8{left:365.868800pt;}
.x14{left:370.497200pt;}
.x13{left:387.147467pt;}
.x11{left:416.070267pt;}
.x1c{left:440.087867pt;}
.x1d{left:441.047867pt;}
.x1a{left:456.011333pt;}
.x12{left:485.609467pt;}
.x3{left:519.361200pt;}
.x4{left:557.666667pt;}
.x19{left:580.533333pt;}
.x6{left:607.614133pt;}
}




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