
    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_9860ff7a4f879052adee0212.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_0a3aea02dee1b4afbe754f9a.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_0ad6e662663d7bba072bef33.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_97281bfc352cbc9a231fb875.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_5f18fabab7eb234689a31e20.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_1e9e27b3ec635965ad6ffd7b.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_f6c23007ff3bea59998b4e2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946289;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_e58d64dfe70dd66c983c7322.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_23f44526566d78f432e96846.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4bb924f442324b99a239d91c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946289;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_7c6b00a2c8daa6c34c80eeb7.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_0a3aea02dee1b4afbe754f9a.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_0ad6e662663d7bba072bef33.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e3183de3d2e319e2c5e09ed9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946289;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_b55c119923bc79b06ce6fdae.woff2')format("woff");}.fff{font-family:fff;line-height:0.477000;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_0282b99d75bb100d16ceb6a0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.800500;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_7c6b00a2c8daa6c34c80eeb7.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_0a3aea02dee1b4afbe754f9a.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_0ad6e662663d7bba072bef33.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_e3183de3d2e319e2c5e09ed9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.946289;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_b614e66693db965a9d1a84de.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_07ab4b47cf60027839c6df00.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_3d4f826fdb0c154cf759fa31.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.648000;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_0a3aea02dee1b4afbe754f9a.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_0ad6e662663d7bba072bef33.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_e3183de3d2e319e2c5e09ed9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.946289;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_0a3aea02dee1b4afbe754f9a.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_0ad6e662663d7bba072bef33.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_e3183de3d2e319e2c5e09ed9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.946289;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_53ee3d2ccdfd2c736d21e9fb.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_6c78a75e2b73caeab7c319aa.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_10fa3ebde9576528714ab9b3.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_c5e6ee3ecb6a3e54395089d9.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.946289;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:ff22;src:url('chunks/assets/font_a50c59577dfee8566a3f64fd.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_5ecf31f385bd043b06993690.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_8c3147ebf9a1b8661dd41874.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.112000;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:ff25;src:url('chunks/assets/font_dc6781845cb43f6fe8103f78.woff2')format("woff");}.ff25{font-family:ff25;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;}
