
    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_6f2a53438fd1fe86f65ec4dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fe9ed8443b0727f3e015bb0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_afe4ced7b02af0400f966ed4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4e1cfc984de44678a0085c72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_95a4ab8a2c6210c6e80d373a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eaca4afa1564857359136607.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_908ee31e3c96c59ccc16a093.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_b7301252107fe8a63985e637.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_77622ed68c415589ddf9d68e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d9b3bdee9c2113598286b870.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3458f1e62ccd5d04ab445a1a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d87c0754a9c792f2b0be8858.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f61537044f36b40df6187b9b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;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_ae33d1957161be8c8f0ab6cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970000;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_f2c9bb603d577d6fcd5b435a.woff2')format("woff");}.fff{font-family:fff;line-height:0.066000;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_74dd369027b25eee97deac22.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.116000;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_77622ed68c415589ddf9d68e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d9b3bdee9c2113598286b870.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3458f1e62ccd5d04ab445a1a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d87c0754a9c792f2b0be8858.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cf988bdd38371313de0cc447.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;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_d9b3bdee9c2113598286b870.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3458f1e62ccd5d04ab445a1a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d87c0754a9c792f2b0be8858.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a3203bf3bc3a3e18340a8600.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_35731bd4bfc580c1047b610b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ad2a0e5a61b5d00a83db3014.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f61537044f36b40df6187b9b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.900000;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_f61537044f36b40df6187b9b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.900000;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:ff1e;src:url('chunks/assets/font_f61537044f36b40df6187b9b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.900000;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:ff1f;src:url('chunks/assets/font_ca970b4ae24f0de6196377c7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.806000px;}
.v9{vertical-align:-8.388600px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.400600px;}
.v6{vertical-align:10.800000px;}
.v2{vertical-align:18.204000px;}
.v1{vertical-align:20.400000px;}
.v8{vertical-align:34.556544px;}
.v7{vertical-align:43.175808px;}
.ls11{letter-spacing:-4.380000px;}
.ls9e{letter-spacing:-4.320000px;}
.ls92{letter-spacing:-4.032000px;}
.ls16{letter-spacing:-2.160000px;}
.ls90{letter-spacing:-1.890000px;}
.ls6b{letter-spacing:-1.458000px;}
.ls30{letter-spacing:-1.404000px;}
.lsab{letter-spacing:-1.215000px;}
.ls2e{letter-spacing:-1.188000px;}
.lsa9{letter-spacing:-1.080000px;}
.lsa2{letter-spacing:-0.990000px;}
.ls8e{letter-spacing:-0.855000px;}
.ls61{letter-spacing:-0.772200px;}
.lsa7{letter-spacing:-0.765000px;}
.ls64{letter-spacing:-0.756000px;}
.lsaa{letter-spacing:-0.720000px;}
.ls81{letter-spacing:-0.702000px;}
.lsad{letter-spacing:-0.675000px;}
.ls8a{letter-spacing:-0.630000px;}
.lsa6{letter-spacing:-0.585000px;}
.ls82{letter-spacing:-0.540000px;}
.ls73{letter-spacing:-0.532224px;}
.ls80{letter-spacing:-0.486000px;}
.lsac{letter-spacing:-0.450000px;}
.ls45{letter-spacing:-0.432000px;}
.ls62{letter-spacing:-0.386100px;}
.ls2f{letter-spacing:-0.378000px;}
.ls9f{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls91{letter-spacing:-0.315000px;}
.ls39{letter-spacing:-0.300000px;}
.ls46{letter-spacing:-0.280800px;}
.ls2a{letter-spacing:-0.270000px;}
.ls93{letter-spacing:-0.252000px;}
.lsa8{letter-spacing:-0.225000px;}
.ls15{letter-spacing:-0.216000px;}
.ls75{letter-spacing:-0.210000px;}
.ls89{letter-spacing:-0.190080px;}
.lsa1{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.162000px;}
.ls6d{letter-spacing:-0.140400px;}
.ls9d{letter-spacing:-0.135000px;}
.ls29{letter-spacing:-0.108000px;}
.ls48{letter-spacing:-0.105300px;}
.ls8f{letter-spacing:-0.090000px;}
.ls84{letter-spacing:-0.076032px;}
.ls5e{letter-spacing:-0.070200px;}
.ls32{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.054000px;}
.ls8d{letter-spacing:-0.045000px;}
.ls14{letter-spacing:-0.035100px;}
.ls10{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.013800px;}
.ls55{letter-spacing:0.017400px;}
.ls25{letter-spacing:0.021600px;}
.ls3{letter-spacing:0.022200px;}
.ls2{letter-spacing:0.022800px;}
.ls8{letter-spacing:0.035100px;}
.ls9b{letter-spacing:0.045000px;}
.ls18{letter-spacing:0.054000px;}
.ls4d{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.064800px;}
.ls7{letter-spacing:0.070200px;}
.ls6{letter-spacing:0.072600px;}
.ls8c{letter-spacing:0.090000px;}
.ls3e{letter-spacing:0.097200px;}
.ls27{letter-spacing:0.102600px;}
.ls52{letter-spacing:0.103800px;}
.ls47{letter-spacing:0.105300px;}
.ls5{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.113400px;}
.ls57{letter-spacing:0.124200px;}
.ls4c{letter-spacing:0.135000px;}
.ls4a{letter-spacing:0.140400px;}
.ls51{letter-spacing:0.160200px;}
.ls21{letter-spacing:0.160800px;}
.ls17{letter-spacing:0.162000px;}
.ls5a{letter-spacing:0.169800px;}
.ls28{letter-spacing:0.172800px;}
.ls63{letter-spacing:0.175500px;}
.ls58{letter-spacing:0.178200px;}
.ls7e{letter-spacing:0.180000px;}
.ls4f{letter-spacing:0.183600px;}
.ls34{letter-spacing:0.189000px;}
.ls74{letter-spacing:0.190080px;}
.ls7a{letter-spacing:0.199800px;}
.ls60{letter-spacing:0.210600px;}
.ls71{letter-spacing:0.214272px;}
.ls1e{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.219450px;}
.ls53{letter-spacing:0.222600px;}
.ls59{letter-spacing:0.223800px;}
.ls96{letter-spacing:0.225000px;}
.ls20{letter-spacing:0.232200px;}
.ls86{letter-spacing:0.245700px;}
.ls9c{letter-spacing:0.261000px;}
.ls1f{letter-spacing:0.270000px;}
.ls65{letter-spacing:0.275400px;}
.ls3f{letter-spacing:0.280200px;}
.ls5c{letter-spacing:0.280800px;}
.ls50{letter-spacing:0.296400px;}
.ls1d{letter-spacing:0.297000px;}
.lsa0{letter-spacing:0.315000px;}
.ls5f{letter-spacing:0.315900px;}
.ls1a{letter-spacing:0.324000px;}
.ls40{letter-spacing:0.342600px;}
.ls4e{letter-spacing:0.351000px;}
.lsa{letter-spacing:0.357000px;}
.ls42{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.378000px;}
.ls37{letter-spacing:0.383400px;}
.ls43{letter-spacing:0.386100px;}
.ls7d{letter-spacing:0.405000px;}
.lsb{letter-spacing:0.412650px;}
.ls1c{letter-spacing:0.432000px;}
.ls5b{letter-spacing:0.456300px;}
.ls5d{letter-spacing:0.480000px;}
.ls72{letter-spacing:0.482112px;}
.ls12{letter-spacing:0.486000px;}
.lsa5{letter-spacing:0.495000px;}
.ls22{letter-spacing:0.540000px;}
.ls85{letter-spacing:0.570240px;}
.ls35{letter-spacing:0.572400px;}
.ls94{letter-spacing:0.585000px;}
.ls36{letter-spacing:0.594000px;}
.ls56{letter-spacing:0.605400px;}
.ls68{letter-spacing:0.608256px;}
.ls8b{letter-spacing:0.630000px;}
.ls1b{letter-spacing:0.648000px;}
.lse{letter-spacing:0.652050px;}
.ls54{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.663000px;}
.ls7b{letter-spacing:0.675000px;}
.ls6a{letter-spacing:0.684288px;}
.ls41{letter-spacing:0.702000px;}
.ls79{letter-spacing:0.722304px;}
.ls66{letter-spacing:0.739800px;}
.ls2c{letter-spacing:0.756000px;}
.ls69{letter-spacing:0.760320px;}
.ls3d{letter-spacing:0.772200px;}
.ls24{letter-spacing:0.780000px;}
.ls2b{letter-spacing:0.810000px;}
.ls44{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.882000px;}
.lsa4{letter-spacing:0.900000px;}
.ls3c{letter-spacing:0.918000px;}
.ls97{letter-spacing:0.945000px;}
.lsf{letter-spacing:0.960000px;}
.ls2d{letter-spacing:0.972000px;}
.ls99{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.020000px;}
.ls6c{letter-spacing:1.026000px;}
.ls95{letter-spacing:1.035000px;}
.lsa3{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.112400px;}
.ls49{letter-spacing:1.188000px;}
.ls7c{letter-spacing:1.305000px;}
.ls6e{letter-spacing:2.249856px;}
.ls9a{letter-spacing:2.295000px;}
.ls98{letter-spacing:2.511000px;}
.ls0{letter-spacing:2.592000px;}
.ls19{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls7f{letter-spacing:6.120000px;}
.ls3b{letter-spacing:14.742000px;}
.ls76{letter-spacing:18.399744px;}
.ls70{letter-spacing:38.515392px;}
.ls67{letter-spacing:131.134464px;}
.ls83{letter-spacing:131.455872px;}
.ls6f{letter-spacing:133.170048px;}
.ls77{letter-spacing:141.473088px;}
.ls88{letter-spacing:252.787392px;}
.ls87{letter-spacing:254.501568px;}
.ls78{letter-spacing:518.216832px;}
.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;}
}
.ws96{word-spacing:-266.661504px;}
.ws97{word-spacing:-264.947328px;}
.wsb1{word-spacing:-254.501568px;}
.ws93{word-spacing:-141.526656px;}
.ws87{word-spacing:-133.170048px;}
.wsae{word-spacing:-131.455872px;}
.ws94{word-spacing:-109.171584px;}
.ws95{word-spacing:-105.743232px;}
.wsb0{word-spacing:-38.515392px;}
.ws2{word-spacing:-15.067500px;}
.ws20{word-spacing:-13.596000px;}
.ws67{word-spacing:-13.122000px;}
.ws6a{word-spacing:-13.068000px;}
.ws22{word-spacing:-13.014000px;}
.ws64{word-spacing:-12.906000px;}
.ws91{word-spacing:-12.744000px;}
.ws60{word-spacing:-12.690000px;}
.ws7c{word-spacing:-12.642048px;}
.ws26{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws9{word-spacing:-12.258000px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws61{word-spacing:-12.150000px;}
.ws77{word-spacing:-12.042000px;}
.ws23{word-spacing:-11.988000px;}
.ws74{word-spacing:-11.934000px;}
.wsab{word-spacing:-11.718000px;}
.ws69{word-spacing:-11.610000px;}
.ws21{word-spacing:-11.178000px;}
.ws24{word-spacing:-10.962000px;}
.ws75{word-spacing:-10.908000px;}
.wsbf{word-spacing:-10.125000px;}
.wsa{word-spacing:-10.098000px;}
.wsbe{word-spacing:-10.035000px;}
.wsda{word-spacing:-9.720000px;}
.ws9a{word-spacing:-9.675000px;}
.wsc1{word-spacing:-9.630000px;}
.wsa9{word-spacing:-9.618000px;}
.wsc2{word-spacing:-9.585000px;}
.ws8a{word-spacing:-9.534000px;}
.ws9b{word-spacing:-9.450000px;}
.ws8c{word-spacing:-9.389952px;}
.wsc0{word-spacing:-9.315000px;}
.ws8e{word-spacing:-9.199872px;}
.wsa1{word-spacing:-8.862000px;}
.ws7e{word-spacing:-8.819712px;}
.ws8d{word-spacing:-8.553600px;}
.ws98{word-spacing:-8.439552px;}
.ws6b{word-spacing:-8.424000px;}
.ws4c{word-spacing:-8.353800px;}
.ws76{word-spacing:-8.318700px;}
.ws63{word-spacing:-8.283600px;}
.ws5f{word-spacing:-8.248500px;}
.ws92{word-spacing:-8.213400px;}
.ws68{word-spacing:-8.143200px;}
.ws4f{word-spacing:-8.108100px;}
.ws7d{word-spacing:-8.097408px;}
.ws4d{word-spacing:-8.073000px;}
.ws8{word-spacing:-8.037900px;}
.wsb{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.980000px;}
.ws6{word-spacing:-7.967700px;}
.ws7{word-spacing:-7.932600px;}
.ws62{word-spacing:-7.897500px;}
.ws4e{word-spacing:-7.862400px;}
.ws78{word-spacing:-7.827300px;}
.ws4b{word-spacing:-7.686900px;}
.ws66{word-spacing:-7.651800px;}
.ws65{word-spacing:-7.265700px;}
.wsc{word-spacing:-6.630000px;}
.wsa5{word-spacing:-6.197100px;}
.wsac{word-spacing:-6.120000px;}
.wsdf{word-spacing:-3.960000px;}
.wse{word-spacing:-3.276000px;}
.ws1f{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws10{word-spacing:-2.400000px;}
.ws55{word-spacing:-2.376000px;}
.ws47{word-spacing:-2.040000px;}
.ws48{word-spacing:-1.998000px;}
.ws2d{word-spacing:-1.944000px;}
.ws40{word-spacing:-1.890000px;}
.ws3f{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.836000px;}
.ws54{word-spacing:-1.782000px;}
.ws41{word-spacing:-1.728000px;}
.ws31{word-spacing:-1.674000px;}
.wsdb{word-spacing:-1.665000px;}
.ws1c{word-spacing:-1.632000px;}
.ws37{word-spacing:-1.620000px;}
.wsba{word-spacing:-1.575000px;}
.ws44{word-spacing:-1.566000px;}
.ws1a{word-spacing:-1.530000px;}
.ws59{word-spacing:-1.512000px;}
.ws27{word-spacing:-1.458000px;}
.ws29{word-spacing:-1.404000px;}
.wsb5{word-spacing:-1.395000px;}
.ws16{word-spacing:-1.350000px;}
.ws45{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.242000px;}
.ws46{word-spacing:-1.188000px;}
.ws11{word-spacing:-1.134000px;}
.wsca{word-spacing:-1.125000px;}
.ws42{word-spacing:-1.080000px;}
.wsb4{word-spacing:-1.035000px;}
.ws85{word-spacing:-1.026000px;}
.ws1d{word-spacing:-1.020000px;}
.ws18{word-spacing:-0.972000px;}
.wsbc{word-spacing:-0.966000px;}
.wsc5{word-spacing:-0.945000px;}
.ws89{word-spacing:-0.924000px;}
.ws2c{word-spacing:-0.918000px;}
.wscf{word-spacing:-0.900000px;}
.wsd1{word-spacing:-0.855000px;}
.ws51{word-spacing:-0.810000px;}
.ws38{word-spacing:-0.780000px;}
.ws3b{word-spacing:-0.756000px;}
.wsbb{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.702000px;}
.wsc4{word-spacing:-0.675000px;}
.ws1b{word-spacing:-0.663000px;}
.ws17{word-spacing:-0.648000px;}
.wsb3{word-spacing:-0.630000px;}
.wsbd{word-spacing:-0.627900px;}
.ws6f{word-spacing:-0.600000px;}
.wsad{word-spacing:-0.596700px;}
.ws12{word-spacing:-0.594000px;}
.wsd7{word-spacing:-0.585000px;}
.ws2b{word-spacing:-0.540000px;}
.wsb6{word-spacing:-0.495000px;}
.ws28{word-spacing:-0.486000px;}
.wsd5{word-spacing:-0.450000px;}
.ws3a{word-spacing:-0.432000px;}
.wscd{word-spacing:-0.405000px;}
.ws3d{word-spacing:-0.378000px;}
.wsd8{word-spacing:-0.360000px;}
.ws43{word-spacing:-0.324000px;}
.wsc6{word-spacing:-0.315000px;}
.ws5c{word-spacing:-0.300000px;}
.ws70{word-spacing:-0.280800px;}
.ws34{word-spacing:-0.270000px;}
.ws30{word-spacing:-0.216000px;}
.ws88{word-spacing:-0.214272px;}
.ws72{word-spacing:-0.210600px;}
.ws7f{word-spacing:-0.190080px;}
.wsb9{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.153000px;}
.wsaf{word-spacing:-0.140400px;}
.wsdd{word-spacing:-0.135000px;}
.ws6c{word-spacing:-0.120000px;}
.ws13{word-spacing:-0.108000px;}
.ws71{word-spacing:-0.105300px;}
.wsb8{word-spacing:-0.090000px;}
.ws25{word-spacing:-0.054000px;}
.ws79{word-spacing:-0.053568px;}
.wsd6{word-spacing:-0.045000px;}
.wsa8{word-spacing:-0.042000px;}
.wsd{word-spacing:0.000000px;}
.ws36{word-spacing:0.054000px;}
.ws57{word-spacing:0.108000px;}
.ws6d{word-spacing:0.120000px;}
.wsd2{word-spacing:0.135000px;}
.ws39{word-spacing:0.162000px;}
.wscc{word-spacing:0.180000px;}
.ws5d{word-spacing:0.216000px;}
.wsd0{word-spacing:0.225000px;}
.ws6e{word-spacing:0.270000px;}
.ws35{word-spacing:0.324000px;}
.ws73{word-spacing:0.360000px;}
.ws2a{word-spacing:0.378000px;}
.ws3e{word-spacing:0.432000px;}
.ws49{word-spacing:0.486000px;}
.wsc9{word-spacing:0.495000px;}
.ws5a{word-spacing:0.540000px;}
.ws4a{word-spacing:0.594000px;}
.wsb2{word-spacing:0.630000px;}
.ws2f{word-spacing:0.648000px;}
.wsde{word-spacing:0.675000px;}
.ws2e{word-spacing:0.702000px;}
.ws58{word-spacing:0.756000px;}
.ws5b{word-spacing:0.810000px;}
.ws52{word-spacing:0.840000px;}
.ws53{word-spacing:0.864000px;}
.wsc7{word-spacing:0.945000px;}
.ws50{word-spacing:1.026000px;}
.wsdc{word-spacing:1.035000px;}
.ws33{word-spacing:1.134000px;}
.ws32{word-spacing:1.140000px;}
.wsd9{word-spacing:1.215000px;}
.ws86{word-spacing:1.296000px;}
.wsd3{word-spacing:1.350000px;}
.wsce{word-spacing:1.395000px;}
.wsc8{word-spacing:1.440000px;}
.ws1e{word-spacing:1.530000px;}
.wscb{word-spacing:1.620000px;}
.wsd4{word-spacing:1.665000px;}
.ws5e{word-spacing:1.782000px;}
.wsb7{word-spacing:1.890000px;}
.wsc3{word-spacing:4.320000px;}
.ws90{word-spacing:101.350656px;}
.ws81{word-spacing:103.099392px;}
.wsa7{word-spacing:129.510000px;}
.wsa6{word-spacing:136.461000px;}
.wsa2{word-spacing:148.795200px;}
.wsa0{word-spacing:150.864000px;}
.ws7a{word-spacing:182.720448px;}
.ws80{word-spacing:188.445312px;}
.ws8f{word-spacing:190.156032px;}
.ws8b{word-spacing:198.255168px;}
.ws99{word-spacing:210.722688px;}
.wsa4{word-spacing:214.649400px;}
.wsa3{word-spacing:221.600400px;}
.ws84{word-spacing:270.690000px;}
.wsaa{word-spacing:277.284000px;}
.ws82{word-spacing:277.494000px;}
.ws9c{word-spacing:303.618000px;}
.ws83{word-spacing:306.096000px;}
.ws7b{word-spacing:329.443200px;}
.ws9f{word-spacing:355.450200px;}
.ws9e{word-spacing:396.480000px;}
.ws9d{word-spacing:406.560000px;}
._1d{margin-left:-1500.118272px;}
._1c{margin-left:-741.541824px;}
._17{margin-left:-725.953536px;}
._1e{margin-left:-178.006464px;}
._1f{margin-left:-176.292288px;}
._9{margin-left:-14.146800px;}
._15{margin-left:-12.868200px;}
._8{margin-left:-11.826000px;}
._10{margin-left:-10.590000px;}
._16{margin-left:-8.665200px;}
._4{margin-left:-7.200000px;}
._5{margin-left:-5.281800px;}
._1{margin-left:-3.667200px;}
._0{margin-left:-1.776000px;}
._3{width:1.137000px;}
._6{width:2.160000px;}
._7{width:3.170400px;}
._2{width:4.356000px;}
._b{width:6.190800px;}
._d{width:7.650600px;}
._12{width:10.438200px;}
._c{width:11.964600px;}
._11{width:15.282000px;}
._f{width:43.165200px;}
._a{width:46.157400px;}
._14{width:47.288400px;}
._e{width:48.619200px;}
._13{width:49.629000px;}
._21{width:110.664576px;}
._28{width:122.514000px;}
._2e{width:133.852200px;}
._20{width:148.604544px;}
._2f{width:150.798300px;}
._18{width:199.116000px;}
._2a{width:225.834000px;}
._29{width:233.019000px;}
._23{width:247.560000px;}
._2c{width:281.211000px;}
._2b{width:296.940000px;}
._2d{width:314.550000px;}
._22{width:324.231000px;}
._1b{width:398.958000px;}
._19{width:411.390000px;}
._1a{width:419.118000px;}
._26{width:435.750000px;}
._27{width:441.756000px;}
._24{width:465.990000px;}
._25{width:471.996000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsf{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fsc{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsb{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y14b{bottom:2.159850px;}
.y168{bottom:2.160300px;}
.y149{bottom:4.319850px;}
.y166{bottom:4.320300px;}
.y148{bottom:5.610666px;}
.y165{bottom:5.611116px;}
.y146{bottom:25.055850px;}
.y163{bottom:25.056300px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2f{bottom:68.313900px;}
.y75{bottom:68.565300px;}
.y190{bottom:69.375000px;}
.y11a{bottom:71.794800px;}
.y145{bottom:73.660500px;}
.ye5{bottom:77.796300px;}
.y147{bottom:79.276500px;}
.ya9{bottom:81.649800px;}
.y18f{bottom:82.121250px;}
.y2e{bottom:83.307900px;}
.y74{bottom:83.563800px;}
.y7a{bottom:83.799300px;}
.y1ec{bottom:84.089550px;}
.y14a{bottom:86.620350px;}
.y119{bottom:86.794800px;}
.y144{bottom:90.076350px;}
.y9f{bottom:92.064300px;}
.ye4{bottom:92.794800px;}
.y18e{bottom:94.867500px;}
.ya8{bottom:96.648300px;}
.y1eb{bottom:96.835800px;}
.y8c{bottom:96.859950px;}
.y2d{bottom:98.307900px;}
.y73{bottom:98.562300px;}
.y79{bottom:98.797800px;}
.y118{bottom:101.794800px;}
.y9e{bottom:107.062800px;}
.y18d{bottom:107.613750px;}
.ye3{bottom:107.799300px;}
.y1ea{bottom:109.582050px;}
.y8b{bottom:111.858450px;}
.y2c{bottom:113.307900px;}
.y72{bottom:113.560800px;}
.y78{bottom:113.796300px;}
.y117{bottom:116.803800px;}
.y18c{bottom:120.360000px;}
.y9d{bottom:122.061300px;}
.y1e9{bottom:122.328300px;}
.ye2{bottom:122.797800px;}
.y143{bottom:124.360500px;}
.y8a{bottom:126.856950px;}
.y2b{bottom:128.307900px;}
.y71{bottom:128.559300px;}
.y77{bottom:128.794800px;}
.y116{bottom:131.802300px;}
.y18b{bottom:133.106250px;}
.y1e8{bottom:135.074550px;}
.y9c{bottom:137.059800px;}
.ye1{bottom:137.796300px;}
.y142{bottom:139.359000px;}
.y89{bottom:141.855450px;}
.y70{bottom:143.557800px;}
.y76{bottom:143.793300px;}
.y18a{bottom:145.852500px;}
.y115{bottom:146.800800px;}
.y2a{bottom:147.636900px;}
.y1e7{bottom:147.820800px;}
.y9b{bottom:152.058300px;}
.ye0{bottom:152.794800px;}
.y141{bottom:154.357500px;}
.y88{bottom:156.853950px;}
.y6f{bottom:158.556300px;}
.y189{bottom:158.598750px;}
.y1e6{bottom:160.567050px;}
.y114{bottom:161.799300px;}
.y9a{bottom:167.056800px;}
.ydf{bottom:167.796300px;}
.y140{bottom:169.375500px;}
.y188{bottom:171.345000px;}
.y87{bottom:171.852450px;}
.y1e5{bottom:173.313300px;}
.y6e{bottom:173.554800px;}
.y113{bottom:176.797800px;}
.y99{bottom:182.055300px;}
.yde{bottom:182.794800px;}
.y187{bottom:184.091250px;}
.y13f{bottom:184.374000px;}
.y1e4{bottom:186.059550px;}
.y29{bottom:186.685800px;}
.y86{bottom:186.850950px;}
.y6d{bottom:188.553300px;}
.y112{bottom:191.796300px;}
.y186{bottom:196.837500px;}
.y98{bottom:197.053800px;}
.ydd{bottom:197.794800px;}
.y7d{bottom:198.055650px;}
.y1e3{bottom:198.805800px;}
.y13e{bottom:199.372500px;}
.y28{bottom:201.690300px;}
.y85{bottom:201.849450px;}
.y111{bottom:206.794800px;}
.y185{bottom:209.583750px;}
.y1e2{bottom:211.552050px;}
.y97{bottom:212.052300px;}
.ydc{bottom:212.796300px;}
.y7c{bottom:213.054150px;}
.y13d{bottom:214.371000px;}
.y27{bottom:216.688800px;}
.y84{bottom:216.847950px;}
.y6c{bottom:220.642800px;}
.y110{bottom:221.794800px;}
.y184{bottom:222.330000px;}
.y1e1{bottom:224.298300px;}
.y96{bottom:227.050800px;}
.ydb{bottom:227.794800px;}
.y7b{bottom:228.052650px;}
.y13c{bottom:229.369500px;}
.y26{bottom:231.687300px;}
.y83{bottom:231.846450px;}
.y183{bottom:235.076250px;}
.y6b{bottom:235.641300px;}
.y10f{bottom:236.794800px;}
.y1e0{bottom:237.044550px;}
.y95{bottom:242.049300px;}
.yda{bottom:242.793300px;}
.y13b{bottom:244.368000px;}
.y25{bottom:246.685800px;}
.y82{bottom:246.844950px;}
.y182{bottom:247.822500px;}
.y1df{bottom:249.790800px;}
.y6a{bottom:250.639800px;}
.y10e{bottom:251.799300px;}
.y94{bottom:257.047800px;}
.y13a{bottom:259.366500px;}
.y181{bottom:260.568750px;}
.y24{bottom:261.685800px;}
.y81{bottom:261.843450px;}
.y1de{bottom:262.537050px;}
.y69{bottom:265.638300px;}
.y10d{bottom:266.797800px;}
.y93{bottom:272.046300px;}
.y180{bottom:273.315000px;}
.y139{bottom:274.365000px;}
.y1dd{bottom:275.283300px;}
.yd9{bottom:275.794800px;}
.y23{bottom:276.687300px;}
.y80{bottom:276.841950px;}
.y68{bottom:280.636800px;}
.y10c{bottom:281.796300px;}
.y17f{bottom:286.061250px;}
.y92{bottom:287.044800px;}
.y1dc{bottom:288.029550px;}
.y138{bottom:289.363500px;}
.yd8{bottom:290.794800px;}
.y22{bottom:291.685800px;}
.y7f{bottom:291.840450px;}
.y67{bottom:295.635300px;}
.y10b{bottom:296.794800px;}
.y17e{bottom:298.807500px;}
.y1db{bottom:300.775800px;}
.y91{bottom:302.043300px;}
.y137{bottom:304.362000px;}
.yd7{bottom:305.794800px;}
.y21{bottom:306.685800px;}
.y7e{bottom:306.838950px;}
.y66{bottom:310.633800px;}
.y17d{bottom:311.553750px;}
.y10a{bottom:311.793300px;}
.y1da{bottom:313.522050px;}
.y136{bottom:319.360500px;}
.yd6{bottom:320.794800px;}
.y20{bottom:321.687300px;}
.y17c{bottom:324.300000px;}
.y1d9{bottom:326.268300px;}
.y203{bottom:332.802300px;}
.y135{bottom:334.359000px;}
.yd5{bottom:335.794800px;}
.y1f{bottom:336.685800px;}
.y17b{bottom:337.050000px;}
.y1d8{bottom:339.014550px;}
.y65{bottom:340.044300px;}
.y109{bottom:344.797800px;}
.y202{bottom:347.800800px;}
.y134{bottom:349.357500px;}
.yd4{bottom:350.796300px;}
.y1e{bottom:351.685800px;}
.y1d7{bottom:351.760800px;}
.y64{bottom:355.042800px;}
.ya7{bottom:359.223450px;}
.y108{bottom:359.796300px;}
.ya3{bottom:360.483450px;}
.y201{bottom:362.799300px;}
.y133{bottom:364.356000px;}
.y1d6{bottom:364.507050px;}
.yd3{bottom:365.794800px;}
.y1d{bottom:366.690300px;}
.y17a{bottom:369.246300px;}
.y90{bottom:369.843450px;}
.y63{bottom:370.041300px;}
.ya6{bottom:374.221950px;}
.y107{bottom:374.794800px;}
.ya2{bottom:375.481950px;}
.y1d5{bottom:377.253300px;}
.y200{bottom:377.797800px;}
.yd2{bottom:380.806800px;}
.y1c{bottom:381.688800px;}
.y179{bottom:384.244800px;}
.y8f{bottom:384.841950px;}
.y62{bottom:385.039800px;}
.ya5{bottom:389.220450px;}
.y106{bottom:389.794800px;}
.y1d4{bottom:389.999550px;}
.ya1{bottom:390.480450px;}
.y1ff{bottom:392.796300px;}
.y132{bottom:394.339650px;}
.yd1{bottom:395.805300px;}
.y1b{bottom:396.687300px;}
.y178{bottom:399.243300px;}
.y8e{bottom:399.840450px;}
.y61{bottom:400.038300px;}
.y1d3{bottom:402.745800px;}
.ya4{bottom:404.218950px;}
.y105{bottom:404.796300px;}
.ya0{bottom:405.478950px;}
.y1fe{bottom:407.794800px;}
.y131{bottom:409.338150px;}
.yd0{bottom:410.803800px;}
.y1a{bottom:411.685800px;}
.y177{bottom:414.241800px;}
.y8d{bottom:414.838950px;}
.y60{bottom:415.036800px;}
.y1d2{bottom:415.492050px;}
.y104{bottom:419.794800px;}
.y1fd{bottom:422.793300px;}
.y130{bottom:424.336650px;}
.ycf{bottom:425.802300px;}
.y19{bottom:426.687300px;}
.y1d1{bottom:428.238300px;}
.y176{bottom:429.240300px;}
.y5f{bottom:430.035300px;}
.y103{bottom:434.796300px;}
.y12f{bottom:439.335150px;}
.yce{bottom:440.800800px;}
.y1d0{bottom:440.984550px;}
.y18{bottom:441.685800px;}
.y175{bottom:444.238800px;}
.y1fc{bottom:444.547800px;}
.y5e{bottom:445.033800px;}
.y102{bottom:449.794800px;}
.y1cf{bottom:453.730800px;}
.y12e{bottom:454.333650px;}
.ycd{bottom:455.799300px;}
.y17{bottom:456.723300px;}
.y174{bottom:459.237300px;}
.y1fb{bottom:459.546300px;}
.y5d{bottom:460.032300px;}
.y101{bottom:464.794800px;}
.y1ce{bottom:466.477050px;}
.y12d{bottom:469.332150px;}
.ycc{bottom:470.797800px;}
.y173{bottom:474.235800px;}
.y5c{bottom:475.030800px;}
.y1cd{bottom:479.223300px;}
.y100{bottom:479.793300px;}
.y1fa{bottom:481.294800px;}
.y12c{bottom:484.330650px;}
.ycb{bottom:485.796300px;}
.y172{bottom:489.234300px;}
.y5b{bottom:490.029300px;}
.y1cc{bottom:491.969550px;}
.yff{bottom:494.793300px;}
.y12b{bottom:499.329150px;}
.yca{bottom:500.794800px;}
.y1f9{bottom:503.043300px;}
.y16{bottom:503.973300px;}
.y1cb{bottom:504.715800px;}
.y5a{bottom:505.027800px;}
.y16e{bottom:509.344500px;}
.y12a{bottom:514.327650px;}
.y16f{bottom:514.960800px;}
.yc9{bottom:515.797800px;}
.y1ca{bottom:517.462050px;}
.y1f8{bottom:518.043300px;}
.y59{bottom:520.026300px;}
.y15{bottom:520.470300px;}
.y171{bottom:522.304800px;}
.y170{bottom:525.754752px;}
.y16d{bottom:525.760800px;}
.yfe{bottom:527.797800px;}
.y129{bottom:529.326150px;}
.y1c9{bottom:530.208300px;}
.yc8{bottom:530.796300px;}
.y58{bottom:535.024800px;}
.y14{bottom:536.967300px;}
.yfd{bottom:542.796300px;}
.y1c8{bottom:542.954550px;}
.y128{bottom:544.324650px;}
.y1f7{bottom:545.046300px;}
.yc7{bottom:545.794800px;}
.y57{bottom:550.023300px;}
.y13{bottom:553.464300px;}
.y1c7{bottom:555.700800px;}
.yfc{bottom:557.794800px;}
.y1f6{bottom:560.044800px;}
.y16c{bottom:560.473800px;}
.yc6{bottom:560.799300px;}
.y56{bottom:565.021800px;}
.y1c6{bottom:568.447050px;}
.y12{bottom:569.961300px;}
.yfb{bottom:572.796300px;}
.y127{bottom:574.297800px;}
.y1f5{bottom:575.043300px;}
.y16b{bottom:575.475300px;}
.yc5{bottom:575.797800px;}
.y55{bottom:580.020300px;}
.y1c5{bottom:581.193300px;}
.y11{bottom:586.458300px;}
.yfa{bottom:587.794800px;}
.y126{bottom:589.296300px;}
.y1f4{bottom:590.043300px;}
.y16a{bottom:590.473800px;}
.yc4{bottom:590.796300px;}
.y1c4{bottom:593.939550px;}
.yf9{bottom:602.794800px;}
.y10{bottom:602.955300px;}
.y125{bottom:604.294800px;}
.y169{bottom:605.472300px;}
.yc3{bottom:605.794800px;}
.y1c3{bottom:606.685800px;}
.y54{bottom:609.418800px;}
.y1f3{bottom:617.050800px;}
.yf8{bottom:617.800800px;}
.y124{bottom:619.303800px;}
.y1c2{bottom:619.432050px;}
.yf{bottom:619.452300px;}
.yc2{bottom:620.799300px;}
.y53{bottom:624.417300px;}
.y162{bottom:625.582500px;}
.y164{bottom:631.198800px;}
.y1f2{bottom:632.049300px;}
.y1c1{bottom:632.178300px;}
.yf7{bottom:632.799300px;}
.y123{bottom:634.302300px;}
.yc1{bottom:635.797800px;}
.ye{bottom:635.949300px;}
.y167{bottom:638.542800px;}
.y52{bottom:639.415800px;}
.y161{bottom:641.998800px;}
.y1c0{bottom:644.924550px;}
.y1f1{bottom:647.047800px;}
.yf6{bottom:647.797800px;}
.y122{bottom:649.300800px;}
.yc0{bottom:650.796300px;}
.yd{bottom:652.446300px;}
.y51{bottom:654.414300px;}
.y1bf{bottom:657.670800px;}
.y1f0{bottom:662.046300px;}
.yf5{bottom:662.796300px;}
.y121{bottom:664.299300px;}
.ybf{bottom:665.794800px;}
.yc{bottom:668.943300px;}
.y50{bottom:669.412800px;}
.y1be{bottom:670.417050px;}
.y160{bottom:676.282800px;}
.y1ef{bottom:677.044800px;}
.yf4{bottom:677.794800px;}
.y120{bottom:679.297800px;}
.ybe{bottom:680.794800px;}
.y1bd{bottom:683.163300px;}
.y4f{bottom:684.411300px;}
.yb{bottom:685.440300px;}
.y15f{bottom:691.281300px;}
.y1ee{bottom:692.043300px;}
.yf3{bottom:692.797800px;}
.y11f{bottom:694.296300px;}
.ybd{bottom:695.794800px;}
.y1bc{bottom:695.909550px;}
.y4e{bottom:699.409800px;}
.ya{bottom:701.937300px;}
.y15e{bottom:706.279800px;}
.y1ed{bottom:707.043300px;}
.yf2{bottom:707.796300px;}
.y1bb{bottom:708.655800px;}
.y11e{bottom:709.294800px;}
.ybc{bottom:710.796300px;}
.y4d{bottom:714.408300px;}
.y9{bottom:718.434300px;}
.y15d{bottom:721.278300px;}
.y1ba{bottom:721.402050px;}
.yf1{bottom:722.794800px;}
.y11d{bottom:724.294800px;}
.ybb{bottom:725.794800px;}
.y4c{bottom:729.411300px;}
.y1b9{bottom:734.148300px;}
.yf0{bottom:737.793300px;}
.y11c{bottom:739.294800px;}
.yba{bottom:740.802300px;}
.y4b{bottom:744.409800px;}
.y1b8{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y11b{bottom:754.293300px;}
.yb9{bottom:755.800800px;}
.y32{bottom:757.050000px;}
.y4a{bottom:759.408300px;}
.y1b7{bottom:759.640800px;}
.yef{bottom:770.797800px;}
.yb8{bottom:770.799300px;}
.y1b6{bottom:772.387050px;}
.y49{bottom:774.406800px;}
.y31{bottom:778.050000px;}
.y19c{bottom:778.656300px;}
.y7{bottom:781.416300px;}
.y1b5{bottom:785.133300px;}
.yee{bottom:785.796300px;}
.yb7{bottom:785.797800px;}
.y48{bottom:789.406800px;}
.y19b{bottom:793.654800px;}
.y1b4{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.yed{bottom:800.794800px;}
.yb6{bottom:800.796300px;}
.y19a{bottom:808.653300px;}
.y15c{bottom:810.174300px;}
.y1b3{bottom:810.625800px;}
.yb5{bottom:815.794800px;}
.y47{bottom:818.808300px;}
.y1b2{bottom:823.372050px;}
.y15b{bottom:825.172800px;}
.y6{bottom:826.422300px;}
.yb4{bottom:830.794800px;}
.yec{bottom:830.800800px;}
.y46{bottom:833.806800px;}
.y1b1{bottom:836.118300px;}
.y199{bottom:838.837800px;}
.y15a{bottom:840.171300px;}
.yb3{bottom:845.796300px;}
.yeb{bottom:845.799300px;}
.y45{bottom:848.805300px;}
.y1b0{bottom:848.864550px;}
.y159{bottom:855.169800px;}
.y198{bottom:856.282800px;}
.yb2{bottom:860.794800px;}
.yea{bottom:860.797800px;}
.y1af{bottom:861.610800px;}
.y196{bottom:861.903300px;}
.y44{bottom:863.803800px;}
.y197{bottom:867.528300px;}
.y158{bottom:870.168300px;}
.y5{bottom:871.428300px;}
.y1ae{bottom:874.357050px;}
.yb1{bottom:875.796300px;}
.y43{bottom:878.802300px;}
.y195{bottom:884.962800px;}
.y1ad{bottom:887.103300px;}
.yb0{bottom:890.794800px;}
.y42{bottom:893.800800px;}
.y1ac{bottom:899.849550px;}
.y157{bottom:900.322800px;}
.y194{bottom:902.403300px;}
.ye9{bottom:905.793300px;}
.yaf{bottom:905.796300px;}
.y41{bottom:908.799300px;}
.y1ab{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y156{bottom:917.763300px;}
.yae{bottom:920.794800px;}
.y40{bottom:923.797800px;}
.y1aa{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y155{bottom:935.203800px;}
.yad{bottom:935.793300px;}
.y1a9{bottom:938.088300px;}
.ye8{bottom:938.794800px;}
.y3f{bottom:938.796300px;}
.yac{bottom:950.793300px;}
.y1a8{bottom:950.834550px;}
.y154{bottom:952.644300px;}
.y3e{bottom:953.794800px;}
.ye7{bottom:953.806800px;}
.y193{bottom:962.233800px;}
.y1a7{bottom:963.580800px;}
.y3d{bottom:968.797800px;}
.ye6{bottom:968.805300px;}
.y153{bottom:970.084800px;}
.y1a6{bottom:976.327050px;}
.y192{bottom:977.232300px;}
.y3c{bottom:983.796300px;}
.yab{bottom:983.803800px;}
.y152{bottom:987.525300px;}
.y1a5{bottom:989.073300px;}
.y191{bottom:992.230800px;}
.y3b{bottom:998.794800px;}
.yaa{bottom:998.802300px;}
.y1a4{bottom:1001.819550px;}
.y151{bottom:1004.965800px;}
.y3a{bottom:1013.800800px;}
.y1a3{bottom:1014.565800px;}
.y150{bottom:1022.406300px;}
.y1a2{bottom:1027.312050px;}
.y39{bottom:1028.799300px;}
.y14f{bottom:1039.846800px;}
.y1a1{bottom:1040.058300px;}
.y38{bottom:1043.797800px;}
.y1a0{bottom:1052.804550px;}
.y14e{bottom:1057.287300px;}
.y37{bottom:1058.796300px;}
.y19f{bottom:1065.550800px;}
.y36{bottom:1073.794800px;}
.y14d{bottom:1074.727800px;}
.y19e{bottom:1078.297050px;}
.y35{bottom:1088.793300px;}
.y19d{bottom:1091.043300px;}
.y14c{bottom:1092.168300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hd{height:23.842749px;}
.h1d{height:27.105408px;}
.h1f{height:29.946000px;}
.h23{height:29.958000px;}
.h1e{height:29.988000px;}
.h22{height:32.085000px;}
.h21{height:32.130000px;}
.h3{height:34.523438px;}
.h19{height:35.856000px;}
.h20{height:36.288000px;}
.hf{height:36.681152px;}
.h18{height:37.819008px;}
.h1b{height:38.193984px;}
.h9{height:38.502000px;}
.h14{height:38.556000px;}
.h7{height:38.838867px;}
.he{height:41.158749px;}
.h2{height:43.154297px;}
.h8{height:43.230300px;}
.h16{height:43.332300px;}
.h17{height:43.344300px;}
.h15{height:43.350300px;}
.h11{height:43.356300px;}
.hb{height:43.362300px;}
.h12{height:43.368300px;}
.ha{height:43.374300px;}
.hc{height:43.380300px;}
.h4{height:44.233154px;}
.h13{height:47.469727px;}
.h6{height:48.450293px;}
.h1c{height:61.661952px;}
.h10{height:77.677734px;}
.h1a{height:81.369792px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w3{width:598.752000px;}
.w2{width:599.184000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:81.031200px;}
.x7{left:140.952750px;}
.x1f{left:186.623700px;}
.x1c{left:191.375700px;}
.x1b{left:218.159700px;}
.x4{left:233.456400px;}
.x11{left:238.143900px;}
.x5{left:251.445750px;}
.xc{left:282.527700px;}
.x16{left:284.687700px;}
.x10{left:292.031700px;}
.x19{left:293.759700px;}
.x24{left:300.348600px;}
.xa{left:309.311700px;}
.x14{left:311.039700px;}
.x21{left:335.066700px;}
.x1e{left:379.995132px;}
.x1a{left:403.322700px;}
.x18{left:429.890700px;}
.xf{left:431.834700px;}
.xd{left:476.762700px;}
.x17{left:478.706700px;}
.x9{left:500.090700px;}
.x13{left:502.034700px;}
.x1d{left:515.642700px;}
.xb{left:542.426700px;}
.x15{left:544.370700px;}
.xe{left:583.199700px;}
.x3{left:584.586600px;}
.x22{left:619.924500px;}
.x23{left:643.179750px;}
.x20{left:697.082700px;}
.x12{left:816.003600px;}
.x8{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.605333pt;}
.v9{vertical-align:-7.456533pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.467200pt;}
.v6{vertical-align:9.600000pt;}
.v2{vertical-align:16.181333pt;}
.v1{vertical-align:18.133333pt;}
.v8{vertical-align:30.716928pt;}
.v7{vertical-align:38.378496pt;}
.ls11{letter-spacing:-3.893333pt;}
.ls9e{letter-spacing:-3.840000pt;}
.ls92{letter-spacing:-3.584000pt;}
.ls16{letter-spacing:-1.920000pt;}
.ls90{letter-spacing:-1.680000pt;}
.ls6b{letter-spacing:-1.296000pt;}
.ls30{letter-spacing:-1.248000pt;}
.lsab{letter-spacing:-1.080000pt;}
.ls2e{letter-spacing:-1.056000pt;}
.lsa9{letter-spacing:-0.960000pt;}
.lsa2{letter-spacing:-0.880000pt;}
.ls8e{letter-spacing:-0.760000pt;}
.ls61{letter-spacing:-0.686400pt;}
.lsa7{letter-spacing:-0.680000pt;}
.ls64{letter-spacing:-0.672000pt;}
.lsaa{letter-spacing:-0.640000pt;}
.ls81{letter-spacing:-0.624000pt;}
.lsad{letter-spacing:-0.600000pt;}
.ls8a{letter-spacing:-0.560000pt;}
.lsa6{letter-spacing:-0.520000pt;}
.ls82{letter-spacing:-0.480000pt;}
.ls73{letter-spacing:-0.473088pt;}
.ls80{letter-spacing:-0.432000pt;}
.lsac{letter-spacing:-0.400000pt;}
.ls45{letter-spacing:-0.384000pt;}
.ls62{letter-spacing:-0.343200pt;}
.ls2f{letter-spacing:-0.336000pt;}
.ls9f{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls91{letter-spacing:-0.280000pt;}
.ls39{letter-spacing:-0.266667pt;}
.ls46{letter-spacing:-0.249600pt;}
.ls2a{letter-spacing:-0.240000pt;}
.ls93{letter-spacing:-0.224000pt;}
.lsa8{letter-spacing:-0.200000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls75{letter-spacing:-0.186667pt;}
.ls89{letter-spacing:-0.168960pt;}
.lsa1{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.144000pt;}
.ls6d{letter-spacing:-0.124800pt;}
.ls9d{letter-spacing:-0.120000pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls48{letter-spacing:-0.093600pt;}
.ls8f{letter-spacing:-0.080000pt;}
.ls84{letter-spacing:-0.067584pt;}
.ls5e{letter-spacing:-0.062400pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls8d{letter-spacing:-0.040000pt;}
.ls14{letter-spacing:-0.031200pt;}
.ls10{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012267pt;}
.ls55{letter-spacing:0.015467pt;}
.ls25{letter-spacing:0.019200pt;}
.ls3{letter-spacing:0.019733pt;}
.ls2{letter-spacing:0.020267pt;}
.ls8{letter-spacing:0.031200pt;}
.ls9b{letter-spacing:0.040000pt;}
.ls18{letter-spacing:0.048000pt;}
.ls4d{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.057600pt;}
.ls7{letter-spacing:0.062400pt;}
.ls6{letter-spacing:0.064533pt;}
.ls8c{letter-spacing:0.080000pt;}
.ls3e{letter-spacing:0.086400pt;}
.ls27{letter-spacing:0.091200pt;}
.ls52{letter-spacing:0.092267pt;}
.ls47{letter-spacing:0.093600pt;}
.ls5{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.100800pt;}
.ls57{letter-spacing:0.110400pt;}
.ls4c{letter-spacing:0.120000pt;}
.ls4a{letter-spacing:0.124800pt;}
.ls51{letter-spacing:0.142400pt;}
.ls21{letter-spacing:0.142933pt;}
.ls17{letter-spacing:0.144000pt;}
.ls5a{letter-spacing:0.150933pt;}
.ls28{letter-spacing:0.153600pt;}
.ls63{letter-spacing:0.156000pt;}
.ls58{letter-spacing:0.158400pt;}
.ls7e{letter-spacing:0.160000pt;}
.ls4f{letter-spacing:0.163200pt;}
.ls34{letter-spacing:0.168000pt;}
.ls74{letter-spacing:0.168960pt;}
.ls7a{letter-spacing:0.177600pt;}
.ls60{letter-spacing:0.187200pt;}
.ls71{letter-spacing:0.190464pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.195067pt;}
.ls53{letter-spacing:0.197867pt;}
.ls59{letter-spacing:0.198933pt;}
.ls96{letter-spacing:0.200000pt;}
.ls20{letter-spacing:0.206400pt;}
.ls86{letter-spacing:0.218400pt;}
.ls9c{letter-spacing:0.232000pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls65{letter-spacing:0.244800pt;}
.ls3f{letter-spacing:0.249067pt;}
.ls5c{letter-spacing:0.249600pt;}
.ls50{letter-spacing:0.263467pt;}
.ls1d{letter-spacing:0.264000pt;}
.lsa0{letter-spacing:0.280000pt;}
.ls5f{letter-spacing:0.280800pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls40{letter-spacing:0.304533pt;}
.ls4e{letter-spacing:0.312000pt;}
.lsa{letter-spacing:0.317333pt;}
.ls42{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.336000pt;}
.ls37{letter-spacing:0.340800pt;}
.ls43{letter-spacing:0.343200pt;}
.ls7d{letter-spacing:0.360000pt;}
.lsb{letter-spacing:0.366800pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls5b{letter-spacing:0.405600pt;}
.ls5d{letter-spacing:0.426667pt;}
.ls72{letter-spacing:0.428544pt;}
.ls12{letter-spacing:0.432000pt;}
.lsa5{letter-spacing:0.440000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls85{letter-spacing:0.506880pt;}
.ls35{letter-spacing:0.508800pt;}
.ls94{letter-spacing:0.520000pt;}
.ls36{letter-spacing:0.528000pt;}
.ls56{letter-spacing:0.538133pt;}
.ls68{letter-spacing:0.540672pt;}
.ls8b{letter-spacing:0.560000pt;}
.ls1b{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.579600pt;}
.ls54{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.589333pt;}
.ls7b{letter-spacing:0.600000pt;}
.ls6a{letter-spacing:0.608256pt;}
.ls41{letter-spacing:0.624000pt;}
.ls79{letter-spacing:0.642048pt;}
.ls66{letter-spacing:0.657600pt;}
.ls2c{letter-spacing:0.672000pt;}
.ls69{letter-spacing:0.675840pt;}
.ls3d{letter-spacing:0.686400pt;}
.ls24{letter-spacing:0.693333pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls44{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.784000pt;}
.lsa4{letter-spacing:0.800000pt;}
.ls3c{letter-spacing:0.816000pt;}
.ls97{letter-spacing:0.840000pt;}
.lsf{letter-spacing:0.853333pt;}
.ls2d{letter-spacing:0.864000pt;}
.ls99{letter-spacing:0.880000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls6c{letter-spacing:0.912000pt;}
.ls95{letter-spacing:0.920000pt;}
.lsa3{letter-spacing:0.960000pt;}
.ls26{letter-spacing:0.988800pt;}
.ls49{letter-spacing:1.056000pt;}
.ls7c{letter-spacing:1.160000pt;}
.ls6e{letter-spacing:1.999872pt;}
.ls9a{letter-spacing:2.040000pt;}
.ls98{letter-spacing:2.232000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls7f{letter-spacing:5.440000pt;}
.ls3b{letter-spacing:13.104000pt;}
.ls76{letter-spacing:16.355328pt;}
.ls70{letter-spacing:34.235904pt;}
.ls67{letter-spacing:116.563968pt;}
.ls83{letter-spacing:116.849664pt;}
.ls6f{letter-spacing:118.373376pt;}
.ls77{letter-spacing:125.753856pt;}
.ls88{letter-spacing:224.699904pt;}
.ls87{letter-spacing:226.223616pt;}
.ls78{letter-spacing:460.637184pt;}
.ws96{word-spacing:-237.032448pt;}
.ws97{word-spacing:-235.508736pt;}
.wsb1{word-spacing:-226.223616pt;}
.ws93{word-spacing:-125.801472pt;}
.ws87{word-spacing:-118.373376pt;}
.wsae{word-spacing:-116.849664pt;}
.ws94{word-spacing:-97.041408pt;}
.ws95{word-spacing:-93.993984pt;}
.wsb0{word-spacing:-34.235904pt;}
.ws2{word-spacing:-13.393333pt;}
.ws20{word-spacing:-12.085333pt;}
.ws67{word-spacing:-11.664000pt;}
.ws6a{word-spacing:-11.616000pt;}
.ws22{word-spacing:-11.568000pt;}
.ws64{word-spacing:-11.472000pt;}
.ws91{word-spacing:-11.328000pt;}
.ws60{word-spacing:-11.280000pt;}
.ws7c{word-spacing:-11.237376pt;}
.ws26{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws9{word-spacing:-10.896000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws61{word-spacing:-10.800000pt;}
.ws77{word-spacing:-10.704000pt;}
.ws23{word-spacing:-10.656000pt;}
.ws74{word-spacing:-10.608000pt;}
.wsab{word-spacing:-10.416000pt;}
.ws69{word-spacing:-10.320000pt;}
.ws21{word-spacing:-9.936000pt;}
.ws24{word-spacing:-9.744000pt;}
.ws75{word-spacing:-9.696000pt;}
.wsbf{word-spacing:-9.000000pt;}
.wsa{word-spacing:-8.976000pt;}
.wsbe{word-spacing:-8.920000pt;}
.wsda{word-spacing:-8.640000pt;}
.ws9a{word-spacing:-8.600000pt;}
.wsc1{word-spacing:-8.560000pt;}
.wsa9{word-spacing:-8.549333pt;}
.wsc2{word-spacing:-8.520000pt;}
.ws8a{word-spacing:-8.474667pt;}
.ws9b{word-spacing:-8.400000pt;}
.ws8c{word-spacing:-8.346624pt;}
.wsc0{word-spacing:-8.280000pt;}
.ws8e{word-spacing:-8.177664pt;}
.wsa1{word-spacing:-7.877333pt;}
.ws7e{word-spacing:-7.839744pt;}
.ws8d{word-spacing:-7.603200pt;}
.ws98{word-spacing:-7.501824pt;}
.ws6b{word-spacing:-7.488000pt;}
.ws4c{word-spacing:-7.425600pt;}
.ws76{word-spacing:-7.394400pt;}
.ws63{word-spacing:-7.363200pt;}
.ws5f{word-spacing:-7.332000pt;}
.ws92{word-spacing:-7.300800pt;}
.ws68{word-spacing:-7.238400pt;}
.ws4f{word-spacing:-7.207200pt;}
.ws7d{word-spacing:-7.197696pt;}
.ws4d{word-spacing:-7.176000pt;}
.ws8{word-spacing:-7.144800pt;}
.wsb{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.093333pt;}
.ws6{word-spacing:-7.082400pt;}
.ws7{word-spacing:-7.051200pt;}
.ws62{word-spacing:-7.020000pt;}
.ws4e{word-spacing:-6.988800pt;}
.ws78{word-spacing:-6.957600pt;}
.ws4b{word-spacing:-6.832800pt;}
.ws66{word-spacing:-6.801600pt;}
.ws65{word-spacing:-6.458400pt;}
.wsc{word-spacing:-5.893333pt;}
.wsa5{word-spacing:-5.508533pt;}
.wsac{word-spacing:-5.440000pt;}
.wsdf{word-spacing:-3.520000pt;}
.wse{word-spacing:-2.912000pt;}
.ws1f{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws10{word-spacing:-2.133333pt;}
.ws55{word-spacing:-2.112000pt;}
.ws47{word-spacing:-1.813333pt;}
.ws48{word-spacing:-1.776000pt;}
.ws2d{word-spacing:-1.728000pt;}
.ws40{word-spacing:-1.680000pt;}
.ws3f{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.632000pt;}
.ws54{word-spacing:-1.584000pt;}
.ws41{word-spacing:-1.536000pt;}
.ws31{word-spacing:-1.488000pt;}
.wsdb{word-spacing:-1.480000pt;}
.ws1c{word-spacing:-1.450667pt;}
.ws37{word-spacing:-1.440000pt;}
.wsba{word-spacing:-1.400000pt;}
.ws44{word-spacing:-1.392000pt;}
.ws1a{word-spacing:-1.360000pt;}
.ws59{word-spacing:-1.344000pt;}
.ws27{word-spacing:-1.296000pt;}
.ws29{word-spacing:-1.248000pt;}
.wsb5{word-spacing:-1.240000pt;}
.ws16{word-spacing:-1.200000pt;}
.ws45{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws46{word-spacing:-1.056000pt;}
.ws11{word-spacing:-1.008000pt;}
.wsca{word-spacing:-1.000000pt;}
.ws42{word-spacing:-0.960000pt;}
.wsb4{word-spacing:-0.920000pt;}
.ws85{word-spacing:-0.912000pt;}
.ws1d{word-spacing:-0.906667pt;}
.ws18{word-spacing:-0.864000pt;}
.wsbc{word-spacing:-0.858667pt;}
.wsc5{word-spacing:-0.840000pt;}
.ws89{word-spacing:-0.821333pt;}
.ws2c{word-spacing:-0.816000pt;}
.wscf{word-spacing:-0.800000pt;}
.wsd1{word-spacing:-0.760000pt;}
.ws51{word-spacing:-0.720000pt;}
.ws38{word-spacing:-0.693333pt;}
.ws3b{word-spacing:-0.672000pt;}
.wsbb{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.624000pt;}
.wsc4{word-spacing:-0.600000pt;}
.ws1b{word-spacing:-0.589333pt;}
.ws17{word-spacing:-0.576000pt;}
.wsb3{word-spacing:-0.560000pt;}
.wsbd{word-spacing:-0.558133pt;}
.ws6f{word-spacing:-0.533333pt;}
.wsad{word-spacing:-0.530400pt;}
.ws12{word-spacing:-0.528000pt;}
.wsd7{word-spacing:-0.520000pt;}
.ws2b{word-spacing:-0.480000pt;}
.wsb6{word-spacing:-0.440000pt;}
.ws28{word-spacing:-0.432000pt;}
.wsd5{word-spacing:-0.400000pt;}
.ws3a{word-spacing:-0.384000pt;}
.wscd{word-spacing:-0.360000pt;}
.ws3d{word-spacing:-0.336000pt;}
.wsd8{word-spacing:-0.320000pt;}
.ws43{word-spacing:-0.288000pt;}
.wsc6{word-spacing:-0.280000pt;}
.ws5c{word-spacing:-0.266667pt;}
.ws70{word-spacing:-0.249600pt;}
.ws34{word-spacing:-0.240000pt;}
.ws30{word-spacing:-0.192000pt;}
.ws88{word-spacing:-0.190464pt;}
.ws72{word-spacing:-0.187200pt;}
.ws7f{word-spacing:-0.168960pt;}
.wsb9{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.136000pt;}
.wsaf{word-spacing:-0.124800pt;}
.wsdd{word-spacing:-0.120000pt;}
.ws6c{word-spacing:-0.106667pt;}
.ws13{word-spacing:-0.096000pt;}
.ws71{word-spacing:-0.093600pt;}
.wsb8{word-spacing:-0.080000pt;}
.ws25{word-spacing:-0.048000pt;}
.ws79{word-spacing:-0.047616pt;}
.wsd6{word-spacing:-0.040000pt;}
.wsa8{word-spacing:-0.037333pt;}
.wsd{word-spacing:0.000000pt;}
.ws36{word-spacing:0.048000pt;}
.ws57{word-spacing:0.096000pt;}
.ws6d{word-spacing:0.106667pt;}
.wsd2{word-spacing:0.120000pt;}
.ws39{word-spacing:0.144000pt;}
.wscc{word-spacing:0.160000pt;}
.ws5d{word-spacing:0.192000pt;}
.wsd0{word-spacing:0.200000pt;}
.ws6e{word-spacing:0.240000pt;}
.ws35{word-spacing:0.288000pt;}
.ws73{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.336000pt;}
.ws3e{word-spacing:0.384000pt;}
.ws49{word-spacing:0.432000pt;}
.wsc9{word-spacing:0.440000pt;}
.ws5a{word-spacing:0.480000pt;}
.ws4a{word-spacing:0.528000pt;}
.wsb2{word-spacing:0.560000pt;}
.ws2f{word-spacing:0.576000pt;}
.wsde{word-spacing:0.600000pt;}
.ws2e{word-spacing:0.624000pt;}
.ws58{word-spacing:0.672000pt;}
.ws5b{word-spacing:0.720000pt;}
.ws52{word-spacing:0.746667pt;}
.ws53{word-spacing:0.768000pt;}
.wsc7{word-spacing:0.840000pt;}
.ws50{word-spacing:0.912000pt;}
.wsdc{word-spacing:0.920000pt;}
.ws33{word-spacing:1.008000pt;}
.ws32{word-spacing:1.013333pt;}
.wsd9{word-spacing:1.080000pt;}
.ws86{word-spacing:1.152000pt;}
.wsd3{word-spacing:1.200000pt;}
.wsce{word-spacing:1.240000pt;}
.wsc8{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.360000pt;}
.wscb{word-spacing:1.440000pt;}
.wsd4{word-spacing:1.480000pt;}
.ws5e{word-spacing:1.584000pt;}
.wsb7{word-spacing:1.680000pt;}
.wsc3{word-spacing:3.840000pt;}
.ws90{word-spacing:90.089472pt;}
.ws81{word-spacing:91.643904pt;}
.wsa7{word-spacing:115.120000pt;}
.wsa6{word-spacing:121.298667pt;}
.wsa2{word-spacing:132.262400pt;}
.wsa0{word-spacing:134.101333pt;}
.ws7a{word-spacing:162.418176pt;}
.ws80{word-spacing:167.506944pt;}
.ws8f{word-spacing:169.027584pt;}
.ws8b{word-spacing:176.226816pt;}
.ws99{word-spacing:187.309056pt;}
.wsa4{word-spacing:190.799467pt;}
.wsa3{word-spacing:196.978133pt;}
.ws84{word-spacing:240.613333pt;}
.wsaa{word-spacing:246.474667pt;}
.ws82{word-spacing:246.661333pt;}
.ws9c{word-spacing:269.882667pt;}
.ws83{word-spacing:272.085333pt;}
.ws7b{word-spacing:292.838400pt;}
.ws9f{word-spacing:315.955733pt;}
.ws9e{word-spacing:352.426667pt;}
.ws9d{word-spacing:361.386667pt;}
._1d{margin-left:-1333.438464pt;}
._1c{margin-left:-659.148288pt;}
._17{margin-left:-645.292032pt;}
._1e{margin-left:-158.227968pt;}
._1f{margin-left:-156.704256pt;}
._9{margin-left:-12.574933pt;}
._15{margin-left:-11.438400pt;}
._8{margin-left:-10.512000pt;}
._10{margin-left:-9.413333pt;}
._16{margin-left:-7.702400pt;}
._4{margin-left:-6.400000pt;}
._5{margin-left:-4.694933pt;}
._1{margin-left:-3.259733pt;}
._0{margin-left:-1.578667pt;}
._3{width:1.010667pt;}
._6{width:1.920000pt;}
._7{width:2.818133pt;}
._2{width:3.872000pt;}
._b{width:5.502933pt;}
._d{width:6.800533pt;}
._12{width:9.278400pt;}
._c{width:10.635200pt;}
._11{width:13.584000pt;}
._f{width:38.369067pt;}
._a{width:41.028800pt;}
._14{width:42.034133pt;}
._e{width:43.217067pt;}
._13{width:44.114667pt;}
._21{width:98.368512pt;}
._28{width:108.901333pt;}
._2e{width:118.979733pt;}
._20{width:132.092928pt;}
._2f{width:134.042933pt;}
._18{width:176.992000pt;}
._2a{width:200.741333pt;}
._29{width:207.128000pt;}
._23{width:220.053333pt;}
._2c{width:249.965333pt;}
._2b{width:263.946667pt;}
._2d{width:279.600000pt;}
._22{width:288.205333pt;}
._1b{width:354.629333pt;}
._19{width:365.680000pt;}
._1a{width:372.549333pt;}
._26{width:387.333333pt;}
._27{width:392.672000pt;}
._24{width:414.213333pt;}
._25{width:419.552000pt;}
.fsf{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fsc{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsb{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y14b{bottom:1.919867pt;}
.y168{bottom:1.920267pt;}
.y149{bottom:3.839867pt;}
.y166{bottom:3.840267pt;}
.y148{bottom:4.987259pt;}
.y165{bottom:4.987659pt;}
.y146{bottom:22.271867pt;}
.y163{bottom:22.272267pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2f{bottom:60.723467pt;}
.y75{bottom:60.946933pt;}
.y190{bottom:61.666667pt;}
.y11a{bottom:63.817600pt;}
.y145{bottom:65.476000pt;}
.ye5{bottom:69.152267pt;}
.y147{bottom:70.468000pt;}
.ya9{bottom:72.577600pt;}
.y18f{bottom:72.996667pt;}
.y2e{bottom:74.051467pt;}
.y74{bottom:74.278933pt;}
.y7a{bottom:74.488267pt;}
.y1ec{bottom:74.746267pt;}
.y14a{bottom:76.995867pt;}
.y119{bottom:77.150933pt;}
.y144{bottom:80.067867pt;}
.y9f{bottom:81.834933pt;}
.ye4{bottom:82.484267pt;}
.y18e{bottom:84.326667pt;}
.ya8{bottom:85.909600pt;}
.y1eb{bottom:86.076267pt;}
.y8c{bottom:86.097733pt;}
.y2d{bottom:87.384800pt;}
.y73{bottom:87.610933pt;}
.y79{bottom:87.820267pt;}
.y118{bottom:90.484267pt;}
.y9e{bottom:95.166933pt;}
.y18d{bottom:95.656667pt;}
.ye3{bottom:95.821600pt;}
.y1ea{bottom:97.406267pt;}
.y8b{bottom:99.429733pt;}
.y2c{bottom:100.718133pt;}
.y72{bottom:100.942933pt;}
.y78{bottom:101.152267pt;}
.y117{bottom:103.825600pt;}
.y18c{bottom:106.986667pt;}
.y9d{bottom:108.498933pt;}
.y1e9{bottom:108.736267pt;}
.ye2{bottom:109.153600pt;}
.y143{bottom:110.542667pt;}
.y8a{bottom:112.761733pt;}
.y2b{bottom:114.051467pt;}
.y71{bottom:114.274933pt;}
.y77{bottom:114.484267pt;}
.y116{bottom:117.157600pt;}
.y18b{bottom:118.316667pt;}
.y1e8{bottom:120.066267pt;}
.y9c{bottom:121.830933pt;}
.ye1{bottom:122.485600pt;}
.y142{bottom:123.874667pt;}
.y89{bottom:126.093733pt;}
.y70{bottom:127.606933pt;}
.y76{bottom:127.816267pt;}
.y18a{bottom:129.646667pt;}
.y115{bottom:130.489600pt;}
.y2a{bottom:131.232800pt;}
.y1e7{bottom:131.396267pt;}
.y9b{bottom:135.162933pt;}
.ye0{bottom:135.817600pt;}
.y141{bottom:137.206667pt;}
.y88{bottom:139.425733pt;}
.y6f{bottom:140.938933pt;}
.y189{bottom:140.976667pt;}
.y1e6{bottom:142.726267pt;}
.y114{bottom:143.821600pt;}
.y9a{bottom:148.494933pt;}
.ydf{bottom:149.152267pt;}
.y140{bottom:150.556000pt;}
.y188{bottom:152.306667pt;}
.y87{bottom:152.757733pt;}
.y1e5{bottom:154.056267pt;}
.y6e{bottom:154.270933pt;}
.y113{bottom:157.153600pt;}
.y99{bottom:161.826933pt;}
.yde{bottom:162.484267pt;}
.y187{bottom:163.636667pt;}
.y13f{bottom:163.888000pt;}
.y1e4{bottom:165.386267pt;}
.y29{bottom:165.942933pt;}
.y86{bottom:166.089733pt;}
.y6d{bottom:167.602933pt;}
.y112{bottom:170.485600pt;}
.y186{bottom:174.966667pt;}
.y98{bottom:175.158933pt;}
.ydd{bottom:175.817600pt;}
.y7d{bottom:176.049467pt;}
.y1e3{bottom:176.716267pt;}
.y13e{bottom:177.220000pt;}
.y28{bottom:179.280267pt;}
.y85{bottom:179.421733pt;}
.y111{bottom:183.817600pt;}
.y185{bottom:186.296667pt;}
.y1e2{bottom:188.046267pt;}
.y97{bottom:188.490933pt;}
.ydc{bottom:189.152267pt;}
.y7c{bottom:189.381467pt;}
.y13d{bottom:190.552000pt;}
.y27{bottom:192.612267pt;}
.y84{bottom:192.753733pt;}
.y6c{bottom:196.126933pt;}
.y110{bottom:197.150933pt;}
.y184{bottom:197.626667pt;}
.y1e1{bottom:199.376267pt;}
.y96{bottom:201.822933pt;}
.ydb{bottom:202.484267pt;}
.y7b{bottom:202.713467pt;}
.y13c{bottom:203.884000pt;}
.y26{bottom:205.944267pt;}
.y83{bottom:206.085733pt;}
.y183{bottom:208.956667pt;}
.y6b{bottom:209.458933pt;}
.y10f{bottom:210.484267pt;}
.y1e0{bottom:210.706267pt;}
.y95{bottom:215.154933pt;}
.yda{bottom:215.816267pt;}
.y13b{bottom:217.216000pt;}
.y25{bottom:219.276267pt;}
.y82{bottom:219.417733pt;}
.y182{bottom:220.286667pt;}
.y1df{bottom:222.036267pt;}
.y6a{bottom:222.790933pt;}
.y10e{bottom:223.821600pt;}
.y94{bottom:228.486933pt;}
.y13a{bottom:230.548000pt;}
.y181{bottom:231.616667pt;}
.y24{bottom:232.609600pt;}
.y81{bottom:232.749733pt;}
.y1de{bottom:233.366267pt;}
.y69{bottom:236.122933pt;}
.y10d{bottom:237.153600pt;}
.y93{bottom:241.818933pt;}
.y180{bottom:242.946667pt;}
.y139{bottom:243.880000pt;}
.y1dd{bottom:244.696267pt;}
.yd9{bottom:245.150933pt;}
.y23{bottom:245.944267pt;}
.y80{bottom:246.081733pt;}
.y68{bottom:249.454933pt;}
.y10c{bottom:250.485600pt;}
.y17f{bottom:254.276667pt;}
.y92{bottom:255.150933pt;}
.y1dc{bottom:256.026267pt;}
.y138{bottom:257.212000pt;}
.yd8{bottom:258.484267pt;}
.y22{bottom:259.276267pt;}
.y7f{bottom:259.413733pt;}
.y67{bottom:262.786933pt;}
.y10b{bottom:263.817600pt;}
.y17e{bottom:265.606667pt;}
.y1db{bottom:267.356267pt;}
.y91{bottom:268.482933pt;}
.y137{bottom:270.544000pt;}
.yd7{bottom:271.817600pt;}
.y21{bottom:272.609600pt;}
.y7e{bottom:272.745733pt;}
.y66{bottom:276.118933pt;}
.y17d{bottom:276.936667pt;}
.y10a{bottom:277.149600pt;}
.y1da{bottom:278.686267pt;}
.y136{bottom:283.876000pt;}
.yd6{bottom:285.150933pt;}
.y20{bottom:285.944267pt;}
.y17c{bottom:288.266667pt;}
.y1d9{bottom:290.016267pt;}
.y203{bottom:295.824267pt;}
.y135{bottom:297.208000pt;}
.yd5{bottom:298.484267pt;}
.y1f{bottom:299.276267pt;}
.y17b{bottom:299.600000pt;}
.y1d8{bottom:301.346267pt;}
.y65{bottom:302.261600pt;}
.y109{bottom:306.486933pt;}
.y202{bottom:309.156267pt;}
.y134{bottom:310.540000pt;}
.yd4{bottom:311.818933pt;}
.y1e{bottom:312.609600pt;}
.y1d7{bottom:312.676267pt;}
.y64{bottom:315.593600pt;}
.ya7{bottom:319.309733pt;}
.y108{bottom:319.818933pt;}
.ya3{bottom:320.429733pt;}
.y201{bottom:322.488267pt;}
.y133{bottom:323.872000pt;}
.y1d6{bottom:324.006267pt;}
.yd3{bottom:325.150933pt;}
.y1d{bottom:325.946933pt;}
.y17a{bottom:328.218933pt;}
.y90{bottom:328.749733pt;}
.y63{bottom:328.925600pt;}
.ya6{bottom:332.641733pt;}
.y107{bottom:333.150933pt;}
.ya2{bottom:333.761733pt;}
.y1d5{bottom:335.336267pt;}
.y200{bottom:335.820267pt;}
.yd2{bottom:338.494933pt;}
.y1c{bottom:339.278933pt;}
.y179{bottom:341.550933pt;}
.y8f{bottom:342.081733pt;}
.y62{bottom:342.257600pt;}
.ya5{bottom:345.973733pt;}
.y106{bottom:346.484267pt;}
.y1d4{bottom:346.666267pt;}
.ya1{bottom:347.093733pt;}
.y1ff{bottom:349.152267pt;}
.y132{bottom:350.524133pt;}
.yd1{bottom:351.826933pt;}
.y1b{bottom:352.610933pt;}
.y178{bottom:354.882933pt;}
.y8e{bottom:355.413733pt;}
.y61{bottom:355.589600pt;}
.y1d3{bottom:357.996267pt;}
.ya4{bottom:359.305733pt;}
.y105{bottom:359.818933pt;}
.ya0{bottom:360.425733pt;}
.y1fe{bottom:362.484267pt;}
.y131{bottom:363.856133pt;}
.yd0{bottom:365.158933pt;}
.y1a{bottom:365.942933pt;}
.y177{bottom:368.214933pt;}
.y8d{bottom:368.745733pt;}
.y60{bottom:368.921600pt;}
.y1d2{bottom:369.326267pt;}
.y104{bottom:373.150933pt;}
.y1fd{bottom:375.816267pt;}
.y130{bottom:377.188133pt;}
.ycf{bottom:378.490933pt;}
.y19{bottom:379.277600pt;}
.y1d1{bottom:380.656267pt;}
.y176{bottom:381.546933pt;}
.y5f{bottom:382.253600pt;}
.y103{bottom:386.485600pt;}
.y12f{bottom:390.520133pt;}
.yce{bottom:391.822933pt;}
.y1d0{bottom:391.986267pt;}
.y18{bottom:392.609600pt;}
.y175{bottom:394.878933pt;}
.y1fc{bottom:395.153600pt;}
.y5e{bottom:395.585600pt;}
.y102{bottom:399.817600pt;}
.y1cf{bottom:403.316267pt;}
.y12e{bottom:403.852133pt;}
.ycd{bottom:405.154933pt;}
.y17{bottom:405.976267pt;}
.y174{bottom:408.210933pt;}
.y1fb{bottom:408.485600pt;}
.y5d{bottom:408.917600pt;}
.y101{bottom:413.150933pt;}
.y1ce{bottom:414.646267pt;}
.y12d{bottom:417.184133pt;}
.ycc{bottom:418.486933pt;}
.y173{bottom:421.542933pt;}
.y5c{bottom:422.249600pt;}
.y1cd{bottom:425.976267pt;}
.y100{bottom:426.482933pt;}
.y1fa{bottom:427.817600pt;}
.y12c{bottom:430.516133pt;}
.ycb{bottom:431.818933pt;}
.y172{bottom:434.874933pt;}
.y5b{bottom:435.581600pt;}
.y1cc{bottom:437.306267pt;}
.yff{bottom:439.816267pt;}
.y12b{bottom:443.848133pt;}
.yca{bottom:445.150933pt;}
.y1f9{bottom:447.149600pt;}
.y16{bottom:447.976267pt;}
.y1cb{bottom:448.636267pt;}
.y5a{bottom:448.913600pt;}
.y16e{bottom:452.750667pt;}
.y12a{bottom:457.180133pt;}
.y16f{bottom:457.742933pt;}
.yc9{bottom:458.486933pt;}
.y1ca{bottom:459.966267pt;}
.y1f8{bottom:460.482933pt;}
.y59{bottom:462.245600pt;}
.y15{bottom:462.640267pt;}
.y171{bottom:464.270933pt;}
.y170{bottom:467.337557pt;}
.y16d{bottom:467.342933pt;}
.yfe{bottom:469.153600pt;}
.y129{bottom:470.512133pt;}
.y1c9{bottom:471.296267pt;}
.yc8{bottom:471.818933pt;}
.y58{bottom:475.577600pt;}
.y14{bottom:477.304267pt;}
.yfd{bottom:482.485600pt;}
.y1c8{bottom:482.626267pt;}
.y128{bottom:483.844133pt;}
.y1f7{bottom:484.485600pt;}
.yc7{bottom:485.150933pt;}
.y57{bottom:488.909600pt;}
.y13{bottom:491.968267pt;}
.y1c7{bottom:493.956267pt;}
.yfc{bottom:495.817600pt;}
.y1f6{bottom:497.817600pt;}
.y16c{bottom:498.198933pt;}
.yc6{bottom:498.488267pt;}
.y56{bottom:502.241600pt;}
.y1c6{bottom:505.286267pt;}
.y12{bottom:506.632267pt;}
.yfb{bottom:509.152267pt;}
.y127{bottom:510.486933pt;}
.y1f5{bottom:511.149600pt;}
.y16b{bottom:511.533600pt;}
.yc5{bottom:511.820267pt;}
.y55{bottom:515.573600pt;}
.y1c5{bottom:516.616267pt;}
.y11{bottom:521.296267pt;}
.yfa{bottom:522.484267pt;}
.y126{bottom:523.818933pt;}
.y1f4{bottom:524.482933pt;}
.y16a{bottom:524.865600pt;}
.yc4{bottom:525.152267pt;}
.y1c4{bottom:527.946267pt;}
.yf9{bottom:535.817600pt;}
.y10{bottom:535.960267pt;}
.y125{bottom:537.150933pt;}
.y169{bottom:538.197600pt;}
.yc3{bottom:538.484267pt;}
.y1c3{bottom:539.276267pt;}
.y54{bottom:541.705600pt;}
.y1f3{bottom:548.489600pt;}
.yf8{bottom:549.156267pt;}
.y124{bottom:550.492267pt;}
.y1c2{bottom:550.606267pt;}
.yf{bottom:550.624267pt;}
.yc2{bottom:551.821600pt;}
.y53{bottom:555.037600pt;}
.y162{bottom:556.073333pt;}
.y164{bottom:561.065600pt;}
.y1f2{bottom:561.821600pt;}
.y1c1{bottom:561.936267pt;}
.yf7{bottom:562.488267pt;}
.y123{bottom:563.824267pt;}
.yc1{bottom:565.153600pt;}
.ye{bottom:565.288267pt;}
.y167{bottom:567.593600pt;}
.y52{bottom:568.369600pt;}
.y161{bottom:570.665600pt;}
.y1c0{bottom:573.266267pt;}
.y1f1{bottom:575.153600pt;}
.yf6{bottom:575.820267pt;}
.y122{bottom:577.156267pt;}
.yc0{bottom:578.485600pt;}
.yd{bottom:579.952267pt;}
.y51{bottom:581.701600pt;}
.y1bf{bottom:584.596267pt;}
.y1f0{bottom:588.485600pt;}
.yf5{bottom:589.152267pt;}
.y121{bottom:590.488267pt;}
.ybf{bottom:591.817600pt;}
.yc{bottom:594.616267pt;}
.y50{bottom:595.033600pt;}
.y1be{bottom:595.926267pt;}
.y160{bottom:601.140267pt;}
.y1ef{bottom:601.817600pt;}
.yf4{bottom:602.484267pt;}
.y120{bottom:603.820267pt;}
.ybe{bottom:605.150933pt;}
.y1bd{bottom:607.256267pt;}
.y4f{bottom:608.365600pt;}
.yb{bottom:609.280267pt;}
.y15f{bottom:614.472267pt;}
.y1ee{bottom:615.149600pt;}
.yf3{bottom:615.820267pt;}
.y11f{bottom:617.152267pt;}
.ybd{bottom:618.484267pt;}
.y1bc{bottom:618.586267pt;}
.y4e{bottom:621.697600pt;}
.ya{bottom:623.944267pt;}
.y15e{bottom:627.804267pt;}
.y1ed{bottom:628.482933pt;}
.yf2{bottom:629.152267pt;}
.y1bb{bottom:629.916267pt;}
.y11e{bottom:630.484267pt;}
.ybc{bottom:631.818933pt;}
.y4d{bottom:635.029600pt;}
.y9{bottom:638.608267pt;}
.y15d{bottom:641.136267pt;}
.y1ba{bottom:641.246267pt;}
.yf1{bottom:642.484267pt;}
.y11d{bottom:643.817600pt;}
.ybb{bottom:645.150933pt;}
.y4c{bottom:648.365600pt;}
.y1b9{bottom:652.576267pt;}
.yf0{bottom:655.816267pt;}
.y11c{bottom:657.150933pt;}
.yba{bottom:658.490933pt;}
.y4b{bottom:661.697600pt;}
.y1b8{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y11b{bottom:670.482933pt;}
.yb9{bottom:671.822933pt;}
.y32{bottom:672.933333pt;}
.y4a{bottom:675.029600pt;}
.y1b7{bottom:675.236267pt;}
.yef{bottom:685.153600pt;}
.yb8{bottom:685.154933pt;}
.y1b6{bottom:686.566267pt;}
.y49{bottom:688.361600pt;}
.y31{bottom:691.600000pt;}
.y19c{bottom:692.138933pt;}
.y7{bottom:694.592267pt;}
.y1b5{bottom:697.896267pt;}
.yee{bottom:698.485600pt;}
.yb7{bottom:698.486933pt;}
.y48{bottom:701.694933pt;}
.y19b{bottom:705.470933pt;}
.y1b4{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.yed{bottom:711.817600pt;}
.yb6{bottom:711.818933pt;}
.y19a{bottom:718.802933pt;}
.y15c{bottom:720.154933pt;}
.y1b3{bottom:720.556267pt;}
.yb5{bottom:725.150933pt;}
.y47{bottom:727.829600pt;}
.y1b2{bottom:731.886267pt;}
.y15b{bottom:733.486933pt;}
.y6{bottom:734.597600pt;}
.yb4{bottom:738.484267pt;}
.yec{bottom:738.489600pt;}
.y46{bottom:741.161600pt;}
.y1b1{bottom:743.216267pt;}
.y199{bottom:745.633600pt;}
.y15a{bottom:746.818933pt;}
.yb3{bottom:751.818933pt;}
.yeb{bottom:751.821600pt;}
.y45{bottom:754.493600pt;}
.y1b0{bottom:754.546267pt;}
.y159{bottom:760.150933pt;}
.y198{bottom:761.140267pt;}
.yb2{bottom:765.150933pt;}
.yea{bottom:765.153600pt;}
.y1af{bottom:765.876267pt;}
.y196{bottom:766.136267pt;}
.y44{bottom:767.825600pt;}
.y197{bottom:771.136267pt;}
.y158{bottom:773.482933pt;}
.y5{bottom:774.602933pt;}
.y1ae{bottom:777.206267pt;}
.yb1{bottom:778.485600pt;}
.y43{bottom:781.157600pt;}
.y195{bottom:786.633600pt;}
.y1ad{bottom:788.536267pt;}
.yb0{bottom:791.817600pt;}
.y42{bottom:794.489600pt;}
.y1ac{bottom:799.866267pt;}
.y157{bottom:800.286933pt;}
.y194{bottom:802.136267pt;}
.ye9{bottom:805.149600pt;}
.yaf{bottom:805.152267pt;}
.y41{bottom:807.821600pt;}
.y1ab{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y156{bottom:815.789600pt;}
.yae{bottom:818.484267pt;}
.y40{bottom:821.153600pt;}
.y1aa{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y155{bottom:831.292267pt;}
.yad{bottom:831.816267pt;}
.y1a9{bottom:833.856267pt;}
.ye8{bottom:834.484267pt;}
.y3f{bottom:834.485600pt;}
.yac{bottom:845.149600pt;}
.y1a8{bottom:845.186267pt;}
.y154{bottom:846.794933pt;}
.y3e{bottom:847.817600pt;}
.ye7{bottom:847.828267pt;}
.y193{bottom:855.318933pt;}
.y1a7{bottom:856.516267pt;}
.y3d{bottom:861.153600pt;}
.ye6{bottom:861.160267pt;}
.y153{bottom:862.297600pt;}
.y1a6{bottom:867.846267pt;}
.y192{bottom:868.650933pt;}
.y3c{bottom:874.485600pt;}
.yab{bottom:874.492267pt;}
.y152{bottom:877.800267pt;}
.y1a5{bottom:879.176267pt;}
.y191{bottom:881.982933pt;}
.y3b{bottom:887.817600pt;}
.yaa{bottom:887.824267pt;}
.y1a4{bottom:890.506267pt;}
.y151{bottom:893.302933pt;}
.y3a{bottom:901.156267pt;}
.y1a3{bottom:901.836267pt;}
.y150{bottom:908.805600pt;}
.y1a2{bottom:913.166267pt;}
.y39{bottom:914.488267pt;}
.y14f{bottom:924.308267pt;}
.y1a1{bottom:924.496267pt;}
.y38{bottom:927.820267pt;}
.y1a0{bottom:935.826267pt;}
.y14e{bottom:939.810933pt;}
.y37{bottom:941.152267pt;}
.y19f{bottom:947.156267pt;}
.y36{bottom:954.484267pt;}
.y14d{bottom:955.313600pt;}
.y19e{bottom:958.486267pt;}
.y35{bottom:967.816267pt;}
.y19d{bottom:969.816267pt;}
.y14c{bottom:970.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hd{height:21.193555pt;}
.h1d{height:24.093696pt;}
.h1f{height:26.618667pt;}
.h23{height:26.629333pt;}
.h1e{height:26.656000pt;}
.h22{height:28.520000pt;}
.h21{height:28.560000pt;}
.h3{height:30.687500pt;}
.h19{height:31.872000pt;}
.h20{height:32.256000pt;}
.hf{height:32.605469pt;}
.h18{height:33.616896pt;}
.h1b{height:33.950208pt;}
.h9{height:34.224000pt;}
.h14{height:34.272000pt;}
.h7{height:34.523438pt;}
.he{height:36.585555pt;}
.h2{height:38.359375pt;}
.h8{height:38.426933pt;}
.h16{height:38.517600pt;}
.h17{height:38.528267pt;}
.h15{height:38.533600pt;}
.h11{height:38.538933pt;}
.hb{height:38.544267pt;}
.h12{height:38.549600pt;}
.ha{height:38.554933pt;}
.hc{height:38.560267pt;}
.h4{height:39.318359pt;}
.h13{height:42.195312pt;}
.h6{height:43.066927pt;}
.h1c{height:54.810624pt;}
.h10{height:69.046875pt;}
.h1a{height:72.328704pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w3{width:532.224000pt;}
.w2{width:532.608000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:72.027733pt;}
.x7{left:125.291333pt;}
.x1f{left:165.887733pt;}
.x1c{left:170.111733pt;}
.x1b{left:193.919733pt;}
.x4{left:207.516800pt;}
.x11{left:211.683467pt;}
.x5{left:223.507333pt;}
.xc{left:251.135733pt;}
.x16{left:253.055733pt;}
.x10{left:259.583733pt;}
.x19{left:261.119733pt;}
.x24{left:266.976533pt;}
.xa{left:274.943733pt;}
.x14{left:276.479733pt;}
.x21{left:297.837067pt;}
.x1e{left:337.773451pt;}
.x1a{left:358.509067pt;}
.x18{left:382.125067pt;}
.xf{left:383.853067pt;}
.xd{left:423.789067pt;}
.x17{left:425.517067pt;}
.x9{left:444.525067pt;}
.x13{left:446.253067pt;}
.x1d{left:458.349067pt;}
.xb{left:482.157067pt;}
.x15{left:483.885067pt;}
.xe{left:518.399733pt;}
.x3{left:519.632533pt;}
.x22{left:551.044000pt;}
.x23{left:571.715333pt;}
.x20{left:619.629067pt;}
.x12{left:725.336533pt;}
.x8{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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