
    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_76d26caf7e30ec323303730c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2236691f97af267b782cd3ba.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_826e639e253756fba51f95c5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_80ee63672f5e1700aac44592.woff')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_f3f38c7e06bb06417c9623b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_620d0b32dfa422216df35df2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_420182c8b027237eec9af629.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_9e31b61419b83c4b9705b6dd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_3c54c03ec40be5c4038855a8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.904297;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_d78d54ed0a3800376d9f9e67.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_745c867fb9a5f9464fba9624.woff')format("woff");}.ffb{font-family:ffb;line-height:0.920898;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_47415c23753cc2f53d2e9998.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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_6f73d2d93a5e338d77624ac7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.881836;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_3122eafde40d5b1ae80a5770.woff')format("woff");}.ffe{font-family:ffe;line-height:0.673828;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_ff4febee87fa57ad25eee8d8.woff')format("woff");}.fff{font-family:fff;line-height:0.873535;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_b35a0d83646d45cdc2c22e2b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.881836;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_7e5f66d5e7e16613eca52803.woff')format("woff");}.ff11{font-family:ff11;line-height:0.854004;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_1a128033642650f0ab5f7201.woff')format("woff");}.ff12{font-family:ff12;line-height:0.881836;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_387f3a261cd1c6f5ffde2776.woff')format("woff");}.ff13{font-family:ff13;line-height:0.881836;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_f16f74b1a3efe8097104b29c.woff')format("woff");}.ff14{font-family:ff14;line-height:0.688477;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_b35a0d83646d45cdc2c22e2b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.881836;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_387f3a261cd1c6f5ffde2776.woff')format("woff");}.ff16{font-family:ff16;line-height:0.881836;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_1a128033642650f0ab5f7201.woff')format("woff");}.ff17{font-family:ff17;line-height:0.881836;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_b2fcdb2c8f71d331fb317203.woff')format("woff");}.ff18{font-family:ff18;line-height:0.670898;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_0df7f53afc0a20ee86c2d2af.woff')format("woff");}.ff19{font-family:ff19;line-height:0.895996;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_6f9d495936416f83475c7190.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.675781;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_af679dbac0e52aa41529872f.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.861816;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_6a8303b5a64d32b13ec6e72f.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.980000;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_2c8439e9cd2a9e0db83807e0.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.586059;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_28ef5cd9bcfdec67771e18b0.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.070000;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_6ff880d935009c7d0fa93b0a.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.732000;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_5b8f9e403bfc12b1d6930f9b.woff')format("woff");}.ff20{font-family:ff20;line-height:0.727000;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_a1eab8bd62f237897b2296c7.woff')format("woff");}.ff21{font-family:ff21;line-height:0.746231;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_28ef5cd9bcfdec67771e18b0.woff')format("woff");}.ff22{font-family:ff22;line-height:0.070000;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_48d5c659707dd4d52c8e31d9.woff')format("woff");}.ff23{font-family:ff23;line-height:0.980000;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_2c8439e9cd2a9e0db83807e0.woff')format("woff");}.ff24{font-family:ff24;line-height:0.586059;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_967a4329223486aa03a5576c.woff')format("woff");}.ff25{font-family:ff25;line-height:0.735000;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_5b8f9e403bfc12b1d6930f9b.woff')format("woff");}.ff26{font-family:ff26;line-height:0.727000;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_8fb326d293a6ac3833ee9769.woff')format("woff");}.ff27{font-family:ff27;line-height:0.758000;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_a1eab8bd62f237897b2296c7.woff')format("woff");}.ff28{font-family:ff28;line-height:0.746231;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_6ff880d935009c7d0fa93b0a.woff')format("woff");}.ff29{font-family:ff29;line-height:0.732000;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;}
