
    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_f2c27d1affbaac10aed6758b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_378148c625a4c01720bf7a05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_9aa26ea1f8ecf3ba8eb3a1aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_3bb5fbdcc5154eb13fc86eb5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_478d4914ed539978dd2aa9b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_e586dec8605b3250f94c03cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_cefce3ddb544c9fc0d037aa2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.493000;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_4e651693f5b0169b854bbc36.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_d2c667202a97725b70a3a74d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_b0dedb07cbc91059ebced1b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_006b65d238034873d3ee2044.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.717285;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_fbcfb3e4edec8df6ea31d69f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_25a616bc9da4847819eb63e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008301;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_006b65d238034873d3ee2044.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;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_fbcfb3e4edec8df6ea31d69f.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_25a616bc9da4847819eb63e0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008301;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_006b65d238034873d3ee2044.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.717285;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_1e0b259ed3274b874f4ec077.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_28ad5c3e05723cdc2cce0a6e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;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_006b65d238034873d3ee2044.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.717285;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_1e0b259ed3274b874f4ec077.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_28ad5c3e05723cdc2cce0a6e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.008301;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_f0f1c2945208965868016930.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.482000;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_006b65d238034873d3ee2044.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.717285;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_1e0b259ed3274b874f4ec077.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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_28ad5c3e05723cdc2cce0a6e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.008301;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_006b65d238034873d3ee2044.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.717285;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_1e0b259ed3274b874f4ec077.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;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_28ad5c3e05723cdc2cce0a6e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.008301;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_2538a89a94d59b22baf1a1db.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;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_e7d7b027cc6dcc788231b86d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;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_7e9c8f9f32e2e8454f14969d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.211426;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_622f8eec29a1431f72e76cd8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.715332;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_07728c8d2f9363802ecc3cbc.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.997000;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_e70524ebf41f5b9f43bf1bb5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.234000;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_3e827e4512ed7cc3d6397d28.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_b4c15806c249d88013f9b8dc.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.642000;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:ff26;src:url('chunks/assets/font_3d5637bb6ee3c9c4cfb56c03.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.580000;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:ff27;src:url('chunks/assets/font_2538a89a94d59b22baf1a1db.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000488;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:ff28;src:url('chunks/assets/font_9bbe5f5bbbfeeb7877e7025a.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.006348;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:ff29;src:url('chunks/assets/font_b97ac02641df3fec3503083c.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.211426;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:ff2a;src:url('chunks/assets/font_7e68f91e26eb73f2aa283e49.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000488;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:ff2b;src:url('chunks/assets/font_33b5cf5a6d2c4908cd17ef62.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.006348;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:ff2c;src:url('chunks/assets/font_e90429bef3748976b01b6731.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.211426;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:ff2d;src:url('chunks/assets/font_2538a89a94d59b22baf1a1db.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.000488;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:ff2e;src:url('chunks/assets/font_4d39db6f0becec9d469e08da.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.006348;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:ff2f;src:url('chunks/assets/font_e75966b5d936ca4775035d06.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.211426;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:ff30;src:url('chunks/assets/font_2538a89a94d59b22baf1a1db.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000488;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:ff31;src:url('chunks/assets/font_4d39db6f0becec9d469e08da.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.006348;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:ff32;src:url('chunks/assets/font_df6ba792d11ed88fccbbe645.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.211426;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:ff33;src:url('chunks/assets/font_2538a89a94d59b22baf1a1db.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.000488;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:ff34;src:url('chunks/assets/font_55c0f9598cface1fe4b3a475.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.006348;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:ff35;src:url('chunks/assets/font_d2451abdbae6d07a125f09c3.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.211426;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;}
.m27{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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:-23.784480px;}
.v1{vertical-align:-11.958000px;}
.v9{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.533680px;}
.va{vertical-align:12.912000px;}
.v8{vertical-align:32.880000px;}
.v5{vertical-align:35.258400px;}
.v7{vertical-align:40.338000px;}
.v3{vertical-align:42.489360px;}
.v2{vertical-align:48.114000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls20{letter-spacing:0.000800px;}
.ls12{letter-spacing:0.003178px;}
.ls1e{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.144720px;}
.ls1d{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.179280px;}
.lsd{letter-spacing:0.239040px;}
.ls1c{letter-spacing:0.324000px;}
.lse{letter-spacing:0.358560px;}
.ls10{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.542815px;}
.ls17{letter-spacing:0.548815px;}
.ls13{letter-spacing:0.567986px;}
.ls3{letter-spacing:11.954850px;}
.ls16{letter-spacing:12.339483px;}
.ls24{letter-spacing:13.179812px;}
.ls25{letter-spacing:13.269612px;}
.ls21{letter-spacing:13.448400px;}
.ls23{letter-spacing:13.454400px;}
.lsc{letter-spacing:14.100088px;}
.ls7{letter-spacing:14.824349px;}
.ls1{letter-spacing:14.944200px;}
.ls6{letter-spacing:15.003676px;}
.ls1a{letter-spacing:15.362329px;}
.ls5{letter-spacing:15.422105px;}
.ls8{letter-spacing:15.720983px;}
.ls18{letter-spacing:17.319483px;}
.ls1f{letter-spacing:17.334924px;}
.ls22{letter-spacing:19.297459px;}
.ls19{letter-spacing:21.638767px;}
.ls2{letter-spacing:28.453654px;}
.lsb{letter-spacing:594.193680px;}
.lsa{letter-spacing:606.384720px;}
.ls15{letter-spacing:858.423986px;}
.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;}
}
.wsb{word-spacing:-71.901017px;}
.wsc{word-spacing:-14.943900px;}
.ws80{word-spacing:-13.500000px;}
.ws63{word-spacing:-13.449600px;}
.ws4d{word-spacing:-12.060000px;}
.ws2e{word-spacing:-11.955150px;}
.ws73{word-spacing:-11.357400px;}
.ws1{word-spacing:-10.460700px;}
.ws81{word-spacing:-10.440000px;}
.ws8a{word-spacing:-9.000000px;}
.ws4e{word-spacing:-3.347434px;}
.wsa1{word-spacing:-3.227882px;}
.ws3d{word-spacing:-3.168107px;}
.ws7e{word-spacing:-2.331248px;}
.ws22{word-spacing:-2.271473px;}
.ws9f{word-spacing:-2.151922px;}
.ws3c{word-spacing:-2.032370px;}
.wsa8{word-spacing:-1.990541px;}
.ws36{word-spacing:-1.912819px;}
.ws39{word-spacing:-1.853044px;}
.ws35{word-spacing:-1.793268px;}
.ws32{word-spacing:-1.673717px;}
.wsb7{word-spacing:-1.613952px;}
.ws6f{word-spacing:-1.613941px;}
.ws1a{word-spacing:-1.560154px;}
.wsa0{word-spacing:-1.554166px;}
.ws91{word-spacing:-1.315063px;}
.ws79{word-spacing:-1.255288px;}
.ws60{word-spacing:-1.183565px;}
.ws78{word-spacing:-1.135736px;}
.ws9a{word-spacing:-1.075961px;}
.ws96{word-spacing:-1.016185px;}
.ws5f{word-spacing:-0.777083px;}
.ws86{word-spacing:-0.537984px;}
.ws58{word-spacing:-0.358654px;}
.ws67{word-spacing:-0.334744px;}
.ws37{word-spacing:-0.298878px;}
.ws66{word-spacing:-0.286924px;}
.ws13{word-spacing:-0.268992px;}
.ws25{word-spacing:-0.239102px;}
.ws94{word-spacing:-0.215194px;}
.ws6c{word-spacing:-0.191282px;}
.ws23{word-spacing:-0.179327px;}
.wsa3{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws3{word-spacing:-0.083686px;}
.ws4{word-spacing:-0.070123px;}
.wsd{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.053798px;}
.wse{word-spacing:-0.047821px;}
.wsb6{word-spacing:-0.028224px;}
.wsb5{word-spacing:-0.000250px;}
.ws2{word-spacing:0.000000px;}
.ws2d{word-spacing:0.000814px;}
.ws16{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.wsb0{word-spacing:0.107597px;}
.ws28{word-spacing:0.119551px;}
.ws6b{word-spacing:0.143462px;}
.ws11{word-spacing:0.161395px;}
.ws1f{word-spacing:0.179327px;}
.ws68{word-spacing:0.191282px;}
.ws19{word-spacing:0.215194px;}
.ws31{word-spacing:0.239102px;}
.wsa4{word-spacing:0.268992px;}
.ws3f{word-spacing:0.298878px;}
.ws18{word-spacing:0.322790px;}
.ws7f{word-spacing:0.358654px;}
.wsae{word-spacing:0.376589px;}
.ws41{word-spacing:0.418429px;}
.ws40{word-spacing:0.478205px;}
.ws6d{word-spacing:0.621668px;}
.ws52{word-spacing:0.672000px;}
.ws43{word-spacing:0.777083px;}
.ws5b{word-spacing:0.836858px;}
.wsbb{word-spacing:0.860774px;}
.ws21{word-spacing:0.896634px;}
.ws4c{word-spacing:0.956410px;}
.ws6a{word-spacing:1.004233px;}
.ws55{word-spacing:1.016185px;}
.ws69{word-spacing:1.052053px;}
.ws3a{word-spacing:1.075961px;}
.wsba{word-spacing:1.075968px;}
.wsb9{word-spacing:1.111712px;}
.ws9d{word-spacing:1.135736px;}
.ws48{word-spacing:1.195512px;}
.ws9b{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws2c{word-spacing:1.434614px;}
.ws3b{word-spacing:1.494390px;}
.ws51{word-spacing:1.554166px;}
.ws29{word-spacing:1.673717px;}
.ws38{word-spacing:1.793268px;}
.ws95{word-spacing:1.853044px;}
.ws56{word-spacing:1.912819px;}
.ws97{word-spacing:1.972595px;}
.ws45{word-spacing:2.032370px;}
.ws90{word-spacing:2.151922px;}
.ws30{word-spacing:2.211697px;}
.ws53{word-spacing:2.271473px;}
.ws88{word-spacing:2.391024px;}
.ws0{word-spacing:2.511541px;}
.wsa6{word-spacing:2.582323px;}
.ws34{word-spacing:2.749678px;}
.wsf{word-spacing:2.869236px;}
.wsb2{word-spacing:2.905114px;}
.ws5d{word-spacing:2.929004px;}
.ws33{word-spacing:2.988780px;}
.wsa7{word-spacing:3.066509px;}
.ws98{word-spacing:3.108331px;}
.wsb3{word-spacing:3.120307px;}
.ws24{word-spacing:3.168107px;}
.wsac{word-spacing:3.174106px;}
.wsbc{word-spacing:3.222518px;}
.wsb4{word-spacing:3.223987px;}
.wsb1{word-spacing:3.226867px;}
.ws8e{word-spacing:3.227882px;}
.wsab{word-spacing:3.227904px;}
.ws10{word-spacing:3.258584px;}
.ws8c{word-spacing:3.301200px;}
.ws93{word-spacing:3.308400px;}
.ws92{word-spacing:3.319920px;}
.ws70{word-spacing:3.347434px;}
.ws6e{word-spacing:3.407209px;}
.wsbd{word-spacing:3.496896px;}
.wsa5{word-spacing:3.500004px;}
.ws1d{word-spacing:3.586536px;}
.ws7b{word-spacing:3.646312px;}
.ws5e{word-spacing:3.706087px;}
.ws2f{word-spacing:3.825638px;}
.ws4f{word-spacing:3.885414px;}
.ws54{word-spacing:3.945190px;}
.ws75{word-spacing:3.999550px;}
.ws46{word-spacing:4.004965px;}
.ws42{word-spacing:4.064741px;}
.ws7d{word-spacing:4.124516px;}
.ws8d{word-spacing:4.303843px;}
.ws5c{word-spacing:4.423394px;}
.ws99{word-spacing:4.542946px;}
.ws4a{word-spacing:4.602721px;}
.wsa9{word-spacing:4.626619px;}
.ws14{word-spacing:4.626662px;}
.wsa2{word-spacing:4.680461px;}
.ws17{word-spacing:4.788058px;}
.ws20{word-spacing:4.841824px;}
.wsb8{word-spacing:4.949453px;}
.ws7c{word-spacing:4.961375px;}
.ws9c{word-spacing:5.140702px;}
.ws2b{word-spacing:5.320028px;}
.wsad{word-spacing:5.326042px;}
.ws8{word-spacing:5.481407px;}
.ws87{word-spacing:5.559131px;}
.ws44{word-spacing:5.618906px;}
.ws8f{word-spacing:5.678682px;}
.wsaf{word-spacing:5.702630px;}
.wsaa{word-spacing:5.864026px;}
.ws9e{word-spacing:5.917784px;}
.ws59{word-spacing:6.037336px;}
.ws5a{word-spacing:6.097111px;}
.ws57{word-spacing:6.156887px;}
.ws76{word-spacing:6.576425px;}
.ws7a{word-spacing:6.694867px;}
.ws26{word-spacing:6.754643px;}
.ws49{word-spacing:7.292623px;}
.ws47{word-spacing:7.471950px;}
.ws89{word-spacing:7.591501px;}
.ws1c{word-spacing:7.639373px;}
.ws27{word-spacing:7.651277px;}
.ws3e{word-spacing:8.069706px;}
.ws4b{word-spacing:8.189257px;}
.ws50{word-spacing:8.308808px;}
.ws74{word-spacing:8.981018px;}
.ws71{word-spacing:8.985550px;}
.ws72{word-spacing:9.384769px;}
.ws6{word-spacing:9.833058px;}
.ws7{word-spacing:11.841512px;}
.ws65{word-spacing:13.395802px;}
.ws84{word-spacing:14.772976px;}
.ws1b{word-spacing:18.753079px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws83{word-spacing:31.309936px;}
.ws82{word-spacing:38.534416px;}
.ws85{word-spacing:75.251520px;}
.ws64{word-spacing:98.182080px;}
.ws8b{word-spacing:106.905600px;}
.ws62{word-spacing:170.863718px;}
.ws61{word-spacing:511.461389px;}
.ws77{word-spacing:873.234425px;}
._a{margin-left:-23.252708px;}
._71{margin-left:-18.993834px;}
._1{margin-left:-16.276849px;}
._d{margin-left:-6.625055px;}
._2{margin-left:-5.397721px;}
._5{margin-left:-3.853663px;}
._1c{margin-left:-2.482676px;}
._6{margin-left:-1.464498px;}
._22{width:1.078967px;}
._0{width:2.341188px;}
._9{width:3.347434px;}
._23{width:5.154271px;}
._7{width:6.193496px;}
._24{width:7.569381px;}
._25{width:9.004005px;}
._e{width:11.094379px;}
._3{width:12.975394px;}
._1d{width:14.198694px;}
._f{width:15.709133px;}
._10{width:16.797042px;}
._1b{width:18.231550px;}
._12{width:19.475021px;}
._15{width:20.907626px;}
._2f{width:21.997421px;}
._18{width:23.210850px;}
._13{width:24.251371px;}
._4{width:25.942536px;}
._1e{width:28.632512px;}
._5e{width:30.126902px;}
._11{width:31.418266px;}
._31{width:32.517926px;}
._14{width:33.653663px;}
._6f{width:36.044687px;}
._30{width:37.419526px;}
._16{width:39.332345px;}
._1f{width:40.796843px;}
._17{width:42.321125px;}
._20{width:44.024725px;}
._68{width:46.812960px;}
._66{width:53.329330px;}
._8{width:54.424175px;}
._64{width:59.302482px;}
._70{width:61.868160px;}
._65{width:63.306350px;}
._67{width:67.651200px;}
._b{width:69.366642px;}
._63{width:71.030478px;}
._6a{width:75.543840px;}
._c{width:84.315250px;}
._62{width:91.412640px;}
._5d{width:93.548814px;}
._5c{width:96.537594px;}
._69{width:105.861600px;}
._54{width:127.482386px;}
._4c{width:138.221593px;}
._55{width:147.515213px;}
._4b{width:154.061280px;}
._46{width:161.768419px;}
._3a{width:163.385741px;}
._4a{width:169.240320px;}
._39{width:176.889139px;}
._49{width:183.941280px;}
._38{width:190.284941px;}
._34{width:194.857805px;}
._48{width:199.120320px;}
._37{width:203.734541px;}
._59{width:210.244147px;}
._36{width:217.237939px;}
._42{width:221.667289px;}
._58{width:223.693747px;}
._51{width:226.839100px;}
._57{width:237.197146px;}
._2b{width:247.044553px;}
._33{width:261.621619px;}
._40{width:296.052595px;}
._5a{width:297.289958px;}
._2e{width:304.227648px;}
._2a{width:309.939044px;}
._2d{width:330.705266px;}
._28{width:414.624269px;}
._6b{width:416.347920px;}
._26{width:417.870054px;}
._4e{width:433.340158px;}
._27{width:452.032867px;}
._29{width:469.380983px;}
._45{width:475.566793px;}
._4d{width:477.774626px;}
._3d{width:486.032627px;}
._53{width:490.503506px;}
._6c{width:500.121580px;}
._3b{width:520.678796px;}
._43{width:537.840486px;}
._3c{width:560.417933px;}
._32{width:565.792790px;}
._47{width:567.477673px;}
._52{width:579.127586px;}
._35{width:595.064102px;}
._41{width:612.225792px;}
._50{width:686.280553px;}
._3f{width:713.115673px;}
._5b{width:754.199770px;}
._4f{width:774.904633px;}
._3e{width:787.500979px;}
._2c{width:1059.063433px;}
._56{width:1169.039232px;}
._19{width:1208.169948px;}
._44{width:1270.557360px;}
._5f{width:1308.744000px;}
._61{width:1310.178240px;}
._60{width:1381.890240px;}
._6d{width:2218.175334px;}
._21{width:2242.633014px;}
._6e{width:2652.966529px;}
._1a{width:2676.876529px;}
.fc7{color:rgb(255,192,0);}
.fc4{color:rgb(68,114,196);}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(228,89,24);}
.fc6{color:rgb(165,165,165);}
.fc5{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:28.080000px;}
.fs11{font-size:36.000000px;}
.fs10{font-size:41.760000px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:45.429600px;}
.fsf{font-size:47.337600px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:48.240000px;}
.fsb{font-size:49.829400px;}
.fs5{font-size:53.798400px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:59.775600px;}
.fsd{font-size:62.286600px;}
.fsa{font-size:72.000000px;}
.fse{font-size:83.686200px;}
.fs1{font-size:92.417760px;}
.fs3{font-size:107.596800px;}
.y34e{bottom:-888.530040px;}
.y212{bottom:-822.420540px;}
.y3c3{bottom:-794.276040px;}
.y23e{bottom:-763.556940px;}
.y23d{bottom:-744.299280px;}
.y3eb{bottom:-738.475140px;}
.y23c{bottom:-725.220900px;}
.y3ea{bottom:-719.217480px;}
.y23b{bottom:-705.963240px;}
.y3e9{bottom:-699.959820px;}
.yb6{bottom:-689.630040px;}
.y367{bottom:-687.467520px;}
.y23a{bottom:-686.705580px;}
.ye7{bottom:-682.347540px;}
.y3e8{bottom:-680.702160px;}
.y366{bottom:-667.672020px;}
.y239{bottom:-667.432980px;}
.y3e7{bottom:-661.429560px;}
.y238{bottom:-648.175320px;}
.y375{bottom:-645.168420px;}
.y3e6{bottom:-642.351180px;}
.y373{bottom:-624.825540px;}
.y3e5{bottom:-623.093520px;}
.y368{bottom:-609.530940px;}
.y237{bottom:-609.301440px;}
.y11b{bottom:-604.457040px;}
.y3e4{bottom:-603.835860px;}
.y14c{bottom:-600.203040px;}
.y369{bottom:-593.870940px;}
.y236{bottom:-588.236040px;}
.y377{bottom:-587.210220px;}
.y3e3{bottom:-584.578200px;}
.y36a{bottom:-578.210940px;}
.y37d{bottom:-570.474900px;}
.y235{bottom:-567.364860px;}
.y231{bottom:-567.006300px;}
.y378{bottom:-564.889500px;}
.y374{bottom:-564.173460px;}
.y36b{bottom:-562.550940px;}
.y3e2{bottom:-561.002880px;}
.y36c{bottom:-546.890940px;}
.y230{bottom:-546.658020px;}
.y234{bottom:-546.299460px;}
.y17f{bottom:-543.584040px;}
.y1b0{bottom:-543.461040px;}
.y379{bottom:-542.568780px;}
.y36d{bottom:-531.408420px;}
.y233{bottom:-525.234060px;}
.y3e1{bottom:-523.742520px;}
.y37a{bottom:-520.070580px;}
.y376{bottom:-518.086980px;}
.y36e{bottom:-515.748420px;}
.y3e0{bottom:-504.469920px;}
.y232{bottom:-504.362880px;}
.y36f{bottom:-500.088420px;}
.y37b{bottom:-497.749860px;}
.y3df{bottom:-485.212260px;}
.y370{bottom:-484.428420px;}
.y22f{bottom:-483.297480px;}
.y37c{bottom:-475.429140px;}
.y371{bottom:-468.768420px;}
.y2bd{bottom:-466.970040px;}
.y3de{bottom:-465.954600px;}
.y22e{bottom:-462.426300px;}
.y372{bottom:-453.108420px;}
.y3dd{bottom:-446.696940px;}
.y22d{bottom:-441.360900px;}
.y229{bottom:-441.002340px;}
.y3dc{bottom:-427.618560px;}
.y228{bottom:-420.833340px;}
.y22c{bottom:-420.474780px;}
.ye3{bottom:-414.226080px;}
.y3db{bottom:-408.360900px;}
.y365{bottom:-407.208060px;}
.y114{bottom:-406.943580px;}
.y22b{bottom:-399.424320px;}
.ye2{bottom:-394.968420px;}
.y3da{bottom:-389.103240px;}
.y364{bottom:-387.950400px;}
.y113{bottom:-387.685920px;}
.y2d6{bottom:-386.682480px;}
.y22a{bottom:-378.358920px;}
.ye1{bottom:-375.710760px;}
.y3d9{bottom:-369.830640px;}
.y363{bottom:-368.692740px;}
.y112{bottom:-368.428260px;}
.y2d5{bottom:-367.424820px;}
.y227{bottom:-357.487740px;}
.ye0{bottom:-356.453100px;}
.y3d8{bottom:-350.572980px;}
.y362{bottom:-349.435080px;}
.y111{bottom:-349.170600px;}
.y2d4{bottom:-348.167160px;}
.ydf{bottom:-337.374720px;}
.y224{bottom:-336.780900px;}
.y226{bottom:-336.422340px;}
.y3d7{bottom:-331.494600px;}
.y361{bottom:-330.162480px;}
.y110{bottom:-330.092220px;}
.y148{bottom:-329.053080px;}
.y2d3{bottom:-328.909500px;}
.y179{bottom:-324.799080px;}
.yde{bottom:-318.117060px;}
.y225{bottom:-316.253340px;}
.y3d6{bottom:-312.236940px;}
.y360{bottom:-311.084100px;}
.y10f{bottom:-310.834560px;}
.y2d2{bottom:-309.831120px;}
.y147{bottom:-309.795420px;}
.y178{bottom:-305.541420px;}
.ydd{bottom:-298.844460px;}
.y3d5{bottom:-292.979280px;}
.y35f{bottom:-291.826440px;}
.y10e{bottom:-291.561960px;}
.y2d1{bottom:-290.573460px;}
.y146{bottom:-290.537760px;}
.y177{bottom:-286.283760px;}
.y223{bottom:-286.204500px;}
.ydc{bottom:-279.586800px;}
.y3d4{bottom:-273.721620px;}
.y35e{bottom:-272.568780px;}
.y10d{bottom:-272.304300px;}
.y2d0{bottom:-271.315800px;}
.y145{bottom:-271.280100px;}
.y222{bottom:-268.924500px;}
.y1ac{bottom:-268.180080px;}
.y1dd{bottom:-268.057080px;}
.y176{bottom:-267.026100px;}
.ydb{bottom:-260.329140px;}
.y3d3{bottom:-254.449020px;}
.y35d{bottom:-253.311120px;}
.y10c{bottom:-253.046640px;}
.y144{bottom:-252.201720px;}
.y2cf{bottom:-252.043200px;}
.y1ab{bottom:-248.922420px;}
.y1dc{bottom:-248.799420px;}
.y175{bottom:-247.947720px;}
.yda{bottom:-241.250760px;}
.y3d2{bottom:-235.370640px;}
.y35c{bottom:-234.053460px;}
.y10b{bottom:-233.968260px;}
.y221{bottom:-233.097300px;}
.y143{bottom:-232.944060px;}
.y2ce{bottom:-232.785540px;}
.y1aa{bottom:-229.664760px;}
.y1db{bottom:-229.541760px;}
.y174{bottom:-228.690060px;}
.yd9{bottom:-221.993100px;}
.y3d1{bottom:-216.112980px;}
.y35b{bottom:-214.975080px;}
.y10a{bottom:-214.710600px;}
.y220{bottom:-213.839640px;}
.y2cd{bottom:-213.707160px;}
.y142{bottom:-213.671460px;}
.y1a9{bottom:-210.407100px;}
.y1da{bottom:-210.284100px;}
.y173{bottom:-209.417460px;}
.yd8{bottom:-202.735440px;}
.y3d0{bottom:-196.855320px;}
.y35a{bottom:-195.702480px;}
.y109{bottom:-195.452940px;}
.y390{bottom:-195.368040px;}
.y21f{bottom:-194.761260px;}
.y2cc{bottom:-194.449500px;}
.y141{bottom:-194.413800px;}
.y1a8{bottom:-191.328720px;}
.y1d9{bottom:-191.205720px;}
.y172{bottom:-190.159800px;}
.y7d{bottom:-184.895040px;}
.yd7{bottom:-183.462840px;}
.y3cf{bottom:-177.597660px;}
.y359{bottom:-176.444820px;}
.y108{bottom:-176.180340px;}
.y21e{bottom:-175.503600px;}
.y2cb{bottom:-175.191840px;}
.y140{bottom:-175.156140px;}
.y1a7{bottom:-172.071060px;}
.y1d8{bottom:-171.948060px;}
.y171{bottom:-170.902140px;}
.y3ce{bottom:-158.340000px;}
.y358{bottom:-157.187160px;}
.y21d{bottom:-156.245940px;}
.y13f{bottom:-156.077760px;}
.y2ca{bottom:-155.934180px;}
.y1a6{bottom:-152.798460px;}
.y1d7{bottom:-152.675460px;}
.y170{bottom:-151.823760px;}
.yd6{bottom:-149.085900px;}
.yd5{bottom:-145.664640px;}
.y107{bottom:-141.803400px;}
.y3cd{bottom:-139.261620px;}
.yd4{bottom:-138.837060px;}
.y106{bottom:-138.382140px;}
.y357{bottom:-137.929500px;}
.y21c{bottom:-136.973340px;}
.y13e{bottom:-136.820100px;}
.y2c9{bottom:-136.676520px;}
.y1a5{bottom:-133.540800px;}
.y1d6{bottom:-133.417800px;}
.y16f{bottom:-132.566100px;}
.y105{bottom:-131.554560px;}
.y9c{bottom:-122.251620px;}
.y3cc{bottom:-119.989020px;}
.y356{bottom:-118.851120px;}
.yd3{bottom:-118.668060px;}
.y21b{bottom:-117.715680px;}
.y2c8{bottom:-117.583200px;}
.y13d{bottom:-117.562440px;}
.y1a4{bottom:-114.283140px;}
.y1d5{bottom:-114.160140px;}
.y16e{bottom:-113.308440px;}
.y104{bottom:-111.385560px;}
.y9b{bottom:-102.993960px;}
.y3cb{bottom:-100.731360px;}
.y355{bottom:-99.593460px;}
.y21a{bottom:-98.458020px;}
.y2c7{bottom:-98.325540px;}
.y13c{bottom:-98.289840px;}
.y1a3{bottom:-95.204760px;}
.y1d4{bottom:-95.081760px;}
.y16d{bottom:-94.035840px;}
.yd2{bottom:-92.030040px;}
.y103{bottom:-84.747540px;}
.y9a{bottom:-83.736300px;}
.y3ca{bottom:-81.473700px;}
.y354{bottom:-80.335800px;}
.y219{bottom:-79.379640px;}
.y2c6{bottom:-79.067880px;}
.y1a2{bottom:-75.947100px;}
.y1d3{bottom:-75.824100px;}
.y32c{bottom:-72.964440px;}
.yd0{bottom:-71.875980px;}
.y101{bottom:-64.593480px;}
.y13b{bottom:-63.912900px;}
.y13a{bottom:-60.491640px;}
.y99{bottom:-60.160980px;}
.y218{bottom:-60.121980px;}
.y16c{bottom:-59.658900px;}
.y1a1{bottom:-56.689440px;}
.y1d2{bottom:-56.566440px;}
.y353{bottom:-56.566260px;}
.y16b{bottom:-56.237640px;}
.y139{bottom:-53.664060px;}
.yd1{bottom:-51.527700px;}
.y16a{bottom:-49.410060px;}
.y3c9{bottom:-44.760000px;}
.y102{bottom:-44.245200px;}
.y2c5{bottom:-42.345000px;}
.y1a0{bottom:-37.416840px;}
.y1d1{bottom:-37.293840px;}
.y138{bottom:-33.495060px;}
.yce{bottom:-30.656520px;}
.y169{bottom:-29.241060px;}
.y3c8{bottom:-27.480000px;}
.y2c4{bottom:-25.065000px;}
.y98{bottom:-23.439000px;}
.y217{bottom:-23.400000px;}
.yff{bottom:-23.374020px;}
.y352{bottom:-19.849500px;}
.ycd{bottom:-10.308240px;}
.y137{bottom:-6.857040px;}
.y19f{bottom:-3.039900px;}
.yfe{bottom:-3.025740px;}
.y1d0{bottom:-2.916900px;}
.y168{bottom:-2.603040px;}
.y97{bottom:-0.938820px;}
.y3c7{bottom:-0.663240px;}
.yc8{bottom:-0.223740px;}
.y0{bottom:0.000000px;}
.y19e{bottom:0.381360px;}
.y1cf{bottom:0.504360px;}
.ycf{bottom:0.851940px;}
.y214{bottom:1.431000px;}
.y3c5{bottom:1.792440px;}
.y2c3{bottom:1.936800px;}
.y317{bottom:2.159280px;}
.y34a{bottom:2.707020px;}
.y347{bottom:2.883060px;}
.y351{bottom:2.885940px;}
.y343{bottom:3.058380px;}
.y215{bottom:4.131000px;}
.y3a8{bottom:4.137480px;}
.y3a9{bottom:5.694480px;}
.y216{bottom:5.763420px;}
.yf9{bottom:7.058760px;}
.y19d{bottom:7.208940px;}
.y1ce{bottom:7.331940px;}
.y100{bottom:8.134440px;}
.ycc{bottom:9.845820px;}
.y135{bottom:13.297020px;}
.yfd{bottom:17.128320px;}
.y166{bottom:17.551020px;}
.y16{bottom:19.411259px;}
.yc7{bottom:20.109600px;}
.y19c{bottom:27.377940px;}
.yf8{bottom:27.392100px;}
.y1cd{bottom:27.500940px;}
.ycb{bottom:30.194100px;}
.y44{bottom:31.890000px;}
.y136{bottom:33.645300px;}
.yfc{bottom:37.476600px;}
.y3c6{bottom:37.867020px;}
.y167{bottom:37.899300px;}
.yc6{bottom:40.263660px;}
.y2c2{bottom:40.272840px;}
.yf7{bottom:47.546160px;}
.y3b7{bottom:47.993580px;}
.yca{bottom:50.348160px;}
.y19b{bottom:54.015960px;}
.y1cc{bottom:54.138960px;}
.y133{bottom:54.516480px;}
.yfb{bottom:57.630660px;}
.y164{bottom:58.770480px;}
.y2c1{bottom:60.426900px;}
.y34f{bottom:64.029420px;}
.y348{bottom:64.378980px;}
.y3b5{bottom:68.336460px;}
.yc9{bottom:70.696440px;}
.y199{bottom:74.170020px;}
.y1ca{bottom:74.293020px;}
.y132{bottom:74.864760px;}
.yfa{bottom:77.978940px;}
.y3fc{bottom:78.364320px;}
.y163{bottom:79.118760px;}
.y3aa{bottom:83.631060px;}
.y2f4{bottom:84.367800px;}
.y12d{bottom:84.949260px;}
.y134{bottom:86.024940px;}
.y15e{bottom:89.203260px;}
.y165{bottom:90.278940px;}
.yc5{bottom:91.567620px;}
.y19a{bottom:94.518300px;}
.y1cb{bottom:94.641300px;}
.y131{bottom:95.018820px;}
.y3fa{bottom:98.521980px;}
.yf6{bottom:98.850120px;}
.y162{bottom:99.272820px;}
.y3ab{bottom:99.291060px;}
.yc4{bottom:102.010680px;}
.y43{bottom:103.621500px;}
.y14{bottom:104.646000px;}
.y2f2{bottom:104.714460px;}
.y12c{bottom:105.282600px;}
.y328{bottom:105.672000px;}
.y3b9{bottom:105.951780px;}
.ya6{bottom:107.461500px;}
.y287{bottom:107.566500px;}
.yf5{bottom:109.293180px;}
.y15d{bottom:109.536600px;}
.y1fa{bottom:110.587500px;}
.y2b9{bottom:110.884500px;}
.y3ec{bottom:114.004500px;}
.y3ac{bottom:114.951060px;}
.y130{bottom:115.367100px;}
.y197{bottom:115.389480px;}
.y1c8{bottom:115.512480px;}
.y79{bottom:117.355500px;}
.y412{bottom:119.148000px;}
.y161{bottom:119.621100px;}
.y2eb{bottom:120.009060px;}
.y42{bottom:122.449500px;}
.y13{bottom:122.535000px;}
.y3bf{bottom:122.687100px;}
.y327{bottom:124.501500px;}
.y12b{bottom:125.436660px;}
.ya5{bottom:126.291000px;}
.y286{bottom:126.396000px;}
.y3ed{bottom:126.605580px;}
.y3ba{bottom:128.272500px;}
.y3b6{bottom:128.988540px;}
.y1f9{bottom:129.417000px;}
.y15c{bottom:129.690660px;}
.y2b8{bottom:129.714000px;}
.y3ad{bottom:130.611060px;}
.y3fe{bottom:134.519100px;}
.y12f{bottom:135.521160px;}
.y196{bottom:135.737760px;}
.y1c7{bottom:135.860760px;}
.y78{bottom:136.185000px;}
.y43d{bottom:137.037000px;}
.y411{bottom:137.977500px;}
.y3ee{bottom:139.384140px;}
.y160{bottom:139.775160px;}
.y12{bottom:140.422500px;}
.y41{bottom:141.279000px;}
.y407{bottom:141.418500px;}
.yc3{bottom:142.506000px;}
.y326{bottom:143.329500px;}
.ya4{bottom:145.120500px;}
.y285{bottom:145.225500px;}
.y191{bottom:145.822260px;}
.y1c2{bottom:145.945260px;}
.y3ae{bottom:146.271060px;}
.y198{bottom:146.897940px;}
.y1c9{bottom:147.020940px;}
.y1f8{bottom:148.246500px;}
.y2b7{bottom:148.543500px;}
.yf4{bottom:149.788500px;}
.y2ec{bottom:150.431220px;}
.y3bb{bottom:150.593220px;}
.y3ef{bottom:151.985220px;}
.y43c{bottom:154.296000px;}
.y3ff{bottom:155.221620px;}
.y12e{bottom:155.869440px;}
.y195{bottom:155.891820px;}
.y1c6{bottom:156.014820px;}
.y410{bottom:156.807000px;}
.y11{bottom:158.310000px;}
.y77{bottom:159.496500px;}
.y40{bottom:160.108500px;}
.y15f{bottom:160.123440px;}
.y406{bottom:160.650000px;}
.y3af{bottom:161.753580px;}
.y325{bottom:162.159000px;}
.y3fd{bottom:162.602700px;}
.y3fb{bottom:163.688820px;}
.ya3{bottom:163.950000px;}
.y284{bottom:164.055000px;}
.y3f0{bottom:164.763780px;}
.y2f3{bottom:165.193920px;}
.y37e{bottom:166.153500px;}
.y190{bottom:166.155600px;}
.y246{bottom:166.225500px;}
.y1c1{bottom:166.278600px;}
.y1f7{bottom:167.076000px;}
.y2b6{bottom:167.373000px;}
.y43b{bottom:171.556500px;}
.y3bc{bottom:173.091420px;}
.y3b8{bottom:175.075020px;}
.y40f{bottom:175.636500px;}
.y400{bottom:175.746660px;}
.y10{bottom:176.199000px;}
.y194{bottom:176.240100px;}
.y1c5{bottom:176.363100px;}
.y12a{bottom:176.740620px;}
.y3f1{bottom:177.364860px;}
.y3b0{bottom:177.413580px;}
.yc2{bottom:178.324200px;}
.y3f{bottom:178.938000px;}
.y76{bottom:179.671500px;}
.y2ed{bottom:180.665460px;}
.y324{bottom:180.988500px;}
.y15b{bottom:180.994620px;}
.y405{bottom:181.321620px;}
.ya2{bottom:182.779500px;}
.yf3{bottom:185.606700px;}
.y1f6{bottom:185.905500px;}
.y3c0{bottom:186.069000px;}
.y2b5{bottom:186.202500px;}
.y18f{bottom:186.309660px;}
.y1c0{bottom:186.432660px;}
.y129{bottom:187.183680px;}
.y43a{bottom:188.817000px;}
.y245{bottom:189.865500px;}
.y3f2{bottom:189.965940px;}
.y15a{bottom:191.437680px;}
.y34b{bottom:191.571000px;}
.y3b1{bottom:193.073580px;}
.yf{bottom:194.086500px;}
.y40e{bottom:194.466000px;}
.y350{bottom:194.941500px;}
.y3bd{bottom:195.412140px;}
.y193{bottom:196.394160px;}
.y401{bottom:196.449180px;}
.y1c4{bottom:196.517160px;}
.yc1{bottom:197.596800px;}
.y3e{bottom:197.767500px;}
.y283{bottom:198.574500px;}
.y323{bottom:199.818000px;}
.ya1{bottom:201.609000px;}
.y3f3{bottom:202.744500px;}
.y1f5{bottom:204.735000px;}
.yf2{bottom:204.879300px;}
.y2b4{bottom:205.032000px;}
.y439{bottom:206.077500px;}
.y3b2{bottom:208.733580px;}
.y2ee{bottom:210.910140px;}
.ye{bottom:211.974000px;}
.y75{bottom:213.295500px;}
.y244{bottom:213.507000px;}
.y3f4{bottom:215.345580px;}
.y3d{bottom:216.597000px;}
.y192{bottom:216.742440px;}
.yc0{bottom:216.854460px;}
.y1c3{bottom:216.865440px;}
.y402{bottom:216.963780px;}
.y3be{bottom:217.732860px;}
.y322{bottom:218.647500px;}
.ya0{bottom:220.438500px;}
.y438{bottom:223.338000px;}
.y1f4{bottom:223.564500px;}
.y2b3{bottom:223.860000px;}
.yf1{bottom:224.136960px;}
.y3b3{bottom:224.393580px;}
.y128{bottom:227.679000px;}
.y3f5{bottom:228.124140px;}
.yd{bottom:229.863000px;}
.y159{bottom:231.933000px;}
.y74{bottom:232.125000px;}
.y282{bottom:233.095500px;}
.y3c{bottom:235.426500px;}
.ybf{bottom:236.112120px;}
.y243{bottom:237.147000px;}
.y321{bottom:237.477000px;}
.y18e{bottom:237.613620px;}
.y403{bottom:237.666300px;}
.y1bf{bottom:237.736620px;}
.y9f{bottom:239.268000px;}
.y3c4{bottom:239.593500px;}
.y3b4{bottom:240.053580px;}
.y437{bottom:240.598500px;}
.y3f6{bottom:240.725220px;}
.y2ef{bottom:241.332300px;}
.y1f3{bottom:242.394000px;}
.y2b2{bottom:242.689500px;}
.yf0{bottom:243.394620px;}
.y300{bottom:244.568700px;}
.y2f9{bottom:245.466540px;}
.y34d{bottom:245.655540px;}
.y18d{bottom:248.056680px;}
.y1be{bottom:248.179680px;}
.y73{bottom:250.954500px;}
.y281{bottom:251.925000px;}
.y3f7{bottom:253.503780px;}
.y3b{bottom:254.256000px;}
.ybe{bottom:255.190500px;}
.y34c{bottom:255.195000px;}
.y320{bottom:256.306500px;}
.y436{bottom:257.859000px;}
.y404{bottom:258.180900px;}
.y2ff{bottom:258.787980px;}
.y2f8{bottom:259.685820px;}
.y242{bottom:260.787000px;}
.y1f2{bottom:261.223500px;}
.y2b1{bottom:261.519000px;}
.yef{bottom:262.473000px;}
.y9e{bottom:262.581000px;}
.y127{bottom:263.497200px;}
.y3f8{bottom:266.104860px;}
.y158{bottom:267.751200px;}
.y345{bottom:267.951420px;}
.y301{bottom:269.770860px;}
.y72{bottom:269.784000px;}
.y280{bottom:270.754500px;}
.y2fa{bottom:271.211580px;}
.y2f0{bottom:271.566540px;}
.y2fe{bottom:272.829780px;}
.y3a{bottom:273.085500px;}
.y2f7{bottom:273.727620px;}
.ybd{bottom:274.448160px;}
.y435{bottom:275.119500px;}
.y31f{bottom:275.136000px;}
.y3f9{bottom:278.883420px;}
.y1f1{bottom:280.053000px;}
.y2b0{bottom:280.348500px;}
.yee{bottom:281.730660px;}
.y126{bottom:282.769800px;}
.y241{bottom:284.428500px;}
.y3a6{bottom:285.953940px;}
.y27f{bottom:286.854000px;}
.y157{bottom:287.023800px;}
.y2fd{bottom:287.049060px;}
.y2f6{bottom:287.946900px;}
.y18c{bottom:288.552000px;}
.y71{bottom:288.613500px;}
.y1bd{bottom:288.675000px;}
.y27e{bottom:289.584000px;}
.y39{bottom:291.915000px;}
.y434{bottom:292.380000px;}
.y9d{bottom:293.008500px;}
.ybc{bottom:293.705820px;}
.y31e{bottom:293.965500px;}
.y1f0{bottom:298.882500px;}
.y2af{bottom:299.178000px;}
.y2fb{bottom:299.472660px;}
.yc{bottom:299.892000px;}
.yed{bottom:300.988320px;}
.y2fc{bottom:301.268340px;}
.y2f1{bottom:301.988700px;}
.y125{bottom:302.027460px;}
.y2f5{bottom:302.166180px;}
.y302{bottom:302.354100px;}
.y3a5{bottom:305.211600px;}
.y27d{bottom:305.683500px;}
.y156{bottom:306.281460px;}
.y70{bottom:307.443000px;}
.y27c{bottom:308.413500px;}
.y433{bottom:309.639000px;}
.y38{bottom:310.744500px;}
.y211{bottom:311.765040px;}
.y31d{bottom:312.795000px;}
.ybb{bottom:312.963480px;}
.y7a{bottom:315.436500px;}
.y1ef{bottom:317.712000px;}
.yb{bottom:317.779500px;}
.y2ae{bottom:318.007500px;}
.y240{bottom:319.036500px;}
.yec{bottom:320.245980px;}
.y124{bottom:321.285120px;}
.y210{bottom:321.304500px;}
.y18b{bottom:324.370200px;}
.y3a4{bottom:324.469260px;}
.y1bc{bottom:324.493200px;}
.y155{bottom:325.539120px;}
.y6f{bottom:326.272500px;}
.y432{bottom:326.899500px;}
.y37{bottom:329.574000px;}
.y2c0{bottom:330.437520px;}
.y31c{bottom:331.624500px;}
.yba{bottom:332.236080px;}
.ya{bottom:335.667000px;}
.y1ee{bottom:336.541500px;}
.y2ad{bottom:336.837000px;}
.yeb{bottom:339.518580px;}
.y3c2{bottom:339.909540px;}
.y123{bottom:340.363500px;}
.y18a{bottom:343.642800px;}
.y3a3{bottom:343.726920px;}
.y1bb{bottom:343.765800px;}
.y431{bottom:344.160000px;}
.y154{bottom:344.617500px;}
.y27b{bottom:344.839500px;}
.y6e{bottom:345.102000px;}
.y279{bottom:345.378000px;}
.y36{bottom:348.403500px;}
.y3c1{bottom:349.449000px;}
.y31b{bottom:350.454000px;}
.y2bf{bottom:350.591580px;}
.yb9{bottom:351.314460px;}
.y9{bottom:353.556000px;}
.y278{bottom:354.343500px;}
.y274{bottom:355.090500px;}
.y1ed{bottom:355.371000px;}
.y2ac{bottom:355.666500px;}
.y23f{bottom:357.696000px;}
.yea{bottom:358.596960px;}
.y122{bottom:359.621160px;}
.y430{bottom:361.420500px;}
.y189{bottom:362.900460px;}
.y3a2{bottom:362.999520px;}
.y1ba{bottom:363.023460px;}
.y277{bottom:363.310500px;}
.y153{bottom:363.875160px;}
.y6d{bottom:363.931500px;}
.y27a{bottom:366.909000px;}
.y35{bottom:367.233000px;}
.y310{bottom:368.585820px;}
.yb8{bottom:370.572120px;}
.y276{bottom:372.276000px;}
.y2e4{bottom:373.084200px;}
.y31a{bottom:373.767000px;}
.y1ec{bottom:374.200500px;}
.y2ab{bottom:374.496000px;}
.ye9{bottom:377.854620px;}
.y42f{bottom:378.681000px;}
.y121{bottom:378.878820px;}
.y275{bottom:381.243000px;}
.y8{bottom:381.904500px;}
.y3a1{bottom:382.077900px;}
.y188{bottom:382.158120px;}
.y1b9{bottom:382.281120px;}
.y6c{bottom:382.761000px;}
.y20f{bottom:383.115000px;}
.y152{bottom:383.132820px;}
.y34{bottom:386.062500px;}
.y30e{bottom:388.933020px;}
.yb7{bottom:389.829780px;}
.y1eb{bottom:393.030000px;}
.y2aa{bottom:393.325500px;}
.y2e2{bottom:393.432660px;}
.y42e{bottom:395.941500px;}
.ye8{bottom:397.112280px;}
.y120{bottom:398.136480px;}
.y7{bottom:399.792000px;}
.y329{bottom:401.208900px;}
.y187{bottom:401.236500px;}
.y3a0{bottom:401.335560px;}
.y1b8{bottom:401.359500px;}
.y273{bottom:401.403000px;}
.y6b{bottom:401.589000px;}
.y151{bottom:402.390480px;}
.y319{bottom:404.194500px;}
.y303{bottom:404.227620px;}
.y33{bottom:404.892000px;}
.y349{bottom:405.825000px;}
.y213{bottom:406.695000px;}
.y2d7{bottom:408.727260px;}
.y1ea{bottom:411.859500px;}
.y2a9{bottom:412.155000px;}
.y42d{bottom:413.202000px;}
.y344{bottom:414.288720px;}
.y11f{bottom:417.409080px;}
.y272{bottom:417.502500px;}
.y271{bottom:420.232500px;}
.y6a{bottom:420.418500px;}
.y186{bottom:420.494160px;}
.y39f{bottom:420.593220px;}
.y1b7{bottom:420.617160px;}
.y150{bottom:421.663080px;}
.y318{bottom:423.427500px;}
.y304{bottom:423.666900px;}
.y32{bottom:423.721500px;}
.y96{bottom:424.223700px;}
.y6{bottom:426.646500px;}
.y2d8{bottom:428.166540px;}
.y42c{bottom:430.462500px;}
.y1e9{bottom:430.689000px;}
.y2a8{bottom:430.984500px;}
.y11e{bottom:436.487460px;}
.y270{bottom:439.062000px;}
.y69{bottom:439.248000px;}
.y185{bottom:439.751820px;}
.y39e{bottom:439.850880px;}
.y1b6{bottom:439.874820px;}
.y14f{bottom:440.741460px;}
.y31{bottom:442.551000px;}
.y305{bottom:443.294100px;}
.y95{bottom:443.481360px;}
.y5{bottom:444.534000px;}
.yb5{bottom:444.555540px;}
.y42b{bottom:447.721500px;}
.y2d9{bottom:447.793740px;}
.y2ba{bottom:448.845000px;}
.y1e8{bottom:449.518500px;}
.y2a7{bottom:449.814000px;}
.ye6{bottom:451.838040px;}
.yb4{bottom:454.095000px;}
.y26f{bottom:455.161500px;}
.y30f{bottom:455.707260px;}
.y11d{bottom:455.745120px;}
.y26e{bottom:457.890000px;}
.y68{bottom:458.077500px;}
.y184{bottom:459.009480px;}
.y39d{bottom:459.108540px;}
.y1b5{bottom:459.132480px;}
.y14e{bottom:459.999120px;}
.y2e3{bottom:460.205640px;}
.ye5{bottom:461.377500px;}
.y30{bottom:461.380500px;}
.y4{bottom:462.423000px;}
.y94{bottom:462.559740px;}
.y306{bottom:462.733380px;}
.y42a{bottom:464.982000px;}
.y2da{bottom:467.233020px;}
.y1e7{bottom:468.348000px;}
.y2a6{bottom:468.643500px;}
.y341{bottom:469.731060px;}
.y26d{bottom:473.991000px;}
.y11c{bottom:475.002780px;}
.y26c{bottom:476.719500px;}
.y67{bottom:476.907000px;}
.y39c{bottom:478.186920px;}
.y183{bottom:478.282080px;}
.y1b4{bottom:478.405080px;}
.y14d{bottom:479.256780px;}
.y2f{bottom:480.210000px;}
.y3{bottom:480.310500px;}
.y93{bottom:481.832340px;}
.y307{bottom:482.172660px;}
.y429{bottom:482.242500px;}
.y2db{bottom:486.672300px;}
.y1e6{bottom:487.177500px;}
.y2a5{bottom:487.473000px;}
.y38d{bottom:489.961500px;}
.y26b{bottom:492.819000px;}
.y26a{bottom:495.549000px;}
.y66{bottom:495.736500px;}
.y182{bottom:497.360460px;}
.y39b{bottom:497.459520px;}
.y1b3{bottom:497.483460px;}
.y2{bottom:498.198000px;}
.y2e{bottom:499.039500px;}
.y428{bottom:499.503000px;}
.y92{bottom:501.090000px;}
.y308{bottom:501.611940px;}
.y1e5{bottom:506.007000px;}
.y2dc{bottom:506.111580px;}
.y2a4{bottom:506.302500px;}
.y3a7{bottom:511.314000px;}
.y65{bottom:514.566000px;}
.y1{bottom:516.087000px;}
.y181{bottom:516.618120px;}
.y39a{bottom:516.717180px;}
.y1b2{bottom:516.741120px;}
.y427{bottom:516.763500px;}
.y269{bottom:518.833500px;}
.y91{bottom:520.347660px;}
.y309{bottom:521.051220px;}
.y2d{bottom:522.351000px;}
.y266{bottom:524.683500px;}
.y1e4{bottom:524.836500px;}
.y2a3{bottom:525.132000px;}
.y2dd{bottom:525.550860px;}
.y11a{bottom:529.728540px;}
.y268{bottom:531.826500px;}
.y64{bottom:533.395500px;}
.y14b{bottom:533.982540px;}
.y426{bottom:534.024000px;}
.y264{bottom:534.934500px;}
.y180{bottom:535.875780px;}
.y399{bottom:535.974840px;}
.y1b1{bottom:535.998780px;}
.y119{bottom:539.268000px;}
.y90{bottom:539.605320px;}
.y30a{bottom:540.490500px;}
.y315{bottom:543.006540px;}
.y14a{bottom:543.522000px;}
.y1e3{bottom:543.666000px;}
.y2a2{bottom:543.961500px;}
.y2de{bottom:544.990140px;}
.y265{bottom:545.052000px;}
.y2e9{bottom:547.506180px;}
.y425{bottom:551.284500px;}
.y63{bottom:552.225000px;}
.y267{bottom:552.946500px;}
.y398{bottom:555.232500px;}
.y314{bottom:557.225820px;}
.y8f{bottom:558.683700px;}
.y30b{bottom:559.929780px;}
.y2e8{bottom:561.725460px;}
.y1e2{bottom:562.495500px;}
.y2a1{bottom:562.791000px;}
.y2df{bottom:564.429420px;}
.y263{bottom:568.020000px;}
.y424{bottom:568.545000px;}
.y62{bottom:571.054500px;}
.y313{bottom:571.267620px;}
.y397{bottom:574.310880px;}
.y2e7{bottom:575.767260px;}
.y8e{bottom:577.941360px;}
.y30c{bottom:579.369060px;}
.y1e1{bottom:581.325000px;}
.y2a0{bottom:581.620500px;}
.y2e0{bottom:583.868700px;}
.y312{bottom:585.486900px;}
.y423{bottom:585.805500px;}
.y262{bottom:586.849500px;}
.y40d{bottom:589.884000px;}
.y2e6{bottom:589.986540px;}
.y17e{bottom:590.601540px;}
.y1af{bottom:590.724540px;}
.y396{bottom:593.568540px;}
.y61{bottom:594.367500px;}
.y2c{bottom:595.914000px;}
.y8d{bottom:597.199020px;}
.y2be{bottom:598.087620px;}
.y30d{bottom:598.985820px;}
.y311{bottom:599.706180px;}
.y17d{bottom:600.141000px;}
.y1e0{bottom:600.153000px;}
.y1ae{bottom:600.264000px;}
.y29f{bottom:600.450000px;}
.y2ea{bottom:602.232660px;}
.y422{bottom:603.064500px;}
.y2e1{bottom:603.485460px;}
.y2e5{bottom:604.205820px;}
.y261{bottom:605.679000px;}
.y346{bottom:608.325000px;}
.y40c{bottom:608.713500px;}
.y395{bottom:612.826200px;}
.y2b{bottom:615.372000px;}
.y8c{bottom:616.471620px;}
.y340{bottom:617.158980px;}
.y1df{bottom:618.982500px;}
.y29e{bottom:619.279500px;}
.y421{bottom:620.325000px;}
.y260{bottom:624.508500px;}
.y40b{bottom:627.543000px;}
.y60{bottom:627.991500px;}
.y8b{bottom:635.729280px;}
.y394{bottom:636.595740px;}
.y1de{bottom:637.812000px;}
.y29d{bottom:638.109000px;}
.y420{bottom:642.069000px;}
.y25f{bottom:643.338000px;}
.y40a{bottom:646.372500px;}
.y5f{bottom:646.821000px;}
.y2a{bottom:652.761000px;}
.y8a{bottom:654.807660px;}
.y33f{bottom:655.853580px;}
.y29c{bottom:656.938500px;}
.y25e{bottom:662.167500px;}
.y409{bottom:665.202000px;}
.y5e{bottom:665.650500px;}
.y20e{bottom:666.687000px;}
.y2bc{bottom:667.215540px;}
.y29{bottom:672.219000px;}
.y393{bottom:673.312500px;}
.y89{bottom:674.065320px;}
.y33e{bottom:675.111240px;}
.y41f{bottom:675.693000px;}
.y29b{bottom:675.768000px;}
.y2bb{bottom:676.755000px;}
.y25d{bottom:680.997000px;}
.y5d{bottom:684.480000px;}
.y1ad{bottom:686.263500px;}
.y17c{bottom:687.859500px;}
.y408{bottom:688.515000px;}
.y20d{bottom:690.327000px;}
.y28{bottom:691.675500px;}
.y88{bottom:693.322980px;}
.y33d{bottom:694.368900px;}
.y29a{bottom:694.597500px;}
.y17b{bottom:696.468000px;}
.y25c{bottom:699.826500px;}
.y41e{bottom:702.234000px;}
.y5c{bottom:703.309500px;}
.y27{bottom:711.133500px;}
.y87{bottom:712.580640px;}
.y17a{bottom:712.906500px;}
.y299{bottom:713.427000px;}
.y33c{bottom:713.641500px;}
.y20c{bottom:713.968500px;}
.y25b{bottom:718.656000px;}
.y41d{bottom:719.808000px;}
.y5b{bottom:722.139000px;}
.y208{bottom:723.939000px;}
.y26{bottom:730.590000px;}
.y86{bottom:731.838300px;}
.y298{bottom:732.255000px;}
.y33b{bottom:732.899160px;}
.y25a{bottom:737.485500px;}
.y20b{bottom:737.608500px;}
.y207{bottom:740.377500px;}
.y5a{bottom:740.968500px;}
.y41c{bottom:746.347500px;}
.y149{bottom:746.752500px;}
.y117{bottom:746.815500px;}
.y25{bottom:750.046500px;}
.y118{bottom:750.843000px;}
.y85{bottom:750.931620px;}
.y297{bottom:751.084500px;}
.y33a{bottom:752.156820px;}
.y259{bottom:756.315000px;}
.y391{bottom:757.191420px;}
.y59{bottom:759.798000px;}
.y20a{bottom:761.250000px;}
.y115{bottom:763.254000px;}
.y44f{bottom:767.793000px;}
.y24{bottom:769.504500px;}
.y296{bottom:769.914000px;}
.y84{bottom:770.189280px;}
.y339{bottom:771.235200px;}
.y41b{bottom:772.888500px;}
.y38c{bottom:774.144000px;}
.y58{bottom:778.627500px;}
.y258{bottom:779.628000px;}
.y116{bottom:779.691000px;}
.y209{bottom:784.890000px;}
.y44e{bottom:785.053500px;}
.y295{bottom:788.743500px;}
.y23{bottom:788.961000px;}
.y83{bottom:789.446940px;}
.y338{bottom:790.492860px;}
.y38b{bottom:792.973500px;}
.y57{bottom:797.457000px;}
.y41a{bottom:799.429500px;}
.y44d{bottom:802.312500px;}
.yb2{bottom:803.394000px;}
.y294{bottom:807.573000px;}
.y22{bottom:808.417500px;}
.y206{bottom:808.531500px;}
.y82{bottom:808.704600px;}
.y337{bottom:809.750520px;}
.y342{bottom:811.005000px;}
.y38a{bottom:811.803000px;}
.y56{bottom:816.286500px;}
.y257{bottom:816.622500px;}
.y419{bottom:817.003500px;}
.yb1{bottom:819.832500px;}
.ye4{bottom:820.299000px;}
.yb3{bottom:825.208500px;}
.y293{bottom:826.402500px;}
.y21{bottom:827.875500px;}
.y81{bottom:827.962260px;}
.yac{bottom:828.052500px;}
.y336{bottom:829.023120px;}
.y389{bottom:830.632500px;}
.y256{bottom:830.820000px;}
.y205{bottom:832.171500px;}
.y418{bottom:834.577500px;}
.y55{bottom:835.114500px;}
.yb0{bottom:836.271000px;}
.y44c{bottom:841.392000px;}
.yab{bottom:844.491000px;}
.y255{bottom:845.016000px;}
.y292{bottom:845.232000px;}
.y388{bottom:846.732000px;}
.y80{bottom:847.040640px;}
.y20{bottom:847.332000px;}
.y335{bottom:848.280780px;}
.y387{bottom:849.462000px;}
.yaf{bottom:852.709500px;}
.y54{bottom:853.944000px;}
.y204{bottom:855.813000px;}
.y44b{bottom:858.652500px;}
.y254{bottom:859.213500px;}
.yaa{bottom:860.929500px;}
.y417{bottom:861.118500px;}
.y291{bottom:864.061500px;}
.y200{bottom:865.783500px;}
.y1f{bottom:866.790000px;}
.y334{bottom:867.359160px;}
.y386{bottom:868.291500px;}
.yae{bottom:869.148000px;}
.y7f{bottom:870.810180px;}
.y53{bottom:872.773500px;}
.y253{bottom:873.409500px;}
.y44a{bottom:875.913000px;}
.y416{bottom:878.692500px;}
.y203{bottom:879.453000px;}
.y1ff{bottom:882.222000px;}
.y290{bottom:882.891000px;}
.yad{bottom:885.586500px;}
.y1e{bottom:886.246500px;}
.y333{bottom:886.616820px;}
.y385{bottom:887.121000px;}
.y252{bottom:887.607000px;}
.y52{bottom:891.603000px;}
.y449{bottom:893.172000px;}
.y7e{bottom:894.564780px;}
.y415{bottom:896.266500px;}
.y28f{bottom:901.720500px;}
.y251{bottom:901.803000px;}
.y202{bottom:903.094500px;}
.y332{bottom:905.874480px;}
.y384{bottom:905.950500px;}
.ya9{bottom:909.226500px;}
.y51{bottom:910.432500px;}
.y414{bottom:913.840500px;}
.y250{bottom:916.000500px;}
.y1d{bottom:920.485500px;}
.ya8{bottom:920.839500px;}
.y383{bottom:924.778500px;}
.y28e{bottom:925.033500px;}
.y331{bottom:925.132140px;}
.y201{bottom:926.734500px;}
.y448{bottom:927.693000px;}
.y50{bottom:929.262000px;}
.y24f{bottom:930.196500px;}
.y413{bottom:931.414500px;}
.y1c{bottom:936.625500px;}
.y38f{bottom:938.817540px;}
.y382{bottom:943.608000px;}
.y330{bottom:944.389800px;}
.y24e{bottom:944.394000px;}
.y447{bottom:944.953500px;}
.y28d{bottom:945.207000px;}
.y4f{bottom:948.091500px;}
.y38e{bottom:948.357000px;}
.y7c{bottom:949.290540px;}
.y1fe{bottom:950.376000px;}
.y1b{bottom:952.764000px;}
.y7b{bottom:958.830000px;}
.y1fd{bottom:962.139000px;}
.y446{bottom:962.214000px;}
.y381{bottom:962.437500px;}
.y32f{bottom:963.483120px;}
.y24d{bottom:966.226500px;}
.y4e{bottom:966.921000px;}
.ya7{bottom:967.476000px;}
.y445{bottom:979.474500px;}
.y28c{bottom:981.267000px;}
.y32e{bottom:982.740780px;}
.y4d{bottom:985.750500px;}
.y24c{bottom:989.866500px;}
.y444{bottom:996.735000px;}
.y1a{bottom:997.434000px;}
.y28b{bottom:1000.096500px;}
.y4c{bottom:1004.580000px;}
.y32d{bottom:1006.495380px;}
.y1fc{bottom:1008.624000px;}
.y24b{bottom:1013.508000px;}
.y443{bottom:1013.995500px;}
.y28a{bottom:1018.926000px;}
.y4b{bottom:1023.409500px;}
.y1fb{bottom:1027.857000px;}
.y442{bottom:1031.254500px;}
.y24a{bottom:1037.148000px;}
.y19{bottom:1037.353500px;}
.y289{bottom:1037.755500px;}
.y4a{bottom:1042.239000px;}
.y316{bottom:1043.155500px;}
.y441{bottom:1048.515000px;}
.y288{bottom:1056.585000px;}
.y249{bottom:1060.789500px;}
.y49{bottom:1061.068500px;}
.y32b{bottom:1061.221140px;}
.y18{bottom:1065.597000px;}
.y440{bottom:1065.775500px;}
.y32a{bottom:1070.760600px;}
.y380{bottom:1075.414500px;}
.y48{bottom:1079.898000px;}
.y43f{bottom:1083.036000px;}
.y248{bottom:1084.429500px;}
.y17{bottom:1093.842000px;}
.y37f{bottom:1094.244000px;}
.y47{bottom:1098.727500px;}
.y43e{bottom:1100.296500px;}
.y46{bottom:1117.557000px;}
.y247{bottom:1119.037500px;}
.y15{bottom:1137.328500px;}
.y45{bottom:1177.662000px;}
.y392{bottom:1186.494000px;}
.h41{height:-432.097500px;}
.h3f{height:-429.529500px;}
.h20{height:-97.429500px;}
.h22{height:-90.147000px;}
.h24{height:-12.256500px;}
.h26{height:-8.002500px;}
.h34{height:1.255288px;}
.h38{height:18.540000px;}
.h31{height:24.466235px;}
.h27{height:27.524478px;}
.hd{height:29.170493px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h37{height:30.749062px;}
.h32{height:33.072749px;}
.h9{height:34.813397px;}
.he{height:35.052500px;}
.h19{height:35.072930px;}
.h18{height:35.214258px;}
.h23{height:36.327000px;}
.h36{height:38.844141px;}
.h16{height:38.896243px;}
.h2f{height:39.057638px;}
.ha{height:39.165235px;}
.h1b{height:39.418945px;}
.h30{height:39.434227px;}
.h13{height:43.010859px;}
.hb{height:43.217759px;}
.h1a{height:43.448555px;}
.hc{height:43.516637px;}
.h1d{height:43.623633px;}
.h6{height:43.815515px;}
.h12{height:44.002969px;}
.h8{height:44.473046px;}
.h25{height:44.508000px;}
.h10{height:44.871680px;}
.h29{height:45.163500px;}
.h2e{height:47.988281px;}
.h2a{height:48.355500px;}
.h17{height:50.071500px;}
.h14{height:50.229492px;}
.h4{height:50.938872px;}
.h45{height:52.077235px;}
.h11{height:55.587305px;}
.h21{height:59.890500px;}
.h5{height:62.659241px;}
.h33{height:65.024177px;}
.h28{height:72.045235px;}
.h7{height:77.792486px;}
.h1e{height:78.706955px;}
.h1f{height:83.786555px;}
.h1c{height:86.112993px;}
.h2b{height:86.404243px;}
.h15{height:87.010243px;}
.h3c{height:201.600000px;}
.h3e{height:201.780000px;}
.h3b{height:201.960000px;}
.h3a{height:202.140000px;}
.h3d{height:208.144500px;}
.h2d{height:219.910500px;}
.h42{height:242.280000px;}
.h2c{height:243.490500px;}
.h44{height:246.600000px;}
.h40{height:264.435000px;}
.h43{height:302.398500px;}
.hf{height:401.890500px;}
.h35{height:626.242500px;}
.h39{height:636.219600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:-54.850500px;}
.w9{width:-51.840000px;}
.w5{width:-25.086000px;}
.w7{width:-21.633000px;}
.wd{width:-18.703500px;}
.wf{width:-12.468000px;}
.w8{width:36.450000px;}
.wa{width:43.036500px;}
.w4{width:89.590500px;}
.w2{width:95.105256px;}
.wc{width:101.863500px;}
.w6{width:115.363500px;}
.we{width:117.205500px;}
.w14{width:152.460000px;}
.w1b{width:300.663000px;}
.w17{width:312.660000px;}
.w16{width:328.500000px;}
.w11{width:333.163950px;}
.w12{width:335.125500px;}
.w20{width:342.979500px;}
.w1d{width:344.943000px;}
.w1f{width:347.563800px;}
.w1c{width:348.873000px;}
.w19{width:349.200000px;}
.w3{width:585.162000px;}
.w10{width:668.289450px;}
.w13{width:687.783300px;}
.w1e{width:690.543300px;}
.w1a{width:693.816000px;}
.w18{width:719.998200px;}
.w15{width:721.964850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x49{left:-689.885820px;}
.x37{left:-656.668320px;}
.x5a{left:-647.503320px;}
.x4c{left:-625.625460px;}
.x3a{left:-592.407960px;}
.x5d{left:-583.242960px;}
.x41{left:-546.745320px;}
.x2d{left:-520.358820px;}
.x54{left:-514.468320px;}
.x4a{left:-494.228160px;}
.x44{left:-482.484960px;}
.x4b{left:-462.361140px;}
.x38{left:-461.010660px;}
.x4e{left:-458.402040px;}
.x30{left:-456.098460px;}
.x5b{left:-451.845660px;}
.x56{left:-450.207960px;}
.x39{left:-429.143640px;}
.x3c{left:-425.184540px;}
.x5c{left:-419.978640px;}
.x5f{left:-416.019540px;}
.x42{left:-351.087660px;}
.x2e{left:-324.701160px;}
.x43{left:-319.220640px;}
.x46{left:-315.261540px;}
.x2f{left:-292.834140px;}
.x31{left:-288.875040px;}
.x55{left:-286.943640px;}
.x58{left:-282.984540px;}
.x4d{left:-168.954480px;}
.x3b{left:-135.736980px;}
.x5e{left:-126.571980px;}
.x20{left:-99.812820px;}
.x4f{left:-80.210880px;}
.x50{left:-72.651240px;}
.x6b{left:-59.231370px;}
.x3d{left:-46.993380px;}
.x70{left:-45.020010px;}
.xc3{left:-43.522320px;}
.x3e{left:-39.433740px;}
.x60{left:-37.828380px;}
.xb3{left:-32.395470px;}
.x61{left:-30.268740px;}
.x45{left:-25.813980px;}
.x0{left:0.000000px;}
.x57{left:6.463020px;}
.x77{left:31.129170px;}
.xc4{left:33.332460px;}
.xaa{left:35.936880px;}
.xb6{left:38.707410px;}
.xad{left:42.241380px;}
.xa8{left:44.037060px;}
.xd5{left:46.060560px;}
.xc8{left:47.369760px;}
.xa7{left:49.257060px;}
.x1{left:53.574000px;}
.xc7{left:55.116240px;}
.xbc{left:57.842460px;}
.x2{left:60.825326px;}
.x2a{left:62.541000px;}
.xa6{left:64.917060px;}
.xd6{left:67.305960px;}
.xc9{left:68.615160px;}
.x47{left:70.489260px;}
.x68{left:75.241500px;}
.xa9{left:78.415980px;}
.x51{left:81.962820px;}
.xb2{left:85.261650px;}
.x32{left:89.316120px;}
.x21{left:95.844840px;}
.x33{left:96.875760px;}
.xc2{left:99.337500px;}
.xd0{left:100.973700px;}
.x59{left:102.766260px;}
.xb1{left:106.614000px;}
.x28{left:111.139500px;}
.x3f{left:115.180320px;}
.x62{left:124.345320px;}
.x22{left:127.711860px;}
.x35{left:136.813320px;}
.xd7{left:141.278400px;}
.xca{left:142.587600px;}
.x9e{left:148.809300px;}
.xd3{left:150.832800px;}
.xab{left:152.038500px;}
.xbd{left:153.060300px;}
.x6e{left:154.608270px;}
.x6a{left:160.654500px;}
.x9b{left:162.129120px;}
.xb4{left:163.262190px;}
.xac{left:165.182820px;}
.x6f{left:168.293310px;}
.x99{left:170.943720px;}
.xbb{left:175.934520px;}
.x9f{left:180.669660px;}
.xd4{left:182.693160px;}
.xc5{left:184.002360px;}
.xb5{left:195.129210px;}
.xcb{left:239.069040px;}
.x52{left:240.574500px;}
.xd8{left:246.581640px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x2b{left:269.569500px;}
.x97{left:271.126500px;}
.x5{left:281.479500px;}
.x7b{left:283.582500px;}
.x98{left:286.071000px;}
.x7c{left:293.415000px;}
.x63{left:294.619500px;}
.x12{left:297.654000px;}
.x87{left:299.754000px;}
.x13{left:305.125500px;}
.x1c{left:308.841000px;}
.x76{left:314.989170px;}
.xba{left:319.503420px;}
.xb7{left:320.773320px;}
.x1d{left:323.784000px;}
.x1e{left:331.405500px;}
.x6c{left:332.461950px;}
.x88{left:334.405500px;}
.x9c{left:337.450020px;}
.xd1{left:339.473520px;}
.x71{left:341.627190px;}
.x1f{left:346.350000px;}
.x18{left:348.397500px;}
.x89{left:352.927500px;}
.x8c{left:355.107000px;}
.x19{left:363.342000px;}
.x10{left:366.201000px;}
.x11{left:373.672500px;}
.xa3{left:385.146240px;}
.x8d{left:386.707500px;}
.xce{left:388.478940px;}
.x1a{left:390.141000px;}
.xb0{left:391.615980px;}
.xa1{left:393.244620px;}
.xda{left:395.268120px;}
.xcc{left:396.577320px;}
.x95{left:398.707500px;}
.xd9{left:403.004160px;}
.x1b{left:405.085500px;}
.xbe{left:407.050020px;}
.xa0{left:414.124620px;}
.xdb{left:416.503080px;}
.xcd{left:417.812280px;}
.x96{left:424.029000px;}
.xa2{left:427.623540px;}
.x69{left:435.033000px;}
.x90{left:439.477500px;}
.x6d{left:445.264500px;}
.xc6{left:448.210500px;}
.xdd{left:472.540500px;}
.x81{left:479.380500px;}
.x72{left:485.992410px;}
.xde{left:487.485000px;}
.xb9{left:489.541500px;}
.x73{left:492.476370px;}
.xa4{left:501.235800px;}
.xbf{left:502.269660px;}
.x6{left:507.619500px;}
.xae{left:510.423180px;}
.xaf{left:513.116700px;}
.x7{left:515.091000px;}
.x7f{left:518.409000px;}
.xa5{left:519.965340px;}
.x78{left:523.090500px;}
.x53{left:525.615000px;}
.x79{left:529.848000px;}
.x2c{left:531.751500px;}
.x80{left:533.353500px;}
.x29{left:536.392500px;}
.x7a{left:539.682000px;}
.xa{left:541.560000px;}
.x8f{left:543.682500px;}
.x82{left:544.906500px;}
.x83{left:546.894000px;}
.xb{left:549.031500px;}
.x64{left:554.232000px;}
.x85{left:556.662000px;}
.x40{left:558.321000px;}
.x91{left:560.730000px;}
.x84{left:564.567000px;}
.x65{left:569.176500px;}
.x86{left:577.620000px;}
.x23{left:587.624820px;}
.xc{left:588.630000px;}
.xdc{left:590.558760px;}
.x93{left:593.820000px;}
.xd{left:596.101500px;}
.xcf{left:602.673360px;}
.x8e{left:609.081000px;}
.xdf{left:610.446000px;}
.xc0{left:613.146060px;}
.x75{left:616.134750px;}
.x94{left:626.292000px;}
.x74{left:630.357630px;}
.xc1{left:641.535000px;}
.x92{left:643.863000px;}
.x34{left:646.428000px;}
.x9d{left:659.302440px;}
.xd2{left:661.325940px;}
.x9a{left:686.657580px;}
.x36{left:693.493500px;}
.x66{left:694.800000px;}
.xb8{left:702.372090px;}
.x67{left:709.744500px;}
.x8a{left:723.801000px;}
.x48{left:729.657000px;}
.x8b{left:738.745500px;}
.x16{left:742.402500px;}
.x8{left:760.347000px;}
.x9{left:773.310000px;}
.x7d{left:792.763500px;}
.x25{left:795.132000px;}
.x7e{left:802.596000px;}
.x26{left:810.076500px;}
.x27{left:817.698000px;}
.x24{left:822.658500px;}
.x14{left:824.770500px;}
.xe{left:826.365000px;}
.x15{left:832.243500px;}
.xf{left:833.838000px;}
.x17{left:837.807000px;}
@media print{
.v4{vertical-align:-21.141760pt;}
.v1{vertical-align:-10.629333pt;}
.v9{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.252160pt;}
.va{vertical-align:11.477333pt;}
.v8{vertical-align:29.226667pt;}
.v5{vertical-align:31.340800pt;}
.v7{vertical-align:35.856000pt;}
.v3{vertical-align:37.768320pt;}
.v2{vertical-align:42.768000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls20{letter-spacing:0.000711pt;}
.ls12{letter-spacing:0.002825pt;}
.ls1e{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.128640pt;}
.ls1d{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.159360pt;}
.lsd{letter-spacing:0.212480pt;}
.ls1c{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.318720pt;}
.ls10{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.482502pt;}
.ls17{letter-spacing:0.487835pt;}
.ls13{letter-spacing:0.504877pt;}
.ls3{letter-spacing:10.626533pt;}
.ls16{letter-spacing:10.968429pt;}
.ls24{letter-spacing:11.715388pt;}
.ls25{letter-spacing:11.795211pt;}
.ls21{letter-spacing:11.954133pt;}
.ls23{letter-spacing:11.959467pt;}
.lsc{letter-spacing:12.533411pt;}
.ls7{letter-spacing:13.177199pt;}
.ls1{letter-spacing:13.283733pt;}
.ls6{letter-spacing:13.336601pt;}
.ls1a{letter-spacing:13.655404pt;}
.ls5{letter-spacing:13.708538pt;}
.ls8{letter-spacing:13.974207pt;}
.ls18{letter-spacing:15.395096pt;}
.ls1f{letter-spacing:15.408821pt;}
.ls22{letter-spacing:17.153297pt;}
.ls19{letter-spacing:19.234460pt;}
.ls2{letter-spacing:25.292137pt;}
.lsb{letter-spacing:528.172160pt;}
.lsa{letter-spacing:539.008640pt;}
.ls15{letter-spacing:763.043543pt;}
.wsb{word-spacing:-63.912015pt;}
.wsc{word-spacing:-13.283467pt;}
.ws80{word-spacing:-12.000000pt;}
.ws63{word-spacing:-11.955200pt;}
.ws4d{word-spacing:-10.720000pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws73{word-spacing:-10.095467pt;}
.ws1{word-spacing:-9.298400pt;}
.ws81{word-spacing:-9.280000pt;}
.ws8a{word-spacing:-8.000000pt;}
.ws4e{word-spacing:-2.975497pt;}
.wsa1{word-spacing:-2.869229pt;}
.ws3d{word-spacing:-2.816095pt;}
.ws7e{word-spacing:-2.072221pt;}
.ws22{word-spacing:-2.019087pt;}
.ws9f{word-spacing:-1.912819pt;}
.ws3c{word-spacing:-1.806551pt;}
.wsa8{word-spacing:-1.769370pt;}
.ws36{word-spacing:-1.700284pt;}
.ws39{word-spacing:-1.647150pt;}
.ws35{word-spacing:-1.594016pt;}
.ws32{word-spacing:-1.487748pt;}
.wsb7{word-spacing:-1.434624pt;}
.ws6f{word-spacing:-1.434614pt;}
.ws1a{word-spacing:-1.386803pt;}
.wsa0{word-spacing:-1.381481pt;}
.ws91{word-spacing:-1.168945pt;}
.ws79{word-spacing:-1.115811pt;}
.ws60{word-spacing:-1.052058pt;}
.ws78{word-spacing:-1.009543pt;}
.ws9a{word-spacing:-0.956410pt;}
.ws96{word-spacing:-0.903276pt;}
.ws5f{word-spacing:-0.690740pt;}
.ws86{word-spacing:-0.478208pt;}
.ws58{word-spacing:-0.318803pt;}
.ws67{word-spacing:-0.297550pt;}
.ws37{word-spacing:-0.265669pt;}
.ws66{word-spacing:-0.255043pt;}
.ws13{word-spacing:-0.239104pt;}
.ws25{word-spacing:-0.212535pt;}
.ws94{word-spacing:-0.191283pt;}
.ws6c{word-spacing:-0.170029pt;}
.ws23{word-spacing:-0.159402pt;}
.wsa3{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws3{word-spacing:-0.074387pt;}
.ws4{word-spacing:-0.062332pt;}
.wsd{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.047821pt;}
.wse{word-spacing:-0.042507pt;}
.wsb6{word-spacing:-0.025088pt;}
.wsb5{word-spacing:-0.000222pt;}
.ws2{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.000723pt;}
.ws16{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.wsb0{word-spacing:0.095642pt;}
.ws28{word-spacing:0.106268pt;}
.ws6b{word-spacing:0.127522pt;}
.ws11{word-spacing:0.143462pt;}
.ws1f{word-spacing:0.159402pt;}
.ws68{word-spacing:0.170029pt;}
.ws19{word-spacing:0.191283pt;}
.ws31{word-spacing:0.212535pt;}
.wsa4{word-spacing:0.239104pt;}
.ws3f{word-spacing:0.265669pt;}
.ws18{word-spacing:0.286925pt;}
.ws7f{word-spacing:0.318803pt;}
.wsae{word-spacing:0.334746pt;}
.ws41{word-spacing:0.371937pt;}
.ws40{word-spacing:0.425071pt;}
.ws6d{word-spacing:0.552594pt;}
.ws52{word-spacing:0.597333pt;}
.ws43{word-spacing:0.690740pt;}
.ws5b{word-spacing:0.743874pt;}
.wsbb{word-spacing:0.765133pt;}
.ws21{word-spacing:0.797008pt;}
.ws4c{word-spacing:0.850142pt;}
.ws6a{word-spacing:0.892651pt;}
.ws55{word-spacing:0.903276pt;}
.ws69{word-spacing:0.935158pt;}
.ws3a{word-spacing:0.956410pt;}
.wsba{word-spacing:0.956416pt;}
.wsb9{word-spacing:0.988188pt;}
.ws9d{word-spacing:1.009543pt;}
.ws48{word-spacing:1.062677pt;}
.ws9b{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws2c{word-spacing:1.275213pt;}
.ws3b{word-spacing:1.328347pt;}
.ws51{word-spacing:1.381481pt;}
.ws29{word-spacing:1.487748pt;}
.ws38{word-spacing:1.594016pt;}
.ws95{word-spacing:1.647150pt;}
.ws56{word-spacing:1.700284pt;}
.ws97{word-spacing:1.753418pt;}
.ws45{word-spacing:1.806551pt;}
.ws90{word-spacing:1.912819pt;}
.ws30{word-spacing:1.965953pt;}
.ws53{word-spacing:2.019087pt;}
.ws88{word-spacing:2.125355pt;}
.ws0{word-spacing:2.232481pt;}
.wsa6{word-spacing:2.295398pt;}
.ws34{word-spacing:2.444158pt;}
.wsf{word-spacing:2.550432pt;}
.wsb2{word-spacing:2.582323pt;}
.ws5d{word-spacing:2.603559pt;}
.ws33{word-spacing:2.656693pt;}
.wsa7{word-spacing:2.725786pt;}
.ws98{word-spacing:2.762961pt;}
.wsb3{word-spacing:2.773606pt;}
.ws24{word-spacing:2.816095pt;}
.wsac{word-spacing:2.821427pt;}
.wsbc{word-spacing:2.864461pt;}
.wsb4{word-spacing:2.865766pt;}
.wsb1{word-spacing:2.868326pt;}
.ws8e{word-spacing:2.869229pt;}
.wsab{word-spacing:2.869248pt;}
.ws10{word-spacing:2.896519pt;}
.ws8c{word-spacing:2.934400pt;}
.ws93{word-spacing:2.940800pt;}
.ws92{word-spacing:2.951040pt;}
.ws70{word-spacing:2.975497pt;}
.ws6e{word-spacing:3.028630pt;}
.wsbd{word-spacing:3.108352pt;}
.wsa5{word-spacing:3.111114pt;}
.ws1d{word-spacing:3.188032pt;}
.ws7b{word-spacing:3.241166pt;}
.ws5e{word-spacing:3.294300pt;}
.ws2f{word-spacing:3.400567pt;}
.ws4f{word-spacing:3.453701pt;}
.ws54{word-spacing:3.506835pt;}
.ws75{word-spacing:3.555155pt;}
.ws46{word-spacing:3.559969pt;}
.ws42{word-spacing:3.613103pt;}
.ws7d{word-spacing:3.666237pt;}
.ws8d{word-spacing:3.825638pt;}
.ws5c{word-spacing:3.931906pt;}
.ws99{word-spacing:4.038174pt;}
.ws4a{word-spacing:4.091308pt;}
.wsa9{word-spacing:4.112551pt;}
.ws14{word-spacing:4.112589pt;}
.wsa2{word-spacing:4.160410pt;}
.ws17{word-spacing:4.256051pt;}
.ws20{word-spacing:4.303843pt;}
.wsb8{word-spacing:4.399514pt;}
.ws7c{word-spacing:4.410111pt;}
.ws9c{word-spacing:4.569513pt;}
.ws2b{word-spacing:4.728914pt;}
.wsad{word-spacing:4.734259pt;}
.ws8{word-spacing:4.872362pt;}
.ws87{word-spacing:4.941450pt;}
.ws44{word-spacing:4.994583pt;}
.ws8f{word-spacing:5.047717pt;}
.wsaf{word-spacing:5.069005pt;}
.wsaa{word-spacing:5.212467pt;}
.ws9e{word-spacing:5.260253pt;}
.ws59{word-spacing:5.366521pt;}
.ws5a{word-spacing:5.419654pt;}
.ws57{word-spacing:5.472788pt;}
.ws76{word-spacing:5.845711pt;}
.ws7a{word-spacing:5.950993pt;}
.ws26{word-spacing:6.004127pt;}
.ws49{word-spacing:6.482332pt;}
.ws47{word-spacing:6.641733pt;}
.ws89{word-spacing:6.748001pt;}
.ws1c{word-spacing:6.790554pt;}
.ws27{word-spacing:6.801135pt;}
.ws3e{word-spacing:7.173072pt;}
.ws4b{word-spacing:7.279340pt;}
.ws50{word-spacing:7.385607pt;}
.ws74{word-spacing:7.983127pt;}
.ws71{word-spacing:7.987155pt;}
.ws72{word-spacing:8.342017pt;}
.ws6{word-spacing:8.740496pt;}
.ws7{word-spacing:10.525789pt;}
.ws65{word-spacing:11.907379pt;}
.ws84{word-spacing:13.131534pt;}
.ws1b{word-spacing:16.669404pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws83{word-spacing:27.831054pt;}
.ws82{word-spacing:34.252814pt;}
.ws85{word-spacing:66.890240pt;}
.ws64{word-spacing:87.272960pt;}
.ws8b{word-spacing:95.027200pt;}
.ws62{word-spacing:151.878861pt;}
.ws61{word-spacing:454.632346pt;}
.ws77{word-spacing:776.208378pt;}
._a{margin-left:-20.669074pt;}
._71{margin-left:-16.883408pt;}
._1{margin-left:-14.468310pt;}
._d{margin-left:-5.888938pt;}
._2{margin-left:-4.797974pt;}
._5{margin-left:-3.425478pt;}
._1c{margin-left:-2.206823pt;}
._6{margin-left:-1.301776pt;}
._22{width:0.959082pt;}
._0{width:2.081056pt;}
._9{width:2.975497pt;}
._23{width:4.581574pt;}
._7{width:5.505330pt;}
._24{width:6.728339pt;}
._25{width:8.003560pt;}
._e{width:9.861670pt;}
._3{width:11.533683pt;}
._1d{width:12.621061pt;}
._f{width:13.963674pt;}
._10{width:14.930704pt;}
._1b{width:16.205822pt;}
._12{width:17.311130pt;}
._15{width:18.584557pt;}
._2f{width:19.553263pt;}
._18{width:20.631867pt;}
._13{width:21.556774pt;}
._4{width:23.060032pt;}
._1e{width:25.451122pt;}
._5e{width:26.779469pt;}
._11{width:27.927347pt;}
._31{width:28.904823pt;}
._14{width:29.914367pt;}
._6f{width:32.039722pt;}
._30{width:33.261801pt;}
._16{width:34.962084pt;}
._1f{width:36.263860pt;}
._17{width:37.618778pt;}
._20{width:39.133089pt;}
._68{width:41.611520pt;}
._66{width:47.403849pt;}
._8{width:48.377044pt;}
._64{width:52.713317pt;}
._70{width:54.993920pt;}
._65{width:56.272311pt;}
._67{width:60.134400pt;}
._b{width:61.659237pt;}
._63{width:63.138203pt;}
._6a{width:67.150080pt;}
._c{width:74.946889pt;}
._62{width:81.255680pt;}
._5d{width:83.154501pt;}
._5c{width:85.811195pt;}
._69{width:94.099200pt;}
._54{width:113.317677pt;}
._4c{width:122.863638pt;}
._55{width:131.124634pt;}
._4b{width:136.943360pt;}
._46{width:143.794150pt;}
._3a{width:145.231770pt;}
._4a{width:150.435840pt;}
._39{width:157.234790pt;}
._49{width:163.503360pt;}
._38{width:169.142170pt;}
._34{width:173.206938pt;}
._48{width:176.995840pt;}
._37{width:181.097370pt;}
._59{width:186.883686pt;}
._36{width:193.100390pt;}
._42{width:197.037590pt;}
._58{width:198.838886pt;}
._51{width:201.634755pt;}
._57{width:210.841907pt;}
._2b{width:219.595158pt;}
._33{width:232.552550pt;}
._40{width:263.157862pt;}
._5a{width:264.257741pt;}
._2e{width:270.424576pt;}
._2a{width:275.501373pt;}
._2d{width:293.960237pt;}
._28{width:368.554906pt;}
._6b{width:370.087040pt;}
._26{width:371.440048pt;}
._4e{width:385.191251pt;}
._27{width:401.806993pt;}
._29{width:417.227540pt;}
._45{width:422.726038pt;}
._4d{width:424.688557pt;}
._3d{width:432.029002pt;}
._53{width:436.003117pt;}
._6c{width:444.552515pt;}
._3b{width:462.825597pt;}
._43{width:478.080432pt;}
._3c{width:498.149274pt;}
._32{width:502.926925pt;}
._47{width:504.424598pt;}
._52{width:514.780077pt;}
._35{width:528.945869pt;}
._41{width:544.200704pt;}
._50{width:610.027158pt;}
._3f{width:633.880598pt;}
._5b{width:670.399795pt;}
._4f{width:688.804118pt;}
._3e{width:700.000870pt;}
._2c{width:941.389718pt;}
._56{width:1039.145984pt;}
._19{width:1073.928843pt;}
._44{width:1129.384320pt;}
._5f{width:1163.328000pt;}
._61{width:1164.602880pt;}
._60{width:1228.346880pt;}
._6d{width:1971.711408pt;}
._21{width:1993.451568pt;}
._6e{width:2358.192470pt;}
._1a{width:2379.445804pt;}
.fs12{font-size:24.960000pt;}
.fs11{font-size:32.000000pt;}
.fs10{font-size:37.120000pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:40.381867pt;}
.fsf{font-size:42.077867pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:42.880000pt;}
.fsb{font-size:44.292800pt;}
.fs5{font-size:47.820800pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:53.133867pt;}
.fsd{font-size:55.365867pt;}
.fsa{font-size:64.000000pt;}
.fse{font-size:74.387733pt;}
.fs1{font-size:82.149120pt;}
.fs3{font-size:95.641600pt;}
.y34e{bottom:-789.804480pt;}
.y212{bottom:-731.040480pt;}
.y3c3{bottom:-706.023147pt;}
.y23e{bottom:-678.717280pt;}
.y23d{bottom:-661.599360pt;}
.y3eb{bottom:-656.422347pt;}
.y23c{bottom:-644.640800pt;}
.y3ea{bottom:-639.304427pt;}
.y23b{bottom:-627.522880pt;}
.y3e9{bottom:-622.186507pt;}
.yb6{bottom:-613.004480pt;}
.y367{bottom:-611.082240pt;}
.y23a{bottom:-610.404960pt;}
.ye7{bottom:-606.531147pt;}
.y3e8{bottom:-605.068587pt;}
.y366{bottom:-593.486240pt;}
.y239{bottom:-593.273760pt;}
.y3e7{bottom:-587.937387pt;}
.y238{bottom:-576.155840pt;}
.y375{bottom:-573.483040pt;}
.y3e6{bottom:-570.978827pt;}
.y373{bottom:-555.400480pt;}
.y3e5{bottom:-553.860907pt;}
.y368{bottom:-541.805280pt;}
.y237{bottom:-541.601280pt;}
.y11b{bottom:-537.295147pt;}
.y3e4{bottom:-536.742987pt;}
.y14c{bottom:-533.513813pt;}
.y369{bottom:-527.885280pt;}
.y236{bottom:-522.876480pt;}
.y377{bottom:-521.964640pt;}
.y3e3{bottom:-519.625067pt;}
.y36a{bottom:-513.965280pt;}
.y37d{bottom:-507.088800pt;}
.y235{bottom:-504.324320pt;}
.y231{bottom:-504.005600pt;}
.y378{bottom:-502.124000pt;}
.y374{bottom:-501.487520pt;}
.y36b{bottom:-500.045280pt;}
.y3e2{bottom:-498.669227pt;}
.y36c{bottom:-486.125280pt;}
.y230{bottom:-485.918240pt;}
.y234{bottom:-485.599520pt;}
.y17f{bottom:-483.185813pt;}
.y1b0{bottom:-483.076480pt;}
.y379{bottom:-482.283360pt;}
.y36d{bottom:-472.363040pt;}
.y233{bottom:-466.874720pt;}
.y3e1{bottom:-465.548907pt;}
.y37a{bottom:-462.284960pt;}
.y376{bottom:-460.521760pt;}
.y36e{bottom:-458.443040pt;}
.y3e0{bottom:-448.417707pt;}
.y232{bottom:-448.322560pt;}
.y36f{bottom:-444.523040pt;}
.y37b{bottom:-442.444320pt;}
.y3df{bottom:-431.299787pt;}
.y370{bottom:-430.603040pt;}
.y22f{bottom:-429.597760pt;}
.y37c{bottom:-422.603680pt;}
.y371{bottom:-416.683040pt;}
.y2bd{bottom:-415.084480pt;}
.y3de{bottom:-414.181867pt;}
.y22e{bottom:-411.045600pt;}
.y372{bottom:-402.763040pt;}
.y3dd{bottom:-397.063947pt;}
.y22d{bottom:-392.320800pt;}
.y229{bottom:-392.002080pt;}
.y3dc{bottom:-380.105387pt;}
.y228{bottom:-374.074080pt;}
.y22c{bottom:-373.755360pt;}
.ye3{bottom:-368.200960pt;}
.y3db{bottom:-362.987467pt;}
.y365{bottom:-361.962720pt;}
.y114{bottom:-361.727627pt;}
.y22b{bottom:-355.043840pt;}
.ye2{bottom:-351.083040pt;}
.y3da{bottom:-345.869547pt;}
.y364{bottom:-344.844800pt;}
.y113{bottom:-344.609707pt;}
.y2d6{bottom:-343.717760pt;}
.y22a{bottom:-336.319040pt;}
.ye1{bottom:-333.965120pt;}
.y3d9{bottom:-328.738347pt;}
.y363{bottom:-327.726880pt;}
.y112{bottom:-327.491787pt;}
.y2d5{bottom:-326.599840pt;}
.y227{bottom:-317.766880pt;}
.ye0{bottom:-316.847200pt;}
.y3d8{bottom:-311.620427pt;}
.y362{bottom:-310.608960pt;}
.y111{bottom:-310.373867pt;}
.y2d4{bottom:-309.481920pt;}
.ydf{bottom:-299.888640pt;}
.y224{bottom:-299.360800pt;}
.y226{bottom:-299.042080pt;}
.y3d7{bottom:-294.661867pt;}
.y361{bottom:-293.477760pt;}
.y110{bottom:-293.415307pt;}
.y148{bottom:-292.491627pt;}
.y2d3{bottom:-292.364000pt;}
.y179{bottom:-288.710293pt;}
.yde{bottom:-282.770720pt;}
.y225{bottom:-281.114080pt;}
.y3d6{bottom:-277.543947pt;}
.y360{bottom:-276.519200pt;}
.y10f{bottom:-276.297387pt;}
.y2d2{bottom:-275.405440pt;}
.y147{bottom:-275.373707pt;}
.y178{bottom:-271.592373pt;}
.ydd{bottom:-265.639520pt;}
.y3d5{bottom:-260.426027pt;}
.y35f{bottom:-259.401280pt;}
.y10e{bottom:-259.166187pt;}
.y2d1{bottom:-258.287520pt;}
.y146{bottom:-258.255787pt;}
.y177{bottom:-254.474453pt;}
.y223{bottom:-254.404000pt;}
.ydc{bottom:-248.521600pt;}
.y3d4{bottom:-243.308107pt;}
.y35e{bottom:-242.283360pt;}
.y10d{bottom:-242.048267pt;}
.y2d0{bottom:-241.169600pt;}
.y145{bottom:-241.137867pt;}
.y222{bottom:-239.044000pt;}
.y1ac{bottom:-238.382293pt;}
.y1dd{bottom:-238.272960pt;}
.y176{bottom:-237.356533pt;}
.ydb{bottom:-231.403680pt;}
.y3d3{bottom:-226.176907pt;}
.y35d{bottom:-225.165440pt;}
.y10c{bottom:-224.930347pt;}
.y144{bottom:-224.179307pt;}
.y2cf{bottom:-224.038400pt;}
.y1ab{bottom:-221.264373pt;}
.y1dc{bottom:-221.155040pt;}
.y175{bottom:-220.397973pt;}
.yda{bottom:-214.445120pt;}
.y3d2{bottom:-209.218347pt;}
.y35c{bottom:-208.047520pt;}
.y10b{bottom:-207.971787pt;}
.y221{bottom:-207.197600pt;}
.y143{bottom:-207.061387pt;}
.y2ce{bottom:-206.920480pt;}
.y1aa{bottom:-204.146453pt;}
.y1db{bottom:-204.037120pt;}
.y174{bottom:-203.280053pt;}
.yd9{bottom:-197.327200pt;}
.y3d1{bottom:-192.100427pt;}
.y35b{bottom:-191.088960pt;}
.y10a{bottom:-190.853867pt;}
.y220{bottom:-190.079680pt;}
.y2cd{bottom:-189.961920pt;}
.y142{bottom:-189.930187pt;}
.y1a9{bottom:-187.028533pt;}
.y1da{bottom:-186.919200pt;}
.y173{bottom:-186.148853pt;}
.yd8{bottom:-180.209280pt;}
.y3d0{bottom:-174.982507pt;}
.y35a{bottom:-173.957760pt;}
.y109{bottom:-173.735947pt;}
.y390{bottom:-173.660480pt;}
.y21f{bottom:-173.121120pt;}
.y2cc{bottom:-172.844000pt;}
.y141{bottom:-172.812267pt;}
.y1a8{bottom:-170.069973pt;}
.y1d9{bottom:-169.960640pt;}
.y172{bottom:-169.030933pt;}
.y7d{bottom:-164.351147pt;}
.yd7{bottom:-163.078080pt;}
.y3cf{bottom:-157.864587pt;}
.y359{bottom:-156.839840pt;}
.y108{bottom:-156.604747pt;}
.y21e{bottom:-156.003200pt;}
.y2cb{bottom:-155.726080pt;}
.y140{bottom:-155.694347pt;}
.y1a7{bottom:-152.952053pt;}
.y1d8{bottom:-152.842720pt;}
.y171{bottom:-151.913013pt;}
.y3ce{bottom:-140.746667pt;}
.y358{bottom:-139.721920pt;}
.y21d{bottom:-138.885280pt;}
.y13f{bottom:-138.735787pt;}
.y2ca{bottom:-138.608160pt;}
.y1a6{bottom:-135.820853pt;}
.y1d7{bottom:-135.711520pt;}
.y170{bottom:-134.954453pt;}
.yd6{bottom:-132.520800pt;}
.yd5{bottom:-129.479680pt;}
.y107{bottom:-126.047467pt;}
.y3cd{bottom:-123.788107pt;}
.yd4{bottom:-123.410720pt;}
.y106{bottom:-123.006347pt;}
.y357{bottom:-122.604000pt;}
.y21c{bottom:-121.754080pt;}
.y13e{bottom:-121.617867pt;}
.y2c9{bottom:-121.490240pt;}
.y1a5{bottom:-118.702933pt;}
.y1d6{bottom:-118.593600pt;}
.y16f{bottom:-117.836533pt;}
.y105{bottom:-116.937387pt;}
.y9c{bottom:-108.668107pt;}
.y3cc{bottom:-106.656907pt;}
.y356{bottom:-105.645440pt;}
.yd3{bottom:-105.482720pt;}
.y21b{bottom:-104.636160pt;}
.y2c8{bottom:-104.518400pt;}
.y13d{bottom:-104.499947pt;}
.y1a4{bottom:-101.585013pt;}
.y1d5{bottom:-101.475680pt;}
.y16e{bottom:-100.718613pt;}
.y104{bottom:-99.009387pt;}
.y9b{bottom:-91.550187pt;}
.y3cb{bottom:-89.538987pt;}
.y355{bottom:-88.527520pt;}
.y21a{bottom:-87.518240pt;}
.y2c7{bottom:-87.400480pt;}
.y13c{bottom:-87.368747pt;}
.y1a3{bottom:-84.626453pt;}
.y1d4{bottom:-84.517120pt;}
.y16d{bottom:-83.587413pt;}
.yd2{bottom:-81.804480pt;}
.y103{bottom:-75.331147pt;}
.y9a{bottom:-74.432267pt;}
.y3ca{bottom:-72.421067pt;}
.y354{bottom:-71.409600pt;}
.y219{bottom:-70.559680pt;}
.y2c6{bottom:-70.282560pt;}
.y1a2{bottom:-67.508533pt;}
.y1d3{bottom:-67.399200pt;}
.y32c{bottom:-64.857280pt;}
.yd0{bottom:-63.889760pt;}
.y101{bottom:-57.416427pt;}
.y13b{bottom:-56.811467pt;}
.y13a{bottom:-53.770347pt;}
.y99{bottom:-53.476427pt;}
.y218{bottom:-53.441760pt;}
.y16c{bottom:-53.030133pt;}
.y1a1{bottom:-50.390613pt;}
.y1d2{bottom:-50.281280pt;}
.y353{bottom:-50.281120pt;}
.y16b{bottom:-49.989013pt;}
.y139{bottom:-47.701387pt;}
.yd1{bottom:-45.802400pt;}
.y16a{bottom:-43.920053pt;}
.y3c9{bottom:-39.786667pt;}
.y102{bottom:-39.329067pt;}
.y2c5{bottom:-37.640000pt;}
.y1a0{bottom:-33.259413pt;}
.y1d1{bottom:-33.150080pt;}
.y138{bottom:-29.773387pt;}
.yce{bottom:-27.250240pt;}
.y169{bottom:-25.992053pt;}
.y3c8{bottom:-24.426667pt;}
.y2c4{bottom:-22.280000pt;}
.y98{bottom:-20.834667pt;}
.y217{bottom:-20.800000pt;}
.yff{bottom:-20.776907pt;}
.y352{bottom:-17.644000pt;}
.ycd{bottom:-9.162880pt;}
.y137{bottom:-6.095147pt;}
.y19f{bottom:-2.702133pt;}
.yfe{bottom:-2.689547pt;}
.y1d0{bottom:-2.592800pt;}
.y168{bottom:-2.313813pt;}
.y97{bottom:-0.834507pt;}
.y3c7{bottom:-0.589547pt;}
.yc8{bottom:-0.198880pt;}
.y0{bottom:0.000000pt;}
.y19e{bottom:0.338987pt;}
.y1cf{bottom:0.448320pt;}
.ycf{bottom:0.757280pt;}
.y214{bottom:1.272000pt;}
.y3c5{bottom:1.593280pt;}
.y2c3{bottom:1.721600pt;}
.y317{bottom:1.919360pt;}
.y34a{bottom:2.406240pt;}
.y347{bottom:2.562720pt;}
.y351{bottom:2.565280pt;}
.y343{bottom:2.718560pt;}
.y215{bottom:3.672000pt;}
.y3a8{bottom:3.677760pt;}
.y3a9{bottom:5.061760pt;}
.y216{bottom:5.123040pt;}
.yf9{bottom:6.274453pt;}
.y19d{bottom:6.407947pt;}
.y1ce{bottom:6.517280pt;}
.y100{bottom:7.230613pt;}
.ycc{bottom:8.751840pt;}
.y135{bottom:11.819573pt;}
.yfd{bottom:15.225173pt;}
.y166{bottom:15.600907pt;}
.y16{bottom:17.254453pt;}
.yc7{bottom:17.875200pt;}
.y19c{bottom:24.335947pt;}
.yf8{bottom:24.348533pt;}
.y1cd{bottom:24.445280pt;}
.ycb{bottom:26.839200pt;}
.y44{bottom:28.346667pt;}
.y136{bottom:29.906933pt;}
.yfc{bottom:33.312533pt;}
.y3c6{bottom:33.659573pt;}
.y167{bottom:33.688267pt;}
.yc6{bottom:35.789920pt;}
.y2c2{bottom:35.798080pt;}
.yf7{bottom:42.263253pt;}
.y3b7{bottom:42.660960pt;}
.yca{bottom:44.753920pt;}
.y19b{bottom:48.014187pt;}
.y1cc{bottom:48.123520pt;}
.y133{bottom:48.459093pt;}
.yfb{bottom:51.227253pt;}
.y164{bottom:52.240427pt;}
.y2c1{bottom:53.712800pt;}
.y34f{bottom:56.915040pt;}
.y348{bottom:57.225760pt;}
.y3b5{bottom:60.743520pt;}
.yc9{bottom:62.841280pt;}
.y199{bottom:65.928907pt;}
.y1ca{bottom:66.038240pt;}
.y132{bottom:66.546453pt;}
.yfa{bottom:69.314613pt;}
.y3fc{bottom:69.657173pt;}
.y163{bottom:70.327787pt;}
.y3aa{bottom:74.338720pt;}
.y2f4{bottom:74.993600pt;}
.y12d{bottom:75.510453pt;}
.y134{bottom:76.466613pt;}
.y15e{bottom:79.291787pt;}
.y165{bottom:80.247947pt;}
.yc5{bottom:81.393440pt;}
.y19a{bottom:84.016267pt;}
.y1cb{bottom:84.125600pt;}
.y131{bottom:84.461173pt;}
.y3fa{bottom:87.575093pt;}
.yf6{bottom:87.866773pt;}
.y162{bottom:88.242507pt;}
.y3ab{bottom:88.258720pt;}
.yc4{bottom:90.676160pt;}
.y43{bottom:92.108000pt;}
.y14{bottom:93.018667pt;}
.y2f2{bottom:93.079520pt;}
.y12c{bottom:93.584533pt;}
.y328{bottom:93.930667pt;}
.y3b9{bottom:94.179360pt;}
.ya6{bottom:95.521333pt;}
.y287{bottom:95.614667pt;}
.yf5{bottom:97.149493pt;}
.y15d{bottom:97.365867pt;}
.y1fa{bottom:98.300000pt;}
.y2b9{bottom:98.564000pt;}
.y3ec{bottom:101.337333pt;}
.y3ac{bottom:102.178720pt;}
.y130{bottom:102.548533pt;}
.y197{bottom:102.568427pt;}
.y1c8{bottom:102.677760pt;}
.y79{bottom:104.316000pt;}
.y412{bottom:105.909333pt;}
.y161{bottom:106.329867pt;}
.y2eb{bottom:106.674720pt;}
.y42{bottom:108.844000pt;}
.y13{bottom:108.920000pt;}
.y3bf{bottom:109.055200pt;}
.y327{bottom:110.668000pt;}
.y12b{bottom:111.499253pt;}
.ya5{bottom:112.258667pt;}
.y286{bottom:112.352000pt;}
.y3ed{bottom:112.538293pt;}
.y3ba{bottom:114.020000pt;}
.y3b6{bottom:114.656480pt;}
.y1f9{bottom:115.037333pt;}
.y15c{bottom:115.280587pt;}
.y2b8{bottom:115.301333pt;}
.y3ad{bottom:116.098720pt;}
.y3fe{bottom:119.572533pt;}
.y12f{bottom:120.463253pt;}
.y196{bottom:120.655787pt;}
.y1c7{bottom:120.765120pt;}
.y78{bottom:121.053333pt;}
.y43d{bottom:121.810667pt;}
.y411{bottom:122.646667pt;}
.y3ee{bottom:123.897013pt;}
.y160{bottom:124.244587pt;}
.y12{bottom:124.820000pt;}
.y41{bottom:125.581333pt;}
.y407{bottom:125.705333pt;}
.yc3{bottom:126.672000pt;}
.y326{bottom:127.404000pt;}
.ya4{bottom:128.996000pt;}
.y285{bottom:129.089333pt;}
.y191{bottom:129.619787pt;}
.y1c2{bottom:129.729120pt;}
.y3ae{bottom:130.018720pt;}
.y198{bottom:130.575947pt;}
.y1c9{bottom:130.685280pt;}
.y1f8{bottom:131.774667pt;}
.y2b7{bottom:132.038667pt;}
.yf4{bottom:133.145333pt;}
.y2ec{bottom:133.716640pt;}
.y3bb{bottom:133.860640pt;}
.y3ef{bottom:135.097973pt;}
.y43c{bottom:137.152000pt;}
.y3ff{bottom:137.974773pt;}
.y12e{bottom:138.550613pt;}
.y195{bottom:138.570507pt;}
.y1c6{bottom:138.679840pt;}
.y410{bottom:139.384000pt;}
.y11{bottom:140.720000pt;}
.y77{bottom:141.774667pt;}
.y40{bottom:142.318667pt;}
.y15f{bottom:142.331947pt;}
.y406{bottom:142.800000pt;}
.y3af{bottom:143.780960pt;}
.y325{bottom:144.141333pt;}
.y3fd{bottom:144.535733pt;}
.y3fb{bottom:145.501173pt;}
.ya3{bottom:145.733333pt;}
.y284{bottom:145.826667pt;}
.y3f0{bottom:146.456693pt;}
.y2f3{bottom:146.839040pt;}
.y37e{bottom:147.692000pt;}
.y190{bottom:147.693867pt;}
.y246{bottom:147.756000pt;}
.y1c1{bottom:147.803200pt;}
.y1f7{bottom:148.512000pt;}
.y2b6{bottom:148.776000pt;}
.y43b{bottom:152.494667pt;}
.y3bc{bottom:153.859040pt;}
.y3b8{bottom:155.622240pt;}
.y40f{bottom:156.121333pt;}
.y400{bottom:156.219253pt;}
.y10{bottom:156.621333pt;}
.y194{bottom:156.657867pt;}
.y1c5{bottom:156.767200pt;}
.y12a{bottom:157.102773pt;}
.y3f1{bottom:157.657653pt;}
.y3b0{bottom:157.700960pt;}
.yc2{bottom:158.510400pt;}
.y3f{bottom:159.056000pt;}
.y76{bottom:159.708000pt;}
.y2ed{bottom:160.591520pt;}
.y324{bottom:160.878667pt;}
.y15b{bottom:160.884107pt;}
.y405{bottom:161.174773pt;}
.ya2{bottom:162.470667pt;}
.yf3{bottom:164.983733pt;}
.y1f6{bottom:165.249333pt;}
.y3c0{bottom:165.394667pt;}
.y2b5{bottom:165.513333pt;}
.y18f{bottom:165.608587pt;}
.y1c0{bottom:165.717920pt;}
.y129{bottom:166.385493pt;}
.y43a{bottom:167.837333pt;}
.y245{bottom:168.769333pt;}
.y3f2{bottom:168.858613pt;}
.y15a{bottom:170.166827pt;}
.y34b{bottom:170.285333pt;}
.y3b1{bottom:171.620960pt;}
.yf{bottom:172.521333pt;}
.y40e{bottom:172.858667pt;}
.y350{bottom:173.281333pt;}
.y3bd{bottom:173.699680pt;}
.y193{bottom:174.572587pt;}
.y401{bottom:174.621493pt;}
.y1c4{bottom:174.681920pt;}
.yc1{bottom:175.641600pt;}
.y3e{bottom:175.793333pt;}
.y283{bottom:176.510667pt;}
.y323{bottom:177.616000pt;}
.ya1{bottom:179.208000pt;}
.y3f3{bottom:180.217333pt;}
.y1f5{bottom:181.986667pt;}
.yf2{bottom:182.114933pt;}
.y2b4{bottom:182.250667pt;}
.y439{bottom:183.180000pt;}
.y3b2{bottom:185.540960pt;}
.y2ee{bottom:187.475680pt;}
.ye{bottom:188.421333pt;}
.y75{bottom:189.596000pt;}
.y244{bottom:189.784000pt;}
.y3f4{bottom:191.418293pt;}
.y3d{bottom:192.530667pt;}
.y192{bottom:192.659947pt;}
.yc0{bottom:192.759520pt;}
.y1c3{bottom:192.769280pt;}
.y402{bottom:192.856693pt;}
.y3be{bottom:193.540320pt;}
.y322{bottom:194.353333pt;}
.ya0{bottom:195.945333pt;}
.y438{bottom:198.522667pt;}
.y1f4{bottom:198.724000pt;}
.y2b3{bottom:198.986667pt;}
.yf1{bottom:199.232853pt;}
.y3b3{bottom:199.460960pt;}
.y128{bottom:202.381333pt;}
.y3f5{bottom:202.777013pt;}
.yd{bottom:204.322667pt;}
.y159{bottom:206.162667pt;}
.y74{bottom:206.333333pt;}
.y282{bottom:207.196000pt;}
.y3c{bottom:209.268000pt;}
.ybf{bottom:209.877440pt;}
.y243{bottom:210.797333pt;}
.y321{bottom:211.090667pt;}
.y18e{bottom:211.212107pt;}
.y403{bottom:211.258933pt;}
.y1bf{bottom:211.321440pt;}
.y9f{bottom:212.682667pt;}
.y3c4{bottom:212.972000pt;}
.y3b4{bottom:213.380960pt;}
.y437{bottom:213.865333pt;}
.y3f6{bottom:213.977973pt;}
.y2ef{bottom:214.517600pt;}
.y1f3{bottom:215.461333pt;}
.y2b2{bottom:215.724000pt;}
.yf0{bottom:216.350773pt;}
.y300{bottom:217.394400pt;}
.y2f9{bottom:218.192480pt;}
.y34d{bottom:218.360480pt;}
.y18d{bottom:220.494827pt;}
.y1be{bottom:220.604160pt;}
.y73{bottom:223.070667pt;}
.y281{bottom:223.933333pt;}
.y3f7{bottom:225.336693pt;}
.y3b{bottom:226.005333pt;}
.ybe{bottom:226.836000pt;}
.y34c{bottom:226.840000pt;}
.y320{bottom:227.828000pt;}
.y436{bottom:229.208000pt;}
.y404{bottom:229.494133pt;}
.y2ff{bottom:230.033760pt;}
.y2f8{bottom:230.831840pt;}
.y242{bottom:231.810667pt;}
.y1f2{bottom:232.198667pt;}
.y2b1{bottom:232.461333pt;}
.yef{bottom:233.309333pt;}
.y9e{bottom:233.405333pt;}
.y127{bottom:234.219733pt;}
.y3f8{bottom:236.537653pt;}
.y158{bottom:238.001067pt;}
.y345{bottom:238.179040pt;}
.y301{bottom:239.796320pt;}
.y72{bottom:239.808000pt;}
.y280{bottom:240.670667pt;}
.y2fa{bottom:241.076960pt;}
.y2f0{bottom:241.392480pt;}
.y2fe{bottom:242.515360pt;}
.y3a{bottom:242.742667pt;}
.y2f7{bottom:243.313440pt;}
.ybd{bottom:243.953920pt;}
.y435{bottom:244.550667pt;}
.y31f{bottom:244.565333pt;}
.y3f9{bottom:247.896373pt;}
.y1f1{bottom:248.936000pt;}
.y2b0{bottom:249.198667pt;}
.yee{bottom:250.427253pt;}
.y126{bottom:251.350933pt;}
.y241{bottom:252.825333pt;}
.y3a6{bottom:254.181280pt;}
.y27f{bottom:254.981333pt;}
.y157{bottom:255.132267pt;}
.y2fd{bottom:255.154720pt;}
.y2f6{bottom:255.952800pt;}
.y18c{bottom:256.490667pt;}
.y71{bottom:256.545333pt;}
.y1bd{bottom:256.600000pt;}
.y27e{bottom:257.408000pt;}
.y39{bottom:259.480000pt;}
.y434{bottom:259.893333pt;}
.y9d{bottom:260.452000pt;}
.ybc{bottom:261.071840pt;}
.y31e{bottom:261.302667pt;}
.y1f0{bottom:265.673333pt;}
.y2af{bottom:265.936000pt;}
.y2fb{bottom:266.197920pt;}
.yc{bottom:266.570667pt;}
.yed{bottom:267.545173pt;}
.y2fc{bottom:267.794080pt;}
.y2f1{bottom:268.434400pt;}
.y125{bottom:268.468853pt;}
.y2f5{bottom:268.592160pt;}
.y302{bottom:268.759200pt;}
.y3a5{bottom:271.299200pt;}
.y27d{bottom:271.718667pt;}
.y156{bottom:272.250187pt;}
.y70{bottom:273.282667pt;}
.y27c{bottom:274.145333pt;}
.y433{bottom:275.234667pt;}
.y38{bottom:276.217333pt;}
.y211{bottom:277.124480pt;}
.y31d{bottom:278.040000pt;}
.ybb{bottom:278.189760pt;}
.y7a{bottom:280.388000pt;}
.y1ef{bottom:282.410667pt;}
.yb{bottom:282.470667pt;}
.y2ae{bottom:282.673333pt;}
.y240{bottom:283.588000pt;}
.yec{bottom:284.663093pt;}
.y124{bottom:285.586773pt;}
.y210{bottom:285.604000pt;}
.y18b{bottom:288.329067pt;}
.y3a4{bottom:288.417120pt;}
.y1bc{bottom:288.438400pt;}
.y155{bottom:289.368107pt;}
.y6f{bottom:290.020000pt;}
.y432{bottom:290.577333pt;}
.y37{bottom:292.954667pt;}
.y2c0{bottom:293.722240pt;}
.y31c{bottom:294.777333pt;}
.yba{bottom:295.320960pt;}
.ya{bottom:298.370667pt;}
.y1ee{bottom:299.148000pt;}
.y2ad{bottom:299.410667pt;}
.yeb{bottom:301.794293pt;}
.y3c2{bottom:302.141813pt;}
.y123{bottom:302.545333pt;}
.y18a{bottom:305.460267pt;}
.y3a3{bottom:305.535040pt;}
.y1bb{bottom:305.569600pt;}
.y431{bottom:305.920000pt;}
.y154{bottom:306.326667pt;}
.y27b{bottom:306.524000pt;}
.y6e{bottom:306.757333pt;}
.y279{bottom:307.002667pt;}
.y36{bottom:309.692000pt;}
.y3c1{bottom:310.621333pt;}
.y31b{bottom:311.514667pt;}
.y2bf{bottom:311.636960pt;}
.yb9{bottom:312.279520pt;}
.y9{bottom:314.272000pt;}
.y278{bottom:314.972000pt;}
.y274{bottom:315.636000pt;}
.y1ed{bottom:315.885333pt;}
.y2ac{bottom:316.148000pt;}
.y23f{bottom:317.952000pt;}
.yea{bottom:318.752853pt;}
.y122{bottom:319.663253pt;}
.y430{bottom:321.262667pt;}
.y189{bottom:322.578187pt;}
.y3a2{bottom:322.666240pt;}
.y1ba{bottom:322.687520pt;}
.y277{bottom:322.942667pt;}
.y153{bottom:323.444587pt;}
.y6d{bottom:323.494667pt;}
.y27a{bottom:326.141333pt;}
.y35{bottom:326.429333pt;}
.y310{bottom:327.631840pt;}
.yb8{bottom:329.397440pt;}
.y276{bottom:330.912000pt;}
.y2e4{bottom:331.630400pt;}
.y31a{bottom:332.237333pt;}
.y1ec{bottom:332.622667pt;}
.y2ab{bottom:332.885333pt;}
.ye9{bottom:335.870773pt;}
.y42f{bottom:336.605333pt;}
.y121{bottom:336.781173pt;}
.y275{bottom:338.882667pt;}
.y8{bottom:339.470667pt;}
.y3a1{bottom:339.624800pt;}
.y188{bottom:339.696107pt;}
.y1b9{bottom:339.805440pt;}
.y6c{bottom:340.232000pt;}
.y20f{bottom:340.546667pt;}
.y152{bottom:340.562507pt;}
.y34{bottom:343.166667pt;}
.y30e{bottom:345.718240pt;}
.yb7{bottom:346.515360pt;}
.y1eb{bottom:349.360000pt;}
.y2aa{bottom:349.622667pt;}
.y2e2{bottom:349.717920pt;}
.y42e{bottom:351.948000pt;}
.ye8{bottom:352.988693pt;}
.y120{bottom:353.899093pt;}
.y7{bottom:355.370667pt;}
.y329{bottom:356.630133pt;}
.y187{bottom:356.654667pt;}
.y3a0{bottom:356.742720pt;}
.y1b8{bottom:356.764000pt;}
.y273{bottom:356.802667pt;}
.y6b{bottom:356.968000pt;}
.y151{bottom:357.680427pt;}
.y319{bottom:359.284000pt;}
.y303{bottom:359.313440pt;}
.y33{bottom:359.904000pt;}
.y349{bottom:360.733333pt;}
.y213{bottom:361.506667pt;}
.y2d7{bottom:363.313120pt;}
.y1ea{bottom:366.097333pt;}
.y2a9{bottom:366.360000pt;}
.y42d{bottom:367.290667pt;}
.y344{bottom:368.256640pt;}
.y11f{bottom:371.030293pt;}
.y272{bottom:371.113333pt;}
.y271{bottom:373.540000pt;}
.y6a{bottom:373.705333pt;}
.y186{bottom:373.772587pt;}
.y39f{bottom:373.860640pt;}
.y1b7{bottom:373.881920pt;}
.y150{bottom:374.811627pt;}
.y318{bottom:376.380000pt;}
.y304{bottom:376.592800pt;}
.y32{bottom:376.641333pt;}
.y96{bottom:377.087733pt;}
.y6{bottom:379.241333pt;}
.y2d8{bottom:380.592480pt;}
.y42c{bottom:382.633333pt;}
.y1e9{bottom:382.834667pt;}
.y2a8{bottom:383.097333pt;}
.y11e{bottom:387.988853pt;}
.y270{bottom:390.277333pt;}
.y69{bottom:390.442667pt;}
.y185{bottom:390.890507pt;}
.y39e{bottom:390.978560pt;}
.y1b6{bottom:390.999840pt;}
.y14f{bottom:391.770187pt;}
.y31{bottom:393.378667pt;}
.y305{bottom:394.039200pt;}
.y95{bottom:394.205653pt;}
.y5{bottom:395.141333pt;}
.yb5{bottom:395.160480pt;}
.y42b{bottom:397.974667pt;}
.y2d9{bottom:398.038880pt;}
.y2ba{bottom:398.973333pt;}
.y1e8{bottom:399.572000pt;}
.y2a7{bottom:399.834667pt;}
.ye6{bottom:401.633813pt;}
.yb4{bottom:403.640000pt;}
.y26f{bottom:404.588000pt;}
.y30f{bottom:405.073120pt;}
.y11d{bottom:405.106773pt;}
.y26e{bottom:407.013333pt;}
.y68{bottom:407.180000pt;}
.y184{bottom:408.008427pt;}
.y39d{bottom:408.096480pt;}
.y1b5{bottom:408.117760pt;}
.y14e{bottom:408.888107pt;}
.y2e3{bottom:409.071680pt;}
.ye5{bottom:410.113333pt;}
.y30{bottom:410.116000pt;}
.y4{bottom:411.042667pt;}
.y94{bottom:411.164213pt;}
.y306{bottom:411.318560pt;}
.y42a{bottom:413.317333pt;}
.y2da{bottom:415.318240pt;}
.y1e7{bottom:416.309333pt;}
.y2a6{bottom:416.572000pt;}
.y341{bottom:417.538720pt;}
.y26d{bottom:421.325333pt;}
.y11c{bottom:422.224693pt;}
.y26c{bottom:423.750667pt;}
.y67{bottom:423.917333pt;}
.y39c{bottom:425.055040pt;}
.y183{bottom:425.139627pt;}
.y1b4{bottom:425.248960pt;}
.y14d{bottom:426.006027pt;}
.y2f{bottom:426.853333pt;}
.y3{bottom:426.942667pt;}
.y93{bottom:428.295413pt;}
.y307{bottom:428.597920pt;}
.y429{bottom:428.660000pt;}
.y2db{bottom:432.597600pt;}
.y1e6{bottom:433.046667pt;}
.y2a5{bottom:433.309333pt;}
.y38d{bottom:435.521333pt;}
.y26b{bottom:438.061333pt;}
.y26a{bottom:440.488000pt;}
.y66{bottom:440.654667pt;}
.y182{bottom:442.098187pt;}
.y39b{bottom:442.186240pt;}
.y1b3{bottom:442.207520pt;}
.y2{bottom:442.842667pt;}
.y2e{bottom:443.590667pt;}
.y428{bottom:444.002667pt;}
.y92{bottom:445.413333pt;}
.y308{bottom:445.877280pt;}
.y1e5{bottom:449.784000pt;}
.y2dc{bottom:449.876960pt;}
.y2a4{bottom:450.046667pt;}
.y3a7{bottom:454.501333pt;}
.y65{bottom:457.392000pt;}
.y1{bottom:458.744000pt;}
.y181{bottom:459.216107pt;}
.y39a{bottom:459.304160pt;}
.y1b2{bottom:459.325440pt;}
.y427{bottom:459.345333pt;}
.y269{bottom:461.185333pt;}
.y91{bottom:462.531253pt;}
.y309{bottom:463.156640pt;}
.y2d{bottom:464.312000pt;}
.y266{bottom:466.385333pt;}
.y1e4{bottom:466.521333pt;}
.y2a3{bottom:466.784000pt;}
.y2dd{bottom:467.156320pt;}
.y11a{bottom:470.869813pt;}
.y268{bottom:472.734667pt;}
.y64{bottom:474.129333pt;}
.y14b{bottom:474.651147pt;}
.y426{bottom:474.688000pt;}
.y264{bottom:475.497333pt;}
.y180{bottom:476.334027pt;}
.y399{bottom:476.422080pt;}
.y1b1{bottom:476.443360pt;}
.y119{bottom:479.349333pt;}
.y90{bottom:479.649173pt;}
.y30a{bottom:480.436000pt;}
.y315{bottom:482.672480pt;}
.y14a{bottom:483.130667pt;}
.y1e3{bottom:483.258667pt;}
.y2a2{bottom:483.521333pt;}
.y2de{bottom:484.435680pt;}
.y265{bottom:484.490667pt;}
.y2e9{bottom:486.672160pt;}
.y425{bottom:490.030667pt;}
.y63{bottom:490.866667pt;}
.y267{bottom:491.508000pt;}
.y398{bottom:493.540000pt;}
.y314{bottom:495.311840pt;}
.y8f{bottom:496.607733pt;}
.y30b{bottom:497.715360pt;}
.y2e8{bottom:499.311520pt;}
.y1e2{bottom:499.996000pt;}
.y2a1{bottom:500.258667pt;}
.y2df{bottom:501.715040pt;}
.y263{bottom:504.906667pt;}
.y424{bottom:505.373333pt;}
.y62{bottom:507.604000pt;}
.y313{bottom:507.793440pt;}
.y397{bottom:510.498560pt;}
.y2e7{bottom:511.793120pt;}
.y8e{bottom:513.725653pt;}
.y30c{bottom:514.994720pt;}
.y1e1{bottom:516.733333pt;}
.y2a0{bottom:516.996000pt;}
.y2e0{bottom:518.994400pt;}
.y312{bottom:520.432800pt;}
.y423{bottom:520.716000pt;}
.y262{bottom:521.644000pt;}
.y40d{bottom:524.341333pt;}
.y2e6{bottom:524.432480pt;}
.y17e{bottom:524.979147pt;}
.y1af{bottom:525.088480pt;}
.y396{bottom:527.616480pt;}
.y61{bottom:528.326667pt;}
.y2c{bottom:529.701333pt;}
.y8d{bottom:530.843573pt;}
.y2be{bottom:531.633440pt;}
.y30d{bottom:532.431840pt;}
.y311{bottom:533.072160pt;}
.y17d{bottom:533.458667pt;}
.y1e0{bottom:533.469333pt;}
.y1ae{bottom:533.568000pt;}
.y29f{bottom:533.733333pt;}
.y2ea{bottom:535.317920pt;}
.y422{bottom:536.057333pt;}
.y2e1{bottom:536.431520pt;}
.y2e5{bottom:537.071840pt;}
.y261{bottom:538.381333pt;}
.y346{bottom:540.733333pt;}
.y40c{bottom:541.078667pt;}
.y395{bottom:544.734400pt;}
.y2b{bottom:546.997333pt;}
.y8c{bottom:547.974773pt;}
.y340{bottom:548.585760pt;}
.y1df{bottom:550.206667pt;}
.y29e{bottom:550.470667pt;}
.y421{bottom:551.400000pt;}
.y260{bottom:555.118667pt;}
.y40b{bottom:557.816000pt;}
.y60{bottom:558.214667pt;}
.y8b{bottom:565.092693pt;}
.y394{bottom:565.862880pt;}
.y1de{bottom:566.944000pt;}
.y29d{bottom:567.208000pt;}
.y420{bottom:570.728000pt;}
.y25f{bottom:571.856000pt;}
.y40a{bottom:574.553333pt;}
.y5f{bottom:574.952000pt;}
.y2a{bottom:580.232000pt;}
.y8a{bottom:582.051253pt;}
.y33f{bottom:582.980960pt;}
.y29c{bottom:583.945333pt;}
.y25e{bottom:588.593333pt;}
.y409{bottom:591.290667pt;}
.y5e{bottom:591.689333pt;}
.y20e{bottom:592.610667pt;}
.y2bc{bottom:593.080480pt;}
.y29{bottom:597.528000pt;}
.y393{bottom:598.500000pt;}
.y89{bottom:599.169173pt;}
.y33e{bottom:600.098880pt;}
.y41f{bottom:600.616000pt;}
.y29b{bottom:600.682667pt;}
.y2bb{bottom:601.560000pt;}
.y25d{bottom:605.330667pt;}
.y5d{bottom:608.426667pt;}
.y1ad{bottom:610.012000pt;}
.y17c{bottom:611.430667pt;}
.y408{bottom:612.013333pt;}
.y20d{bottom:613.624000pt;}
.y28{bottom:614.822667pt;}
.y88{bottom:616.287093pt;}
.y33d{bottom:617.216800pt;}
.y29a{bottom:617.420000pt;}
.y17b{bottom:619.082667pt;}
.y25c{bottom:622.068000pt;}
.y41e{bottom:624.208000pt;}
.y5c{bottom:625.164000pt;}
.y27{bottom:632.118667pt;}
.y87{bottom:633.405013pt;}
.y17a{bottom:633.694667pt;}
.y299{bottom:634.157333pt;}
.y33c{bottom:634.348000pt;}
.y20c{bottom:634.638667pt;}
.y25b{bottom:638.805333pt;}
.y41d{bottom:639.829333pt;}
.y5b{bottom:641.901333pt;}
.y208{bottom:643.501333pt;}
.y26{bottom:649.413333pt;}
.y86{bottom:650.522933pt;}
.y298{bottom:650.893333pt;}
.y33b{bottom:651.465920pt;}
.y25a{bottom:655.542667pt;}
.y20b{bottom:655.652000pt;}
.y207{bottom:658.113333pt;}
.y5a{bottom:658.638667pt;}
.y41c{bottom:663.420000pt;}
.y149{bottom:663.780000pt;}
.y117{bottom:663.836000pt;}
.y25{bottom:666.708000pt;}
.y118{bottom:667.416000pt;}
.y85{bottom:667.494773pt;}
.y297{bottom:667.630667pt;}
.y33a{bottom:668.583840pt;}
.y259{bottom:672.280000pt;}
.y391{bottom:673.059040pt;}
.y59{bottom:675.376000pt;}
.y20a{bottom:676.666667pt;}
.y115{bottom:678.448000pt;}
.y44f{bottom:682.482667pt;}
.y24{bottom:684.004000pt;}
.y296{bottom:684.368000pt;}
.y84{bottom:684.612693pt;}
.y339{bottom:685.542400pt;}
.y41b{bottom:687.012000pt;}
.y38c{bottom:688.128000pt;}
.y58{bottom:692.113333pt;}
.y258{bottom:693.002667pt;}
.y116{bottom:693.058667pt;}
.y209{bottom:697.680000pt;}
.y44e{bottom:697.825333pt;}
.y295{bottom:701.105333pt;}
.y23{bottom:701.298667pt;}
.y83{bottom:701.730613pt;}
.y338{bottom:702.660320pt;}
.y38b{bottom:704.865333pt;}
.y57{bottom:708.850667pt;}
.y41a{bottom:710.604000pt;}
.y44d{bottom:713.166667pt;}
.yb2{bottom:714.128000pt;}
.y294{bottom:717.842667pt;}
.y22{bottom:718.593333pt;}
.y206{bottom:718.694667pt;}
.y82{bottom:718.848533pt;}
.y337{bottom:719.778240pt;}
.y342{bottom:720.893333pt;}
.y38a{bottom:721.602667pt;}
.y56{bottom:725.588000pt;}
.y257{bottom:725.886667pt;}
.y419{bottom:726.225333pt;}
.yb1{bottom:728.740000pt;}
.ye4{bottom:729.154667pt;}
.yb3{bottom:733.518667pt;}
.y293{bottom:734.580000pt;}
.y21{bottom:735.889333pt;}
.y81{bottom:735.966453pt;}
.yac{bottom:736.046667pt;}
.y336{bottom:736.909440pt;}
.y389{bottom:738.340000pt;}
.y256{bottom:738.506667pt;}
.y205{bottom:739.708000pt;}
.y418{bottom:741.846667pt;}
.y55{bottom:742.324000pt;}
.yb0{bottom:743.352000pt;}
.y44c{bottom:747.904000pt;}
.yab{bottom:750.658667pt;}
.y255{bottom:751.125333pt;}
.y292{bottom:751.317333pt;}
.y388{bottom:752.650667pt;}
.y80{bottom:752.925013pt;}
.y20{bottom:753.184000pt;}
.y335{bottom:754.027360pt;}
.y387{bottom:755.077333pt;}
.yaf{bottom:757.964000pt;}
.y54{bottom:759.061333pt;}
.y204{bottom:760.722667pt;}
.y44b{bottom:763.246667pt;}
.y254{bottom:763.745333pt;}
.yaa{bottom:765.270667pt;}
.y417{bottom:765.438667pt;}
.y291{bottom:768.054667pt;}
.y200{bottom:769.585333pt;}
.y1f{bottom:770.480000pt;}
.y334{bottom:770.985920pt;}
.y386{bottom:771.814667pt;}
.yae{bottom:772.576000pt;}
.y7f{bottom:774.053493pt;}
.y53{bottom:775.798667pt;}
.y253{bottom:776.364000pt;}
.y44a{bottom:778.589333pt;}
.y416{bottom:781.060000pt;}
.y203{bottom:781.736000pt;}
.y1ff{bottom:784.197333pt;}
.y290{bottom:784.792000pt;}
.yad{bottom:787.188000pt;}
.y1e{bottom:787.774667pt;}
.y333{bottom:788.103840pt;}
.y385{bottom:788.552000pt;}
.y252{bottom:788.984000pt;}
.y52{bottom:792.536000pt;}
.y449{bottom:793.930667pt;}
.y7e{bottom:795.168693pt;}
.y415{bottom:796.681333pt;}
.y28f{bottom:801.529333pt;}
.y251{bottom:801.602667pt;}
.y202{bottom:802.750667pt;}
.y332{bottom:805.221760pt;}
.y384{bottom:805.289333pt;}
.ya9{bottom:808.201333pt;}
.y51{bottom:809.273333pt;}
.y414{bottom:812.302667pt;}
.y250{bottom:814.222667pt;}
.y1d{bottom:818.209333pt;}
.ya8{bottom:818.524000pt;}
.y383{bottom:822.025333pt;}
.y28e{bottom:822.252000pt;}
.y331{bottom:822.339680pt;}
.y201{bottom:823.764000pt;}
.y448{bottom:824.616000pt;}
.y50{bottom:826.010667pt;}
.y24f{bottom:826.841333pt;}
.y413{bottom:827.924000pt;}
.y1c{bottom:832.556000pt;}
.y38f{bottom:834.504480pt;}
.y382{bottom:838.762667pt;}
.y330{bottom:839.457600pt;}
.y24e{bottom:839.461333pt;}
.y447{bottom:839.958667pt;}
.y28d{bottom:840.184000pt;}
.y4f{bottom:842.748000pt;}
.y38e{bottom:842.984000pt;}
.y7c{bottom:843.813813pt;}
.y1fe{bottom:844.778667pt;}
.y1b{bottom:846.901333pt;}
.y7b{bottom:852.293333pt;}
.y1fd{bottom:855.234667pt;}
.y446{bottom:855.301333pt;}
.y381{bottom:855.500000pt;}
.y32f{bottom:856.429440pt;}
.y24d{bottom:858.868000pt;}
.y4e{bottom:859.485333pt;}
.ya7{bottom:859.978667pt;}
.y445{bottom:870.644000pt;}
.y28c{bottom:872.237333pt;}
.y32e{bottom:873.547360pt;}
.y4d{bottom:876.222667pt;}
.y24c{bottom:879.881333pt;}
.y444{bottom:885.986667pt;}
.y1a{bottom:886.608000pt;}
.y28b{bottom:888.974667pt;}
.y4c{bottom:892.960000pt;}
.y32d{bottom:894.662560pt;}
.y1fc{bottom:896.554667pt;}
.y24b{bottom:900.896000pt;}
.y443{bottom:901.329333pt;}
.y28a{bottom:905.712000pt;}
.y4b{bottom:909.697333pt;}
.y1fb{bottom:913.650667pt;}
.y442{bottom:916.670667pt;}
.y24a{bottom:921.909333pt;}
.y19{bottom:922.092000pt;}
.y289{bottom:922.449333pt;}
.y4a{bottom:926.434667pt;}
.y316{bottom:927.249333pt;}
.y441{bottom:932.013333pt;}
.y288{bottom:939.186667pt;}
.y249{bottom:942.924000pt;}
.y49{bottom:943.172000pt;}
.y32b{bottom:943.307680pt;}
.y18{bottom:947.197333pt;}
.y440{bottom:947.356000pt;}
.y32a{bottom:951.787200pt;}
.y380{bottom:955.924000pt;}
.y48{bottom:959.909333pt;}
.y43f{bottom:962.698667pt;}
.y248{bottom:963.937333pt;}
.y17{bottom:972.304000pt;}
.y37f{bottom:972.661333pt;}
.y47{bottom:976.646667pt;}
.y43e{bottom:978.041333pt;}
.y46{bottom:993.384000pt;}
.y247{bottom:994.700000pt;}
.y15{bottom:1010.958667pt;}
.y45{bottom:1046.810667pt;}
.y392{bottom:1054.661333pt;}
.h41{height:-384.086667pt;}
.h3f{height:-381.804000pt;}
.h20{height:-86.604000pt;}
.h22{height:-80.130667pt;}
.h24{height:-10.894667pt;}
.h26{height:-7.113333pt;}
.h34{height:1.115811pt;}
.h38{height:16.480000pt;}
.h31{height:21.747765pt;}
.h27{height:24.466203pt;}
.hd{height:25.929327pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h37{height:27.332500pt;}
.h32{height:29.397999pt;}
.h9{height:30.945242pt;}
.he{height:31.157778pt;}
.h19{height:31.175937pt;}
.h18{height:31.301562pt;}
.h23{height:32.290667pt;}
.h36{height:34.528125pt;}
.h16{height:34.574438pt;}
.h2f{height:34.717901pt;}
.ha{height:34.813542pt;}
.h1b{height:35.039062pt;}
.h30{height:35.052646pt;}
.h13{height:38.231875pt;}
.hb{height:38.415786pt;}
.h1a{height:38.620938pt;}
.hc{height:38.681455pt;}
.h1d{height:38.776563pt;}
.h6{height:38.947124pt;}
.h12{height:39.113750pt;}
.h8{height:39.531597pt;}
.h25{height:39.562667pt;}
.h10{height:39.885937pt;}
.h29{height:40.145333pt;}
.h2e{height:42.656250pt;}
.h2a{height:42.982667pt;}
.h17{height:44.508000pt;}
.h14{height:44.648438pt;}
.h4{height:45.278998pt;}
.h45{height:46.290876pt;}
.h11{height:49.410937pt;}
.h21{height:53.236000pt;}
.h5{height:55.697103pt;}
.h33{height:57.799269pt;}
.h28{height:64.040209pt;}
.h7{height:69.148877pt;}
.h1e{height:69.961738pt;}
.h1f{height:74.476937pt;}
.h1c{height:76.544883pt;}
.h2b{height:76.803772pt;}
.h15{height:77.342438pt;}
.h3c{height:179.200000pt;}
.h3e{height:179.360000pt;}
.h3b{height:179.520000pt;}
.h3a{height:179.680000pt;}
.h3d{height:185.017333pt;}
.h2d{height:195.476000pt;}
.h42{height:215.360000pt;}
.h2c{height:216.436000pt;}
.h44{height:219.200000pt;}
.h40{height:235.053333pt;}
.h43{height:268.798667pt;}
.hf{height:357.236000pt;}
.h35{height:556.660000pt;}
.h39{height:565.528533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:-48.756000pt;}
.w9{width:-46.080000pt;}
.w5{width:-22.298667pt;}
.w7{width:-19.229333pt;}
.wd{width:-16.625333pt;}
.wf{width:-11.082667pt;}
.w8{width:32.400000pt;}
.wa{width:38.254667pt;}
.w4{width:79.636000pt;}
.w2{width:84.538005pt;}
.wc{width:90.545333pt;}
.w6{width:102.545333pt;}
.we{width:104.182667pt;}
.w14{width:135.520000pt;}
.w1b{width:267.256000pt;}
.w17{width:277.920000pt;}
.w16{width:292.000000pt;}
.w11{width:296.145733pt;}
.w12{width:297.889333pt;}
.w20{width:304.870667pt;}
.w1d{width:306.616000pt;}
.w1f{width:308.945600pt;}
.w1c{width:310.109333pt;}
.w19{width:310.400000pt;}
.w3{width:520.144000pt;}
.w10{width:594.035067pt;}
.w13{width:611.362933pt;}
.w1e{width:613.816267pt;}
.w1a{width:616.725333pt;}
.w18{width:639.998400pt;}
.w15{width:641.746533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x49{left:-613.231840pt;}
.x37{left:-583.705173pt;}
.x5a{left:-575.558507pt;}
.x4c{left:-556.111520pt;}
.x3a{left:-526.584853pt;}
.x5d{left:-518.438187pt;}
.x41{left:-485.995840pt;}
.x2d{left:-462.541173pt;}
.x54{left:-457.305173pt;}
.x4a{left:-439.313920pt;}
.x44{left:-428.875520pt;}
.x4b{left:-410.987680pt;}
.x38{left:-409.787253pt;}
.x4e{left:-407.468480pt;}
.x30{left:-405.420853pt;}
.x5b{left:-401.640587pt;}
.x56{left:-400.184853pt;}
.x39{left:-381.461013pt;}
.x3c{left:-377.941813pt;}
.x5c{left:-373.314347pt;}
.x5f{left:-369.795147pt;}
.x42{left:-312.077920pt;}
.x2e{left:-288.623253pt;}
.x43{left:-283.751680pt;}
.x46{left:-280.232480pt;}
.x2f{left:-260.297013pt;}
.x31{left:-256.777813pt;}
.x55{left:-255.061013pt;}
.x58{left:-251.541813pt;}
.x4d{left:-150.181760pt;}
.x3b{left:-120.655093pt;}
.x5e{left:-112.508427pt;}
.x20{left:-88.722507pt;}
.x4f{left:-71.298560pt;}
.x50{left:-64.578880pt;}
.x6b{left:-52.650107pt;}
.x3d{left:-41.771893pt;}
.x70{left:-40.017787pt;}
.xc3{left:-38.686507pt;}
.x3e{left:-35.052213pt;}
.x60{left:-33.625227pt;}
.xb3{left:-28.795973pt;}
.x61{left:-26.905547pt;}
.x45{left:-22.945760pt;}
.x0{left:0.000000pt;}
.x57{left:5.744907pt;}
.x77{left:27.670373pt;}
.xc4{left:29.628853pt;}
.xaa{left:31.943893pt;}
.xb6{left:34.406587pt;}
.xad{left:37.547893pt;}
.xa8{left:39.144053pt;}
.xd5{left:40.942720pt;}
.xc8{left:42.106453pt;}
.xa7{left:43.784053pt;}
.x1{left:47.621333pt;}
.xc7{left:48.992213pt;}
.xbc{left:51.415520pt;}
.x2{left:54.066957pt;}
.x2a{left:55.592000pt;}
.xa6{left:57.704053pt;}
.xd6{left:59.827520pt;}
.xc9{left:60.991253pt;}
.x47{left:62.657120pt;}
.x68{left:66.881333pt;}
.xa9{left:69.703093pt;}
.x51{left:72.855840pt;}
.xb2{left:75.788133pt;}
.x32{left:79.392107pt;}
.x21{left:85.195413pt;}
.x33{left:86.111787pt;}
.xc2{left:88.300000pt;}
.xd0{left:89.754400pt;}
.x59{left:91.347787pt;}
.xb1{left:94.768000pt;}
.x28{left:98.790667pt;}
.x3f{left:102.382507pt;}
.x62{left:110.529173pt;}
.x22{left:113.521653pt;}
.x35{left:121.611840pt;}
.xd7{left:125.580800pt;}
.xca{left:126.744533pt;}
.x9e{left:132.274933pt;}
.xd3{left:134.073600pt;}
.xab{left:135.145333pt;}
.xbd{left:136.053600pt;}
.x6e{left:137.429573pt;}
.x6a{left:142.804000pt;}
.x9b{left:144.114773pt;}
.xb4{left:145.121947pt;}
.xac{left:146.829173pt;}
.x6f{left:149.594053pt;}
.x99{left:151.949973pt;}
.xbb{left:156.386240pt;}
.x9f{left:160.595253pt;}
.xd4{left:162.393920pt;}
.xc5{left:163.557653pt;}
.xb5{left:173.448187pt;}
.xcb{left:212.505813pt;}
.x52{left:213.844000pt;}
.xd8{left:219.183680pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x2b{left:239.617333pt;}
.x97{left:241.001333pt;}
.x5{left:250.204000pt;}
.x7b{left:252.073333pt;}
.x98{left:254.285333pt;}
.x7c{left:260.813333pt;}
.x63{left:261.884000pt;}
.x12{left:264.581333pt;}
.x87{left:266.448000pt;}
.x13{left:271.222667pt;}
.x1c{left:274.525333pt;}
.x76{left:279.990373pt;}
.xba{left:284.003040pt;}
.xb7{left:285.131840pt;}
.x1d{left:287.808000pt;}
.x1e{left:294.582667pt;}
.x6c{left:295.521733pt;}
.x88{left:297.249333pt;}
.x9c{left:299.955573pt;}
.xd1{left:301.754240pt;}
.x71{left:303.668613pt;}
.x1f{left:307.866667pt;}
.x18{left:309.686667pt;}
.x89{left:313.713333pt;}
.x8c{left:315.650667pt;}
.x19{left:322.970667pt;}
.x10{left:325.512000pt;}
.x11{left:332.153333pt;}
.xa3{left:342.352213pt;}
.x8d{left:343.740000pt;}
.xce{left:345.314613pt;}
.x1a{left:346.792000pt;}
.xb0{left:348.103093pt;}
.xa1{left:349.550773pt;}
.xda{left:351.349440pt;}
.xcc{left:352.513173pt;}
.x95{left:354.406667pt;}
.xd9{left:358.225920pt;}
.x1b{left:360.076000pt;}
.xbe{left:361.822240pt;}
.xa0{left:368.110773pt;}
.xdb{left:370.224960pt;}
.xcd{left:371.388693pt;}
.x96{left:376.914667pt;}
.xa2{left:380.109813pt;}
.x69{left:386.696000pt;}
.x90{left:390.646667pt;}
.x6d{left:395.790667pt;}
.xc6{left:398.409333pt;}
.xdd{left:420.036000pt;}
.x81{left:426.116000pt;}
.x72{left:431.993253pt;}
.xde{left:433.320000pt;}
.xb9{left:435.148000pt;}
.x73{left:437.756773pt;}
.xa4{left:445.542933pt;}
.xbf{left:446.461920pt;}
.x6{left:451.217333pt;}
.xae{left:453.709493pt;}
.xaf{left:456.103733pt;}
.x7{left:457.858667pt;}
.x7f{left:460.808000pt;}
.xa5{left:462.191413pt;}
.x78{left:464.969333pt;}
.x53{left:467.213333pt;}
.x79{left:470.976000pt;}
.x2c{left:472.668000pt;}
.x80{left:474.092000pt;}
.x29{left:476.793333pt;}
.x7a{left:479.717333pt;}
.xa{left:481.386667pt;}
.x8f{left:483.273333pt;}
.x82{left:484.361333pt;}
.x83{left:486.128000pt;}
.xb{left:488.028000pt;}
.x64{left:492.650667pt;}
.x85{left:494.810667pt;}
.x40{left:496.285333pt;}
.x91{left:498.426667pt;}
.x84{left:501.837333pt;}
.x65{left:505.934667pt;}
.x86{left:513.440000pt;}
.x23{left:522.333173pt;}
.xc{left:523.226667pt;}
.xdc{left:524.941120pt;}
.x93{left:527.840000pt;}
.xd{left:529.868000pt;}
.xcf{left:535.709653pt;}
.x8e{left:541.405333pt;}
.xdf{left:542.618667pt;}
.xc0{left:545.018720pt;}
.x75{left:547.675333pt;}
.x94{left:556.704000pt;}
.x74{left:560.317893pt;}
.xc1{left:570.253333pt;}
.x92{left:572.322667pt;}
.x34{left:574.602667pt;}
.x9d{left:586.046613pt;}
.xd2{left:587.845280pt;}
.x9a{left:610.362293pt;}
.x36{left:616.438667pt;}
.x66{left:617.600000pt;}
.xb8{left:624.330747pt;}
.x67{left:630.884000pt;}
.x8a{left:643.378667pt;}
.x48{left:648.584000pt;}
.x8b{left:656.662667pt;}
.x16{left:659.913333pt;}
.x8{left:675.864000pt;}
.x9{left:687.386667pt;}
.x7d{left:704.678667pt;}
.x25{left:706.784000pt;}
.x7e{left:713.418667pt;}
.x26{left:720.068000pt;}
.x27{left:726.842667pt;}
.x24{left:731.252000pt;}
.x14{left:733.129333pt;}
.xe{left:734.546667pt;}
.x15{left:739.772000pt;}
.xf{left:741.189333pt;}
.x17{left:744.717333pt;}
}




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