
    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_2c2689d8c14da2601c153de1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_89e2726ee01b7c916f1af467.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_e2f698ad3246816a083134a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.885254;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_c85fe1d71fe962bcaf63ba05.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_24715e81d5862aceb280c128.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_cff2226d896bbeaa8acde4c1.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_fb8419ecbe0027102ec22f82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dcd7ae7fcd29b3401ff032e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_22a9e8bf379096af1fa41936.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_3af94efd7ceb4d6bf6fcc176.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719727;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_9187ae03f119c5815e481d7d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9350de33faa7f9ae632007a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_0e2c747f4f240cfe295070ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_2cb18db72df0f04afaa1dbb5.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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_7bcd92a6e4fb8ce7427d776d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.935059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a5d76bb1397f1275839df551.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.935059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1a{letter-spacing:-0.508896px;}
.ls1e{letter-spacing:-0.481536px;}
.ls24{letter-spacing:-0.459648px;}
.lsc{letter-spacing:-0.399168px;}
.ls22{letter-spacing:-0.381024px;}
.lsa{letter-spacing:-0.338688px;}
.ls27{letter-spacing:-0.332640px;}
.ls26{letter-spacing:-0.320544px;}
.ls29{letter-spacing:-0.308448px;}
.ls20{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.260064px;}
.ls1f{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.158976px;}
.ls21{letter-spacing:-0.157248px;}
.ls25{letter-spacing:-0.145152px;}
.lsf{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.ls9{letter-spacing:0.073872px;}
.ls8{letter-spacing:0.097200px;}
.ls12{letter-spacing:0.123552px;}
.ls13{letter-spacing:0.125280px;}
.ls5{letter-spacing:0.159840px;}
.ls11{letter-spacing:0.160128px;}
.ls16{letter-spacing:0.256608px;}
.ls6{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.294624px;}
.ls10{letter-spacing:0.318384px;}
.ls14{letter-spacing:0.356400px;}
.ls15{letter-spacing:0.365904px;}
.lsb{letter-spacing:0.399168px;}
.ls28{letter-spacing:1.177632px;}
.ls2{letter-spacing:1.792800px;}
.ls1c{letter-spacing:4.426848px;}
.ls1d{letter-spacing:4.428288px;}
.ls3{letter-spacing:31.278672px;}
.ls17{letter-spacing:44.720496px;}
.ls19{letter-spacing:55.180800px;}
.ls18{letter-spacing:63.588960px;}
.ls1b{letter-spacing:101.856528px;}
.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;}
}
.ws9{word-spacing:-18.255744px;}
.ws2{word-spacing:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.985600px;}
.wsd{word-spacing:-16.813440px;}
.wsa{word-spacing:-16.656192px;}
.wsf{word-spacing:-16.553376px;}
.ws8{word-spacing:-16.511040px;}
.wse{word-spacing:-16.492896px;}
.wsc{word-spacing:-16.432416px;}
.wsb{word-spacing:-16.353792px;}
.ws6{word-spacing:-14.703264px;}
.ws5{word-spacing:-13.576464px;}
.ws3{word-spacing:-13.486176px;}
.ws7{word-spacing:-0.060480px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._a{width:2.534400px;}
._7{width:4.305600px;}
._8{width:6.069600px;}
._b{width:7.077600px;}
._3{width:9.043200px;}
._6{width:10.302912px;}
._5{width:12.103488px;}
._c{width:13.399200px;}
._4{width:15.430320px;}
._2{width:16.560000px;}
._11{width:20.167200px;}
._12{width:21.340800px;}
._d{width:23.004000px;}
._f{width:24.732000px;}
._9{width:27.316800px;}
._e{width:34.077600px;}
._10{width:47.664000px;}
._13{width:52.194240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.440000px;}
.y3c{bottom:131.040000px;}
.y1a{bottom:132.840000px;}
.y2{bottom:142.200000px;}
.y19{bottom:151.920000px;}
.y4d{bottom:173.160000px;}
.y3b{bottom:173.880000px;}
.y75{bottom:191.880000px;}
.y4c{bottom:194.040000px;}
.y3a{bottom:194.400000px;}
.y74{bottom:209.880000px;}
.y4b{bottom:214.560000px;}
.y39{bottom:215.280000px;}
.y73{bottom:232.560000px;}
.y4a{bottom:235.440000px;}
.y38{bottom:235.800000px;}
.y49{bottom:255.960000px;}
.y37{bottom:256.680000px;}
.y72{bottom:267.120000px;}
.y48{bottom:276.840000px;}
.y36{bottom:277.200000px;}
.y71{bottom:288.000000px;}
.y47{bottom:297.360000px;}
.y35{bottom:298.080000px;}
.y70{bottom:308.520000px;}
.y46{bottom:318.240000px;}
.y34{bottom:318.600000px;}
.y6f{bottom:329.400000px;}
.y45{bottom:338.760000px;}
.y33{bottom:339.480000px;}
.y16{bottom:346.680000px;}
.y6e{bottom:349.920000px;}
.y44{bottom:359.640000px;}
.y32{bottom:360.000000px;}
.y15{bottom:367.560000px;}
.y6d{bottom:370.800000px;}
.y43{bottom:380.160000px;}
.y31{bottom:380.880000px;}
.y14{bottom:388.080000px;}
.y6c{bottom:391.320000px;}
.y42{bottom:401.040000px;}
.y30{bottom:401.400000px;}
.y13{bottom:408.960000px;}
.y6b{bottom:412.200000px;}
.y41{bottom:421.560000px;}
.y2f{bottom:422.280000px;}
.y12{bottom:428.040000px;}
.y6a{bottom:432.720000px;}
.y11{bottom:439.920000px;}
.y2e{bottom:442.800000px;}
.y40{bottom:445.680000px;}
.y69{bottom:457.560000px;}
.y2d{bottom:463.680000px;}
.y3f{bottom:478.800000px;}
.y2c{bottom:484.200000px;}
.y3e{bottom:490.680000px;}
.y68{bottom:495.000000px;}
.y2b{bottom:505.080000px;}
.y67{bottom:515.880000px;}
.y2a{bottom:525.600000px;}
.y66{bottom:536.400000px;}
.y29{bottom:546.480000px;}
.y65{bottom:557.280000px;}
.y28{bottom:567.000000px;}
.y64{bottom:577.800000px;}
.y27{bottom:587.880000px;}
.y63{bottom:598.680000px;}
.y26{bottom:608.400000px;}
.y62{bottom:619.200000px;}
.y25{bottom:629.280000px;}
.y61{bottom:640.080000px;}
.y24{bottom:649.800000px;}
.y60{bottom:664.560000px;}
.y23{bottom:670.680000px;}
.y22{bottom:695.160000px;}
.y5f{bottom:702.000000px;}
.y5e{bottom:722.880000px;}
.y21{bottom:732.600000px;}
.y5d{bottom:743.400000px;}
.y20{bottom:753.480000px;}
.y5c{bottom:764.280000px;}
.y1f{bottom:774.000000px;}
.y5b{bottom:788.760000px;}
.y1e{bottom:794.880000px;}
.y1d{bottom:813.960000px;}
.y5a{bottom:825.480000px;}
.y1c{bottom:825.840000px;}
.y59{bottom:848.160000px;}
.y10{bottom:858.960000px;}
.yf{bottom:879.840000px;}
.y58{bottom:885.960000px;}
.ye{bottom:900.360000px;}
.y57{bottom:906.480000px;}
.yd{bottom:921.240000px;}
.y56{bottom:930.600000px;}
.yc{bottom:941.760000px;}
.yb{bottom:962.640000px;}
.y55{bottom:965.160000px;}
.ya{bottom:983.160000px;}
.y54{bottom:986.040000px;}
.y53{bottom:1006.560000px;}
.y9{bottom:1008.000000px;}
.y52{bottom:1027.440000px;}
.y8{bottom:1044.720000px;}
.y51{bottom:1047.960000px;}
.y79{bottom:1055.520000px;}
.y7{bottom:1062.000000px;}
.y50{bottom:1068.840000px;}
.y78{bottom:1075.320000px;}
.y6{bottom:1080.000000px;}
.y4f{bottom:1089.360000px;}
.y77{bottom:1093.320000px;}
.y3d{bottom:1110.600000px;}
.y76{bottom:1111.320000px;}
.y4e{bottom:1113.480000px;}
.y5{bottom:1116.720000px;}
.y18{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y17{bottom:1143.360000px;}
.h3{height:28.704375px;}
.ha{height:31.672266px;}
.h9{height:35.013516px;}
.h8{height:35.175938px;}
.hb{height:39.837656px;}
.h6{height:40.310156px;}
.h5{height:44.562656px;}
.hc{height:44.769375px;}
.h7{height:48.224531px;}
.h2{height:50.027344px;}
.h4{height:53.332031px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:80.640000px;}
.x2{left:89.816508px;}
.xa{left:99.406872px;}
.xb{left:107.640000px;}
.xf{left:128.640024px;}
.xc{left:134.640036px;}
.xd{left:161.640036px;}
.xe{left:188.640036px;}
.x4{left:228.776004px;}
.x9{left:286.558236px;}
.x7{left:338.337540px;}
.x6{left:546.554880px;}
.x8{left:650.774880px;}
.x3{left:743.294880px;}
.x5{left:811.590120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.452352pt;}
.ls1e{letter-spacing:-0.428032pt;}
.ls24{letter-spacing:-0.408576pt;}
.lsc{letter-spacing:-0.354816pt;}
.ls22{letter-spacing:-0.338688pt;}
.lsa{letter-spacing:-0.301056pt;}
.ls27{letter-spacing:-0.295680pt;}
.ls26{letter-spacing:-0.284928pt;}
.ls29{letter-spacing:-0.274176pt;}
.ls20{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.231168pt;}
.ls1f{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.141312pt;}
.ls21{letter-spacing:-0.139776pt;}
.ls25{letter-spacing:-0.129024pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.ls9{letter-spacing:0.065664pt;}
.ls8{letter-spacing:0.086400pt;}
.ls12{letter-spacing:0.109824pt;}
.ls13{letter-spacing:0.111360pt;}
.ls5{letter-spacing:0.142080pt;}
.ls11{letter-spacing:0.142336pt;}
.ls16{letter-spacing:0.228096pt;}
.ls6{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.261888pt;}
.ls10{letter-spacing:0.283008pt;}
.ls14{letter-spacing:0.316800pt;}
.ls15{letter-spacing:0.325248pt;}
.lsb{letter-spacing:0.354816pt;}
.ls28{letter-spacing:1.046784pt;}
.ls2{letter-spacing:1.593600pt;}
.ls1c{letter-spacing:3.934976pt;}
.ls1d{letter-spacing:3.936256pt;}
.ls3{letter-spacing:27.803264pt;}
.ls17{letter-spacing:39.751552pt;}
.ls19{letter-spacing:49.049600pt;}
.ls18{letter-spacing:56.523520pt;}
.ls1b{letter-spacing:90.539136pt;}
.ws9{word-spacing:-16.227328pt;}
.ws2{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.wsd{word-spacing:-14.945280pt;}
.wsa{word-spacing:-14.805504pt;}
.wsf{word-spacing:-14.714112pt;}
.ws8{word-spacing:-14.676480pt;}
.wse{word-spacing:-14.660352pt;}
.wsc{word-spacing:-14.606592pt;}
.wsb{word-spacing:-14.536704pt;}
.ws6{word-spacing:-13.069568pt;}
.ws5{word-spacing:-12.067968pt;}
.ws3{word-spacing:-11.987712pt;}
.ws7{word-spacing:-0.053760pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._a{width:2.252800pt;}
._7{width:3.827200pt;}
._8{width:5.395200pt;}
._b{width:6.291200pt;}
._3{width:8.038400pt;}
._6{width:9.158144pt;}
._5{width:10.758656pt;}
._c{width:11.910400pt;}
._4{width:13.715840pt;}
._2{width:14.720000pt;}
._11{width:17.926400pt;}
._12{width:18.969600pt;}
._d{width:20.448000pt;}
._f{width:21.984000pt;}
._9{width:24.281600pt;}
._e{width:30.291200pt;}
._10{width:42.368000pt;}
._13{width:46.394880pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.280000pt;}
.y3c{bottom:116.480000pt;}
.y1a{bottom:118.080000pt;}
.y2{bottom:126.400000pt;}
.y19{bottom:135.040000pt;}
.y4d{bottom:153.920000pt;}
.y3b{bottom:154.560000pt;}
.y75{bottom:170.560000pt;}
.y4c{bottom:172.480000pt;}
.y3a{bottom:172.800000pt;}
.y74{bottom:186.560000pt;}
.y4b{bottom:190.720000pt;}
.y39{bottom:191.360000pt;}
.y73{bottom:206.720000pt;}
.y4a{bottom:209.280000pt;}
.y38{bottom:209.600000pt;}
.y49{bottom:227.520000pt;}
.y37{bottom:228.160000pt;}
.y72{bottom:237.440000pt;}
.y48{bottom:246.080000pt;}
.y36{bottom:246.400000pt;}
.y71{bottom:256.000000pt;}
.y47{bottom:264.320000pt;}
.y35{bottom:264.960000pt;}
.y70{bottom:274.240000pt;}
.y46{bottom:282.880000pt;}
.y34{bottom:283.200000pt;}
.y6f{bottom:292.800000pt;}
.y45{bottom:301.120000pt;}
.y33{bottom:301.760000pt;}
.y16{bottom:308.160000pt;}
.y6e{bottom:311.040000pt;}
.y44{bottom:319.680000pt;}
.y32{bottom:320.000000pt;}
.y15{bottom:326.720000pt;}
.y6d{bottom:329.600000pt;}
.y43{bottom:337.920000pt;}
.y31{bottom:338.560000pt;}
.y14{bottom:344.960000pt;}
.y6c{bottom:347.840000pt;}
.y42{bottom:356.480000pt;}
.y30{bottom:356.800000pt;}
.y13{bottom:363.520000pt;}
.y6b{bottom:366.400000pt;}
.y41{bottom:374.720000pt;}
.y2f{bottom:375.360000pt;}
.y12{bottom:380.480000pt;}
.y6a{bottom:384.640000pt;}
.y11{bottom:391.040000pt;}
.y2e{bottom:393.600000pt;}
.y40{bottom:396.160000pt;}
.y69{bottom:406.720000pt;}
.y2d{bottom:412.160000pt;}
.y3f{bottom:425.600000pt;}
.y2c{bottom:430.400000pt;}
.y3e{bottom:436.160000pt;}
.y68{bottom:440.000000pt;}
.y2b{bottom:448.960000pt;}
.y67{bottom:458.560000pt;}
.y2a{bottom:467.200000pt;}
.y66{bottom:476.800000pt;}
.y29{bottom:485.760000pt;}
.y65{bottom:495.360000pt;}
.y28{bottom:504.000000pt;}
.y64{bottom:513.600000pt;}
.y27{bottom:522.560000pt;}
.y63{bottom:532.160000pt;}
.y26{bottom:540.800000pt;}
.y62{bottom:550.400000pt;}
.y25{bottom:559.360000pt;}
.y61{bottom:568.960000pt;}
.y24{bottom:577.600000pt;}
.y60{bottom:590.720000pt;}
.y23{bottom:596.160000pt;}
.y22{bottom:617.920000pt;}
.y5f{bottom:624.000000pt;}
.y5e{bottom:642.560000pt;}
.y21{bottom:651.200000pt;}
.y5d{bottom:660.800000pt;}
.y20{bottom:669.760000pt;}
.y5c{bottom:679.360000pt;}
.y1f{bottom:688.000000pt;}
.y5b{bottom:701.120000pt;}
.y1e{bottom:706.560000pt;}
.y1d{bottom:723.520000pt;}
.y5a{bottom:733.760000pt;}
.y1c{bottom:734.080000pt;}
.y59{bottom:753.920000pt;}
.y10{bottom:763.520000pt;}
.yf{bottom:782.080000pt;}
.y58{bottom:787.520000pt;}
.ye{bottom:800.320000pt;}
.y57{bottom:805.760000pt;}
.yd{bottom:818.880000pt;}
.y56{bottom:827.200000pt;}
.yc{bottom:837.120000pt;}
.yb{bottom:855.680000pt;}
.y55{bottom:857.920000pt;}
.ya{bottom:873.920000pt;}
.y54{bottom:876.480000pt;}
.y53{bottom:894.720000pt;}
.y9{bottom:896.000000pt;}
.y52{bottom:913.280000pt;}
.y8{bottom:928.640000pt;}
.y51{bottom:931.520000pt;}
.y79{bottom:938.240000pt;}
.y7{bottom:944.000000pt;}
.y50{bottom:950.080000pt;}
.y78{bottom:955.840000pt;}
.y6{bottom:960.000000pt;}
.y4f{bottom:968.320000pt;}
.y77{bottom:971.840000pt;}
.y3d{bottom:987.200000pt;}
.y76{bottom:987.840000pt;}
.y4e{bottom:989.760000pt;}
.y5{bottom:992.640000pt;}
.y18{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y17{bottom:1016.320000pt;}
.h3{height:25.515000pt;}
.ha{height:28.153125pt;}
.h9{height:31.123125pt;}
.h8{height:31.267500pt;}
.hb{height:35.411250pt;}
.h6{height:35.831250pt;}
.h5{height:39.611250pt;}
.hc{height:39.795000pt;}
.h7{height:42.866250pt;}
.h2{height:44.468750pt;}
.h4{height:47.406250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:71.680000pt;}
.x2{left:79.836896pt;}
.xa{left:88.361664pt;}
.xb{left:95.680000pt;}
.xf{left:114.346688pt;}
.xc{left:119.680032pt;}
.xd{left:143.680032pt;}
.xe{left:167.680032pt;}
.x4{left:203.356448pt;}
.x9{left:254.718432pt;}
.x7{left:300.744480pt;}
.x6{left:485.826560pt;}
.x8{left:578.466560pt;}
.x3{left:660.706560pt;}
.x5{left:721.413440pt;}
}




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