
    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_8eada1ded4eed5c293ce1cc1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5c50566070fcc8931c1b9fe4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4b0e1f8d1a95c750f6fceb58.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_222e10aaf2be1a153b953cd6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_0f05b4aa665edfd391bb2611.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_bfc227f91d82eeff2e20fa44.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_30f512bf89ad56a61b89704a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_209e8d31d5c54c68e1a2eea8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_eaeac072e23d952c8fee8dc9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_a99ee336359cc4673a21b003.woff')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_18adea6f944a6b3da15fa61c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_4b0b24f29ce576091e47a40e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.281250;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_894f6e0dcc1ea552d286efda.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_82c5f8ede8e91bcd90a45a50.woff')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_71dbc5d0ed12e86107473896.woff')format("woff");}.fff{font-family:fff;line-height:1.284668;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_bec4d0b49fc758949ccbebac.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_9a860fcf79ec419339ae6d5c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.281250;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_7372f8d64cb96bea856c7572.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_003661cb276b4770b280693d.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_e652dff65a9158798d3c2a42.woff')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_31cc761806c6e375d36d93d2.woff')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_2ff52079469ea143ca80d5bd.woff')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_b93d3c62f7149a42cf7f315f.woff')format("woff");}.ff17{font-family:ff17;line-height:1.281250;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_cd3db2cfa0499261237abefa.woff')format("woff");}.ff18{font-family:ff18;line-height:1.284668;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_5f619cf95e3b4d2bb7bb0456.woff')format("woff");}.ff19{font-family:ff19;line-height:1.284180;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_cdee0806cd2e5d889ee404ca.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;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_d9269848f2a42c19ced4a7ba.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;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_68ca5336aba24c75d9a476f5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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_cf8ef2eb2eba0a6e986aab24.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;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_8f3916911c6e62cf254ce1a3.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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_5e515b68e2df6712c992b5a5.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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_e91ec9b99723c7f3c97622bf.woff')format("woff");}.ff20{font-family:ff20;line-height:1.311035;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_9a7dfcd353c2c3930248c2cd.woff')format("woff");}.ff21{font-family:ff21;line-height:1.284180;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_c6a2cd0135301f4fad2050b6.woff')format("woff");}.ff22{font-family:ff22;line-height:1.284668;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_0d82c76c0fd0736f497348df.woff')format("woff");}.ff23{font-family:ff23;line-height:1.311035;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_b2aa0dc38ce8d46076135d8f.woff')format("woff");}.ff24{font-family:ff24;line-height:1.284668;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_5d37417ebf21ea25f26b78be.woff')format("woff");}.ff25{font-family:ff25;line-height:1.284180;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_aa29f5ac8f2d3e87c2e03dc3.woff')format("woff");}.ff26{font-family:ff26;line-height:1.284668;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_7c7177b5db4d134b0c52abc0.woff')format("woff");}.ff27{font-family:ff27;line-height:1.284180;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_127a1b8b36b347b197a9342a.woff')format("woff");}.ff28{font-family:ff28;line-height:1.311035;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_90c7d5f835a759e063b5e607.woff')format("woff");}.ff29{font-family:ff29;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_1bceca4d61adf9511a7e5589.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_33a77c63b54df9375626c931.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d7b664cfe67a2e409c82e5e3.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_c07cddabb3199bb57bf663cd.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_995d532239b252fa4b43c8f5.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_9e7f613a90e270cfa5c8b53f.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;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;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v2{vertical-align:-38.880000px;}
.v1{vertical-align:-15.120000px;}
.v3{vertical-align:-9.720000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:56.160000px;}
.ls3b{letter-spacing:-24.000000px;}
.ls32{letter-spacing:-21.240000px;}
.lsb1{letter-spacing:-10.020000px;}
.lsaf{letter-spacing:-8.160000px;}
.ls91{letter-spacing:-7.920000px;}
.ls97{letter-spacing:-7.560000px;}
.ls8e{letter-spacing:-7.380000px;}
.ls92{letter-spacing:-6.900000px;}
.ls4c{letter-spacing:-6.720000px;}
.lsad{letter-spacing:-6.360000px;}
.ls7d{letter-spacing:-6.240000px;}
.lsa4{letter-spacing:-6.180000px;}
.lsa6{letter-spacing:-6.060000px;}
.lsac{letter-spacing:-6.000000px;}
.ls7b{letter-spacing:-5.820000px;}
.ls90{letter-spacing:-5.760000px;}
.lsa9{letter-spacing:-5.700000px;}
.lsaa{letter-spacing:-5.640000px;}
.lsa8{letter-spacing:-5.520000px;}
.lsa5{letter-spacing:-5.460000px;}
.ls49{letter-spacing:-5.280000px;}
.lsae{letter-spacing:-5.160000px;}
.ls57{letter-spacing:-5.100000px;}
.lsa3{letter-spacing:-5.040000px;}
.ls9f{letter-spacing:-4.980000px;}
.ls96{letter-spacing:-4.860000px;}
.lsa2{letter-spacing:-4.740000px;}
.ls7a{letter-spacing:-4.680000px;}
.ls94{letter-spacing:-4.620000px;}
.lsb0{letter-spacing:-4.440000px;}
.ls4a{letter-spacing:-4.320000px;}
.ls58{letter-spacing:-4.140000px;}
.ls95{letter-spacing:-4.080000px;}
.lsa0{letter-spacing:-4.020000px;}
.ls9d{letter-spacing:-3.960000px;}
.lsa7{letter-spacing:-3.780000px;}
.ls8f{letter-spacing:-3.660000px;}
.ls53{letter-spacing:-3.600000px;}
.ls4e{letter-spacing:-3.360000px;}
.ls43{letter-spacing:-3.240000px;}
.ls3e{letter-spacing:-3.180000px;}
.ls7c{letter-spacing:-3.120000px;}
.ls93{letter-spacing:-3.060000px;}
.ls7f{letter-spacing:-3.000000px;}
.ls7e{letter-spacing:-2.880000px;}
.ls3d{letter-spacing:-2.760000px;}
.ls60{letter-spacing:-2.700000px;}
.lsa1{letter-spacing:-2.640000px;}
.ls35{letter-spacing:-2.520000px;}
.ls3c{letter-spacing:-2.460000px;}
.ls4d{letter-spacing:-2.280000px;}
.ls63{letter-spacing:-2.160000px;}
.lsab{letter-spacing:-2.040000px;}
.ls45{letter-spacing:-1.980000px;}
.ls5d{letter-spacing:-1.920000px;}
.ls9e{letter-spacing:-1.860000px;}
.ls52{letter-spacing:-1.800000px;}
.ls34{letter-spacing:-1.740000px;}
.ls51{letter-spacing:-1.680000px;}
.ls3a{letter-spacing:-1.620000px;}
.ls5b{letter-spacing:-1.560000px;}
.ls36{letter-spacing:-1.500000px;}
.ls55{letter-spacing:-1.440000px;}
.ls39{letter-spacing:-1.380000px;}
.ls5a{letter-spacing:-1.320000px;}
.ls38{letter-spacing:-1.260000px;}
.ls56{letter-spacing:-1.200000px;}
.ls8b{letter-spacing:-1.140000px;}
.ls37{letter-spacing:-1.080000px;}
.ls8d{letter-spacing:-1.020000px;}
.ls48{letter-spacing:-0.960000px;}
.ls50{letter-spacing:-0.900000px;}
.ls3f{letter-spacing:-0.840000px;}
.ls5f{letter-spacing:-0.780000px;}
.ls4b{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.660000px;}
.ls47{letter-spacing:-0.600000px;}
.ls40{letter-spacing:-0.540000px;}
.ls42{letter-spacing:-0.480000px;}
.ls41{letter-spacing:-0.420000px;}
.ls4f{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.300000px;}
.ls5c{letter-spacing:-0.240000px;}
.ls59{letter-spacing:-0.180000px;}
.ls5e{letter-spacing:-0.120000px;}
.ls31{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.720000px;}
.ls70{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.960000px;}
.ls6b{letter-spacing:1.020000px;}
.ls0{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.140000px;}
.ls2e{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.260000px;}
.ls2d{letter-spacing:1.320000px;}
.ls12{letter-spacing:1.380000px;}
.ls11{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.560000px;}
.ls17{letter-spacing:1.620000px;}
.ls2b{letter-spacing:1.680000px;}
.ls24{letter-spacing:1.740000px;}
.ls13{letter-spacing:1.800000px;}
.ls2c{letter-spacing:1.860000px;}
.ls29{letter-spacing:1.920000px;}
.ls7{letter-spacing:1.980000px;}
.ls8{letter-spacing:2.040000px;}
.ls2a{letter-spacing:2.100000px;}
.ls9{letter-spacing:2.160000px;}
.ls2f{letter-spacing:2.220000px;}
.lse{letter-spacing:2.280000px;}
.ls20{letter-spacing:2.340000px;}
.ls6{letter-spacing:2.400000px;}
.lsa{letter-spacing:2.460000px;}
.ls15{letter-spacing:2.520000px;}
.ls4{letter-spacing:2.580000px;}
.ls30{letter-spacing:2.640000px;}
.ls3{letter-spacing:2.700000px;}
.ls1a{letter-spacing:2.760000px;}
.lsb{letter-spacing:2.820000px;}
.lsf{letter-spacing:2.880000px;}
.ls1c{letter-spacing:2.940000px;}
.lsc{letter-spacing:3.000000px;}
.ls5{letter-spacing:3.060000px;}
.ls10{letter-spacing:3.120000px;}
.ls8a{letter-spacing:3.180000px;}
.ls1b{letter-spacing:3.240000px;}
.ls9c{letter-spacing:3.300000px;}
.ls61{letter-spacing:3.360000px;}
.ls6c{letter-spacing:3.420000px;}
.ls73{letter-spacing:3.480000px;}
.ls1e{letter-spacing:3.540000px;}
.lsd{letter-spacing:3.600000px;}
.ls25{letter-spacing:3.660000px;}
.ls79{letter-spacing:3.720000px;}
.ls62{letter-spacing:3.780000px;}
.ls85{letter-spacing:3.840000px;}
.ls76{letter-spacing:3.900000px;}
.ls69{letter-spacing:3.960000px;}
.ls21{letter-spacing:4.020000px;}
.ls26{letter-spacing:4.080000px;}
.ls6d{letter-spacing:4.140000px;}
.ls27{letter-spacing:4.200000px;}
.ls1{letter-spacing:4.320000px;}
.ls88{letter-spacing:4.380000px;}
.ls66{letter-spacing:4.440000px;}
.ls87{letter-spacing:4.500000px;}
.ls81{letter-spacing:4.560000px;}
.ls28{letter-spacing:4.620000px;}
.ls1d{letter-spacing:4.680000px;}
.ls18{letter-spacing:4.740000px;}
.ls83{letter-spacing:4.860000px;}
.ls89{letter-spacing:4.980000px;}
.ls6f{letter-spacing:5.040000px;}
.ls68{letter-spacing:5.100000px;}
.ls9b{letter-spacing:5.160000px;}
.ls67{letter-spacing:5.400000px;}
.ls8c{letter-spacing:5.640000px;}
.ls99{letter-spacing:5.940000px;}
.ls54{letter-spacing:6.000000px;}
.ls9a{letter-spacing:6.180000px;}
.ls98{letter-spacing:6.300000px;}
.ls78{letter-spacing:6.360000px;}
.ls72{letter-spacing:6.480000px;}
.ls80{letter-spacing:6.660000px;}
.ls6e{letter-spacing:6.840000px;}
.ls22{letter-spacing:6.960000px;}
.ls1f{letter-spacing:7.020000px;}
.ls86{letter-spacing:7.200000px;}
.ls77{letter-spacing:7.440000px;}
.ls84{letter-spacing:7.620000px;}
.ls74{letter-spacing:7.800000px;}
.ls82{letter-spacing:7.860000px;}
.ls64{letter-spacing:7.920000px;}
.ls23{letter-spacing:8.040000px;}
.ls75{letter-spacing:8.160000px;}
.ls33{letter-spacing:13.440000px;}
.lsb2{letter-spacing:62.400000px;}
.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:0.000000px;}
._2{margin-left:-108.560329px;}
._65{margin-left:-22.154007px;}
._7f{margin-left:-20.690863px;}
._80{margin-left:-18.243690px;}
._1c{margin-left:-16.143111px;}
._18{margin-left:-14.692705px;}
._2e{margin-left:-13.389398px;}
._16{margin-left:-11.993899px;}
._9{margin-left:-10.469867px;}
._6{margin-left:-8.947718px;}
._1a{margin-left:-7.728815px;}
._7{margin-left:-6.554122px;}
._7d{margin-left:-5.526891px;}
._5{margin-left:-4.491752px;}
._6a{margin-left:-3.332779px;}
._8{margin-left:-2.328726px;}
._14{margin-left:-1.169249px;}
._19{width:1.578259px;}
._11{width:2.780747px;}
._17{width:4.042491px;}
._15{width:5.167579px;}
._d{width:7.032733px;}
._a{width:8.660747px;}
._b{width:10.261756px;}
._c{width:11.922853px;}
._1b{width:12.972595px;}
._4{width:13.995524px;}
._e{width:15.137678px;}
._12{width:16.704126px;}
._f{width:17.787771px;}
._10{width:19.728505px;}
._13{width:21.607707px;}
._2a{width:23.150108px;}
._2c{width:24.626223px;}
._28{width:26.057501px;}
._30{width:27.627594px;}
._2b{width:29.333994px;}
._38{width:30.920552px;}
._1f{width:32.114646px;}
._29{width:34.093554px;}
._2f{width:35.222514px;}
._26{width:36.223074px;}
._27{width:37.224347px;}
._1e{width:38.346493px;}
._1d{width:39.469358px;}
._2d{width:40.521827px;}
._22{width:41.790088px;}
._25{width:43.227789px;}
._24{width:44.903773px;}
._69{width:46.766959px;}
._43{width:48.286694px;}
._32{width:49.822105px;}
._4f{width:51.030111px;}
._67{width:52.062852px;}
._33{width:54.708454px;}
._23{width:56.242017px;}
._62{width:58.323679px;}
._3a{width:60.293349px;}
._34{width:61.988072px;}
._35{width:63.136301px;}
._20{width:64.523949px;}
._37{width:65.916299px;}
._82{width:66.919090px;}
._39{width:67.938518px;}
._36{width:70.134171px;}
._68{width:71.946781px;}
._77{width:73.809019px;}
._21{width:75.623811px;}
._6d{width:77.756389px;}
._72{width:79.571433px;}
._76{width:83.216804px;}
._71{width:85.245480px;}
._47{width:86.954303px;}
._41{width:88.050168px;}
._45{width:89.175257px;}
._49{width:90.948291px;}
._4d{width:92.210034px;}
._4c{width:95.890618px;}
._73{width:98.441904px;}
._6e{width:100.747298px;}
._5f{width:103.328028px;}
._5b{width:105.937934px;}
._6f{width:111.953244px;}
._3f{width:115.947635px;}
._5e{width:120.231905px;}
._56{width:122.007227px;}
._51{width:123.032354px;}
._75{width:125.634240px;}
._4e{width:137.749834px;}
._54{width:139.006986px;}
._46{width:140.579421px;}
._4b{width:141.760296px;}
._4a{width:142.849190px;}
._42{width:143.927381px;}
._48{width:145.278645px;}
._70{width:147.507425px;}
._63{width:148.746828px;}
._44{width:161.487865px;}
._40{width:162.964613px;}
._66{width:164.142264px;}
._3e{width:165.538137px;}
._58{width:166.572560px;}
._57{width:169.266493px;}
._50{width:170.301404px;}
._5d{width:172.458197px;}
._79{width:177.896737px;}
._7e{width:179.047920px;}
._5a{width:194.438653px;}
._59{width:209.100660px;}
._52{width:211.242467px;}
._53{width:214.268532px;}
._5c{width:216.055198px;}
._55{width:218.547635px;}
._78{width:220.109718px;}
._7a{width:226.530000px;}
._64{width:237.967200px;}
._3c{width:258.902716px;}
._3d{width:265.723768px;}
._6c{width:422.568284px;}
._6b{width:439.925531px;}
._61{width:492.830339px;}
._60{width:494.652135px;}
._7b{width:536.343316px;}
._3{width:637.830847px;}
._3b{width:668.273722px;}
._81{width:693.462715px;}
._74{width:778.244880px;}
._31{width:799.844049px;}
._1{width:845.967240px;}
._0{width:1210.836316px;}
._7c{width:1280.566659px;}
.fc0{color:transparent;}
.fs10{font-size:21.600000px;}
.fs20{font-size:23.760000px;}
.fs18{font-size:24.840000px;}
.fs11{font-size:29.160000px;}
.fs1f{font-size:31.320000px;}
.fsb{font-size:32.400000px;}
.fs1a{font-size:35.640000px;}
.fs17{font-size:37.800000px;}
.fs1e{font-size:42.120000px;}
.fs8{font-size:44.280000px;}
.fs12{font-size:45.360000px;}
.fs16{font-size:46.440000px;}
.fs7{font-size:47.520000px;}
.fs13{font-size:49.680000px;}
.fsf{font-size:50.760000px;}
.fs1b{font-size:51.840000px;}
.fs4{font-size:52.920000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:55.080000px;}
.fs3{font-size:56.160000px;}
.fs0{font-size:57.240000px;}
.fsc{font-size:58.320000px;}
.fse{font-size:59.400000px;}
.fs19{font-size:60.480000px;}
.fs14{font-size:61.560000px;}
.fs15{font-size:64.800000px;}
.fsd{font-size:65.880000px;}
.fs1c{font-size:76.680000px;}
.fs9{font-size:84.240000px;}
.fs1d{font-size:92.880000px;}
.fs2{font-size:96.120000px;}
.fs1{font-size:98.280000px;}
.fsa{font-size:228.960000px;}
.y0{bottom:0.000000px;}
.y15a{bottom:68.850000px;}
.y16f{bottom:70.200000px;}
.y3c{bottom:71.280000px;}
.y4b{bottom:72.630000px;}
.yc2{bottom:88.020000px;}
.y8f{bottom:90.990000px;}
.y159{bottom:91.260000px;}
.yf9{bottom:92.340000px;}
.y11c{bottom:92.610000px;}
.y3b{bottom:94.230000px;}
.y4a{bottom:95.850000px;}
.y11b{bottom:102.870000px;}
.y8e{bottom:104.490000px;}
.y158{bottom:104.760000px;}
.y16e{bottom:109.080000px;}
.y3a{bottom:110.430000px;}
.y49{bottom:112.320000px;}
.y11a{bottom:113.400000px;}
.yf8{bottom:115.560000px;}
.y8d{bottom:117.990000px;}
.y16d{bottom:125.820000px;}
.y39{bottom:126.360000px;}
.yf7{bottom:127.440000px;}
.y48{bottom:128.520000px;}
.y8c{bottom:131.760000px;}
.y119{bottom:134.190000px;}
.yf6{bottom:139.320000px;}
.y157{bottom:140.940000px;}
.y16c{bottom:142.560000px;}
.y38{bottom:143.370000px;}
.y118{bottom:144.450000px;}
.y47{bottom:144.990000px;}
.yf2{bottom:151.200000px;}
.y117{bottom:154.710000px;}
.y156{bottom:157.410000px;}
.y16b{bottom:159.030000px;}
.y37{bottom:159.840000px;}
.y46{bottom:161.190000px;}
.yf5{bottom:163.080000px;}
.yf1{bottom:163.350000px;}
.y116{bottom:165.240000px;}
.y155{bottom:173.880000px;}
.yf4{bottom:174.960000px;}
.yf0{bottom:175.230000px;}
.y16a{bottom:175.500000px;}
.y36{bottom:176.580000px;}
.y45{bottom:177.930000px;}
.y8b{bottom:182.250000px;}
.yf3{bottom:186.570000px;}
.yef{bottom:186.840000px;}
.y154{bottom:190.350000px;}
.y169{bottom:191.970000px;}
.y35{bottom:192.510000px;}
.yc1{bottom:195.210000px;}
.y8a{bottom:198.450000px;}
.yee{bottom:198.720000px;}
.y153{bottom:206.820000px;}
.y168{bottom:208.440000px;}
.y34{bottom:209.520000px;}
.y115{bottom:215.190000px;}
.y89{bottom:216.000000px;}
.yed{bottom:222.750000px;}
.y152{bottom:223.020000px;}
.y44{bottom:224.100000px;}
.y167{bottom:224.640000px;}
.y33{bottom:225.990000px;}
.y88{bottom:231.390000px;}
.yec{bottom:235.980000px;}
.y151{bottom:239.490000px;}
.y32{bottom:242.460000px;}
.yc0{bottom:244.620000px;}
.y87{bottom:247.860000px;}
.y43{bottom:249.750000px;}
.y150{bottom:255.690000px;}
.yeb{bottom:261.630000px;}
.y86{bottom:264.330000px;}
.ybf{bottom:271.890000px;}
.y14f{bottom:272.430000px;}
.yea{bottom:275.130000px;}
.y31{bottom:276.480000px;}
.y85{bottom:280.800000px;}
.y14e{bottom:288.360000px;}
.ye9{bottom:289.170000px;}
.y30{bottom:293.490000px;}
.y166{bottom:296.460000px;}
.y84{bottom:296.730000px;}
.y114{bottom:297.540000px;}
.ye8{bottom:302.670000px;}
.y14d{bottom:305.100000px;}
.y2f{bottom:309.960000px;}
.y83{bottom:313.740000px;}
.y113{bottom:314.280000px;}
.ye7{bottom:316.440000px;}
.y41{bottom:319.680000px;}
.y14c{bottom:321.570000px;}
.y2e{bottom:326.430000px;}
.ye6{bottom:329.940000px;}
.y82{bottom:330.210000px;}
.y14b{bottom:337.770000px;}
.ye5{bottom:342.630000px;}
.y2d{bottom:343.170000px;}
.y112{bottom:346.410000px;}
.y81{bottom:346.680000px;}
.y42{bottom:346.950000px;}
.y14a{bottom:354.240000px;}
.ybe{bottom:355.860000px;}
.y2c{bottom:359.100000px;}
.y111{bottom:362.880000px;}
.y80{bottom:363.150000px;}
.y149{bottom:370.170000px;}
.y2b{bottom:375.840000px;}
.y165{bottom:376.920000px;}
.y110{bottom:379.080000px;}
.ye4{bottom:381.240000px;}
.y7f{bottom:381.510000px;}
.y148{bottom:386.640000px;}
.y2a{bottom:392.580000px;}
.y40{bottom:393.390000px;}
.y7e{bottom:396.900000px;}
.ye3{bottom:397.440000px;}
.y164{bottom:402.300000px;}
.ybd{bottom:406.890000px;}
.y29{bottom:408.510000px;}
.y3f{bottom:410.130000px;}
.y7d{bottom:413.370000px;}
.y10f{bottom:413.640000px;}
.y28{bottom:424.710000px;}
.y147{bottom:425.790000px;}
.y3e{bottom:426.330000px;}
.y7c{bottom:429.840000px;}
.y27{bottom:440.910000px;}
.y3d{bottom:442.530000px;}
.y146{bottom:442.800000px;}
.y163{bottom:443.880000px;}
.y7b{bottom:445.770000px;}
.y10e{bottom:446.310000px;}
.ybc{bottom:450.900000px;}
.y78{bottom:452.790000px;}
.y145{bottom:459.270000px;}
.y162{bottom:460.350000px;}
.y7a{bottom:462.240000px;}
.y10d{bottom:462.510000px;}
.ybb{bottom:463.050000px;}
.y77{bottom:464.670000px;}
.yba{bottom:474.930000px;}
.y144{bottom:475.740000px;}
.y76{bottom:476.820000px;}
.y161{bottom:477.090000px;}
.y79{bottom:478.710000px;}
.ye2{bottom:479.250000px;}
.yb9{bottom:487.080000px;}
.y75{bottom:488.700000px;}
.y26{bottom:489.240000px;}
.y143{bottom:492.210000px;}
.y160{bottom:493.560000px;}
.y10c{bottom:495.180000px;}
.ye1{bottom:495.450000px;}
.yb8{bottom:499.230000px;}
.y74{bottom:500.850000px;}
.y142{bottom:508.680000px;}
.y15f{bottom:510.030000px;}
.yb7{bottom:511.110000px;}
.y10b{bottom:511.380000px;}
.ye0{bottom:511.650000px;}
.y73{bottom:514.080000px;}
.yb6{bottom:523.530000px;}
.y141{bottom:525.150000px;}
.y15e{bottom:526.230000px;}
.ydf{bottom:528.120000px;}
.y25{bottom:528.930000px;}
.y72{bottom:529.470000px;}
.yb5{bottom:535.410000px;}
.y71{bottom:537.030000px;}
.y140{bottom:541.350000px;}
.y15d{bottom:542.430000px;}
.yde{bottom:544.050000px;}
.y10a{bottom:544.320000px;}
.y24{bottom:546.750000px;}
.yb4{bottom:547.560000px;}
.y13f{bottom:557.820000px;}
.yb3{bottom:559.440000px;}
.y109{bottom:560.790000px;}
.ydd{bottom:561.060000px;}
.y70{bottom:563.220000px;}
.y23{bottom:569.430000px;}
.yb2{bottom:571.050000px;}
.y13e{bottom:574.290000px;}
.y15c{bottom:575.640000px;}
.ydc{bottom:577.260000px;}
.y6f{bottom:578.610000px;}
.yb1{bottom:583.200000px;}
.y6e{bottom:584.820000px;}
.y13d{bottom:590.760000px;}
.y15b{bottom:592.380000px;}
.ydb{bottom:593.730000px;}
.yb0{bottom:594.810000px;}
.y6d{bottom:595.620000px;}
.y22{bottom:603.990000px;}
.yaf{bottom:606.690000px;}
.y108{bottom:609.930000px;}
.yda{bottom:610.200000px;}
.y6c{bottom:611.820000px;}
.yae{bottom:618.570000px;}
.yd9{bottom:626.130000px;}
.y107{bottom:626.670000px;}
.y21{bottom:626.940000px;}
.y6b{bottom:628.290000px;}
.yad{bottom:630.720000px;}
.y6a{bottom:632.610000px;}
.y13c{bottom:635.580000px;}
.yac{bottom:642.870000px;}
.y69{bottom:645.300000px;}
.yab{bottom:655.020000px;}
.yd8{bottom:658.800000px;}
.y68{bottom:661.500000px;}
.yaa{bottom:667.170000px;}
.y20{bottom:668.250000px;}
.y67{bottom:668.790000px;}
.yd7{bottom:675.270000px;}
.y66{bottom:678.240000px;}
.ya9{bottom:679.050000px;}
.ya8{bottom:690.930000px;}
.yd6{bottom:691.740000px;}
.y65{bottom:694.440000px;}
.y13b{bottom:699.570000px;}
.ya7{bottom:703.080000px;}
.yd5{bottom:709.020000px;}
.y64{bottom:710.640000px;}
.ya6{bottom:714.960000px;}
.y63{bottom:716.850000px;}
.yd4{bottom:725.760000px;}
.ya5{bottom:726.840000px;}
.y62{bottom:728.190000px;}
.y13a{bottom:735.750000px;}
.ya4{bottom:738.990000px;}
.yd3{bottom:742.230000px;}
.y61{bottom:744.120000px;}
.ya{bottom:749.520000px;}
.ya3{bottom:750.600000px;}
.y1f{bottom:751.680000px;}
.y60{bottom:752.760000px;}
.yd2{bottom:758.970000px;}
.y5f{bottom:760.860000px;}
.y106{bottom:761.940000px;}
.ya2{bottom:762.750000px;}
.y1e{bottom:765.720000px;}
.y9{bottom:766.800000px;}
.ya1{bottom:774.900000px;}
.yd1{bottom:775.710000px;}
.y139{bottom:775.980000px;}
.y5e{bottom:777.330000px;}
.y1d{bottom:779.220000px;}
.y102{bottom:780.570000px;}
.y8{bottom:783.270000px;}
.y105{bottom:785.430000px;}
.ya0{bottom:786.780000px;}
.yd0{bottom:792.450000px;}
.y1c{bottom:792.720000px;}
.y5d{bottom:793.800000px;}
.y9f{bottom:798.930000px;}
.y7{bottom:799.740000px;}
.y5c{bottom:800.820000px;}
.y1b{bottom:806.220000px;}
.ycf{bottom:809.190000px;}
.y5b{bottom:811.080000px;}
.y6{bottom:816.480000px;}
.y1a{bottom:819.990000px;}
.y104{bottom:820.260000px;}
.y9e{bottom:822.960000px;}
.yce{bottom:825.930000px;}
.y5a{bottom:827.280000px;}
.y19{bottom:833.220000px;}
.y9d{bottom:835.110000px;}
.y103{bottom:835.920000px;}
.ycd{bottom:842.670000px;}
.y59{bottom:843.750000px;}
.y12b{bottom:845.100000px;}
.y18{bottom:846.990000px;}
.y9c{bottom:847.260000px;}
.y58{bottom:849.150000px;}
.y138{bottom:852.930000px;}
.y4{bottom:857.250000px;}
.y12a{bottom:858.330000px;}
.y9b{bottom:859.410000px;}
.y17{bottom:860.220000px;}
.y57{bottom:860.490000px;}
.y137{bottom:866.430000px;}
.y9a{bottom:871.290000px;}
.y129{bottom:872.100000px;}
.y16{bottom:873.720000px;}
.y101{bottom:873.990000px;}
.ycc{bottom:875.880000px;}
.y56{bottom:876.690000px;}
.y136{bottom:879.660000px;}
.y99{bottom:883.440000px;}
.y128{bottom:885.330000px;}
.y55{bottom:885.600000px;}
.y15{bottom:886.950000px;}
.ycb{bottom:892.080000px;}
.y135{bottom:893.430000px;}
.y54{bottom:893.970000px;}
.y98{bottom:895.590000px;}
.y127{bottom:899.100000px;}
.y14{bottom:900.180000px;}
.y134{bottom:906.660000px;}
.y97{bottom:907.200000px;}
.yca{bottom:908.280000px;}
.y53{bottom:909.900000px;}
.y126{bottom:912.600000px;}
.y13{bottom:913.680000px;}
.y96{bottom:919.350000px;}
.y133{bottom:920.700000px;}
.yc9{bottom:924.750000px;}
.y125{bottom:926.100000px;}
.y52{bottom:926.370000px;}
.y12{bottom:927.450000px;}
.y95{bottom:931.500000px;}
.y132{bottom:934.200000px;}
.y124{bottom:939.600000px;}
.y11{bottom:940.680000px;}
.yc8{bottom:940.950000px;}
.y51{bottom:943.110000px;}
.y94{bottom:943.650000px;}
.y131{bottom:947.700000px;}
.y123{bottom:953.100000px;}
.y10{bottom:954.450000px;}
.y93{bottom:956.070000px;}
.yc7{bottom:957.420000px;}
.y5{bottom:959.850000px;}
.y100{bottom:960.120000px;}
.y130{bottom:961.200000px;}
.y122{bottom:967.140000px;}
.yf{bottom:967.680000px;}
.yff{bottom:972.270000px;}
.yc6{bottom:973.890000px;}
.y12f{bottom:974.970000px;}
.y50{bottom:976.590000px;}
.y92{bottom:979.560000px;}
.y121{bottom:980.100000px;}
.ye{bottom:981.180000px;}
.yfe{bottom:984.150000px;}
.y12e{bottom:987.660000px;}
.yc5{bottom:990.360000px;}
.y4f{bottom:992.790000px;}
.y120{bottom:993.600000px;}
.yd{bottom:994.680000px;}
.yfd{bottom:996.030000px;}
.y12d{bottom:1001.430000px;}
.y91{bottom:1005.480000px;}
.yc4{bottom:1006.560000px;}
.y11f{bottom:1007.370000px;}
.yc{bottom:1007.910000px;}
.yfc{bottom:1008.180000px;}
.y4e{bottom:1009.530000px;}
.y3{bottom:1012.770000px;}
.y12c{bottom:1014.930000px;}
.y2{bottom:1016.820000px;}
.y90{bottom:1021.950000px;}
.yc3{bottom:1023.300000px;}
.yfb{bottom:1024.380000px;}
.y4d{bottom:1026.270000px;}
.y11e{bottom:1028.700000px;}
.yb{bottom:1030.590000px;}
.yfa{bottom:1052.730000px;}
.y4c{bottom:1053.810000px;}
.y1{bottom:1056.240000px;}
.y11d{bottom:1057.860000px;}
.h26{height:21.768750px;}
.h13{height:22.528125px;}
.h1d{height:24.379102px;}
.h2a{height:24.780937px;}
.h20{height:25.034062px;}
.h14{height:30.412969px;}
.h27{height:30.723574px;}
.hb{height:31.783008px;}
.h21{height:34.961309px;}
.h1c{height:39.424219px;}
.h25{height:41.317910px;}
.h7{height:43.436777px;}
.h1b{height:45.578320px;}
.h10{height:46.615078px;}
.h6{height:46.638281px;}
.h15{height:47.309062px;}
.h16{height:48.733945px;}
.h22{height:50.878125px;}
.h1e{height:51.814687px;}
.h11{height:52.941094px;}
.h5{height:52.998047px;}
.h8{height:54.031113px;}
.h18{height:55.117969px;}
.h1{height:56.177930px;}
.h12{height:56.320312px;}
.h4{height:56.598750px;}
.hd{height:57.237891px;}
.hf{height:58.268848px;}
.h29{height:59.328281px;}
.h19{height:60.387715px;}
.h1f{height:63.078750px;}
.h1a{height:65.306250px;}
.he{height:66.394687px;}
.h23{height:77.279062px;}
.h9{height:84.898125px;}
.h24{height:96.870937px;}
.h3{height:100.250156px;}
.h2{height:102.502969px;}
.h28{height:111.277969px;}
.ha{height:230.748750px;}
.h17{height:1111.500000px;}
.h0{height:1113.000000px;}
.hc{height:1116.000000px;}
.w0{width:882.000000px;}
.x0{left:0.000000px;}
.x1{left:72.630000px;}
.x7{left:74.790000px;}
.x4c{left:76.410000px;}
.x1c{left:77.490000px;}
.x1d{left:79.380000px;}
.x35{left:88.560000px;}
.x6{left:89.640000px;}
.x32{left:90.990000px;}
.x30{left:92.070000px;}
.x2e{left:93.150000px;}
.x1e{left:94.230000px;}
.x2b{left:95.850000px;}
.x29{left:97.200000px;}
.x7c{left:98.280000px;}
.x56{left:99.360000px;}
.x3{left:102.060000px;}
.x36{left:103.410000px;}
.x34{left:104.490000px;}
.x54{left:106.650000px;}
.x5c{left:108.000000px;}
.x19{left:109.890000px;}
.x7f{left:111.510000px;}
.x7e{left:113.400000px;}
.x16{left:115.020000px;}
.x4{left:117.720000px;}
.x58{left:129.600000px;}
.x52{left:143.910000px;}
.x76{left:160.380000px;}
.x78{left:170.100000px;}
.x33{left:171.990000px;}
.x2{left:186.300000px;}
.x2a{left:189.000000px;}
.x7d{left:190.350000px;}
.x4d{left:192.240000px;}
.x57{left:193.860000px;}
.x59{left:206.820000px;}
.x79{left:208.440000px;}
.x53{left:226.530000px;}
.x1f{left:235.980000px;}
.x80{left:254.340000px;}
.x5a{left:263.250000px;}
.x5b{left:267.570000px;}
.x7a{left:271.890000px;}
.x6d{left:281.880000px;}
.x28{left:283.230000px;}
.x18{left:287.280000px;}
.x55{left:295.380000px;}
.x17{left:297.540000px;}
.x1b{left:301.590000px;}
.x75{left:308.070000px;}
.x6f{left:311.040000px;}
.x77{left:316.980000px;}
.x4e{left:321.300000px;}
.x51{left:339.930000px;}
.x6e{left:349.380000px;}
.x4f{left:356.670000px;}
.x5d{left:365.580000px;}
.x5{left:376.380000px;}
.x50{left:394.470000px;}
.x1a{left:407.160000px;}
.x7b{left:415.530000px;}
.x9{left:430.110000px;}
.xf{left:431.190000px;}
.x20{left:432.810000px;}
.x21{left:433.890000px;}
.x27{left:435.240000px;}
.x6a{left:436.590000px;}
.xa{left:443.070000px;}
.xe{left:444.150000px;}
.xd{left:445.230000px;}
.x26{left:450.360000px;}
.x31{left:451.440000px;}
.x2f{left:452.520000px;}
.x2d{left:453.600000px;}
.x2c{left:454.950000px;}
.x72{left:456.030000px;}
.x86{left:457.110000px;}
.x69{left:461.700000px;}
.x37{left:463.050000px;}
.x63{left:466.020000px;}
.x70{left:468.720000px;}
.x71{left:469.800000px;}
.x85{left:471.150000px;}
.x60{left:472.500000px;}
.x4a{left:478.710000px;}
.x65{left:485.460000px;}
.x5e{left:493.020000px;}
.xb{left:499.500000px;}
.x49{left:511.110000px;}
.x4b{left:514.890000px;}
.x48{left:522.990000px;}
.x6b{left:525.960000px;}
.x42{left:527.310000px;}
.x41{left:528.390000px;}
.x3f{left:529.740000px;}
.x3d{left:531.360000px;}
.x3a{left:532.440000px;}
.x13{left:533.520000px;}
.x40{left:534.600000px;}
.x3e{left:535.680000px;}
.x3b{left:537.030000px;}
.x3c{left:538.110000px;}
.x6c{left:541.350000px;}
.x84{left:546.210000px;}
.x38{left:549.180000px;}
.x5f{left:550.800000px;}
.x67{left:553.500000px;}
.x66{left:555.120000px;}
.x43{left:559.170000px;}
.x46{left:560.790000px;}
.x44{left:561.870000px;}
.x39{left:562.950000px;}
.x8{left:572.400000px;}
.x83{left:592.650000px;}
.x25{left:603.180000px;}
.x64{left:605.880000px;}
.x73{left:608.580000px;}
.x61{left:620.460000px;}
.x22{left:622.620000px;}
.x68{left:629.640000px;}
.x24{left:631.530000px;}
.x10{left:646.650000px;}
.x23{left:655.830000px;}
.x11{left:686.070000px;}
.xc{left:703.350000px;}
.x47{left:708.210000px;}
.x14{left:711.180000px;}
.x74{left:716.040000px;}
.x62{left:724.680000px;}
.x45{left:733.320000px;}
.x81{left:736.290000px;}
.x12{left:743.580000px;}
.x15{left:751.410000px;}
.x82{left:760.050000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-8.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:49.920000pt;}
.ls3b{letter-spacing:-21.333333pt;}
.ls32{letter-spacing:-18.880000pt;}
.lsb1{letter-spacing:-8.906667pt;}
.lsaf{letter-spacing:-7.253333pt;}
.ls91{letter-spacing:-7.040000pt;}
.ls97{letter-spacing:-6.720000pt;}
.ls8e{letter-spacing:-6.560000pt;}
.ls92{letter-spacing:-6.133333pt;}
.ls4c{letter-spacing:-5.973333pt;}
.lsad{letter-spacing:-5.653333pt;}
.ls7d{letter-spacing:-5.546667pt;}
.lsa4{letter-spacing:-5.493333pt;}
.lsa6{letter-spacing:-5.386667pt;}
.lsac{letter-spacing:-5.333333pt;}
.ls7b{letter-spacing:-5.173333pt;}
.ls90{letter-spacing:-5.120000pt;}
.lsa9{letter-spacing:-5.066667pt;}
.lsaa{letter-spacing:-5.013333pt;}
.lsa8{letter-spacing:-4.906667pt;}
.lsa5{letter-spacing:-4.853333pt;}
.ls49{letter-spacing:-4.693333pt;}
.lsae{letter-spacing:-4.586667pt;}
.ls57{letter-spacing:-4.533333pt;}
.lsa3{letter-spacing:-4.480000pt;}
.ls9f{letter-spacing:-4.426667pt;}
.ls96{letter-spacing:-4.320000pt;}
.lsa2{letter-spacing:-4.213333pt;}
.ls7a{letter-spacing:-4.160000pt;}
.ls94{letter-spacing:-4.106667pt;}
.lsb0{letter-spacing:-3.946667pt;}
.ls4a{letter-spacing:-3.840000pt;}
.ls58{letter-spacing:-3.680000pt;}
.ls95{letter-spacing:-3.626667pt;}
.lsa0{letter-spacing:-3.573333pt;}
.ls9d{letter-spacing:-3.520000pt;}
.lsa7{letter-spacing:-3.360000pt;}
.ls8f{letter-spacing:-3.253333pt;}
.ls53{letter-spacing:-3.200000pt;}
.ls4e{letter-spacing:-2.986667pt;}
.ls43{letter-spacing:-2.880000pt;}
.ls3e{letter-spacing:-2.826667pt;}
.ls7c{letter-spacing:-2.773333pt;}
.ls93{letter-spacing:-2.720000pt;}
.ls7f{letter-spacing:-2.666667pt;}
.ls7e{letter-spacing:-2.560000pt;}
.ls3d{letter-spacing:-2.453333pt;}
.ls60{letter-spacing:-2.400000pt;}
.lsa1{letter-spacing:-2.346667pt;}
.ls35{letter-spacing:-2.240000pt;}
.ls3c{letter-spacing:-2.186667pt;}
.ls4d{letter-spacing:-2.026667pt;}
.ls63{letter-spacing:-1.920000pt;}
.lsab{letter-spacing:-1.813333pt;}
.ls45{letter-spacing:-1.760000pt;}
.ls5d{letter-spacing:-1.706667pt;}
.ls9e{letter-spacing:-1.653333pt;}
.ls52{letter-spacing:-1.600000pt;}
.ls34{letter-spacing:-1.546667pt;}
.ls51{letter-spacing:-1.493333pt;}
.ls3a{letter-spacing:-1.440000pt;}
.ls5b{letter-spacing:-1.386667pt;}
.ls36{letter-spacing:-1.333333pt;}
.ls55{letter-spacing:-1.280000pt;}
.ls39{letter-spacing:-1.226667pt;}
.ls5a{letter-spacing:-1.173333pt;}
.ls38{letter-spacing:-1.120000pt;}
.ls56{letter-spacing:-1.066667pt;}
.ls8b{letter-spacing:-1.013333pt;}
.ls37{letter-spacing:-0.960000pt;}
.ls8d{letter-spacing:-0.906667pt;}
.ls48{letter-spacing:-0.853333pt;}
.ls50{letter-spacing:-0.800000pt;}
.ls3f{letter-spacing:-0.746667pt;}
.ls5f{letter-spacing:-0.693333pt;}
.ls4b{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.586667pt;}
.ls47{letter-spacing:-0.533333pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls42{letter-spacing:-0.426667pt;}
.ls41{letter-spacing:-0.373333pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.266667pt;}
.ls5c{letter-spacing:-0.213333pt;}
.ls59{letter-spacing:-0.160000pt;}
.ls5e{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls70{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.853333pt;}
.ls6b{letter-spacing:0.906667pt;}
.ls0{letter-spacing:0.960000pt;}
.ls65{letter-spacing:1.013333pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.120000pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls12{letter-spacing:1.226667pt;}
.ls11{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.386667pt;}
.ls17{letter-spacing:1.440000pt;}
.ls2b{letter-spacing:1.493333pt;}
.ls24{letter-spacing:1.546667pt;}
.ls13{letter-spacing:1.600000pt;}
.ls2c{letter-spacing:1.653333pt;}
.ls29{letter-spacing:1.706667pt;}
.ls7{letter-spacing:1.760000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls9{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:1.973333pt;}
.lse{letter-spacing:2.026667pt;}
.ls20{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.133333pt;}
.lsa{letter-spacing:2.186667pt;}
.ls15{letter-spacing:2.240000pt;}
.ls4{letter-spacing:2.293333pt;}
.ls30{letter-spacing:2.346667pt;}
.ls3{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.453333pt;}
.lsb{letter-spacing:2.506667pt;}
.lsf{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:2.613333pt;}
.lsc{letter-spacing:2.666667pt;}
.ls5{letter-spacing:2.720000pt;}
.ls10{letter-spacing:2.773333pt;}
.ls8a{letter-spacing:2.826667pt;}
.ls1b{letter-spacing:2.880000pt;}
.ls9c{letter-spacing:2.933333pt;}
.ls61{letter-spacing:2.986667pt;}
.ls6c{letter-spacing:3.040000pt;}
.ls73{letter-spacing:3.093333pt;}
.ls1e{letter-spacing:3.146667pt;}
.lsd{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.253333pt;}
.ls79{letter-spacing:3.306667pt;}
.ls62{letter-spacing:3.360000pt;}
.ls85{letter-spacing:3.413333pt;}
.ls76{letter-spacing:3.466667pt;}
.ls69{letter-spacing:3.520000pt;}
.ls21{letter-spacing:3.573333pt;}
.ls26{letter-spacing:3.626667pt;}
.ls6d{letter-spacing:3.680000pt;}
.ls27{letter-spacing:3.733333pt;}
.ls1{letter-spacing:3.840000pt;}
.ls88{letter-spacing:3.893333pt;}
.ls66{letter-spacing:3.946667pt;}
.ls87{letter-spacing:4.000000pt;}
.ls81{letter-spacing:4.053333pt;}
.ls28{letter-spacing:4.106667pt;}
.ls1d{letter-spacing:4.160000pt;}
.ls18{letter-spacing:4.213333pt;}
.ls83{letter-spacing:4.320000pt;}
.ls89{letter-spacing:4.426667pt;}
.ls6f{letter-spacing:4.480000pt;}
.ls68{letter-spacing:4.533333pt;}
.ls9b{letter-spacing:4.586667pt;}
.ls67{letter-spacing:4.800000pt;}
.ls8c{letter-spacing:5.013333pt;}
.ls99{letter-spacing:5.280000pt;}
.ls54{letter-spacing:5.333333pt;}
.ls9a{letter-spacing:5.493333pt;}
.ls98{letter-spacing:5.600000pt;}
.ls78{letter-spacing:5.653333pt;}
.ls72{letter-spacing:5.760000pt;}
.ls80{letter-spacing:5.920000pt;}
.ls6e{letter-spacing:6.080000pt;}
.ls22{letter-spacing:6.186667pt;}
.ls1f{letter-spacing:6.240000pt;}
.ls86{letter-spacing:6.400000pt;}
.ls77{letter-spacing:6.613333pt;}
.ls84{letter-spacing:6.773333pt;}
.ls74{letter-spacing:6.933333pt;}
.ls82{letter-spacing:6.986667pt;}
.ls64{letter-spacing:7.040000pt;}
.ls23{letter-spacing:7.146667pt;}
.ls75{letter-spacing:7.253333pt;}
.ls33{letter-spacing:11.946667pt;}
.lsb2{letter-spacing:55.466667pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-96.498071pt;}
._65{margin-left:-19.692451pt;}
._7f{margin-left:-18.391879pt;}
._80{margin-left:-16.216613pt;}
._1c{margin-left:-14.349432pt;}
._18{margin-left:-13.060182pt;}
._2e{margin-left:-11.901687pt;}
._16{margin-left:-10.661244pt;}
._9{margin-left:-9.306549pt;}
._6{margin-left:-7.953527pt;}
._1a{margin-left:-6.870058pt;}
._7{margin-left:-5.825886pt;}
._7d{margin-left:-4.912792pt;}
._5{margin-left:-3.992668pt;}
._6a{margin-left:-2.962470pt;}
._8{margin-left:-2.069979pt;}
._14{margin-left:-1.039333pt;}
._19{width:1.402897pt;}
._11{width:2.471775pt;}
._17{width:3.593325pt;}
._15{width:4.593404pt;}
._d{width:6.251318pt;}
._a{width:7.698442pt;}
._b{width:9.121561pt;}
._c{width:10.598091pt;}
._1b{width:11.531195pt;}
._4{width:12.440466pt;}
._e{width:13.455714pt;}
._12{width:14.848112pt;}
._f{width:15.811352pt;}
._10{width:17.536449pt;}
._13{width:19.206851pt;}
._2a{width:20.577874pt;}
._2c{width:21.889976pt;}
._28{width:23.162223pt;}
._30{width:24.557861pt;}
._2b{width:26.074661pt;}
._38{width:27.484935pt;}
._1f{width:28.546352pt;}
._29{width:30.305381pt;}
._2f{width:31.308901pt;}
._26{width:32.198288pt;}
._27{width:33.088309pt;}
._1e{width:34.085771pt;}
._1d{width:35.083874pt;}
._2d{width:36.019402pt;}
._22{width:37.146745pt;}
._25{width:38.424702pt;}
._24{width:39.914465pt;}
._69{width:41.570631pt;}
._43{width:42.921506pt;}
._32{width:44.286316pt;}
._4f{width:45.360099pt;}
._67{width:46.278091pt;}
._33{width:48.629736pt;}
._23{width:49.992904pt;}
._62{width:51.843270pt;}
._3a{width:53.594088pt;}
._34{width:55.100508pt;}
._35{width:56.121156pt;}
._20{width:57.354622pt;}
._37{width:58.592265pt;}
._82{width:59.483635pt;}
._39{width:60.389794pt;}
._36{width:62.341485pt;}
._68{width:63.952694pt;}
._77{width:65.608017pt;}
._21{width:67.221165pt;}
._6d{width:69.116790pt;}
._72{width:70.730162pt;}
._76{width:73.970493pt;}
._71{width:75.773760pt;}
._47{width:77.292714pt;}
._41{width:78.266816pt;}
._45{width:79.266895pt;}
._49{width:80.842925pt;}
._4d{width:81.964474pt;}
._4c{width:85.236105pt;}
._73{width:87.503915pt;}
._6e{width:89.553154pt;}
._5f{width:91.847136pt;}
._5b{width:94.167052pt;}
._6f{width:99.513995pt;}
._3f{width:103.064564pt;}
._5e{width:106.872804pt;}
._56{width:108.450868pt;}
._51{width:109.362093pt;}
._75{width:111.674880pt;}
._4e{width:122.444297pt;}
._54{width:123.561765pt;}
._46{width:124.959485pt;}
._4b{width:126.009152pt;}
._4a{width:126.977058pt;}
._42{width:127.935450pt;}
._48{width:129.136573pt;}
._70{width:131.117712pt;}
._63{width:132.219402pt;}
._44{width:143.544769pt;}
._40{width:144.857434pt;}
._66{width:145.904234pt;}
._3e{width:147.145011pt;}
._58{width:148.064498pt;}
._57{width:150.459105pt;}
._50{width:151.379026pt;}
._5d{width:153.296175pt;}
._79{width:158.130433pt;}
._7e{width:159.153707pt;}
._5a{width:172.834358pt;}
._59{width:185.867253pt;}
._52{width:187.771081pt;}
._53{width:190.460917pt;}
._5c{width:192.049065pt;}
._55{width:194.264564pt;}
._78{width:195.653082pt;}
._7a{width:201.360000pt;}
._64{width:211.526400pt;}
._3c{width:230.135747pt;}
._3d{width:236.198905pt;}
._6c{width:375.616252pt;}
._6b{width:391.044916pt;}
._61{width:438.071413pt;}
._60{width:439.690787pt;}
._7b{width:476.749615pt;}
._3{width:566.960753pt;}
._3b{width:594.021086pt;}
._81{width:616.411302pt;}
._74{width:691.773227pt;}
._31{width:710.972488pt;}
._1{width:751.970880pt;}
._0{width:1076.298947pt;}
._7c{width:1138.281475pt;}
.fs10{font-size:19.200000pt;}
.fs20{font-size:21.120000pt;}
.fs18{font-size:22.080000pt;}
.fs11{font-size:25.920000pt;}
.fs1f{font-size:27.840000pt;}
.fsb{font-size:28.800000pt;}
.fs1a{font-size:31.680000pt;}
.fs17{font-size:33.600000pt;}
.fs1e{font-size:37.440000pt;}
.fs8{font-size:39.360000pt;}
.fs12{font-size:40.320000pt;}
.fs16{font-size:41.280000pt;}
.fs7{font-size:42.240000pt;}
.fs13{font-size:44.160000pt;}
.fsf{font-size:45.120000pt;}
.fs1b{font-size:46.080000pt;}
.fs4{font-size:47.040000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:48.960000pt;}
.fs3{font-size:49.920000pt;}
.fs0{font-size:50.880000pt;}
.fsc{font-size:51.840000pt;}
.fse{font-size:52.800000pt;}
.fs19{font-size:53.760000pt;}
.fs14{font-size:54.720000pt;}
.fs15{font-size:57.600000pt;}
.fsd{font-size:58.560000pt;}
.fs1c{font-size:68.160000pt;}
.fs9{font-size:74.880000pt;}
.fs1d{font-size:82.560000pt;}
.fs2{font-size:85.440000pt;}
.fs1{font-size:87.360000pt;}
.fsa{font-size:203.520000pt;}
.y0{bottom:0.000000pt;}
.y15a{bottom:61.200000pt;}
.y16f{bottom:62.400000pt;}
.y3c{bottom:63.360000pt;}
.y4b{bottom:64.560000pt;}
.yc2{bottom:78.240000pt;}
.y8f{bottom:80.880000pt;}
.y159{bottom:81.120000pt;}
.yf9{bottom:82.080000pt;}
.y11c{bottom:82.320000pt;}
.y3b{bottom:83.760000pt;}
.y4a{bottom:85.200000pt;}
.y11b{bottom:91.440000pt;}
.y8e{bottom:92.880000pt;}
.y158{bottom:93.120000pt;}
.y16e{bottom:96.960000pt;}
.y3a{bottom:98.160000pt;}
.y49{bottom:99.840000pt;}
.y11a{bottom:100.800000pt;}
.yf8{bottom:102.720000pt;}
.y8d{bottom:104.880000pt;}
.y16d{bottom:111.840000pt;}
.y39{bottom:112.320000pt;}
.yf7{bottom:113.280000pt;}
.y48{bottom:114.240000pt;}
.y8c{bottom:117.120000pt;}
.y119{bottom:119.280000pt;}
.yf6{bottom:123.840000pt;}
.y157{bottom:125.280000pt;}
.y16c{bottom:126.720000pt;}
.y38{bottom:127.440000pt;}
.y118{bottom:128.400000pt;}
.y47{bottom:128.880000pt;}
.yf2{bottom:134.400000pt;}
.y117{bottom:137.520000pt;}
.y156{bottom:139.920000pt;}
.y16b{bottom:141.360000pt;}
.y37{bottom:142.080000pt;}
.y46{bottom:143.280000pt;}
.yf5{bottom:144.960000pt;}
.yf1{bottom:145.200000pt;}
.y116{bottom:146.880000pt;}
.y155{bottom:154.560000pt;}
.yf4{bottom:155.520000pt;}
.yf0{bottom:155.760000pt;}
.y16a{bottom:156.000000pt;}
.y36{bottom:156.960000pt;}
.y45{bottom:158.160000pt;}
.y8b{bottom:162.000000pt;}
.yf3{bottom:165.840000pt;}
.yef{bottom:166.080000pt;}
.y154{bottom:169.200000pt;}
.y169{bottom:170.640000pt;}
.y35{bottom:171.120000pt;}
.yc1{bottom:173.520000pt;}
.y8a{bottom:176.400000pt;}
.yee{bottom:176.640000pt;}
.y153{bottom:183.840000pt;}
.y168{bottom:185.280000pt;}
.y34{bottom:186.240000pt;}
.y115{bottom:191.280000pt;}
.y89{bottom:192.000000pt;}
.yed{bottom:198.000000pt;}
.y152{bottom:198.240000pt;}
.y44{bottom:199.200000pt;}
.y167{bottom:199.680000pt;}
.y33{bottom:200.880000pt;}
.y88{bottom:205.680000pt;}
.yec{bottom:209.760000pt;}
.y151{bottom:212.880000pt;}
.y32{bottom:215.520000pt;}
.yc0{bottom:217.440000pt;}
.y87{bottom:220.320000pt;}
.y43{bottom:222.000000pt;}
.y150{bottom:227.280000pt;}
.yeb{bottom:232.560000pt;}
.y86{bottom:234.960000pt;}
.ybf{bottom:241.680000pt;}
.y14f{bottom:242.160000pt;}
.yea{bottom:244.560000pt;}
.y31{bottom:245.760000pt;}
.y85{bottom:249.600000pt;}
.y14e{bottom:256.320000pt;}
.ye9{bottom:257.040000pt;}
.y30{bottom:260.880000pt;}
.y166{bottom:263.520000pt;}
.y84{bottom:263.760000pt;}
.y114{bottom:264.480000pt;}
.ye8{bottom:269.040000pt;}
.y14d{bottom:271.200000pt;}
.y2f{bottom:275.520000pt;}
.y83{bottom:278.880000pt;}
.y113{bottom:279.360000pt;}
.ye7{bottom:281.280000pt;}
.y41{bottom:284.160000pt;}
.y14c{bottom:285.840000pt;}
.y2e{bottom:290.160000pt;}
.ye6{bottom:293.280000pt;}
.y82{bottom:293.520000pt;}
.y14b{bottom:300.240000pt;}
.ye5{bottom:304.560000pt;}
.y2d{bottom:305.040000pt;}
.y112{bottom:307.920000pt;}
.y81{bottom:308.160000pt;}
.y42{bottom:308.400000pt;}
.y14a{bottom:314.880000pt;}
.ybe{bottom:316.320000pt;}
.y2c{bottom:319.200000pt;}
.y111{bottom:322.560000pt;}
.y80{bottom:322.800000pt;}
.y149{bottom:329.040000pt;}
.y2b{bottom:334.080000pt;}
.y165{bottom:335.040000pt;}
.y110{bottom:336.960000pt;}
.ye4{bottom:338.880000pt;}
.y7f{bottom:339.120000pt;}
.y148{bottom:343.680000pt;}
.y2a{bottom:348.960000pt;}
.y40{bottom:349.680000pt;}
.y7e{bottom:352.800000pt;}
.ye3{bottom:353.280000pt;}
.y164{bottom:357.600000pt;}
.ybd{bottom:361.680000pt;}
.y29{bottom:363.120000pt;}
.y3f{bottom:364.560000pt;}
.y7d{bottom:367.440000pt;}
.y10f{bottom:367.680000pt;}
.y28{bottom:377.520000pt;}
.y147{bottom:378.480000pt;}
.y3e{bottom:378.960000pt;}
.y7c{bottom:382.080000pt;}
.y27{bottom:391.920000pt;}
.y3d{bottom:393.360000pt;}
.y146{bottom:393.600000pt;}
.y163{bottom:394.560000pt;}
.y7b{bottom:396.240000pt;}
.y10e{bottom:396.720000pt;}
.ybc{bottom:400.800000pt;}
.y78{bottom:402.480000pt;}
.y145{bottom:408.240000pt;}
.y162{bottom:409.200000pt;}
.y7a{bottom:410.880000pt;}
.y10d{bottom:411.120000pt;}
.ybb{bottom:411.600000pt;}
.y77{bottom:413.040000pt;}
.yba{bottom:422.160000pt;}
.y144{bottom:422.880000pt;}
.y76{bottom:423.840000pt;}
.y161{bottom:424.080000pt;}
.y79{bottom:425.520000pt;}
.ye2{bottom:426.000000pt;}
.yb9{bottom:432.960000pt;}
.y75{bottom:434.400000pt;}
.y26{bottom:434.880000pt;}
.y143{bottom:437.520000pt;}
.y160{bottom:438.720000pt;}
.y10c{bottom:440.160000pt;}
.ye1{bottom:440.400000pt;}
.yb8{bottom:443.760000pt;}
.y74{bottom:445.200000pt;}
.y142{bottom:452.160000pt;}
.y15f{bottom:453.360000pt;}
.yb7{bottom:454.320000pt;}
.y10b{bottom:454.560000pt;}
.ye0{bottom:454.800000pt;}
.y73{bottom:456.960000pt;}
.yb6{bottom:465.360000pt;}
.y141{bottom:466.800000pt;}
.y15e{bottom:467.760000pt;}
.ydf{bottom:469.440000pt;}
.y25{bottom:470.160000pt;}
.y72{bottom:470.640000pt;}
.yb5{bottom:475.920000pt;}
.y71{bottom:477.360000pt;}
.y140{bottom:481.200000pt;}
.y15d{bottom:482.160000pt;}
.yde{bottom:483.600000pt;}
.y10a{bottom:483.840000pt;}
.y24{bottom:486.000000pt;}
.yb4{bottom:486.720000pt;}
.y13f{bottom:495.840000pt;}
.yb3{bottom:497.280000pt;}
.y109{bottom:498.480000pt;}
.ydd{bottom:498.720000pt;}
.y70{bottom:500.640000pt;}
.y23{bottom:506.160000pt;}
.yb2{bottom:507.600000pt;}
.y13e{bottom:510.480000pt;}
.y15c{bottom:511.680000pt;}
.ydc{bottom:513.120000pt;}
.y6f{bottom:514.320000pt;}
.yb1{bottom:518.400000pt;}
.y6e{bottom:519.840000pt;}
.y13d{bottom:525.120000pt;}
.y15b{bottom:526.560000pt;}
.ydb{bottom:527.760000pt;}
.yb0{bottom:528.720000pt;}
.y6d{bottom:529.440000pt;}
.y22{bottom:536.880000pt;}
.yaf{bottom:539.280000pt;}
.y108{bottom:542.160000pt;}
.yda{bottom:542.400000pt;}
.y6c{bottom:543.840000pt;}
.yae{bottom:549.840000pt;}
.yd9{bottom:556.560000pt;}
.y107{bottom:557.040000pt;}
.y21{bottom:557.280000pt;}
.y6b{bottom:558.480000pt;}
.yad{bottom:560.640000pt;}
.y6a{bottom:562.320000pt;}
.y13c{bottom:564.960000pt;}
.yac{bottom:571.440000pt;}
.y69{bottom:573.600000pt;}
.yab{bottom:582.240000pt;}
.yd8{bottom:585.600000pt;}
.y68{bottom:588.000000pt;}
.yaa{bottom:593.040000pt;}
.y20{bottom:594.000000pt;}
.y67{bottom:594.480000pt;}
.yd7{bottom:600.240000pt;}
.y66{bottom:602.880000pt;}
.ya9{bottom:603.600000pt;}
.ya8{bottom:614.160000pt;}
.yd6{bottom:614.880000pt;}
.y65{bottom:617.280000pt;}
.y13b{bottom:621.840000pt;}
.ya7{bottom:624.960000pt;}
.yd5{bottom:630.240000pt;}
.y64{bottom:631.680000pt;}
.ya6{bottom:635.520000pt;}
.y63{bottom:637.200000pt;}
.yd4{bottom:645.120000pt;}
.ya5{bottom:646.080000pt;}
.y62{bottom:647.280000pt;}
.y13a{bottom:654.000000pt;}
.ya4{bottom:656.880000pt;}
.yd3{bottom:659.760000pt;}
.y61{bottom:661.440000pt;}
.ya{bottom:666.240000pt;}
.ya3{bottom:667.200000pt;}
.y1f{bottom:668.160000pt;}
.y60{bottom:669.120000pt;}
.yd2{bottom:674.640000pt;}
.y5f{bottom:676.320000pt;}
.y106{bottom:677.280000pt;}
.ya2{bottom:678.000000pt;}
.y1e{bottom:680.640000pt;}
.y9{bottom:681.600000pt;}
.ya1{bottom:688.800000pt;}
.yd1{bottom:689.520000pt;}
.y139{bottom:689.760000pt;}
.y5e{bottom:690.960000pt;}
.y1d{bottom:692.640000pt;}
.y102{bottom:693.840000pt;}
.y8{bottom:696.240000pt;}
.y105{bottom:698.160000pt;}
.ya0{bottom:699.360000pt;}
.yd0{bottom:704.400000pt;}
.y1c{bottom:704.640000pt;}
.y5d{bottom:705.600000pt;}
.y9f{bottom:710.160000pt;}
.y7{bottom:710.880000pt;}
.y5c{bottom:711.840000pt;}
.y1b{bottom:716.640000pt;}
.ycf{bottom:719.280000pt;}
.y5b{bottom:720.960000pt;}
.y6{bottom:725.760000pt;}
.y1a{bottom:728.880000pt;}
.y104{bottom:729.120000pt;}
.y9e{bottom:731.520000pt;}
.yce{bottom:734.160000pt;}
.y5a{bottom:735.360000pt;}
.y19{bottom:740.640000pt;}
.y9d{bottom:742.320000pt;}
.y103{bottom:743.040000pt;}
.ycd{bottom:749.040000pt;}
.y59{bottom:750.000000pt;}
.y12b{bottom:751.200000pt;}
.y18{bottom:752.880000pt;}
.y9c{bottom:753.120000pt;}
.y58{bottom:754.800000pt;}
.y138{bottom:758.160000pt;}
.y4{bottom:762.000000pt;}
.y12a{bottom:762.960000pt;}
.y9b{bottom:763.920000pt;}
.y17{bottom:764.640000pt;}
.y57{bottom:764.880000pt;}
.y137{bottom:770.160000pt;}
.y9a{bottom:774.480000pt;}
.y129{bottom:775.200000pt;}
.y16{bottom:776.640000pt;}
.y101{bottom:776.880000pt;}
.ycc{bottom:778.560000pt;}
.y56{bottom:779.280000pt;}
.y136{bottom:781.920000pt;}
.y99{bottom:785.280000pt;}
.y128{bottom:786.960000pt;}
.y55{bottom:787.200000pt;}
.y15{bottom:788.400000pt;}
.ycb{bottom:792.960000pt;}
.y135{bottom:794.160000pt;}
.y54{bottom:794.640000pt;}
.y98{bottom:796.080000pt;}
.y127{bottom:799.200000pt;}
.y14{bottom:800.160000pt;}
.y134{bottom:805.920000pt;}
.y97{bottom:806.400000pt;}
.yca{bottom:807.360000pt;}
.y53{bottom:808.800000pt;}
.y126{bottom:811.200000pt;}
.y13{bottom:812.160000pt;}
.y96{bottom:817.200000pt;}
.y133{bottom:818.400000pt;}
.yc9{bottom:822.000000pt;}
.y125{bottom:823.200000pt;}
.y52{bottom:823.440000pt;}
.y12{bottom:824.400000pt;}
.y95{bottom:828.000000pt;}
.y132{bottom:830.400000pt;}
.y124{bottom:835.200000pt;}
.y11{bottom:836.160000pt;}
.yc8{bottom:836.400000pt;}
.y51{bottom:838.320000pt;}
.y94{bottom:838.800000pt;}
.y131{bottom:842.400000pt;}
.y123{bottom:847.200000pt;}
.y10{bottom:848.400000pt;}
.y93{bottom:849.840000pt;}
.yc7{bottom:851.040000pt;}
.y5{bottom:853.200000pt;}
.y100{bottom:853.440000pt;}
.y130{bottom:854.400000pt;}
.y122{bottom:859.680000pt;}
.yf{bottom:860.160000pt;}
.yff{bottom:864.240000pt;}
.yc6{bottom:865.680000pt;}
.y12f{bottom:866.640000pt;}
.y50{bottom:868.080000pt;}
.y92{bottom:870.720000pt;}
.y121{bottom:871.200000pt;}
.ye{bottom:872.160000pt;}
.yfe{bottom:874.800000pt;}
.y12e{bottom:877.920000pt;}
.yc5{bottom:880.320000pt;}
.y4f{bottom:882.480000pt;}
.y120{bottom:883.200000pt;}
.yd{bottom:884.160000pt;}
.yfd{bottom:885.360000pt;}
.y12d{bottom:890.160000pt;}
.y91{bottom:893.760000pt;}
.yc4{bottom:894.720000pt;}
.y11f{bottom:895.440000pt;}
.yc{bottom:895.920000pt;}
.yfc{bottom:896.160000pt;}
.y4e{bottom:897.360000pt;}
.y3{bottom:900.240000pt;}
.y12c{bottom:902.160000pt;}
.y2{bottom:903.840000pt;}
.y90{bottom:908.400000pt;}
.yc3{bottom:909.600000pt;}
.yfb{bottom:910.560000pt;}
.y4d{bottom:912.240000pt;}
.y11e{bottom:914.400000pt;}
.yb{bottom:916.080000pt;}
.yfa{bottom:935.760000pt;}
.y4c{bottom:936.720000pt;}
.y1{bottom:938.880000pt;}
.y11d{bottom:940.320000pt;}
.h26{height:19.350000pt;}
.h13{height:20.025000pt;}
.h1d{height:21.670312pt;}
.h2a{height:22.027500pt;}
.h20{height:22.252500pt;}
.h14{height:27.033750pt;}
.h27{height:27.309844pt;}
.hb{height:28.251563pt;}
.h21{height:31.076719pt;}
.h1c{height:35.043750pt;}
.h25{height:36.727031pt;}
.h7{height:38.610469pt;}
.h1b{height:40.514062pt;}
.h10{height:41.435625pt;}
.h6{height:41.456250pt;}
.h15{height:42.052500pt;}
.h16{height:43.319062pt;}
.h22{height:45.225000pt;}
.h1e{height:46.057500pt;}
.h11{height:47.058750pt;}
.h5{height:47.109375pt;}
.h8{height:48.027656pt;}
.h18{height:48.993750pt;}
.h1{height:49.935937pt;}
.h12{height:50.062500pt;}
.h4{height:50.310000pt;}
.hd{height:50.878125pt;}
.hf{height:51.794531pt;}
.h29{height:52.736250pt;}
.h19{height:53.677969pt;}
.h1f{height:56.070000pt;}
.h1a{height:58.050000pt;}
.he{height:59.017500pt;}
.h23{height:68.692500pt;}
.h9{height:75.465000pt;}
.h24{height:86.107500pt;}
.h3{height:89.111250pt;}
.h2{height:91.113750pt;}
.h28{height:98.913750pt;}
.ha{height:205.110000pt;}
.h17{height:988.000000pt;}
.h0{height:989.333333pt;}
.hc{height:992.000000pt;}
.w0{width:784.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.560000pt;}
.x7{left:66.480000pt;}
.x4c{left:67.920000pt;}
.x1c{left:68.880000pt;}
.x1d{left:70.560000pt;}
.x35{left:78.720000pt;}
.x6{left:79.680000pt;}
.x32{left:80.880000pt;}
.x30{left:81.840000pt;}
.x2e{left:82.800000pt;}
.x1e{left:83.760000pt;}
.x2b{left:85.200000pt;}
.x29{left:86.400000pt;}
.x7c{left:87.360000pt;}
.x56{left:88.320000pt;}
.x3{left:90.720000pt;}
.x36{left:91.920000pt;}
.x34{left:92.880000pt;}
.x54{left:94.800000pt;}
.x5c{left:96.000000pt;}
.x19{left:97.680000pt;}
.x7f{left:99.120000pt;}
.x7e{left:100.800000pt;}
.x16{left:102.240000pt;}
.x4{left:104.640000pt;}
.x58{left:115.200000pt;}
.x52{left:127.920000pt;}
.x76{left:142.560000pt;}
.x78{left:151.200000pt;}
.x33{left:152.880000pt;}
.x2{left:165.600000pt;}
.x2a{left:168.000000pt;}
.x7d{left:169.200000pt;}
.x4d{left:170.880000pt;}
.x57{left:172.320000pt;}
.x59{left:183.840000pt;}
.x79{left:185.280000pt;}
.x53{left:201.360000pt;}
.x1f{left:209.760000pt;}
.x80{left:226.080000pt;}
.x5a{left:234.000000pt;}
.x5b{left:237.840000pt;}
.x7a{left:241.680000pt;}
.x6d{left:250.560000pt;}
.x28{left:251.760000pt;}
.x18{left:255.360000pt;}
.x55{left:262.560000pt;}
.x17{left:264.480000pt;}
.x1b{left:268.080000pt;}
.x75{left:273.840000pt;}
.x6f{left:276.480000pt;}
.x77{left:281.760000pt;}
.x4e{left:285.600000pt;}
.x51{left:302.160000pt;}
.x6e{left:310.560000pt;}
.x4f{left:317.040000pt;}
.x5d{left:324.960000pt;}
.x5{left:334.560000pt;}
.x50{left:350.640000pt;}
.x1a{left:361.920000pt;}
.x7b{left:369.360000pt;}
.x9{left:382.320000pt;}
.xf{left:383.280000pt;}
.x20{left:384.720000pt;}
.x21{left:385.680000pt;}
.x27{left:386.880000pt;}
.x6a{left:388.080000pt;}
.xa{left:393.840000pt;}
.xe{left:394.800000pt;}
.xd{left:395.760000pt;}
.x26{left:400.320000pt;}
.x31{left:401.280000pt;}
.x2f{left:402.240000pt;}
.x2d{left:403.200000pt;}
.x2c{left:404.400000pt;}
.x72{left:405.360000pt;}
.x86{left:406.320000pt;}
.x69{left:410.400000pt;}
.x37{left:411.600000pt;}
.x63{left:414.240000pt;}
.x70{left:416.640000pt;}
.x71{left:417.600000pt;}
.x85{left:418.800000pt;}
.x60{left:420.000000pt;}
.x4a{left:425.520000pt;}
.x65{left:431.520000pt;}
.x5e{left:438.240000pt;}
.xb{left:444.000000pt;}
.x49{left:454.320000pt;}
.x4b{left:457.680000pt;}
.x48{left:464.880000pt;}
.x6b{left:467.520000pt;}
.x42{left:468.720000pt;}
.x41{left:469.680000pt;}
.x3f{left:470.880000pt;}
.x3d{left:472.320000pt;}
.x3a{left:473.280000pt;}
.x13{left:474.240000pt;}
.x40{left:475.200000pt;}
.x3e{left:476.160000pt;}
.x3b{left:477.360000pt;}
.x3c{left:478.320000pt;}
.x6c{left:481.200000pt;}
.x84{left:485.520000pt;}
.x38{left:488.160000pt;}
.x5f{left:489.600000pt;}
.x67{left:492.000000pt;}
.x66{left:493.440000pt;}
.x43{left:497.040000pt;}
.x46{left:498.480000pt;}
.x44{left:499.440000pt;}
.x39{left:500.400000pt;}
.x8{left:508.800000pt;}
.x83{left:526.800000pt;}
.x25{left:536.160000pt;}
.x64{left:538.560000pt;}
.x73{left:540.960000pt;}
.x61{left:551.520000pt;}
.x22{left:553.440000pt;}
.x68{left:559.680000pt;}
.x24{left:561.360000pt;}
.x10{left:574.800000pt;}
.x23{left:582.960000pt;}
.x11{left:609.840000pt;}
.xc{left:625.200000pt;}
.x47{left:629.520000pt;}
.x14{left:632.160000pt;}
.x74{left:636.480000pt;}
.x62{left:644.160000pt;}
.x45{left:651.840000pt;}
.x81{left:654.480000pt;}
.x12{left:660.960000pt;}
.x15{left:667.920000pt;}
.x82{left:675.600000pt;}
}

