
    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_bf58532438adafb7d6489177.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1b078d134974fbd586f40383.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_9db8a4af26bcad9b96a144d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111000;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_cdb6425fd8a5f724d5d8c7d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909000;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_3f31c9c6a7cdfb889c281452.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936000;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_168e05ada51f2d14341bb16a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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_de352f1c91c7a5af7ae951db.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111000;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_5314209ddedfd067a0d45f4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927000;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_1b078d134974fbd586f40383.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_9622c53444ef2472b5568a7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_9ac150fdf521ed4049a1a73c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941000;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_19fd65e243a9b61e95ae8f4a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.935000;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_8b2b50c193677291276877ad.woff2')format("woff");}.fff{font-family:fff;line-height:0.941000;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_8b2b50c193677291276877ad.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941000;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:ff12;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941000;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:ff13;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941000;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:ff14;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941000;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:ff15;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941000;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:ff16;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.941000;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:ff17;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.941000;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:ff18;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.941000;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:ff19;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.941000;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:ff1a;src:url('chunks/assets/font_8b2b50c193677291276877ad.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.941000;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:ff1b;src:url('chunks/assets/font_9622c53444ef2472b5568a7b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.941000;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:ff1c;src:url('chunks/assets/font_66d2aba9f891720d434c3e9e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.936032;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:ff1d;src:url('chunks/assets/font_88b61807bc0a3d14edc99654.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.941000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-37.417200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.860000px;}
.ls1{letter-spacing:-4.080000px;}
.ls18{letter-spacing:-3.906000px;}
.ls15{letter-spacing:-3.834000px;}
.ls1a{letter-spacing:-3.276000px;}
.ls3a{letter-spacing:-3.066000px;}
.ls33{letter-spacing:-2.880000px;}
.ls35{letter-spacing:-2.520000px;}
.ls1f{letter-spacing:-2.100000px;}
.ls37{letter-spacing:-1.974000px;}
.ls1e{letter-spacing:-1.890000px;}
.ls20{letter-spacing:-1.680000px;}
.ls22{letter-spacing:-1.638000px;}
.ls2c{letter-spacing:-1.596000px;}
.ls1d{letter-spacing:-1.554000px;}
.ls1b{letter-spacing:-1.470000px;}
.ls2a{letter-spacing:-1.428000px;}
.ls47{letter-spacing:-1.386000px;}
.ls39{letter-spacing:-1.008000px;}
.ls48{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.672000px;}
.ls46{letter-spacing:-0.630000px;}
.ls40{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.462000px;}
.ls2b{letter-spacing:-0.378000px;}
.ls3d{letter-spacing:-0.270000px;}
.ls27{letter-spacing:-0.252000px;}
.ls42{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.132000px;}
.ls2d{letter-spacing:-0.126000px;}
.ls41{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.084000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.042000px;}
.ls1c{letter-spacing:0.084000px;}
.ls19{letter-spacing:0.126000px;}
.ls3f{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.168000px;}
.ls24{letter-spacing:0.252000px;}
.ls3e{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.396000px;}
.ls23{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.432000px;}
.ls3b{letter-spacing:0.462000px;}
.ls2{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.546000px;}
.ls36{letter-spacing:0.588000px;}
.ls7{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.630000px;}
.ls3c{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.714000px;}
.lsd{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.840000px;}
.ls38{letter-spacing:0.882000px;}
.ls43{letter-spacing:0.966000px;}
.ls16{letter-spacing:0.972000px;}
.ls34{letter-spacing:1.026000px;}
.lse{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.134000px;}
.ls30{letter-spacing:1.297200px;}
.ls2e{letter-spacing:1.344000px;}
.lsf{letter-spacing:69.517200px;}
.ls13{letter-spacing:71.376600px;}
.ls11{letter-spacing:125.573400px;}
.ls12{letter-spacing:150.163800px;}
.ls10{letter-spacing:175.381200px;}
.ls32{letter-spacing:544.465440px;}
.ls31{letter-spacing:806.781840px;}
.ls2f{letter-spacing:820.069200px;}
.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;}
}
.ws46{word-spacing:-17.040000px;}
.wsd3{word-spacing:-16.038000px;}
.wsaa{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.444000px;}
.wsd4{word-spacing:-15.012000px;}
.wsa8{word-spacing:-13.800000px;}
.ws75{word-spacing:-12.810000px;}
.ws1{word-spacing:-12.600000px;}
.wsd7{word-spacing:-12.432000px;}
.ws4b{word-spacing:-12.390000px;}
.wsd5{word-spacing:-12.138000px;}
.ws63{word-spacing:-12.096000px;}
.wsda{word-spacing:-12.054000px;}
.ws67{word-spacing:-11.928000px;}
.ws82{word-spacing:-11.844000px;}
.ws78{word-spacing:-11.802000px;}
.ws53{word-spacing:-11.760000px;}
.wsd9{word-spacing:-11.676000px;}
.ws7d{word-spacing:-11.592000px;}
.ws87{word-spacing:-11.550000px;}
.ws70{word-spacing:-11.424000px;}
.ws6c{word-spacing:-11.214000px;}
.wsdb{word-spacing:-11.046000px;}
.ws60{word-spacing:-11.004000px;}
.wsd6{word-spacing:-10.038000px;}
.ws5c{word-spacing:-9.996000px;}
.wsd8{word-spacing:-9.786000px;}
.ws58{word-spacing:-9.576000px;}
.wsa9{word-spacing:-9.156000px;}
.wsc1{word-spacing:-4.158000px;}
.wsd{word-spacing:-3.696000px;}
.wse{word-spacing:-3.564000px;}
.wse0{word-spacing:-3.348000px;}
.ws25{word-spacing:-2.970000px;}
.ws99{word-spacing:-2.916000px;}
.wsfa{word-spacing:-2.898000px;}
.ws44{word-spacing:-2.592000px;}
.ws41{word-spacing:-2.538000px;}
.wsb1{word-spacing:-2.520000px;}
.ws89{word-spacing:-2.484000px;}
.wse6{word-spacing:-2.268000px;}
.wsf3{word-spacing:-2.226000px;}
.wsed{word-spacing:-2.160000px;}
.wsf9{word-spacing:-2.142000px;}
.wsfb{word-spacing:-2.058000px;}
.ws45{word-spacing:-2.052000px;}
.ws5{word-spacing:-2.016000px;}
.ws36{word-spacing:-1.944000px;}
.ws8a{word-spacing:-1.932000px;}
.wsb{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.848000px;}
.wsa1{word-spacing:-1.836000px;}
.ws9{word-spacing:-1.806000px;}
.wsb3{word-spacing:-1.764000px;}
.wsfd{word-spacing:-1.722000px;}
.ws100{word-spacing:-1.596000px;}
.ws2b{word-spacing:-1.512000px;}
.wsf0{word-spacing:-1.428000px;}
.wsb7{word-spacing:-1.344000px;}
.wsba{word-spacing:-1.302000px;}
.ws2f{word-spacing:-1.242000px;}
.ws106{word-spacing:-1.200000px;}
.ws6{word-spacing:-1.176000px;}
.wsaf{word-spacing:-1.092000px;}
.wsea{word-spacing:-1.026000px;}
.wsff{word-spacing:-0.966000px;}
.wsae{word-spacing:-0.924000px;}
.ws26{word-spacing:-0.756000px;}
.wsb0{word-spacing:-0.714000px;}
.ws4{word-spacing:-0.540000px;}
.ws97{word-spacing:-0.486000px;}
.ws22{word-spacing:-0.378000px;}
.ws1a{word-spacing:-0.270000px;}
.wsbb{word-spacing:-0.168000px;}
.wse3{word-spacing:-0.162000px;}
.wsdd{word-spacing:-0.126000px;}
.ws0{word-spacing:0.000000px;}
.ws3c{word-spacing:0.054000px;}
.wsf5{word-spacing:0.084000px;}
.wsc2{word-spacing:0.108000px;}
.ws102{word-spacing:0.210000px;}
.wsbd{word-spacing:0.216000px;}
.wsb4{word-spacing:0.252000px;}
.wseb{word-spacing:0.270000px;}
.ws21{word-spacing:0.378000px;}
.wsf8{word-spacing:0.420000px;}
.wsb8{word-spacing:0.462000px;}
.ws35{word-spacing:0.486000px;}
.wsb2{word-spacing:0.504000px;}
.ws8b{word-spacing:0.540000px;}
.ws34{word-spacing:0.594000px;}
.ws2e{word-spacing:0.648000px;}
.ws32{word-spacing:0.702000px;}
.wsf2{word-spacing:0.714000px;}
.wsb6{word-spacing:0.798000px;}
.wsc9{word-spacing:0.864000px;}
.ws93{word-spacing:0.972000px;}
.wsf4{word-spacing:1.050000px;}
.ws11{word-spacing:1.188000px;}
.wsb9{word-spacing:1.344000px;}
.ws42{word-spacing:1.350000px;}
.wsfc{word-spacing:1.386000px;}
.ws105{word-spacing:1.392000px;}
.wsf{word-spacing:1.452000px;}
.ws29{word-spacing:1.674000px;}
.wsc0{word-spacing:1.782000px;}
.ws10{word-spacing:1.848000px;}
.wsbc{word-spacing:1.890000px;}
.wsb5{word-spacing:2.100000px;}
.wsc4{word-spacing:2.214000px;}
.ws88{word-spacing:2.322000px;}
.wsf6{word-spacing:2.478000px;}
.ws90{word-spacing:2.484000px;}
.ws31{word-spacing:2.592000px;}
.ws9f{word-spacing:2.646000px;}
.ws9a{word-spacing:2.700000px;}
.wsdc{word-spacing:2.730000px;}
.wsa7{word-spacing:2.754000px;}
.ws24{word-spacing:3.078000px;}
.ws30{word-spacing:3.132000px;}
.wsc8{word-spacing:3.186000px;}
.wsf1{word-spacing:3.276000px;}
.wse4{word-spacing:3.294000px;}
.wsec{word-spacing:3.348000px;}
.ws104{word-spacing:3.360000px;}
.wsc6{word-spacing:3.402000px;}
.ws3f{word-spacing:3.834000px;}
.wsf7{word-spacing:3.990000px;}
.wsde{word-spacing:4.050000px;}
.ws3a{word-spacing:4.212000px;}
.wse2{word-spacing:4.320000px;}
.ws9d{word-spacing:4.374000px;}
.ws13{word-spacing:4.428000px;}
.ws37{word-spacing:4.482000px;}
.ws103{word-spacing:4.608000px;}
.wsc3{word-spacing:4.698000px;}
.wsd0{word-spacing:4.914000px;}
.wsd2{word-spacing:5.022000px;}
.wsa2{word-spacing:5.184000px;}
.ws8{word-spacing:5.292000px;}
.ws33{word-spacing:5.400000px;}
.wsef{word-spacing:5.418000px;}
.ws8c{word-spacing:5.562000px;}
.ws95{word-spacing:5.832000px;}
.wsfe{word-spacing:5.880000px;}
.ws3b{word-spacing:5.994000px;}
.wsee{word-spacing:6.300000px;}
.ws2a{word-spacing:6.372000px;}
.ws92{word-spacing:6.426000px;}
.wsa5{word-spacing:6.534000px;}
.ws9e{word-spacing:6.750000px;}
.wsa6{word-spacing:6.804000px;}
.wscd{word-spacing:6.966000px;}
.wsce{word-spacing:7.020000px;}
.ws17{word-spacing:7.128000px;}
.wscf{word-spacing:7.344000px;}
.ws18{word-spacing:7.452000px;}
.ws15{word-spacing:7.506000px;}
.ws94{word-spacing:8.154000px;}
.ws91{word-spacing:8.208000px;}
.ws8f{word-spacing:8.262000px;}
.ws9c{word-spacing:8.316000px;}
.ws1d{word-spacing:8.424000px;}
.ws7{word-spacing:8.820000px;}
.ws1f{word-spacing:8.856000px;}
.ws9b{word-spacing:9.018000px;}
.ws19{word-spacing:9.288000px;}
.wsd1{word-spacing:9.558000px;}
.ws1b{word-spacing:9.720000px;}
.ws14{word-spacing:9.828000px;}
.ws12{word-spacing:10.044000px;}
.ws3d{word-spacing:10.206000px;}
.wsa4{word-spacing:10.422000px;}
.ws98{word-spacing:10.584000px;}
.wse8{word-spacing:10.746000px;}
.wse9{word-spacing:10.962000px;}
.ws2d{word-spacing:11.070000px;}
.wsc7{word-spacing:11.124000px;}
.wsa{word-spacing:11.256000px;}
.ws27{word-spacing:11.340000px;}
.wsc5{word-spacing:11.664000px;}
.ws1c{word-spacing:11.772000px;}
.wsca{word-spacing:11.880000px;}
.wsa0{word-spacing:12.150000px;}
.ws8d{word-spacing:12.258000px;}
.wsa3{word-spacing:12.528000px;}
.ws2c{word-spacing:12.582000px;}
.ws39{word-spacing:12.744000px;}
.ws23{word-spacing:13.284000px;}
.wse1{word-spacing:13.338000px;}
.wse7{word-spacing:13.554000px;}
.ws1e{word-spacing:14.094000px;}
.wscb{word-spacing:14.634000px;}
.ws40{word-spacing:15.012000px;}
.wse5{word-spacing:15.066000px;}
.ws38{word-spacing:15.768000px;}
.ws3e{word-spacing:15.876000px;}
.ws28{word-spacing:15.930000px;}
.ws20{word-spacing:16.254000px;}
.wsdf{word-spacing:16.902000px;}
.ws96{word-spacing:17.928000px;}
.wsbf{word-spacing:18.306000px;}
.ws101{word-spacing:19.446000px;}
.ws16{word-spacing:22.680000px;}
.wsbe{word-spacing:25.758000px;}
.ws43{word-spacing:26.946000px;}
.ws8e{word-spacing:27.162000px;}
.wscc{word-spacing:41.148000px;}
.ws5d{word-spacing:54.429600px;}
.ws4a{word-spacing:59.115000px;}
.ws48{word-spacing:65.035800px;}
.ws76{word-spacing:65.059800px;}
.ws49{word-spacing:71.736000px;}
.ws71{word-spacing:74.900400px;}
.ws52{word-spacing:76.479600px;}
.ws74{word-spacing:85.399800px;}
.ws73{word-spacing:99.363000px;}
.ws61{word-spacing:115.783200px;}
.ws4f{word-spacing:116.715600px;}
.ws4e{word-spacing:137.871000px;}
.ws68{word-spacing:138.072600px;}
.ws6b{word-spacing:138.311400px;}
.ws7e{word-spacing:139.874400px;}
.ws83{word-spacing:140.454000px;}
.ws4c{word-spacing:141.798000px;}
.ws81{word-spacing:142.092000px;}
.ws86{word-spacing:142.251600px;}
.ws57{word-spacing:144.850800px;}
.ws5b{word-spacing:148.433400px;}
.ws85{word-spacing:155.966400px;}
.ws51{word-spacing:156.105000px;}
.ws59{word-spacing:158.955000px;}
.ws79{word-spacing:159.060000px;}
.ws54{word-spacing:159.278400px;}
.ws64{word-spacing:159.790800px;}
.ws80{word-spacing:159.868200px;}
.ws6d{word-spacing:161.307000px;}
.ws5e{word-spacing:161.705400px;}
.ws6f{word-spacing:162.037800px;}
.ws7c{word-spacing:162.096600px;}
.ws77{word-spacing:166.300200px;}
.ws6a{word-spacing:176.840400px;}
.ws7b{word-spacing:181.284000px;}
.ws56{word-spacing:182.762400px;}
.ws4d{word-spacing:185.026200px;}
.ws72{word-spacing:185.271600px;}
.ws50{word-spacing:195.519600px;}
.ws62{word-spacing:218.002200px;}
.wsab{word-spacing:226.855200px;}
.ws7a{word-spacing:235.054200px;}
.ws55{word-spacing:235.394400px;}
.ws69{word-spacing:236.335200px;}
.ws84{word-spacing:236.583000px;}
.ws6e{word-spacing:236.864400px;}
.ws65{word-spacing:236.940000px;}
.ws7f{word-spacing:237.591000px;}
.ws5a{word-spacing:237.952200px;}
.ws66{word-spacing:240.894600px;}
.ws5f{word-spacing:243.633000px;}
.wsad{word-spacing:639.964800px;}
.wsac{word-spacing:640.951800px;}
.ws47{word-spacing:1554.484200px;}
.ws2{word-spacing:1652.235600px;}
._a{margin-left:-26.028000px;}
._1e{margin-left:-13.354800px;}
._4{margin-left:-9.996000px;}
._b{margin-left:-7.614000px;}
._8{margin-left:-5.178000px;}
._35{margin-left:-4.069800px;}
._6{margin-left:-2.983200px;}
._3{margin-left:-1.752000px;}
._0{width:1.296000px;}
._9{width:2.547600px;}
._1{width:3.810000px;}
._7{width:4.831200px;}
._e{width:5.886000px;}
._2{width:43.780200px;}
._5{width:45.108000px;}
._28{width:54.057600px;}
._30{width:68.992200px;}
._1f{width:71.761800px;}
._22{width:72.926400px;}
._21{width:74.157600px;}
._29{width:79.748400px;}
._24{width:108.992400px;}
._27{width:118.707600px;}
._33{width:120.576000px;}
._31{width:124.412400px;}
._32{width:127.076400px;}
._26{width:128.317200px;}
._23{width:145.057200px;}
._13{width:163.225200px;}
._19{width:188.853600px;}
._12{width:203.233800px;}
._f{width:253.168200px;}
._20{width:327.871200px;}
._34{width:370.543200px;}
._1b{width:380.015400px;}
._1c{width:410.734200px;}
._1d{width:420.658200px;}
._2e{width:427.620000px;}
._2f{width:547.593600px;}
._11{width:619.139400px;}
._25{width:648.337200px;}
._15{width:720.016200px;}
._16{width:723.130200px;}
._17{width:725.722200px;}
._14{width:770.368200px;}
._36{width:853.944000px;}
._2a{width:856.365600px;}
._2c{width:865.774800px;}
._18{width:906.168600px;}
._2d{width:914.751600px;}
._2b{width:949.081200px;}
._1a{width:1009.872600px;}
._d{width:1026.281400px;}
._10{width:1055.932200px;}
._c{width:1900.624800px;}
.fc4{color:transparent;}
.fc3{color:rgb(23,111,192);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.360000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:43.194600px;}
.fsa{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.yec{bottom:0.000900px;}
.ye3{bottom:2.603850px;}
.ye7{bottom:2.604000px;}
.ye5{bottom:2.604600px;}
.yea{bottom:2.604900px;}
.y21{bottom:20.551200px;}
.y20{bottom:29.763750px;}
.y5{bottom:66.525004px;}
.ybb{bottom:95.244000px;}
.y57{bottom:95.244150px;}
.y60{bottom:96.251100px;}
.y4{bottom:97.125005px;}
.yba{bottom:113.244000px;}
.y56{bottom:113.244150px;}
.y6f{bottom:120.743550px;}
.y5b{bottom:131.030400px;}
.yb9{bottom:131.244000px;}
.y55{bottom:131.244150px;}
.y1f{bottom:139.264499px;}
.y6e{bottom:140.996250px;}
.yb8{bottom:149.244000px;}
.y54{bottom:149.244150px;}
.y5a{bottom:152.030400px;}
.y6d{bottom:161.249100px;}
.yb7{bottom:167.244000px;}
.y53{bottom:167.244150px;}
.y59{bottom:173.030400px;}
.y6c{bottom:181.501800px;}
.yb6{bottom:185.244000px;}
.y52{bottom:185.244150px;}
.y58{bottom:194.030400px;}
.y16{bottom:196.933500px;}
.y6b{bottom:201.754650px;}
.yb5{bottom:203.244000px;}
.y51{bottom:203.244150px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y50{bottom:221.244150px;}
.y6a{bottom:222.007500px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.ye1{bottom:227.303100px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y4f{bottom:239.244150px;}
.ye0{bottom:240.803100px;}
.y69{bottom:242.260200px;}
.ydf{bottom:254.303100px;}
.y4e{bottom:257.244150px;}
.y29{bottom:259.408650px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y68{bottom:262.513050px;}
.yde{bottom:267.803100px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y28{bottom:272.908650px;}
.y4d{bottom:275.244150px;}
.ydd{bottom:281.303100px;}
.y67{bottom:282.765750px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y4c{bottom:293.244150px;}
.y27{bottom:293.849550px;}
.ydc{bottom:294.803100px;}
.y66{bottom:303.018600px;}
.y26{bottom:307.349550px;}
.ydb{bottom:308.303100px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y4b{bottom:311.244150px;}
.y25{bottom:320.849550px;}
.yda{bottom:321.803100px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y65{bottom:323.271450px;}
.yb4{bottom:329.244000px;}
.yca{bottom:329.244150px;}
.yd9{bottom:335.303100px;}
.y64{bottom:343.524150px;}
.yb3{bottom:347.244000px;}
.y4a{bottom:347.244150px;}
.yd{bottom:348.133500px;}
.yd8{bottom:348.803100px;}
.y8c{bottom:356.424300px;}
.yd7{bottom:362.303100px;}
.y63{bottom:363.777000px;}
.yb2{bottom:365.244000px;}
.y49{bottom:365.244150px;}
.yd6{bottom:375.803100px;}
.y8b{bottom:378.428250px;}
.yb1{bottom:383.244000px;}
.y48{bottom:383.244150px;}
.y62{bottom:384.029700px;}
.yc{bottom:386.785499px;}
.yd5{bottom:389.303100px;}
.y47{bottom:401.244150px;}
.yb0{bottom:401.876400px;}
.yd4{bottom:402.803100px;}
.y61{bottom:404.282550px;}
.yb{bottom:408.044999px;}
.yaf{bottom:415.376400px;}
.yd3{bottom:416.303100px;}
.y46{bottom:419.244150px;}
.yd2{bottom:429.803100px;}
.yae{bottom:435.629100px;}
.y5f{bottom:437.244000px;}
.y45{bottom:437.244150px;}
.yd1{bottom:443.303100px;}
.y8a{bottom:448.479450px;}
.yad{bottom:449.129100px;}
.y5e{bottom:455.244000px;}
.y44{bottom:455.244150px;}
.yd0{bottom:456.803100px;}
.yac{bottom:469.381950px;}
.ycf{bottom:470.303100px;}
.y89{bottom:470.483400px;}
.y43{bottom:473.244150px;}
.yce{bottom:483.803100px;}
.y88{bottom:483.983400px;}
.yab{bottom:489.634800px;}
.y42{bottom:491.244150px;}
.ycd{bottom:497.303100px;}
.ya{bottom:502.864502px;}
.yc0{bottom:504.385472px;}
.yc3{bottom:504.396270px;}
.y41{bottom:509.244150px;}
.yaa{bottom:509.887500px;}
.ycc{bottom:510.803100px;}
.ybf{bottom:519.114830px;}
.yc2{bottom:519.125629px;}
.y9{bottom:520.864502px;}
.ycb{bottom:524.303100px;}
.y40{bottom:527.244150px;}
.ya9{bottom:530.140350px;}
.ybe{bottom:533.844189px;}
.yc1{bottom:533.854988px;}
.y8{bottom:538.864499px;}
.y5d{bottom:542.826000px;}
.y3f{bottom:545.244150px;}
.yc5{bottom:549.011837px;}
.ya8{bottom:550.393050px;}
.y7{bottom:556.864499px;}
.y3e{bottom:563.244150px;}
.ya7{bottom:563.893050px;}
.y84{bottom:565.431150px;}
.y87{bottom:565.441650px;}
.yc4{bottom:566.905200px;}
.ybd{bottom:578.550600px;}
.y83{bottom:579.753150px;}
.y86{bottom:579.763650px;}
.y3d{bottom:581.244150px;}
.ya6{bottom:584.145900px;}
.y82{bottom:594.075150px;}
.y85{bottom:594.085650px;}
.y3c{bottom:599.244150px;}
.ya5{bottom:604.398750px;}
.y81{bottom:609.048150px;}
.ybc{bottom:614.037300px;}
.y3b{bottom:617.244150px;}
.ya4{bottom:617.898750px;}
.ya3{bottom:631.398750px;}
.y3a{bottom:635.244150px;}
.y80{bottom:643.553250px;}
.ya2{bottom:651.651450px;}
.y39{bottom:653.244150px;}
.ya1{bottom:665.151450px;}
.y38{bottom:671.244150px;}
.ya0{bottom:685.404300px;}
.y37{bottom:689.244150px;}
.y9f{bottom:698.904300px;}
.yc9{bottom:699.073950px;}
.y36{bottom:707.244150px;}
.y9e{bottom:719.157000px;}
.yc8{bottom:721.077900px;}
.y7f{bottom:725.244150px;}
.y6{bottom:726.298500px;}
.y9d{bottom:732.657000px;}
.yc7{bottom:734.577900px;}
.y7e{bottom:743.244150px;}
.yc6{bottom:748.077900px;}
.y35{bottom:750.354450px;}
.y3{bottom:752.599495px;}
.y9c{bottom:752.909850px;}
.y7d{bottom:761.244150px;}
.ye4{bottom:764.002500px;}
.y34{bottom:771.354450px;}
.ye2{bottom:772.974000px;}
.y9b{bottom:773.162700px;}
.y7c{bottom:779.244150px;}
.y9a{bottom:786.662700px;}
.y33{bottom:792.354450px;}
.y7b{bottom:797.244150px;}
.y99{bottom:806.915550px;}
.y32{bottom:813.354450px;}
.y7a{bottom:815.244150px;}
.y98{bottom:820.415550px;}
.ye6{bottom:824.749500px;}
.y79{bottom:833.244150px;}
.y31{bottom:834.354450px;}
.y97{bottom:840.668250px;}
.y78{bottom:851.244150px;}
.y96{bottom:854.168250px;}
.y30{bottom:855.354450px;}
.y77{bottom:869.244150px;}
.y95{bottom:874.421100px;}
.y2f{bottom:876.354450px;}
.y2{bottom:879.369000px;}
.y76{bottom:887.244150px;}
.y94{bottom:887.921100px;}
.ye8{bottom:895.008000px;}
.y2e{bottom:897.354450px;}
.y75{bottom:905.244150px;}
.y93{bottom:908.173800px;}
.y2d{bottom:918.354450px;}
.y92{bottom:921.673800px;}
.y74{bottom:923.244150px;}
.y73{bottom:941.244150px;}
.y91{bottom:941.926650px;}
.y90{bottom:962.179350px;}
.y2c{bottom:962.740200px;}
.ye9{bottom:965.265000px;}
.y1{bottom:966.726000px;}
.yeb{bottom:967.869000px;}
.y72{bottom:977.244150px;}
.y8f{bottom:982.432200px;}
.y71{bottom:995.244150px;}
.y8e{bottom:995.932200px;}
.y2b{bottom:1001.740200px;}
.y8d{bottom:1009.432200px;}
.yed{bottom:1011.627150px;}
.y70{bottom:1013.244150px;}
.y5c{bottom:1031.244150px;}
.y2a{bottom:1049.244150px;}
.y23{bottom:1098.236250px;}
.y24{bottom:1116.756000px;}
.y22{bottom:1143.779550px;}
.h13{height:11.601000px;}
.h14{height:11.602500px;}
.h11{height:30.702000px;}
.h12{height:31.575253px;}
.h7{height:32.130000px;}
.h16{height:35.088000px;}
.hc{height:37.674000px;}
.h10{height:39.474000px;}
.hb{height:43.860000px;}
.h15{height:43.953000px;}
.h6{height:45.900000px;}
.hd{height:47.388000px;}
.h3{height:48.195000px;}
.hf{height:48.246000px;}
.ha{height:48.438000px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.he{height:96.492000px;}
.h4{height:119.055004px;}
.h9{height:1177.500000px;}
.h8{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:5.838000px;}
.wd{width:11.601000px;}
.wc{width:11.676000px;}
.wa{width:15.760500px;}
.w9{width:29.356500px;}
.w5{width:29.358000px;}
.w4{width:59.911500px;}
.w7{width:59.913000px;}
.w8{width:67.291500px;}
.w6{width:67.293000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:8.998050px;}
.x6{left:34.015800px;}
.xd{left:63.779550px;}
.xc{left:67.287450px;}
.x10{left:87.125550px;}
.x9{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:114.803100px;}
.x29{left:119.402850px;}
.x26{left:143.052000px;}
.x23{left:158.475000px;}
.x25{left:162.559500px;}
.x24{left:168.397500px;}
.x4{left:203.484001px;}
.x1c{left:214.594500px;}
.x1d{left:229.872000px;}
.x28{left:255.957300px;}
.x11{left:269.923650px;}
.x16{left:310.393650px;}
.x13{left:313.552500px;}
.x12{left:327.762900px;}
.x1e{left:333.385500px;}
.x15{left:334.502850px;}
.x14{left:354.868950px;}
.x17{left:377.858250px;}
.xf{left:446.456700px;}
.x3{left:454.959000px;}
.x1b{left:463.464600px;}
.xb{left:480.472350px;}
.x19{left:484.276800px;}
.x18{left:503.906550px;}
.x1f{left:508.792500px;}
.x20{left:524.070000px;}
.x21{left:608.617500px;}
.xe{left:616.226400px;}
.x22{left:627.583500px;}
.x8{left:639.699150px;}
.x5{left:667.999650px;}
.x1a{left:691.913242px;}
.x7{left:763.378800px;}
@media print{
.v1{vertical-align:-33.259733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.320000pt;}
.ls1{letter-spacing:-3.626667pt;}
.ls18{letter-spacing:-3.472000pt;}
.ls15{letter-spacing:-3.408000pt;}
.ls1a{letter-spacing:-2.912000pt;}
.ls3a{letter-spacing:-2.725333pt;}
.ls33{letter-spacing:-2.560000pt;}
.ls35{letter-spacing:-2.240000pt;}
.ls1f{letter-spacing:-1.866667pt;}
.ls37{letter-spacing:-1.754667pt;}
.ls1e{letter-spacing:-1.680000pt;}
.ls20{letter-spacing:-1.493333pt;}
.ls22{letter-spacing:-1.456000pt;}
.ls2c{letter-spacing:-1.418667pt;}
.ls1d{letter-spacing:-1.381333pt;}
.ls1b{letter-spacing:-1.306667pt;}
.ls2a{letter-spacing:-1.269333pt;}
.ls47{letter-spacing:-1.232000pt;}
.ls39{letter-spacing:-0.896000pt;}
.ls48{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.597333pt;}
.ls46{letter-spacing:-0.560000pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.410667pt;}
.ls2b{letter-spacing:-0.336000pt;}
.ls3d{letter-spacing:-0.240000pt;}
.ls27{letter-spacing:-0.224000pt;}
.ls42{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls2d{letter-spacing:-0.112000pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.074667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037333pt;}
.ls1c{letter-spacing:0.074667pt;}
.ls19{letter-spacing:0.112000pt;}
.ls3f{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.149333pt;}
.ls24{letter-spacing:0.224000pt;}
.ls3e{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.352000pt;}
.ls23{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls3b{letter-spacing:0.410667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.485333pt;}
.ls36{letter-spacing:0.522667pt;}
.ls7{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.560000pt;}
.ls3c{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.634667pt;}
.lsd{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.746667pt;}
.ls38{letter-spacing:0.784000pt;}
.ls43{letter-spacing:0.858667pt;}
.ls16{letter-spacing:0.864000pt;}
.ls34{letter-spacing:0.912000pt;}
.lse{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.008000pt;}
.ls30{letter-spacing:1.153067pt;}
.ls2e{letter-spacing:1.194667pt;}
.lsf{letter-spacing:61.793067pt;}
.ls13{letter-spacing:63.445867pt;}
.ls11{letter-spacing:111.620800pt;}
.ls12{letter-spacing:133.478933pt;}
.ls10{letter-spacing:155.894400pt;}
.ls32{letter-spacing:483.969280pt;}
.ls31{letter-spacing:717.139413pt;}
.ls2f{letter-spacing:728.950400pt;}
.ws46{word-spacing:-15.146667pt;}
.wsd3{word-spacing:-14.256000pt;}
.wsaa{word-spacing:-14.208000pt;}
.ws3{word-spacing:-13.728000pt;}
.wsd4{word-spacing:-13.344000pt;}
.wsa8{word-spacing:-12.266667pt;}
.ws75{word-spacing:-11.386667pt;}
.ws1{word-spacing:-11.200000pt;}
.wsd7{word-spacing:-11.050667pt;}
.ws4b{word-spacing:-11.013333pt;}
.wsd5{word-spacing:-10.789333pt;}
.ws63{word-spacing:-10.752000pt;}
.wsda{word-spacing:-10.714667pt;}
.ws67{word-spacing:-10.602667pt;}
.ws82{word-spacing:-10.528000pt;}
.ws78{word-spacing:-10.490667pt;}
.ws53{word-spacing:-10.453333pt;}
.wsd9{word-spacing:-10.378667pt;}
.ws7d{word-spacing:-10.304000pt;}
.ws87{word-spacing:-10.266667pt;}
.ws70{word-spacing:-10.154667pt;}
.ws6c{word-spacing:-9.968000pt;}
.wsdb{word-spacing:-9.818667pt;}
.ws60{word-spacing:-9.781333pt;}
.wsd6{word-spacing:-8.922667pt;}
.ws5c{word-spacing:-8.885333pt;}
.wsd8{word-spacing:-8.698667pt;}
.ws58{word-spacing:-8.512000pt;}
.wsa9{word-spacing:-8.138667pt;}
.wsc1{word-spacing:-3.696000pt;}
.wsd{word-spacing:-3.285333pt;}
.wse{word-spacing:-3.168000pt;}
.wse0{word-spacing:-2.976000pt;}
.ws25{word-spacing:-2.640000pt;}
.ws99{word-spacing:-2.592000pt;}
.wsfa{word-spacing:-2.576000pt;}
.ws44{word-spacing:-2.304000pt;}
.ws41{word-spacing:-2.256000pt;}
.wsb1{word-spacing:-2.240000pt;}
.ws89{word-spacing:-2.208000pt;}
.wse6{word-spacing:-2.016000pt;}
.wsf3{word-spacing:-1.978667pt;}
.wsed{word-spacing:-1.920000pt;}
.wsf9{word-spacing:-1.904000pt;}
.wsfb{word-spacing:-1.829333pt;}
.ws45{word-spacing:-1.824000pt;}
.ws5{word-spacing:-1.792000pt;}
.ws36{word-spacing:-1.728000pt;}
.ws8a{word-spacing:-1.717333pt;}
.wsb{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.642667pt;}
.wsa1{word-spacing:-1.632000pt;}
.ws9{word-spacing:-1.605333pt;}
.wsb3{word-spacing:-1.568000pt;}
.wsfd{word-spacing:-1.530667pt;}
.ws100{word-spacing:-1.418667pt;}
.ws2b{word-spacing:-1.344000pt;}
.wsf0{word-spacing:-1.269333pt;}
.wsb7{word-spacing:-1.194667pt;}
.wsba{word-spacing:-1.157333pt;}
.ws2f{word-spacing:-1.104000pt;}
.ws106{word-spacing:-1.066667pt;}
.ws6{word-spacing:-1.045333pt;}
.wsaf{word-spacing:-0.970667pt;}
.wsea{word-spacing:-0.912000pt;}
.wsff{word-spacing:-0.858667pt;}
.wsae{word-spacing:-0.821333pt;}
.ws26{word-spacing:-0.672000pt;}
.wsb0{word-spacing:-0.634667pt;}
.ws4{word-spacing:-0.480000pt;}
.ws97{word-spacing:-0.432000pt;}
.ws22{word-spacing:-0.336000pt;}
.ws1a{word-spacing:-0.240000pt;}
.wsbb{word-spacing:-0.149333pt;}
.wse3{word-spacing:-0.144000pt;}
.wsdd{word-spacing:-0.112000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.048000pt;}
.wsf5{word-spacing:0.074667pt;}
.wsc2{word-spacing:0.096000pt;}
.ws102{word-spacing:0.186667pt;}
.wsbd{word-spacing:0.192000pt;}
.wsb4{word-spacing:0.224000pt;}
.wseb{word-spacing:0.240000pt;}
.ws21{word-spacing:0.336000pt;}
.wsf8{word-spacing:0.373333pt;}
.wsb8{word-spacing:0.410667pt;}
.ws35{word-spacing:0.432000pt;}
.wsb2{word-spacing:0.448000pt;}
.ws8b{word-spacing:0.480000pt;}
.ws34{word-spacing:0.528000pt;}
.ws2e{word-spacing:0.576000pt;}
.ws32{word-spacing:0.624000pt;}
.wsf2{word-spacing:0.634667pt;}
.wsb6{word-spacing:0.709333pt;}
.wsc9{word-spacing:0.768000pt;}
.ws93{word-spacing:0.864000pt;}
.wsf4{word-spacing:0.933333pt;}
.ws11{word-spacing:1.056000pt;}
.wsb9{word-spacing:1.194667pt;}
.ws42{word-spacing:1.200000pt;}
.wsfc{word-spacing:1.232000pt;}
.ws105{word-spacing:1.237333pt;}
.wsf{word-spacing:1.290667pt;}
.ws29{word-spacing:1.488000pt;}
.wsc0{word-spacing:1.584000pt;}
.ws10{word-spacing:1.642667pt;}
.wsbc{word-spacing:1.680000pt;}
.wsb5{word-spacing:1.866667pt;}
.wsc4{word-spacing:1.968000pt;}
.ws88{word-spacing:2.064000pt;}
.wsf6{word-spacing:2.202667pt;}
.ws90{word-spacing:2.208000pt;}
.ws31{word-spacing:2.304000pt;}
.ws9f{word-spacing:2.352000pt;}
.ws9a{word-spacing:2.400000pt;}
.wsdc{word-spacing:2.426667pt;}
.wsa7{word-spacing:2.448000pt;}
.ws24{word-spacing:2.736000pt;}
.ws30{word-spacing:2.784000pt;}
.wsc8{word-spacing:2.832000pt;}
.wsf1{word-spacing:2.912000pt;}
.wse4{word-spacing:2.928000pt;}
.wsec{word-spacing:2.976000pt;}
.ws104{word-spacing:2.986667pt;}
.wsc6{word-spacing:3.024000pt;}
.ws3f{word-spacing:3.408000pt;}
.wsf7{word-spacing:3.546667pt;}
.wsde{word-spacing:3.600000pt;}
.ws3a{word-spacing:3.744000pt;}
.wse2{word-spacing:3.840000pt;}
.ws9d{word-spacing:3.888000pt;}
.ws13{word-spacing:3.936000pt;}
.ws37{word-spacing:3.984000pt;}
.ws103{word-spacing:4.096000pt;}
.wsc3{word-spacing:4.176000pt;}
.wsd0{word-spacing:4.368000pt;}
.wsd2{word-spacing:4.464000pt;}
.wsa2{word-spacing:4.608000pt;}
.ws8{word-spacing:4.704000pt;}
.ws33{word-spacing:4.800000pt;}
.wsef{word-spacing:4.816000pt;}
.ws8c{word-spacing:4.944000pt;}
.ws95{word-spacing:5.184000pt;}
.wsfe{word-spacing:5.226667pt;}
.ws3b{word-spacing:5.328000pt;}
.wsee{word-spacing:5.600000pt;}
.ws2a{word-spacing:5.664000pt;}
.ws92{word-spacing:5.712000pt;}
.wsa5{word-spacing:5.808000pt;}
.ws9e{word-spacing:6.000000pt;}
.wsa6{word-spacing:6.048000pt;}
.wscd{word-spacing:6.192000pt;}
.wsce{word-spacing:6.240000pt;}
.ws17{word-spacing:6.336000pt;}
.wscf{word-spacing:6.528000pt;}
.ws18{word-spacing:6.624000pt;}
.ws15{word-spacing:6.672000pt;}
.ws94{word-spacing:7.248000pt;}
.ws91{word-spacing:7.296000pt;}
.ws8f{word-spacing:7.344000pt;}
.ws9c{word-spacing:7.392000pt;}
.ws1d{word-spacing:7.488000pt;}
.ws7{word-spacing:7.840000pt;}
.ws1f{word-spacing:7.872000pt;}
.ws9b{word-spacing:8.016000pt;}
.ws19{word-spacing:8.256000pt;}
.wsd1{word-spacing:8.496000pt;}
.ws1b{word-spacing:8.640000pt;}
.ws14{word-spacing:8.736000pt;}
.ws12{word-spacing:8.928000pt;}
.ws3d{word-spacing:9.072000pt;}
.wsa4{word-spacing:9.264000pt;}
.ws98{word-spacing:9.408000pt;}
.wse8{word-spacing:9.552000pt;}
.wse9{word-spacing:9.744000pt;}
.ws2d{word-spacing:9.840000pt;}
.wsc7{word-spacing:9.888000pt;}
.wsa{word-spacing:10.005333pt;}
.ws27{word-spacing:10.080000pt;}
.wsc5{word-spacing:10.368000pt;}
.ws1c{word-spacing:10.464000pt;}
.wsca{word-spacing:10.560000pt;}
.wsa0{word-spacing:10.800000pt;}
.ws8d{word-spacing:10.896000pt;}
.wsa3{word-spacing:11.136000pt;}
.ws2c{word-spacing:11.184000pt;}
.ws39{word-spacing:11.328000pt;}
.ws23{word-spacing:11.808000pt;}
.wse1{word-spacing:11.856000pt;}
.wse7{word-spacing:12.048000pt;}
.ws1e{word-spacing:12.528000pt;}
.wscb{word-spacing:13.008000pt;}
.ws40{word-spacing:13.344000pt;}
.wse5{word-spacing:13.392000pt;}
.ws38{word-spacing:14.016000pt;}
.ws3e{word-spacing:14.112000pt;}
.ws28{word-spacing:14.160000pt;}
.ws20{word-spacing:14.448000pt;}
.wsdf{word-spacing:15.024000pt;}
.ws96{word-spacing:15.936000pt;}
.wsbf{word-spacing:16.272000pt;}
.ws101{word-spacing:17.285333pt;}
.ws16{word-spacing:20.160000pt;}
.wsbe{word-spacing:22.896000pt;}
.ws43{word-spacing:23.952000pt;}
.ws8e{word-spacing:24.144000pt;}
.wscc{word-spacing:36.576000pt;}
.ws5d{word-spacing:48.381867pt;}
.ws4a{word-spacing:52.546667pt;}
.ws48{word-spacing:57.809600pt;}
.ws76{word-spacing:57.830933pt;}
.ws49{word-spacing:63.765333pt;}
.ws71{word-spacing:66.578133pt;}
.ws52{word-spacing:67.981867pt;}
.ws74{word-spacing:75.910933pt;}
.ws73{word-spacing:88.322667pt;}
.ws61{word-spacing:102.918400pt;}
.ws4f{word-spacing:103.747200pt;}
.ws4e{word-spacing:122.552000pt;}
.ws68{word-spacing:122.731200pt;}
.ws6b{word-spacing:122.943467pt;}
.ws7e{word-spacing:124.332800pt;}
.ws83{word-spacing:124.848000pt;}
.ws4c{word-spacing:126.042667pt;}
.ws81{word-spacing:126.304000pt;}
.ws86{word-spacing:126.445867pt;}
.ws57{word-spacing:128.756267pt;}
.ws5b{word-spacing:131.940800pt;}
.ws85{word-spacing:138.636800pt;}
.ws51{word-spacing:138.760000pt;}
.ws59{word-spacing:141.293333pt;}
.ws79{word-spacing:141.386667pt;}
.ws54{word-spacing:141.580800pt;}
.ws64{word-spacing:142.036267pt;}
.ws80{word-spacing:142.105067pt;}
.ws6d{word-spacing:143.384000pt;}
.ws5e{word-spacing:143.738133pt;}
.ws6f{word-spacing:144.033600pt;}
.ws7c{word-spacing:144.085867pt;}
.ws77{word-spacing:147.822400pt;}
.ws6a{word-spacing:157.191467pt;}
.ws7b{word-spacing:161.141333pt;}
.ws56{word-spacing:162.455467pt;}
.ws4d{word-spacing:164.467733pt;}
.ws72{word-spacing:164.685867pt;}
.ws50{word-spacing:173.795200pt;}
.ws62{word-spacing:193.779733pt;}
.wsab{word-spacing:201.649067pt;}
.ws7a{word-spacing:208.937067pt;}
.ws55{word-spacing:209.239467pt;}
.ws69{word-spacing:210.075733pt;}
.ws84{word-spacing:210.296000pt;}
.ws6e{word-spacing:210.546133pt;}
.ws65{word-spacing:210.613333pt;}
.ws7f{word-spacing:211.192000pt;}
.ws5a{word-spacing:211.513067pt;}
.ws66{word-spacing:214.128533pt;}
.ws5f{word-spacing:216.562667pt;}
.wsad{word-spacing:568.857600pt;}
.wsac{word-spacing:569.734933pt;}
.ws47{word-spacing:1381.763733pt;}
.ws2{word-spacing:1468.653867pt;}
._a{margin-left:-23.136000pt;}
._1e{margin-left:-11.870933pt;}
._4{margin-left:-8.885333pt;}
._b{margin-left:-6.768000pt;}
._8{margin-left:-4.602667pt;}
._35{margin-left:-3.617600pt;}
._6{margin-left:-2.651733pt;}
._3{margin-left:-1.557333pt;}
._0{width:1.152000pt;}
._9{width:2.264533pt;}
._1{width:3.386667pt;}
._7{width:4.294400pt;}
._e{width:5.232000pt;}
._2{width:38.915733pt;}
._5{width:40.096000pt;}
._28{width:48.051200pt;}
._30{width:61.326400pt;}
._1f{width:63.788267pt;}
._22{width:64.823467pt;}
._21{width:65.917867pt;}
._29{width:70.887467pt;}
._24{width:96.882133pt;}
._27{width:105.517867pt;}
._33{width:107.178667pt;}
._31{width:110.588800pt;}
._32{width:112.956800pt;}
._26{width:114.059733pt;}
._23{width:128.939733pt;}
._13{width:145.089067pt;}
._19{width:167.869867pt;}
._12{width:180.652267pt;}
._f{width:225.038400pt;}
._20{width:291.441067pt;}
._34{width:329.371733pt;}
._1b{width:337.791467pt;}
._1c{width:365.097067pt;}
._1d{width:373.918400pt;}
._2e{width:380.106667pt;}
._2f{width:486.749867pt;}
._11{width:550.346133pt;}
._25{width:576.299733pt;}
._15{width:640.014400pt;}
._16{width:642.782400pt;}
._17{width:645.086400pt;}
._14{width:684.771733pt;}
._36{width:759.061333pt;}
._2a{width:761.213867pt;}
._2c{width:769.577600pt;}
._18{width:805.483200pt;}
._2d{width:813.112533pt;}
._2b{width:843.627733pt;}
._1a{width:897.664533pt;}
._d{width:912.250133pt;}
._10{width:938.606400pt;}
._c{width:1689.444267pt;}
.fs8{font-size:21.653333pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:38.395200pt;}
.fsa{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:0.000800pt;}
.ye3{bottom:2.314533pt;}
.ye7{bottom:2.314667pt;}
.ye5{bottom:2.315200pt;}
.yea{bottom:2.315467pt;}
.y21{bottom:18.267733pt;}
.y20{bottom:26.456667pt;}
.y5{bottom:59.133337pt;}
.ybb{bottom:84.661333pt;}
.y57{bottom:84.661467pt;}
.y60{bottom:85.556533pt;}
.y4{bottom:86.333337pt;}
.yba{bottom:100.661333pt;}
.y56{bottom:100.661467pt;}
.y6f{bottom:107.327600pt;}
.y5b{bottom:116.471467pt;}
.yb9{bottom:116.661333pt;}
.y55{bottom:116.661467pt;}
.y1f{bottom:123.790666pt;}
.y6e{bottom:125.330000pt;}
.yb8{bottom:132.661333pt;}
.y54{bottom:132.661467pt;}
.y5a{bottom:135.138133pt;}
.y6d{bottom:143.332533pt;}
.yb7{bottom:148.661333pt;}
.y53{bottom:148.661467pt;}
.y59{bottom:153.804800pt;}
.y6c{bottom:161.334933pt;}
.yb6{bottom:164.661333pt;}
.y52{bottom:164.661467pt;}
.y58{bottom:172.471467pt;}
.y16{bottom:175.052000pt;}
.y6b{bottom:179.337467pt;}
.yb5{bottom:180.661333pt;}
.y51{bottom:180.661467pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y50{bottom:196.661467pt;}
.y6a{bottom:197.340000pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.ye1{bottom:202.047200pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y4f{bottom:212.661467pt;}
.ye0{bottom:214.047200pt;}
.y69{bottom:215.342400pt;}
.ydf{bottom:226.047200pt;}
.y4e{bottom:228.661467pt;}
.y29{bottom:230.585467pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y68{bottom:233.344933pt;}
.yde{bottom:238.047200pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y28{bottom:242.585467pt;}
.y4d{bottom:244.661467pt;}
.ydd{bottom:250.047200pt;}
.y67{bottom:251.347333pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y4c{bottom:260.661467pt;}
.y27{bottom:261.199600pt;}
.ydc{bottom:262.047200pt;}
.y66{bottom:269.349867pt;}
.y26{bottom:273.199600pt;}
.ydb{bottom:274.047200pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y4b{bottom:276.661467pt;}
.y25{bottom:285.199600pt;}
.yda{bottom:286.047200pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y65{bottom:287.352400pt;}
.yb4{bottom:292.661333pt;}
.yca{bottom:292.661467pt;}
.yd9{bottom:298.047200pt;}
.y64{bottom:305.354800pt;}
.yb3{bottom:308.661333pt;}
.y4a{bottom:308.661467pt;}
.yd{bottom:309.452000pt;}
.yd8{bottom:310.047200pt;}
.y8c{bottom:316.821600pt;}
.yd7{bottom:322.047200pt;}
.y63{bottom:323.357333pt;}
.yb2{bottom:324.661333pt;}
.y49{bottom:324.661467pt;}
.yd6{bottom:334.047200pt;}
.y8b{bottom:336.380667pt;}
.yb1{bottom:340.661333pt;}
.y48{bottom:340.661467pt;}
.y62{bottom:341.359733pt;}
.yc{bottom:343.809333pt;}
.yd5{bottom:346.047200pt;}
.y47{bottom:356.661467pt;}
.yb0{bottom:357.223467pt;}
.yd4{bottom:358.047200pt;}
.y61{bottom:359.362267pt;}
.yb{bottom:362.706666pt;}
.yaf{bottom:369.223467pt;}
.yd3{bottom:370.047200pt;}
.y46{bottom:372.661467pt;}
.yd2{bottom:382.047200pt;}
.yae{bottom:387.225867pt;}
.y5f{bottom:388.661333pt;}
.y45{bottom:388.661467pt;}
.yd1{bottom:394.047200pt;}
.y8a{bottom:398.648400pt;}
.yad{bottom:399.225867pt;}
.y5e{bottom:404.661333pt;}
.y44{bottom:404.661467pt;}
.yd0{bottom:406.047200pt;}
.yac{bottom:417.228400pt;}
.ycf{bottom:418.047200pt;}
.y89{bottom:418.207467pt;}
.y43{bottom:420.661467pt;}
.yce{bottom:430.047200pt;}
.y88{bottom:430.207467pt;}
.yab{bottom:435.230933pt;}
.y42{bottom:436.661467pt;}
.ycd{bottom:442.047200pt;}
.ya{bottom:446.990669pt;}
.yc0{bottom:448.342642pt;}
.yc3{bottom:448.352240pt;}
.y41{bottom:452.661467pt;}
.yaa{bottom:453.233333pt;}
.ycc{bottom:454.047200pt;}
.ybf{bottom:461.435405pt;}
.yc2{bottom:461.445004pt;}
.y9{bottom:462.990669pt;}
.ycb{bottom:466.047200pt;}
.y40{bottom:468.661467pt;}
.ya9{bottom:471.235867pt;}
.ybe{bottom:474.528168pt;}
.yc1{bottom:474.537767pt;}
.y8{bottom:478.990666pt;}
.y5d{bottom:482.512000pt;}
.y3f{bottom:484.661467pt;}
.yc5{bottom:488.010522pt;}
.ya8{bottom:489.238267pt;}
.y7{bottom:494.990666pt;}
.y3e{bottom:500.661467pt;}
.ya7{bottom:501.238267pt;}
.y84{bottom:502.605467pt;}
.y87{bottom:502.614800pt;}
.yc4{bottom:503.915733pt;}
.ybd{bottom:514.267200pt;}
.y83{bottom:515.336133pt;}
.y86{bottom:515.345467pt;}
.y3d{bottom:516.661467pt;}
.ya6{bottom:519.240800pt;}
.y82{bottom:528.066800pt;}
.y85{bottom:528.076133pt;}
.y3c{bottom:532.661467pt;}
.ya5{bottom:537.243333pt;}
.y81{bottom:541.376133pt;}
.ybc{bottom:545.810933pt;}
.y3b{bottom:548.661467pt;}
.ya4{bottom:549.243333pt;}
.ya3{bottom:561.243333pt;}
.y3a{bottom:564.661467pt;}
.y80{bottom:572.047333pt;}
.ya2{bottom:579.245733pt;}
.y39{bottom:580.661467pt;}
.ya1{bottom:591.245733pt;}
.y38{bottom:596.661467pt;}
.ya0{bottom:609.248267pt;}
.y37{bottom:612.661467pt;}
.y9f{bottom:621.248267pt;}
.yc9{bottom:621.399067pt;}
.y36{bottom:628.661467pt;}
.y9e{bottom:639.250667pt;}
.yc8{bottom:640.958133pt;}
.y7f{bottom:644.661467pt;}
.y6{bottom:645.598667pt;}
.y9d{bottom:651.250667pt;}
.yc7{bottom:652.958133pt;}
.y7e{bottom:660.661467pt;}
.yc6{bottom:664.958133pt;}
.y35{bottom:666.981733pt;}
.y3{bottom:668.977329pt;}
.y9c{bottom:669.253200pt;}
.y7d{bottom:676.661467pt;}
.ye4{bottom:679.113333pt;}
.y34{bottom:685.648400pt;}
.ye2{bottom:687.088000pt;}
.y9b{bottom:687.255733pt;}
.y7c{bottom:692.661467pt;}
.y9a{bottom:699.255733pt;}
.y33{bottom:704.315067pt;}
.y7b{bottom:708.661467pt;}
.y99{bottom:717.258267pt;}
.y32{bottom:722.981733pt;}
.y7a{bottom:724.661467pt;}
.y98{bottom:729.258267pt;}
.ye6{bottom:733.110667pt;}
.y79{bottom:740.661467pt;}
.y31{bottom:741.648400pt;}
.y97{bottom:747.260667pt;}
.y78{bottom:756.661467pt;}
.y96{bottom:759.260667pt;}
.y30{bottom:760.315067pt;}
.y77{bottom:772.661467pt;}
.y95{bottom:777.263200pt;}
.y2f{bottom:778.981733pt;}
.y2{bottom:781.661334pt;}
.y76{bottom:788.661467pt;}
.y94{bottom:789.263200pt;}
.ye8{bottom:795.562667pt;}
.y2e{bottom:797.648400pt;}
.y75{bottom:804.661467pt;}
.y93{bottom:807.265600pt;}
.y2d{bottom:816.315067pt;}
.y92{bottom:819.265600pt;}
.y74{bottom:820.661467pt;}
.y73{bottom:836.661467pt;}
.y91{bottom:837.268133pt;}
.y90{bottom:855.270533pt;}
.y2c{bottom:855.769067pt;}
.ye9{bottom:858.013333pt;}
.y1{bottom:859.312000pt;}
.yeb{bottom:860.328000pt;}
.y72{bottom:868.661467pt;}
.y8f{bottom:873.273067pt;}
.y71{bottom:884.661467pt;}
.y8e{bottom:885.273067pt;}
.y2b{bottom:890.435733pt;}
.y8d{bottom:897.273067pt;}
.yed{bottom:899.224133pt;}
.y70{bottom:900.661467pt;}
.y5c{bottom:916.661467pt;}
.y2a{bottom:932.661467pt;}
.y23{bottom:976.210000pt;}
.y24{bottom:992.672000pt;}
.y22{bottom:1016.692933pt;}
.h13{height:10.312000pt;}
.h14{height:10.313333pt;}
.h11{height:27.290667pt;}
.h12{height:28.066891pt;}
.h7{height:28.560000pt;}
.h16{height:31.189333pt;}
.hc{height:33.488000pt;}
.h10{height:35.088000pt;}
.hb{height:38.986667pt;}
.h15{height:39.069333pt;}
.h6{height:40.800000pt;}
.hd{height:42.122667pt;}
.h3{height:42.840000pt;}
.hf{height:42.885333pt;}
.ha{height:43.056000pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.he{height:85.770667pt;}
.h4{height:105.826671pt;}
.h9{height:1046.666667pt;}
.h8{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:5.189333pt;}
.wd{width:10.312000pt;}
.wc{width:10.378667pt;}
.wa{width:14.009333pt;}
.w9{width:26.094667pt;}
.w5{width:26.096000pt;}
.w4{width:53.254667pt;}
.w7{width:53.256000pt;}
.w8{width:59.814667pt;}
.w6{width:59.816000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:7.998267pt;}
.x6{left:30.236267pt;}
.xd{left:56.692933pt;}
.xc{left:59.811067pt;}
.x10{left:77.444933pt;}
.x9{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:102.047200pt;}
.x29{left:106.135867pt;}
.x26{left:127.157333pt;}
.x23{left:140.866667pt;}
.x25{left:144.497333pt;}
.x24{left:149.686667pt;}
.x4{left:180.874667pt;}
.x1c{left:190.750667pt;}
.x1d{left:204.330667pt;}
.x28{left:227.517600pt;}
.x11{left:239.932133pt;}
.x16{left:275.905467pt;}
.x13{left:278.713333pt;}
.x12{left:291.344800pt;}
.x1e{left:296.342667pt;}
.x15{left:297.335867pt;}
.x14{left:315.439067pt;}
.x17{left:335.874000pt;}
.xf{left:396.850400pt;}
.x3{left:404.408000pt;}
.x1b{left:411.968533pt;}
.xb{left:427.086533pt;}
.x19{left:430.468267pt;}
.x18{left:447.916933pt;}
.x1f{left:452.260000pt;}
.x20{left:465.840000pt;}
.x21{left:540.993333pt;}
.xe{left:547.756800pt;}
.x22{left:557.852000pt;}
.x8{left:568.621467pt;}
.x5{left:593.777467pt;}
.x1a{left:615.033993pt;}
.x7{left:678.558933pt;}
}




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