
    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_0852ed0cb8760ff4654133c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_d6ed9558f2f78f9f90d3c74e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_2176f66359f94b8c49a620fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_99c2367e51bb32660e5ea275.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2d5cf9c0b01511ab73185a38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761230;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_e6763d3b39a7469d8dff2758.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_f4c329aa4259878a3accfc4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.742188;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_07399736443cb911fc76c766.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a80f79cd617b35cb12855edf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971680;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_e6aa078ca96ec9a82f59adae.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_9350de33faa7f9ae632007a7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0e2c747f4f240cfe295070ea.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_add2d4383f52b750ef58663c.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_e09f99ee02a5e74246c6fd3c.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;}
.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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls24{letter-spacing:-0.342144px;}
.lsc{letter-spacing:-0.310464px;}
.ls16{letter-spacing:-0.297792px;}
.ls13{letter-spacing:-0.266112px;}
.ls3b{letter-spacing:-0.259776px;}
.ls40{letter-spacing:-0.253440px;}
.ls23{letter-spacing:-0.234432px;}
.ls21{letter-spacing:-0.228096px;}
.ls10{letter-spacing:-0.221760px;}
.lsb{letter-spacing:-0.215424px;}
.ls15{letter-spacing:-0.209088px;}
.ls35{letter-spacing:-0.202752px;}
.ls9{letter-spacing:-0.196416px;}
.ls7{letter-spacing:-0.190080px;}
.ls1a{letter-spacing:-0.177408px;}
.ls12{letter-spacing:-0.171072px;}
.lsa{letter-spacing:-0.164736px;}
.ls11{letter-spacing:-0.158400px;}
.lse{letter-spacing:-0.152352px;}
.ls3a{letter-spacing:-0.152064px;}
.ls17{letter-spacing:-0.145728px;}
.ls5{letter-spacing:-0.133056px;}
.ls8{letter-spacing:-0.132480px;}
.ls34{letter-spacing:-0.126720px;}
.ls14{letter-spacing:-0.120384px;}
.ls19{letter-spacing:-0.101376px;}
.ls22{letter-spacing:-0.095040px;}
.ls36{letter-spacing:-0.088704px;}
.lsd{letter-spacing:-0.079488px;}
.lsf{letter-spacing:-0.066240px;}
.ls33{letter-spacing:-0.063360px;}
.ls18{letter-spacing:-0.050688px;}
.ls6{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.005328px;}
.ls3{letter-spacing:0.115200px;}
.ls2a{letter-spacing:0.295344px;}
.ls2{letter-spacing:0.317376px;}
.ls2f{letter-spacing:0.367200px;}
.ls2c{letter-spacing:0.868320px;}
.ls2b{letter-spacing:1.144800px;}
.ls32{letter-spacing:1.350000px;}
.ls25{letter-spacing:2.841120px;}
.ls1e{letter-spacing:4.030560px;}
.ls20{letter-spacing:4.651200px;}
.ls3f{letter-spacing:5.073120px;}
.ls37{letter-spacing:5.946768px;}
.ls28{letter-spacing:6.260256px;}
.ls26{letter-spacing:6.469776px;}
.ls3d{letter-spacing:7.744320px;}
.ls27{letter-spacing:9.308160px;}
.ls30{letter-spacing:9.424224px;}
.ls1d{letter-spacing:9.967824px;}
.ls31{letter-spacing:12.106512px;}
.ls39{letter-spacing:13.528800px;}
.ls3c{letter-spacing:13.884480px;}
.ls38{letter-spacing:14.323680px;}
.ls1c{letter-spacing:16.159680px;}
.ls29{letter-spacing:17.390160px;}
.ls1f{letter-spacing:18.060480px;}
.ls3e{letter-spacing:21.656160px;}
.ls4{letter-spacing:64.729296px;}
.ls1b{letter-spacing:84.508992px;}
.ls2d{letter-spacing:86.689584px;}
.ls1{letter-spacing:1205.214624px;}
.ls0{letter-spacing:2019.200400px;}
.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;}
}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837760px;}
.ws2{word-spacing:-14.319360px;}
.wsd{word-spacing:-14.268672px;}
.wsc{word-spacing:-14.224320px;}
.ws6{word-spacing:-14.198976px;}
.ws13{word-spacing:-14.192640px;}
.ws11{word-spacing:-14.186304px;}
.ws10{word-spacing:-14.173632px;}
.wsa{word-spacing:-14.160960px;}
.ws3{word-spacing:-14.154624px;}
.wsb{word-spacing:-14.148288px;}
.ws0{word-spacing:-14.129280px;}
.ws14{word-spacing:-14.122944px;}
.ws12{word-spacing:-14.116608px;}
.ws9{word-spacing:-14.110272px;}
.wse{word-spacing:-14.103936px;}
.ws5{word-spacing:-14.097600px;}
.ws15{word-spacing:-14.059584px;}
.ws8{word-spacing:-0.063360px;}
.wsf{word-spacing:-0.060480px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-3.864960px;}
._7{margin-left:-2.597760px;}
._0{margin-left:-1.013760px;}
._1{width:1.013760px;}
._a{width:2.058912px;}
._9{width:3.168000px;}
._4{width:4.625280px;}
._5{width:5.650272px;}
._3{width:6.779520px;}
._6{width:8.426880px;}
._c{width:9.440640px;}
._d{width:11.404800px;}
._2{width:12.988800px;}
._e{width:16.054272px;}
._f{width:17.107200px;}
._8{width:18.564480px;}
._b{width:19.895040px;}
._12{width:21.542400px;}
._13{width:22.556160px;}
._17{width:30.602880px;}
._18{width:31.968576px;}
._11{width:35.291520px;}
._16{width:70.836480px;}
._19{width:80.974080px;}
._1a{width:81.975744px;}
._14{width:105.961680px;}
._15{width:106.967520px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y6d{bottom:102.960000px;}
.ya0{bottom:105.480000px;}
.y39{bottom:106.920000px;}
.y6c{bottom:122.400000px;}
.y9f{bottom:124.920000px;}
.y38{bottom:126.360000px;}
.y6b{bottom:141.480000px;}
.yad{bottom:143.640000px;}
.y9e{bottom:144.000000px;}
.y37{bottom:145.440000px;}
.y6a{bottom:160.920000px;}
.yac{bottom:162.720000px;}
.y9d{bottom:163.440000px;}
.y36{bottom:164.520000px;}
.y69{bottom:180.000000px;}
.yab{bottom:181.800000px;}
.yd7{bottom:182.160000px;}
.y9c{bottom:182.520000px;}
.y35{bottom:183.960000px;}
.y68{bottom:199.080000px;}
.yd6{bottom:201.240000px;}
.y9b{bottom:201.600000px;}
.y34{bottom:203.040000px;}
.y67{bottom:218.520000px;}
.yd5{bottom:220.320000px;}
.yaa{bottom:220.680000px;}
.y9a{bottom:221.040000px;}
.y33{bottom:222.480000px;}
.y66{bottom:237.600000px;}
.ya9{bottom:239.760000px;}
.y99{bottom:240.120000px;}
.y32{bottom:241.560000px;}
.y65{bottom:257.040000px;}
.yd4{bottom:258.840000px;}
.ya8{bottom:259.200000px;}
.y98{bottom:259.560000px;}
.y31{bottom:260.640000px;}
.y64{bottom:276.120000px;}
.ya7{bottom:278.280000px;}
.y97{bottom:278.640000px;}
.y30{bottom:280.080000px;}
.y63{bottom:295.560000px;}
.yd3{bottom:297.360000px;}
.y96{bottom:297.720000px;}
.y2f{bottom:299.160000px;}
.y62{bottom:314.640000px;}
.yd2{bottom:316.440000px;}
.ya6{bottom:316.800000px;}
.y95{bottom:317.160000px;}
.y2e{bottom:318.600000px;}
.y61{bottom:333.720000px;}
.yd1{bottom:335.880000px;}
.y94{bottom:336.240000px;}
.y2d{bottom:337.680000px;}
.y60{bottom:353.160000px;}
.yd0{bottom:354.960000px;}
.ya5{bottom:355.320000px;}
.y93{bottom:355.680000px;}
.y2c{bottom:356.760000px;}
.y5f{bottom:372.240000px;}
.ycf{bottom:374.400000px;}
.y92{bottom:374.760000px;}
.y2b{bottom:376.200000px;}
.y5e{bottom:391.680000px;}
.yce{bottom:393.480000px;}
.ya4{bottom:393.840000px;}
.y91{bottom:394.200000px;}
.y2a{bottom:395.280000px;}
.y5d{bottom:410.760000px;}
.ya3{bottom:412.920000px;}
.y90{bottom:413.280000px;}
.y29{bottom:414.720000px;}
.y5c{bottom:429.840000px;}
.ycd{bottom:432.000000px;}
.y8f{bottom:432.360000px;}
.y28{bottom:433.800000px;}
.y5b{bottom:449.280000px;}
.ycc{bottom:451.080000px;}
.ya2{bottom:451.440000px;}
.y8e{bottom:451.800000px;}
.y27{bottom:453.240000px;}
.y5a{bottom:468.360000px;}
.ycb{bottom:470.520000px;}
.y8d{bottom:470.880000px;}
.y26{bottom:472.320000px;}
.y59{bottom:487.800000px;}
.yca{bottom:489.600000px;}
.ya1{bottom:489.960000px;}
.y8c{bottom:490.320000px;}
.y25{bottom:491.400000px;}
.y58{bottom:506.880000px;}
.yc9{bottom:509.040000px;}
.y8b{bottom:509.400000px;}
.y24{bottom:510.840000px;}
.y57{bottom:525.960000px;}
.yc8{bottom:528.120000px;}
.y8a{bottom:528.480000px;}
.y23{bottom:529.920000px;}
.y56{bottom:545.400000px;}
.yc7{bottom:547.200000px;}
.y89{bottom:547.920000px;}
.y22{bottom:550.080000px;}
.y55{bottom:564.480000px;}
.yc6{bottom:566.640000px;}
.y88{bottom:567.000000px;}
.y21{bottom:569.160000px;}
.y54{bottom:583.920000px;}
.yc5{bottom:585.720000px;}
.y87{bottom:586.440000px;}
.y20{bottom:588.600000px;}
.y53{bottom:603.000000px;}
.yc4{bottom:605.160000px;}
.y86{bottom:605.520000px;}
.y1f{bottom:607.680000px;}
.y52{bottom:622.080000px;}
.yc3{bottom:624.240000px;}
.y85{bottom:624.600000px;}
.y1e{bottom:627.120000px;}
.y51{bottom:641.520000px;}
.yc2{bottom:643.320000px;}
.y84{bottom:644.040000px;}
.y1d{bottom:646.200000px;}
.y50{bottom:660.600000px;}
.yc1{bottom:662.760000px;}
.y83{bottom:663.120000px;}
.y1c{bottom:665.640000px;}
.y4f{bottom:680.040000px;}
.yc0{bottom:681.840000px;}
.y82{bottom:682.560000px;}
.y1b{bottom:684.720000px;}
.y4e{bottom:699.120000px;}
.ybf{bottom:701.280000px;}
.y81{bottom:701.640000px;}
.y1a{bottom:703.800000px;}
.y4d{bottom:718.200000px;}
.ybe{bottom:720.360000px;}
.y80{bottom:720.720000px;}
.y19{bottom:723.240000px;}
.y4c{bottom:737.640000px;}
.ybd{bottom:739.800000px;}
.y7f{bottom:740.160000px;}
.y18{bottom:742.320000px;}
.y4b{bottom:756.720000px;}
.ybc{bottom:758.880000px;}
.y7e{bottom:759.240000px;}
.y17{bottom:761.760000px;}
.y4a{bottom:776.160000px;}
.ybb{bottom:778.320000px;}
.y7d{bottom:778.680000px;}
.y16{bottom:780.840000px;}
.y49{bottom:795.240000px;}
.yba{bottom:797.400000px;}
.y7c{bottom:797.760000px;}
.y15{bottom:799.920000px;}
.y48{bottom:814.320000px;}
.y7b{bottom:816.840000px;}
.y14{bottom:819.360000px;}
.y47{bottom:833.760000px;}
.yde{bottom:834.480000px;}
.yb9{bottom:835.920000px;}
.y7a{bottom:836.280000px;}
.y13{bottom:838.440000px;}
.y46{bottom:852.840000px;}
.ydd{bottom:853.920000px;}
.y79{bottom:855.360000px;}
.y12{bottom:857.880000px;}
.y45{bottom:872.280000px;}
.ydc{bottom:873.000000px;}
.yb8{bottom:874.440000px;}
.y78{bottom:874.800000px;}
.y11{bottom:876.960000px;}
.y44{bottom:891.360000px;}
.ydb{bottom:893.160000px;}
.yb7{bottom:893.520000px;}
.y77{bottom:893.880000px;}
.y10{bottom:903.240000px;}
.y43{bottom:910.440000px;}
.yda{bottom:912.240000px;}
.y76{bottom:912.960000px;}
.yf{bottom:916.920000px;}
.y42{bottom:929.880000px;}
.yd9{bottom:931.680000px;}
.yb6{bottom:932.040000px;}
.y75{bottom:932.400000px;}
.ye{bottom:943.200000px;}
.y41{bottom:948.960000px;}
.yd8{bottom:950.760000px;}
.y74{bottom:951.480000px;}
.yd{bottom:956.520000px;}
.y40{bottom:968.400000px;}
.yb5{bottom:970.560000px;}
.y73{bottom:970.920000px;}
.yc{bottom:975.600000px;}
.y3f{bottom:987.480000px;}
.yb4{bottom:989.640000px;}
.y72{bottom:990.000000px;}
.yb{bottom:995.040000px;}
.y3e{bottom:1007.640000px;}
.yb3{bottom:1009.080000px;}
.y71{bottom:1009.440000px;}
.ya{bottom:1014.120000px;}
.y3d{bottom:1026.720000px;}
.yb2{bottom:1028.160000px;}
.y70{bottom:1028.520000px;}
.y9{bottom:1035.360000px;}
.y3c{bottom:1046.880000px;}
.yb1{bottom:1047.240000px;}
.y6f{bottom:1047.600000px;}
.y8{bottom:1060.560000px;}
.y3b{bottom:1065.960000px;}
.yb0{bottom:1066.680000px;}
.y6e{bottom:1067.040000px;}
.y7{bottom:1085.040000px;}
.y3a{bottom:1086.120000px;}
.yaf{bottom:1105.200000px;}
.y6{bottom:1105.560000px;}
.y5{bottom:1124.640000px;}
.y4{bottom:1143.720000px;}
.yae{bottom:1162.800000px;}
.y3{bottom:1163.160000px;}
.y1{bottom:1194.120000px;}
.h8{height:27.833203px;}
.h4{height:44.055000px;}
.h5{height:44.149219px;}
.h7{height:44.887500px;}
.h3{height:45.895781px;}
.h2{height:50.242500px;}
.h9{height:50.273438px;}
.h6{height:61.987500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:84.959856px;}
.x4{left:106.184700px;}
.x5{left:116.398692px;}
.xd{left:138.959856px;}
.x6{left:149.508540px;}
.xc{left:214.493040px;}
.x2{left:433.840680px;}
.x3{left:446.384880px;}
.xa{left:455.738040px;}
.xb{left:607.714920px;}
.x7{left:635.574960px;}
.x8{left:646.487640px;}
.x9{left:807.809760px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls24{letter-spacing:-0.304128pt;}
.lsc{letter-spacing:-0.275968pt;}
.ls16{letter-spacing:-0.264704pt;}
.ls13{letter-spacing:-0.236544pt;}
.ls3b{letter-spacing:-0.230912pt;}
.ls40{letter-spacing:-0.225280pt;}
.ls23{letter-spacing:-0.208384pt;}
.ls21{letter-spacing:-0.202752pt;}
.ls10{letter-spacing:-0.197120pt;}
.lsb{letter-spacing:-0.191488pt;}
.ls15{letter-spacing:-0.185856pt;}
.ls35{letter-spacing:-0.180224pt;}
.ls9{letter-spacing:-0.174592pt;}
.ls7{letter-spacing:-0.168960pt;}
.ls1a{letter-spacing:-0.157696pt;}
.ls12{letter-spacing:-0.152064pt;}
.lsa{letter-spacing:-0.146432pt;}
.ls11{letter-spacing:-0.140800pt;}
.lse{letter-spacing:-0.135424pt;}
.ls3a{letter-spacing:-0.135168pt;}
.ls17{letter-spacing:-0.129536pt;}
.ls5{letter-spacing:-0.118272pt;}
.ls8{letter-spacing:-0.117760pt;}
.ls34{letter-spacing:-0.112640pt;}
.ls14{letter-spacing:-0.107008pt;}
.ls19{letter-spacing:-0.090112pt;}
.ls22{letter-spacing:-0.084480pt;}
.ls36{letter-spacing:-0.078848pt;}
.lsd{letter-spacing:-0.070656pt;}
.lsf{letter-spacing:-0.058880pt;}
.ls33{letter-spacing:-0.056320pt;}
.ls18{letter-spacing:-0.045056pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.004736pt;}
.ls3{letter-spacing:0.102400pt;}
.ls2a{letter-spacing:0.262528pt;}
.ls2{letter-spacing:0.282112pt;}
.ls2f{letter-spacing:0.326400pt;}
.ls2c{letter-spacing:0.771840pt;}
.ls2b{letter-spacing:1.017600pt;}
.ls32{letter-spacing:1.200000pt;}
.ls25{letter-spacing:2.525440pt;}
.ls1e{letter-spacing:3.582720pt;}
.ls20{letter-spacing:4.134400pt;}
.ls3f{letter-spacing:4.509440pt;}
.ls37{letter-spacing:5.286016pt;}
.ls28{letter-spacing:5.564672pt;}
.ls26{letter-spacing:5.750912pt;}
.ls3d{letter-spacing:6.883840pt;}
.ls27{letter-spacing:8.273920pt;}
.ls30{letter-spacing:8.377088pt;}
.ls1d{letter-spacing:8.860288pt;}
.ls31{letter-spacing:10.761344pt;}
.ls39{letter-spacing:12.025600pt;}
.ls3c{letter-spacing:12.341760pt;}
.ls38{letter-spacing:12.732160pt;}
.ls1c{letter-spacing:14.364160pt;}
.ls29{letter-spacing:15.457920pt;}
.ls1f{letter-spacing:16.053760pt;}
.ls3e{letter-spacing:19.249920pt;}
.ls4{letter-spacing:57.537152pt;}
.ls1b{letter-spacing:75.119104pt;}
.ls2d{letter-spacing:77.057408pt;}
.ls1{letter-spacing:1071.301888pt;}
.ls0{letter-spacing:1794.844800pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189120pt;}
.ws2{word-spacing:-12.728320pt;}
.wsd{word-spacing:-12.683264pt;}
.wsc{word-spacing:-12.643840pt;}
.ws6{word-spacing:-12.621312pt;}
.ws13{word-spacing:-12.615680pt;}
.ws11{word-spacing:-12.610048pt;}
.ws10{word-spacing:-12.598784pt;}
.wsa{word-spacing:-12.587520pt;}
.ws3{word-spacing:-12.581888pt;}
.wsb{word-spacing:-12.576256pt;}
.ws0{word-spacing:-12.559360pt;}
.ws14{word-spacing:-12.553728pt;}
.ws12{word-spacing:-12.548096pt;}
.ws9{word-spacing:-12.542464pt;}
.wse{word-spacing:-12.536832pt;}
.ws5{word-spacing:-12.531200pt;}
.ws15{word-spacing:-12.497408pt;}
.ws8{word-spacing:-0.056320pt;}
.wsf{word-spacing:-0.053760pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-3.435520pt;}
._7{margin-left:-2.309120pt;}
._0{margin-left:-0.901120pt;}
._1{width:0.901120pt;}
._a{width:1.830144pt;}
._9{width:2.816000pt;}
._4{width:4.111360pt;}
._5{width:5.022464pt;}
._3{width:6.026240pt;}
._6{width:7.490560pt;}
._c{width:8.391680pt;}
._d{width:10.137600pt;}
._2{width:11.545600pt;}
._e{width:14.270464pt;}
._f{width:15.206400pt;}
._8{width:16.501760pt;}
._b{width:17.684480pt;}
._12{width:19.148800pt;}
._13{width:20.049920pt;}
._17{width:27.202560pt;}
._18{width:28.416512pt;}
._11{width:31.370240pt;}
._16{width:62.965760pt;}
._19{width:71.976960pt;}
._1a{width:72.867328pt;}
._14{width:94.188160pt;}
._15{width:95.082240pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y6d{bottom:91.520000pt;}
.ya0{bottom:93.760000pt;}
.y39{bottom:95.040000pt;}
.y6c{bottom:108.800000pt;}
.y9f{bottom:111.040000pt;}
.y38{bottom:112.320000pt;}
.y6b{bottom:125.760000pt;}
.yad{bottom:127.680000pt;}
.y9e{bottom:128.000000pt;}
.y37{bottom:129.280000pt;}
.y6a{bottom:143.040000pt;}
.yac{bottom:144.640000pt;}
.y9d{bottom:145.280000pt;}
.y36{bottom:146.240000pt;}
.y69{bottom:160.000000pt;}
.yab{bottom:161.600000pt;}
.yd7{bottom:161.920000pt;}
.y9c{bottom:162.240000pt;}
.y35{bottom:163.520000pt;}
.y68{bottom:176.960000pt;}
.yd6{bottom:178.880000pt;}
.y9b{bottom:179.200000pt;}
.y34{bottom:180.480000pt;}
.y67{bottom:194.240000pt;}
.yd5{bottom:195.840000pt;}
.yaa{bottom:196.160000pt;}
.y9a{bottom:196.480000pt;}
.y33{bottom:197.760000pt;}
.y66{bottom:211.200000pt;}
.ya9{bottom:213.120000pt;}
.y99{bottom:213.440000pt;}
.y32{bottom:214.720000pt;}
.y65{bottom:228.480000pt;}
.yd4{bottom:230.080000pt;}
.ya8{bottom:230.400000pt;}
.y98{bottom:230.720000pt;}
.y31{bottom:231.680000pt;}
.y64{bottom:245.440000pt;}
.ya7{bottom:247.360000pt;}
.y97{bottom:247.680000pt;}
.y30{bottom:248.960000pt;}
.y63{bottom:262.720000pt;}
.yd3{bottom:264.320000pt;}
.y96{bottom:264.640000pt;}
.y2f{bottom:265.920000pt;}
.y62{bottom:279.680000pt;}
.yd2{bottom:281.280000pt;}
.ya6{bottom:281.600000pt;}
.y95{bottom:281.920000pt;}
.y2e{bottom:283.200000pt;}
.y61{bottom:296.640000pt;}
.yd1{bottom:298.560000pt;}
.y94{bottom:298.880000pt;}
.y2d{bottom:300.160000pt;}
.y60{bottom:313.920000pt;}
.yd0{bottom:315.520000pt;}
.ya5{bottom:315.840000pt;}
.y93{bottom:316.160000pt;}
.y2c{bottom:317.120000pt;}
.y5f{bottom:330.880000pt;}
.ycf{bottom:332.800000pt;}
.y92{bottom:333.120000pt;}
.y2b{bottom:334.400000pt;}
.y5e{bottom:348.160000pt;}
.yce{bottom:349.760000pt;}
.ya4{bottom:350.080000pt;}
.y91{bottom:350.400000pt;}
.y2a{bottom:351.360000pt;}
.y5d{bottom:365.120000pt;}
.ya3{bottom:367.040000pt;}
.y90{bottom:367.360000pt;}
.y29{bottom:368.640000pt;}
.y5c{bottom:382.080000pt;}
.ycd{bottom:384.000000pt;}
.y8f{bottom:384.320000pt;}
.y28{bottom:385.600000pt;}
.y5b{bottom:399.360000pt;}
.ycc{bottom:400.960000pt;}
.ya2{bottom:401.280000pt;}
.y8e{bottom:401.600000pt;}
.y27{bottom:402.880000pt;}
.y5a{bottom:416.320000pt;}
.ycb{bottom:418.240000pt;}
.y8d{bottom:418.560000pt;}
.y26{bottom:419.840000pt;}
.y59{bottom:433.600000pt;}
.yca{bottom:435.200000pt;}
.ya1{bottom:435.520000pt;}
.y8c{bottom:435.840000pt;}
.y25{bottom:436.800000pt;}
.y58{bottom:450.560000pt;}
.yc9{bottom:452.480000pt;}
.y8b{bottom:452.800000pt;}
.y24{bottom:454.080000pt;}
.y57{bottom:467.520000pt;}
.yc8{bottom:469.440000pt;}
.y8a{bottom:469.760000pt;}
.y23{bottom:471.040000pt;}
.y56{bottom:484.800000pt;}
.yc7{bottom:486.400000pt;}
.y89{bottom:487.040000pt;}
.y22{bottom:488.960000pt;}
.y55{bottom:501.760000pt;}
.yc6{bottom:503.680000pt;}
.y88{bottom:504.000000pt;}
.y21{bottom:505.920000pt;}
.y54{bottom:519.040000pt;}
.yc5{bottom:520.640000pt;}
.y87{bottom:521.280000pt;}
.y20{bottom:523.200000pt;}
.y53{bottom:536.000000pt;}
.yc4{bottom:537.920000pt;}
.y86{bottom:538.240000pt;}
.y1f{bottom:540.160000pt;}
.y52{bottom:552.960000pt;}
.yc3{bottom:554.880000pt;}
.y85{bottom:555.200000pt;}
.y1e{bottom:557.440000pt;}
.y51{bottom:570.240000pt;}
.yc2{bottom:571.840000pt;}
.y84{bottom:572.480000pt;}
.y1d{bottom:574.400000pt;}
.y50{bottom:587.200000pt;}
.yc1{bottom:589.120000pt;}
.y83{bottom:589.440000pt;}
.y1c{bottom:591.680000pt;}
.y4f{bottom:604.480000pt;}
.yc0{bottom:606.080000pt;}
.y82{bottom:606.720000pt;}
.y1b{bottom:608.640000pt;}
.y4e{bottom:621.440000pt;}
.ybf{bottom:623.360000pt;}
.y81{bottom:623.680000pt;}
.y1a{bottom:625.600000pt;}
.y4d{bottom:638.400000pt;}
.ybe{bottom:640.320000pt;}
.y80{bottom:640.640000pt;}
.y19{bottom:642.880000pt;}
.y4c{bottom:655.680000pt;}
.ybd{bottom:657.600000pt;}
.y7f{bottom:657.920000pt;}
.y18{bottom:659.840000pt;}
.y4b{bottom:672.640000pt;}
.ybc{bottom:674.560000pt;}
.y7e{bottom:674.880000pt;}
.y17{bottom:677.120000pt;}
.y4a{bottom:689.920000pt;}
.ybb{bottom:691.840000pt;}
.y7d{bottom:692.160000pt;}
.y16{bottom:694.080000pt;}
.y49{bottom:706.880000pt;}
.yba{bottom:708.800000pt;}
.y7c{bottom:709.120000pt;}
.y15{bottom:711.040000pt;}
.y48{bottom:723.840000pt;}
.y7b{bottom:726.080000pt;}
.y14{bottom:728.320000pt;}
.y47{bottom:741.120000pt;}
.yde{bottom:741.760000pt;}
.yb9{bottom:743.040000pt;}
.y7a{bottom:743.360000pt;}
.y13{bottom:745.280000pt;}
.y46{bottom:758.080000pt;}
.ydd{bottom:759.040000pt;}
.y79{bottom:760.320000pt;}
.y12{bottom:762.560000pt;}
.y45{bottom:775.360000pt;}
.ydc{bottom:776.000000pt;}
.yb8{bottom:777.280000pt;}
.y78{bottom:777.600000pt;}
.y11{bottom:779.520000pt;}
.y44{bottom:792.320000pt;}
.ydb{bottom:793.920000pt;}
.yb7{bottom:794.240000pt;}
.y77{bottom:794.560000pt;}
.y10{bottom:802.880000pt;}
.y43{bottom:809.280000pt;}
.yda{bottom:810.880000pt;}
.y76{bottom:811.520000pt;}
.yf{bottom:815.040000pt;}
.y42{bottom:826.560000pt;}
.yd9{bottom:828.160000pt;}
.yb6{bottom:828.480000pt;}
.y75{bottom:828.800000pt;}
.ye{bottom:838.400000pt;}
.y41{bottom:843.520000pt;}
.yd8{bottom:845.120000pt;}
.y74{bottom:845.760000pt;}
.yd{bottom:850.240000pt;}
.y40{bottom:860.800000pt;}
.yb5{bottom:862.720000pt;}
.y73{bottom:863.040000pt;}
.yc{bottom:867.200000pt;}
.y3f{bottom:877.760000pt;}
.yb4{bottom:879.680000pt;}
.y72{bottom:880.000000pt;}
.yb{bottom:884.480000pt;}
.y3e{bottom:895.680000pt;}
.yb3{bottom:896.960000pt;}
.y71{bottom:897.280000pt;}
.ya{bottom:901.440000pt;}
.y3d{bottom:912.640000pt;}
.yb2{bottom:913.920000pt;}
.y70{bottom:914.240000pt;}
.y9{bottom:920.320000pt;}
.y3c{bottom:930.560000pt;}
.yb1{bottom:930.880000pt;}
.y6f{bottom:931.200000pt;}
.y8{bottom:942.720000pt;}
.y3b{bottom:947.520000pt;}
.yb0{bottom:948.160000pt;}
.y6e{bottom:948.480000pt;}
.y7{bottom:964.480000pt;}
.y3a{bottom:965.440000pt;}
.yaf{bottom:982.400000pt;}
.y6{bottom:982.720000pt;}
.y5{bottom:999.680000pt;}
.y4{bottom:1016.640000pt;}
.yae{bottom:1033.600000pt;}
.y3{bottom:1033.920000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:24.740625pt;}
.h4{height:39.160000pt;}
.h5{height:39.243750pt;}
.h7{height:39.900000pt;}
.h3{height:40.796250pt;}
.h2{height:44.660000pt;}
.h9{height:44.687500pt;}
.h6{height:55.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519872pt;}
.x4{left:94.386400pt;}
.x5{left:103.465504pt;}
.xd{left:123.519872pt;}
.x6{left:132.896480pt;}
.xc{left:190.660480pt;}
.x2{left:385.636160pt;}
.x3{left:396.786560pt;}
.xa{left:405.100480pt;}
.xb{left:540.191040pt;}
.x7{left:564.955520pt;}
.x8{left:574.655680pt;}
.x9{left:718.053120pt;}
}




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