.md{transform:matrix(0.000000,-0.226267,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.226267,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.226267,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.232299,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232299,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232299,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.251406,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251406,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251406,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.252890,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252890,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252890,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.243032,0.000000,-0.060758,0.242505,0,0);-ms-transform:matrix(0.243032,0.000000,-0.060758,0.242505,0,0);-webkit-transform:matrix(0.243032,0.000000,-0.060758,0.242505,0,0);}
.m6{transform:matrix(0.243266,0.000000,-0.060816,0.242490,0,0);-ms-transform:matrix(0.243266,0.000000,-0.060816,0.242490,0,0);-webkit-transform:matrix(0.243266,0.000000,-0.060816,0.242490,0,0);}
.m12{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,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);}
.m2{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.ve{vertical-align:-28.558168px;}
.v2{vertical-align:-27.360000px;}
.vb{vertical-align:-15.020400px;}
.v4{vertical-align:-11.301129px;}
.v9{vertical-align:-9.335716px;}
.v8{vertical-align:-8.068541px;}
.vf{vertical-align:-6.168745px;}
.v5{vertical-align:-4.448042px;}
.v11{vertical-align:-2.523975px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:1.548499px;}
.v7{vertical-align:4.499763px;}
.v14{vertical-align:6.180224px;}
.v6{vertical-align:8.947805px;}
.v3{vertical-align:12.387279px;}
.vc{vertical-align:14.962800px;}
.v12{vertical-align:18.441304px;}
.v10{vertical-align:27.360000px;}
.vd{vertical-align:28.554611px;}
.v1{vertical-align:30.240600px;}
.va{vertical-align:36.237000px;}
.ls1a{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.030000px;}
.ls45{letter-spacing:0.038880px;}
.ls2{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.072720px;}
.ls6d{letter-spacing:0.073320px;}
.ls31{letter-spacing:0.077760px;}
.ls1{letter-spacing:0.119400px;}
.ls0{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.142560px;}
.ls68{letter-spacing:0.190080px;}
.ls62{letter-spacing:0.205920px;}
.ls43{letter-spacing:0.236160px;}
.ls63{letter-spacing:0.237600px;}
.lsf{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.266400px;}
.ls76{letter-spacing:0.272349px;}
.ls6c{letter-spacing:0.274680px;}
.ls1d{letter-spacing:0.285120px;}
.ls6b{letter-spacing:0.285480px;}
.ls95{letter-spacing:0.289170px;}
.lsa{letter-spacing:0.295200px;}
.ls5e{letter-spacing:0.295344px;}
.ls5{letter-spacing:0.320280px;}
.ls1b{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.332640px;}
.ls94{letter-spacing:0.382725px;}
.ls44{letter-spacing:0.413280px;}
.ls3{letter-spacing:0.426240px;}
.lsa3{letter-spacing:0.427680px;}
.ls75{letter-spacing:0.438785px;}
.ls8{letter-spacing:0.472320px;}
.ls77{letter-spacing:0.514437px;}
.ls46{letter-spacing:0.531360px;}
.lsc{letter-spacing:0.542760px;}
.ls48{letter-spacing:0.576960px;}
.ls7{letter-spacing:0.590400px;}
.ls49{letter-spacing:0.639720px;}
.ls60{letter-spacing:0.640320px;}
.ls5d{letter-spacing:0.649440px;}
.ls5f{letter-spacing:0.702720px;}
.lsd{letter-spacing:0.703320px;}
.ls26{letter-spacing:0.708480px;}
.ls81{letter-spacing:0.737210px;}
.ls9d{letter-spacing:0.755496px;}
.ls8f{letter-spacing:0.756702px;}
.ls90{letter-spacing:0.781956px;}
.ls30{letter-spacing:0.793320px;}
.ls7f{letter-spacing:0.843774px;}
.ls2e{letter-spacing:0.861279px;}
.ls36{letter-spacing:0.862323px;}
.lse{letter-spacing:0.863040px;}
.ls9b{letter-spacing:0.864675px;}
.ls5a{letter-spacing:0.993842px;}
.ls9{letter-spacing:1.062000px;}
.ls7e{letter-spacing:1.142553px;}
.ls93{letter-spacing:1.159988px;}
.ls9a{letter-spacing:1.170855px;}
.ls4b{letter-spacing:1.387867px;}
.ls4c{letter-spacing:1.391938px;}
.ls6f{letter-spacing:1.505238px;}
.ls72{letter-spacing:1.505404px;}
.ls6e{letter-spacing:1.505514px;}
.ls71{letter-spacing:1.510052px;}
.ls84{letter-spacing:1.521588px;}
.lsa2{letter-spacing:1.542555px;}
.lsa1{letter-spacing:1.547595px;}
.ls9f{letter-spacing:1.559250px;}
.ls86{letter-spacing:1.701000px;}
.ls88{letter-spacing:1.714104px;}
.ls87{letter-spacing:1.719396px;}
.ls7c{letter-spacing:1.792702px;}
.ls99{letter-spacing:1.837080px;}
.ls2b{letter-spacing:1.862832px;}
.ls73{letter-spacing:1.951835px;}
.ls27{letter-spacing:1.975050px;}
.ls66{letter-spacing:2.009400px;}
.ls7a{letter-spacing:2.116379px;}
.ls97{letter-spacing:2.168775px;}
.ls70{letter-spacing:2.213178px;}
.ls83{letter-spacing:2.224797px;}
.lsa0{letter-spacing:2.268000px;}
.ls9e{letter-spacing:2.279781px;}
.ls74{letter-spacing:2.345228px;}
.ls2d{letter-spacing:2.349113px;}
.ls35{letter-spacing:2.351961px;}
.ls7d{letter-spacing:2.442795px;}
.ls7b{letter-spacing:2.453834px;}
.ls8e{letter-spacing:2.474727px;}
.ls96{letter-spacing:2.503305px;}
.ls98{letter-spacing:2.514645px;}
.ls85{letter-spacing:2.520000px;}
.ls19{letter-spacing:2.523849px;}
.ls79{letter-spacing:2.849467px;}
.ls82{letter-spacing:2.877132px;}
.ls89{letter-spacing:2.920050px;}
.ls8b{letter-spacing:2.948400px;}
.ls50{letter-spacing:3.297329px;}
.ls78{letter-spacing:3.333600px;}
.ls8a{letter-spacing:3.416175px;}
.ls40{letter-spacing:3.469648px;}
.ls8d{letter-spacing:3.651788px;}
.ls65{letter-spacing:3.661800px;}
.ls12{letter-spacing:3.837392px;}
.ls13{letter-spacing:3.863253px;}
.ls80{letter-spacing:3.864735px;}
.ls22{letter-spacing:3.942931px;}
.ls9c{letter-spacing:3.960495px;}
.ls54{letter-spacing:3.993785px;}
.ls91{letter-spacing:4.420301px;}
.ls92{letter-spacing:4.424931px;}
.ls58{letter-spacing:4.591063px;}
.ls17{letter-spacing:4.799395px;}
.ls18{letter-spacing:4.825256px;}
.ls2f{letter-spacing:4.862813px;}
.ls32{letter-spacing:4.868710px;}
.ls4d{letter-spacing:5.007064px;}
.ls52{letter-spacing:5.310523px;}
.ls53{letter-spacing:5.317306px;}
.ls55{letter-spacing:5.317374px;}
.ls39{letter-spacing:5.332409px;}
.ls3f{letter-spacing:5.339644px;}
.ls8c{letter-spacing:5.346495px;}
.ls3e{letter-spacing:5.346747px;}
.ls3d{letter-spacing:5.346819px;}
.ls29{letter-spacing:5.506201px;}
.ls3c{letter-spacing:5.763647px;}
.ls3b{letter-spacing:5.799583px;}
.ls4e{letter-spacing:6.309754px;}
.ls51{letter-spacing:6.316267px;}
.ls4a{letter-spacing:6.317896px;}
.ls4f{letter-spacing:6.350463px;}
.ls21{letter-spacing:6.631634px;}
.ls3a{letter-spacing:6.669201px;}
.ls42{letter-spacing:6.690763px;}
.ls41{letter-spacing:6.705137px;}
.ls25{letter-spacing:8.509200px;}
.ls33{letter-spacing:8.980898px;}
.ls24{letter-spacing:10.542600px;}
.ls2c{letter-spacing:10.847814px;}
.ls34{letter-spacing:10.860969px;}
.ls28{letter-spacing:12.777977px;}
.ls20{letter-spacing:13.698867px;}
.ls23{letter-spacing:14.141978px;}
.ls67{letter-spacing:14.820840px;}
.ls2a{letter-spacing:20.199378px;}
.ls15{letter-spacing:21.231538px;}
.ls10{letter-spacing:21.257399px;}
.ls5c{letter-spacing:22.657440px;}
.ls5b{letter-spacing:22.657620px;}
.ls4{letter-spacing:26.786280px;}
.ls47{letter-spacing:26.786520px;}
.ls1e{letter-spacing:26.786580px;}
.lsb{letter-spacing:26.786880px;}
.ls64{letter-spacing:38.820240px;}
.ls61{letter-spacing:38.820660px;}
.ls57{letter-spacing:58.952920px;}
.ls56{letter-spacing:60.896149px;}
.ls37{letter-spacing:61.378254px;}
.ls38{letter-spacing:61.414190px;}
.ls11{letter-spacing:63.953428px;}
.ls16{letter-spacing:68.091141px;}
.ls59{letter-spacing:117.430196px;}
.ls14{letter-spacing:157.668259px;}
.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;}
}
.ws0{word-spacing:-16.200000px;}
.ws2f{word-spacing:-15.468480px;}
.ws48{word-spacing:-15.409440px;}
.ws2c{word-spacing:-15.350400px;}
.ws5{word-spacing:-15.232320px;}
.ws5f{word-spacing:-15.173280px;}
.ws3{word-spacing:-15.055200px;}
.ws2e{word-spacing:-14.996160px;}
.ws60{word-spacing:-14.760000px;}
.ws2{word-spacing:-13.586400px;}
.ws63{word-spacing:-12.307680px;}
.ws4{word-spacing:-12.212640px;}
.ws49{word-spacing:-12.165120px;}
.ws62{word-spacing:-12.117600px;}
.ws64{word-spacing:-12.070080px;}
.ws61{word-spacing:-12.022560px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.440000px;}
.ws37{word-spacing:-9.797760px;}
.ws31{word-spacing:-9.758880px;}
.ws30{word-spacing:-9.720000px;}
.ws6f{word-spacing:-7.087500px;}
.ws69{word-spacing:-6.916182px;}
.ws5c{word-spacing:-4.034895px;}
.ws73{word-spacing:-2.905906px;}
.ws6e{word-spacing:-2.835000px;}
.ws71{word-spacing:-2.802600px;}
.ws75{word-spacing:-2.664869px;}
.ws6b{word-spacing:-2.600484px;}
.ws70{word-spacing:-2.578392px;}
.ws72{word-spacing:-2.310525px;}
.ws6d{word-spacing:-2.239650px;}
.ws74{word-spacing:-1.587632px;}
.ws6a{word-spacing:-1.549225px;}
.ws68{word-spacing:-1.051260px;}
.ws38{word-spacing:-0.531360px;}
.ws2d{word-spacing:-0.060083px;}
.ws3a{word-spacing:-0.059923px;}
.ws33{word-spacing:-0.059850px;}
.ws47{word-spacing:-0.050309px;}
.ws3c{word-spacing:-0.043124px;}
.ws4f{word-spacing:-0.040710px;}
.ws3b{word-spacing:-0.034643px;}
.ws36{word-spacing:-0.034601px;}
.ws5a{word-spacing:-0.034258px;}
.ws4b{word-spacing:-0.032567px;}
.ws1d{word-spacing:-0.031033px;}
.ws67{word-spacing:-0.030261px;}
.wsa{word-spacing:-0.028447px;}
.ws3d{word-spacing:-0.028024px;}
.ws50{word-spacing:-0.026457px;}
.wsf{word-spacing:-0.025861px;}
.ws44{word-spacing:-0.023354px;}
.ws5b{word-spacing:-0.022263px;}
.wse{word-spacing:-0.020688px;}
.ws11{word-spacing:-0.020167px;}
.ws2b{word-spacing:0.000000px;}
.ws4d{word-spacing:2.809125px;}
.ws53{word-spacing:2.809166px;}
.ws16{word-spacing:2.867369px;}
.ws5e{word-spacing:2.961735px;}
.ws5d{word-spacing:3.164520px;}
.ws59{word-spacing:3.164589px;}
.ws57{word-spacing:3.223973px;}
.ws29{word-spacing:3.452811px;}
.ws17{word-spacing:3.456949px;}
.ws4a{word-spacing:3.458049px;}
.ws58{word-spacing:3.518333px;}
.ws54{word-spacing:3.518374px;}
.ws15{word-spacing:3.615712px;}
.ws1f{word-spacing:3.675980px;}
.wsd{word-spacing:3.676238px;}
.wsc{word-spacing:3.676264px;}
.ws27{word-spacing:3.676290px;}
.ws8{word-spacing:3.900734px;}
.wsb{word-spacing:3.986569px;}
.ws10{word-spacing:4.043599px;}
.ws14{word-spacing:4.090013px;}
.ws26{word-spacing:4.396206px;}
.ws22{word-spacing:4.421018px;}
.ws2a{word-spacing:4.421044px;}
.ws1c{word-spacing:4.422337px;}
.ws23{word-spacing:4.426216px;}
.ws1b{word-spacing:4.603105px;}
.ws28{word-spacing:4.861714px;}
.ws24{word-spacing:4.908012px;}
.ws1a{word-spacing:4.909310px;}
.ws51{word-spacing:4.966721px;}
.ws55{word-spacing:4.966762px;}
.ws9{word-spacing:4.969284px;}
.ws52{word-spacing:5.022906px;}
.ws18{word-spacing:5.202291px;}
.ws3e{word-spacing:5.320326px;}
.ws3f{word-spacing:5.320685px;}
.ws25{word-spacing:5.524061px;}
.ws43{word-spacing:5.528564px;}
.ws45{word-spacing:5.533955px;}
.ws21{word-spacing:5.726545px;}
.ws19{word-spacing:6.284323px;}
.ws40{word-spacing:6.625718px;}
.ws41{word-spacing:6.626077px;}
.ws42{word-spacing:6.662013px;}
.ws20{word-spacing:6.957745px;}
.ws34{word-spacing:9.804180px;}
.ws39{word-spacing:12.201736px;}
.ws35{word-spacing:15.602149px;}
.ws32{word-spacing:20.752056px;}
.ws1e{word-spacing:25.179944px;}
.ws12{word-spacing:47.364562px;}
.ws13{word-spacing:65.634349px;}
.ws6c{word-spacing:132.320790px;}
.ws65{word-spacing:133.712760px;}
.ws66{word-spacing:133.777495px;}
.ws7{word-spacing:136.269529px;}
.ws4e{word-spacing:178.569052px;}
.ws56{word-spacing:179.492990px;}
.ws4c{word-spacing:211.986461px;}
.ws46{word-spacing:1682.037964px;}
._15{margin-left:-420.036931px;}
._1c{margin-left:-4.554379px;}
._13{margin-left:-3.444000px;}
._12{margin-left:-2.337905px;}
._11{margin-left:-1.282937px;}
._0{width:1.140480px;}
._1{width:2.512800px;}
._3{width:3.614400px;}
._17{width:4.812480px;}
._f{width:6.025920px;}
._2{width:7.341120px;}
._10{width:8.837280px;}
._9{width:10.648800px;}
._5{width:11.789280px;}
._8{width:13.268160px;}
._27{width:14.285460px;}
._e{width:15.811800px;}
._b{width:16.928640px;}
._a{width:17.988480px;}
._20{width:19.228320px;}
._6{width:20.371680px;}
._21{width:21.767040px;}
._4{width:23.106240px;}
._18{width:24.125760px;}
._1e{width:25.704000px;}
._7{width:26.726400px;}
._22{width:28.360800px;}
._25{width:29.818080px;}
._23{width:31.098240px;}
._c{width:33.379200px;}
._1a{width:36.231840px;}
._d{width:38.005920px;}
._26{width:39.127680px;}
._24{width:40.762080px;}
._19{width:41.840640px;}
._16{width:45.804360px;}
._28{width:48.517920px;}
._2a{width:151.000290px;}
._29{width:167.559210px;}
._1d{width:308.278800px;}
._1f{width:482.278800px;}
._1b{width:515.278800px;}
._14{width:1103.171736px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:18.443244px;}
.fsc{font-size:20.167008px;}
.fsa{font-size:20.688357px;}
.fs27{font-size:22.050000px;}
.fs1f{font-size:22.262868px;}
.fs19{font-size:23.354466px;}
.fs8{font-size:25.860915px;}
.fs1d{font-size:26.456701px;}
.fs21{font-size:27.664728px;}
.fs18{font-size:28.023910px;}
.fs28{font-size:28.026000px;}
.fs26{font-size:28.350000px;}
.fs9{font-size:28.447193px;}
.fs24{font-size:30.261000px;}
.fs23{font-size:30.431201px;}
.fsb{font-size:31.033470px;}
.fs25{font-size:31.500000px;}
.fs1b{font-size:32.567094px;}
.fs1e{font-size:34.258117px;}
.fs11{font-size:34.600787px;}
.fs15{font-size:34.642745px;}
.fsf{font-size:34.735341px;}
.fs16{font-size:35.936117px;}
.fsd{font-size:36.204164px;}
.fs5{font-size:38.880000px;}
.fs1c{font-size:40.709606px;}
.fs20{font-size:41.109938px;}
.fs4{font-size:41.760000px;}
.fs17{font-size:43.123858px;}
.fs0{font-size:47.520000px;}
.fs1a{font-size:50.309012px;}
.fs29{font-size:50.400000px;}
.fs6{font-size:53.280000px;}
.fs1{font-size:59.040000px;}
.fs10{font-size:59.850010px;}
.fs13{font-size:59.922586px;}
.fse{font-size:60.082752px;}
.fs12{font-size:61.699878px;}
.fs14{font-size:61.778428px;}
.fs3{font-size:64.800000px;}
.fs2{font-size:100.800000px;}
.fs7{font-size:155.520000px;}
.y20c{bottom:-45.720000px;}
.y20b{bottom:-32.040000px;}
.y266{bottom:-20.160000px;}
.y20a{bottom:-18.360000px;}
.y295{bottom:-13.320000px;}
.y284{bottom:-10.440000px;}
.y265{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.y26a{bottom:0.057418px;}
.y177{bottom:0.360000px;}
.y28c{bottom:1.706276px;}
.y263{bottom:2.519850px;}
.y25f{bottom:2.520000px;}
.y25c{bottom:2.520150px;}
.y1dc{bottom:2.880000px;}
.y283{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y275{bottom:3.688677px;}
.y1d9{bottom:3.960150px;}
.ydf{bottom:4.377054px;}
.y209{bottom:4.680000px;}
.y26b{bottom:5.071913px;}
.y156{bottom:5.246721px;}
.yd9{bottom:6.532415px;}
.y146{bottom:7.044860px;}
.y25a{bottom:7.200000px;}
.y124{bottom:7.537200px;}
.yfd{bottom:7.557300px;}
.y3b{bottom:7.920000px;}
.y118{bottom:9.024150px;}
.y264{bottom:10.080000px;}
.yd0{bottom:10.148388px;}
.y25e{bottom:10.800000px;}
.y261{bottom:10.800150px;}
.y170{bottom:11.422204px;}
.y1eb{bottom:11.747353px;}
.y268{bottom:12.564420px;}
.y286{bottom:12.665599px;}
.y160{bottom:12.854246px;}
.y294{bottom:14.040000px;}
.y1ae{bottom:14.094570px;}
.ye2{bottom:14.400000px;}
.y176{bottom:16.560000px;}
.y1e2{bottom:16.570140px;}
.y173{bottom:17.250097px;}
.y1f0{bottom:17.636446px;}
.ycf{bottom:17.906601px;}
.y145{bottom:18.173648px;}
.y1ee{bottom:18.568286px;}
.y155{bottom:18.600386px;}
.y1ea{bottom:19.335684px;}
.y122{bottom:19.474950px;}
.yfc{bottom:19.527000px;}
.y117{bottom:20.947350px;}
.y1e4{bottom:21.129133px;}
.y1{bottom:21.259455px;}
.yd5{bottom:21.717176px;}
.y16f{bottom:22.325134px;}
.y1b0{bottom:22.749363px;}
.y1db{bottom:23.040000px;}
.y287{bottom:23.296849px;}
.y26c{bottom:23.630312px;}
.y1d8{bottom:23.760000px;}
.y208{bottom:24.840000px;}
.ye1{bottom:25.200000px;}
.y1e1{bottom:26.846932px;}
.y175{bottom:27.720000px;}
.y1e9{bottom:28.076824px;}
.y1ed{bottom:28.844222px;}
.y1cc{bottom:29.372763px;}
.y123{bottom:30.008250px;}
.y1ca{bottom:30.121814px;}
.y1ef{bottom:30.199159px;}
.y16e{bottom:30.839231px;}
.y281{bottom:31.641118px;}
.y3c{bottom:31.660560px;}
.yd7{bottom:33.105585px;}
.y292{bottom:33.468277px;}
.y15a{bottom:33.784172px;}
.y144{bottom:34.015958px;}
.y1c8{bottom:34.162210px;}
.y167{bottom:35.615103px;}
.y1e8{bottom:35.845014px;}
.y15c{bottom:36.331124px;}
.y154{bottom:36.745285px;}
.y14c{bottom:36.888129px;}
.y1b1{bottom:38.615805px;}
.yd6{bottom:39.005059px;}
.y26d{bottom:39.652823px;}
.y280{bottom:39.710227px;}
.y14a{bottom:40.708108px;}
.y291{bottom:41.737264px;}
.y16d{bottom:42.140151px;}
.y13f{bottom:45.431873px;}
.y13d{bottom:45.604365px;}
.y288{bottom:45.871875px;}
.y1c7{bottom:46.373976px;}
.y27f{bottom:47.779337px;}
.y1c9{bottom:48.873526px;}
.y1cb{bottom:49.094374px;}
.y158{bottom:49.319231px;}
.y28d{bottom:49.480594px;}
.y290{bottom:50.006250px;}
.ydb{bottom:51.049691px;}
.y3e{bottom:51.480000px;}
.y141{bottom:52.156365px;}
.yd3{bottom:52.680202px;}
.y1e7{bottom:52.876791px;}
.y165{bottom:53.441071px;}
.y26e{bottom:55.675265px;}
.yce{bottom:56.177869px;}
.ydd{bottom:56.462337px;}
.y174{bottom:56.500560px;}
.y163{bottom:56.704045px;}
.y1f2{bottom:56.991277px;}
.ydc{bottom:57.021575px;}
.y15e{bottom:57.261050px;}
.y14d{bottom:57.977970px;}
.y162{bottom:58.117212px;}
.y171{bottom:58.517007px;}
.y147{bottom:58.693991px;}
.ye0{bottom:59.020560px;}
.yda{bottom:60.359545px;}
.y157{bottom:60.524023px;}
.y1cd{bottom:60.981484px;}
.y1f3{bottom:61.434647px;}
.yd2{bottom:61.990057px;}
.y1f4{bottom:62.590882px;}
.y1e6{bottom:63.154440px;}
.y13e{bottom:64.227211px;}
.y276{bottom:64.666302px;}
.y3d{bottom:64.800000px;}
.y236{bottom:65.841105px;}
.y151{bottom:66.366291px;}
.y148{bottom:66.890954px;}
.y205{bottom:67.164436px;}
.y289{bottom:68.446893px;}
.y1f1{bottom:69.226818px;}
.y1ec{bottom:69.286771px;}
.yd8{bottom:70.677315px;}
.y140{bottom:70.780109px;}
.y13c{bottom:70.952610px;}
.y16c{bottom:71.426954px;}
.y26f{bottom:71.640165px;}
.yd4{bottom:71.757000px;}
.y277{bottom:72.015437px;}
.y1e5{bottom:73.432089px;}
.y1ce{bottom:73.435480px;}
.y1f5{bottom:73.476626px;}
.y15b{bottom:73.814890px;}
.y1f6{bottom:73.961388px;}
.y153{bottom:75.166086px;}
.y149{bottom:75.246933px;}
.yd1{bottom:75.435685px;}
.y278{bottom:75.632946px;}
.y164{bottom:77.841500px;}
.y235{bottom:79.521090px;}
.y14b{bottom:80.339938px;}
.y159{bottom:80.849329px;}
.y168{bottom:80.896953px;}
.y16b{bottom:82.727883px;}
.y255{bottom:83.481105px;}
.y1da{bottom:83.500560px;}
.y3f{bottom:84.220560px;}
.y1ad{bottom:84.775040px;}
.y142{bottom:85.229906px;}
.y14f{bottom:85.990848px;}
.y270{bottom:87.662607px;}
.yb7{bottom:88.850928px;}
.yb8{bottom:89.200047px;}
.ycc{bottom:89.859495px;}
.y28a{bottom:91.021849px;}
.y16a{bottom:91.798078px;}
.y1af{bottom:91.986689px;}
.y152{bottom:92.804281px;}
.y234{bottom:93.561105px;}
.y15d{bottom:95.616260px;}
.y28f{bottom:95.877967px;}
.ycd{bottom:96.434580px;}
.yde{bottom:96.466906px;}
.y206{bottom:96.539670px;}
.y86{bottom:97.999153px;}
.y7f{bottom:98.296551px;}
.y79{bottom:98.309481px;}
.y279{bottom:98.482974px;}
.y7c{bottom:98.884882px;}
.y172{bottom:99.245779px;}
.y7e{bottom:99.473213px;}
.y254{bottom:100.041090px;}
.ycb{bottom:100.720992px;}
.y143{bottom:101.069522px;}
.y71{bottom:101.761886px;}
.y15f{bottom:101.824174px;}
.y27a{bottom:101.997777px;}
.y169{bottom:103.261608px;}
.y271{bottom:103.685118px;}
.y150{bottom:104.564281px;}
.y28e{bottom:104.934375px;}
.y78{bottom:105.757365px;}
.y27b{bottom:105.854932px;}
.y7b{bottom:105.983647px;}
.y1b2{bottom:106.810973px;}
.y1c1{bottom:106.841505px;}
.y201{bottom:106.980048px;}
.y7d{bottom:107.231426px;}
.y233{bottom:107.241120px;}
.y1b8{bottom:107.645514px;}
.y1dd{bottom:108.340560px;}
.y87{bottom:108.989954px;}
.y166{bottom:109.469522px;}
.y70{bottom:109.520098px;}
.y39{bottom:111.201105px;}
.yba{bottom:111.582490px;}
.y203{bottom:111.675221px;}
.y1e0{bottom:113.170619px;}
.y161{bottom:113.287704px;}
.yb6{bottom:113.295762px;}
.y28b{bottom:113.596875px;}
.y14e{bottom:113.665030px;}
.y253{bottom:113.721120px;}
.y1c5{bottom:114.230240px;}
.y1f8{bottom:115.234714px;}
.y1c0{bottom:115.675419px;}
.y1b6{bottom:116.275881px;}
.y272{bottom:119.649949px;}
.yaf{bottom:120.200571px;}
.yca{bottom:120.691924px;}
.yb9{bottom:120.892345px;}
.y232{bottom:120.921105px;}
.yb5{bottom:121.053974px;}
.y1fd{bottom:122.031665px;}
.y6b{bottom:123.155157px;}
.y1d3{bottom:123.746034px;}
.y1d1{bottom:124.896071px;}
.y204{bottom:125.527796px;}
.y1b7{bottom:125.588129px;}
.yae{bottom:125.715367px;}
.y6f{bottom:126.859703px;}
.y252{bottom:127.401105px;}
.y1fb{bottom:128.100617px;}
.y1de{bottom:128.830330px;}
.y38{bottom:129.201045px;}
.y202{bottom:129.801568px;}
.yad{bottom:130.978021px;}
.y27e{bottom:132.502566px;}
.y1df{bottom:133.393606px;}
.y1fa{bottom:133.684824px;}
.y231{bottom:134.961045px;}
.y273{bottom:135.672460px;}
.y76{bottom:135.885090px;}
.y1b5{bottom:137.098678px;}
.y258{bottom:137.160000px;}
.y1c4{bottom:137.312401px;}
.y1bf{bottom:137.943395px;}
.y6e{bottom:138.503487px;}
.y27d{bottom:138.900035px;}
.y207{bottom:141.065871px;}
.y251{bottom:141.441045px;}
.y83{bottom:142.285615px;}
.y75{bottom:143.643303px;}
.y27c{bottom:145.297503px;}
.y85{bottom:146.494446px;}
.y1d4{bottom:147.286175px;}
.y37{bottom:147.561045px;}
.y81{bottom:147.968506px;}
.y1d2{bottom:148.446390px;}
.y230{bottom:148.641045px;}
.y1bb{bottom:149.138447px;}
.ybe{bottom:150.658020px;}
.y257{bottom:150.840000px;}
.y274{bottom:151.637290px;}
.y7a{bottom:154.491870px;}
.y250{bottom:155.121045px;}
.y80{bottom:155.726718px;}
.y82{bottom:156.541331px;}
.y200{bottom:156.992801px;}
.y84{bottom:158.015391px;}
.y69{bottom:162.178965px;}
.y72{bottom:162.250082px;}
.y1b3{bottom:162.257013px;}
.y1c2{bottom:162.277367px;}
.y22f{bottom:162.321045px;}
.y1b9{bottom:163.091553px;}
.y1d6{bottom:163.498646px;}
.y1d0{bottom:164.312831px;}
.y1bd{bottom:164.719924px;}
.y36{bottom:165.561045px;}
.y1f9{bottom:167.285867px;}
.y68{bottom:168.191580px;}
.y24f{bottom:168.801045px;}
.y73{bottom:169.213078px;}
.y1ff{bottom:170.588435px;}
.y67{bottom:173.725771px;}
.y1fc{bottom:173.743656px;}
.y1b4{bottom:173.798094px;}
.y1c3{bottom:173.818448px;}
.y1be{bottom:174.001640px;}
.y1ba{bottom:174.632634px;}
.y1d5{bottom:175.039727px;}
.y1cf{bottom:175.853912px;}
.y1bc{bottom:176.250828px;}
.y22e{bottom:176.361045px;}
.ya8{bottom:178.820331px;}
.y66{bottom:179.369871px;}
.y1e3{bottom:179.807469px;}
.y9a{bottom:180.766349px;}
.y96{bottom:181.160725px;}
.y24e{bottom:182.841045px;}
.y35{bottom:183.561045px;}
.y65{bottom:184.884667px;}
.y1f7{bottom:185.151847px;}
.y1fe{bottom:185.648600px;}
.ya7{bottom:186.041933px;}
.y99{bottom:186.268215px;}
.yc9{bottom:186.998780px;}
.y22d{bottom:190.041045px;}
.y64{bottom:190.147321px;}
.y6d{bottom:190.974863px;}
.y98{bottom:191.362774px;}
.ya6{bottom:192.455389px;}
.y6a{bottom:193.276466px;}
.yb2{bottom:196.121144px;}
.y24d{bottom:196.521045px;}
.y97{bottom:196.748266px;}
.ya5{bottom:199.728713px;}
.y34{bottom:201.561045px;}
.y6c{bottom:202.618647px;}
.y22c{bottom:203.721045px;}
.ybd{bottom:204.480618px;}
.y114{bottom:204.801045px;}
.ya4{bottom:206.096912px;}
.y13b{bottom:206.961045px;}
.y9e{bottom:207.428739px;}
.y94{bottom:209.180802px;}
.y24c{bottom:210.201045px;}
.y1c6{bottom:210.283786px;}
.ya3{bottom:212.671997px;}
.y9d{bottom:215.186951px;}
.y74{bottom:216.221380px;}
.y77{bottom:216.654546px;}
.y93{bottom:216.939014px;}
.y22b{bottom:217.761045px;}
.ybf{bottom:218.865637px;}
.y33{bottom:219.921045px;}
.ya2{bottom:220.003508px;}
.y113{bottom:222.801045px;}
.y9c{bottom:222.945164px;}
.y24b{bottom:224.241045px;}
.y13a{bottom:225.321045px;}
.ya1{bottom:227.729395px;}
.y22a{bottom:231.441045px;}
.ya0{bottom:233.748474px;}
.yc8{bottom:236.858225px;}
.yc7{bottom:237.892653px;}
.y32{bottom:237.921045px;}
.yc2{bottom:237.983165px;}
.yb1{bottom:238.513310px;}
.yc5{bottom:239.049920px;}
.y9f{bottom:240.161930px;}
.y112{bottom:240.801045px;}
.y139{bottom:243.321045px;}
.ybc{bottom:250.215280px;}
.y62{bottom:250.635517px;}
.y4d{bottom:250.868263px;}
.y24a{bottom:251.601045px;}
.y229{bottom:252.321045px;}
.y95{bottom:254.159038px;}
.y31{bottom:255.921045px;}
.y5c{bottom:256.421850px;}
.y5d{bottom:256.628736px;}
.y4c{bottom:258.716988px;}
.y111{bottom:259.161045px;}
.y138{bottom:261.321045px;}
.y61{bottom:261.632783px;}
.y48{bottom:262.531442px;}
.y5b{bottom:262.712467px;}
.y9b{bottom:264.955884px;}
.y249{bottom:265.641045px;}
.y46{bottom:267.626002px;}
.y5a{bottom:268.207868px;}
.y91{bottom:271.608551px;}
.y63{bottom:273.315358px;}
.y45{bottom:273.638617px;}
.y59{bottom:273.703268px;}
.yc6{bottom:274.246343px;}
.y30{bottom:274.281045px;}
.yc0{bottom:276.192361px;}
.y110{bottom:277.161045px;}
.y58{bottom:279.205134px;}
.y248{bottom:279.321045px;}
.y44{bottom:279.534858px;}
.y137{bottom:279.681045px;}
.y90{bottom:282.993728px;}
.y57{bottom:284.700534px;}
.y47{bottom:285.437565px;}
.y228{bottom:287.961045px;}
.y56{bottom:290.202400px;}
.y8b{bottom:290.512728px;}
.y2f{bottom:292.281045px;}
.y247{bottom:293.001045px;}
.yc4{bottom:293.473780px;}
.y10f{bottom:295.161045px;}
.y55{bottom:295.697800px;}
.y136{bottom:297.681045px;}
.y8a{bottom:298.270941px;}
.y54{bottom:301.193201px;}
.y8e{bottom:302.253490px;}
.yc1{bottom:304.794304px;}
.y1ab{bottom:305.961045px;}
.y8f{bottom:306.080875px;}
.y53{bottom:306.695067px;}
.y246{bottom:307.041045px;}
.y18f{bottom:308.841045px;}
.y2e{bottom:310.281045px;}
.y52{bottom:312.190467px;}
.y60{bottom:312.720611px;}
.y10e{bottom:313.161045px;}
.y135{bottom:315.681045px;}
.y92{bottom:316.386367px;}
.yc3{bottom:316.787208px;}
.y89{bottom:316.858325px;}
.y51{bottom:317.685867px;}
.y245{bottom:320.721045px;}
.y43{bottom:322.069257px;}
.y50{bottom:323.258850px;}
.y1aa{bottom:323.961045px;}
.y41{bottom:324.474303px;}
.y4b{bottom:324.920400px;}
.y8d{bottom:325.560453px;}
.y18e{bottom:326.841045px;}
.y2d{bottom:328.641045px;}
.y4f{bottom:328.754250px;}
.y49{bottom:328.767181px;}
.ybb{bottom:330.642082px;}
.y10d{bottom:331.521045px;}
.y42{bottom:332.555775px;}
.y4a{bottom:332.762660px;}
.y134{bottom:334.041045px;}
.y4e{bottom:334.184999px;}
.y244{bottom:334.401045px;}
.y40{bottom:335.471569px;}
.y88{bottom:339.033882px;}
.yaa{bottom:341.425997px;}
.y1a9{bottom:341.961045px;}
.yb4{bottom:342.227679px;}
.y227{bottom:342.321045px;}
.y18d{bottom:345.201045px;}
.yac{bottom:346.009808px;}
.y2c{bottom:346.641045px;}
.y5f{bottom:346.746838px;}
.yb0{bottom:346.759768px;}
.y8c{bottom:347.554985px;}
.y243{bottom:348.441045px;}
.ya9{bottom:349.184210px;}
.y10c{bottom:349.521045px;}
.yb3{bottom:349.985892px;}
.y5e{bottom:350.302685px;}
.y133{bottom:352.041045px;}
.yab{bottom:360.123289px;}
.y1a8{bottom:360.321045px;}
.y242{bottom:362.121045px;}
.y18c{bottom:363.201045px;}
.y2b{bottom:364.641045px;}
.y10b{bottom:367.521045px;}
.y132{bottom:370.041045px;}
.y241{bottom:375.801045px;}
.y1a7{bottom:378.321045px;}
.y18b{bottom:381.201045px;}
.y2a{bottom:383.001045px;}
.y226{bottom:384.081195px;}
.y10a{bottom:385.881045px;}
.y131{bottom:388.041045px;}
.y240{bottom:389.481045px;}
.y1a6{bottom:396.321045px;}
.y18a{bottom:399.561045px;}
.y29{bottom:401.001045px;}
.y23f{bottom:403.521045px;}
.y109{bottom:403.881045px;}
.y130{bottom:406.401045px;}
.y1a5{bottom:414.681045px;}
.y23e{bottom:417.201045px;}
.y189{bottom:417.561045px;}
.y28{bottom:419.001045px;}
.y225{bottom:419.721045px;}
.y108{bottom:421.881045px;}
.y12f{bottom:424.401045px;}
.y23d{bottom:430.881045px;}
.y1a4{bottom:432.681045px;}
.y27{bottom:437.001045px;}
.y224{bottom:437.721045px;}
.y188{bottom:439.521045px;}
.y107{bottom:440.241045px;}
.y12e{bottom:442.401045px;}
.y23c{bottom:444.921045px;}
.y1a3{bottom:450.681045px;}
.y26{bottom:455.361045px;}
.y223{bottom:456.081195px;}
.y106{bottom:458.241045px;}
.y23b{bottom:458.601045px;}
.y12d{bottom:460.761045px;}
.y187{bottom:466.521045px;}
.y1a2{bottom:468.681045px;}
.y23a{bottom:472.281045px;}
.y25{bottom:473.361045px;}
.y222{bottom:474.081195px;}
.y105{bottom:476.241045px;}
.y12c{bottom:478.761045px;}
.y186{bottom:484.521045px;}
.y239{bottom:486.321045px;}
.y1a1{bottom:487.041045px;}
.y24{bottom:491.361045px;}
.y221{bottom:492.081195px;}
.y104{bottom:494.601045px;}
.y238{bottom:500.001045px;}
.y12b{bottom:500.721045px;}
.y185{bottom:502.521045px;}
.y1a0{bottom:505.041045px;}
.y23{bottom:509.721045px;}
.y220{bottom:510.081195px;}
.y103{bottom:512.601045px;}
.y237{bottom:513.681045px;}
.y184{bottom:520.881045px;}
.y19f{bottom:523.041045px;}
.y22{bottom:527.721045px;}
.y21f{bottom:528.441045px;}
.y102{bottom:530.601045px;}
.y183{bottom:538.881045px;}
.y19e{bottom:541.401045px;}
.y21{bottom:545.721045px;}
.y21e{bottom:546.441045px;}
.y101{bottom:548.601045px;}
.y182{bottom:556.881045px;}
.y19d{bottom:559.401045px;}
.y12a{bottom:563.721045px;}
.y20{bottom:564.081045px;}
.y21d{bottom:564.441045px;}
.y100{bottom:566.961045px;}
.y293{bottom:569.500500px;}
.y181{bottom:575.241045px;}
.y19c{bottom:577.401045px;}
.y1f{bottom:582.081045px;}
.y285{bottom:583.540500px;}
.yff{bottom:584.961045px;}
.y21c{bottom:588.201045px;}
.y180{bottom:593.241045px;}
.y19b{bottom:595.761045px;}
.y1e{bottom:600.081045px;}
.yfe{bottom:602.961045px;}
.y17f{bottom:611.241045px;}
.y129{bottom:618.081045px;}
.y1d{bottom:618.441045px;}
.y19a{bottom:619.161045px;}
.y21b{bottom:623.841045px;}
.y17e{bottom:629.241045px;}
.y1c{bottom:636.441045px;}
.yfa{bottom:637.881045px;}
.yfb{bottom:639.700500px;}
.y21a{bottom:642.201045px;}
.y17d{bottom:647.601045px;}
.y1b{bottom:654.441045px;}
.y199{bottom:655.161045px;}
.y219{bottom:660.201045px;}
.yf9{bottom:665.601045px;}
.y1a{bottom:672.441045px;}
.y198{bottom:673.161045px;}
.y218{bottom:678.201045px;}
.yf8{bottom:683.601045px;}
.y3a{bottom:689.740500px;}
.y128{bottom:690.441045px;}
.y19{bottom:690.801045px;}
.y197{bottom:691.161045px;}
.y217{bottom:696.561045px;}
.yf7{bottom:701.961045px;}
.y127{bottom:708.801045px;}
.y196{bottom:709.161045px;}
.y18{bottom:714.201045px;}
.y216{bottom:714.561045px;}
.yf6{bottom:719.961045px;}
.y126{bottom:726.801045px;}
.y195{bottom:727.521045px;}
.y215{bottom:732.561045px;}
.yf5{bottom:737.961045px;}
.y125{bottom:744.801045px;}
.y282{bottom:744.820500px;}
.y194{bottom:745.521045px;}
.y17{bottom:749.481045px;}
.y214{bottom:750.561195px;}
.yf4{bottom:756.321045px;}
.y267{bottom:759.220500px;}
.y269{bottom:759.854700px;}
.y193{bottom:763.521045px;}
.y16{bottom:766.041045px;}
.y213{bottom:768.921045px;}
.yf3{bottom:774.321045px;}
.y120{bottom:779.721195px;}
.y121{bottom:781.540500px;}
.y192{bottom:781.881045px;}
.y15{bottom:782.241195px;}
.y212{bottom:786.921045px;}
.yf2{bottom:792.321045px;}
.y14{bottom:798.801045px;}
.y191{bottom:799.881045px;}
.y211{bottom:804.921045px;}
.y11f{bottom:810.321045px;}
.yf1{bottom:810.681045px;}
.y13{bottom:814.641045px;}
.y190{bottom:817.881045px;}
.y210{bottom:823.281045px;}
.yf0{bottom:828.681045px;}
.y12{bottom:830.121045px;}
.y20f{bottom:841.281045px;}
.y11{bottom:845.601045px;}
.yef{bottom:846.681045px;}
.y20e{bottom:859.281045px;}
.y10{bottom:861.081195px;}
.y11e{bottom:864.681045px;}
.yee{bottom:865.041045px;}
.y17c{bottom:869.001045px;}
.y1d7{bottom:869.020500px;}
.yf{bottom:876.561195px;}
.y20d{bottom:877.641045px;}
.yed{bottom:883.041045px;}
.y1ac{bottom:892.780650px;}
.ye{bottom:894.201045px;}
.y17b{bottom:895.641045px;}
.yec{bottom:901.041045px;}
.yd{bottom:911.481045px;}
.y17a{bottom:913.641045px;}
.yeb{bottom:919.041045px;}
.y179{bottom:932.001045px;}
.yc{bottom:935.601045px;}
.y11d{bottom:937.401195px;}
.yea{bottom:941.361045px;}
.y178{bottom:950.001045px;}
.y256{bottom:950.020500px;}
.yb{bottom:952.881045px;}
.y11c{bottom:955.401195px;}
.ya{bottom:963.321045px;}
.ye9{bottom:968.001045px;}
.y11b{bottom:973.401195px;}
.y262{bottom:974.500650px;}
.y9{bottom:980.601045px;}
.ye8{bottom:986.001045px;}
.y260{bottom:988.180500px;}
.y11a{bottom:991.401195px;}
.y8{bottom:999.681045px;}
.ye7{bottom:1004.361045px;}
.y119{bottom:1009.761045px;}
.y25d{bottom:1015.900500px;}
.y7{bottom:1018.401195px;}
.ye6{bottom:1022.361045px;}
.y6{bottom:1037.841045px;}
.ye5{bottom:1040.361045px;}
.y25b{bottom:1043.620500px;}
.y115{bottom:1046.121045px;}
.y116{bottom:1046.500650px;}
.y259{bottom:1058.380500px;}
.ye4{bottom:1058.721195px;}
.y5{bottom:1067.001045px;}
.ye3{bottom:1076.721195px;}
.y2{bottom:1122.801045px;}
.y3{bottom:1137.940500px;}
.h3c{height:13.679993px;}
.h41{height:14.109082px;}
.h12{height:14.849553px;}
.h3{height:17.280030px;}
.he{height:18.562278px;}
.h15{height:18.654502px;}
.h10{height:18.776944px;}
.h11{height:20.418639px;}
.h3f{height:21.163517px;}
.h48{height:21.439890px;}
.h49{height:21.687750px;}
.h2d{height:21.706096px;}
.h13{height:22.275001px;}
.h17{height:22.532603px;}
.h3b{height:22.680000px;}
.h43{height:23.149665px;}
.h42{height:23.279869px;}
.h35{height:23.418635px;}
.h38{height:23.809186px;}
.h46{height:24.097500px;}
.h2f{height:24.609136px;}
.h37{height:24.967134px;}
.h26{height:25.793991px;}
.h16{height:26.286910px;}
.h8{height:27.014766px;}
.h2e{height:27.133111px;}
.h3d{height:27.719970px;}
.h31{height:27.865878px;}
.h36{height:28.102497px;}
.h39{height:29.598859px;}
.hf{height:30.949557px;}
.h28{height:30.953160px;}
.h47{height:31.043250px;}
.h14{height:31.222806px;}
.h2{height:33.018047px;}
.h4b{height:34.157813px;}
.h30{height:36.074798px;}
.h9{height:36.109688px;}
.h29{height:36.110473px;}
.ha{height:36.359985px;}
.h1d{height:40.045389px;}
.h19{height:40.993594px;}
.h4{height:41.022422px;}
.h21{height:42.198933px;}
.h23{height:42.250104px;}
.h1a{height:42.752109px;}
.h20{height:43.503234px;}
.h24{height:43.558618px;}
.h1b{height:43.560015px;}
.h22{height:46.439940px;}
.h1e{height:47.879970px;}
.h27{height:54.348601px;}
.h2b{height:54.374766px;}
.h7{height:59.255859px;}
.h6{height:59.256459px;}
.h5{height:68.315625px;}
.hc{height:75.960000px;}
.h1c{height:76.722448px;}
.h1f{height:78.296133px;}
.hb{height:108.059063px;}
.h25{height:125.999970px;}
.h45{height:126.000000px;}
.h4a{height:140.040030px;}
.h2a{height:153.720000px;}
.h3a{height:162.000000px;}
.h40{height:165.685800px;}
.h3e{height:166.320000px;}
.h44{height:180.720000px;}
.h34{height:196.200000px;}
.h33{height:221.040000px;}
.h2c{height:221.760000px;}
.h32{height:245.520000px;}
.hd{height:369.000000px;}
.h18{height:394.200000px;}
.h1{height:1145.481150px;}
.h0{height:1188.000000px;}
.w2{width:7.559967px;}
.w3{width:21.600000px;}
.w14{width:44.999910px;}
.w12{width:45.000000px;}
.w13{width:45.359985px;}
.w11{width:51.480015px;}
.w7{width:78.120000px;}
.w9{width:94.680000px;}
.w10{width:136.439985px;}
.w8{width:181.440000px;}
.w16{width:249.120000px;}
.we{width:298.440000px;}
.w15{width:330.120000px;}
.wc{width:342.000000px;}
.wf{width:369.360000px;}
.w17{width:375.120000px;}
.wd{width:378.000000px;}
.w5{width:384.120000px;}
.w4{width:391.320000px;}
.w6{width:404.640000px;}
.wa{width:666.000000px;}
.wb{width:769.320000px;}
.w1{width:875.481150px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x88{left:1.147651px;}
.x57{left:2.300443px;}
.x5a{left:3.373826px;}
.x77{left:4.396411px;}
.xb2{left:6.941650px;}
.x51{left:8.789390px;}
.x55{left:10.799850px;}
.xa6{left:11.946150px;}
.x87{left:13.642255px;}
.xa7{left:15.329850px;}
.xa0{left:16.394850px;}
.x6f{left:19.562118px;}
.x1{left:21.259500px;}
.xac{left:22.544445px;}
.xa8{left:24.510150px;}
.x13{left:25.950075px;}
.x91{left:27.590257px;}
.x4c{left:28.849529px;}
.xa4{left:30.475650px;}
.xad{left:32.223357px;}
.x1d{left:33.666934px;}
.x1c{left:34.903739px;}
.x22{left:37.920510px;}
.x4b{left:39.165066px;}
.xaa{left:41.221465px;}
.x7c{left:43.404672px;}
.x4d{left:44.786555px;}
.x4a{left:46.020777px;}
.xaf{left:47.053579px;}
.x2{left:49.319820px;}
.x8{left:51.851070px;}
.x97{left:54.370952px;}
.x4{left:55.650870px;}
.x12{left:57.259500px;}
.xa5{left:58.433700px;}
.x56{left:60.119745px;}
.x64{left:61.709698px;}
.x83{left:62.934122px;}
.xc{left:64.469970px;}
.x98{left:66.519516px;}
.x92{left:69.478187px;}
.xe{left:70.920045px;}
.x46{left:72.548471px;}
.x68{left:73.738235px;}
.x7{left:76.315425px;}
.x21{left:80.072638px;}
.x40{left:82.333117px;}
.x3f{left:83.353562px;}
.xa{left:84.540870px;}
.x96{left:87.499500px;}
.x48{left:88.882049px;}
.x99{left:96.504153px;}
.x93{left:98.680706px;}
.x8c{left:100.972176px;}
.x15{left:104.582693px;}
.x42{left:106.197321px;}
.x71{left:110.954973px;}
.x16{left:113.198349px;}
.x84{left:116.091278px;}
.x90{left:119.027791px;}
.x7d{left:120.314633px;}
.x5b{left:121.553498px;}
.x47{left:126.606221px;}
.xae{left:128.909590px;}
.x7e{left:132.688862px;}
.x5c{left:133.783828px;}
.x25{left:137.566316px;}
.x20{left:138.735307px;}
.x23{left:142.319781px;}
.x24{left:143.475855px;}
.x43{left:146.227182px;}
.x44{left:147.622220px;}
.x72{left:152.274894px;}
.x73{left:153.310593px;}
.x63{left:157.624508px;}
.x49{left:160.429451px;}
.x9d{left:162.313050px;}
.x9{left:164.931450px;}
.x8d{left:166.301379px;}
.x9b{left:169.012800px;}
.x28{left:170.084927px;}
.x39{left:176.608024px;}
.x27{left:178.287238px;}
.x45{left:180.011660px;}
.x1a{left:181.529411px;}
.xd{left:182.719500px;}
.x7f{left:185.674635px;}
.x95{left:186.713624px;}
.x18{left:188.013757px;}
.x26{left:189.318377px;}
.x1f{left:190.881337px;}
.x75{left:192.000737px;}
.x19{left:194.181637px;}
.x3e{left:195.996479px;}
.x17{left:197.585273px;}
.x9c{left:199.646400px;}
.x4f{left:200.904948px;}
.x3d{left:202.545411px;}
.x8f{left:203.796737px;}
.x74{left:204.906457px;}
.x76{left:206.176315px;}
.x7b{left:207.658528px;}
.x85{left:213.881347px;}
.x8e{left:217.483810px;}
.x2c{left:220.377364px;}
.x4e{left:226.926295px;}
.x86{left:228.397857px;}
.x3b{left:229.638870px;}
.x1e{left:231.285791px;}
.x94{left:233.846550px;}
.x52{left:237.608675px;}
.x81{left:241.016918px;}
.x5{left:242.636400px;}
.x3c{left:246.637675px;}
.x38{left:254.904571px;}
.x80{left:256.104703px;}
.x2b{left:257.378182px;}
.x2f{left:259.128439px;}
.x37{left:260.665565px;}
.x2e{left:263.610646px;}
.x36{left:266.684898px;}
.x35{left:268.480365px;}
.x3a{left:270.488962px;}
.x41{left:273.246747px;}
.x34{left:274.958253px;}
.x58{left:277.319850px;}
.x8b{left:281.250150px;}
.x33{left:283.560991px;}
.x82{left:290.197590px;}
.x2a{left:292.208940px;}
.x66{left:293.265162px;}
.x29{left:295.076519px;}
.xab{left:296.429397px;}
.x2d{left:304.467196px;}
.x32{left:307.031226px;}
.x31{left:308.465016px;}
.x50{left:309.672757px;}
.x30{left:312.540337px;}
.x61{left:328.037658px;}
.x9a{left:338.250150px;}
.x1b{left:342.934097px;}
.x65{left:345.320336px;}
.x62{left:347.788004px;}
.x89{left:352.799850px;}
.xb0{left:354.000300px;}
.xb{left:360.211950px;}
.x70{left:367.988654px;}
.x79{left:384.750150px;}
.x54{left:394.799850px;}
.x67{left:423.709305px;}
.x6{left:438.119700px;}
.x11{left:448.920000px;}
.x60{left:459.720000px;}
.x53{left:462.259500px;}
.x10{left:464.070150px;}
.x14{left:473.059500px;}
.x8a{left:475.579500px;}
.x6a{left:480.762856px;}
.xf{left:484.061700px;}
.x6d{left:496.379408px;}
.xa9{left:499.699500px;}
.x69{left:504.854135px;}
.xb1{left:538.579500px;}
.x7a{left:547.735500px;}
.x6c{left:557.782899px;}
.x59{left:568.459500px;}
.x6e{left:582.333488px;}
.x6b{left:589.610406px;}
.x5e{left:612.019500px;}
.x9e{left:617.419500px;}
.x9f{left:668.899500px;}
.x5f{left:685.170000px;}
.xa1{left:713.899500px;}
.x78{left:717.750150px;}
.x5d{left:728.670000px;}
.xa2{left:759.259500px;}
.xa3{left:804.259500px;}
.x3{left:840.619500px;}
@media print{
.ve{vertical-align:-25.385038pt;}
.v2{vertical-align:-24.320000pt;}
.vb{vertical-align:-13.351467pt;}
.v4{vertical-align:-10.045448pt;}
.v9{vertical-align:-8.298414pt;}
.v8{vertical-align:-7.172036pt;}
.vf{vertical-align:-5.483329pt;}
.v5{vertical-align:-3.953815pt;}
.v11{vertical-align:-2.243534pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:1.376444pt;}
.v7{vertical-align:3.999790pt;}
.v14{vertical-align:5.493533pt;}
.v6{vertical-align:7.953604pt;}
.v3{vertical-align:11.010915pt;}
.vc{vertical-align:13.300267pt;}
.v12{vertical-align:16.392270pt;}
.v10{vertical-align:24.320000pt;}
.vd{vertical-align:25.381876pt;}
.v1{vertical-align:26.880533pt;}
.va{vertical-align:32.210667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.026667pt;}
.ls45{letter-spacing:0.034560pt;}
.ls2{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.064640pt;}
.ls6d{letter-spacing:0.065173pt;}
.ls31{letter-spacing:0.069120pt;}
.ls1{letter-spacing:0.106133pt;}
.ls0{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.126720pt;}
.ls68{letter-spacing:0.168960pt;}
.ls62{letter-spacing:0.183040pt;}
.ls43{letter-spacing:0.209920pt;}
.ls63{letter-spacing:0.211200pt;}
.lsf{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.236800pt;}
.ls76{letter-spacing:0.242088pt;}
.ls6c{letter-spacing:0.244160pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls6b{letter-spacing:0.253760pt;}
.ls95{letter-spacing:0.257040pt;}
.lsa{letter-spacing:0.262400pt;}
.ls5e{letter-spacing:0.262528pt;}
.ls5{letter-spacing:0.284693pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.295680pt;}
.ls94{letter-spacing:0.340200pt;}
.ls44{letter-spacing:0.367360pt;}
.ls3{letter-spacing:0.378880pt;}
.lsa3{letter-spacing:0.380160pt;}
.ls75{letter-spacing:0.390031pt;}
.ls8{letter-spacing:0.419840pt;}
.ls77{letter-spacing:0.457277pt;}
.ls46{letter-spacing:0.472320pt;}
.lsc{letter-spacing:0.482453pt;}
.ls48{letter-spacing:0.512853pt;}
.ls7{letter-spacing:0.524800pt;}
.ls49{letter-spacing:0.568640pt;}
.ls60{letter-spacing:0.569173pt;}
.ls5d{letter-spacing:0.577280pt;}
.ls5f{letter-spacing:0.624640pt;}
.lsd{letter-spacing:0.625173pt;}
.ls26{letter-spacing:0.629760pt;}
.ls81{letter-spacing:0.655297pt;}
.ls9d{letter-spacing:0.671552pt;}
.ls8f{letter-spacing:0.672624pt;}
.ls90{letter-spacing:0.695072pt;}
.ls30{letter-spacing:0.705173pt;}
.ls7f{letter-spacing:0.750022pt;}
.ls2e{letter-spacing:0.765581pt;}
.ls36{letter-spacing:0.766510pt;}
.lse{letter-spacing:0.767147pt;}
.ls9b{letter-spacing:0.768600pt;}
.ls5a{letter-spacing:0.883415pt;}
.ls9{letter-spacing:0.944000pt;}
.ls7e{letter-spacing:1.015603pt;}
.ls93{letter-spacing:1.031100pt;}
.ls9a{letter-spacing:1.040760pt;}
.ls4b{letter-spacing:1.233660pt;}
.ls4c{letter-spacing:1.237278pt;}
.ls6f{letter-spacing:1.337989pt;}
.ls72{letter-spacing:1.338137pt;}
.ls6e{letter-spacing:1.338235pt;}
.ls71{letter-spacing:1.342268pt;}
.ls84{letter-spacing:1.352522pt;}
.lsa2{letter-spacing:1.371160pt;}
.lsa1{letter-spacing:1.375640pt;}
.ls9f{letter-spacing:1.386000pt;}
.ls86{letter-spacing:1.512000pt;}
.ls88{letter-spacing:1.523648pt;}
.ls87{letter-spacing:1.528352pt;}
.ls7c{letter-spacing:1.593513pt;}
.ls99{letter-spacing:1.632960pt;}
.ls2b{letter-spacing:1.655850pt;}
.ls73{letter-spacing:1.734964pt;}
.ls27{letter-spacing:1.755600pt;}
.ls66{letter-spacing:1.786133pt;}
.ls7a{letter-spacing:1.881226pt;}
.ls97{letter-spacing:1.927800pt;}
.ls70{letter-spacing:1.967270pt;}
.ls83{letter-spacing:1.977598pt;}
.lsa0{letter-spacing:2.016000pt;}
.ls9e{letter-spacing:2.026472pt;}
.ls74{letter-spacing:2.084647pt;}
.ls2d{letter-spacing:2.088100pt;}
.ls35{letter-spacing:2.090632pt;}
.ls7d{letter-spacing:2.171374pt;}
.ls7b{letter-spacing:2.181186pt;}
.ls8e{letter-spacing:2.199757pt;}
.ls96{letter-spacing:2.225160pt;}
.ls98{letter-spacing:2.235240pt;}
.ls85{letter-spacing:2.240000pt;}
.ls19{letter-spacing:2.243421pt;}
.ls79{letter-spacing:2.532860pt;}
.ls82{letter-spacing:2.557450pt;}
.ls89{letter-spacing:2.595600pt;}
.ls8b{letter-spacing:2.620800pt;}
.ls50{letter-spacing:2.930959pt;}
.ls78{letter-spacing:2.963200pt;}
.ls8a{letter-spacing:3.036600pt;}
.ls40{letter-spacing:3.084132pt;}
.ls8d{letter-spacing:3.246034pt;}
.ls65{letter-spacing:3.254933pt;}
.ls12{letter-spacing:3.411015pt;}
.ls13{letter-spacing:3.434002pt;}
.ls80{letter-spacing:3.435320pt;}
.ls22{letter-spacing:3.504827pt;}
.ls9c{letter-spacing:3.520440pt;}
.ls54{letter-spacing:3.550031pt;}
.ls91{letter-spacing:3.929156pt;}
.ls92{letter-spacing:3.933272pt;}
.ls58{letter-spacing:4.080945pt;}
.ls17{letter-spacing:4.266129pt;}
.ls18{letter-spacing:4.289117pt;}
.ls2f{letter-spacing:4.322501pt;}
.ls32{letter-spacing:4.327742pt;}
.ls4d{letter-spacing:4.450724pt;}
.ls52{letter-spacing:4.720465pt;}
.ls53{letter-spacing:4.726494pt;}
.ls55{letter-spacing:4.726555pt;}
.ls39{letter-spacing:4.739919pt;}
.ls3f{letter-spacing:4.746351pt;}
.ls8c{letter-spacing:4.752440pt;}
.ls3e{letter-spacing:4.752664pt;}
.ls3d{letter-spacing:4.752728pt;}
.ls29{letter-spacing:4.894401pt;}
.ls3c{letter-spacing:5.123242pt;}
.ls3b{letter-spacing:5.155185pt;}
.ls4e{letter-spacing:5.608670pt;}
.ls51{letter-spacing:5.614460pt;}
.ls4a{letter-spacing:5.615907pt;}
.ls4f{letter-spacing:5.644856pt;}
.ls21{letter-spacing:5.894786pt;}
.ls3a{letter-spacing:5.928179pt;}
.ls42{letter-spacing:5.947344pt;}
.ls41{letter-spacing:5.960122pt;}
.ls25{letter-spacing:7.563733pt;}
.ls33{letter-spacing:7.983020pt;}
.ls24{letter-spacing:9.371200pt;}
.ls2c{letter-spacing:9.642502pt;}
.ls34{letter-spacing:9.654194pt;}
.ls28{letter-spacing:11.358202pt;}
.ls20{letter-spacing:12.176771pt;}
.ls23{letter-spacing:12.570647pt;}
.ls67{letter-spacing:13.174080pt;}
.ls2a{letter-spacing:17.955003pt;}
.ls15{letter-spacing:18.872478pt;}
.ls10{letter-spacing:18.895466pt;}
.ls5c{letter-spacing:20.139947pt;}
.ls5b{letter-spacing:20.140107pt;}
.ls4{letter-spacing:23.810027pt;}
.ls47{letter-spacing:23.810240pt;}
.ls1e{letter-spacing:23.810293pt;}
.lsb{letter-spacing:23.810560pt;}
.ls64{letter-spacing:34.506880pt;}
.ls61{letter-spacing:34.507253pt;}
.ls57{letter-spacing:52.402596pt;}
.ls56{letter-spacing:54.129911pt;}
.ls37{letter-spacing:54.558448pt;}
.ls38{letter-spacing:54.590391pt;}
.ls11{letter-spacing:56.847491pt;}
.ls16{letter-spacing:60.525459pt;}
.ls59{letter-spacing:104.382396pt;}
.ls14{letter-spacing:140.149564pt;}
.ws0{word-spacing:-14.400000pt;}
.ws2f{word-spacing:-13.749760pt;}
.ws48{word-spacing:-13.697280pt;}
.ws2c{word-spacing:-13.644800pt;}
.ws5{word-spacing:-13.539840pt;}
.ws5f{word-spacing:-13.487360pt;}
.ws3{word-spacing:-13.382400pt;}
.ws2e{word-spacing:-13.329920pt;}
.ws60{word-spacing:-13.120000pt;}
.ws2{word-spacing:-12.076800pt;}
.ws63{word-spacing:-10.940160pt;}
.ws4{word-spacing:-10.855680pt;}
.ws49{word-spacing:-10.813440pt;}
.ws62{word-spacing:-10.771200pt;}
.ws64{word-spacing:-10.728960pt;}
.ws61{word-spacing:-10.686720pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws37{word-spacing:-8.709120pt;}
.ws31{word-spacing:-8.674560pt;}
.ws30{word-spacing:-8.640000pt;}
.ws6f{word-spacing:-6.300000pt;}
.ws69{word-spacing:-6.147717pt;}
.ws5c{word-spacing:-3.586573pt;}
.ws73{word-spacing:-2.583028pt;}
.ws6e{word-spacing:-2.520000pt;}
.ws71{word-spacing:-2.491200pt;}
.ws75{word-spacing:-2.368772pt;}
.ws6b{word-spacing:-2.311542pt;}
.ws70{word-spacing:-2.291904pt;}
.ws72{word-spacing:-2.053800pt;}
.ws6d{word-spacing:-1.990800pt;}
.ws74{word-spacing:-1.411228pt;}
.ws6a{word-spacing:-1.377089pt;}
.ws68{word-spacing:-0.934453pt;}
.ws38{word-spacing:-0.472320pt;}
.ws2d{word-spacing:-0.053407pt;}
.ws3a{word-spacing:-0.053265pt;}
.ws33{word-spacing:-0.053200pt;}
.ws47{word-spacing:-0.044719pt;}
.ws3c{word-spacing:-0.038332pt;}
.ws4f{word-spacing:-0.036186pt;}
.ws3b{word-spacing:-0.030794pt;}
.ws36{word-spacing:-0.030756pt;}
.ws5a{word-spacing:-0.030452pt;}
.ws4b{word-spacing:-0.028949pt;}
.ws1d{word-spacing:-0.027585pt;}
.ws67{word-spacing:-0.026899pt;}
.wsa{word-spacing:-0.025286pt;}
.ws3d{word-spacing:-0.024910pt;}
.ws50{word-spacing:-0.023517pt;}
.wsf{word-spacing:-0.022987pt;}
.ws44{word-spacing:-0.020760pt;}
.ws5b{word-spacing:-0.019789pt;}
.wse{word-spacing:-0.018390pt;}
.ws11{word-spacing:-0.017926pt;}
.ws2b{word-spacing:0.000000pt;}
.ws4d{word-spacing:2.497000pt;}
.ws53{word-spacing:2.497036pt;}
.ws16{word-spacing:2.548773pt;}
.ws5e{word-spacing:2.632653pt;}
.ws5d{word-spacing:2.812907pt;}
.ws59{word-spacing:2.812968pt;}
.ws57{word-spacing:2.865753pt;}
.ws29{word-spacing:3.069166pt;}
.ws17{word-spacing:3.072844pt;}
.ws4a{word-spacing:3.073822pt;}
.ws58{word-spacing:3.127407pt;}
.ws54{word-spacing:3.127443pt;}
.ws15{word-spacing:3.213966pt;}
.ws1f{word-spacing:3.267537pt;}
.wsd{word-spacing:3.267767pt;}
.wsc{word-spacing:3.267790pt;}
.ws27{word-spacing:3.267813pt;}
.ws8{word-spacing:3.467319pt;}
.wsb{word-spacing:3.543617pt;}
.ws10{word-spacing:3.594310pt;}
.ws14{word-spacing:3.635567pt;}
.ws26{word-spacing:3.907739pt;}
.ws22{word-spacing:3.929794pt;}
.ws2a{word-spacing:3.929817pt;}
.ws1c{word-spacing:3.930966pt;}
.ws23{word-spacing:3.934414pt;}
.ws1b{word-spacing:4.091649pt;}
.ws28{word-spacing:4.321524pt;}
.ws24{word-spacing:4.362678pt;}
.ws1a{word-spacing:4.363831pt;}
.ws51{word-spacing:4.414863pt;}
.ws55{word-spacing:4.414899pt;}
.ws9{word-spacing:4.417141pt;}
.ws52{word-spacing:4.464805pt;}
.ws18{word-spacing:4.624259pt;}
.ws3e{word-spacing:4.729178pt;}
.ws3f{word-spacing:4.729498pt;}
.ws25{word-spacing:4.910276pt;}
.ws43{word-spacing:4.914279pt;}
.ws45{word-spacing:4.919071pt;}
.ws21{word-spacing:5.090262pt;}
.ws19{word-spacing:5.586065pt;}
.ws40{word-spacing:5.889527pt;}
.ws41{word-spacing:5.889846pt;}
.ws42{word-spacing:5.921789pt;}
.ws20{word-spacing:6.184662pt;}
.ws34{word-spacing:8.714826pt;}
.ws39{word-spacing:10.845988pt;}
.ws35{word-spacing:13.868577pt;}
.ws32{word-spacing:18.446272pt;}
.ws1e{word-spacing:22.382172pt;}
.ws12{word-spacing:42.101833pt;}
.ws13{word-spacing:58.341644pt;}
.ws6c{word-spacing:117.618480pt;}
.ws65{word-spacing:118.855786pt;}
.ws66{word-spacing:118.913329pt;}
.ws7{word-spacing:121.128470pt;}
.ws4e{word-spacing:158.728046pt;}
.ws56{word-spacing:159.549324pt;}
.ws4c{word-spacing:188.432410pt;}
.ws46{word-spacing:1495.144857pt;}
._15{margin-left:-373.366161pt;}
._1c{margin-left:-4.048337pt;}
._13{margin-left:-3.061333pt;}
._12{margin-left:-2.078138pt;}
._11{margin-left:-1.140389pt;}
._0{width:1.013760pt;}
._1{width:2.233600pt;}
._3{width:3.212800pt;}
._17{width:4.277760pt;}
._f{width:5.356373pt;}
._2{width:6.525440pt;}
._10{width:7.855360pt;}
._9{width:9.465600pt;}
._5{width:10.479360pt;}
._8{width:11.793920pt;}
._27{width:12.698187pt;}
._e{width:14.054933pt;}
._b{width:15.047680pt;}
._a{width:15.989760pt;}
._20{width:17.091840pt;}
._6{width:18.108160pt;}
._21{width:19.348480pt;}
._4{width:20.538880pt;}
._18{width:21.445120pt;}
._1e{width:22.848000pt;}
._7{width:23.756800pt;}
._22{width:25.209600pt;}
._25{width:26.504960pt;}
._23{width:27.642880pt;}
._c{width:29.670400pt;}
._1a{width:32.206080pt;}
._d{width:33.783040pt;}
._26{width:34.780160pt;}
._24{width:36.232960pt;}
._19{width:37.191680pt;}
._16{width:40.714987pt;}
._28{width:43.127040pt;}
._2a{width:134.222480pt;}
._29{width:148.941520pt;}
._1d{width:274.025600pt;}
._1f{width:428.692267pt;}
._1b{width:458.025600pt;}
._14{width:980.597099pt;}
.fs22{font-size:16.393995pt;}
.fsc{font-size:17.926229pt;}
.fsa{font-size:18.389651pt;}
.fs27{font-size:19.600000pt;}
.fs1f{font-size:19.789216pt;}
.fs19{font-size:20.759525pt;}
.fs8{font-size:22.987480pt;}
.fs1d{font-size:23.517067pt;}
.fs21{font-size:24.590869pt;}
.fs18{font-size:24.910142pt;}
.fs28{font-size:24.912000pt;}
.fs26{font-size:25.200000pt;}
.fs9{font-size:25.286393pt;}
.fs24{font-size:26.898667pt;}
.fs23{font-size:27.049956pt;}
.fsb{font-size:27.585307pt;}
.fs25{font-size:28.000000pt;}
.fs1b{font-size:28.948528pt;}
.fs1e{font-size:30.451660pt;}
.fs11{font-size:30.756255pt;}
.fs15{font-size:30.793551pt;}
.fsf{font-size:30.875859pt;}
.fs16{font-size:31.943216pt;}
.fsd{font-size:32.181479pt;}
.fs5{font-size:34.560000pt;}
.fs1c{font-size:36.186316pt;}
.fs20{font-size:36.542167pt;}
.fs4{font-size:37.120000pt;}
.fs17{font-size:38.332319pt;}
.fs0{font-size:42.240000pt;}
.fs1a{font-size:44.719122pt;}
.fs29{font-size:44.800000pt;}
.fs6{font-size:47.360000pt;}
.fs1{font-size:52.480000pt;}
.fs10{font-size:53.200009pt;}
.fs13{font-size:53.264521pt;}
.fse{font-size:53.406891pt;}
.fs12{font-size:54.844336pt;}
.fs14{font-size:54.914158pt;}
.fs3{font-size:57.600000pt;}
.fs2{font-size:89.600000pt;}
.fs7{font-size:138.240000pt;}
.y20c{bottom:-40.640000pt;}
.y20b{bottom:-28.480000pt;}
.y266{bottom:-17.920000pt;}
.y20a{bottom:-16.320000pt;}
.y295{bottom:-11.840000pt;}
.y284{bottom:-9.280000pt;}
.y265{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.y26a{bottom:0.051038pt;}
.y177{bottom:0.320000pt;}
.y28c{bottom:1.516690pt;}
.y263{bottom:2.239867pt;}
.y25f{bottom:2.240000pt;}
.y25c{bottom:2.240133pt;}
.y1dc{bottom:2.560000pt;}
.y283{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y275{bottom:3.278824pt;}
.y1d9{bottom:3.520133pt;}
.ydf{bottom:3.890715pt;}
.y209{bottom:4.160000pt;}
.y26b{bottom:4.508367pt;}
.y156{bottom:4.663752pt;}
.yd9{bottom:5.806591pt;}
.y146{bottom:6.262098pt;}
.y25a{bottom:6.400000pt;}
.y124{bottom:6.699733pt;}
.yfd{bottom:6.717600pt;}
.y3b{bottom:7.040000pt;}
.y118{bottom:8.021467pt;}
.y264{bottom:8.960000pt;}
.yd0{bottom:9.020790pt;}
.y25e{bottom:9.600000pt;}
.y261{bottom:9.600133pt;}
.y170{bottom:10.153070pt;}
.y1eb{bottom:10.442091pt;}
.y268{bottom:11.168374pt;}
.y286{bottom:11.258310pt;}
.y160{bottom:11.425997pt;}
.y294{bottom:12.480000pt;}
.y1ae{bottom:12.528507pt;}
.ye2{bottom:12.800000pt;}
.y176{bottom:14.720000pt;}
.y1e2{bottom:14.729013pt;}
.y173{bottom:15.333419pt;}
.y1f0{bottom:15.676841pt;}
.ycf{bottom:15.916978pt;}
.y145{bottom:16.154353pt;}
.y1ee{bottom:16.505143pt;}
.y155{bottom:16.533676pt;}
.y1ea{bottom:17.187274pt;}
.y122{bottom:17.311067pt;}
.yfc{bottom:17.357333pt;}
.y117{bottom:18.619867pt;}
.y1e4{bottom:18.781452pt;}
.y1{bottom:18.897293pt;}
.yd5{bottom:19.304156pt;}
.y16f{bottom:19.844564pt;}
.y1b0{bottom:20.221656pt;}
.y1db{bottom:20.480000pt;}
.y287{bottom:20.708310pt;}
.y26c{bottom:21.004721pt;}
.y1d8{bottom:21.120000pt;}
.y208{bottom:22.080000pt;}
.ye1{bottom:22.400000pt;}
.y1e1{bottom:23.863940pt;}
.y175{bottom:24.640000pt;}
.y1e9{bottom:24.957177pt;}
.y1ed{bottom:25.639308pt;}
.y1cc{bottom:26.109123pt;}
.y123{bottom:26.674000pt;}
.y1ca{bottom:26.774946pt;}
.y1ef{bottom:26.843697pt;}
.y16e{bottom:27.412650pt;}
.y281{bottom:28.125438pt;}
.y3c{bottom:28.142720pt;}
.yd7{bottom:29.427187pt;}
.y292{bottom:29.749580pt;}
.y15a{bottom:30.030375pt;}
.y144{bottom:30.236407pt;}
.y1c8{bottom:30.366409pt;}
.y167{bottom:31.657869pt;}
.y1e8{bottom:31.862235pt;}
.y15c{bottom:32.294333pt;}
.y154{bottom:32.662475pt;}
.y14c{bottom:32.789448pt;}
.y1b1{bottom:34.325160pt;}
.yd6{bottom:34.671164pt;}
.y26d{bottom:35.246954pt;}
.y280{bottom:35.297980pt;}
.y14a{bottom:36.184985pt;}
.y291{bottom:37.099790pt;}
.y16d{bottom:37.457912pt;}
.y13f{bottom:40.383887pt;}
.y13d{bottom:40.537213pt;}
.y288{bottom:40.775000pt;}
.y1c7{bottom:41.221312pt;}
.y27f{bottom:42.470522pt;}
.y1c9{bottom:43.443134pt;}
.y1cb{bottom:43.639444pt;}
.y158{bottom:43.839317pt;}
.y28d{bottom:43.982750pt;}
.y290{bottom:44.450000pt;}
.ydb{bottom:45.377503pt;}
.y3e{bottom:45.760000pt;}
.y141{bottom:46.361214pt;}
.yd3{bottom:46.826846pt;}
.y1e7{bottom:47.001592pt;}
.y165{bottom:47.503174pt;}
.y26e{bottom:49.489125pt;}
.yce{bottom:49.935884pt;}
.ydd{bottom:50.188744pt;}
.y174{bottom:50.222720pt;}
.y163{bottom:50.403595pt;}
.y1f2{bottom:50.658913pt;}
.ydc{bottom:50.685844pt;}
.y15e{bottom:50.898711pt;}
.y14d{bottom:51.535973pt;}
.y162{bottom:51.659744pt;}
.y171{bottom:52.015117pt;}
.y147{bottom:52.172437pt;}
.ye0{bottom:52.462720pt;}
.yda{bottom:53.652929pt;}
.y157{bottom:53.799132pt;}
.y1cd{bottom:54.205763pt;}
.y1f3{bottom:54.608575pt;}
.yd2{bottom:55.102273pt;}
.y1f4{bottom:55.636340pt;}
.y1e6{bottom:56.137280pt;}
.y13e{bottom:57.090854pt;}
.y276{bottom:57.481157pt;}
.y3d{bottom:57.600000pt;}
.y236{bottom:58.525427pt;}
.y151{bottom:58.992259pt;}
.y148{bottom:59.458626pt;}
.y205{bottom:59.701721pt;}
.y289{bottom:60.841683pt;}
.y1f1{bottom:61.534949pt;}
.y1ec{bottom:61.588241pt;}
.yd8{bottom:62.824280pt;}
.y140{bottom:62.915653pt;}
.y13c{bottom:63.068987pt;}
.y16c{bottom:63.490626pt;}
.y26f{bottom:63.680146pt;}
.yd4{bottom:63.784000pt;}
.y277{bottom:64.013722pt;}
.y1e5{bottom:65.272968pt;}
.y1ce{bottom:65.275983pt;}
.y1f5{bottom:65.312556pt;}
.y15b{bottom:65.613236pt;}
.y1f6{bottom:65.743456pt;}
.y153{bottom:66.814299pt;}
.y149{bottom:66.886163pt;}
.yd1{bottom:67.053942pt;}
.y278{bottom:67.229285pt;}
.y164{bottom:69.192444pt;}
.y235{bottom:70.685413pt;}
.y14b{bottom:71.413279pt;}
.y159{bottom:71.866070pt;}
.y168{bottom:71.908402pt;}
.y16b{bottom:73.535896pt;}
.y255{bottom:74.205427pt;}
.y1da{bottom:74.222720pt;}
.y3f{bottom:74.862720pt;}
.y1ad{bottom:75.355591pt;}
.y142{bottom:75.759917pt;}
.y14f{bottom:76.436309pt;}
.y270{bottom:77.922317pt;}
.yb7{bottom:78.978602pt;}
.yb8{bottom:79.288931pt;}
.ycc{bottom:79.875107pt;}
.y28a{bottom:80.908310pt;}
.y16a{bottom:81.598291pt;}
.y1af{bottom:81.765946pt;}
.y152{bottom:82.492694pt;}
.y234{bottom:83.165427pt;}
.y15d{bottom:84.992231pt;}
.y28f{bottom:85.224860pt;}
.ycd{bottom:85.719627pt;}
.yde{bottom:85.748361pt;}
.y206{bottom:85.813040pt;}
.y86{bottom:87.110358pt;}
.y7f{bottom:87.374712pt;}
.y79{bottom:87.386206pt;}
.y279{bottom:87.540421pt;}
.y7c{bottom:87.897673pt;}
.y172{bottom:88.218470pt;}
.y7e{bottom:88.420634pt;}
.y254{bottom:88.925413pt;}
.ycb{bottom:89.529771pt;}
.y143{bottom:89.839575pt;}
.y71{bottom:90.455010pt;}
.y15f{bottom:90.510377pt;}
.y27a{bottom:90.664691pt;}
.y169{bottom:91.788096pt;}
.y271{bottom:92.164550pt;}
.y150{bottom:92.946028pt;}
.y28e{bottom:93.275000pt;}
.y78{bottom:94.006547pt;}
.y27b{bottom:94.093273pt;}
.y7b{bottom:94.207686pt;}
.y1b2{bottom:94.943087pt;}
.y1c1{bottom:94.970227pt;}
.y201{bottom:95.093376pt;}
.y7d{bottom:95.316823pt;}
.y233{bottom:95.325440pt;}
.y1b8{bottom:95.684901pt;}
.y1dd{bottom:96.302720pt;}
.y87{bottom:96.879959pt;}
.y166{bottom:97.306242pt;}
.y70{bottom:97.351199pt;}
.y39{bottom:98.845427pt;}
.yba{bottom:99.184435pt;}
.y203{bottom:99.266863pt;}
.y1e0{bottom:100.596106pt;}
.y161{bottom:100.700181pt;}
.yb6{bottom:100.707344pt;}
.y28b{bottom:100.975000pt;}
.y14e{bottom:101.035582pt;}
.y253{bottom:101.085440pt;}
.y1c5{bottom:101.537991pt;}
.y1f8{bottom:102.430856pt;}
.y1c0{bottom:102.822595pt;}
.y1b6{bottom:103.356339pt;}
.y272{bottom:106.355510pt;}
.yaf{bottom:106.844952pt;}
.yca{bottom:107.281710pt;}
.yb9{bottom:107.459862pt;}
.y232{bottom:107.485427pt;}
.yb5{bottom:107.603533pt;}
.y1fd{bottom:108.472591pt;}
.y6b{bottom:109.471250pt;}
.y1d3{bottom:109.996475pt;}
.y1d1{bottom:111.018730pt;}
.y204{bottom:111.580263pt;}
.y1b7{bottom:111.633892pt;}
.yae{bottom:111.746993pt;}
.y6f{bottom:112.764181pt;}
.y252{bottom:113.245427pt;}
.y1fb{bottom:113.867215pt;}
.y1de{bottom:114.515849pt;}
.y38{bottom:114.845373pt;}
.y202{bottom:115.379172pt;}
.yad{bottom:116.424907pt;}
.y27e{bottom:117.780059pt;}
.y1df{bottom:118.572095pt;}
.y1fa{bottom:118.830954pt;}
.y231{bottom:119.965373pt;}
.y273{bottom:120.597742pt;}
.y76{bottom:120.786747pt;}
.y1b5{bottom:121.865491pt;}
.y258{bottom:121.920000pt;}
.y1c4{bottom:122.055468pt;}
.y1bf{bottom:122.616351pt;}
.y6e{bottom:123.114211pt;}
.y27d{bottom:123.466697pt;}
.y207{bottom:125.391886pt;}
.y251{bottom:125.725373pt;}
.y83{bottom:126.476103pt;}
.y75{bottom:127.682936pt;}
.y27c{bottom:129.153336pt;}
.y85{bottom:130.217285pt;}
.y1d4{bottom:130.921044pt;}
.y37{bottom:131.165373pt;}
.y81{bottom:131.527561pt;}
.y1d2{bottom:131.952346pt;}
.y230{bottom:132.125373pt;}
.y1bb{bottom:132.567509pt;}
.ybe{bottom:133.918240pt;}
.y257{bottom:134.080000pt;}
.y274{bottom:134.788703pt;}
.y7a{bottom:137.326106pt;}
.y250{bottom:137.885373pt;}
.y80{bottom:138.423750pt;}
.y82{bottom:139.147850pt;}
.y200{bottom:139.549157pt;}
.y84{bottom:140.458125pt;}
.y69{bottom:144.159080pt;}
.y72{bottom:144.222295pt;}
.y1b3{bottom:144.228456pt;}
.y1c2{bottom:144.246549pt;}
.y22f{bottom:144.285373pt;}
.y1b9{bottom:144.970269pt;}
.y1d6{bottom:145.332130pt;}
.y1d0{bottom:146.055850pt;}
.y1bd{bottom:146.417710pt;}
.y36{bottom:147.165373pt;}
.y1f9{bottom:148.698548pt;}
.y68{bottom:149.503626pt;}
.y24f{bottom:150.045373pt;}
.y73{bottom:150.411625pt;}
.y1ff{bottom:151.634165pt;}
.y67{bottom:154.422908pt;}
.y1fc{bottom:154.438806pt;}
.y1b4{bottom:154.487194pt;}
.y1c3{bottom:154.505287pt;}
.y1be{bottom:154.668124pt;}
.y1ba{bottom:155.229008pt;}
.y1d5{bottom:155.590868pt;}
.y1cf{bottom:156.314589pt;}
.y1bc{bottom:156.667402pt;}
.y22e{bottom:156.765373pt;}
.ya8{bottom:158.951405pt;}
.y66{bottom:159.439885pt;}
.y1e3{bottom:159.828862pt;}
.y9a{bottom:160.681199pt;}
.y96{bottom:161.031755pt;}
.y24e{bottom:162.525373pt;}
.y35{bottom:163.165373pt;}
.y65{bottom:164.341926pt;}
.y1f7{bottom:164.579419pt;}
.y1fe{bottom:165.020978pt;}
.ya7{bottom:165.370607pt;}
.y99{bottom:165.571746pt;}
.yc9{bottom:166.221137pt;}
.y22d{bottom:168.925373pt;}
.y64{bottom:169.019841pt;}
.y6d{bottom:169.755434pt;}
.y98{bottom:170.100244pt;}
.ya6{bottom:171.071457pt;}
.y6a{bottom:171.801303pt;}
.yb2{bottom:174.329906pt;}
.y24d{bottom:174.685373pt;}
.y97{bottom:174.887348pt;}
.ya5{bottom:177.536634pt;}
.y34{bottom:179.165373pt;}
.y6c{bottom:180.105464pt;}
.y22c{bottom:181.085373pt;}
.ybd{bottom:181.760549pt;}
.y114{bottom:182.045373pt;}
.ya4{bottom:183.197255pt;}
.y13b{bottom:183.965373pt;}
.y9e{bottom:184.381101pt;}
.y94{bottom:185.938491pt;}
.y24c{bottom:186.845373pt;}
.y1c6{bottom:186.918921pt;}
.ya3{bottom:189.041775pt;}
.y9d{bottom:191.277290pt;}
.y74{bottom:192.196782pt;}
.y77{bottom:192.581819pt;}
.y93{bottom:192.834679pt;}
.y22b{bottom:193.565373pt;}
.ybf{bottom:194.547233pt;}
.y33{bottom:195.485373pt;}
.ya2{bottom:195.558674pt;}
.y113{bottom:198.045373pt;}
.y9c{bottom:198.173479pt;}
.y24b{bottom:199.325373pt;}
.y13a{bottom:200.285373pt;}
.ya1{bottom:202.426129pt;}
.y22a{bottom:205.725373pt;}
.ya0{bottom:207.776422pt;}
.yc8{bottom:210.540644pt;}
.yc7{bottom:211.460136pt;}
.y32{bottom:211.485373pt;}
.yc2{bottom:211.540591pt;}
.yb1{bottom:212.011831pt;}
.yc5{bottom:212.488817pt;}
.y9f{bottom:213.477271pt;}
.y112{bottom:214.045373pt;}
.y139{bottom:216.285373pt;}
.ybc{bottom:222.413582pt;}
.y62{bottom:222.787126pt;}
.y4d{bottom:222.994012pt;}
.y24a{bottom:223.645373pt;}
.y229{bottom:224.285373pt;}
.y95{bottom:225.919145pt;}
.y31{bottom:227.485373pt;}
.y5c{bottom:227.930533pt;}
.y5d{bottom:228.114432pt;}
.y4c{bottom:229.970656pt;}
.y111{bottom:230.365373pt;}
.y138{bottom:232.285373pt;}
.y61{bottom:232.562474pt;}
.y48{bottom:233.361282pt;}
.y5b{bottom:233.522193pt;}
.y9b{bottom:235.516341pt;}
.y249{bottom:236.125373pt;}
.y46{bottom:237.889779pt;}
.y5a{bottom:238.406994pt;}
.y91{bottom:241.429823pt;}
.y63{bottom:242.946985pt;}
.y45{bottom:243.234326pt;}
.y59{bottom:243.291794pt;}
.yc6{bottom:243.774527pt;}
.y30{bottom:243.805373pt;}
.yc0{bottom:245.504321pt;}
.y110{bottom:246.365373pt;}
.y58{bottom:248.182341pt;}
.y248{bottom:248.285373pt;}
.y44{bottom:248.475429pt;}
.y137{bottom:248.605373pt;}
.y90{bottom:251.549980pt;}
.y57{bottom:253.067142pt;}
.y47{bottom:253.722280pt;}
.y228{bottom:255.965373pt;}
.y56{bottom:257.957689pt;}
.y8b{bottom:258.233536pt;}
.y2f{bottom:259.805373pt;}
.y247{bottom:260.445373pt;}
.yc4{bottom:260.865582pt;}
.y10f{bottom:262.365373pt;}
.y55{bottom:262.842489pt;}
.y136{bottom:264.605373pt;}
.y8a{bottom:265.129725pt;}
.y54{bottom:267.727290pt;}
.y8e{bottom:268.669769pt;}
.yc1{bottom:270.928271pt;}
.y1ab{bottom:271.965373pt;}
.y8f{bottom:272.071889pt;}
.y53{bottom:272.617837pt;}
.y246{bottom:272.925373pt;}
.y18f{bottom:274.525373pt;}
.y2e{bottom:275.805373pt;}
.y52{bottom:277.502637pt;}
.y60{bottom:277.973877pt;}
.y10e{bottom:278.365373pt;}
.y135{bottom:280.605373pt;}
.y92{bottom:281.232326pt;}
.yc3{bottom:281.588629pt;}
.y89{bottom:281.651844pt;}
.y51{bottom:282.387438pt;}
.y245{bottom:285.085373pt;}
.y43{bottom:286.283784pt;}
.y50{bottom:287.341200pt;}
.y1aa{bottom:287.965373pt;}
.y41{bottom:288.421603pt;}
.y4b{bottom:288.818134pt;}
.y8d{bottom:289.387069pt;}
.y18e{bottom:290.525373pt;}
.y2d{bottom:292.125373pt;}
.y4f{bottom:292.226000pt;}
.y49{bottom:292.237494pt;}
.ybb{bottom:293.904073pt;}
.y10d{bottom:294.685373pt;}
.y42{bottom:295.605133pt;}
.y4a{bottom:295.789031pt;}
.y134{bottom:296.925373pt;}
.y4e{bottom:297.053333pt;}
.y244{bottom:297.245373pt;}
.y40{bottom:298.196951pt;}
.y88{bottom:301.363451pt;}
.yaa{bottom:303.489775pt;}
.y1a9{bottom:303.965373pt;}
.yb4{bottom:304.202382pt;}
.y227{bottom:304.285373pt;}
.y18d{bottom:306.845373pt;}
.yac{bottom:307.564274pt;}
.y2c{bottom:308.125373pt;}
.y5f{bottom:308.219412pt;}
.yb0{bottom:308.230905pt;}
.y8c{bottom:308.937765pt;}
.y243{bottom:309.725373pt;}
.ya9{bottom:310.385964pt;}
.y10c{bottom:310.685373pt;}
.yb3{bottom:311.098570pt;}
.y5e{bottom:311.380165pt;}
.y133{bottom:312.925373pt;}
.yab{bottom:320.109590pt;}
.y1a8{bottom:320.285373pt;}
.y242{bottom:321.885373pt;}
.y18c{bottom:322.845373pt;}
.y2b{bottom:324.125373pt;}
.y10b{bottom:326.685373pt;}
.y132{bottom:328.925373pt;}
.y241{bottom:334.045373pt;}
.y1a7{bottom:336.285373pt;}
.y18b{bottom:338.845373pt;}
.y2a{bottom:340.445373pt;}
.y226{bottom:341.405507pt;}
.y10a{bottom:343.005373pt;}
.y131{bottom:344.925373pt;}
.y240{bottom:346.205373pt;}
.y1a6{bottom:352.285373pt;}
.y18a{bottom:355.165373pt;}
.y29{bottom:356.445373pt;}
.y23f{bottom:358.685373pt;}
.y109{bottom:359.005373pt;}
.y130{bottom:361.245373pt;}
.y1a5{bottom:368.605373pt;}
.y23e{bottom:370.845373pt;}
.y189{bottom:371.165373pt;}
.y28{bottom:372.445373pt;}
.y225{bottom:373.085373pt;}
.y108{bottom:375.005373pt;}
.y12f{bottom:377.245373pt;}
.y23d{bottom:383.005373pt;}
.y1a4{bottom:384.605373pt;}
.y27{bottom:388.445373pt;}
.y224{bottom:389.085373pt;}
.y188{bottom:390.685373pt;}
.y107{bottom:391.325373pt;}
.y12e{bottom:393.245373pt;}
.y23c{bottom:395.485373pt;}
.y1a3{bottom:400.605373pt;}
.y26{bottom:404.765373pt;}
.y223{bottom:405.405507pt;}
.y106{bottom:407.325373pt;}
.y23b{bottom:407.645373pt;}
.y12d{bottom:409.565373pt;}
.y187{bottom:414.685373pt;}
.y1a2{bottom:416.605373pt;}
.y23a{bottom:419.805373pt;}
.y25{bottom:420.765373pt;}
.y222{bottom:421.405507pt;}
.y105{bottom:423.325373pt;}
.y12c{bottom:425.565373pt;}
.y186{bottom:430.685373pt;}
.y239{bottom:432.285373pt;}
.y1a1{bottom:432.925373pt;}
.y24{bottom:436.765373pt;}
.y221{bottom:437.405507pt;}
.y104{bottom:439.645373pt;}
.y238{bottom:444.445373pt;}
.y12b{bottom:445.085373pt;}
.y185{bottom:446.685373pt;}
.y1a0{bottom:448.925373pt;}
.y23{bottom:453.085373pt;}
.y220{bottom:453.405507pt;}
.y103{bottom:455.645373pt;}
.y237{bottom:456.605373pt;}
.y184{bottom:463.005373pt;}
.y19f{bottom:464.925373pt;}
.y22{bottom:469.085373pt;}
.y21f{bottom:469.725373pt;}
.y102{bottom:471.645373pt;}
.y183{bottom:479.005373pt;}
.y19e{bottom:481.245373pt;}
.y21{bottom:485.085373pt;}
.y21e{bottom:485.725373pt;}
.y101{bottom:487.645373pt;}
.y182{bottom:495.005373pt;}
.y19d{bottom:497.245373pt;}
.y12a{bottom:501.085373pt;}
.y20{bottom:501.405373pt;}
.y21d{bottom:501.725373pt;}
.y100{bottom:503.965373pt;}
.y293{bottom:506.222667pt;}
.y181{bottom:511.325373pt;}
.y19c{bottom:513.245373pt;}
.y1f{bottom:517.405373pt;}
.y285{bottom:518.702667pt;}
.yff{bottom:519.965373pt;}
.y21c{bottom:522.845373pt;}
.y180{bottom:527.325373pt;}
.y19b{bottom:529.565373pt;}
.y1e{bottom:533.405373pt;}
.yfe{bottom:535.965373pt;}
.y17f{bottom:543.325373pt;}
.y129{bottom:549.405373pt;}
.y1d{bottom:549.725373pt;}
.y19a{bottom:550.365373pt;}
.y21b{bottom:554.525373pt;}
.y17e{bottom:559.325373pt;}
.y1c{bottom:565.725373pt;}
.yfa{bottom:567.005373pt;}
.yfb{bottom:568.622667pt;}
.y21a{bottom:570.845373pt;}
.y17d{bottom:575.645373pt;}
.y1b{bottom:581.725373pt;}
.y199{bottom:582.365373pt;}
.y219{bottom:586.845373pt;}
.yf9{bottom:591.645373pt;}
.y1a{bottom:597.725373pt;}
.y198{bottom:598.365373pt;}
.y218{bottom:602.845373pt;}
.yf8{bottom:607.645373pt;}
.y3a{bottom:613.102667pt;}
.y128{bottom:613.725373pt;}
.y19{bottom:614.045373pt;}
.y197{bottom:614.365373pt;}
.y217{bottom:619.165373pt;}
.yf7{bottom:623.965373pt;}
.y127{bottom:630.045373pt;}
.y196{bottom:630.365373pt;}
.y18{bottom:634.845373pt;}
.y216{bottom:635.165373pt;}
.yf6{bottom:639.965373pt;}
.y126{bottom:646.045373pt;}
.y195{bottom:646.685373pt;}
.y215{bottom:651.165373pt;}
.yf5{bottom:655.965373pt;}
.y125{bottom:662.045373pt;}
.y282{bottom:662.062667pt;}
.y194{bottom:662.685373pt;}
.y17{bottom:666.205373pt;}
.y214{bottom:667.165507pt;}
.yf4{bottom:672.285373pt;}
.y267{bottom:674.862667pt;}
.y269{bottom:675.426400pt;}
.y193{bottom:678.685373pt;}
.y16{bottom:680.925373pt;}
.y213{bottom:683.485373pt;}
.yf3{bottom:688.285373pt;}
.y120{bottom:693.085507pt;}
.y121{bottom:694.702667pt;}
.y192{bottom:695.005373pt;}
.y15{bottom:695.325507pt;}
.y212{bottom:699.485373pt;}
.yf2{bottom:704.285373pt;}
.y14{bottom:710.045373pt;}
.y191{bottom:711.005373pt;}
.y211{bottom:715.485373pt;}
.y11f{bottom:720.285373pt;}
.yf1{bottom:720.605373pt;}
.y13{bottom:724.125373pt;}
.y190{bottom:727.005373pt;}
.y210{bottom:731.805373pt;}
.yf0{bottom:736.605373pt;}
.y12{bottom:737.885373pt;}
.y20f{bottom:747.805373pt;}
.y11{bottom:751.645373pt;}
.yef{bottom:752.605373pt;}
.y20e{bottom:763.805373pt;}
.y10{bottom:765.405507pt;}
.y11e{bottom:768.605373pt;}
.yee{bottom:768.925373pt;}
.y17c{bottom:772.445373pt;}
.y1d7{bottom:772.462667pt;}
.yf{bottom:779.165507pt;}
.y20d{bottom:780.125373pt;}
.yed{bottom:784.925373pt;}
.y1ac{bottom:793.582800pt;}
.ye{bottom:794.845373pt;}
.y17b{bottom:796.125373pt;}
.yec{bottom:800.925373pt;}
.yd{bottom:810.205373pt;}
.y17a{bottom:812.125373pt;}
.yeb{bottom:816.925373pt;}
.y179{bottom:828.445373pt;}
.yc{bottom:831.645373pt;}
.y11d{bottom:833.245507pt;}
.yea{bottom:836.765373pt;}
.y178{bottom:844.445373pt;}
.y256{bottom:844.462667pt;}
.yb{bottom:847.005373pt;}
.y11c{bottom:849.245507pt;}
.ya{bottom:856.285373pt;}
.ye9{bottom:860.445373pt;}
.y11b{bottom:865.245507pt;}
.y262{bottom:866.222800pt;}
.y9{bottom:871.645373pt;}
.ye8{bottom:876.445373pt;}
.y260{bottom:878.382667pt;}
.y11a{bottom:881.245507pt;}
.y8{bottom:888.605373pt;}
.ye7{bottom:892.765373pt;}
.y119{bottom:897.565373pt;}
.y25d{bottom:903.022667pt;}
.y7{bottom:905.245507pt;}
.ye6{bottom:908.765373pt;}
.y6{bottom:922.525373pt;}
.ye5{bottom:924.765373pt;}
.y25b{bottom:927.662667pt;}
.y115{bottom:929.885373pt;}
.y116{bottom:930.222800pt;}
.y259{bottom:940.782667pt;}
.ye4{bottom:941.085507pt;}
.y5{bottom:948.445373pt;}
.ye3{bottom:957.085507pt;}
.y2{bottom:998.045373pt;}
.y3{bottom:1011.502667pt;}
.h3c{height:12.159993pt;}
.h41{height:12.541406pt;}
.h12{height:13.199603pt;}
.h3{height:15.360027pt;}
.he{height:16.499802pt;}
.h15{height:16.581779pt;}
.h10{height:16.690617pt;}
.h11{height:18.149902pt;}
.h3f{height:18.812015pt;}
.h48{height:19.057680pt;}
.h49{height:19.278000pt;}
.h2d{height:19.294307pt;}
.h13{height:19.800001pt;}
.h17{height:20.028980pt;}
.h3b{height:20.160000pt;}
.h43{height:20.577480pt;}
.h42{height:20.693217pt;}
.h35{height:20.816564pt;}
.h38{height:21.163721pt;}
.h46{height:21.420000pt;}
.h2f{height:21.874787pt;}
.h37{height:22.193008pt;}
.h26{height:22.927992pt;}
.h16{height:23.366142pt;}
.h8{height:24.013125pt;}
.h2e{height:24.118321pt;}
.h3d{height:24.639973pt;}
.h31{height:24.769670pt;}
.h36{height:24.979997pt;}
.h39{height:26.310097pt;}
.hf{height:27.510717pt;}
.h28{height:27.513920pt;}
.h47{height:27.594000pt;}
.h14{height:27.753605pt;}
.h2{height:29.349375pt;}
.h4b{height:30.362500pt;}
.h30{height:32.066487pt;}
.h9{height:32.097500pt;}
.h29{height:32.098198pt;}
.ha{height:32.319987pt;}
.h1d{height:35.595901pt;}
.h19{height:36.438750pt;}
.h4{height:36.464375pt;}
.h21{height:37.510162pt;}
.h23{height:37.555648pt;}
.h1a{height:38.001875pt;}
.h20{height:38.669541pt;}
.h24{height:38.718772pt;}
.h1b{height:38.720013pt;}
.h22{height:41.279947pt;}
.h1e{height:42.559973pt;}
.h27{height:48.309868pt;}
.h2b{height:48.333125pt;}
.h7{height:52.671875pt;}
.h6{height:52.672408pt;}
.h5{height:60.725000pt;}
.hc{height:67.520000pt;}
.h1c{height:68.197732pt;}
.h1f{height:69.596562pt;}
.hb{height:96.052500pt;}
.h25{height:111.999973pt;}
.h45{height:112.000000pt;}
.h4a{height:124.480027pt;}
.h2a{height:136.640000pt;}
.h3a{height:144.000000pt;}
.h40{height:147.276267pt;}
.h3e{height:147.840000pt;}
.h44{height:160.640000pt;}
.h34{height:174.400000pt;}
.h33{height:196.480000pt;}
.h2c{height:197.120000pt;}
.h32{height:218.240000pt;}
.hd{height:328.000000pt;}
.h18{height:350.400000pt;}
.h1{height:1018.205467pt;}
.h0{height:1056.000000pt;}
.w2{width:6.719971pt;}
.w3{width:19.200000pt;}
.w14{width:39.999920pt;}
.w12{width:40.000000pt;}
.w13{width:40.319987pt;}
.w11{width:45.760013pt;}
.w7{width:69.440000pt;}
.w9{width:84.160000pt;}
.w10{width:121.279987pt;}
.w8{width:161.280000pt;}
.w16{width:221.440000pt;}
.we{width:265.280000pt;}
.w15{width:293.440000pt;}
.wc{width:304.000000pt;}
.wf{width:328.320000pt;}
.w17{width:333.440000pt;}
.wd{width:336.000000pt;}
.w5{width:341.440000pt;}
.w4{width:347.840000pt;}
.w6{width:359.680000pt;}
.wa{width:592.000000pt;}
.wb{width:683.840000pt;}
.w1{width:778.205467pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x88{left:1.020134pt;}
.x57{left:2.044838pt;}
.x5a{left:2.998956pt;}
.x77{left:3.907921pt;}
.xb2{left:6.170356pt;}
.x51{left:7.812791pt;}
.x55{left:9.599867pt;}
.xa6{left:10.618800pt;}
.x87{left:12.126449pt;}
.xa7{left:13.626533pt;}
.xa0{left:14.573200pt;}
.x6f{left:17.388550pt;}
.x1{left:18.897333pt;}
.xac{left:20.039507pt;}
.xa8{left:21.786800pt;}
.x13{left:23.066733pt;}
.x91{left:24.524673pt;}
.x4c{left:25.644026pt;}
.xa4{left:27.089467pt;}
.xad{left:28.642984pt;}
.x1d{left:29.926164pt;}
.x1c{left:31.025546pt;}
.x22{left:33.707120pt;}
.x4b{left:34.813392pt;}
.xaa{left:36.641303pt;}
.x7c{left:38.581931pt;}
.x4d{left:39.810271pt;}
.x4a{left:40.907357pt;}
.xaf{left:41.825403pt;}
.x2{left:43.839840pt;}
.x8{left:46.089840pt;}
.x97{left:48.329735pt;}
.x4{left:49.467440pt;}
.x12{left:50.897333pt;}
.xa5{left:51.941067pt;}
.x56{left:53.439773pt;}
.x64{left:54.853065pt;}
.x83{left:55.941442pt;}
.xc{left:57.306640pt;}
.x98{left:59.128458pt;}
.x92{left:61.758389pt;}
.xe{left:63.040040pt;}
.x46{left:64.487530pt;}
.x68{left:65.545097pt;}
.x7{left:67.835933pt;}
.x21{left:71.175678pt;}
.x40{left:73.184993pt;}
.x3f{left:74.092055pt;}
.xa{left:75.147440pt;}
.x96{left:77.777333pt;}
.x48{left:79.006266pt;}
.x99{left:85.781469pt;}
.x93{left:87.716183pt;}
.x8c{left:89.753045pt;}
.x15{left:92.962394pt;}
.x42{left:94.397619pt;}
.x71{left:98.626643pt;}
.x16{left:100.620754pt;}
.x84{left:103.192247pt;}
.x90{left:105.802481pt;}
.x7d{left:106.946341pt;}
.x5b{left:108.047553pt;}
.x47{left:112.538863pt;}
.xae{left:114.586303pt;}
.x7e{left:117.945655pt;}
.x5c{left:118.918959pt;}
.x25{left:122.281170pt;}
.x20{left:123.320273pt;}
.x23{left:126.506472pt;}
.x24{left:127.534094pt;}
.x43{left:129.979717pt;}
.x44{left:131.219751pt;}
.x72{left:135.355461pt;}
.x73{left:136.276083pt;}
.x63{left:140.110674pt;}
.x49{left:142.603956pt;}
.x9d{left:144.278267pt;}
.x9{left:146.605733pt;}
.x8d{left:147.823448pt;}
.x9b{left:150.233600pt;}
.x28{left:151.186601pt;}
.x39{left:156.984910pt;}
.x27{left:158.477545pt;}
.x45{left:160.010365pt;}
.x1a{left:161.359476pt;}
.xd{left:162.417333pt;}
.x7f{left:165.044120pt;}
.x95{left:165.967666pt;}
.x18{left:167.123340pt;}
.x26{left:168.283002pt;}
.x1f{left:169.672300pt;}
.x75{left:170.667322pt;}
.x19{left:172.605899pt;}
.x3e{left:174.219092pt;}
.x17{left:175.631354pt;}
.x9c{left:177.463467pt;}
.x4f{left:178.582176pt;}
.x3d{left:180.040365pt;}
.x8f{left:181.152655pt;}
.x74{left:182.139073pt;}
.x76{left:183.267836pt;}
.x7b{left:184.585358pt;}
.x85{left:190.116753pt;}
.x8e{left:193.318942pt;}
.x2c{left:195.890990pt;}
.x4e{left:201.712262pt;}
.x86{left:203.020318pt;}
.x3b{left:204.123440pt;}
.x1e{left:205.587370pt;}
.x94{left:207.863600pt;}
.x52{left:211.207711pt;}
.x81{left:214.237260pt;}
.x5{left:215.676800pt;}
.x3c{left:219.233489pt;}
.x38{left:226.581841pt;}
.x80{left:227.648625pt;}
.x2b{left:228.780606pt;}
.x2f{left:230.336390pt;}
.x37{left:231.702724pt;}
.x2e{left:234.320574pt;}
.x36{left:237.053243pt;}
.x35{left:238.649213pt;}
.x3a{left:240.434633pt;}
.x41{left:242.885997pt;}
.x34{left:244.407336pt;}
.x58{left:246.506533pt;}
.x8b{left:250.000133pt;}
.x33{left:252.054215pt;}
.x82{left:257.953413pt;}
.x2a{left:259.741280pt;}
.x66{left:260.680144pt;}
.x29{left:262.290239pt;}
.xab{left:263.492797pt;}
.x2d{left:270.637508pt;}
.x32{left:272.916645pt;}
.x31{left:274.191125pt;}
.x50{left:275.264673pt;}
.x30{left:277.813633pt;}
.x61{left:291.589030pt;}
.x9a{left:300.666800pt;}
.x1b{left:304.830308pt;}
.x65{left:306.951410pt;}
.x62{left:309.144892pt;}
.x89{left:313.599867pt;}
.xb0{left:314.666933pt;}
.xb{left:320.188400pt;}
.x70{left:327.101025pt;}
.x79{left:342.000133pt;}
.x54{left:350.933200pt;}
.x67{left:376.630493pt;}
.x6{left:389.439733pt;}
.x11{left:399.040000pt;}
.x60{left:408.640000pt;}
.x53{left:410.897333pt;}
.x10{left:412.506800pt;}
.x14{left:420.497333pt;}
.x8a{left:422.737333pt;}
.x6a{left:427.344761pt;}
.xf{left:430.277067pt;}
.x6d{left:441.226141pt;}
.xa9{left:444.177333pt;}
.x69{left:448.759231pt;}
.xb1{left:478.737333pt;}
.x7a{left:486.876000pt;}
.x6c{left:495.807022pt;}
.x59{left:505.297333pt;}
.x6e{left:517.629767pt;}
.x6b{left:524.098138pt;}
.x5e{left:544.017333pt;}
.x9e{left:548.817333pt;}
.x9f{left:594.577333pt;}
.x5f{left:609.040000pt;}
.xa1{left:634.577333pt;}
.x78{left:638.000133pt;}
.x5d{left:647.706667pt;}
.xa2{left:674.897333pt;}
.xa3{left:714.897333pt;}
.x3{left:747.217333pt;}
}

