
    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_10c3842c4631e6825f33006b.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_b9e97869903d092eaa22b8ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_dff5b91f6b79abd4787af07f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_413b1ffcf1a4558f72fab288.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_b06cd51ca321cf36f23cee57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_99a316b7bbfc1f29d986585e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051758;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_af3eedf35f7bd2be179e913d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_8238c100823d1954230a14d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f95db3676ea7f5801f27fd78.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_b63ff85439bf492fd2c27ebd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_841d03966a6c06484b1281a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909180;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_5b8ac496b9755a8c7abda387.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ee6026a1cb3f66b41976e379.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_537ba56495e8cc29c670ebd1.woff2')format("woff");}.fff{font-family:fff;line-height:0.724121;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_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-43.199983px;}
.v2{vertical-align:-10.799996px;}
.v1{vertical-align:-9.359996px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009900px;}
.ls3{letter-spacing:0.018600px;}
.lsa{letter-spacing:0.187722px;}
.ls17{letter-spacing:0.209264px;}
.ls8{letter-spacing:0.375720px;}
.ls19{letter-spacing:0.378602px;}
.ls6{letter-spacing:1.096080px;}
.ls5{letter-spacing:2.348984px;}
.lsc{letter-spacing:2.702519px;}
.lse{letter-spacing:4.970818px;}
.ls16{letter-spacing:4.999978px;}
.ls7{letter-spacing:8.832495px;}
.ls11{letter-spacing:12.175255px;}
.ls15{letter-spacing:12.204415px;}
.ls1b{letter-spacing:12.924895px;}
.ls18{letter-spacing:13.616095px;}
.ls1a{letter-spacing:13.645315px;}
.ls9{letter-spacing:15.316620px;}
.ls4{letter-spacing:17.477943px;}
.ls10{letter-spacing:46.036302px;}
.lsf{letter-spacing:46.065102px;}
.ls2{letter-spacing:55.922112px;}
.ls14{letter-spacing:64.047094px;}
.ls13{letter-spacing:64.076494px;}
.ls1{letter-spacing:107.205159px;}
.ls12{letter-spacing:353.206059px;}
.ls0{letter-spacing:1816.786806px;}
.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;}
}
.wsa{word-spacing:-38.754449px;}
.ws8{word-spacing:-38.545185px;}
.ws9{word-spacing:-35.855986px;}
.ws4{word-spacing:-32.418587px;}
.ws2{word-spacing:-18.282233px;}
.ws0{word-spacing:-18.149753px;}
.ws6{word-spacing:-16.613273px;}
.wsb{word-spacing:-15.318596px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws5{word-spacing:-13.499995px;}
.ws7{word-spacing:0.000000px;}
._1d{margin-left:-4.877823px;}
._10{margin-left:-3.591356px;}
._1{margin-left:-1.644497px;}
._0{width:1.013430px;}
._1e{width:2.016350px;}
._8{width:3.019425px;}
._9{width:4.069593px;}
._a{width:5.748769px;}
._f{width:7.103466px;}
._7{width:8.665252px;}
._6{width:9.944702px;}
._2{width:11.792836px;}
._e{width:13.134727px;}
._d{width:14.741011px;}
._c{width:16.054553px;}
._3{width:17.061662px;}
._b{width:18.297168px;}
._19{width:19.375876px;}
._5{width:20.391587px;}
._4{width:21.750488px;}
._1f{width:23.452172px;}
._16{width:26.434246px;}
._12{width:32.089695px;}
._18{width:33.704461px;}
._17{width:34.767667px;}
._15{width:54.222526px;}
._1b{width:144.732821px;}
._11{width:296.885215px;}
._14{width:318.291869px;}
._1c{width:320.786173px;}
._1a{width:356.653453px;}
._13{width:1101.770258px;}
.fcf{color:rgb(14,17,21);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(15,17,20);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc8{color:rgb(227,108,10);}
.fce{color:transparent;}
.fcd{color:rgb(112,48,160);}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fs7{font-size:5.759998px;}
.fs5{font-size:17.999993px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs6{font-size:69.119972px;}
.fs4{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.060004px;}
.ya1{bottom:3.419322px;}
.y44{bottom:3.598979px;}
.y7f{bottom:3.599108px;}
.y81{bottom:3.599120px;}
.y84{bottom:3.599131px;}
.y86{bottom:3.599142px;}
.y89{bottom:3.599153px;}
.y8b{bottom:3.599165px;}
.ycc{bottom:4.139112px;}
.ya{bottom:4.320039px;}
.y16{bottom:4.679070px;}
.yb{bottom:32.520287px;}
.y9{bottom:48.720240px;}
.y7{bottom:53.040279px;}
.y8{bottom:55.380278px;}
.y6f{bottom:100.559960px;}
.y120{bottom:103.439959px;}
.y102{bottom:106.140258px;}
.y140{bottom:106.680257px;}
.ye0{bottom:112.800255px;}
.y6e{bottom:127.739949px;}
.y11f{bottom:130.619948px;}
.y101{bottom:133.320247px;}
.y13f{bottom:133.860246px;}
.ybb{bottom:134.219946px;}
.ydf{bottom:136.740245px;}
.y4a{bottom:137.280240px;}
.y15f{bottom:139.980244px;}
.y5{bottom:144.299942px;}
.y100{bottom:150.779940px;}
.y6d{bottom:154.919938px;}
.y49{bottom:157.619937px;}
.y11e{bottom:157.799937px;}
.yba{bottom:161.579935px;}
.y13e{bottom:163.379935px;}
.y15e{bottom:169.679932px;}
.y48{bottom:174.719930px;}
.yff{bottom:177.599929px;}
.y6c{bottom:183.719927px;}
.y11d{bottom:185.159926px;}
.yb9{bottom:188.759924px;}
.y13d{bottom:190.559924px;}
.y47{bottom:191.999923px;}
.ya0{bottom:192.540600px;}
.y21{bottom:197.399921px;}
.y15d{bottom:198.659921px;}
.y6b{bottom:200.999920px;}
.y11c{bottom:202.439919px;}
.y46{bottom:209.459916px;}
.y9f{bottom:213.239915px;}
.yb8{bottom:215.939914px;}
.y13c{bottom:217.739913px;}
.yfe{bottom:222.779911px;}
.y15c{bottom:225.839910px;}
.y6a{bottom:227.819909px;}
.y11b{bottom:229.259908px;}
.y9e{bottom:230.339908px;}
.y40{bottom:240.059904px;}
.yb7{bottom:244.919902px;}
.y69{bottom:245.099902px;}
.y9d{bottom:247.619901px;}
.yfd{bottom:249.959900px;}
.y13b{bottom:252.839899px;}
.y15b{bottom:255.359898px;}
.y3f{bottom:255.539898px;}
.y9c{bottom:264.899894px;}
.y68{bottom:272.279891px;}
.y11a{bottom:274.259890px;}
.yfc{bottom:277.139889px;}
.y13a{bottom:280.019888px;}
.y9b{bottom:282.179887px;}
.y15a{bottom:282.539887px;}
.y98{bottom:285.059886px;}
.yb6{bottom:289.919884px;}
.y3e{bottom:292.079883px;}
.y9a{bottom:299.279880px;}
.y67{bottom:299.639880px;}
.y119{bottom:301.439879px;}
.yfb{bottom:306.119878px;}
.y3d{bottom:307.559877px;}
.y97{bottom:309.359876px;}
.y139{bottom:309.539876px;}
.y159{bottom:309.719876px;}
.y99{bottom:316.559873px;}
.yb5{bottom:317.279873px;}
.y3c{bottom:323.219871px;}
.y118{bottom:328.799868px;}
.y66{bottom:328.979868px;}
.y96{bottom:335.999866px;}
.y138{bottom:336.719865px;}
.y3b{bottom:338.699865px;}
.y158{bottom:341.579863px;}
.yb4{bottom:344.279862px;}
.yfa{bottom:351.119860px;}
.y3a{bottom:354.179858px;}
.y117{bottom:355.979858px;}
.y65{bottom:356.339857px;}
.y95{bottom:362.819855px;}
.y137{bottom:364.079854px;}
.y20{bottom:368.399853px;}
.y157{bottom:370.739852px;}
.yf9{bottom:378.299849px;}
.y64{bottom:385.679846px;}
.yb3{bottom:389.639844px;}
.y39{bottom:390.719844px;}
.y94{bottom:390.899844px;}
.y136{bottom:393.419843px;}
.y156{bottom:397.739841px;}
.y116{bottom:401.159840px;}
.yf8{bottom:405.479838px;}
.y38{bottom:406.199838px;}
.y63{bottom:412.859835px;}
.yb2{bottom:416.819833px;}
.y93{bottom:418.979832px;}
.y135{bottom:420.599832px;}
.y37{bottom:421.859831px;}
.yf7{bottom:423.119831px;}
.y115{bottom:428.339829px;}
.y155{bottom:433.019827px;}
.y36{bottom:437.339825px;}
.yb1{bottom:443.999822px;}
.y92{bottom:447.059821px;}
.y134{bottom:450.119820px;}
.yf6{bottom:450.479820px;}
.y35{bottom:452.819819px;}
.y114{bottom:455.699818px;}
.y154{bottom:460.199816px;}
.y62{bottom:460.379816px;}
.y34{bottom:468.299813px;}
.yb0{bottom:471.359811px;}
.y91{bottom:475.139810px;}
.y133{bottom:477.299809px;}
.yf5{bottom:479.459808px;}
.y1f{bottom:482.339807px;}
.y8f{bottom:482.879807px;}
.y33{bottom:483.959806px;}
.y61{bottom:487.559805px;}
.y153{bottom:489.539804px;}
.yaf{bottom:498.539801px;}
.y90{bottom:503.219799px;}
.y132{bottom:506.639797px;}
.yf4{bottom:506.819797px;}
.y8e{bottom:506.999797px;}
.y113{bottom:511.679795px;}
.y152{bottom:516.899793px;}
.y32{bottom:520.319792px;}
.yae{bottom:527.339789px;}
.y60{bottom:532.739787px;}
.y8d{bottom:533.639787px;}
.y131{bottom:533.999786px;}
.yf3{bottom:535.079786px;}
.y31{bottom:535.979786px;}
.y1e{bottom:544.079782px;}
.yad{bottom:544.619782px;}
.y151{bottom:546.239782px;}
.y30{bottom:551.459779px;}
.y112{bottom:556.859777px;}
.y1d{bottom:559.379776px;}
.y5f{bottom:559.919776px;}
.y8c{bottom:560.459776px;}
.yf2{bottom:562.259775px;}
.yac{bottom:562.799775px;}
.y130{bottom:563.339775px;}
.y2f{bottom:566.939773px;}
.y150{bottom:573.599771px;}
.y1c{bottom:574.679770px;}
.yab{bottom:580.079768px;}
.y2e{bottom:582.419767px;}
.y111{bottom:584.039766px;}
.y8a{bottom:585.120600px;}
.y5e{bottom:587.099765px;}
.y1b{bottom:588.719765px;}
.yf1{bottom:589.619764px;}
.y12f{bottom:590.699764px;}
.y2d{bottom:598.079761px;}
.y14f{bottom:600.779760px;}
.ycf{bottom:602.579759px;}
.y110{bottom:611.219756px;}
.y88{bottom:613.200600px;}
.y2c{bottom:613.559755px;}
.y5d{bottom:614.459754px;}
.y87{bottom:616.799753px;}
.yf0{bottom:617.879753px;}
.y2b{bottom:629.039748px;}
.y14e{bottom:630.119748px;}
.yce{bottom:630.839748px;}
.yd1{bottom:632.279747px;}
.y10f{bottom:638.579745px;}
.yd0{bottom:639.479744px;}
.y85{bottom:641.280600px;}
.y5c{bottom:641.459743px;}
.yef{bottom:645.059742px;}
.y12e{bottom:647.219741px;}
.y1a{bottom:649.199740px;}
.y14d{bottom:657.479737px;}
.y2a{bottom:665.579734px;}
.y10e{bottom:665.759734px;}
.y83{bottom:669.360600px;}
.yc9{bottom:671.339731px;}
.yee{bottom:672.239731px;}
.y82{bottom:672.959731px;}
.y12d{bottom:674.579730px;}
.y29{bottom:681.059728px;}
.y5b{bottom:686.819725px;}
.yed{bottom:690.779724px;}
.ycd{bottom:693.839722px;}
.y28{bottom:696.719721px;}
.yc8{bottom:696.899721px;}
.y80{bottom:697.440600px;}
.y10d{bottom:700.859720px;}
.y12c{bottom:701.759719px;}
.y7d{bottom:708.419717px;}
.y19{bottom:709.679716px;}
.y5a{bottom:713.999714px;}
.ycb{bottom:716.880600px;}
.yec{bottom:717.599713px;}
.yde{bottom:718.139713px;}
.yc7{bottom:721.019712px;}
.y18{bottom:725.339710px;}
.y7e{bottom:725.520600px;}
.yca{bottom:728.219709px;}
.y12b{bottom:728.939708px;}
.y7c{bottom:732.899707px;}
.y27{bottom:733.079707px;}
.y59{bottom:741.179704px;}
.y14c{bottom:741.359703px;}
.ydd{bottom:745.319702px;}
.y10c{bottom:746.039702px;}
.y26{bottom:748.739701px;}
.yeb{bottom:750.359700px;}
.y12a{bottom:758.459697px;}
.y7b{bottom:759.359696px;}
.yc5{bottom:760.079696px;}
.y25{bottom:764.219694px;}
.y58{bottom:768.539693px;}
.y14b{bottom:770.699692px;}
.ydc{bottom:772.499691px;}
.y10b{bottom:773.219691px;}
.yea{bottom:777.539689px;}
.y24{bottom:779.699688px;}
.yc4{bottom:785.639686px;}
.y17{bottom:785.819686px;}
.y7a{bottom:789.779684px;}
.y22{bottom:789.959684px;}
.y23{bottom:795.179682px;}
.y57{bottom:795.539682px;}
.y14a{bottom:798.059681px;}
.ydb{bottom:799.859680px;}
.y10a{bottom:800.399680px;}
.ye9{bottom:804.719678px;}
.yc3{bottom:809.759676px;}
.y79{bottom:812.639675px;}
.y129{bottom:812.819675px;}
.yc6{bottom:816.959673px;}
.y15{bottom:820.740600px;}
.y14{bottom:825.419670px;}
.yda{bottom:827.039669px;}
.y149{bottom:827.399669px;}
.y109{bottom:827.759669px;}
.y56{bottom:828.659669px;}
.y78{bottom:830.459668px;}
.ye8{bottom:833.699667px;}
.y128{bottom:842.339663px;}
.yc2{bottom:842.519663px;}
.ye7{bottom:850.979660px;}
.y148{bottom:854.579658px;}
.y108{bottom:854.939658px;}
.y55{bottom:855.839658px;}
.y13{bottom:856.199658px;}
.yc1{bottom:869.339652px;}
.y127{bottom:869.519652px;}
.yd9{bottom:873.119651px;}
.y12{bottom:873.479651px;}
.y77{bottom:878.159649px;}
.y147{bottom:881.939647px;}
.y107{bottom:882.119647px;}
.y54{bottom:883.019647px;}
.y11{bottom:890.579644px;}
.yc0{bottom:897.419641px;}
.y76{bottom:898.139641px;}
.y126{bottom:899.039640px;}
.yd8{bottom:899.939640px;}
.ye6{bottom:905.519638px;}
.y10{bottom:907.859637px;}
.y53{bottom:910.199636px;}
.y146{bottom:911.279635px;}
.yf{bottom:925.139630px;}
.ybf{bottom:925.499630px;}
.y125{bottom:926.219630px;}
.y106{bottom:927.299629px;}
.ybd{bottom:933.239627px;}
.y75{bottom:933.599627px;}
.ye5{bottom:933.779626px;}
.y145{bottom:938.459625px;}
.ye{bottom:942.419623px;}
.yd7{bottom:945.119622px;}
.y105{bottom:954.479618px;}
.y52{bottom:955.379618px;}
.y124{bottom:955.559618px;}
.ybc{bottom:957.359617px;}
.y74{bottom:960.779616px;}
.ye4{bottom:960.959616px;}
.ybe{bottom:964.559614px;}
.y144{bottom:965.819614px;}
.yd{bottom:972.119611px;}
.yd6{bottom:972.299611px;}
.y104{bottom:981.659607px;}
.y51{bottom:982.739607px;}
.yaa{bottom:985.799606px;}
.y73{bottom:987.959605px;}
.ye3{bottom:990.839604px;}
.y143{bottom:995.159602px;}
.yc{bottom:995.339602px;}
.yd5{bottom:999.479600px;}
.y103{bottom:1009.019596px;}
.ye2{bottom:1009.199596px;}
.y50{bottom:1009.919596px;}
.ya9{bottom:1012.619595px;}
.y72{bottom:1015.319594px;}
.y142{bottom:1022.519591px;}
.yd4{bottom:1026.839589px;}
.ya5{bottom:1027.379589px;}
.y45{bottom:1032.239587px;}
.y123{bottom:1032.599587px;}
.ye1{bottom:1036.019586px;}
.y4f{bottom:1037.099585px;}
.ya8{bottom:1040.699584px;}
.y71{bottom:1042.499583px;}
.y43{bottom:1047.900600px;}
.ya4{bottom:1051.859579px;}
.y122{bottom:1052.579579px;}
.yd3{bottom:1054.019578px;}
.y4e{bottom:1064.459574px;}
.y121{bottom:1066.799573px;}
.ya7{bottom:1068.779572px;}
.y42{bottom:1070.399572px;}
.ya3{bottom:1076.159570px;}
.y141{bottom:1079.039568px;}
.y70{bottom:1081.199568px;}
.y4d{bottom:1081.739567px;}
.ya6{bottom:1097.039561px;}
.y41{bottom:1098.299561px;}
.ya2{bottom:1100.639560px;}
.yd2{bottom:1108.379557px;}
.y4c{bottom:1108.559557px;}
.y4{bottom:1126.739549px;}
.y6{bottom:1154.099538px;}
.y3{bottom:1160.399536px;}
.y2{bottom:1177.679529px;}
.y1{bottom:1194.959522px;}
.h1e{height:4.002186px;}
.h17{height:15.046869px;}
.h13{height:16.380000px;}
.h1b{height:16.740000px;}
.h1a{height:16.920000px;}
.h14{height:17.280000px;}
.h10{height:18.720000px;}
.h1d{height:19.620000px;}
.h5{height:22.140000px;}
.h9{height:22.500000px;}
.h4{height:35.708892px;}
.hc{height:36.624009px;}
.hd{height:37.520493px;}
.hb{height:39.339828px;}
.h6{height:39.830258px;}
.h3{height:39.972640px;}
.h16{height:40.705648px;}
.h1{height:41.522679px;}
.h15{height:41.785296px;}
.h12{height:43.536076px;}
.hf{height:44.893107px;}
.he{height:45.140607px;}
.h11{height:46.025138px;}
.h18{height:47.081231px;}
.h2{height:49.033105px;}
.h7{height:49.042949px;}
.h8{height:49.955605px;}
.h1c{height:49.956805px;}
.ha{height:53.296854px;}
.h19{height:57.779977px;}
.h0{height:1263.000000px;}
.w3{width:4.680000px;}
.wd{width:5.040000px;}
.w2{width:6.840000px;}
.wf{width:7.560000px;}
.w8{width:8.820000px;}
.w4{width:10.080000px;}
.wb{width:20.160000px;}
.w6{width:34.920000px;}
.wc{width:40.860000px;}
.wa{width:51.840000px;}
.w10{width:52.740000px;}
.we{width:233.820000px;}
.w7{width:293.760000px;}
.w9{width:367.920000px;}
.w5{width:391.680000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:60.299976px;}
.x14{left:80.459968px;}
.x5{left:87.299965px;}
.xd{left:91.792613px;}
.xe{left:97.558603px;}
.x1{left:100.439960px;}
.x11{left:101.879959px;}
.x12{left:106.019990px;}
.x22{left:107.999957px;}
.x30{left:109.439956px;}
.x8{left:111.779955px;}
.x25{left:117.531553px;}
.xa{left:120.419952px;}
.x23{left:134.999946px;}
.x15{left:141.299943px;}
.x13{left:143.279943px;}
.x24{left:161.999922px;}
.x9{left:196.559372px;}
.x16{left:224.099875px;}
.x31{left:247.139901px;}
.x37{left:250.919900px;}
.x17{left:253.799827px;}
.x26{left:260.991446px;}
.x1a{left:264.239894px;}
.x18{left:272.339891px;}
.x1f{left:281.159888px;}
.x1c{left:293.400000px;}
.x2{left:295.019882px;}
.x1d{left:310.499876px;}
.x20{left:316.800000px;}
.xb{left:318.052687px;}
.x2d{left:336.060549px;}
.xf{left:337.860000px;}
.x32{left:339.119904px;}
.x10{left:342.540000px;}
.x2c{left:344.521347px;}
.x2a{left:349.379860px;}
.x2b{left:362.700671px;}
.x6{left:375.479850px;}
.x2e{left:383.400000px;}
.x1b{left:388.619845px;}
.xc{left:447.299821px;}
.x19{left:480.779808px;}
.x21{left:610.560000px;}
.x2f{left:622.260000px;}
.x27{left:659.520000px;}
.x35{left:660.960000px;}
.x3{left:675.539730px;}
.x28{left:691.200000px;}
.x33{left:714.420178px;}
.x29{left:720.179712px;}
.x34{left:722.519711px;}
.x1e{left:744.299731px;}
.x36{left:745.739702px;}
.x38{left:784.979686px;}
.x7{left:860.580000px;}
@media print{
.v3{vertical-align:-38.399985pt;}
.v2{vertical-align:-9.599996pt;}
.v1{vertical-align:-8.319997pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008800pt;}
.ls3{letter-spacing:0.016533pt;}
.lsa{letter-spacing:0.166864pt;}
.ls17{letter-spacing:0.186013pt;}
.ls8{letter-spacing:0.333973pt;}
.ls19{letter-spacing:0.336535pt;}
.ls6{letter-spacing:0.974293pt;}
.ls5{letter-spacing:2.087985pt;}
.lsc{letter-spacing:2.402239pt;}
.lse{letter-spacing:4.418505pt;}
.ls16{letter-spacing:4.444425pt;}
.ls7{letter-spacing:7.851106pt;}
.ls11{letter-spacing:10.822449pt;}
.ls15{letter-spacing:10.848369pt;}
.ls1b{letter-spacing:11.488795pt;}
.ls18{letter-spacing:12.103195pt;}
.ls1a{letter-spacing:12.129168pt;}
.ls9{letter-spacing:13.614773pt;}
.ls4{letter-spacing:15.535950pt;}
.ls10{letter-spacing:40.921157pt;}
.lsf{letter-spacing:40.946757pt;}
.ls2{letter-spacing:49.708544pt;}
.ls14{letter-spacing:56.930751pt;}
.ls13{letter-spacing:56.956884pt;}
.ls1{letter-spacing:95.293475pt;}
.ls12{letter-spacing:313.960941pt;}
.ls0{letter-spacing:1614.921605pt;}
.wsa{word-spacing:-34.448399pt;}
.ws8{word-spacing:-34.262386pt;}
.ws9{word-spacing:-31.871987pt;}
.ws4{word-spacing:-28.816521pt;}
.ws2{word-spacing:-16.250873pt;}
.ws0{word-spacing:-16.133114pt;}
.ws6{word-spacing:-14.767354pt;}
.wsb{word-spacing:-13.616529pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws5{word-spacing:-11.999995pt;}
.ws7{word-spacing:0.000000pt;}
._1d{margin-left:-4.335843pt;}
._10{margin-left:-3.192316pt;}
._1{margin-left:-1.461775pt;}
._0{width:0.900827pt;}
._1e{width:1.792311pt;}
._8{width:2.683933pt;}
._9{width:3.617416pt;}
._a{width:5.110017pt;}
._f{width:6.314192pt;}
._7{width:7.702446pt;}
._6{width:8.839735pt;}
._2{width:10.482521pt;}
._e{width:11.675313pt;}
._d{width:13.103121pt;}
._c{width:14.270714pt;}
._3{width:15.165922pt;}
._b{width:16.264149pt;}
._19{width:17.223001pt;}
._5{width:18.125855pt;}
._4{width:19.333767pt;}
._1f{width:20.846375pt;}
._16{width:23.497108pt;}
._12{width:28.524173pt;}
._18{width:29.959521pt;}
._17{width:30.904593pt;}
._15{width:48.197801pt;}
._1b{width:128.651397pt;}
._11{width:263.897969pt;}
._14{width:282.926105pt;}
._1c{width:285.143265pt;}
._1a{width:317.025292pt;}
._13{width:979.351340pt;}
.fs7{font-size:5.119998pt;}
.fs5{font-size:15.999994pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs6{font-size:61.439975pt;}
.fs4{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.720003pt;}
.ya1{bottom:3.039397pt;}
.y44{bottom:3.199093pt;}
.y7f{bottom:3.199207pt;}
.y81{bottom:3.199217pt;}
.y84{bottom:3.199227pt;}
.y86{bottom:3.199237pt;}
.y89{bottom:3.199247pt;}
.y8b{bottom:3.199257pt;}
.ycc{bottom:3.679210pt;}
.ya{bottom:3.840034pt;}
.y16{bottom:4.159173pt;}
.yb{bottom:28.906922pt;}
.y9{bottom:43.306880pt;}
.y7{bottom:47.146914pt;}
.y8{bottom:49.226914pt;}
.y6f{bottom:89.386631pt;}
.y120{bottom:91.946630pt;}
.y102{bottom:94.346896pt;}
.y140{bottom:94.826895pt;}
.ye0{bottom:100.266893pt;}
.y6e{bottom:113.546621pt;}
.y11f{bottom:116.106620pt;}
.y101{bottom:118.506886pt;}
.y13f{bottom:118.986886pt;}
.ybb{bottom:119.306619pt;}
.ydf{bottom:121.546885pt;}
.y4a{bottom:122.026880pt;}
.y15f{bottom:124.426884pt;}
.y5{bottom:128.266615pt;}
.y100{bottom:134.026613pt;}
.y6d{bottom:137.706612pt;}
.y49{bottom:140.106611pt;}
.y11e{bottom:140.266611pt;}
.yba{bottom:143.626609pt;}
.y13e{bottom:145.226609pt;}
.y15e{bottom:150.826606pt;}
.y48{bottom:155.306605pt;}
.yff{bottom:157.866604pt;}
.y6c{bottom:163.306601pt;}
.y11d{bottom:164.586601pt;}
.yb9{bottom:167.786600pt;}
.y13d{bottom:169.386599pt;}
.y47{bottom:170.666598pt;}
.ya0{bottom:171.147200pt;}
.y21{bottom:175.466596pt;}
.y15d{bottom:176.586596pt;}
.y6b{bottom:178.666595pt;}
.y11c{bottom:179.946595pt;}
.y46{bottom:186.186592pt;}
.y9f{bottom:189.546591pt;}
.yb8{bottom:191.946590pt;}
.y13c{bottom:193.546589pt;}
.yfe{bottom:198.026587pt;}
.y15c{bottom:200.746586pt;}
.y6a{bottom:202.506586pt;}
.y11b{bottom:203.786585pt;}
.y9e{bottom:204.746585pt;}
.y40{bottom:213.386581pt;}
.yb7{bottom:217.706580pt;}
.y69{bottom:217.866580pt;}
.y9d{bottom:220.106579pt;}
.yfd{bottom:222.186578pt;}
.y13b{bottom:224.746577pt;}
.y15b{bottom:226.986576pt;}
.y3f{bottom:227.146576pt;}
.y9c{bottom:235.466572pt;}
.y68{bottom:242.026570pt;}
.y11a{bottom:243.786569pt;}
.yfc{bottom:246.346568pt;}
.y13a{bottom:248.906567pt;}
.y9b{bottom:250.826566pt;}
.y15a{bottom:251.146566pt;}
.y98{bottom:253.386565pt;}
.yb6{bottom:257.706564pt;}
.y3e{bottom:259.626563pt;}
.y9a{bottom:266.026560pt;}
.y67{bottom:266.346560pt;}
.y119{bottom:267.946559pt;}
.yfb{bottom:272.106558pt;}
.y3d{bottom:273.386557pt;}
.y97{bottom:274.986557pt;}
.y139{bottom:275.146557pt;}
.y159{bottom:275.306557pt;}
.y99{bottom:281.386554pt;}
.yb5{bottom:282.026554pt;}
.y3c{bottom:287.306552pt;}
.y118{bottom:292.266550pt;}
.y66{bottom:292.426550pt;}
.y96{bottom:298.666547pt;}
.y138{bottom:299.306547pt;}
.y3b{bottom:301.066546pt;}
.y158{bottom:303.626545pt;}
.yb4{bottom:306.026544pt;}
.yfa{bottom:312.106542pt;}
.y3a{bottom:314.826541pt;}
.y117{bottom:316.426540pt;}
.y65{bottom:316.746540pt;}
.y95{bottom:322.506538pt;}
.y137{bottom:323.626537pt;}
.y20{bottom:327.466536pt;}
.y157{bottom:329.546535pt;}
.yf9{bottom:336.266532pt;}
.y64{bottom:342.826530pt;}
.yb3{bottom:346.346528pt;}
.y39{bottom:347.306528pt;}
.y94{bottom:347.466528pt;}
.y136{bottom:349.706527pt;}
.y156{bottom:353.546525pt;}
.y116{bottom:356.586524pt;}
.yf8{bottom:360.426522pt;}
.y38{bottom:361.066522pt;}
.y63{bottom:366.986520pt;}
.yb2{bottom:370.506518pt;}
.y93{bottom:372.426518pt;}
.y135{bottom:373.866517pt;}
.y37{bottom:374.986517pt;}
.yf7{bottom:376.106516pt;}
.y115{bottom:380.746514pt;}
.y155{bottom:384.906513pt;}
.y36{bottom:388.746511pt;}
.yb1{bottom:394.666509pt;}
.y92{bottom:397.386508pt;}
.y134{bottom:400.106507pt;}
.yf6{bottom:400.426506pt;}
.y35{bottom:402.506506pt;}
.y114{bottom:405.066505pt;}
.y154{bottom:409.066503pt;}
.y62{bottom:409.226503pt;}
.y34{bottom:416.266500pt;}
.yb0{bottom:418.986499pt;}
.y91{bottom:422.346498pt;}
.y133{bottom:424.266497pt;}
.yf5{bottom:426.186496pt;}
.y1f{bottom:428.746495pt;}
.y8f{bottom:429.226495pt;}
.y33{bottom:430.186495pt;}
.y61{bottom:433.386493pt;}
.y153{bottom:435.146493pt;}
.yaf{bottom:443.146489pt;}
.y90{bottom:447.306488pt;}
.y132{bottom:450.346487pt;}
.yf4{bottom:450.506486pt;}
.y8e{bottom:450.666486pt;}
.y113{bottom:454.826485pt;}
.y152{bottom:459.466483pt;}
.y32{bottom:462.506482pt;}
.yae{bottom:468.746479pt;}
.y60{bottom:473.546477pt;}
.y8d{bottom:474.346477pt;}
.y131{bottom:474.666477pt;}
.yf3{bottom:475.626476pt;}
.y31{bottom:476.426476pt;}
.y1e{bottom:483.626473pt;}
.yad{bottom:484.106473pt;}
.y151{bottom:485.546472pt;}
.y30{bottom:490.186471pt;}
.y112{bottom:494.986469pt;}
.y1d{bottom:497.226468pt;}
.y5f{bottom:497.706468pt;}
.y8c{bottom:498.186467pt;}
.yf2{bottom:499.786467pt;}
.yac{bottom:500.266467pt;}
.y130{bottom:500.746466pt;}
.y2f{bottom:503.946465pt;}
.y150{bottom:509.866463pt;}
.y1c{bottom:510.826462pt;}
.yab{bottom:515.626460pt;}
.y2e{bottom:517.706460pt;}
.y111{bottom:519.146459pt;}
.y8a{bottom:520.107200pt;}
.y5e{bottom:521.866458pt;}
.y1b{bottom:523.306457pt;}
.yf1{bottom:524.106457pt;}
.y12f{bottom:525.066457pt;}
.y2d{bottom:531.626454pt;}
.y14f{bottom:534.026453pt;}
.ycf{bottom:535.626452pt;}
.y110{bottom:543.306449pt;}
.y88{bottom:545.067200pt;}
.y2c{bottom:545.386449pt;}
.y5d{bottom:546.186448pt;}
.y87{bottom:548.266447pt;}
.yf0{bottom:549.226447pt;}
.y2b{bottom:559.146443pt;}
.y14e{bottom:560.106443pt;}
.yce{bottom:560.746442pt;}
.yd1{bottom:562.026442pt;}
.y10f{bottom:567.626440pt;}
.yd0{bottom:568.426439pt;}
.y85{bottom:570.027200pt;}
.y5c{bottom:570.186439pt;}
.yef{bottom:573.386437pt;}
.y12e{bottom:575.306437pt;}
.y1a{bottom:577.066436pt;}
.y14d{bottom:584.426433pt;}
.y2a{bottom:591.626430pt;}
.y10e{bottom:591.786430pt;}
.y83{bottom:594.987200pt;}
.yc9{bottom:596.746428pt;}
.yee{bottom:597.546428pt;}
.y82{bottom:598.186427pt;}
.y12d{bottom:599.626427pt;}
.y29{bottom:605.386425pt;}
.y5b{bottom:610.506422pt;}
.yed{bottom:614.026421pt;}
.ycd{bottom:616.746420pt;}
.y28{bottom:619.306419pt;}
.yc8{bottom:619.466419pt;}
.y80{bottom:619.947200pt;}
.y10d{bottom:622.986417pt;}
.y12c{bottom:623.786417pt;}
.y7d{bottom:629.706415pt;}
.y19{bottom:630.826414pt;}
.y5a{bottom:634.666413pt;}
.ycb{bottom:637.227200pt;}
.yec{bottom:637.866412pt;}
.yde{bottom:638.346411pt;}
.yc7{bottom:640.906410pt;}
.y18{bottom:644.746409pt;}
.y7e{bottom:644.907200pt;}
.yca{bottom:647.306408pt;}
.y12b{bottom:647.946407pt;}
.y7c{bottom:651.466406pt;}
.y27{bottom:651.626406pt;}
.y59{bottom:658.826403pt;}
.y14c{bottom:658.986403pt;}
.ydd{bottom:662.506402pt;}
.y10c{bottom:663.146401pt;}
.y26{bottom:665.546400pt;}
.yeb{bottom:666.986400pt;}
.y12a{bottom:674.186397pt;}
.y7b{bottom:674.986397pt;}
.yc5{bottom:675.626396pt;}
.y25{bottom:679.306395pt;}
.y58{bottom:683.146393pt;}
.y14b{bottom:685.066393pt;}
.ydc{bottom:686.666392pt;}
.y10b{bottom:687.306392pt;}
.yea{bottom:691.146390pt;}
.y24{bottom:693.066389pt;}
.yc4{bottom:698.346387pt;}
.y17{bottom:698.506387pt;}
.y7a{bottom:702.026386pt;}
.y22{bottom:702.186386pt;}
.y23{bottom:706.826384pt;}
.y57{bottom:707.146384pt;}
.y14a{bottom:709.386383pt;}
.ydb{bottom:710.986382pt;}
.y10a{bottom:711.466382pt;}
.ye9{bottom:715.306381pt;}
.yc3{bottom:719.786379pt;}
.y79{bottom:722.346378pt;}
.y129{bottom:722.506378pt;}
.yc6{bottom:726.186376pt;}
.y15{bottom:729.547200pt;}
.y14{bottom:733.706373pt;}
.yda{bottom:735.146373pt;}
.y149{bottom:735.466372pt;}
.y109{bottom:735.786372pt;}
.y56{bottom:736.586372pt;}
.y78{bottom:738.186371pt;}
.ye8{bottom:741.066370pt;}
.y128{bottom:748.746367pt;}
.yc2{bottom:748.906367pt;}
.ye7{bottom:756.426364pt;}
.y148{bottom:759.626363pt;}
.y108{bottom:759.946363pt;}
.y55{bottom:760.746362pt;}
.y13{bottom:761.066362pt;}
.yc1{bottom:772.746358pt;}
.y127{bottom:772.906358pt;}
.yd9{bottom:776.106356pt;}
.y12{bottom:776.426356pt;}
.y77{bottom:780.586354pt;}
.y147{bottom:783.946353pt;}
.y107{bottom:784.106353pt;}
.y54{bottom:784.906353pt;}
.y11{bottom:791.626350pt;}
.yc0{bottom:797.706348pt;}
.y76{bottom:798.346347pt;}
.y126{bottom:799.146347pt;}
.yd8{bottom:799.946347pt;}
.ye6{bottom:804.906345pt;}
.y10{bottom:806.986344pt;}
.y53{bottom:809.066343pt;}
.y146{bottom:810.026343pt;}
.yf{bottom:822.346338pt;}
.ybf{bottom:822.666338pt;}
.y125{bottom:823.306337pt;}
.y106{bottom:824.266337pt;}
.ybd{bottom:829.546335pt;}
.y75{bottom:829.866335pt;}
.ye5{bottom:830.026335pt;}
.y145{bottom:834.186333pt;}
.ye{bottom:837.706332pt;}
.yd7{bottom:840.106331pt;}
.y105{bottom:848.426327pt;}
.y52{bottom:849.226327pt;}
.y124{bottom:849.386327pt;}
.ybc{bottom:850.986326pt;}
.y74{bottom:854.026325pt;}
.ye4{bottom:854.186325pt;}
.ybe{bottom:857.386324pt;}
.y144{bottom:858.506323pt;}
.yd{bottom:864.106321pt;}
.yd6{bottom:864.266321pt;}
.y104{bottom:872.586318pt;}
.y51{bottom:873.546317pt;}
.yaa{bottom:876.266316pt;}
.y73{bottom:878.186315pt;}
.ye3{bottom:880.746314pt;}
.y143{bottom:884.586313pt;}
.yc{bottom:884.746313pt;}
.yd5{bottom:888.426311pt;}
.y103{bottom:896.906308pt;}
.ye2{bottom:897.066308pt;}
.y50{bottom:897.706308pt;}
.ya9{bottom:900.106307pt;}
.y72{bottom:902.506306pt;}
.y142{bottom:908.906303pt;}
.yd4{bottom:912.746302pt;}
.ya5{bottom:913.226301pt;}
.y45{bottom:917.546300pt;}
.y123{bottom:917.866300pt;}
.ye1{bottom:920.906298pt;}
.y4f{bottom:921.866298pt;}
.ya8{bottom:925.066297pt;}
.y71{bottom:926.666296pt;}
.y43{bottom:931.467200pt;}
.ya4{bottom:934.986293pt;}
.y122{bottom:935.626292pt;}
.yd3{bottom:936.906292pt;}
.y4e{bottom:946.186288pt;}
.y121{bottom:948.266287pt;}
.ya7{bottom:950.026287pt;}
.y42{bottom:951.466286pt;}
.ya3{bottom:956.586284pt;}
.y141{bottom:959.146283pt;}
.y70{bottom:961.066282pt;}
.y4d{bottom:961.546282pt;}
.ya6{bottom:975.146277pt;}
.y41{bottom:976.266276pt;}
.ya2{bottom:978.346275pt;}
.yd2{bottom:985.226273pt;}
.y4c{bottom:985.386273pt;}
.y4{bottom:1001.546266pt;}
.y6{bottom:1025.866256pt;}
.y3{bottom:1031.466254pt;}
.y2{bottom:1046.826248pt;}
.y1{bottom:1062.186242pt;}
.h1e{height:3.557499pt;}
.h17{height:13.374995pt;}
.h13{height:14.560000pt;}
.h1b{height:14.880000pt;}
.h1a{height:15.040000pt;}
.h14{height:15.360000pt;}
.h10{height:16.640000pt;}
.h1d{height:17.440000pt;}
.h5{height:19.680000pt;}
.h9{height:20.000000pt;}
.h4{height:31.741237pt;}
.hc{height:32.554674pt;}
.hd{height:33.351549pt;}
.hb{height:34.968736pt;}
.h6{height:35.404673pt;}
.h3{height:35.531236pt;}
.h16{height:36.182798pt;}
.h1{height:36.909048pt;}
.h15{height:37.142485pt;}
.h12{height:38.698735pt;}
.hf{height:39.904984pt;}
.he{height:40.124984pt;}
.h11{height:40.911234pt;}
.h18{height:41.849983pt;}
.h2{height:43.584983pt;}
.h7{height:43.593733pt;}
.h8{height:44.404982pt;}
.h1c{height:44.406049pt;}
.ha{height:47.374981pt;}
.h19{height:51.359979pt;}
.h0{height:1122.666667pt;}
.w3{width:4.160000pt;}
.wd{width:4.480000pt;}
.w2{width:6.080000pt;}
.wf{width:6.720000pt;}
.w8{width:7.840000pt;}
.w4{width:8.960000pt;}
.wb{width:17.920000pt;}
.w6{width:31.040000pt;}
.wc{width:36.320000pt;}
.wa{width:46.080000pt;}
.w10{width:46.880000pt;}
.we{width:207.840000pt;}
.w7{width:261.120000pt;}
.w9{width:327.040000pt;}
.w5{width:348.160000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:53.599979pt;}
.x14{left:71.519971pt;}
.x5{left:77.599969pt;}
.xd{left:81.593434pt;}
.xe{left:86.718758pt;}
.x1{left:89.279964pt;}
.x11{left:90.559964pt;}
.x12{left:94.239991pt;}
.x22{left:95.999962pt;}
.x30{left:97.279961pt;}
.x8{left:99.359960pt;}
.x25{left:104.472492pt;}
.xa{left:107.039957pt;}
.x23{left:119.999952pt;}
.x15{left:125.599950pt;}
.x13{left:127.359949pt;}
.x24{left:143.999931pt;}
.x9{left:174.719442pt;}
.x16{left:199.199889pt;}
.x31{left:219.679912pt;}
.x37{left:223.039911pt;}
.x17{left:225.599846pt;}
.x26{left:231.992396pt;}
.x1a{left:234.879906pt;}
.x18{left:242.079903pt;}
.x1f{left:249.919900pt;}
.x1c{left:260.800000pt;}
.x2{left:262.239895pt;}
.x1d{left:275.999890pt;}
.x20{left:281.600000pt;}
.xb{left:282.713499pt;}
.x2d{left:298.720488pt;}
.xf{left:300.320000pt;}
.x32{left:301.439915pt;}
.x10{left:304.480000pt;}
.x2c{left:306.241197pt;}
.x2a{left:310.559876pt;}
.x2b{left:322.400596pt;}
.x6{left:333.759866pt;}
.x2e{left:340.800000pt;}
.x1b{left:345.439862pt;}
.xc{left:397.599841pt;}
.x19{left:427.359829pt;}
.x21{left:542.720000pt;}
.x2f{left:553.120000pt;}
.x27{left:586.240000pt;}
.x35{left:587.520000pt;}
.x3{left:600.479760pt;}
.x28{left:614.400000pt;}
.x33{left:635.040158pt;}
.x29{left:640.159744pt;}
.x34{left:642.239743pt;}
.x1e{left:661.599761pt;}
.x36{left:662.879735pt;}
.x38{left:697.759721pt;}
.x7{left:764.960000pt;}
}




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