
    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_57461cd08baaeedcc58cd43f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_16018859e2b2036e17c939a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_e0ef1701d4f0854ca1ba26cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4ad3a8a48f620f24c4f8291e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_296fe9f57b33597d15de0995.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_f42d3bf123fc51449e889d24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9e86eb39406bf857491f5096.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_25a40e52d6dea947312c04fb.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_bfc3a80df7963b1214f454df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923828;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_af0a92481fd10ba354fae47e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.800781;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_a3c552cb9e53161299ba1dd8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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_987092ceaab8296dc2d301c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937988;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_f46cf6741bd2d0e5cbe13452.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.762207;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);}
.m8{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.032604px;}
.ls2{letter-spacing:0.070759px;}
.ls3{letter-spacing:0.115598px;}
.ls48{letter-spacing:0.151232px;}
.ls47{letter-spacing:0.252904px;}
.ls2c{letter-spacing:0.278433px;}
.ls2e{letter-spacing:0.278914px;}
.ls30{letter-spacing:0.279317px;}
.ls6{letter-spacing:0.282103px;}
.ls13{letter-spacing:0.282310px;}
.ls8{letter-spacing:0.282569px;}
.ls23{letter-spacing:0.282636px;}
.lsa{letter-spacing:0.283049px;}
.ls24{letter-spacing:0.284163px;}
.ls31{letter-spacing:0.287343px;}
.ls2b{letter-spacing:0.288407px;}
.ls2d{letter-spacing:0.288888px;}
.ls15{letter-spacing:0.289282px;}
.ls2f{letter-spacing:0.289369px;}
.ls17{letter-spacing:0.289763px;}
.ls19{letter-spacing:0.290243px;}
.ls7{letter-spacing:0.292620px;}
.ls9{letter-spacing:0.293086px;}
.lsb{letter-spacing:0.293567px;}
.ls14{letter-spacing:0.295474px;}
.ls2a{letter-spacing:0.295544px;}
.ls25{letter-spacing:0.299597px;}
.ls28{letter-spacing:0.299751px;}
.ls32{letter-spacing:0.300122px;}
.ls34{letter-spacing:0.300728px;}
.ls16{letter-spacing:0.302291px;}
.ls29{letter-spacing:0.302358px;}
.ls18{letter-spacing:0.302771px;}
.ls1a{letter-spacing:0.303252px;}
.ls1b{letter-spacing:0.306560px;}
.ls1d{letter-spacing:0.307041px;}
.ls36{letter-spacing:0.307419px;}
.ls1f{letter-spacing:0.307492px;}
.ls21{letter-spacing:0.307847px;}
.ls38{letter-spacing:0.307900px;}
.ls3a{letter-spacing:0.308381px;}
.ls26{letter-spacing:0.312088px;}
.ls33{letter-spacing:0.313131px;}
.ls1c{letter-spacing:0.319569px;}
.ls1e{letter-spacing:0.320050px;}
.ls35{letter-spacing:0.320103px;}
.ls37{letter-spacing:0.320583px;}
.ls20{letter-spacing:0.320656px;}
.ls22{letter-spacing:0.321011px;}
.ls39{letter-spacing:0.321064px;}
.ls46{letter-spacing:0.348990px;}
.ls44{letter-spacing:0.349190px;}
.ls42{letter-spacing:0.349796px;}
.ls40{letter-spacing:0.350151px;}
.ls45{letter-spacing:0.361998px;}
.ls43{letter-spacing:0.362354px;}
.ls41{letter-spacing:0.362960px;}
.ls3f{letter-spacing:0.363160px;}
.ls3d{letter-spacing:0.363766px;}
.ls3b{letter-spacing:0.364247px;}
.ls3e{letter-spacing:0.376324px;}
.ls3c{letter-spacing:0.376930px;}
.ls11{letter-spacing:0.384343px;}
.lsf{letter-spacing:0.384823px;}
.lsd{letter-spacing:0.391729px;}
.lse{letter-spacing:0.395403px;}
.ls12{letter-spacing:0.397026px;}
.ls10{letter-spacing:0.397429px;}
.lsc{letter-spacing:0.402184px;}
.ls27{letter-spacing:0.469738px;}
.ls5{letter-spacing:0.501447px;}
.ls4{letter-spacing:0.622360px;}
.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;}
}
.ws2{word-spacing:-66.242700px;}
.ws1{word-spacing:-18.000676px;}
.ws4{word-spacing:-15.691530px;}
.ws6{word-spacing:-13.024051px;}
.ws5{word-spacing:-12.396257px;}
.ws7{word-spacing:-10.513244px;}
.ws8{word-spacing:-9.100984px;}
.ws9{word-spacing:-8.227290px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:153.572533px;}
._11{margin-left:-10.896806px;}
._d{margin-left:-2.232291px;}
._0{margin-left:-1.226929px;}
._1{width:1.228526px;}
._b{width:2.534055px;}
._3{width:3.698830px;}
._4{width:4.844947px;}
._5{width:5.967683px;}
._9{width:7.844696px;}
._6{width:9.115286px;}
._7{width:10.364763px;}
._c{width:11.656578px;}
._8{width:14.116474px;}
._a{width:15.808530px;}
._2{width:23.449916px;}
._e{width:82.427858px;}
._f{width:124.135125px;}
._10{width:171.396510px;}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(46,110,158);}
.fc3{color:rgb(0,0,10);}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:23.851007px;}
.fs9{font-size:33.894235px;}
.fsc{font-size:36.403937px;}
.fsa{font-size:42.052976px;}
.fs2{font-size:45.361800px;}
.fsb{font-size:47.073852px;}
.fs7{font-size:49.585028px;}
.fsd{font-size:51.572735px;}
.fs8{font-size:52.096204px;}
.fse{font-size:57.745243px;}
.fs6{font-size:62.766120px;}
.fs0{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs1{font-size:102.244050px;}
.fs5{font-size:120.244505px;}
.y0{bottom:0.000000px;}
.yae{bottom:2.699958px;}
.ya7{bottom:2.699960px;}
.yc2{bottom:2.699993px;}
.y9e{bottom:2.700027px;}
.yb6{bottom:2.700028px;}
.y2{bottom:4.500000px;}
.ya{bottom:4.680039px;}
.yd{bottom:5.579990px;}
.y6{bottom:5.580025px;}
.y1e{bottom:24.840088px;}
.y1d{bottom:83.160049px;}
.y4b{bottom:114.840088px;}
.y5a{bottom:115.740074px;}
.ybe{bottom:119.340088px;}
.y1c{bottom:121.320099px;}
.y7b{bottom:121.500068px;}
.y34{bottom:135.540047px;}
.ybd{bottom:141.840088px;}
.y95{bottom:149.400055px;}
.y122{bottom:154.969261px;}
.y121{bottom:154.991914px;}
.y1b{bottom:159.480079px;}
.y120{bottom:159.663599px;}
.y7a{bottom:160.740074px;}
.ybc{bottom:161.640060px;}
.y59{bottom:164.880066px;}
.y55{bottom:171.360077px;}
.y33{bottom:173.700096px;}
.y70{bottom:174.960091px;}
.y11f{bottom:175.689077px;}
.y11e{bottom:180.184200px;}
.ybb{bottom:181.620072px;}
.y11d{bottom:188.086840px;}
.y1a{bottom:197.640060px;}
.y79{bottom:199.980079px;}
.yba{bottom:201.420043px;}
.y94{bottom:206.640060px;}
.y6f{bottom:208.080093px;}
.y32{bottom:211.860077px;}
.y58{bottom:213.840088px;}
.y54{bottom:216.540047px;}
.yb9{bottom:221.220085px;}
.y11c{bottom:230.583708px;}
.y19{bottom:235.800041px;}
.y78{bottom:239.040047px;}
.yb8{bottom:241.020058px;}
.y6e{bottom:241.380066px;}
.y11b{bottom:248.576411px;}
.y31{bottom:250.020058px;}
.y85{bottom:250.560036px;}
.yd4{bottom:257.940033px;}
.yb7{bottom:260.820099px;}
.y53{bottom:261.720085px;}
.y57{bottom:262.980079px;}
.y93{bottom:263.700096px;}
.y119{bottom:268.023270px;}
.y11a{bottom:268.387800px;}
.y18{bottom:273.960091px;}
.yb5{bottom:278.640060px;}
.y118{bottom:283.309903px;}
.y30{bottom:288.180039px;}
.y115{bottom:298.254493px;}
.y117{bottom:298.265518px;}
.y116{bottom:298.269626px;}
.yb4{bottom:301.140060px;}
.y4a{bottom:304.560036px;}
.y52{bottom:306.900055px;}
.y56{bottom:311.940033px;}
.y17{bottom:312.120072px;}
.y114{bottom:313.191087px;}
.y92{bottom:320.760064px;}
.yb3{bottom:320.940033px;}
.y2f{bottom:326.340088px;}
.y113{bottom:327.952859px;}
.y112{bottom:327.971759px;}
.yb2{bottom:340.740074px;}
.y111{bottom:341.808387px;}
.y49{bottom:343.620072px;}
.y16{bottom:350.280052px;}
.y51{bottom:352.080093px;}
.yd7{bottom:353.160049px;}
.yb1{bottom:360.540047px;}
.y110{bottom:360.894583px;}
.y2e{bottom:364.500068px;}
.y6d{bottom:371.700096px;}
.y48{bottom:374.580093px;}
.y10f{bottom:376.196889px;}
.y91{bottom:377.820099px;}
.yb0{bottom:380.340088px;}
.y15{bottom:388.440033px;}
.y10e{bottom:391.133483px;}
.y50{bottom:397.440033px;}
.yaf{bottom:400.140060px;}
.y2d{bottom:402.660049px;}
.y6c{bottom:404.100083px;}
.y10d{bottom:408.232366px;}
.y47{bottom:414.720085px;}
.yad{bottom:417.960091px;}
.y84{bottom:419.040047px;}
.y81{bottom:421.560036px;}
.y10c{bottom:423.534673px;}
.y14{bottom:426.600083px;}
.y90{bottom:435.060036px;}
.y6b{bottom:436.500068px;}
.y10b{bottom:438.650125px;}
.yac{bottom:440.460091px;}
.y2c{bottom:440.820099px;}
.y4f{bottom:442.620072px;}
.y10a{bottom:453.411898px;}
.y46{bottom:453.960091px;}
.ycf{bottom:455.040047px;}
.y83{bottom:460.080093px;}
.yab{bottom:460.260064px;}
.y109{bottom:468.535346px;}
.y6a{bottom:468.900055px;}
.y2b{bottom:478.980079px;}
.yaa{bottom:480.060036px;}
.y4e{bottom:480.780052px;}
.y108{bottom:483.654835px;}
.yd0{bottom:491.040047px;}
.y45{bottom:492.120072px;}
.y82{bottom:498.240074px;}
.y107{bottom:498.595466px;}
.ya9{bottom:499.860077px;}
.y69{bottom:501.300041px;}
.y106{bottom:515.694271px;}
.y2a{bottom:517.140060px;}
.ye8{bottom:517.320099px;}
.y4d{bottom:518.940033px;}
.ya8{bottom:519.660049px;}
.y44{bottom:530.280052px;}
.y9{bottom:531.000068px;}
.y68{bottom:533.700096px;}
.ya6{bottom:537.480079px;}
.y105{bottom:538.914077px;}
.ye7{bottom:542.160049px;}
.y8f{bottom:549.180039px;}
.y29{bottom:555.300041px;}
.y8{bottom:556.020058px;}
.y4c{bottom:557.820099px;}
.ya5{bottom:559.980079px;}
.y7{bottom:561.600083px;}
.y104{bottom:561.776089px;}
.y67{bottom:566.100083px;}
.ye6{bottom:567.000068px;}
.y43{bottom:568.440033px;}
.yd5{bottom:569.520058px;}
.y103{bottom:576.891619px;}
.ya4{bottom:579.780052px;}
.y13{bottom:582.660049px;}
.y5{bottom:586.620072px;}
.ye5{bottom:591.840088px;}
.y4{bottom:592.200096px;}
.y28{bottom:593.640060px;}
.y66{bottom:599.220085px;}
.y102{bottom:599.574773px;}
.ya3{bottom:599.580093px;}
.y8e{bottom:606.420043px;}
.y42{bottom:606.600083px;}
.ye4{bottom:616.680039px;}
.ya2{bottom:619.380066px;}
.y101{bottom:622.436824px;}
.y72{bottom:624.960091px;}
.y65{bottom:631.620072px;}
.y27{bottom:631.800041px;}
.ya1{bottom:639.180039px;}
.y12{bottom:641.160049px;}
.ye3{bottom:641.520058px;}
.y41{bottom:644.760064px;}
.y100{bottom:645.477733px;}
.yd1{bottom:649.980079px;}
.ya0{bottom:658.980079px;}
.yff{bottom:660.414366px;}
.y8d{bottom:663.480079px;}
.y64{bottom:664.020058px;}
.ye2{bottom:666.360077px;}
.y26{bottom:669.960091px;}
.yce{bottom:673.200096px;}
.yfe{bottom:675.533816px;}
.y9f{bottom:678.780052px;}
.y11{bottom:679.320099px;}
.y40{bottom:682.920043px;}
.ye1{bottom:691.200061px;}
.y63{bottom:696.420078px;}
.y9d{bottom:696.780052px;}
.yfd{bottom:698.395866px;}
.y25{bottom:708.840054px;}
.y10{bottom:709.740074px;}
.yfc{bottom:713.332499px;}
.ye0{bottom:716.040081px;}
.y9c{bottom:719.280052px;}
.y8c{bottom:720.540081px;}
.y3f{bottom:721.080059px;}
.y73{bottom:722.160049px;}
.yfb{bottom:728.455948px;}
.y62{bottom:728.820065px;}
.yf{bottom:734.760064px;}
.y9b{bottom:739.080059px;}
.yd2{bottom:739.620072px;}
.ye{bottom:740.340054px;}
.ydf{bottom:740.880066px;}
.yfa{bottom:743.392619px;}
.y24{bottom:748.980079px;}
.y9a{bottom:758.880066px;}
.y3e{bottom:759.240074px;}
.ybf{bottom:760.860077px;}
.y61{bottom:761.220051px;}
.yc{bottom:765.360077px;}
.yde{bottom:765.720051px;}
.yf9{bottom:766.433489px;}
.yb{bottom:770.940067px;}
.y8b{bottom:777.780052px;}
.y99{bottom:778.680073px;}
.yf8{bottom:781.378079px;}
.y23{bottom:788.940067px;}
.ydd{bottom:790.560070px;}
.yf7{bottom:796.314751px;}
.y3d{bottom:797.400055px;}
.y98{bottom:798.480079px;}
.yf6{bottom:811.438199px;}
.ydc{bottom:815.400055px;}
.y80{bottom:822.600083px;}
.yf5{bottom:826.553691px;}
.y60{bottom:826.920078px;}
.y75{bottom:828.360077px;}
.y22{bottom:828.900055px;}
.y8a{bottom:834.840054px;}
.y3c{bottom:835.560070px;}
.ydb{bottom:840.240074px;}
.yf4{bottom:849.415741px;}
.y77{bottom:851.760064px;}
.y7f{bottom:863.640060px;}
.yf3{bottom:864.356333px;}
.yda{bottom:865.080059px;}
.y21{bottom:868.140060px;}
.y3b{bottom:873.720051px;}
.yf2{bottom:879.478190px;}
.yd9{bottom:889.920078px;}
.y5f{bottom:891.720051px;}
.y89{bottom:891.900055px;}
.yf1{bottom:894.416414px;}
.ycd{bottom:895.320065px;}
.y3a{bottom:911.880066px;}
.yd8{bottom:914.760064px;}
.yd6{bottom:915.480079px;}
.yf0{bottom:917.278465px;}
.ycc{bottom:917.820065px;}
.yd3{bottom:922.320065px;}
.yef{bottom:932.394771px;}
.ycb{bottom:937.620072px;}
.y7d{bottom:938.160049px;}
.y88{bottom:949.140060px;}
.y39{bottom:950.040081px;}
.y5e{bottom:956.520058px;}
.yca{bottom:957.420078px;}
.yee{bottom:962.640076px;}
.yc9{bottom:975.240074px;}
.yed{bottom:979.918555px;}
.y38{bottom:988.200061px;}
.y5d{bottom:988.920061px;}
.yc8{bottom:997.740074px;}
.y87{bottom:1006.200061px;}
.yeb{bottom:1009.979451px;}
.yc7{bottom:1015.740074px;}
.yec{bottom:1015.913875px;}
.y5c{bottom:1021.320065px;}
.y7e{bottom:1022.760064px;}
.y37{bottom:1026.360060px;}
.yc6{bottom:1038.240074px;}
.yea{bottom:1041.478554px;}
.y5b{bottom:1053.720068px;}
.yc5{bottom:1056.060070px;}
.ye9{bottom:1062.177110px;}
.y86{bottom:1063.260064px;}
.y36{bottom:1064.520058px;}
.y76{bottom:1073.700061px;}
.yc4{bottom:1078.560070px;}
.y97{bottom:1094.580059px;}
.yc3{bottom:1098.360060px;}
.y20{bottom:1101.600065px;}
.y35{bottom:1102.680073px;}
.yc1{bottom:1116.180073px;}
.y7c{bottom:1131.660067px;}
.y71{bottom:1134.900064px;}
.y74{bottom:1137.960065px;}
.yc0{bottom:1138.680064px;}
.y96{bottom:1139.400064px;}
.y1f{bottom:1140.840063px;}
.y3{bottom:1227.240066px;}
.y1{bottom:1242.900066px;}
.h17{height:17.639991px;}
.h16{height:17.639992px;}
.h14{height:17.640026px;}
.h15{height:19.259994px;}
.h12{height:19.260028px;}
.h2{height:19.979994px;}
.h27{height:23.722901px;}
.h5{height:28.799972px;}
.h7{height:28.800007px;}
.h6{height:28.800040px;}
.h1d{height:30.104304px;}
.h21{height:32.635560px;}
.h8{height:33.024631px;}
.h28{height:36.208408px;}
.h1e{height:37.622210px;}
.h24{height:38.679551px;}
.h20{height:42.200973px;}
.h13{height:44.151018px;}
.h1c{height:46.270993px;}
.h23{height:46.640738px;}
.h22{height:46.659331px;}
.h1f{height:46.703433px;}
.h11{height:48.226497px;}
.h29{height:51.816390px;}
.hd{height:52.419938px;}
.h25{height:55.735510px;}
.h1a{height:55.747838px;}
.h1b{height:55.763175px;}
.h26{height:57.435088px;}
.h18{height:57.658416px;}
.h19{height:60.681967px;}
.he{height:61.331313px;}
.ha{height:62.826579px;}
.h9{height:63.951621px;}
.hc{height:64.549300px;}
.h3{height:65.886904px;}
.hb{height:71.615971px;}
.h10{height:73.725425px;}
.h4{height:90.811488px;}
.hf{height:119.598660px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w9{width:7.560001px;}
.w2{width:9.719982px;}
.w8{width:9.719999px;}
.wa{width:19.439999px;}
.w7{width:89.100013px;}
.w5{width:102.779983px;}
.w6{width:151.740006px;}
.w4{width:154.800007px;}
.w3{width:174.060001px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x5{left:-174.060001px;}
.x6{left:-154.800007px;}
.x9{left:-89.100013px;}
.x0{left:0.000000px;}
.x15{left:100.439999px;}
.xa{left:106.379998px;}
.x12{left:119.519998px;}
.x13{left:132.840002px;}
.x24{left:137.879998px;}
.x2e{left:140.584092px;}
.x38{left:143.458965px;}
.x22{left:145.439999px;}
.x21{left:146.520006px;}
.x17{left:148.860008px;}
.x23{left:155.520006px;}
.x18{left:164.699993px;}
.x19{left:182.699993px;}
.x27{left:188.818377px;}
.x25{left:191.340002px;}
.x26{left:195.659998px;}
.x14{left:199.979994px;}
.x1a{left:201.419992px;}
.xb{left:205.379998px;}
.x37{left:220.501575px;}
.x35{left:232.020006px;}
.x36{left:242.096749px;}
.x29{left:251.464985px;}
.x31{left:266.042025px;}
.x30{left:279.182032px;}
.x1{left:336.060001px;}
.x2f{left:345.603641px;}
.x39{left:353.522797px;}
.x33{left:373.135089px;}
.x34{left:386.278005px;}
.x28{left:397.075239px;}
.x1f{left:402.120002px;}
.x1c{left:460.259994px;}
.x1d{left:467.819996px;}
.x2{left:471.420010px;}
.x2a{left:487.981220px;}
.x3{left:490.680005px;}
.x2b{left:492.305314px;}
.x8{left:556.379998px;}
.x7{left:571.860008px;}
.x32{left:625.503427px;}
.x2c{left:635.399585px;}
.x2d{left:639.727190px;}
.x4{left:645.480011px;}
.x1b{left:676.799973px;}
.x20{left:682.559967px;}
.x1e{left:684.899987px;}
.x11{left:767.700027px;}
.x16{left:769.860008px;}
.x10{left:771.659981px;}
.xd{left:775.259994px;}
.xf{left:779.220017px;}
.xe{left:786.600014px;}
.xc{left:800.460023px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028981pt;}
.ls2{letter-spacing:0.062897pt;}
.ls3{letter-spacing:0.102754pt;}
.ls48{letter-spacing:0.134429pt;}
.ls47{letter-spacing:0.224804pt;}
.ls2c{letter-spacing:0.247496pt;}
.ls2e{letter-spacing:0.247924pt;}
.ls30{letter-spacing:0.248282pt;}
.ls6{letter-spacing:0.250758pt;}
.ls13{letter-spacing:0.250942pt;}
.ls8{letter-spacing:0.251172pt;}
.ls23{letter-spacing:0.251232pt;}
.lsa{letter-spacing:0.251599pt;}
.ls24{letter-spacing:0.252589pt;}
.ls31{letter-spacing:0.255416pt;}
.ls2b{letter-spacing:0.256362pt;}
.ls2d{letter-spacing:0.256790pt;}
.ls15{letter-spacing:0.257140pt;}
.ls2f{letter-spacing:0.257217pt;}
.ls17{letter-spacing:0.257567pt;}
.ls19{letter-spacing:0.257994pt;}
.ls7{letter-spacing:0.260107pt;}
.ls9{letter-spacing:0.260521pt;}
.lsb{letter-spacing:0.260948pt;}
.ls14{letter-spacing:0.262644pt;}
.ls2a{letter-spacing:0.262705pt;}
.ls25{letter-spacing:0.266309pt;}
.ls28{letter-spacing:0.266445pt;}
.ls32{letter-spacing:0.266775pt;}
.ls34{letter-spacing:0.267314pt;}
.ls16{letter-spacing:0.268703pt;}
.ls29{letter-spacing:0.268763pt;}
.ls18{letter-spacing:0.269130pt;}
.ls1a{letter-spacing:0.269557pt;}
.ls1b{letter-spacing:0.272498pt;}
.ls1d{letter-spacing:0.272925pt;}
.ls36{letter-spacing:0.273261pt;}
.ls1f{letter-spacing:0.273326pt;}
.ls21{letter-spacing:0.273642pt;}
.ls38{letter-spacing:0.273689pt;}
.ls3a{letter-spacing:0.274116pt;}
.ls26{letter-spacing:0.277412pt;}
.ls33{letter-spacing:0.278339pt;}
.ls1c{letter-spacing:0.284062pt;}
.ls1e{letter-spacing:0.284489pt;}
.ls35{letter-spacing:0.284536pt;}
.ls37{letter-spacing:0.284963pt;}
.ls20{letter-spacing:0.285028pt;}
.ls22{letter-spacing:0.285344pt;}
.ls39{letter-spacing:0.285390pt;}
.ls46{letter-spacing:0.310213pt;}
.ls44{letter-spacing:0.310391pt;}
.ls42{letter-spacing:0.310930pt;}
.ls40{letter-spacing:0.311246pt;}
.ls45{letter-spacing:0.321776pt;}
.ls43{letter-spacing:0.322092pt;}
.ls41{letter-spacing:0.322631pt;}
.ls3f{letter-spacing:0.322809pt;}
.ls3d{letter-spacing:0.323348pt;}
.ls3b{letter-spacing:0.323775pt;}
.ls3e{letter-spacing:0.334510pt;}
.ls3c{letter-spacing:0.335049pt;}
.ls11{letter-spacing:0.341638pt;}
.lsf{letter-spacing:0.342065pt;}
.lsd{letter-spacing:0.348204pt;}
.lse{letter-spacing:0.351470pt;}
.ls12{letter-spacing:0.352912pt;}
.ls10{letter-spacing:0.353270pt;}
.lsc{letter-spacing:0.357497pt;}
.ls27{letter-spacing:0.417545pt;}
.ls5{letter-spacing:0.445730pt;}
.ls4{letter-spacing:0.553209pt;}
.ws2{word-spacing:-58.882400pt;}
.ws1{word-spacing:-16.000601pt;}
.ws4{word-spacing:-13.948027pt;}
.ws6{word-spacing:-11.576934pt;}
.ws5{word-spacing:-11.018895pt;}
.ws7{word-spacing:-9.345106pt;}
.ws8{word-spacing:-8.089764pt;}
.ws9{word-spacing:-7.313146pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:136.508918pt;}
._11{margin-left:-9.686050pt;}
._d{margin-left:-1.984258pt;}
._0{margin-left:-1.090603pt;}
._1{width:1.092023pt;}
._b{width:2.252494pt;}
._3{width:3.287849pt;}
._4{width:4.306620pt;}
._5{width:5.304607pt;}
._9{width:6.973063pt;}
._6{width:8.102477pt;}
._7{width:9.213123pt;}
._c{width:10.361403pt;}
._8{width:12.547977pt;}
._a{width:14.052027pt;}
._2{width:20.844370pt;}
._e{width:73.269207pt;}
._f{width:110.342334pt;}
._10{width:152.352453pt;}
.fsf{font-size:21.200896pt;}
.fs9{font-size:30.128209pt;}
.fsc{font-size:32.359055pt;}
.fsa{font-size:37.380423pt;}
.fs2{font-size:40.321600pt;}
.fsb{font-size:41.843424pt;}
.fs7{font-size:44.075580pt;}
.fsd{font-size:45.842431pt;}
.fs8{font-size:46.307737pt;}
.fse{font-size:51.329105pt;}
.fs6{font-size:55.792106pt;}
.fs0{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs1{font-size:90.883600pt;}
.fs5{font-size:106.884004pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:2.399963pt;}
.ya7{bottom:2.399964pt;}
.yc2{bottom:2.399994pt;}
.y9e{bottom:2.400024pt;}
.yb6{bottom:2.400025pt;}
.y2{bottom:4.000000pt;}
.ya{bottom:4.160035pt;}
.yd{bottom:4.959991pt;}
.y6{bottom:4.960022pt;}
.y1e{bottom:22.080079pt;}
.y1d{bottom:73.920044pt;}
.y4b{bottom:102.080079pt;}
.y5a{bottom:102.880066pt;}
.ybe{bottom:106.080079pt;}
.y1c{bottom:107.840088pt;}
.y7b{bottom:108.000061pt;}
.y34{bottom:120.480042pt;}
.ybd{bottom:126.080079pt;}
.y95{bottom:132.800049pt;}
.y122{bottom:137.750454pt;}
.y121{bottom:137.770590pt;}
.y1b{bottom:141.760071pt;}
.y120{bottom:141.923199pt;}
.y7a{bottom:142.880066pt;}
.ybc{bottom:143.680054pt;}
.y59{bottom:146.560059pt;}
.y55{bottom:152.320069pt;}
.y33{bottom:154.400086pt;}
.y70{bottom:155.520081pt;}
.y11f{bottom:156.168068pt;}
.y11e{bottom:160.163734pt;}
.ybb{bottom:161.440064pt;}
.y11d{bottom:167.188303pt;}
.y1a{bottom:175.680054pt;}
.y79{bottom:177.760071pt;}
.yba{bottom:179.040039pt;}
.y94{bottom:183.680054pt;}
.y6f{bottom:184.960083pt;}
.y32{bottom:188.320069pt;}
.y58{bottom:190.080079pt;}
.y54{bottom:192.480042pt;}
.yb9{bottom:196.640076pt;}
.y11c{bottom:204.963296pt;}
.y19{bottom:209.600037pt;}
.y78{bottom:212.480042pt;}
.yb8{bottom:214.240052pt;}
.y6e{bottom:214.560059pt;}
.y11b{bottom:220.956810pt;}
.y31{bottom:222.240052pt;}
.y85{bottom:222.720032pt;}
.yd4{bottom:229.280030pt;}
.yb7{bottom:231.840088pt;}
.y53{bottom:232.640076pt;}
.y57{bottom:233.760071pt;}
.y93{bottom:234.400086pt;}
.y119{bottom:238.242907pt;}
.y11a{bottom:238.566934pt;}
.y18{bottom:243.520081pt;}
.yb5{bottom:247.680054pt;}
.y118{bottom:251.831024pt;}
.y30{bottom:256.160035pt;}
.y115{bottom:265.115104pt;}
.y117{bottom:265.124905pt;}
.y116{bottom:265.128556pt;}
.yb4{bottom:267.680054pt;}
.y4a{bottom:270.720032pt;}
.y52{bottom:272.800049pt;}
.y56{bottom:277.280030pt;}
.y17{bottom:277.440064pt;}
.y114{bottom:278.392077pt;}
.y92{bottom:285.120057pt;}
.yb3{bottom:285.280030pt;}
.y2f{bottom:290.080079pt;}
.y113{bottom:291.513653pt;}
.y112{bottom:291.530453pt;}
.yb2{bottom:302.880066pt;}
.y111{bottom:303.829677pt;}
.y49{bottom:305.440064pt;}
.y16{bottom:311.360047pt;}
.y51{bottom:312.960083pt;}
.yd7{bottom:313.920044pt;}
.yb1{bottom:320.480042pt;}
.y110{bottom:320.795184pt;}
.y2e{bottom:324.000061pt;}
.y6d{bottom:330.400086pt;}
.y48{bottom:332.960083pt;}
.y10f{bottom:334.397234pt;}
.y91{bottom:335.840088pt;}
.yb0{bottom:338.080079pt;}
.y15{bottom:345.280030pt;}
.y10e{bottom:347.674207pt;}
.y50{bottom:353.280030pt;}
.yaf{bottom:355.680054pt;}
.y2d{bottom:357.920044pt;}
.y6c{bottom:359.200074pt;}
.y10d{bottom:362.873214pt;}
.y47{bottom:368.640076pt;}
.yad{bottom:371.520081pt;}
.y84{bottom:372.480042pt;}
.y81{bottom:374.720032pt;}
.y10c{bottom:376.475264pt;}
.y14{bottom:379.200074pt;}
.y90{bottom:386.720032pt;}
.y6b{bottom:388.000061pt;}
.y10b{bottom:389.911222pt;}
.yac{bottom:391.520081pt;}
.y2c{bottom:391.840088pt;}
.y4f{bottom:393.440064pt;}
.y10a{bottom:403.032798pt;}
.y46{bottom:403.520081pt;}
.ycf{bottom:404.480042pt;}
.y83{bottom:408.960083pt;}
.yab{bottom:409.120057pt;}
.y109{bottom:416.475863pt;}
.y6a{bottom:416.800049pt;}
.y2b{bottom:425.760071pt;}
.yaa{bottom:426.720032pt;}
.y4e{bottom:427.360047pt;}
.y108{bottom:429.915409pt;}
.yd0{bottom:436.480042pt;}
.y45{bottom:437.440064pt;}
.y82{bottom:442.880066pt;}
.y107{bottom:443.195969pt;}
.ya9{bottom:444.320069pt;}
.y69{bottom:445.600037pt;}
.y106{bottom:458.394908pt;}
.y2a{bottom:459.680054pt;}
.ye8{bottom:459.840088pt;}
.y4d{bottom:461.280030pt;}
.ya8{bottom:461.920044pt;}
.y44{bottom:471.360047pt;}
.y9{bottom:472.000061pt;}
.y68{bottom:474.400086pt;}
.ya6{bottom:477.760071pt;}
.y105{bottom:479.034735pt;}
.ye7{bottom:481.920044pt;}
.y8f{bottom:488.160035pt;}
.y29{bottom:493.600037pt;}
.y8{bottom:494.240052pt;}
.y4c{bottom:495.840088pt;}
.ya5{bottom:497.760071pt;}
.y7{bottom:499.200074pt;}
.y104{bottom:499.356524pt;}
.y67{bottom:503.200074pt;}
.ye6{bottom:504.000061pt;}
.y43{bottom:505.280030pt;}
.yd5{bottom:506.240052pt;}
.y103{bottom:512.792550pt;}
.ya4{bottom:515.360047pt;}
.y13{bottom:517.920044pt;}
.y5{bottom:521.440064pt;}
.ye5{bottom:526.080079pt;}
.y4{bottom:526.400086pt;}
.y28{bottom:527.680054pt;}
.y66{bottom:532.640076pt;}
.y102{bottom:532.955354pt;}
.ya3{bottom:532.960083pt;}
.y8e{bottom:539.040039pt;}
.y42{bottom:539.200074pt;}
.ye4{bottom:548.160035pt;}
.ya2{bottom:550.560059pt;}
.y101{bottom:553.277177pt;}
.y72{bottom:555.520081pt;}
.y65{bottom:561.440064pt;}
.y27{bottom:561.600037pt;}
.ya1{bottom:568.160035pt;}
.y12{bottom:569.920044pt;}
.ye3{bottom:570.240052pt;}
.y41{bottom:573.120057pt;}
.y100{bottom:573.757984pt;}
.yd1{bottom:577.760071pt;}
.ya0{bottom:585.760071pt;}
.yff{bottom:587.034992pt;}
.y8d{bottom:589.760071pt;}
.y64{bottom:590.240052pt;}
.ye2{bottom:592.320069pt;}
.y26{bottom:595.520081pt;}
.yce{bottom:598.400086pt;}
.yfe{bottom:600.474503pt;}
.y9f{bottom:603.360047pt;}
.y11{bottom:603.840088pt;}
.y40{bottom:607.040039pt;}
.ye1{bottom:614.400055pt;}
.y63{bottom:619.040070pt;}
.y9d{bottom:619.360047pt;}
.yfd{bottom:620.796326pt;}
.y25{bottom:630.080048pt;}
.y10{bottom:630.880066pt;}
.yfc{bottom:634.073333pt;}
.ye0{bottom:636.480072pt;}
.y9c{bottom:639.360047pt;}
.y8c{bottom:640.480072pt;}
.y3f{bottom:640.960053pt;}
.y73{bottom:641.920044pt;}
.yfb{bottom:647.516398pt;}
.y62{bottom:647.840058pt;}
.yf{bottom:653.120057pt;}
.y9b{bottom:656.960053pt;}
.yd2{bottom:657.440064pt;}
.ye{bottom:658.080048pt;}
.ydf{bottom:658.560059pt;}
.yfa{bottom:660.793439pt;}
.y24{bottom:665.760071pt;}
.y9a{bottom:674.560059pt;}
.y3e{bottom:674.880066pt;}
.ybf{bottom:676.320069pt;}
.y61{bottom:676.640046pt;}
.yc{bottom:680.320069pt;}
.yde{bottom:680.640046pt;}
.yf9{bottom:681.274213pt;}
.yb{bottom:685.280060pt;}
.y8b{bottom:691.360047pt;}
.y99{bottom:692.160065pt;}
.yf8{bottom:694.558293pt;}
.y23{bottom:701.280060pt;}
.ydd{bottom:702.720063pt;}
.yf7{bottom:707.835334pt;}
.y3d{bottom:708.800049pt;}
.y98{bottom:709.760071pt;}
.yf6{bottom:721.278399pt;}
.ydc{bottom:724.800049pt;}
.y80{bottom:731.200074pt;}
.yf5{bottom:734.714392pt;}
.y60{bottom:735.040070pt;}
.y75{bottom:736.320069pt;}
.y22{bottom:736.800049pt;}
.y8a{bottom:742.080048pt;}
.y3c{bottom:742.720063pt;}
.ydb{bottom:746.880066pt;}
.yf4{bottom:755.036214pt;}
.y77{bottom:757.120057pt;}
.y7f{bottom:767.680054pt;}
.yf3{bottom:768.316741pt;}
.yda{bottom:768.960053pt;}
.y21{bottom:771.680054pt;}
.y3b{bottom:776.640046pt;}
.yf2{bottom:781.758391pt;}
.yd9{bottom:791.040070pt;}
.y5f{bottom:792.640046pt;}
.y89{bottom:792.800049pt;}
.yf1{bottom:795.036813pt;}
.ycd{bottom:795.840058pt;}
.y3a{bottom:810.560059pt;}
.yd8{bottom:813.120057pt;}
.yd6{bottom:813.760071pt;}
.yf0{bottom:815.358636pt;}
.ycc{bottom:815.840058pt;}
.yd3{bottom:819.840058pt;}
.yef{bottom:828.795352pt;}
.ycb{bottom:833.440064pt;}
.y7d{bottom:833.920044pt;}
.y88{bottom:843.680054pt;}
.y39{bottom:844.480072pt;}
.y5e{bottom:850.240052pt;}
.yca{bottom:851.040070pt;}
.yee{bottom:855.680068pt;}
.yc9{bottom:866.880066pt;}
.yed{bottom:871.038716pt;}
.y38{bottom:878.400055pt;}
.y5d{bottom:879.040055pt;}
.yc8{bottom:886.880066pt;}
.y87{bottom:894.400055pt;}
.yeb{bottom:897.759512pt;}
.yc7{bottom:902.880066pt;}
.yec{bottom:903.034555pt;}
.y5c{bottom:907.840058pt;}
.y7e{bottom:909.120057pt;}
.y37{bottom:912.320054pt;}
.yc6{bottom:922.880066pt;}
.yea{bottom:925.758714pt;}
.y5b{bottom:936.640061pt;}
.yc5{bottom:938.720063pt;}
.ye9{bottom:944.157431pt;}
.y86{bottom:945.120057pt;}
.y36{bottom:946.240052pt;}
.y76{bottom:954.400055pt;}
.yc4{bottom:958.720063pt;}
.y97{bottom:972.960053pt;}
.yc3{bottom:976.320054pt;}
.y20{bottom:979.200058pt;}
.y35{bottom:980.160065pt;}
.yc1{bottom:992.160065pt;}
.y7c{bottom:1005.920060pt;}
.y71{bottom:1008.800057pt;}
.y74{bottom:1011.520058pt;}
.yc0{bottom:1012.160057pt;}
.y96{bottom:1012.800057pt;}
.y1f{bottom:1014.080056pt;}
.y3{bottom:1090.880059pt;}
.y1{bottom:1104.800059pt;}
.h17{height:15.679992pt;}
.h16{height:15.679993pt;}
.h14{height:15.680023pt;}
.h15{height:17.119995pt;}
.h12{height:17.120025pt;}
.h2{height:17.759995pt;}
.h27{height:21.087024pt;}
.h5{height:25.599975pt;}
.h7{height:25.600006pt;}
.h6{height:25.600036pt;}
.h1d{height:26.759381pt;}
.h21{height:29.009387pt;}
.h8{height:29.355227pt;}
.h28{height:32.185251pt;}
.h1e{height:33.441964pt;}
.h24{height:34.381823pt;}
.h20{height:37.511976pt;}
.h13{height:39.245350pt;}
.h1c{height:41.129772pt;}
.h23{height:41.458434pt;}
.h22{height:41.474961pt;}
.h1f{height:41.514162pt;}
.h11{height:42.867997pt;}
.h29{height:46.059013pt;}
.hd{height:46.595500pt;}
.h25{height:49.542676pt;}
.h1a{height:49.553634pt;}
.h1b{height:49.567267pt;}
.h26{height:51.053411pt;}
.h18{height:51.251925pt;}
.h19{height:53.939526pt;}
.he{height:54.516723pt;}
.ha{height:55.845848pt;}
.h9{height:56.845885pt;}
.hc{height:57.377155pt;}
.h3{height:58.566137pt;}
.hb{height:63.658641pt;}
.h10{height:65.533712pt;}
.h4{height:80.721322pt;}
.hf{height:106.309920pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w9{width:6.720001pt;}
.w2{width:8.639984pt;}
.w8{width:8.639999pt;}
.wa{width:17.279999pt;}
.w7{width:79.200012pt;}
.w5{width:91.359985pt;}
.w6{width:134.880005pt;}
.w4{width:137.600006pt;}
.w3{width:154.720001pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x5{left:-154.720001pt;}
.x6{left:-137.600006pt;}
.x9{left:-79.200012pt;}
.x0{left:0.000000pt;}
.x15{left:89.279999pt;}
.xa{left:94.559998pt;}
.x12{left:106.239998pt;}
.x13{left:118.080002pt;}
.x24{left:122.559998pt;}
.x2e{left:124.963637pt;}
.x38{left:127.519080pt;}
.x22{left:129.279999pt;}
.x21{left:130.240005pt;}
.x17{left:132.320007pt;}
.x23{left:138.240005pt;}
.x18{left:146.399994pt;}
.x19{left:162.399994pt;}
.x27{left:167.838557pt;}
.x25{left:170.080002pt;}
.x26{left:173.919998pt;}
.x14{left:177.759995pt;}
.x1a{left:179.039993pt;}
.xb{left:182.559998pt;}
.x37{left:196.001400pt;}
.x35{left:206.240005pt;}
.x36{left:215.197110pt;}
.x29{left:223.524431pt;}
.x31{left:236.481800pt;}
.x30{left:248.161806pt;}
.x1{left:298.720001pt;}
.x2f{left:307.203236pt;}
.x39{left:314.242486pt;}
.x33{left:331.675635pt;}
.x34{left:343.358226pt;}
.x28{left:352.955768pt;}
.x1f{left:357.440002pt;}
.x1c{left:409.119995pt;}
.x1d{left:415.839996pt;}
.x2{left:419.040009pt;}
.x2a{left:433.761084pt;}
.x3{left:436.160004pt;}
.x2b{left:437.604724pt;}
.x8{left:494.559998pt;}
.x7{left:508.320007pt;}
.x32{left:556.003046pt;}
.x2c{left:564.799631pt;}
.x2d{left:568.646391pt;}
.x4{left:573.760010pt;}
.x1b{left:601.599976pt;}
.x20{left:606.719971pt;}
.x1e{left:608.799988pt;}
.x11{left:682.400024pt;}
.x16{left:684.320007pt;}
.x10{left:685.919983pt;}
.xd{left:689.119995pt;}
.xf{left:692.640015pt;}
.xe{left:699.200012pt;}
.xc{left:711.520020pt;}
}




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