.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);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v6{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.376000px;}
.v2{vertical-align:18.192000px;}
.v1{vertical-align:20.400600px;}
.lsab{letter-spacing:-1.260000px;}
.ls48{letter-spacing:-1.026000px;}
.ls64{letter-spacing:-0.972000px;}
.ls93{letter-spacing:-0.864000px;}
.ls2c{letter-spacing:-0.756000px;}
.lsaf{letter-spacing:-0.720000px;}
.ls8a{letter-spacing:-0.672000px;}
.ls4f{letter-spacing:-0.648000px;}
.ls77{letter-spacing:-0.630000px;}
.ls94{letter-spacing:-0.594000px;}
.ls4b{letter-spacing:-0.546000px;}
.ls4e{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.486000px;}
.ls9f{letter-spacing:-0.450000px;}
.ls65{letter-spacing:-0.432000px;}
.ls76{letter-spacing:-0.420000px;}
.lsaa{letter-spacing:-0.405000px;}
.ls4d{letter-spacing:-0.378000px;}
.ls67{letter-spacing:-0.324000px;}
.ls70{letter-spacing:-0.315900px;}
.ls9c{letter-spacing:-0.315000px;}
.ls28{letter-spacing:-0.300000px;}
.ls29{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.255000px;}
.ls8e{letter-spacing:-0.240000px;}
.lsa9{letter-spacing:-0.225000px;}
.ls16{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.210600px;}
.ls4a{letter-spacing:-0.210000px;}
.ls1c{letter-spacing:-0.204000px;}
.lsa0{letter-spacing:-0.180000px;}
.ls7b{letter-spacing:-0.175500px;}
.ls4c{letter-spacing:-0.168000px;}
.ls18{letter-spacing:-0.162000px;}
.lsa1{letter-spacing:-0.135000px;}
.ls78{letter-spacing:-0.126000px;}
.ls2f{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.105300px;}
.lsad{letter-spacing:-0.090000px;}
.ls66{letter-spacing:-0.070200px;}
.ls2e{letter-spacing:-0.060000px;}
.ls27{letter-spacing:-0.054000px;}
.lsa8{letter-spacing:-0.045000px;}
.ls14{letter-spacing:0.000000px;}
.ls84{letter-spacing:0.012600px;}
.ls3{letter-spacing:0.013800px;}
.ls86{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022800px;}
.ls8{letter-spacing:0.035100px;}
.lsa3{letter-spacing:0.045000px;}
.ls7d{letter-spacing:0.051600px;}
.lsf{letter-spacing:0.052650px;}
.ls7{letter-spacing:0.054000px;}
.ls96{letter-spacing:0.059400px;}
.ls95{letter-spacing:0.070200px;}
.ls8f{letter-spacing:0.081000px;}
.ls87{letter-spacing:0.082200px;}
.lsa4{letter-spacing:0.090000px;}
.ls80{letter-spacing:0.096600px;}
.ls30{letter-spacing:0.105300px;}
.ls1b{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.118800px;}
.ls8b{letter-spacing:0.126000px;}
.ls62{letter-spacing:0.129600px;}
.ls91{letter-spacing:0.135000px;}
.ls73{letter-spacing:0.140400px;}
.lsac{letter-spacing:0.146250px;}
.ls85{letter-spacing:0.154800px;}
.ls9{letter-spacing:0.162000px;}
.ls83{letter-spacing:0.166200px;}
.ls75{letter-spacing:0.175500px;}
.ls9e{letter-spacing:0.180000px;}
.ls89{letter-spacing:0.210000px;}
.ls63{letter-spacing:0.210600px;}
.ls10{letter-spacing:0.216000px;}
.ls98{letter-spacing:0.225000px;}
.ls4{letter-spacing:0.245700px;}
.ls23{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.280800px;}
.lsa6{letter-spacing:0.315000px;}
.lse{letter-spacing:0.315900px;}
.ls36{letter-spacing:0.318600px;}
.ls22{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.351000px;}
.ls7a{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.378000px;}
.ls72{letter-spacing:0.386100px;}
.ls97{letter-spacing:0.405000px;}
.lsa{letter-spacing:0.421200px;}
.ls6{letter-spacing:0.432000px;}
.ls92{letter-spacing:0.442800px;}
.ls5e{letter-spacing:0.448800px;}
.ls9b{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.456300px;}
.lsd{letter-spacing:0.486000px;}
.ls11{letter-spacing:0.487650px;}
.ls5{letter-spacing:0.492000px;}
.ls9a{letter-spacing:0.495000px;}
.ls35{letter-spacing:0.534600px;}
.lsc{letter-spacing:0.540000px;}
.ls71{letter-spacing:0.561600px;}
.ls26{letter-spacing:0.583200px;}
.ls9d{letter-spacing:0.585000px;}
.ls2b{letter-spacing:0.594000px;}
.lsa2{letter-spacing:0.630000px;}
.ls1a{letter-spacing:0.648000px;}
.ls50{letter-spacing:0.658800px;}
.ls61{letter-spacing:0.664200px;}
.ls60{letter-spacing:0.675000px;}
.ls24{letter-spacing:0.702000px;}
.ls33{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.734400px;}
.ls79{letter-spacing:0.745200px;}
.ls15{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.765000px;}
.ls49{letter-spacing:0.810000px;}
.ls21{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.900000px;}
.ls99{letter-spacing:0.909000px;}
.ls19{letter-spacing:0.918000px;}
.lsae{letter-spacing:0.945000px;}
.ls13{letter-spacing:0.960000px;}
.ls88{letter-spacing:0.972000px;}
.ls25{letter-spacing:0.988200px;}
.ls5f{letter-spacing:1.004400px;}
.ls5d{letter-spacing:1.021800px;}
.ls6c{letter-spacing:1.026000px;}
.ls6d{letter-spacing:1.080000px;}
.ls6a{letter-spacing:1.088100px;}
.ls52{letter-spacing:1.134000px;}
.ls6b{letter-spacing:1.188000px;}
.lsa5{letter-spacing:1.197000px;}
.ls20{letter-spacing:1.242000px;}
.ls1f{letter-spacing:1.260000px;}
.ls56{letter-spacing:1.296000px;}
.ls54{letter-spacing:1.404000px;}
.ls57{letter-spacing:1.458000px;}
.ls5b{letter-spacing:1.512000px;}
.ls5c{letter-spacing:1.549800px;}
.ls55{letter-spacing:1.566000px;}
.ls69{letter-spacing:1.620000px;}
.ls59{letter-spacing:1.668600px;}
.ls53{letter-spacing:1.674000px;}
.ls58{letter-spacing:1.728000px;}
.ls5a{letter-spacing:1.890000px;}
.ls6e{letter-spacing:2.214000px;}
.ls6f{letter-spacing:2.376000px;}
.ls0{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsa7{letter-spacing:4.620000px;}
.ls90{letter-spacing:6.120000px;}
.ls46{letter-spacing:14.742000px;}
.ls74{letter-spacing:32.466000px;}
.ls39{letter-spacing:32.886000px;}
.ls7f{letter-spacing:87.348300px;}
.ls7e{letter-spacing:87.348900px;}
.ls7c{letter-spacing:98.238000px;}
.ls8d{letter-spacing:100.055700px;}
.ls8c{letter-spacing:110.922000px;}
.ls81{letter-spacing:181.088700px;}
.ls82{letter-spacing:181.089300px;}
.ls45{letter-spacing:195.358800px;}
.ls43{letter-spacing:261.261000px;}
.ls42{letter-spacing:288.267000px;}
.ls44{letter-spacing:320.346600px;}
.ls3f{letter-spacing:451.437000px;}
.ls3c{letter-spacing:515.776800px;}
.ls3e{letter-spacing:680.668800px;}
.ls3b{letter-spacing:898.052400px;}
.ls38{letter-spacing:1035.140400px;}
.ls40{letter-spacing:1049.966400px;}
.ls3a{letter-spacing:1050.046200px;}
.ls3d{letter-spacing:1108.640400px;}
.ls41{letter-spacing:1182.602400px;}
.ls37{letter-spacing:1259.584200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.067500px;}
.ws7a{word-spacing:-13.596000px;}
.ws8{word-spacing:-13.176000px;}
.ws5{word-spacing:-12.582000px;}
.wsb7{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.360000px;}
.ws61{word-spacing:-12.312000px;}
.ws41{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.wsa5{word-spacing:-11.718000px;}
.ws2d{word-spacing:-11.610000px;}
.wsb3{word-spacing:-11.502000px;}
.wsa6{word-spacing:-11.394000px;}
.wsd2{word-spacing:-10.530000px;}
.wsbb{word-spacing:-10.485000px;}
.wsd0{word-spacing:-10.350000px;}
.wsd1{word-spacing:-10.305000px;}
.wsbc{word-spacing:-10.215000px;}
.wsd6{word-spacing:-10.170000px;}
.wsbd{word-spacing:-10.125000px;}
.ws36{word-spacing:-10.044000px;}
.ws3f{word-spacing:-9.990000px;}
.wscf{word-spacing:-9.855000px;}
.ws6f{word-spacing:-9.774000px;}
.ws58{word-spacing:-9.720000px;}
.ws48{word-spacing:-9.666000px;}
.wse7{word-spacing:-9.585000px;}
.ws6e{word-spacing:-9.396000px;}
.ws57{word-spacing:-9.342000px;}
.ws7b{word-spacing:-9.114000px;}
.ws5b{word-spacing:-9.055800px;}
.wsd4{word-spacing:-9.045000px;}
.ws7c{word-spacing:-8.946000px;}
.ws43{word-spacing:-8.904000px;}
.ws5d{word-spacing:-8.529300px;}
.ws7d{word-spacing:-8.484000px;}
.ws2c{word-spacing:-8.424000px;}
.ws9{word-spacing:-8.388900px;}
.ws5f{word-spacing:-8.353800px;}
.wsde{word-spacing:-8.325000px;}
.wsa{word-spacing:-8.318700px;}
.wsb{word-spacing:-8.283600px;}
.ws4{word-spacing:-8.248500px;}
.ws5e{word-spacing:-8.213400px;}
.wsba{word-spacing:-8.178300px;}
.ws79{word-spacing:-8.143200px;}
.ws60{word-spacing:-8.108100px;}
.ws2f{word-spacing:-8.073000px;}
.wsb8{word-spacing:-8.037900px;}
.wsc{word-spacing:-8.020350px;}
.ws6{word-spacing:-8.002800px;}
.ws7{word-spacing:-7.967700px;}
.ws59{word-spacing:-7.897500px;}
.ws2e{word-spacing:-7.862400px;}
.ws87{word-spacing:-7.792200px;}
.ws54{word-spacing:-7.770000px;}
.ws5a{word-spacing:-7.757100px;}
.ws5c{word-spacing:-7.651800px;}
.ws56{word-spacing:-7.266000px;}
.wsd3{word-spacing:-6.815250px;}
.wsd5{word-spacing:-6.786000px;}
.wsd{word-spacing:-6.630000px;}
.wsb4{word-spacing:-6.120000px;}
.wsd7{word-spacing:-4.620000px;}
.wse8{word-spacing:-4.590000px;}
.ws55{word-spacing:-4.284000px;}
.wsea{word-spacing:-3.960000px;}
.ws12{word-spacing:-3.600000px;}
.wsf{word-spacing:-3.276000px;}
.ws28{word-spacing:-3.009000px;}
.ws2a{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws11{word-spacing:-2.400000px;}
.ws66{word-spacing:-1.998000px;}
.ws35{word-spacing:-1.944000px;}
.ws34{word-spacing:-1.920000px;}
.ws78{word-spacing:-1.890000px;}
.wsb0{word-spacing:-1.860000px;}
.ws15{word-spacing:-1.836000px;}
.ws3c{word-spacing:-1.800000px;}
.wsbe{word-spacing:-1.782000px;}
.ws21{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.674000px;}
.wse3{word-spacing:-1.665000px;}
.ws29{word-spacing:-1.632000px;}
.wsaf{word-spacing:-1.620000px;}
.wsc3{word-spacing:-1.575000px;}
.ws71{word-spacing:-1.566000px;}
.ws27{word-spacing:-1.530000px;}
.ws67{word-spacing:-1.512000px;}
.wsb6{word-spacing:-1.458000px;}
.ws25{word-spacing:-1.404000px;}
.wse6{word-spacing:-1.395000px;}
.ws76{word-spacing:-1.350000px;}
.ws39{word-spacing:-1.296000px;}
.ws10{word-spacing:-1.260000px;}
.ws1d{word-spacing:-1.242000px;}
.wscd{word-spacing:-1.215000px;}
.ws3d{word-spacing:-1.188000px;}
.ws13{word-spacing:-1.134000px;}
.ws46{word-spacing:-1.080000px;}
.wsc2{word-spacing:-1.035000px;}
.ws20{word-spacing:-1.026000px;}
.ws4c{word-spacing:-0.972000px;}
.ws4f{word-spacing:-0.966000px;}
.ws4e{word-spacing:-0.924000px;}
.ws4b{word-spacing:-0.918000px;}
.ws42{word-spacing:-0.864000px;}
.wse1{word-spacing:-0.855000px;}
.ws4a{word-spacing:-0.840000px;}
.ws22{word-spacing:-0.810000px;}
.wsa0{word-spacing:-0.798000px;}
.wse2{word-spacing:-0.765000px;}
.ws1c{word-spacing:-0.756000px;}
.wsc5{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.702000px;}
.wsdc{word-spacing:-0.675000px;}
.ws23{word-spacing:-0.648000px;}
.wse0{word-spacing:-0.630000px;}
.ws1a{word-spacing:-0.594000px;}
.ws53{word-spacing:-0.588000px;}
.wsca{word-spacing:-0.585000px;}
.ws40{word-spacing:-0.540000px;}
.wscb{word-spacing:-0.495000px;}
.ws33{word-spacing:-0.486000px;}
.wsc4{word-spacing:-0.450000px;}
.ws3e{word-spacing:-0.432000px;}
.wsb9{word-spacing:-0.420000px;}
.wsbf{word-spacing:-0.405000px;}
.ws1b{word-spacing:-0.378000px;}
.ws89{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.324000px;}
.wse5{word-spacing:-0.315000px;}
.wsa4{word-spacing:-0.294000px;}
.ws16{word-spacing:-0.270000px;}
.wse4{word-spacing:-0.225000px;}
.ws45{word-spacing:-0.216000px;}
.wsdb{word-spacing:-0.180000px;}
.ws18{word-spacing:-0.162000px;}
.wsc1{word-spacing:-0.135000px;}
.wsa2{word-spacing:-0.126000px;}
.ws19{word-spacing:-0.108000px;}
.ws2b{word-spacing:-0.054000px;}
.wsda{word-spacing:-0.045000px;}
.ws8f{word-spacing:-0.042000px;}
.wse{word-spacing:0.000000px;}
.wsd9{word-spacing:0.045000px;}
.ws3b{word-spacing:0.054000px;}
.wsce{word-spacing:0.090000px;}
.ws1f{word-spacing:0.108000px;}
.wscc{word-spacing:0.135000px;}
.ws83{word-spacing:0.162000px;}
.wsc9{word-spacing:0.180000px;}
.ws88{word-spacing:0.216000px;}
.wsb2{word-spacing:0.270000px;}
.ws38{word-spacing:0.324000px;}
.wsc6{word-spacing:0.360000px;}
.ws44{word-spacing:0.378000px;}
.wsc7{word-spacing:0.405000px;}
.ws85{word-spacing:0.420000px;}
.ws8a{word-spacing:0.432000px;}
.ws1e{word-spacing:0.486000px;}
.ws49{word-spacing:0.540000px;}
.wsc8{word-spacing:0.585000px;}
.ws37{word-spacing:0.594000px;}
.wsd8{word-spacing:0.630000px;}
.ws17{word-spacing:0.648000px;}
.ws62{word-spacing:0.702000px;}
.ws14{word-spacing:0.756000px;}
.wsc0{word-spacing:0.765000px;}
.ws77{word-spacing:0.810000px;}
.wsdf{word-spacing:0.855000px;}
.wsae{word-spacing:0.864000px;}
.ws26{word-spacing:0.918000px;}
.wsdd{word-spacing:0.945000px;}
.ws32{word-spacing:0.972000px;}
.ws63{word-spacing:1.020000px;}
.ws4d{word-spacing:1.026000px;}
.ws84{word-spacing:1.080000px;}
.ws9f{word-spacing:1.134000px;}
.wsb1{word-spacing:1.242000px;}
.wsb5{word-spacing:1.404000px;}
.ws64{word-spacing:1.674000px;}
.wse9{word-spacing:1.728000px;}
.ws30{word-spacing:1.920000px;}
.ws31{word-spacing:1.944000px;}
.ws6c{word-spacing:2.052000px;}
.ws65{word-spacing:2.160000px;}
.ws6b{word-spacing:2.376000px;}
.ws70{word-spacing:2.646000px;}
.ws74{word-spacing:2.700000px;}
.ws68{word-spacing:2.754000px;}
.ws69{word-spacing:3.024000px;}
.ws72{word-spacing:3.078000px;}
.ws6d{word-spacing:3.510000px;}
.ws6a{word-spacing:3.564000px;}
.ws73{word-spacing:4.266000px;}
.ws75{word-spacing:4.698000px;}
.ws86{word-spacing:32.466000px;}
.wsa1{word-spacing:32.592000px;}
.ws50{word-spacing:32.886000px;}
.wsa3{word-spacing:32.970000px;}
.ws52{word-spacing:33.054000px;}
.ws51{word-spacing:33.432000px;}
.ws96{word-spacing:59.892000px;}
.ws93{word-spacing:64.680000px;}
.wsa9{word-spacing:72.618000px;}
.ws91{word-spacing:74.760000px;}
.ws95{word-spacing:77.112000px;}
.wsaa{word-spacing:78.960000px;}
.ws8d{word-spacing:87.192000px;}
.wsa7{word-spacing:89.796000px;}
.ws9c{word-spacing:97.272000px;}
.wsab{word-spacing:99.918000px;}
.wsa8{word-spacing:101.472000px;}
.ws9e{word-spacing:102.060000px;}
.wsac{word-spacing:107.016000px;}
.wsad{word-spacing:118.692000px;}
.ws99{word-spacing:137.802000px;}
.ws7f{word-spacing:162.708000px;}
.ws82{word-spacing:163.716000px;}
.ws80{word-spacing:165.228000px;}
.ws81{word-spacing:169.722000px;}
.ws7e{word-spacing:170.730000px;}
.ws8b{word-spacing:177.870000px;}
.ws92{word-spacing:195.090000px;}
.ws9b{word-spacing:240.702000px;}
.ws90{word-spacing:244.986000px;}
.ws9a{word-spacing:246.246000px;}
.ws98{word-spacing:345.744000px;}
.ws94{word-spacing:827.484000px;}
.ws9d{word-spacing:838.320000px;}
.ws8e{word-spacing:849.996000px;}
.ws8c{word-spacing:855.540000px;}
.ws97{word-spacing:867.216000px;}
._3d{margin-left:-33.335400px;}
._1b{margin-left:-18.841200px;}
._61{margin-left:-14.820000px;}
._1a{margin-left:-11.827800px;}
._1{margin-left:-9.859200px;}
._6{margin-left:-8.463000px;}
._a{margin-left:-6.702000px;}
._2{margin-left:-5.460000px;}
._3{margin-left:-3.534000px;}
._0{margin-left:-1.776000px;}
._4{width:1.100400px;}
._5{width:2.189400px;}
._14{width:3.390000px;}
._b{width:4.482000px;}
._2a{width:6.032400px;}
._1e{width:7.304400px;}
._9{width:8.558400px;}
._53{width:9.731400px;}
._34{width:15.282000px;}
._13{width:33.432000px;}
._19{width:41.424600px;}
._1c{width:42.897600px;}
._7{width:45.844200px;}
._c{width:48.037200px;}
._8{width:50.062800px;}
._3b{width:52.206000px;}
._38{width:53.928000px;}
._3c{width:56.700000px;}
._3a{width:59.823600px;}
._44{width:61.686000px;}
._5f{width:62.886000px;}
._5e{width:66.921600px;}
._3f{width:69.903600px;}
._51{width:73.584000px;}
._57{width:77.001600px;}
._41{width:79.506000px;}
._40{width:89.586000px;}
._58{width:92.232000px;}
._46{width:93.828000px;}
._37{width:97.968000px;}
._5d{width:100.590000px;}
._5a{width:102.522000px;}
._43{width:103.782000px;}
._55{width:105.024000px;}
._60{width:110.418000px;}
._52{width:118.440000px;}
._45{width:126.570000px;}
._5b{width:133.626000px;}
._4c{width:153.468000px;}
._48{width:158.256000px;}
._20{width:181.776000px;}
._24{width:192.912000px;}
._47{width:199.134000px;}
._1d{width:201.849600px;}
._35{width:213.337200px;}
._49{width:263.184000px;}
._10{width:272.598000px;}
._59{width:323.274000px;}
._f{width:372.558000px;}
._1f{width:399.759600px;}
._2f{width:405.516000px;}
._4b{width:437.808000px;}
._25{width:441.156000px;}
._3e{width:460.895400px;}
._42{width:462.785400px;}
._54{width:531.420000px;}
._12{width:534.348000px;}
._28{width:578.352000px;}
._21{width:581.922000px;}
._23{width:598.512000px;}
._11{width:613.656000px;}
._27{width:622.515600px;}
._36{width:637.344000px;}
._30{width:647.715600px;}
._50{width:653.645400px;}
._26{width:673.776000px;}
._22{width:693.462000px;}
._5c{width:705.599400px;}
._56{width:713.508000px;}
._17{width:813.558600px;}
._39{width:819.432000px;}
._4a{width:850.134000px;}
._2b{width:864.351600px;}
._33{width:870.504000px;}
._29{width:877.299600px;}
._31{width:883.860000px;}
._32{width:914.667600px;}
._e{width:1067.163600px;}
._2c{width:1099.395600px;}
._2e{width:1135.482000px;}
._d{width:1138.800000px;}
._15{width:1139.814000px;}
._2d{width:1179.645600px;}
._16{width:1323.843600px;}
._18{width:1419.159600px;}
._4f{width:1429.104000px;}
._4d{width:1449.873600px;}
._4e{width:1593.606000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fse{font-size:29.250000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.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;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y31{bottom:68.313900px;}
.y231{bottom:68.551500px;}
.y78{bottom:68.557500px;}
.y192{bottom:68.557800px;}
.y1f1{bottom:68.797800px;}
.yf4{bottom:70.728300px;}
.y2bf{bottom:71.170800px;}
.y153{bottom:73.309800px;}
.y26e{bottom:75.610800px;}
.y1c3{bottom:79.318800px;}
.y162{bottom:83.244300px;}
.y30{bottom:83.307900px;}
.y230{bottom:83.551500px;}
.y77{bottom:83.556000px;}
.y191{bottom:83.556300px;}
.y1f0{bottom:83.796300px;}
.y2be{bottom:83.917050px;}
.yf3{bottom:85.726800px;}
.y152{bottom:88.308300px;}
.y26d{bottom:88.357050px;}
.y111{bottom:91.294800px;}
.y93{bottom:92.068800px;}
.y1c2{bottom:94.317300px;}
.y2bd{bottom:96.663300px;}
.y161{bottom:98.242800px;}
.y76{bottom:98.554500px;}
.y190{bottom:98.554800px;}
.y1ef{bottom:98.794800px;}
.yf2{bottom:100.725300px;}
.y26c{bottom:101.103300px;}
.y2f{bottom:102.636900px;}
.y151{bottom:103.306800px;}
.y110{bottom:106.293300px;}
.y92{bottom:107.067300px;}
.y1c1{bottom:109.315800px;}
.y2bc{bottom:109.409550px;}
.y160{bottom:113.241300px;}
.y75{bottom:113.553000px;}
.y18f{bottom:113.553300px;}
.y1ee{bottom:113.794800px;}
.y26b{bottom:113.849550px;}
.yf1{bottom:115.723800px;}
.y2e{bottom:117.636900px;}
.y150{bottom:118.305300px;}
.y10f{bottom:121.293300px;}
.y91{bottom:122.065800px;}
.y2bb{bottom:122.155800px;}
.y1c0{bottom:124.314300px;}
.y26a{bottom:126.595800px;}
.y15f{bottom:128.239800px;}
.y74{bottom:128.551500px;}
.y18e{bottom:128.551800px;}
.y1ed{bottom:128.805300px;}
.yf0{bottom:130.722300px;}
.y14f{bottom:133.303800px;}
.y2ba{bottom:134.902050px;}
.y90{bottom:137.064300px;}
.y1bf{bottom:139.312800px;}
.y269{bottom:139.342050px;}
.y15e{bottom:143.238300px;}
.y18d{bottom:143.550300px;}
.y73{bottom:143.566500px;}
.y22f{bottom:143.571000px;}
.y1ec{bottom:143.803800px;}
.yef{bottom:145.720800px;}
.y2b9{bottom:147.648300px;}
.y14e{bottom:148.302300px;}
.y8f{bottom:152.062800px;}
.y268{bottom:152.088300px;}
.y10e{bottom:154.302300px;}
.y1be{bottom:154.311300px;}
.y2d{bottom:156.690300px;}
.y15d{bottom:158.236800px;}
.y18c{bottom:158.548800px;}
.y72{bottom:158.565000px;}
.y22e{bottom:158.569500px;}
.y1eb{bottom:158.802300px;}
.y2b8{bottom:160.394550px;}
.yee{bottom:160.719300px;}
.y14d{bottom:163.300800px;}
.y267{bottom:164.834550px;}
.y8e{bottom:167.061300px;}
.y10d{bottom:169.300800px;}
.y1bd{bottom:169.309800px;}
.y2c{bottom:171.688800px;}
.y2b7{bottom:173.140800px;}
.y15c{bottom:173.235300px;}
.y18b{bottom:173.547300px;}
.y71{bottom:173.563500px;}
.y22d{bottom:173.568000px;}
.y1ea{bottom:173.800800px;}
.yed{bottom:175.722300px;}
.y266{bottom:177.580800px;}
.y14c{bottom:178.299300px;}
.y8d{bottom:182.059800px;}
.y10c{bottom:184.299300px;}
.y1bc{bottom:184.308300px;}
.y2b6{bottom:185.887050px;}
.y2b{bottom:186.687300px;}
.y15b{bottom:188.233800px;}
.y18a{bottom:188.545800px;}
.y70{bottom:188.562000px;}
.y22c{bottom:188.566500px;}
.y1e9{bottom:188.799300px;}
.y265{bottom:190.327050px;}
.yec{bottom:190.720800px;}
.y14b{bottom:193.297800px;}
.y8c{bottom:197.058300px;}
.y2b5{bottom:198.633300px;}
.y10b{bottom:199.297800px;}
.y1bb{bottom:199.306800px;}
.y2a{bottom:201.685800px;}
.y264{bottom:203.073300px;}
.y15a{bottom:203.232300px;}
.y6f{bottom:203.560500px;}
.y22b{bottom:203.565000px;}
.y1e8{bottom:203.797800px;}
.yeb{bottom:205.719300px;}
.y14a{bottom:208.296300px;}
.y2b4{bottom:211.379550px;}
.y8b{bottom:212.056800px;}
.y10a{bottom:214.296300px;}
.y1ba{bottom:214.305300px;}
.y263{bottom:215.819550px;}
.y29{bottom:216.688800px;}
.y159{bottom:218.230800px;}
.y6e{bottom:218.559000px;}
.y22a{bottom:218.563500px;}
.y1e7{bottom:218.796300px;}
.yea{bottom:220.722300px;}
.y149{bottom:223.294800px;}
.y2b3{bottom:224.125800px;}
.y8a{bottom:227.055300px;}
.y262{bottom:228.565800px;}
.y109{bottom:229.294800px;}
.y1b9{bottom:229.303800px;}
.y28{bottom:231.687300px;}
.y6d{bottom:233.557500px;}
.y229{bottom:233.562000px;}
.y1e6{bottom:233.794800px;}
.ye9{bottom:235.720800px;}
.y2b2{bottom:236.872050px;}
.y148{bottom:238.293300px;}
.y261{bottom:241.312050px;}
.y89{bottom:242.053800px;}
.y108{bottom:244.294800px;}
.y1b8{bottom:244.302300px;}
.y27{bottom:246.685800px;}
.y6c{bottom:248.556000px;}
.y228{bottom:248.560500px;}
.y1e5{bottom:248.796300px;}
.y2b1{bottom:249.618300px;}
.ye8{bottom:250.719300px;}
.y260{bottom:254.058300px;}
.y88{bottom:257.052300px;}
.y107{bottom:259.299300px;}
.y1b7{bottom:259.300800px;}
.y26{bottom:261.685800px;}
.y2b0{bottom:262.364550px;}
.y6b{bottom:263.554500px;}
.y227{bottom:263.559000px;}
.y1e4{bottom:263.794800px;}
.ye7{bottom:265.720800px;}
.y25f{bottom:266.804550px;}
.y189{bottom:267.169800px;}
.y147{bottom:271.327800px;}
.y87{bottom:272.050800px;}
.y106{bottom:274.297800px;}
.y1b6{bottom:274.299300px;}
.y2af{bottom:275.110800px;}
.y25{bottom:276.685800px;}
.y6a{bottom:278.553000px;}
.y226{bottom:278.557500px;}
.y1e3{bottom:278.797800px;}
.y25e{bottom:279.550800px;}
.ye6{bottom:280.719300px;}
.y188{bottom:282.171300px;}
.y146{bottom:286.326300px;}
.y19b{bottom:286.750950px;}
.y86{bottom:287.049300px;}
.y2ae{bottom:287.857050px;}
.y105{bottom:289.296300px;}
.y1b5{bottom:289.297800px;}
.y24{bottom:291.687300px;}
.y25d{bottom:292.297050px;}
.y69{bottom:293.551500px;}
.y225{bottom:293.556000px;}
.y1e2{bottom:293.796300px;}
.ye5{bottom:295.720800px;}
.y187{bottom:297.169800px;}
.y2ad{bottom:300.603300px;}
.y145{bottom:301.324800px;}
.y19a{bottom:301.749450px;}
.y85{bottom:302.047800px;}
.y104{bottom:304.294800px;}
.y1b4{bottom:304.296300px;}
.y25c{bottom:305.043300px;}
.y23{bottom:306.685800px;}
.y68{bottom:308.554500px;}
.y1e1{bottom:308.794800px;}
.ye4{bottom:310.719300px;}
.y186{bottom:312.168300px;}
.y2ac{bottom:313.349550px;}
.y144{bottom:316.323300px;}
.y199{bottom:316.747950px;}
.y84{bottom:317.046300px;}
.y25b{bottom:317.793300px;}
.y1b3{bottom:319.294800px;}
.y103{bottom:319.302300px;}
.y22{bottom:321.685800px;}
.y67{bottom:323.553000px;}
.y1e0{bottom:323.793300px;}
.ye3{bottom:325.720800px;}
.y2ab{bottom:326.095800px;}
.y143{bottom:331.321800px;}
.y198{bottom:331.746450px;}
.y83{bottom:332.044800px;}
.y1b2{bottom:334.293300px;}
.y102{bottom:334.300800px;}
.y21{bottom:336.685800px;}
.y66{bottom:338.551500px;}
.y2aa{bottom:338.842050px;}
.ye2{bottom:340.719300px;}
.y185{bottom:342.346800px;}
.y142{bottom:346.320300px;}
.y197{bottom:346.744950px;}
.y82{bottom:347.043300px;}
.y1b1{bottom:349.293300px;}
.y101{bottom:349.299300px;}
.y25a{bottom:350.824800px;}
.y2a9{bottom:351.588300px;}
.y20{bottom:351.688800px;}
.y224{bottom:353.551500px;}
.y65{bottom:353.556000px;}
.ye1{bottom:355.717800px;}
.y1df{bottom:356.805300px;}
.y184{bottom:359.787300px;}
.y141{bottom:361.318800px;}
.y196{bottom:361.743450px;}
.y81{bottom:362.043300px;}
.y100{bottom:364.297800px;}
.y2a8{bottom:364.334550px;}
.y259{bottom:365.823300px;}
.y1f{bottom:366.687300px;}
.y223{bottom:368.553000px;}
.y64{bottom:368.554500px;}
.y1de{bottom:371.803800px;}
.y140{bottom:376.317300px;}
.y195{bottom:376.741950px;}
.y2a7{bottom:377.080800px;}
.y183{bottom:377.227800px;}
.yff{bottom:379.296300px;}
.y258{bottom:380.821800px;}
.y1e{bottom:381.685800px;}
.y1b0{bottom:382.327800px;}
.y222{bottom:383.551500px;}
.y63{bottom:383.553000px;}
.ye0{bottom:384.972300px;}
.y1dd{bottom:386.802300px;}
.y2a6{bottom:389.827050px;}
.y13f{bottom:391.315800px;}
.y194{bottom:391.740450px;}
.yfe{bottom:394.294800px;}
.y182{bottom:394.632300px;}
.y80{bottom:395.053800px;}
.y257{bottom:395.820300px;}
.y1d{bottom:396.685800px;}
.y1af{bottom:397.326300px;}
.y221{bottom:398.550000px;}
.y62{bottom:398.551500px;}
.ydf{bottom:399.970800px;}
.y1dc{bottom:401.800800px;}
.y2a5{bottom:402.573300px;}
.y13e{bottom:406.314300px;}
.y193{bottom:406.738950px;}
.yfd{bottom:409.297800px;}
.y7f{bottom:410.052300px;}
.y256{bottom:410.818800px;}
.y1c{bottom:411.688800px;}
.y181{bottom:412.072800px;}
.y1ae{bottom:412.324800px;}
.y61{bottom:413.553000px;}
.yde{bottom:414.969300px;}
.y2a4{bottom:415.319550px;}
.y1db{bottom:416.799300px;}
.y13d{bottom:421.312800px;}
.yfc{bottom:424.296300px;}
.y7e{bottom:425.050800px;}
.y255{bottom:425.817300px;}
.y1b{bottom:426.687300px;}
.y1ad{bottom:427.323300px;}
.y2a3{bottom:428.065800px;}
.y60{bottom:428.551500px;}
.y220{bottom:428.797800px;}
.y180{bottom:429.513300px;}
.ydd{bottom:429.969300px;}
.y1da{bottom:431.797800px;}
.y13c{bottom:436.311300px;}
.yfb{bottom:439.294800px;}
.y7d{bottom:440.049300px;}
.y2e6{bottom:440.799300px;}
.y2a2{bottom:440.812050px;}
.y254{bottom:440.815800px;}
.y1a{bottom:441.685800px;}
.y1ac{bottom:442.321800px;}
.y5f{bottom:443.550000px;}
.y21f{bottom:443.796300px;}
.ydc{bottom:444.969300px;}
.y1d9{bottom:446.796300px;}
.y17f{bottom:446.953800px;}
.y13b{bottom:451.309800px;}
.y2a1{bottom:453.558300px;}
.yfa{bottom:454.296300px;}
.y7c{bottom:455.047800px;}
.y2e5{bottom:455.797800px;}
.y253{bottom:455.814300px;}
.y19{bottom:456.685800px;}
.y1ab{bottom:457.320300px;}
.y21e{bottom:458.794800px;}
.ydb{bottom:459.976800px;}
.y1d8{bottom:461.794800px;}
.y17e{bottom:464.394300px;}
.y2a0{bottom:466.304550px;}
.y13a{bottom:466.308300px;}
.yf9{bottom:469.294800px;}
.y7b{bottom:470.046300px;}
.y2e4{bottom:470.796300px;}
.y252{bottom:470.812800px;}
.y18{bottom:471.726300px;}
.y1aa{bottom:472.318800px;}
.y5e{bottom:473.646150px;}
.y21d{bottom:473.805300px;}
.yda{bottom:474.975300px;}
.y1d7{bottom:476.793300px;}
.y29f{bottom:479.050800px;}
.y139{bottom:481.306800px;}
.y17d{bottom:481.834800px;}
.yf8{bottom:484.297800px;}
.y7a{bottom:485.044800px;}
.y2e3{bottom:485.794800px;}
.y251{bottom:485.811300px;}
.y17{bottom:486.724800px;}
.y1a9{bottom:487.317300px;}
.y5d{bottom:488.644650px;}
.y21c{bottom:488.803800px;}
.yd9{bottom:489.973800px;}
.y1d6{bottom:491.793300px;}
.y29e{bottom:491.797050px;}
.y138{bottom:496.305300px;}
.y17c{bottom:499.275300px;}
.yf7{bottom:499.296300px;}
.y79{bottom:500.043300px;}
.y2e2{bottom:500.793300px;}
.y250{bottom:500.809800px;}
.y16{bottom:501.723300px;}
.y1a8{bottom:502.315800px;}
.y5c{bottom:503.643150px;}
.y21b{bottom:503.802300px;}
.y29d{bottom:504.577050px;}
.yd8{bottom:504.972300px;}
.y137{bottom:511.303800px;}
.yf6{bottom:514.294800px;}
.y24f{bottom:515.808300px;}
.y17b{bottom:516.715800px;}
.y1a7{bottom:517.314300px;}
.y29c{bottom:517.323300px;}
.y5b{bottom:518.641650px;}
.y21a{bottom:518.800800px;}
.yd7{bottom:519.970800px;}
.y2e1{bottom:522.547800px;}
.y1d5{bottom:524.799300px;}
.y136{bottom:526.302300px;}
.yf5{bottom:529.293300px;}
.y29b{bottom:530.069550px;}
.y24e{bottom:530.806800px;}
.y1a6{bottom:532.312800px;}
.y5a{bottom:533.640150px;}
.y219{bottom:533.799300px;}
.y17a{bottom:534.156300px;}
.yd6{bottom:534.969300px;}
.y2e0{bottom:537.546300px;}
.y1d4{bottom:539.797800px;}
.y135{bottom:541.300800px;}
.y29a{bottom:542.815800px;}
.y24d{bottom:545.805300px;}
.y1a5{bottom:547.311300px;}
.y59{bottom:548.638650px;}
.y218{bottom:548.797800px;}
.y15{bottom:548.973300px;}
.yd5{bottom:549.969300px;}
.y179{bottom:551.596800px;}
.yb3{bottom:553.489800px;}
.y1d3{bottom:554.796300px;}
.y299{bottom:555.562050px;}
.y134{bottom:556.299300px;}
.y2df{bottom:559.294800px;}
.y24c{bottom:560.803800px;}
.y1a4{bottom:562.309800px;}
.y58{bottom:563.637150px;}
.y217{bottom:563.796300px;}
.yd4{bottom:564.970800px;}
.y14{bottom:565.470300px;}
.y298{bottom:568.308300px;}
.yb2{bottom:568.488300px;}
.y178{bottom:569.037300px;}
.y1d2{bottom:569.794800px;}
.y133{bottom:571.297800px;}
.y24b{bottom:575.802300px;}
.y57{bottom:578.635650px;}
.y216{bottom:578.794800px;}
.yd3{bottom:579.969300px;}
.y2de{bottom:581.043300px;}
.y297{bottom:581.054550px;}
.y13{bottom:581.967300px;}
.yb1{bottom:583.486800px;}
.y1d1{bottom:584.793300px;}
.y12f{bottom:584.796300px;}
.y132{bottom:586.296300px;}
.y177{bottom:586.477800px;}
.y24a{bottom:590.800800px;}
.y56{bottom:593.634150px;}
.y215{bottom:593.794800px;}
.y296{bottom:593.800800px;}
.yd2{bottom:594.976800px;}
.y2dd{bottom:596.043300px;}
.y12{bottom:598.464300px;}
.yb0{bottom:598.485300px;}
.y1a3{bottom:598.678800px;}
.y12e{bottom:599.794800px;}
.y131{bottom:601.294800px;}
.y176{bottom:603.912300px;}
.y249{bottom:605.799300px;}
.y295{bottom:606.547050px;}
.y55{bottom:608.632650px;}
.y214{bottom:608.794800px;}
.yd1{bottom:609.975300px;}
.yaf{bottom:613.483800px;}
.y1a2{bottom:613.677300px;}
.y12d{bottom:614.793300px;}
.y11{bottom:614.961300px;}
.y130{bottom:616.293300px;}
.y294{bottom:619.300800px;}
.y248{bottom:620.797800px;}
.y175{bottom:621.352800px;}
.y2dc{bottom:623.046300px;}
.y54{bottom:623.655000px;}
.y213{bottom:623.796300px;}
.yd0{bottom:624.973800px;}
.y2ee{bottom:628.440300px;}
.yae{bottom:628.482300px;}
.y1a1{bottom:628.675800px;}
.y10{bottom:631.458300px;}
.y293{bottom:632.047050px;}
.y247{bottom:635.796300px;}
.y1f8{bottom:636.787950px;}
.y2db{bottom:638.044800px;}
.y53{bottom:638.653500px;}
.y174{bottom:638.760300px;}
.y212{bottom:638.794800px;}
.ycf{bottom:639.972300px;}
.y2ed{bottom:643.438800px;}
.yad{bottom:643.480800px;}
.y1a0{bottom:643.674300px;}
.y292{bottom:644.830800px;}
.y12c{bottom:644.908800px;}
.yf{bottom:647.955300px;}
.y246{bottom:650.794800px;}
.y1f7{bottom:651.786450px;}
.y2da{bottom:653.043300px;}
.y52{bottom:653.652000px;}
.y211{bottom:653.820300px;}
.yce{bottom:654.970800px;}
.y173{bottom:656.200800px;}
.y291{bottom:657.577050px;}
.y2ec{bottom:658.437300px;}
.y19f{bottom:658.672800px;}
.y12b{bottom:662.349300px;}
.ye{bottom:664.452300px;}
.y245{bottom:665.793300px;}
.y1f6{bottom:666.784950px;}
.y2d9{bottom:668.043300px;}
.y51{bottom:668.650500px;}
.y210{bottom:668.818800px;}
.ycd{bottom:669.969300px;}
.y290{bottom:670.323300px;}
.y158{bottom:670.921950px;}
.y2eb{bottom:673.435800px;}
.yac{bottom:673.596300px;}
.y172{bottom:673.641300px;}
.y19e{bottom:673.671300px;}
.y12a{bottom:679.789800px;}
.y244{bottom:680.793300px;}
.yd{bottom:680.949300px;}
.y1f5{bottom:681.783450px;}
.y28f{bottom:683.069550px;}
.y50{bottom:683.649000px;}
.y20f{bottom:683.817300px;}
.ycc{bottom:684.979650px;}
.y157{bottom:685.920450px;}
.y2ea{bottom:688.434300px;}
.y19d{bottom:688.669800px;}
.yab{bottom:691.036800px;}
.y171{bottom:691.081800px;}
.y2d8{bottom:695.058300px;}
.y28e{bottom:695.815800px;}
.y1f4{bottom:696.781950px;}
.y129{bottom:697.230300px;}
.yc{bottom:697.446300px;}
.y4f{bottom:698.647500px;}
.y20e{bottom:698.815800px;}
.ycb{bottom:699.978150px;}
.y156{bottom:700.921950px;}
.y19c{bottom:703.668300px;}
.yaa{bottom:708.477300px;}
.y170{bottom:708.522300px;}
.y28d{bottom:708.562050px;}
.y2d7{bottom:710.056800px;}
.y1f3{bottom:711.780450px;}
.y4e{bottom:713.646000px;}
.y243{bottom:713.797800px;}
.y20d{bottom:713.814300px;}
.yb{bottom:713.943300px;}
.y128{bottom:714.670800px;}
.yca{bottom:714.976650px;}
.y155{bottom:715.920450px;}
.y2e9{bottom:719.182800px;}
.y28c{bottom:721.308300px;}
.y2d6{bottom:725.055300px;}
.ya9{bottom:725.917800px;}
.y16f{bottom:725.962800px;}
.y1f2{bottom:726.778950px;}
.y4d{bottom:728.644500px;}
.y242{bottom:728.796300px;}
.y20c{bottom:728.812800px;}
.yc9{bottom:729.975150px;}
.ya{bottom:730.440300px;}
.y154{bottom:730.918950px;}
.y127{bottom:732.111300px;}
.y28b{bottom:734.054550px;}
.y2e8{bottom:734.181300px;}
.y2d5{bottom:740.053800px;}
.ya8{bottom:743.358300px;}
.y16e{bottom:743.403300px;}
.y4c{bottom:743.643000px;}
.y241{bottom:743.794800px;}
.y20b{bottom:743.811300px;}
.yc8{bottom:744.973650px;}
.y28a{bottom:746.800800px;}
.y9{bottom:746.937300px;}
.y126{bottom:749.551800px;}
.y1d0{bottom:752.983800px;}
.y2d4{bottom:755.052300px;}
.y34{bottom:757.050000px;}
.y4b{bottom:758.641500px;}
.y240{bottom:758.799300px;}
.y20a{bottom:758.809800px;}
.y289{bottom:759.547050px;}
.yc7{bottom:759.972150px;}
.ya7{bottom:760.798800px;}
.y16d{bottom:760.843800px;}
.y8{bottom:763.434300px;}
.y2e7{bottom:764.934300px;}
.y125{bottom:766.992300px;}
.y1cf{bottom:767.982300px;}
.y2d3{bottom:770.050800px;}
.y288{bottom:772.387050px;}
.y4a{bottom:773.640000px;}
.y23f{bottom:773.797800px;}
.y209{bottom:773.808300px;}
.yc6{bottom:774.970650px;}
.y33{bottom:778.050000px;}
.ya6{bottom:778.239300px;}
.y16c{bottom:778.284300px;}
.y1ce{bottom:782.980800px;}
.y124{bottom:784.432800px;}
.y2d2{bottom:785.049300px;}
.y287{bottom:785.133300px;}
.y49{bottom:788.638500px;}
.y23e{bottom:788.796300px;}
.y208{bottom:788.806800px;}
.yc5{bottom:789.969150px;}
.y7{bottom:793.434300px;}
.ya5{bottom:795.679800px;}
.y16b{bottom:795.724800px;}
.y286{bottom:797.879550px;}
.y32{bottom:799.050000px;}
.y2d1{bottom:800.047800px;}
.y123{bottom:801.873300px;}
.y48{bottom:803.637000px;}
.y23d{bottom:803.794800px;}
.y207{bottom:803.805300px;}
.yc4{bottom:804.970650px;}
.y285{bottom:810.625800px;}
.ya4{bottom:813.120300px;}
.y1cd{bottom:813.159300px;}
.y16a{bottom:813.165300px;}
.y2d0{bottom:815.046300px;}
.y47{bottom:818.635500px;}
.y23c{bottom:818.796300px;}
.y206{bottom:818.803800px;}
.y122{bottom:819.313800px;}
.yc3{bottom:819.969150px;}
.y284{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y2cf{bottom:830.044800px;}
.ya3{bottom:830.560800px;}
.y169{bottom:830.584800px;}
.y1cc{bottom:830.599800px;}
.y46{bottom:833.634000px;}
.y23b{bottom:833.794800px;}
.y205{bottom:833.802300px;}
.yc2{bottom:834.973650px;}
.y283{bottom:836.118300px;}
.y121{bottom:836.754300px;}
.y2ce{bottom:845.043300px;}
.ya2{bottom:848.001300px;}
.y168{bottom:848.025300px;}
.y1cb{bottom:848.040300px;}
.y45{bottom:848.632500px;}
.y204{bottom:848.800800px;}
.y282{bottom:848.864550px;}
.yc1{bottom:849.972150px;}
.y120{bottom:854.194800px;}
.y2cd{bottom:860.043300px;}
.y281{bottom:861.610800px;}
.y44{bottom:863.632500px;}
.y203{bottom:863.799300px;}
.yc0{bottom:864.970650px;}
.ya1{bottom:865.441800px;}
.y1ca{bottom:865.459800px;}
.y167{bottom:865.465800px;}
.y5{bottom:871.428300px;}
.y11f{bottom:871.635300px;}
.y280{bottom:874.357050px;}
.y43{bottom:878.632500px;}
.y202{bottom:878.797800px;}
.ybf{bottom:879.969150px;}
.ya0{bottom:882.882300px;}
.y1c9{bottom:882.900300px;}
.y166{bottom:882.906300px;}
.y2cc{bottom:887.092050px;}
.y27f{bottom:887.103300px;}
.y11e{bottom:889.075800px;}
.y42{bottom:893.631000px;}
.y201{bottom:893.796300px;}
.ybe{bottom:894.972150px;}
.y2cb{bottom:899.838300px;}
.y27e{bottom:899.849550px;}
.y9f{bottom:900.322800px;}
.y1c8{bottom:900.340800px;}
.y165{bottom:900.346800px;}
.y11d{bottom:906.516300px;}
.y200{bottom:908.794800px;}
.ybd{bottom:909.970650px;}
.y2ca{bottom:912.584550px;}
.y27d{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y9e{bottom:917.763300px;}
.y1c7{bottom:917.781300px;}
.y164{bottom:917.787300px;}
.y41{bottom:923.718150px;}
.y1ff{bottom:923.794800px;}
.y23a{bottom:923.796300px;}
.y11c{bottom:923.956800px;}
.ybc{bottom:924.969150px;}
.y2c9{bottom:925.330800px;}
.y27c{bottom:925.342050px;}
.y35{bottom:926.409600px;}
.y9d{bottom:935.203800px;}
.y1c6{bottom:935.221800px;}
.y163{bottom:935.227800px;}
.y2c8{bottom:938.077050px;}
.y27b{bottom:938.088300px;}
.y40{bottom:938.716650px;}
.y239{bottom:938.794800px;}
.y1fe{bottom:938.808300px;}
.ybb{bottom:939.967650px;}
.y11b{bottom:941.397300px;}
.y2c7{bottom:950.823300px;}
.y27a{bottom:950.834550px;}
.y9c{bottom:952.644300px;}
.y1c5{bottom:952.662300px;}
.y3f{bottom:953.715150px;}
.y238{bottom:953.802300px;}
.y1fd{bottom:953.806800px;}
.y11a{bottom:958.837800px;}
.y2c6{bottom:963.569550px;}
.y279{bottom:963.580800px;}
.y3e{bottom:968.713650px;}
.y237{bottom:968.800800px;}
.yba{bottom:968.803800px;}
.y1fc{bottom:968.805300px;}
.y9b{bottom:970.084800px;}
.y1c4{bottom:970.102800px;}
.y119{bottom:976.278300px;}
.y2c5{bottom:976.315800px;}
.y278{bottom:976.327050px;}
.y3d{bottom:983.712150px;}
.y236{bottom:983.799300px;}
.yb9{bottom:983.802300px;}
.y1fb{bottom:983.803800px;}
.y9a{bottom:987.525300px;}
.y2c4{bottom:989.062050px;}
.y277{bottom:989.073300px;}
.y118{bottom:993.718800px;}
.y3c{bottom:998.712150px;}
.y235{bottom:998.797800px;}
.yb8{bottom:998.800800px;}
.y1fa{bottom:998.802300px;}
.y2c3{bottom:1001.808300px;}
.y276{bottom:1001.819550px;}
.y99{bottom:1004.965800px;}
.y117{bottom:1011.159300px;}
.y234{bottom:1013.796300px;}
.yb7{bottom:1013.799300px;}
.y1f9{bottom:1013.800800px;}
.y2c2{bottom:1014.554550px;}
.y275{bottom:1014.565800px;}
.y98{bottom:1022.406300px;}
.y2c1{bottom:1027.300800px;}
.y274{bottom:1027.312050px;}
.y116{bottom:1028.599800px;}
.y233{bottom:1028.794800px;}
.yb6{bottom:1028.797800px;}
.y3b{bottom:1028.799300px;}
.y97{bottom:1039.846800px;}
.y2c0{bottom:1040.047050px;}
.y273{bottom:1040.058300px;}
.y232{bottom:1043.794800px;}
.yb5{bottom:1043.796300px;}
.y3a{bottom:1043.797800px;}
.y115{bottom:1046.040300px;}
.y272{bottom:1052.804550px;}
.y96{bottom:1057.287300px;}
.yb4{bottom:1058.794800px;}
.y39{bottom:1058.796300px;}
.y112{bottom:1063.480800px;}
.y271{bottom:1065.550800px;}
.y38{bottom:1073.794800px;}
.y114{bottom:1074.726300px;}
.y95{bottom:1074.727800px;}
.y270{bottom:1078.297050px;}
.y37{bottom:1088.793300px;}
.y26f{bottom:1091.043300px;}
.y113{bottom:1092.166800px;}
.y94{bottom:1092.168300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hd{height:23.842749px;}
.h15{height:29.988000px;}
.h3{height:34.523438px;}
.h16{height:35.910000px;}
.he{height:36.681152px;}
.h1f{height:38.475000px;}
.h7{height:38.838867px;}
.h20{height:39.933750px;}
.h21{height:40.158750px;}
.h23{height:40.173750px;}
.h24{height:40.263750px;}
.h22{height:40.278750px;}
.h2{height:43.154297px;}
.h4{height:44.233154px;}
.h8{height:46.170000px;}
.h10{height:47.469727px;}
.h9{height:48.202500px;}
.h1c{height:48.262500px;}
.h11{height:48.275100px;}
.h1d{height:48.285900px;}
.h14{height:48.303900px;}
.h1b{height:48.310500px;}
.h19{height:48.322500px;}
.h17{height:48.323100px;}
.h18{height:48.334500px;}
.h1e{height:48.340500px;}
.h12{height:48.346500px;}
.h13{height:48.351900px;}
.hb{height:48.352500px;}
.hc{height:48.358500px;}
.ha{height:48.364500px;}
.h1a{height:48.370500px;}
.h6{height:48.450893px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x8{left:71.135850px;}
.x7{left:78.947850px;}
.x6{left:96.587850px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:238.143900px;}
.x5{left:251.448900px;}
.x1b{left:300.348900px;}
.x16{left:382.408950px;}
.x13{left:408.653400px;}
.x15{left:421.539750px;}
.x14{left:424.014900px;}
.x18{left:429.887400px;}
.x17{left:432.372900px;}
.xd{left:438.998400px;}
.xe{left:451.755900px;}
.xc{left:492.569400px;}
.x10{left:509.253900px;}
.xf{left:512.340900px;}
.x11{left:564.756900px;}
.x3{left:584.586600px;}
.x12{left:589.967400px;}
.x19{left:816.003600px;}
.x1a{left:817.278150px;}
.xb{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v6{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.778667pt;}
.v2{vertical-align:16.170667pt;}
.v1{vertical-align:18.133867pt;}
.lsab{letter-spacing:-1.120000pt;}
.ls48{letter-spacing:-0.912000pt;}
.ls64{letter-spacing:-0.864000pt;}
.ls93{letter-spacing:-0.768000pt;}
.ls2c{letter-spacing:-0.672000pt;}
.lsaf{letter-spacing:-0.640000pt;}
.ls8a{letter-spacing:-0.597333pt;}
.ls4f{letter-spacing:-0.576000pt;}
.ls77{letter-spacing:-0.560000pt;}
.ls94{letter-spacing:-0.528000pt;}
.ls4b{letter-spacing:-0.485333pt;}
.ls4e{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.432000pt;}
.ls9f{letter-spacing:-0.400000pt;}
.ls65{letter-spacing:-0.384000pt;}
.ls76{letter-spacing:-0.373333pt;}
.lsaa{letter-spacing:-0.360000pt;}
.ls4d{letter-spacing:-0.336000pt;}
.ls67{letter-spacing:-0.288000pt;}
.ls70{letter-spacing:-0.280800pt;}
.ls9c{letter-spacing:-0.280000pt;}
.ls28{letter-spacing:-0.266667pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.226667pt;}
.ls8e{letter-spacing:-0.213333pt;}
.lsa9{letter-spacing:-0.200000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.187200pt;}
.ls4a{letter-spacing:-0.186667pt;}
.ls1c{letter-spacing:-0.181333pt;}
.lsa0{letter-spacing:-0.160000pt;}
.ls7b{letter-spacing:-0.156000pt;}
.ls4c{letter-spacing:-0.149333pt;}
.ls18{letter-spacing:-0.144000pt;}
.lsa1{letter-spacing:-0.120000pt;}
.ls78{letter-spacing:-0.112000pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.093600pt;}
.lsad{letter-spacing:-0.080000pt;}
.ls66{letter-spacing:-0.062400pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls27{letter-spacing:-0.048000pt;}
.lsa8{letter-spacing:-0.040000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls84{letter-spacing:0.011200pt;}
.ls3{letter-spacing:0.012267pt;}
.ls86{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.020267pt;}
.ls8{letter-spacing:0.031200pt;}
.lsa3{letter-spacing:0.040000pt;}
.ls7d{letter-spacing:0.045867pt;}
.lsf{letter-spacing:0.046800pt;}
.ls7{letter-spacing:0.048000pt;}
.ls96{letter-spacing:0.052800pt;}
.ls95{letter-spacing:0.062400pt;}
.ls8f{letter-spacing:0.072000pt;}
.ls87{letter-spacing:0.073067pt;}
.lsa4{letter-spacing:0.080000pt;}
.ls80{letter-spacing:0.085867pt;}
.ls30{letter-spacing:0.093600pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.105600pt;}
.ls8b{letter-spacing:0.112000pt;}
.ls62{letter-spacing:0.115200pt;}
.ls91{letter-spacing:0.120000pt;}
.ls73{letter-spacing:0.124800pt;}
.lsac{letter-spacing:0.130000pt;}
.ls85{letter-spacing:0.137600pt;}
.ls9{letter-spacing:0.144000pt;}
.ls83{letter-spacing:0.147733pt;}
.ls75{letter-spacing:0.156000pt;}
.ls9e{letter-spacing:0.160000pt;}
.ls89{letter-spacing:0.186667pt;}
.ls63{letter-spacing:0.187200pt;}
.ls10{letter-spacing:0.192000pt;}
.ls98{letter-spacing:0.200000pt;}
.ls4{letter-spacing:0.218400pt;}
.ls23{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.249600pt;}
.lsa6{letter-spacing:0.280000pt;}
.lse{letter-spacing:0.280800pt;}
.ls36{letter-spacing:0.283200pt;}
.ls22{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.312000pt;}
.ls7a{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.336000pt;}
.ls72{letter-spacing:0.343200pt;}
.ls97{letter-spacing:0.360000pt;}
.lsa{letter-spacing:0.374400pt;}
.ls6{letter-spacing:0.384000pt;}
.ls92{letter-spacing:0.393600pt;}
.ls5e{letter-spacing:0.398933pt;}
.ls9b{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.405600pt;}
.lsd{letter-spacing:0.432000pt;}
.ls11{letter-spacing:0.433467pt;}
.ls5{letter-spacing:0.437333pt;}
.ls9a{letter-spacing:0.440000pt;}
.ls35{letter-spacing:0.475200pt;}
.lsc{letter-spacing:0.480000pt;}
.ls71{letter-spacing:0.499200pt;}
.ls26{letter-spacing:0.518400pt;}
.ls9d{letter-spacing:0.520000pt;}
.ls2b{letter-spacing:0.528000pt;}
.lsa2{letter-spacing:0.560000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls50{letter-spacing:0.585600pt;}
.ls61{letter-spacing:0.590400pt;}
.ls60{letter-spacing:0.600000pt;}
.ls24{letter-spacing:0.624000pt;}
.ls33{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.652800pt;}
.ls79{letter-spacing:0.662400pt;}
.ls15{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.680000pt;}
.ls49{letter-spacing:0.720000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.800000pt;}
.ls99{letter-spacing:0.808000pt;}
.ls19{letter-spacing:0.816000pt;}
.lsae{letter-spacing:0.840000pt;}
.ls13{letter-spacing:0.853333pt;}
.ls88{letter-spacing:0.864000pt;}
.ls25{letter-spacing:0.878400pt;}
.ls5f{letter-spacing:0.892800pt;}
.ls5d{letter-spacing:0.908267pt;}
.ls6c{letter-spacing:0.912000pt;}
.ls6d{letter-spacing:0.960000pt;}
.ls6a{letter-spacing:0.967200pt;}
.ls52{letter-spacing:1.008000pt;}
.ls6b{letter-spacing:1.056000pt;}
.lsa5{letter-spacing:1.064000pt;}
.ls20{letter-spacing:1.104000pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls56{letter-spacing:1.152000pt;}
.ls54{letter-spacing:1.248000pt;}
.ls57{letter-spacing:1.296000pt;}
.ls5b{letter-spacing:1.344000pt;}
.ls5c{letter-spacing:1.377600pt;}
.ls55{letter-spacing:1.392000pt;}
.ls69{letter-spacing:1.440000pt;}
.ls59{letter-spacing:1.483200pt;}
.ls53{letter-spacing:1.488000pt;}
.ls58{letter-spacing:1.536000pt;}
.ls5a{letter-spacing:1.680000pt;}
.ls6e{letter-spacing:1.968000pt;}
.ls6f{letter-spacing:2.112000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsa7{letter-spacing:4.106667pt;}
.ls90{letter-spacing:5.440000pt;}
.ls46{letter-spacing:13.104000pt;}
.ls74{letter-spacing:28.858667pt;}
.ls39{letter-spacing:29.232000pt;}
.ls7f{letter-spacing:77.642933pt;}
.ls7e{letter-spacing:77.643467pt;}
.ls7c{letter-spacing:87.322667pt;}
.ls8d{letter-spacing:88.938400pt;}
.ls8c{letter-spacing:98.597333pt;}
.ls81{letter-spacing:160.967733pt;}
.ls82{letter-spacing:160.968267pt;}
.ls45{letter-spacing:173.652267pt;}
.ls43{letter-spacing:232.232000pt;}
.ls42{letter-spacing:256.237333pt;}
.ls44{letter-spacing:284.752533pt;}
.ls3f{letter-spacing:401.277333pt;}
.ls3c{letter-spacing:458.468267pt;}
.ls3e{letter-spacing:605.038933pt;}
.ls3b{letter-spacing:798.268800pt;}
.ls38{letter-spacing:920.124800pt;}
.ls40{letter-spacing:933.303467pt;}
.ls3a{letter-spacing:933.374400pt;}
.ls3d{letter-spacing:985.458133pt;}
.ls41{letter-spacing:1051.202133pt;}
.ls37{letter-spacing:1119.630400pt;}
.ws2{word-spacing:-13.393333pt;}
.ws7a{word-spacing:-12.085333pt;}
.ws8{word-spacing:-11.712000pt;}
.ws5{word-spacing:-11.184000pt;}
.wsb7{word-spacing:-11.088000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws61{word-spacing:-10.944000pt;}
.ws41{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsa5{word-spacing:-10.416000pt;}
.ws2d{word-spacing:-10.320000pt;}
.wsb3{word-spacing:-10.224000pt;}
.wsa6{word-spacing:-10.128000pt;}
.wsd2{word-spacing:-9.360000pt;}
.wsbb{word-spacing:-9.320000pt;}
.wsd0{word-spacing:-9.200000pt;}
.wsd1{word-spacing:-9.160000pt;}
.wsbc{word-spacing:-9.080000pt;}
.wsd6{word-spacing:-9.040000pt;}
.wsbd{word-spacing:-9.000000pt;}
.ws36{word-spacing:-8.928000pt;}
.ws3f{word-spacing:-8.880000pt;}
.wscf{word-spacing:-8.760000pt;}
.ws6f{word-spacing:-8.688000pt;}
.ws58{word-spacing:-8.640000pt;}
.ws48{word-spacing:-8.592000pt;}
.wse7{word-spacing:-8.520000pt;}
.ws6e{word-spacing:-8.352000pt;}
.ws57{word-spacing:-8.304000pt;}
.ws7b{word-spacing:-8.101333pt;}
.ws5b{word-spacing:-8.049600pt;}
.wsd4{word-spacing:-8.040000pt;}
.ws7c{word-spacing:-7.952000pt;}
.ws43{word-spacing:-7.914667pt;}
.ws5d{word-spacing:-7.581600pt;}
.ws7d{word-spacing:-7.541333pt;}
.ws2c{word-spacing:-7.488000pt;}
.ws9{word-spacing:-7.456800pt;}
.ws5f{word-spacing:-7.425600pt;}
.wsde{word-spacing:-7.400000pt;}
.wsa{word-spacing:-7.394400pt;}
.wsb{word-spacing:-7.363200pt;}
.ws4{word-spacing:-7.332000pt;}
.ws5e{word-spacing:-7.300800pt;}
.wsba{word-spacing:-7.269600pt;}
.ws79{word-spacing:-7.238400pt;}
.ws60{word-spacing:-7.207200pt;}
.ws2f{word-spacing:-7.176000pt;}
.wsb8{word-spacing:-7.144800pt;}
.wsc{word-spacing:-7.129200pt;}
.ws6{word-spacing:-7.113600pt;}
.ws7{word-spacing:-7.082400pt;}
.ws59{word-spacing:-7.020000pt;}
.ws2e{word-spacing:-6.988800pt;}
.ws87{word-spacing:-6.926400pt;}
.ws54{word-spacing:-6.906667pt;}
.ws5a{word-spacing:-6.895200pt;}
.ws5c{word-spacing:-6.801600pt;}
.ws56{word-spacing:-6.458667pt;}
.wsd3{word-spacing:-6.058000pt;}
.wsd5{word-spacing:-6.032000pt;}
.wsd{word-spacing:-5.893333pt;}
.wsb4{word-spacing:-5.440000pt;}
.wsd7{word-spacing:-4.106667pt;}
.wse8{word-spacing:-4.080000pt;}
.ws55{word-spacing:-3.808000pt;}
.wsea{word-spacing:-3.520000pt;}
.ws12{word-spacing:-3.200000pt;}
.wsf{word-spacing:-2.912000pt;}
.ws28{word-spacing:-2.674667pt;}
.ws2a{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws11{word-spacing:-2.133333pt;}
.ws66{word-spacing:-1.776000pt;}
.ws35{word-spacing:-1.728000pt;}
.ws34{word-spacing:-1.706667pt;}
.ws78{word-spacing:-1.680000pt;}
.wsb0{word-spacing:-1.653333pt;}
.ws15{word-spacing:-1.632000pt;}
.ws3c{word-spacing:-1.600000pt;}
.wsbe{word-spacing:-1.584000pt;}
.ws21{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.488000pt;}
.wse3{word-spacing:-1.480000pt;}
.ws29{word-spacing:-1.450667pt;}
.wsaf{word-spacing:-1.440000pt;}
.wsc3{word-spacing:-1.400000pt;}
.ws71{word-spacing:-1.392000pt;}
.ws27{word-spacing:-1.360000pt;}
.ws67{word-spacing:-1.344000pt;}
.wsb6{word-spacing:-1.296000pt;}
.ws25{word-spacing:-1.248000pt;}
.wse6{word-spacing:-1.240000pt;}
.ws76{word-spacing:-1.200000pt;}
.ws39{word-spacing:-1.152000pt;}
.ws10{word-spacing:-1.120000pt;}
.ws1d{word-spacing:-1.104000pt;}
.wscd{word-spacing:-1.080000pt;}
.ws3d{word-spacing:-1.056000pt;}
.ws13{word-spacing:-1.008000pt;}
.ws46{word-spacing:-0.960000pt;}
.wsc2{word-spacing:-0.920000pt;}
.ws20{word-spacing:-0.912000pt;}
.ws4c{word-spacing:-0.864000pt;}
.ws4f{word-spacing:-0.858667pt;}
.ws4e{word-spacing:-0.821333pt;}
.ws4b{word-spacing:-0.816000pt;}
.ws42{word-spacing:-0.768000pt;}
.wse1{word-spacing:-0.760000pt;}
.ws4a{word-spacing:-0.746667pt;}
.ws22{word-spacing:-0.720000pt;}
.wsa0{word-spacing:-0.709333pt;}
.wse2{word-spacing:-0.680000pt;}
.ws1c{word-spacing:-0.672000pt;}
.wsc5{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.624000pt;}
.wsdc{word-spacing:-0.600000pt;}
.ws23{word-spacing:-0.576000pt;}
.wse0{word-spacing:-0.560000pt;}
.ws1a{word-spacing:-0.528000pt;}
.ws53{word-spacing:-0.522667pt;}
.wsca{word-spacing:-0.520000pt;}
.ws40{word-spacing:-0.480000pt;}
.wscb{word-spacing:-0.440000pt;}
.ws33{word-spacing:-0.432000pt;}
.wsc4{word-spacing:-0.400000pt;}
.ws3e{word-spacing:-0.384000pt;}
.wsb9{word-spacing:-0.373333pt;}
.wsbf{word-spacing:-0.360000pt;}
.ws1b{word-spacing:-0.336000pt;}
.ws89{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.288000pt;}
.wse5{word-spacing:-0.280000pt;}
.wsa4{word-spacing:-0.261333pt;}
.ws16{word-spacing:-0.240000pt;}
.wse4{word-spacing:-0.200000pt;}
.ws45{word-spacing:-0.192000pt;}
.wsdb{word-spacing:-0.160000pt;}
.ws18{word-spacing:-0.144000pt;}
.wsc1{word-spacing:-0.120000pt;}
.wsa2{word-spacing:-0.112000pt;}
.ws19{word-spacing:-0.096000pt;}
.ws2b{word-spacing:-0.048000pt;}
.wsda{word-spacing:-0.040000pt;}
.ws8f{word-spacing:-0.037333pt;}
.wse{word-spacing:0.000000pt;}
.wsd9{word-spacing:0.040000pt;}
.ws3b{word-spacing:0.048000pt;}
.wsce{word-spacing:0.080000pt;}
.ws1f{word-spacing:0.096000pt;}
.wscc{word-spacing:0.120000pt;}
.ws83{word-spacing:0.144000pt;}
.wsc9{word-spacing:0.160000pt;}
.ws88{word-spacing:0.192000pt;}
.wsb2{word-spacing:0.240000pt;}
.ws38{word-spacing:0.288000pt;}
.wsc6{word-spacing:0.320000pt;}
.ws44{word-spacing:0.336000pt;}
.wsc7{word-spacing:0.360000pt;}
.ws85{word-spacing:0.373333pt;}
.ws8a{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.432000pt;}
.ws49{word-spacing:0.480000pt;}
.wsc8{word-spacing:0.520000pt;}
.ws37{word-spacing:0.528000pt;}
.wsd8{word-spacing:0.560000pt;}
.ws17{word-spacing:0.576000pt;}
.ws62{word-spacing:0.624000pt;}
.ws14{word-spacing:0.672000pt;}
.wsc0{word-spacing:0.680000pt;}
.ws77{word-spacing:0.720000pt;}
.wsdf{word-spacing:0.760000pt;}
.wsae{word-spacing:0.768000pt;}
.ws26{word-spacing:0.816000pt;}
.wsdd{word-spacing:0.840000pt;}
.ws32{word-spacing:0.864000pt;}
.ws63{word-spacing:0.906667pt;}
.ws4d{word-spacing:0.912000pt;}
.ws84{word-spacing:0.960000pt;}
.ws9f{word-spacing:1.008000pt;}
.wsb1{word-spacing:1.104000pt;}
.wsb5{word-spacing:1.248000pt;}
.ws64{word-spacing:1.488000pt;}
.wse9{word-spacing:1.536000pt;}
.ws30{word-spacing:1.706667pt;}
.ws31{word-spacing:1.728000pt;}
.ws6c{word-spacing:1.824000pt;}
.ws65{word-spacing:1.920000pt;}
.ws6b{word-spacing:2.112000pt;}
.ws70{word-spacing:2.352000pt;}
.ws74{word-spacing:2.400000pt;}
.ws68{word-spacing:2.448000pt;}
.ws69{word-spacing:2.688000pt;}
.ws72{word-spacing:2.736000pt;}
.ws6d{word-spacing:3.120000pt;}
.ws6a{word-spacing:3.168000pt;}
.ws73{word-spacing:3.792000pt;}
.ws75{word-spacing:4.176000pt;}
.ws86{word-spacing:28.858667pt;}
.wsa1{word-spacing:28.970667pt;}
.ws50{word-spacing:29.232000pt;}
.wsa3{word-spacing:29.306667pt;}
.ws52{word-spacing:29.381333pt;}
.ws51{word-spacing:29.717333pt;}
.ws96{word-spacing:53.237333pt;}
.ws93{word-spacing:57.493333pt;}
.wsa9{word-spacing:64.549333pt;}
.ws91{word-spacing:66.453333pt;}
.ws95{word-spacing:68.544000pt;}
.wsaa{word-spacing:70.186667pt;}
.ws8d{word-spacing:77.504000pt;}
.wsa7{word-spacing:79.818667pt;}
.ws9c{word-spacing:86.464000pt;}
.wsab{word-spacing:88.816000pt;}
.wsa8{word-spacing:90.197333pt;}
.ws9e{word-spacing:90.720000pt;}
.wsac{word-spacing:95.125333pt;}
.wsad{word-spacing:105.504000pt;}
.ws99{word-spacing:122.490667pt;}
.ws7f{word-spacing:144.629333pt;}
.ws82{word-spacing:145.525333pt;}
.ws80{word-spacing:146.869333pt;}
.ws81{word-spacing:150.864000pt;}
.ws7e{word-spacing:151.760000pt;}
.ws8b{word-spacing:158.106667pt;}
.ws92{word-spacing:173.413333pt;}
.ws9b{word-spacing:213.957333pt;}
.ws90{word-spacing:217.765333pt;}
.ws9a{word-spacing:218.885333pt;}
.ws98{word-spacing:307.328000pt;}
.ws94{word-spacing:735.541333pt;}
.ws9d{word-spacing:745.173333pt;}
.ws8e{word-spacing:755.552000pt;}
.ws8c{word-spacing:760.480000pt;}
.ws97{word-spacing:770.858667pt;}
._3d{margin-left:-29.631467pt;}
._1b{margin-left:-16.747733pt;}
._61{margin-left:-13.173333pt;}
._1a{margin-left:-10.513600pt;}
._1{margin-left:-8.763733pt;}
._6{margin-left:-7.522667pt;}
._a{margin-left:-5.957333pt;}
._2{margin-left:-4.853333pt;}
._3{margin-left:-3.141333pt;}
._0{margin-left:-1.578667pt;}
._4{width:0.978133pt;}
._5{width:1.946133pt;}
._14{width:3.013333pt;}
._b{width:3.984000pt;}
._2a{width:5.362133pt;}
._1e{width:6.492800pt;}
._9{width:7.607467pt;}
._53{width:8.650133pt;}
._34{width:13.584000pt;}
._13{width:29.717333pt;}
._19{width:36.821867pt;}
._1c{width:38.131200pt;}
._7{width:40.750400pt;}
._c{width:42.699733pt;}
._8{width:44.500267pt;}
._3b{width:46.405333pt;}
._38{width:47.936000pt;}
._3c{width:50.400000pt;}
._3a{width:53.176533pt;}
._44{width:54.832000pt;}
._5f{width:55.898667pt;}
._5e{width:59.485867pt;}
._3f{width:62.136533pt;}
._51{width:65.408000pt;}
._57{width:68.445867pt;}
._41{width:70.672000pt;}
._40{width:79.632000pt;}
._58{width:81.984000pt;}
._46{width:83.402667pt;}
._37{width:87.082667pt;}
._5d{width:89.413333pt;}
._5a{width:91.130667pt;}
._43{width:92.250667pt;}
._55{width:93.354667pt;}
._60{width:98.149333pt;}
._52{width:105.280000pt;}
._45{width:112.506667pt;}
._5b{width:118.778667pt;}
._4c{width:136.416000pt;}
._48{width:140.672000pt;}
._20{width:161.578667pt;}
._24{width:171.477333pt;}
._47{width:177.008000pt;}
._1d{width:179.421867pt;}
._35{width:189.633067pt;}
._49{width:233.941333pt;}
._10{width:242.309333pt;}
._59{width:287.354667pt;}
._f{width:331.162667pt;}
._1f{width:355.341867pt;}
._2f{width:360.458667pt;}
._4b{width:389.162667pt;}
._25{width:392.138667pt;}
._3e{width:409.684800pt;}
._42{width:411.364800pt;}
._54{width:472.373333pt;}
._12{width:474.976000pt;}
._28{width:514.090667pt;}
._21{width:517.264000pt;}
._23{width:532.010667pt;}
._11{width:545.472000pt;}
._27{width:553.347200pt;}
._36{width:566.528000pt;}
._30{width:575.747200pt;}
._50{width:581.018133pt;}
._26{width:598.912000pt;}
._22{width:616.410667pt;}
._5c{width:627.199467pt;}
._56{width:634.229333pt;}
._17{width:723.163200pt;}
._39{width:728.384000pt;}
._4a{width:755.674667pt;}
._2b{width:768.312533pt;}
._33{width:773.781333pt;}
._29{width:779.821867pt;}
._31{width:785.653333pt;}
._32{width:813.037867pt;}
._e{width:948.589867pt;}
._2c{width:977.240533pt;}
._2e{width:1009.317333pt;}
._d{width:1012.266667pt;}
._15{width:1013.168000pt;}
._2d{width:1048.573867pt;}
._16{width:1176.749867pt;}
._18{width:1261.475200pt;}
._4f{width:1270.314667pt;}
._4d{width:1288.776533pt;}
._4e{width:1416.538667pt;}
.fsc{font-size:24.266667pt;}
.fse{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.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;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y31{bottom:60.723467pt;}
.y231{bottom:60.934667pt;}
.y78{bottom:60.940000pt;}
.y192{bottom:60.940267pt;}
.y1f1{bottom:61.153600pt;}
.yf4{bottom:62.869600pt;}
.y2bf{bottom:63.262933pt;}
.y153{bottom:65.164267pt;}
.y26e{bottom:67.209600pt;}
.y1c3{bottom:70.505600pt;}
.y162{bottom:73.994933pt;}
.y30{bottom:74.051467pt;}
.y230{bottom:74.268000pt;}
.y77{bottom:74.272000pt;}
.y191{bottom:74.272267pt;}
.y1f0{bottom:74.485600pt;}
.y2be{bottom:74.592933pt;}
.yf3{bottom:76.201600pt;}
.y152{bottom:78.496267pt;}
.y26d{bottom:78.539600pt;}
.y111{bottom:81.150933pt;}
.y93{bottom:81.838933pt;}
.y1c2{bottom:83.837600pt;}
.y2bd{bottom:85.922933pt;}
.y161{bottom:87.326933pt;}
.y76{bottom:87.604000pt;}
.y190{bottom:87.604267pt;}
.y1ef{bottom:87.817600pt;}
.yf2{bottom:89.533600pt;}
.y26c{bottom:89.869600pt;}
.y2f{bottom:91.232800pt;}
.y151{bottom:91.828267pt;}
.y110{bottom:94.482933pt;}
.y92{bottom:95.170933pt;}
.y1c1{bottom:97.169600pt;}
.y2bc{bottom:97.252933pt;}
.y160{bottom:100.658933pt;}
.y75{bottom:100.936000pt;}
.y18f{bottom:100.936267pt;}
.y1ee{bottom:101.150933pt;}
.y26b{bottom:101.199600pt;}
.yf1{bottom:102.865600pt;}
.y2e{bottom:104.566133pt;}
.y150{bottom:105.160267pt;}
.y10f{bottom:107.816267pt;}
.y91{bottom:108.502933pt;}
.y2bb{bottom:108.582933pt;}
.y1c0{bottom:110.501600pt;}
.y26a{bottom:112.529600pt;}
.y15f{bottom:113.990933pt;}
.y74{bottom:114.268000pt;}
.y18e{bottom:114.268267pt;}
.y1ed{bottom:114.493600pt;}
.yf0{bottom:116.197600pt;}
.y14f{bottom:118.492267pt;}
.y2ba{bottom:119.912933pt;}
.y90{bottom:121.834933pt;}
.y1bf{bottom:123.833600pt;}
.y269{bottom:123.859600pt;}
.y15e{bottom:127.322933pt;}
.y18d{bottom:127.600267pt;}
.y73{bottom:127.614667pt;}
.y22f{bottom:127.618667pt;}
.y1ec{bottom:127.825600pt;}
.yef{bottom:129.529600pt;}
.y2b9{bottom:131.242933pt;}
.y14e{bottom:131.824267pt;}
.y8f{bottom:135.166933pt;}
.y268{bottom:135.189600pt;}
.y10e{bottom:137.157600pt;}
.y1be{bottom:137.165600pt;}
.y2d{bottom:139.280267pt;}
.y15d{bottom:140.654933pt;}
.y18c{bottom:140.932267pt;}
.y72{bottom:140.946667pt;}
.y22e{bottom:140.950667pt;}
.y1eb{bottom:141.157600pt;}
.y2b8{bottom:142.572933pt;}
.yee{bottom:142.861600pt;}
.y14d{bottom:145.156267pt;}
.y267{bottom:146.519600pt;}
.y8e{bottom:148.498933pt;}
.y10d{bottom:150.489600pt;}
.y1bd{bottom:150.497600pt;}
.y2c{bottom:152.612267pt;}
.y2b7{bottom:153.902933pt;}
.y15c{bottom:153.986933pt;}
.y18b{bottom:154.264267pt;}
.y71{bottom:154.278667pt;}
.y22d{bottom:154.282667pt;}
.y1ea{bottom:154.489600pt;}
.yed{bottom:156.197600pt;}
.y266{bottom:157.849600pt;}
.y14c{bottom:158.488267pt;}
.y8d{bottom:161.830933pt;}
.y10c{bottom:163.821600pt;}
.y1bc{bottom:163.829600pt;}
.y2b6{bottom:165.232933pt;}
.y2b{bottom:165.944267pt;}
.y15b{bottom:167.318933pt;}
.y18a{bottom:167.596267pt;}
.y70{bottom:167.610667pt;}
.y22c{bottom:167.614667pt;}
.y1e9{bottom:167.821600pt;}
.y265{bottom:169.179600pt;}
.yec{bottom:169.529600pt;}
.y14b{bottom:171.820267pt;}
.y8c{bottom:175.162933pt;}
.y2b5{bottom:176.562933pt;}
.y10b{bottom:177.153600pt;}
.y1bb{bottom:177.161600pt;}
.y2a{bottom:179.276267pt;}
.y264{bottom:180.509600pt;}
.y15a{bottom:180.650933pt;}
.y6f{bottom:180.942667pt;}
.y22b{bottom:180.946667pt;}
.y1e8{bottom:181.153600pt;}
.yeb{bottom:182.861600pt;}
.y14a{bottom:185.152267pt;}
.y2b4{bottom:187.892933pt;}
.y8b{bottom:188.494933pt;}
.y10a{bottom:190.485600pt;}
.y1ba{bottom:190.493600pt;}
.y263{bottom:191.839600pt;}
.y29{bottom:192.612267pt;}
.y159{bottom:193.982933pt;}
.y6e{bottom:194.274667pt;}
.y22a{bottom:194.278667pt;}
.y1e7{bottom:194.485600pt;}
.yea{bottom:196.197600pt;}
.y149{bottom:198.484267pt;}
.y2b3{bottom:199.222933pt;}
.y8a{bottom:201.826933pt;}
.y262{bottom:203.169600pt;}
.y109{bottom:203.817600pt;}
.y1b9{bottom:203.825600pt;}
.y28{bottom:205.944267pt;}
.y6d{bottom:207.606667pt;}
.y229{bottom:207.610667pt;}
.y1e6{bottom:207.817600pt;}
.ye9{bottom:209.529600pt;}
.y2b2{bottom:210.552933pt;}
.y148{bottom:211.816267pt;}
.y261{bottom:214.499600pt;}
.y89{bottom:215.158933pt;}
.y108{bottom:217.150933pt;}
.y1b8{bottom:217.157600pt;}
.y27{bottom:219.276267pt;}
.y6c{bottom:220.938667pt;}
.y228{bottom:220.942667pt;}
.y1e5{bottom:221.152267pt;}
.y2b1{bottom:221.882933pt;}
.ye8{bottom:222.861600pt;}
.y260{bottom:225.829600pt;}
.y88{bottom:228.490933pt;}
.y107{bottom:230.488267pt;}
.y1b7{bottom:230.489600pt;}
.y26{bottom:232.609600pt;}
.y2b0{bottom:233.212933pt;}
.y6b{bottom:234.270667pt;}
.y227{bottom:234.274667pt;}
.y1e4{bottom:234.484267pt;}
.ye7{bottom:236.196267pt;}
.y25f{bottom:237.159600pt;}
.y189{bottom:237.484267pt;}
.y147{bottom:241.180267pt;}
.y87{bottom:241.822933pt;}
.y106{bottom:243.820267pt;}
.y1b6{bottom:243.821600pt;}
.y2af{bottom:244.542933pt;}
.y25{bottom:245.942933pt;}
.y6a{bottom:247.602667pt;}
.y226{bottom:247.606667pt;}
.y1e3{bottom:247.820267pt;}
.y25e{bottom:248.489600pt;}
.ye6{bottom:249.528267pt;}
.y188{bottom:250.818933pt;}
.y146{bottom:254.512267pt;}
.y19b{bottom:254.889733pt;}
.y86{bottom:255.154933pt;}
.y2ae{bottom:255.872933pt;}
.y105{bottom:257.152267pt;}
.y1b5{bottom:257.153600pt;}
.y24{bottom:259.277600pt;}
.y25d{bottom:259.819600pt;}
.y69{bottom:260.934667pt;}
.y225{bottom:260.938667pt;}
.y1e2{bottom:261.152267pt;}
.ye5{bottom:262.862933pt;}
.y187{bottom:264.150933pt;}
.y2ad{bottom:267.202933pt;}
.y145{bottom:267.844267pt;}
.y19a{bottom:268.221733pt;}
.y85{bottom:268.486933pt;}
.y104{bottom:270.484267pt;}
.y1b4{bottom:270.485600pt;}
.y25c{bottom:271.149600pt;}
.y23{bottom:272.609600pt;}
.y68{bottom:274.270667pt;}
.y1e1{bottom:274.484267pt;}
.ye4{bottom:276.194933pt;}
.y186{bottom:277.482933pt;}
.y2ac{bottom:278.532933pt;}
.y144{bottom:281.176267pt;}
.y199{bottom:281.553733pt;}
.y84{bottom:281.818933pt;}
.y25b{bottom:282.482933pt;}
.y1b3{bottom:283.817600pt;}
.y103{bottom:283.824267pt;}
.y22{bottom:285.942933pt;}
.y67{bottom:287.602667pt;}
.y1e0{bottom:287.816267pt;}
.ye3{bottom:289.529600pt;}
.y2ab{bottom:289.862933pt;}
.y143{bottom:294.508267pt;}
.y198{bottom:294.885733pt;}
.y83{bottom:295.150933pt;}
.y1b2{bottom:297.149600pt;}
.y102{bottom:297.156267pt;}
.y21{bottom:299.276267pt;}
.y66{bottom:300.934667pt;}
.y2aa{bottom:301.192933pt;}
.ye2{bottom:302.861600pt;}
.y185{bottom:304.308267pt;}
.y142{bottom:307.840267pt;}
.y197{bottom:308.217733pt;}
.y82{bottom:308.482933pt;}
.y1b1{bottom:310.482933pt;}
.y101{bottom:310.488267pt;}
.y25a{bottom:311.844267pt;}
.y2a9{bottom:312.522933pt;}
.y20{bottom:312.612267pt;}
.y224{bottom:314.268000pt;}
.y65{bottom:314.272000pt;}
.ye1{bottom:316.193600pt;}
.y1df{bottom:317.160267pt;}
.y184{bottom:319.810933pt;}
.y141{bottom:321.172267pt;}
.y196{bottom:321.549733pt;}
.y81{bottom:321.816267pt;}
.y100{bottom:323.820267pt;}
.y2a8{bottom:323.852933pt;}
.y259{bottom:325.176267pt;}
.y1f{bottom:325.944267pt;}
.y223{bottom:327.602667pt;}
.y64{bottom:327.604000pt;}
.y1de{bottom:330.492267pt;}
.y140{bottom:334.504267pt;}
.y195{bottom:334.881733pt;}
.y2a7{bottom:335.182933pt;}
.y183{bottom:335.313600pt;}
.yff{bottom:337.152267pt;}
.y258{bottom:338.508267pt;}
.y1e{bottom:339.276267pt;}
.y1b0{bottom:339.846933pt;}
.y222{bottom:340.934667pt;}
.y63{bottom:340.936000pt;}
.ye0{bottom:342.197600pt;}
.y1dd{bottom:343.824267pt;}
.y2a6{bottom:346.512933pt;}
.y13f{bottom:347.836267pt;}
.y194{bottom:348.213733pt;}
.yfe{bottom:350.484267pt;}
.y182{bottom:350.784267pt;}
.y80{bottom:351.158933pt;}
.y257{bottom:351.840267pt;}
.y1d{bottom:352.609600pt;}
.y1af{bottom:353.178933pt;}
.y221{bottom:354.266667pt;}
.y62{bottom:354.268000pt;}
.ydf{bottom:355.529600pt;}
.y1dc{bottom:357.156267pt;}
.y2a5{bottom:357.842933pt;}
.y13e{bottom:361.168267pt;}
.y193{bottom:361.545733pt;}
.yfd{bottom:363.820267pt;}
.y7f{bottom:364.490933pt;}
.y256{bottom:365.172267pt;}
.y1c{bottom:365.945600pt;}
.y181{bottom:366.286933pt;}
.y1ae{bottom:366.510933pt;}
.y61{bottom:367.602667pt;}
.yde{bottom:368.861600pt;}
.y2a4{bottom:369.172933pt;}
.y1db{bottom:370.488267pt;}
.y13d{bottom:374.500267pt;}
.yfc{bottom:377.152267pt;}
.y7e{bottom:377.822933pt;}
.y255{bottom:378.504267pt;}
.y1b{bottom:379.277600pt;}
.y1ad{bottom:379.842933pt;}
.y2a3{bottom:380.502933pt;}
.y60{bottom:380.934667pt;}
.y220{bottom:381.153600pt;}
.y180{bottom:381.789600pt;}
.ydd{bottom:382.194933pt;}
.y1da{bottom:383.820267pt;}
.y13c{bottom:387.832267pt;}
.yfb{bottom:390.484267pt;}
.y7d{bottom:391.154933pt;}
.y2e6{bottom:391.821600pt;}
.y2a2{bottom:391.832933pt;}
.y254{bottom:391.836267pt;}
.y1a{bottom:392.609600pt;}
.y1ac{bottom:393.174933pt;}
.y5f{bottom:394.266667pt;}
.y21f{bottom:394.485600pt;}
.ydc{bottom:395.528267pt;}
.y1d9{bottom:397.152267pt;}
.y17f{bottom:397.292267pt;}
.y13b{bottom:401.164267pt;}
.y2a1{bottom:403.162933pt;}
.yfa{bottom:403.818933pt;}
.y7c{bottom:404.486933pt;}
.y2e5{bottom:405.153600pt;}
.y253{bottom:405.168267pt;}
.y19{bottom:405.942933pt;}
.y1ab{bottom:406.506933pt;}
.y21e{bottom:407.817600pt;}
.ydb{bottom:408.868267pt;}
.y1d8{bottom:410.484267pt;}
.y17e{bottom:412.794933pt;}
.y2a0{bottom:414.492933pt;}
.y13a{bottom:414.496267pt;}
.yf9{bottom:417.150933pt;}
.y7b{bottom:417.818933pt;}
.y2e4{bottom:418.485600pt;}
.y252{bottom:418.500267pt;}
.y18{bottom:419.312267pt;}
.y1aa{bottom:419.838933pt;}
.y5e{bottom:421.018800pt;}
.y21d{bottom:421.160267pt;}
.yda{bottom:422.200267pt;}
.y1d7{bottom:423.816267pt;}
.y29f{bottom:425.822933pt;}
.y139{bottom:427.828267pt;}
.y17d{bottom:428.297600pt;}
.yf8{bottom:430.486933pt;}
.y7a{bottom:431.150933pt;}
.y2e3{bottom:431.817600pt;}
.y251{bottom:431.832267pt;}
.y17{bottom:432.644267pt;}
.y1a9{bottom:433.170933pt;}
.y5d{bottom:434.350800pt;}
.y21c{bottom:434.492267pt;}
.yd9{bottom:435.532267pt;}
.y1d6{bottom:437.149600pt;}
.y29e{bottom:437.152933pt;}
.y138{bottom:441.160267pt;}
.y17c{bottom:443.800267pt;}
.yf7{bottom:443.818933pt;}
.y79{bottom:444.482933pt;}
.y2e2{bottom:445.149600pt;}
.y250{bottom:445.164267pt;}
.y16{bottom:445.976267pt;}
.y1a8{bottom:446.502933pt;}
.y5c{bottom:447.682800pt;}
.y21b{bottom:447.824267pt;}
.y29d{bottom:448.512933pt;}
.yd8{bottom:448.864267pt;}
.y137{bottom:454.492267pt;}
.yf6{bottom:457.150933pt;}
.y24f{bottom:458.496267pt;}
.y17b{bottom:459.302933pt;}
.y1a7{bottom:459.834933pt;}
.y29c{bottom:459.842933pt;}
.y5b{bottom:461.014800pt;}
.y21a{bottom:461.156267pt;}
.yd7{bottom:462.196267pt;}
.y2e1{bottom:464.486933pt;}
.y1d5{bottom:466.488267pt;}
.y136{bottom:467.824267pt;}
.yf5{bottom:470.482933pt;}
.y29b{bottom:471.172933pt;}
.y24e{bottom:471.828267pt;}
.y1a6{bottom:473.166933pt;}
.y5a{bottom:474.346800pt;}
.y219{bottom:474.488267pt;}
.y17a{bottom:474.805600pt;}
.yd6{bottom:475.528267pt;}
.y2e0{bottom:477.818933pt;}
.y1d4{bottom:479.820267pt;}
.y135{bottom:481.156267pt;}
.y29a{bottom:482.502933pt;}
.y24d{bottom:485.160267pt;}
.y1a5{bottom:486.498933pt;}
.y59{bottom:487.678800pt;}
.y218{bottom:487.820267pt;}
.y15{bottom:487.976267pt;}
.yd5{bottom:488.861600pt;}
.y179{bottom:490.308267pt;}
.yb3{bottom:491.990933pt;}
.y1d3{bottom:493.152267pt;}
.y299{bottom:493.832933pt;}
.y134{bottom:494.488267pt;}
.y2df{bottom:497.150933pt;}
.y24c{bottom:498.492267pt;}
.y1a4{bottom:499.830933pt;}
.y58{bottom:501.010800pt;}
.y217{bottom:501.152267pt;}
.yd4{bottom:502.196267pt;}
.y14{bottom:502.640267pt;}
.y298{bottom:505.162933pt;}
.yb2{bottom:505.322933pt;}
.y178{bottom:505.810933pt;}
.y1d2{bottom:506.484267pt;}
.y133{bottom:507.820267pt;}
.y24b{bottom:511.824267pt;}
.y57{bottom:514.342800pt;}
.y216{bottom:514.484267pt;}
.yd3{bottom:515.528267pt;}
.y2de{bottom:516.482933pt;}
.y297{bottom:516.492933pt;}
.y13{bottom:517.304267pt;}
.yb1{bottom:518.654933pt;}
.y1d1{bottom:519.816267pt;}
.y12f{bottom:519.818933pt;}
.y132{bottom:521.152267pt;}
.y177{bottom:521.313600pt;}
.y24a{bottom:525.156267pt;}
.y56{bottom:527.674800pt;}
.y215{bottom:527.817600pt;}
.y296{bottom:527.822933pt;}
.yd2{bottom:528.868267pt;}
.y2dd{bottom:529.816267pt;}
.y12{bottom:531.968267pt;}
.yb0{bottom:531.986933pt;}
.y1a3{bottom:532.158933pt;}
.y12e{bottom:533.150933pt;}
.y131{bottom:534.484267pt;}
.y176{bottom:536.810933pt;}
.y249{bottom:538.488267pt;}
.y295{bottom:539.152933pt;}
.y55{bottom:541.006800pt;}
.y214{bottom:541.150933pt;}
.yd1{bottom:542.200267pt;}
.yaf{bottom:545.318933pt;}
.y1a2{bottom:545.490933pt;}
.y12d{bottom:546.482933pt;}
.y11{bottom:546.632267pt;}
.y130{bottom:547.816267pt;}
.y294{bottom:550.489600pt;}
.y248{bottom:551.820267pt;}
.y175{bottom:552.313600pt;}
.y2dc{bottom:553.818933pt;}
.y54{bottom:554.360000pt;}
.y213{bottom:554.485600pt;}
.yd0{bottom:555.532267pt;}
.y2ee{bottom:558.613600pt;}
.yae{bottom:558.650933pt;}
.y1a1{bottom:558.822933pt;}
.y10{bottom:561.296267pt;}
.y293{bottom:561.819600pt;}
.y247{bottom:565.152267pt;}
.y1f8{bottom:566.033733pt;}
.y2db{bottom:567.150933pt;}
.y53{bottom:567.692000pt;}
.y174{bottom:567.786933pt;}
.y212{bottom:567.817600pt;}
.ycf{bottom:568.864267pt;}
.y2ed{bottom:571.945600pt;}
.yad{bottom:571.982933pt;}
.y1a0{bottom:572.154933pt;}
.y292{bottom:573.182933pt;}
.y12c{bottom:573.252267pt;}
.yf{bottom:575.960267pt;}
.y246{bottom:578.484267pt;}
.y1f7{bottom:579.365733pt;}
.y2da{bottom:580.482933pt;}
.y52{bottom:581.024000pt;}
.y211{bottom:581.173600pt;}
.yce{bottom:582.196267pt;}
.y173{bottom:583.289600pt;}
.y291{bottom:584.512933pt;}
.y2ec{bottom:585.277600pt;}
.y19f{bottom:585.486933pt;}
.y12b{bottom:588.754933pt;}
.ye{bottom:590.624267pt;}
.y245{bottom:591.816267pt;}
.y1f6{bottom:592.697733pt;}
.y2d9{bottom:593.816267pt;}
.y51{bottom:594.356000pt;}
.y210{bottom:594.505600pt;}
.ycd{bottom:595.528267pt;}
.y290{bottom:595.842933pt;}
.y158{bottom:596.375067pt;}
.y2eb{bottom:598.609600pt;}
.yac{bottom:598.752267pt;}
.y172{bottom:598.792267pt;}
.y19e{bottom:598.818933pt;}
.y12a{bottom:604.257600pt;}
.y244{bottom:605.149600pt;}
.yd{bottom:605.288267pt;}
.y1f5{bottom:606.029733pt;}
.y28f{bottom:607.172933pt;}
.y50{bottom:607.688000pt;}
.y20f{bottom:607.837600pt;}
.ycc{bottom:608.870800pt;}
.y157{bottom:609.707067pt;}
.y2ea{bottom:611.941600pt;}
.y19d{bottom:612.150933pt;}
.yab{bottom:614.254933pt;}
.y171{bottom:614.294933pt;}
.y2d8{bottom:617.829600pt;}
.y28e{bottom:618.502933pt;}
.y1f4{bottom:619.361733pt;}
.y129{bottom:619.760267pt;}
.yc{bottom:619.952267pt;}
.y4f{bottom:621.020000pt;}
.y20e{bottom:621.169600pt;}
.ycb{bottom:622.202800pt;}
.y156{bottom:623.041733pt;}
.y19c{bottom:625.482933pt;}
.yaa{bottom:629.757600pt;}
.y170{bottom:629.797600pt;}
.y28d{bottom:629.832933pt;}
.y2d7{bottom:631.161600pt;}
.y1f3{bottom:632.693733pt;}
.y4e{bottom:634.352000pt;}
.y243{bottom:634.486933pt;}
.y20d{bottom:634.501600pt;}
.yb{bottom:634.616267pt;}
.y128{bottom:635.262933pt;}
.yca{bottom:635.534800pt;}
.y155{bottom:636.373733pt;}
.y2e9{bottom:639.273600pt;}
.y28c{bottom:641.162933pt;}
.y2d6{bottom:644.493600pt;}
.ya9{bottom:645.260267pt;}
.y16f{bottom:645.300267pt;}
.y1f2{bottom:646.025733pt;}
.y4d{bottom:647.684000pt;}
.y242{bottom:647.818933pt;}
.y20c{bottom:647.833600pt;}
.yc9{bottom:648.866800pt;}
.ya{bottom:649.280267pt;}
.y154{bottom:649.705733pt;}
.y127{bottom:650.765600pt;}
.y28b{bottom:652.492933pt;}
.y2e8{bottom:652.605600pt;}
.y2d5{bottom:657.825600pt;}
.ya8{bottom:660.762933pt;}
.y16e{bottom:660.802933pt;}
.y4c{bottom:661.016000pt;}
.y241{bottom:661.150933pt;}
.y20b{bottom:661.165600pt;}
.yc8{bottom:662.198800pt;}
.y28a{bottom:663.822933pt;}
.y9{bottom:663.944267pt;}
.y126{bottom:666.268267pt;}
.y1d0{bottom:669.318933pt;}
.y2d4{bottom:671.157600pt;}
.y34{bottom:672.933333pt;}
.y4b{bottom:674.348000pt;}
.y240{bottom:674.488267pt;}
.y20a{bottom:674.497600pt;}
.y289{bottom:675.152933pt;}
.yc7{bottom:675.530800pt;}
.ya7{bottom:676.265600pt;}
.y16d{bottom:676.305600pt;}
.y8{bottom:678.608267pt;}
.y2e7{bottom:679.941600pt;}
.y125{bottom:681.770933pt;}
.y1cf{bottom:682.650933pt;}
.y2d3{bottom:684.489600pt;}
.y288{bottom:686.566267pt;}
.y4a{bottom:687.680000pt;}
.y23f{bottom:687.820267pt;}
.y209{bottom:687.829600pt;}
.yc6{bottom:688.862800pt;}
.y33{bottom:691.600000pt;}
.ya6{bottom:691.768267pt;}
.y16c{bottom:691.808267pt;}
.y1ce{bottom:695.982933pt;}
.y124{bottom:697.273600pt;}
.y2d2{bottom:697.821600pt;}
.y287{bottom:697.896267pt;}
.y49{bottom:701.012000pt;}
.y23e{bottom:701.152267pt;}
.y208{bottom:701.161600pt;}
.yc5{bottom:702.194800pt;}
.y7{bottom:705.274933pt;}
.ya5{bottom:707.270933pt;}
.y16b{bottom:707.310933pt;}
.y286{bottom:709.226267pt;}
.y32{bottom:710.266667pt;}
.y2d1{bottom:711.153600pt;}
.y123{bottom:712.776267pt;}
.y48{bottom:714.344000pt;}
.y23d{bottom:714.484267pt;}
.y207{bottom:714.493600pt;}
.yc4{bottom:715.529467pt;}
.y285{bottom:720.556267pt;}
.ya4{bottom:722.773600pt;}
.y1cd{bottom:722.808267pt;}
.y16a{bottom:722.813600pt;}
.y2d0{bottom:724.485600pt;}
.y47{bottom:727.676000pt;}
.y23c{bottom:727.818933pt;}
.y206{bottom:727.825600pt;}
.y122{bottom:728.278933pt;}
.yc3{bottom:728.861467pt;}
.y284{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y2cf{bottom:737.817600pt;}
.ya3{bottom:738.276267pt;}
.y169{bottom:738.297600pt;}
.y1cc{bottom:738.310933pt;}
.y46{bottom:741.008000pt;}
.y23b{bottom:741.150933pt;}
.y205{bottom:741.157600pt;}
.yc2{bottom:742.198800pt;}
.y283{bottom:743.216267pt;}
.y121{bottom:743.781600pt;}
.y2ce{bottom:751.149600pt;}
.ya2{bottom:753.778933pt;}
.y168{bottom:753.800267pt;}
.y1cb{bottom:753.813600pt;}
.y45{bottom:754.340000pt;}
.y204{bottom:754.489600pt;}
.y282{bottom:754.546267pt;}
.yc1{bottom:755.530800pt;}
.y120{bottom:759.284267pt;}
.y2cd{bottom:764.482933pt;}
.y281{bottom:765.876267pt;}
.y44{bottom:767.673333pt;}
.y203{bottom:767.821600pt;}
.yc0{bottom:768.862800pt;}
.ya1{bottom:769.281600pt;}
.y1ca{bottom:769.297600pt;}
.y167{bottom:769.302933pt;}
.y5{bottom:774.602933pt;}
.y11f{bottom:774.786933pt;}
.y280{bottom:777.206267pt;}
.y43{bottom:781.006667pt;}
.y202{bottom:781.153600pt;}
.ybf{bottom:782.194800pt;}
.ya0{bottom:784.784267pt;}
.y1c9{bottom:784.800267pt;}
.y166{bottom:784.805600pt;}
.y2cc{bottom:788.526267pt;}
.y27f{bottom:788.536267pt;}
.y11e{bottom:790.289600pt;}
.y42{bottom:794.338667pt;}
.y201{bottom:794.485600pt;}
.ybe{bottom:795.530800pt;}
.y2cb{bottom:799.856267pt;}
.y27e{bottom:799.866267pt;}
.y9f{bottom:800.286933pt;}
.y1c8{bottom:800.302933pt;}
.y165{bottom:800.308267pt;}
.y11d{bottom:805.792267pt;}
.y200{bottom:807.817600pt;}
.ybd{bottom:808.862800pt;}
.y2ca{bottom:811.186267pt;}
.y27d{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y9e{bottom:815.789600pt;}
.y1c7{bottom:815.805600pt;}
.y164{bottom:815.810933pt;}
.y41{bottom:821.082800pt;}
.y1ff{bottom:821.150933pt;}
.y23a{bottom:821.152267pt;}
.y11c{bottom:821.294933pt;}
.ybc{bottom:822.194800pt;}
.y2c9{bottom:822.516267pt;}
.y27c{bottom:822.526267pt;}
.y35{bottom:823.475200pt;}
.y9d{bottom:831.292267pt;}
.y1c6{bottom:831.308267pt;}
.y163{bottom:831.313600pt;}
.y2c8{bottom:833.846267pt;}
.y27b{bottom:833.856267pt;}
.y40{bottom:834.414800pt;}
.y239{bottom:834.484267pt;}
.y1fe{bottom:834.496267pt;}
.ybb{bottom:835.526800pt;}
.y11b{bottom:836.797600pt;}
.y2c7{bottom:845.176267pt;}
.y27a{bottom:845.186267pt;}
.y9c{bottom:846.794933pt;}
.y1c5{bottom:846.810933pt;}
.y3f{bottom:847.746800pt;}
.y238{bottom:847.824267pt;}
.y1fd{bottom:847.828267pt;}
.y11a{bottom:852.300267pt;}
.y2c6{bottom:856.506267pt;}
.y279{bottom:856.516267pt;}
.y3e{bottom:861.078800pt;}
.y237{bottom:861.156267pt;}
.yba{bottom:861.158933pt;}
.y1fc{bottom:861.160267pt;}
.y9b{bottom:862.297600pt;}
.y1c4{bottom:862.313600pt;}
.y119{bottom:867.802933pt;}
.y2c5{bottom:867.836267pt;}
.y278{bottom:867.846267pt;}
.y3d{bottom:874.410800pt;}
.y236{bottom:874.488267pt;}
.yb9{bottom:874.490933pt;}
.y1fb{bottom:874.492267pt;}
.y9a{bottom:877.800267pt;}
.y2c4{bottom:879.166267pt;}
.y277{bottom:879.176267pt;}
.y118{bottom:883.305600pt;}
.y3c{bottom:887.744133pt;}
.y235{bottom:887.820267pt;}
.yb8{bottom:887.822933pt;}
.y1fa{bottom:887.824267pt;}
.y2c3{bottom:890.496267pt;}
.y276{bottom:890.506267pt;}
.y99{bottom:893.302933pt;}
.y117{bottom:898.808267pt;}
.y234{bottom:901.152267pt;}
.yb7{bottom:901.154933pt;}
.y1f9{bottom:901.156267pt;}
.y2c2{bottom:901.826267pt;}
.y275{bottom:901.836267pt;}
.y98{bottom:908.805600pt;}
.y2c1{bottom:913.156267pt;}
.y274{bottom:913.166267pt;}
.y116{bottom:914.310933pt;}
.y233{bottom:914.484267pt;}
.yb6{bottom:914.486933pt;}
.y3b{bottom:914.488267pt;}
.y97{bottom:924.308267pt;}
.y2c0{bottom:924.486267pt;}
.y273{bottom:924.496267pt;}
.y232{bottom:927.817600pt;}
.yb5{bottom:927.818933pt;}
.y3a{bottom:927.820267pt;}
.y115{bottom:929.813600pt;}
.y272{bottom:935.826267pt;}
.y96{bottom:939.810933pt;}
.yb4{bottom:941.150933pt;}
.y39{bottom:941.152267pt;}
.y112{bottom:945.316267pt;}
.y271{bottom:947.156267pt;}
.y38{bottom:954.484267pt;}
.y114{bottom:955.312267pt;}
.y95{bottom:955.313600pt;}
.y270{bottom:958.486267pt;}
.y37{bottom:967.816267pt;}
.y26f{bottom:969.816267pt;}
.y113{bottom:970.814933pt;}
.y94{bottom:970.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hd{height:21.193555pt;}
.h15{height:26.656000pt;}
.h3{height:30.687500pt;}
.h16{height:31.920000pt;}
.he{height:32.605469pt;}
.h1f{height:34.200000pt;}
.h7{height:34.523438pt;}
.h20{height:35.496667pt;}
.h21{height:35.696667pt;}
.h23{height:35.710000pt;}
.h24{height:35.790000pt;}
.h22{height:35.803333pt;}
.h2{height:38.359375pt;}
.h4{height:39.318359pt;}
.h8{height:41.040000pt;}
.h10{height:42.195312pt;}
.h9{height:42.846667pt;}
.h1c{height:42.900000pt;}
.h11{height:42.911200pt;}
.h1d{height:42.920800pt;}
.h14{height:42.936800pt;}
.h1b{height:42.942667pt;}
.h19{height:42.953333pt;}
.h17{height:42.953867pt;}
.h18{height:42.964000pt;}
.h1e{height:42.969333pt;}
.h12{height:42.974667pt;}
.h13{height:42.979467pt;}
.hb{height:42.980000pt;}
.hc{height:42.985333pt;}
.ha{height:42.990667pt;}
.h1a{height:42.996000pt;}
.h6{height:43.067460pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x8{left:63.231867pt;}
.x7{left:70.175867pt;}
.x6{left:85.855867pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:211.683467pt;}
.x5{left:223.510133pt;}
.x1b{left:266.976800pt;}
.x16{left:339.919067pt;}
.x13{left:363.247467pt;}
.x15{left:374.702000pt;}
.x14{left:376.902133pt;}
.x18{left:382.122133pt;}
.x17{left:384.331467pt;}
.xd{left:390.220800pt;}
.xe{left:401.560800pt;}
.xc{left:437.839467pt;}
.x10{left:452.670133pt;}
.xf{left:455.414133pt;}
.x11{left:502.006133pt;}
.x3{left:519.632533pt;}
.x12{left:524.415467pt;}
.x19{left:725.336533pt;}
.x1a{left:726.469467pt;}
.xb{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; }
  