
    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_76132562947d156c8adefb6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_35dfb22cb56392f081e254e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_35dfb22cb56392f081e254e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_76132562947d156c8adefb6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_f2d4f39e53345296ef49a7c6.woff2')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_941719c00d81ca304e6422bb.woff2')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_e305499bea66524f3baf65c6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_998f660189eada7ea9be84a3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_35dfb22cb56392f081e254e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_56b11d20471cb0486207140d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2359ff67a52964706839d585.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9745e558871b2d3da53bfc18.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_93018c6ab0c0c15b9b214555.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.052000;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_5b6e922f930989743acce82e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.890000;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_4a8689254cad92e748a57e24.woff2')format("woff");}.fff{font-family:fff;line-height:0.897000;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_28a1d7e70074dc1745e6050f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_93018c6ab0c0c15b9b214555.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.052000;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_7a7adf68a6dd2048358fc1f9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.897000;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_87350a846be40be0cb0c0b3e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.906000;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_e9adae3edc4c5cf4d135f595.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.962000;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_8760110d59dc9edf72701f9b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.132000;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_93018c6ab0c0c15b9b214555.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.052000;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_8760110d59dc9edf72701f9b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.132000;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_93018c6ab0c0c15b9b214555.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.052000;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_8760110d59dc9edf72701f9b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.132000;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_5b6e922f930989743acce82e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.890000;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_e9adae3edc4c5cf4d135f595.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.962000;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_2b926379004cfb9aff69a839.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.948000;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_87350a846be40be0cb0c0b3e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.906000;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_4a8689254cad92e748a57e24.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.897000;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_76132562947d156c8adefb6c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.936000;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_35dfb22cb56392f081e254e7.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.941000;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;}
.ma{transform:matrix(0.210888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210888,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236973,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.240434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240434,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246333,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,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);}
.m18{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.272253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272253,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.273407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273407,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.305647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305647,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-60.480600px;}
.v2{vertical-align:-23.041380px;}
.v1{vertical-align:-18.000000px;}
.v6{vertical-align:-10.800000px;}
.v8{vertical-align:-9.358620px;}
.v5{vertical-align:-7.919520px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.360960px;}
.va{vertical-align:21.600000px;}
.v3{vertical-align:23.041380px;}
.vb{vertical-align:59.760960px;}
.v9{vertical-align:63.361200px;}
.ls49{letter-spacing:-0.381600px;}
.ls56{letter-spacing:-0.378756px;}
.ls4b{letter-spacing:-0.374400px;}
.ls55{letter-spacing:-0.361008px;}
.ls46{letter-spacing:-0.316800px;}
.ls4a{letter-spacing:-0.309600px;}
.ls47{letter-spacing:-0.302400px;}
.ls4e{letter-spacing:-0.295200px;}
.ls48{letter-spacing:-0.288000px;}
.ls4d{letter-spacing:-0.273600px;}
.ls52{letter-spacing:-0.266400px;}
.ls57{letter-spacing:-0.258516px;}
.ls51{letter-spacing:-0.252000px;}
.ls54{letter-spacing:-0.244800px;}
.ls50{letter-spacing:-0.216000px;}
.ls53{letter-spacing:-0.194400px;}
.ls4f{letter-spacing:-0.181116px;}
.ls12{letter-spacing:-0.156312px;}
.ls1f{letter-spacing:-0.132264px;}
.ls4c{letter-spacing:-0.129600px;}
.ls20{letter-spacing:-0.120240px;}
.ls6f{letter-spacing:-0.095760px;}
.ls3e{letter-spacing:-0.079056px;}
.ls14{letter-spacing:-0.076896px;}
.ls6a{letter-spacing:-0.076608px;}
.ls38{letter-spacing:-0.072468px;}
.ls21{letter-spacing:-0.066132px;}
.ls1e{letter-spacing:-0.060120px;}
.ls16{letter-spacing:-0.054108px;}
.ls3c{letter-spacing:-0.052704px;}
.ls15{letter-spacing:-0.048096px;}
.ls6e{letter-spacing:-0.047880px;}
.ls42{letter-spacing:-0.046116px;}
.ls6d{letter-spacing:-0.043092px;}
.ls1c{letter-spacing:-0.042084px;}
.ls36{letter-spacing:-0.039528px;}
.ls19{letter-spacing:-0.036072px;}
.ls37{letter-spacing:-0.032940px;}
.ls69{letter-spacing:-0.032400px;}
.ls1d{letter-spacing:-0.030060px;}
.ls13{letter-spacing:-0.028836px;}
.ls43{letter-spacing:-0.026352px;}
.ls1b{letter-spacing:-0.024048px;}
.ls6{letter-spacing:-0.021600px;}
.ls41{letter-spacing:-0.019764px;}
.ls18{letter-spacing:-0.018036px;}
.ls3a{letter-spacing:-0.013176px;}
.ls17{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.006588px;}
.ls1a{letter-spacing:-0.006012px;}
.ls6c{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.006012px;}
.ls5{letter-spacing:0.008388px;}
.ls5a{letter-spacing:0.010663px;}
.lsb{letter-spacing:0.012024px;}
.ls26{letter-spacing:0.013176px;}
.ls67{letter-spacing:0.014364px;}
.ls44{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.018036px;}
.ls45{letter-spacing:0.021600px;}
.lse{letter-spacing:0.024048px;}
.ls0{letter-spacing:0.025164px;}
.lsd{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.036072px;}
.ls64{letter-spacing:0.038304px;}
.ls31{letter-spacing:0.039528px;}
.ls5b{letter-spacing:0.040226px;}
.ls5f{letter-spacing:0.041940px;}
.lsf{letter-spacing:0.042084px;}
.ls65{letter-spacing:0.043092px;}
.ls29{letter-spacing:0.046116px;}
.ls66{letter-spacing:0.047880px;}
.ls10{letter-spacing:0.048096px;}
.ls7{letter-spacing:0.050400px;}
.ls68{letter-spacing:0.057456px;}
.ls1{letter-spacing:0.059292px;}
.ls63{letter-spacing:0.062244px;}
.ls2e{letter-spacing:0.065880px;}
.lsc{letter-spacing:0.066132px;}
.ls11{letter-spacing:0.070200px;}
.ls6b{letter-spacing:0.071820px;}
.ls34{letter-spacing:0.072468px;}
.ls4{letter-spacing:0.075492px;}
.ls5c{letter-spacing:0.078711px;}
.ls23{letter-spacing:0.079056px;}
.ls5d{letter-spacing:0.080453px;}
.ls3f{letter-spacing:0.092232px;}
.ls61{letter-spacing:0.105336px;}
.ls60{letter-spacing:0.110124px;}
.ls33{letter-spacing:0.111996px;}
.ls3d{letter-spacing:0.125172px;}
.ls62{letter-spacing:0.148428px;}
.ls2d{letter-spacing:0.177876px;}
.ls39{letter-spacing:0.184464px;}
.ls40{letter-spacing:0.210816px;}
.ls59{letter-spacing:0.229392px;}
.ls28{letter-spacing:0.230580px;}
.ls58{letter-spacing:0.305188px;}
.ls35{letter-spacing:0.948672px;}
.ls2b{letter-spacing:1.311012px;}
.ls5e{letter-spacing:58.996656px;}
.ls2a{letter-spacing:63.231624px;}
.ls2f{letter-spacing:65.748240px;}
.ls24{letter-spacing:67.191012px;}
.ls2c{letter-spacing:68.989536px;}
.ls32{letter-spacing:79.069176px;}
.ls22{letter-spacing:84.108996px;}
.ls30{letter-spacing:95.631408px;}
.ls27{letter-spacing:112.549392px;}
.ls25{letter-spacing:116.508780px;}
.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;}
}
.ws4b{word-spacing:-65.880000px;}
.ws8b{word-spacing:-19.440000px;}
.ws7b{word-spacing:-18.000000px;}
.ws7f{word-spacing:-15.012000px;}
.ws79{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.594400px;}
.ws8{word-spacing:-14.544000px;}
.ws8a{word-spacing:-14.211360px;}
.ws91{word-spacing:-12.610080px;}
.ws7d{word-spacing:-10.440000px;}
.ws7c{word-spacing:-8.280000px;}
.ws63{word-spacing:-4.658400px;}
.ws6c{word-spacing:-4.406400px;}
.ws75{word-spacing:-3.045600px;}
.ws74{word-spacing:-2.901600px;}
.ws76{word-spacing:-2.635200px;}
.ws71{word-spacing:-2.030400px;}
.ws62{word-spacing:-2.023200px;}
.ws38{word-spacing:-1.611216px;}
.ws33{word-spacing:-1.569132px;}
.ws32{word-spacing:-1.557108px;}
.ws34{word-spacing:-1.551096px;}
.ws64{word-spacing:-1.490400px;}
.ws70{word-spacing:-1.260000px;}
.ws6f{word-spacing:-1.224000px;}
.ws65{word-spacing:-1.065600px;}
.ws78{word-spacing:-0.733464px;}
.ws77{word-spacing:-0.613224px;}
.ws59{word-spacing:-0.276696px;}
.ws98{word-spacing:-0.264528px;}
.ws95{word-spacing:-0.252504px;}
.ws4d{word-spacing:-0.250344px;}
.ws56{word-spacing:-0.243756px;}
.ws9d{word-spacing:-0.220248px;}
.ws54{word-spacing:-0.191052px;}
.ws9b{word-spacing:-0.181944px;}
.ws5d{word-spacing:-0.177876px;}
.ws9c{word-spacing:-0.177156px;}
.ws94{word-spacing:-0.168336px;}
.ws58{word-spacing:-0.158112px;}
.ws46{word-spacing:-0.150300px;}
.ws9f{word-spacing:-0.143640px;}
.ws5e{word-spacing:-0.138348px;}
.wsa0{word-spacing:-0.134064px;}
.ws57{word-spacing:-0.131760px;}
.wsa9{word-spacing:-0.129276px;}
.ws53{word-spacing:-0.125172px;}
.wsa2{word-spacing:-0.114912px;}
.ws45{word-spacing:-0.114228px;}
.ws52{word-spacing:-0.111996px;}
.wsa1{word-spacing:-0.110124px;}
.ws5a{word-spacing:-0.105408px;}
.ws2{word-spacing:-0.100656px;}
.wsa7{word-spacing:-0.086184px;}
.ws48{word-spacing:-0.083880px;}
.ws4f{word-spacing:-0.079056px;}
.ws6a{word-spacing:-0.072000px;}
.ws55{word-spacing:-0.065880px;}
.ws50{word-spacing:-0.059292px;}
.ws66{word-spacing:-0.057600px;}
.ws4e{word-spacing:-0.052704px;}
.ws68{word-spacing:-0.050400px;}
.ws5b{word-spacing:-0.046116px;}
.ws6b{word-spacing:-0.043200px;}
.ws5f{word-spacing:-0.039528px;}
.ws4a{word-spacing:-0.032940px;}
.wsa5{word-spacing:-0.028728px;}
.ws49{word-spacing:-0.026352px;}
.ws1{word-spacing:-0.025164px;}
.ws61{word-spacing:-0.021600px;}
.ws5c{word-spacing:-0.019764px;}
.ws69{word-spacing:-0.014400px;}
.ws51{word-spacing:-0.013176px;}
.ws2c{word-spacing:-0.012024px;}
.ws3{word-spacing:-0.008388px;}
.ws0{word-spacing:0.000000px;}
.ws9e{word-spacing:0.004788px;}
.ws4c{word-spacing:0.006588px;}
.ws60{word-spacing:0.007200px;}
.wsc{word-spacing:0.009612px;}
.ws9{word-spacing:0.012024px;}
.ws4{word-spacing:0.013176px;}
.wsb{word-spacing:0.019224px;}
.ws67{word-spacing:0.021600px;}
.wsa8{word-spacing:0.023940px;}
.wsa{word-spacing:0.057600px;}
.ws99{word-spacing:0.066132px;}
.ws5{word-spacing:0.072000px;}
.wsa4{word-spacing:0.075600px;}
.ws47{word-spacing:0.091800px;}
.wsd{word-spacing:0.096120px;}
.ws9a{word-spacing:0.102600px;}
.ws97{word-spacing:0.126252px;}
.ws6{word-spacing:0.162000px;}
.ws96{word-spacing:0.162324px;}
.ws30{word-spacing:0.186372px;}
.ws31{word-spacing:0.234468px;}
.ws8c{word-spacing:0.698285px;}
.ws7a{word-spacing:0.741240px;}
.ws42{word-spacing:1.250496px;}
.ws41{word-spacing:1.310616px;}
.ws37{word-spacing:1.605204px;}
.ws15{word-spacing:1.653300px;}
.ws1e{word-spacing:2.404800px;}
.ws1f{word-spacing:2.416824px;}
.ws20{word-spacing:2.434860px;}
.ws17{word-spacing:3.799584px;}
.ws2f{word-spacing:3.811608px;}
.ws19{word-spacing:3.817620px;}
.ws18{word-spacing:3.847680px;}
.ws2e{word-spacing:4.160304px;}
.ws40{word-spacing:4.166316px;}
.ws2d{word-spacing:4.190364px;}
.ws3f{word-spacing:4.226436px;}
.ws28{word-spacing:4.527036px;}
.ws3c{word-spacing:5.224428px;}
.ws26{word-spacing:5.230440px;}
.ws27{word-spacing:5.266512px;}
.ws3b{word-spacing:5.374728px;}
.ws90{word-spacing:6.456024px;}
.ws43{word-spacing:6.697368px;}
.ws44{word-spacing:6.703380px;}
.ws12{word-spacing:8.146260px;}
.ws13{word-spacing:8.506980px;}
.ws14{word-spacing:8.512992px;}
.wse{word-spacing:8.903772px;}
.wsf{word-spacing:8.909784px;}
.ws1b{word-spacing:9.150264px;}
.ws1a{word-spacing:9.240444px;}
.ws3e{word-spacing:9.943848px;}
.ws3d{word-spacing:9.967896px;}
.ws6d{word-spacing:10.368000px;}
.ws11{word-spacing:10.617192px;}
.ws10{word-spacing:10.635228px;}
.ws6e{word-spacing:10.915200px;}
.ws29{word-spacing:11.350656px;}
.ws92{word-spacing:13.520988px;}
.ws39{word-spacing:13.527000px;}
.ws93{word-spacing:13.545036px;}
.ws3a{word-spacing:13.569084px;}
.ws8f{word-spacing:14.362416px;}
.ws35{word-spacing:16.009956px;}
.ws36{word-spacing:16.082100px;}
.ws16{word-spacing:17.482896px;}
.ws7e{word-spacing:18.031896px;}
.ws72{word-spacing:19.656000px;}
.ws73{word-spacing:19.807200px;}
.ws1c{word-spacing:20.705328px;}
.ws1d{word-spacing:20.777472px;}
.ws2b{word-spacing:21.787488px;}
.ws2a{word-spacing:21.829572px;}
.ws23{word-spacing:23.236380px;}
.ws25{word-spacing:23.272452px;}
.ws24{word-spacing:23.314536px;}
.ws22{word-spacing:26.470836px;}
.ws21{word-spacing:26.476848px;}
.wsa3{word-spacing:110.401704px;}
.ws80{word-spacing:117.492938px;}
.wsaa{word-spacing:117.971532px;}
.wsa6{word-spacing:118.057716px;}
.ws82{word-spacing:202.000500px;}
.ws84{word-spacing:214.281180px;}
.ws85{word-spacing:231.617880px;}
.ws87{word-spacing:243.896400px;}
.ws88{word-spacing:262.676520px;}
.ws81{word-spacing:276.401160px;}
.ws86{word-spacing:447.446013px;}
.ws83{word-spacing:530.668211px;}
.ws89{word-spacing:544.390205px;}
.ws8d{word-spacing:2183.257965px;}
.ws8e{word-spacing:2245.861965px;}
._2d{margin-left:-607.810411px;}
._4d{margin-left:-511.165342px;}
._48{margin-left:-346.169022px;}
._45{margin-left:-266.187203px;}
._3f{margin-left:-239.765508px;}
._2b{margin-left:-197.007193px;}
._47{margin-left:-90.548302px;}
._60{margin-left:-59.237757px;}
._4c{margin-left:-51.293428px;}
._4f{margin-left:-35.471448px;}
._4a{margin-left:-29.164733px;}
._a{margin-left:-16.140168px;}
._41{margin-left:-14.652147px;}
._b{margin-left:-12.093768px;}
._16{margin-left:-9.408600px;}
._8{margin-left:-8.366760px;}
._6{margin-left:-6.516900px;}
._29{margin-left:-5.213259px;}
._4{margin-left:-3.946212px;}
._9{margin-left:-2.714256px;}
._2{margin-left:-1.224000px;}
._3{width:1.214424px;}
._7{width:2.897856px;}
._5{width:3.900096px;}
._12{width:4.921596px;}
._10{width:6.451691px;}
._13{width:7.661904px;}
._0{width:8.975160px;}
._25{width:10.248468px;}
._1d{width:11.414125px;}
._1b{width:12.419950px;}
._26{width:13.875588px;}
._20{width:15.022637px;}
._18{width:16.570970px;}
._1f{width:17.791042px;}
._27{width:19.067574px;}
._19{width:20.372394px;}
._15{width:21.567815px;}
._35{width:22.575152px;}
._e{width:23.633668px;}
._c{width:24.829060px;}
._d{width:25.883371px;}
._23{width:26.887561px;}
._17{width:28.506602px;}
._1{width:29.889756px;}
._22{width:31.612181px;}
._f{width:32.621247px;}
._14{width:34.321534px;}
._11{width:35.700870px;}
._1c{width:36.951342px;}
._2a{width:38.443853px;}
._24{width:39.534109px;}
._1e{width:41.514036px;}
._28{width:42.558405px;}
._31{width:44.576869px;}
._21{width:46.944864px;}
._42{width:47.981783px;}
._30{width:48.987798px;}
._43{width:50.421484px;}
._1a{width:51.515477px;}
._34{width:54.754718px;}
._50{width:57.531555px;}
._51{width:58.996656px;}
._3e{width:60.773560px;}
._32{width:61.898606px;}
._33{width:63.722469px;}
._2f{width:70.374463px;}
._44{width:76.556019px;}
._59{width:100.680600px;}
._6a{width:126.497259px;}
._5d{width:143.256000px;}
._38{width:146.037960px;}
._3d{width:158.545536px;}
._2c{width:160.236720px;}
._65{width:163.290600px;}
._69{width:198.906000px;}
._40{width:208.663992px;}
._46{width:235.524319px;}
._39{width:303.855587px;}
._54{width:311.196774px;}
._49{width:314.464889px;}
._3a{width:318.780224px;}
._63{width:373.806774px;}
._36{width:440.814840px;}
._3b{width:454.539480px;}
._4e{width:480.904855px;}
._4b{width:512.107942px;}
._67{width:535.002000px;}
._2e{width:571.554000px;}
._5e{width:585.826212px;}
._6c{width:608.883576px;}
._5b{width:634.066212px;}
._5f{width:766.128000px;}
._37{width:774.892630px;}
._3c{width:865.186035px;}
._53{width:890.026212px;}
._62{width:952.630212px;}
._56{width:1199.784000px;}
._52{width:1287.912000px;}
._57{width:1317.101259px;}
._5a{width:1321.761576px;}
._58{width:1341.912000px;}
._61{width:1350.516000px;}
._68{width:1494.690000px;}
._55{width:1569.864000px;}
._6d{width:1597.434000px;}
._64{width:1632.468000px;}
._6b{width:1947.363576px;}
._5c{width:2087.717259px;}
._6e{width:2112.288000px;}
._66{width:2163.108000px;}
.fc3{color:rgb(0,0,127);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:18.000000px;}
.fsa{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs9{font-size:42.120000px;}
.fs13{font-size:45.360000px;}
.fs14{font-size:47.880000px;}
.fsd{font-size:48.240000px;}
.fse{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs6{font-size:60.120000px;}
.fs11{font-size:63.360000px;}
.fs1{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs12{font-size:77.760000px;}
.fs0{font-size:83.880000px;}
.fs4{font-size:90.000000px;}
.fs7{font-size:96.120000px;}
.fsf{font-size:99.360000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y20d{bottom:2.158500px;}
.y19b{bottom:2.520000px;}
.yb3{bottom:3.420000px;}
.y150{bottom:3.420150px;}
.y2b4{bottom:3.779850px;}
.y2d1{bottom:3.780450px;}
.y294{bottom:3.958500px;}
.y2b7{bottom:3.959700px;}
.y327{bottom:3.960300px;}
.y2ea{bottom:24.180150px;}
.y2b1{bottom:31.739850px;}
.y2ff{bottom:31.920750px;}
.y156{bottom:34.500000px;}
.y155{bottom:40.260300px;}
.y120{bottom:43.500000px;}
.y272{bottom:44.400000px;}
.y2e9{bottom:48.660000px;}
.y271{bottom:50.160300px;}
.y154{bottom:51.600000px;}
.y2b0{bottom:52.439850px;}
.y180{bottom:57.540600px;}
.y2cc{bottom:58.200300px;}
.y1e2{bottom:60.600000px;}
.y270{bottom:61.860300px;}
.y26f{bottom:67.620150px;}
.y153{bottom:68.880450px;}
.y2fe{bottom:69.360450px;}
.y298{bottom:71.400000px;}
.y2af{bottom:73.139850px;}
.y26e{bottom:78.780450px;}
.y2cb{bottom:78.900300px;}
.y152{bottom:86.160300px;}
.y151{bottom:91.920150px;}
.y297{bottom:92.100000px;}
.y2fd{bottom:92.220750px;}
.y80{bottom:93.360450px;}
.y2ae{bottom:93.839850px;}
.y1d0{bottom:93.900000px;}
.y26d{bottom:96.060300px;}
.y312{bottom:96.540150px;}
.y14f{bottom:100.020150px;}
.yba{bottom:100.740300px;}
.y26c{bottom:101.820150px;}
.y242{bottom:102.540300px;}
.y11f{bottom:103.260300px;}
.y14e{bottom:103.440300px;}
.y2ca{bottom:106.620450px;}
.y68{bottom:108.843462px;}
.y7f{bottom:109.740450px;}
.y296{bottom:112.800000px;}
.y26b{bottom:113.520150px;}
.yfa{bottom:114.960300px;}
.y311{bottom:117.240150px;}
.yb9{bottom:118.200000px;}
.y2ad{bottom:119.939850px;}
.y241{bottom:120.000000px;}
.y14d{bottom:120.900000px;}
.y1d{bottom:121.710522px;}
.yb8{bottom:123.780450px;}
.y14c{bottom:126.480450px;}
.y2d0{bottom:126.959550px;}
.y2fc{bottom:129.660450px;}
.y26a{bottom:130.800000px;}
.yb7{bottom:135.480450px;}
.y269{bottom:136.560300px;}
.y240{bottom:137.460300px;}
.y7e{bottom:138.990450px;}
.y67{bottom:140.973138px;}
.yb6{bottom:141.060300px;}
.y310{bottom:143.340150px;}
.yf9{bottom:143.400000px;}
.y23f{bottom:144.660300px;}
.y268{bottom:145.200000px;}
.y267{bottom:148.620150px;}
.y1b2{bottom:150.059850px;}
.y2fb{bottom:150.360450px;}
.y2ac{bottom:151.439850px;}
.y2cf{bottom:151.440000px;}
.yb5{bottom:153.480000px;}
.y23e{bottom:154.200000px;}
.y2e5{bottom:156.480450px;}
.y23d{bottom:157.620150px;}
.y7d{bottom:159.690450px;}
.yb4{bottom:160.680000px;}
.y14b{bottom:160.860000px;}
.y1c{bottom:164.641224px;}
.yf8{bottom:165.720000px;}
.y266{bottom:166.440000px;}
.y1b1{bottom:167.339700px;}
.y389{bottom:168.690450px;}
.y30f{bottom:169.440150px;}
.y1e1{bottom:171.660600px;}
.y66{bottom:173.193399px;}
.y2fa{bottom:173.220750px;}
.yb2{bottom:173.280000px;}
.y265{bottom:173.640000px;}
.y23c{bottom:174.900000px;}
.yb1{bottom:176.700000px;}
.y2e4{bottom:177.180450px;}
.y2ab{bottom:177.539850px;}
.y356{bottom:180.060000px;}
.y7c{bottom:180.300450px;}
.ycf{bottom:180.660000px;}
.y14a{bottom:181.560000px;}
.yb0{bottom:182.460000px;}
.y1b0{bottom:184.800000px;}
.yce{bottom:186.420000px;}
.y387{bottom:188.124933px;}
.y1f8{bottom:188.400000px;}
.y209{bottom:189.480000px;}
.y30e{bottom:190.140150px;}
.y1af{bottom:190.380000px;}
.y355{bottom:191.220000px;}
.y1f5{bottom:192.000150px;}
.y23b{bottom:192.180000px;}
.y1e0{bottom:192.360600px;}
.y208{bottom:192.900300px;}
.yaf{bottom:193.980000px;}
.y2e2{bottom:197.880450px;}
.ycd{bottom:197.939850px;}
.y23a{bottom:197.940000px;}
.y2aa{bottom:198.239850px;}
.y46{bottom:199.200000px;}
.yae{bottom:199.740000px;}
.y148{bottom:202.259700px;}
.y149{bottom:202.260000px;}
.y354{bottom:202.380000px;}
.y386{bottom:203.785284px;}
.y65{bottom:205.323075px;}
.y1b{bottom:207.660864px;}
.y7b{bottom:207.930450px;}
.y239{bottom:209.459700px;}
.y207{bottom:210.360000px;}
.y2f9{bottom:210.660450px;}
.yad{bottom:211.260000px;}
.y1df{bottom:213.060600px;}
.y1f4{bottom:213.420300px;}
.y353{bottom:213.540000px;}
.ycc{bottom:215.400150px;}
.y206{bottom:215.940000px;}
.y30d{bottom:216.240150px;}
.yac{bottom:217.020000px;}
.y2e1{bottom:218.580450px;}
.y2a9{bottom:218.939850px;}
.y385{bottom:219.354663px;}
.y1ae{bottom:219.360150px;}
.y2e3{bottom:223.980450px;}
.y352{bottom:224.700000px;}
.yf7{bottom:225.480000px;}
.y238{bottom:226.920000px;}
.y2f8{bottom:231.360450px;}
.y237{bottom:232.500000px;}
.ycb{bottom:232.680000px;}
.y1f3{bottom:234.660000px;}
.y384{bottom:235.015014px;}
.y1ad{bottom:236.640000px;}
.y64{bottom:237.452751px;}
.y351{bottom:237.480000px;}
.yca{bottom:238.260000px;}
.y2e0{bottom:239.280450px;}
.y2a8{bottom:239.639850px;}
.y264{bottom:242.220300px;}
.y1ac{bottom:242.400000px;}
.y1de{bottom:242.760600px;}
.yf6{bottom:246.180000px;}
.y322{bottom:247.380540px;}
.y30c{bottom:247.740150px;}
.y350{bottom:248.460000px;}
.y383{bottom:250.585590px;}
.y1a{bottom:250.680504px;}
.y2f7{bottom:252.060450px;}
.y295{bottom:257.700000px;}
.y236{bottom:258.060000px;}
.y45{bottom:258.420450px;}
.y147{bottom:259.500000px;}
.y34f{bottom:260.160000px;}
.y2a7{bottom:260.339850px;}
.y263{bottom:262.920300px;}
.y1dd{bottom:263.460600px;}
.y2df{bottom:265.380450px;}
.y382{bottom:266.245941px;}
.y2c9{bottom:266.460450px;}
.yf4{bottom:266.880000px;}
.y321{bottom:268.080540px;}
.y63{bottom:269.582427px;}
.y34e{bottom:270.420000px;}
.y30b{bottom:273.840150px;}
.yf5{bottom:274.080000px;}
.y293{bottom:274.441500px;}
.y292{bottom:278.400000px;}
.y235{bottom:278.760000px;}
.y146{bottom:280.200000px;}
.y34d{bottom:281.400000px;}
.y381{bottom:281.816517px;}
.y44{bottom:282.721980px;}
.y262{bottom:283.620300px;}
.y1dc{bottom:284.160600px;}
.y326{bottom:284.279700px;}
.yaa{bottom:286.680000px;}
.y2c8{bottom:287.160450px;}
.yf3{bottom:287.580000px;}
.y2a6{bottom:288.060000px;}
.y320{bottom:288.780540px;}
.y1f2{bottom:290.100000px;}
.y2de{bottom:291.480450px;}
.y34c{bottom:293.280000px;}
.y19{bottom:293.611206px;}
.yab{bottom:293.880000px;}
.y30a{bottom:294.540150px;}
.y380{bottom:297.387093px;}
.y291{bottom:299.100000px;}
.y234{bottom:299.460000px;}
.y145{bottom:300.900000px;}
.y62{bottom:301.712103px;}
.y34b{bottom:304.260000px;}
.y261{bottom:304.320300px;}
.y2b6{bottom:304.440300px;}
.ya9{bottom:307.380000px;}
.yc9{bottom:307.920000px;}
.yf2{bottom:308.280000px;}
.yf0{bottom:308.280300px;}
.y2a5{bottom:308.760450px;}
.y325{bottom:308.940000px;}
.y31f{bottom:309.480540px;}
.y1ab{bottom:310.260000px;}
.y2dd{bottom:312.180450px;}
.y37f{bottom:313.047444px;}
.y34a{bottom:315.060000px;}
.yf1{bottom:315.480000px;}
.y2ce{bottom:316.500150px;}
.y1db{bottom:317.460600px;}
.y309{bottom:320.640150px;}
.y144{bottom:321.600000px;}
.y2f6{bottom:323.520150px;}
.y11e{bottom:324.840000px;}
.y349{bottom:325.500000px;}
.ya8{bottom:328.080000px;}
.y37e{bottom:328.618020px;}
.yef{bottom:328.980300px;}
.y2b5{bottom:329.100000px;}
.y233{bottom:329.160000px;}
.y2a4{bottom:329.460450px;}
.y61{bottom:333.841779px;}
.y260{bottom:334.020300px;}
.y232{bottom:335.100000px;}
.y348{bottom:336.480000px;}
.y18{bottom:336.630846px;}
.y1da{bottom:338.160600px;}
.y2dc{bottom:338.280450px;}
.y43{bottom:339.691692px;}
.y290{bottom:340.501050px;}
.y2cd{bottom:340.980000px;}
.y143{bottom:342.300000px;}
.y141{bottom:342.300600px;}
.y2f5{bottom:344.220150px;}
.y37d{bottom:344.278371px;}
.y1aa{bottom:344.639595px;}
.y347{bottom:348.000000px;}
.ya7{bottom:348.780000px;}
.y142{bottom:349.500000px;}
.yee{bottom:349.680300px;}
.y230{bottom:349.860000px;}
.y25f{bottom:354.720300px;}
.y231{bottom:355.800000px;}
.y346{bottom:358.800000px;}
.y42{bottom:359.221674px;}
.y37c{bottom:359.848947px;}
.y140{bottom:363.000600px;}
.y11d{bottom:363.360000px;}
.y2f4{bottom:364.920150px;}
.y60{bottom:365.971455px;}
.y1a9{bottom:366.959700px;}
.ya6{bottom:369.480000px;}
.y345{bottom:369.780000px;}
.y2db{bottom:369.780450px;}
.yed{bottom:370.380300px;}
.y22f{bottom:370.560000px;}
.y171{bottom:372.180000px;}
.y308{bottom:374.460300px;}
.y25e{bottom:375.420300px;}
.y37b{bottom:375.509298px;}
.y41{bottom:378.661476px;}
.y17{bottom:379.650486px;}
.y344{bottom:382.560000px;}
.y13f{bottom:383.700600px;}
.y11c{bottom:384.060000px;}
.y2f3{bottom:385.620150px;}
.ya5{bottom:390.180000px;}
.y37a{bottom:391.079874px;}
.yec{bottom:391.080300px;}
.y22e{bottom:391.260000px;}
.y1a8{bottom:392.879850px;}
.y170{bottom:392.880000px;}
.y343{bottom:393.540000px;}
.y205{bottom:394.140000px;}
.y307{bottom:395.160300px;}
.y2da{bottom:395.880450px;}
.y5f{bottom:398.101131px;}
.y40{bottom:398.191458px;}
.y13e{bottom:404.400600px;}
.y342{bottom:404.520000px;}
.y11b{bottom:404.760000px;}
.y379{bottom:406.650450px;}
.y1a6{bottom:408.359850px;}
.y1a7{bottom:410.700000px;}
.ya4{bottom:410.880000px;}
.yeb{bottom:411.780300px;}
.y22d{bottom:411.960000px;}
.y2f2{bottom:413.340300px;}
.y16f{bottom:413.580000px;}
.y204{bottom:414.840000px;}
.y202{bottom:414.840600px;}
.y341{bottom:415.500000px;}
.y306{bottom:415.860300px;}
.y2d9{bottom:416.580450px;}
.y3f{bottom:417.721440px;}
.y378{bottom:418.980450px;}
.y2c7{bottom:419.100000px;}
.y25d{bottom:419.880000px;}
.y203{bottom:422.040000px;}
.y16{bottom:422.581188px;}
.y1a5{bottom:423.839700px;}
.y13d{bottom:425.100600px;}
.y11a{bottom:425.460000px;}
.y340{bottom:427.200000px;}
.y377{bottom:428.700600px;}
.y388{bottom:430.044618px;}
.y5e{bottom:430.230807px;}
.ya3{bottom:431.580000px;}
.yea{bottom:432.480300px;}
.y22c{bottom:432.660000px;}
.y2f1{bottom:434.040300px;}
.y16e{bottom:434.280000px;}
.y201{bottom:435.540000px;}
.y305{bottom:436.560300px;}
.y3e{bottom:437.251422px;}
.y2d8{bottom:437.280450px;}
.y33f{bottom:437.460000px;}
.y31e{bottom:438.180540px;}
.y1a4{bottom:439.139700px;}
.y2c6{bottom:439.800000px;}
.y119{bottom:446.160000px;}
.y33e{bottom:448.620000px;}
.ya2{bottom:452.280000px;}
.ye9{bottom:453.180300px;}
.y22b{bottom:453.360000px;}
.y2a3{bottom:454.740300px;}
.y13c{bottom:454.800600px;}
.y200{bottom:456.240000px;}
.y1a1{bottom:456.600000px;}
.y3d{bottom:456.781404px;}
.y2d7{bottom:457.980450px;}
.y1a3{bottom:458.400000px;}
.y31d{bottom:458.880540px;}
.y33d{bottom:460.140000px;}
.y2c5{bottom:460.500000px;}
.y5d{bottom:462.360483px;}
.y301{bottom:462.840300px;}
.y15{bottom:465.600828px;}
.y28f{bottom:468.480900px;}
.y33c{bottom:470.580000px;}
.ya1{bottom:472.980000px;}
.ye8{bottom:473.880300px;}
.y22a{bottom:474.060000px;}
.y2e6{bottom:474.720300px;}
.y2a2{bottom:475.440300px;}
.y16d{bottom:475.680000px;}
.y3c{bottom:476.221206px;}
.y1a2{bottom:476.400000px;}
.y1ff{bottom:476.940000px;}
.y1a0{bottom:478.380300px;}
.y2d6{bottom:478.679850px;}
.y31c{bottom:479.580540px;}
.y2c4{bottom:481.200000px;}
.y33b{bottom:481.560000px;}
.y13b{bottom:484.500600px;}
.y300{bottom:487.500000px;}
.y118{bottom:487.560000px;}
.y28e{bottom:489.180900px;}
.y33a{bottom:493.080000px;}
.ya0{bottom:493.680000px;}
.ye7{bottom:494.580300px;}
.y5c{bottom:494.580744px;}
.y229{bottom:494.760000px;}
.y19e{bottom:495.120000px;}
.y3b{bottom:495.751188px;}
.y2a1{bottom:496.140300px;}
.y1fe{bottom:497.640000px;}
.y31b{bottom:500.280540px;}
.y339{bottom:503.700000px;}
.y2d5{bottom:506.400000px;}
.y2c3{bottom:507.300000px;}
.y14{bottom:508.620468px;}
.y28d{bottom:509.880900px;}
.y376{bottom:512.040600px;}
.y13a{bottom:514.200600px;}
.y338{bottom:514.860000px;}
.ye6{bottom:515.280300px;}
.y3a{bottom:515.281170px;}
.y228{bottom:515.460000px;}
.y1fd{bottom:518.340000px;}
.y2a0{bottom:523.860450px;}
.y19f{bottom:524.100450px;}
.y337{bottom:525.840000px;}
.y5b{bottom:526.710420px;}
.y314{bottom:527.459550px;}
.y31a{bottom:528.000090px;}
.y375{bottom:530.305203px;}
.y28c{bottom:530.580900px;}
.y9e{bottom:533.280000px;}
.y2c2{bottom:533.400000px;}
.y39{bottom:534.811152px;}
.ye5{bottom:535.980300px;}
.y227{bottom:536.160000px;}
.y19a{bottom:538.860000px;}
.y336{bottom:538.980000px;}
.y1fc{bottom:539.040000px;}
.y9f{bottom:540.480000px;}
.y198{bottom:542.100000px;}
.y117{bottom:543.000000px;}
.y139{bottom:543.900600px;}
.y374{bottom:545.875779px;}
.y2d4{bottom:547.800000px;}
.y335{bottom:549.420000px;}
.y319{bottom:550.860390px;}
.y28b{bottom:551.280300px;}
.y13{bottom:551.551170px;}
.y313{bottom:551.940000px;}
.y1cf{bottom:553.080000px;}
.y9d{bottom:553.980000px;}
.y2c1{bottom:554.100000px;}
.y38{bottom:554.250954px;}
.ye4{bottom:556.680300px;}
.y199{bottom:556.860000px;}
.y19d{bottom:556.860300px;}
.y16c{bottom:558.480000px;}
.y5a{bottom:558.840096px;}
.y372{bottom:558.930450px;}
.y334{bottom:560.400000px;}
.y373{bottom:561.536130px;}
.y116{bottom:563.700000px;}
.y226{bottom:564.060000px;}
.y138{bottom:565.140300px;}
.y29f{bottom:565.260450px;}
.y2d3{bottom:568.500000px;}
.y1fb{bottom:568.740000px;}
.y333{bottom:571.200000px;}
.y28a{bottom:571.980300px;}
.y19c{bottom:572.520000px;}
.y1ce{bottom:573.780000px;}
.y37{bottom:573.780936px;}
.y9c{bottom:574.680000px;}
.y2c0{bottom:574.800000px;}
.y371{bottom:577.106706px;}
.y225{bottom:577.560000px;}
.y16b{bottom:579.180000px;}
.ye3{bottom:581.520000px;}
.y332{bottom:582.540000px;}
.y115{bottom:584.400000px;}
.y29e{bottom:585.960450px;}
.y2f0{bottom:586.860450px;}
.y318{bottom:588.300090px;}
.y2d2{bottom:589.200000px;}
.y1fa{bottom:589.440000px;}
.y59{bottom:590.969772px;}
.y289{bottom:592.680300px;}
.y370{bottom:592.767057px;}
.y36{bottom:593.310918px;}
.y331{bottom:593.520000px;}
.y1cd{bottom:594.480000px;}
.y12{bottom:594.570810px;}
.y9b{bottom:595.380000px;}
.y2bf{bottom:595.500000px;}
.y2e8{bottom:597.480150px;}
.y16a{bottom:599.880000px;}
.ye2{bottom:602.220000px;}
.y330{bottom:604.500000px;}
.y114{bottom:605.100000px;}
.y113{bottom:605.100600px;}
.y29d{bottom:606.660450px;}
.y137{bottom:606.900600px;}
.y2ef{bottom:607.560450px;}
.y36f{bottom:608.336436px;}
.y288{bottom:613.380300px;}
.y1cc{bottom:615.180000px;}
.y9a{bottom:616.080000px;}
.y2be{bottom:616.200000px;}
.y32f{bottom:617.460000px;}
.y224{bottom:619.680000px;}
.y197{bottom:620.040150px;}
.y35{bottom:620.130450px;}
.y169{bottom:620.580000px;}
.y2e7{bottom:621.960000px;}
.ye1{bottom:622.920000px;}
.y58{bottom:623.099448px;}
.y36e{bottom:623.905815px;}
.y317{bottom:624.120150px;}
.y112{bottom:626.160300px;}
.y29c{bottom:627.360450px;}
.y32e{bottom:628.260000px;}
.y2ee{bottom:628.260450px;}
.y287{bottom:634.080300px;}
.y196{bottom:635.160300px;}
.y1cb{bottom:635.880000px;}
.y99{bottom:636.780000px;}
.y2bd{bottom:636.900000px;}
.y11{bottom:637.590450px;}
.y36d{bottom:639.566166px;}
.y32d{bottom:639.960000px;}
.y168{bottom:641.280000px;}
.ydf{bottom:643.620000px;}
.y111{bottom:647.220000px;}
.y110{bottom:647.220600px;}
.y34{bottom:647.491746px;}
.y136{bottom:648.300600px;}
.y32c{bottom:650.400000px;}
.ye0{bottom:650.820000px;}
.y304{bottom:653.460300px;}
.y286{bottom:654.780300px;}
.y36c{bottom:655.136742px;}
.y57{bottom:655.229124px;}
.y2ed{bottom:655.980000px;}
.y2b3{bottom:656.880150px;}
.y98{bottom:657.480000px;}
.y32b{bottom:661.200000px;}
.y167{bottom:661.980000px;}
.y25b{bottom:662.880300px;}
.y2bc{bottom:663.000000px;}
.yde{bottom:664.320000px;}
.y33{bottom:667.021728px;}
.y135{bottom:669.000600px;}
.y25c{bottom:670.080000px;}
.y316{bottom:670.200000px;}
.y36b{bottom:670.797093px;}
.y32a{bottom:673.080000px;}
.y215{bottom:673.860000px;}
.y214{bottom:674.040000px;}
.y285{bottom:675.480300px;}
.y2ec{bottom:676.680000px;}
.y10f{bottom:676.920600px;}
.y2b2{bottom:681.360000px;}
.y166{bottom:682.680000px;}
.y25a{bottom:683.580300px;}
.y329{bottom:684.420000px;}
.ydd{bottom:685.020000px;}
.y36a{bottom:686.367669px;}
.y32{bottom:686.551710px;}
.y1c9{bottom:686.639850px;}
.y1ca{bottom:686.640000px;}
.y195{bottom:686.820000px;}
.y56{bottom:687.358800px;}
.y2bb{bottom:689.100000px;}
.y134{bottom:689.700600px;}
.y303{bottom:690.900000px;}
.y315{bottom:693.060300px;}
.y1f9{bottom:696.000000px;}
.y284{bottom:696.180300px;}
.y10{bottom:696.720450px;}
.y2eb{bottom:697.380000px;}
.y96{bottom:698.880000px;}
.y369{bottom:702.028020px;}
.y29b{bottom:702.420150px;}
.y259{bottom:704.280300px;}
.y324{bottom:705.480150px;}
.ydc{bottom:705.720000px;}
.y97{bottom:706.080000px;}
.y31{bottom:706.081692px;}
.y10e{bottom:706.620000px;}
.y213{bottom:706.800000px;}
.y2ba{bottom:709.800000px;}
.y222{bottom:710.040000px;}
.y133{bottom:710.400000px;}
.y194{bottom:712.380000px;}
.y302{bottom:713.760300px;}
.y283{bottom:716.880300px;}
.y223{bottom:717.240000px;}
.y1c8{bottom:717.419700px;}
.y368{bottom:717.598596px;}
.y55{bottom:719.488476px;}
.y95{bottom:719.580000px;}
.y165{bottom:724.080000px;}
.y258{bottom:725.520000px;}
.y256{bottom:725.520600px;}
.y30{bottom:725.611674px;}
.ydb{bottom:726.420000px;}
.y10d{bottom:727.320000px;}
.y328{bottom:729.060450px;}
.y323{bottom:729.960000px;}
.y2b9{bottom:730.500000px;}
.y221{bottom:730.740000px;}
.y132{bottom:731.100000px;}
.y257{bottom:732.720000px;}
.y193{bottom:733.080000px;}
.y367{bottom:733.169172px;}
.yf{bottom:735.689550px;}
.y282{bottom:737.580300px;}
.y212{bottom:739.560000px;}
.y211{bottom:739.740000px;}
.y94{bottom:740.280000px;}
.y164{bottom:744.780000px;}
.y163{bottom:744.780300px;}
.y2f{bottom:745.051476px;}
.y1c7{bottom:745.139850px;}
.y1f7{bottom:745.320000px;}
.y255{bottom:746.220600px;}
.y29a{bottom:747.240300px;}
.y10c{bottom:748.020000px;}
.y366{bottom:748.829523px;}
.y2b8{bottom:751.200000px;}
.y220{bottom:751.440000px;}
.y54{bottom:751.618152px;}
.y192{bottom:753.780000px;}
.y7a{bottom:757.290450px;}
.y281{bottom:758.280300px;}
.y1c5{bottom:760.619880px;}
.y93{bottom:760.980000px;}
.y1f1{bottom:760.980600px;}
.y1c6{bottom:762.960000px;}
.y365{bottom:764.400099px;}
.y2e{bottom:764.581458px;}
.ye{bottom:766.650450px;}
.y254{bottom:766.920000px;}
.yda{bottom:767.820000px;}
.y10b{bottom:768.720000px;}
.y21f{bottom:772.140000px;}
.y210{bottom:772.320000px;}
.y131{bottom:772.500000px;}
.y191{bottom:774.480000px;}
.y1c4{bottom:776.099730px;}
.y280{bottom:778.980300px;}
.y53{bottom:779.788440px;}
.y364{bottom:780.060450px;}
.y92{bottom:781.680000px;}
.y2d{bottom:784.111440px;}
.y162{bottom:786.720000px;}
.y79{bottom:786.990450px;}
.y253{bottom:787.620000px;}
.y123{bottom:787.800000px;}
.y17f{bottom:787.980600px;}
.y10a{bottom:789.420000px;}
.yd9{bottom:790.140000px;}
.y1c3{bottom:791.760030px;}
.y363{bottom:792.390450px;}
.y21e{bottom:792.840000px;}
.y299{bottom:793.140300px;}
.y130{bottom:793.200600px;}
.yd{bottom:796.530450px;}
.y27f{bottom:799.680300px;}
.y362{bottom:802.110600px;}
.y90{bottom:802.380000px;}
.y1f0{bottom:802.380600px;}
.y2c{bottom:803.641422px;}
.y18f{bottom:804.180600px;}
.y20f{bottom:805.260000px;}
.y78{bottom:807.690450px;}
.y161{bottom:807.780150px;}
.y252{bottom:808.320000px;}
.y17e{bottom:808.680600px;}
.y1c0{bottom:808.860000px;}
.y52{bottom:809.039160px;}
.y91{bottom:809.580000px;}
.y109{bottom:810.120000px;}
.y1c2{bottom:810.660000px;}
.y190{bottom:811.380000px;}
.yd8{bottom:812.640000px;}
.y21d{bottom:813.540000px;}
.yc7{bottom:813.720000px;}
.y12f{bottom:813.900000px;}
.y361{bottom:819.030450px;}
.yc{bottom:820.110600px;}
.y27e{bottom:820.380300px;}
.yc8{bottom:820.920000px;}
.y8f{bottom:823.080000px;}
.y1ef{bottom:823.080600px;}
.y2b{bottom:823.081224px;}
.y77{bottom:828.390450px;}
.y1c1{bottom:828.660000px;}
.y251{bottom:829.020000px;}
.y17d{bottom:829.380600px;}
.y1bf{bottom:830.460300px;}
.y108{bottom:830.820000px;}
.y18e{bottom:833.880600px;}
.y21c{bottom:834.240000px;}
.yc6{bottom:834.420000px;}
.y12e{bottom:834.600000px;}
.y20e{bottom:836.040000px;}
.y51{bottom:838.289880px;}
.y27d{bottom:841.080300px;}
.yb{bottom:841.170450px;}
.y2a{bottom:842.611206px;}
.y8e{bottom:843.780000px;}
.y1bd{bottom:847.380450px;}
.y76{bottom:848.910450px;}
.y250{bottom:849.720000px;}
.y160{bottom:849.899700px;}
.y17c{bottom:850.080600px;}
.y107{bottom:851.520000px;}
.y18d{bottom:854.580600px;}
.y21b{bottom:854.940000px;}
.yc5{bottom:855.120000px;}
.y12c{bottom:855.300000px;}
.yd7{bottom:855.660000px;}
.y360{bottom:857.637837px;}
.y27c{bottom:861.780300px;}
.y29{bottom:862.141188px;}
.y12d{bottom:862.500000px;}
.y1be{bottom:862.680450px;}
.y20c{bottom:863.041500px;}
.y8c{bottom:864.480000px;}
.y1ee{bottom:864.480600px;}
.y50{bottom:867.535860px;}
.y75{bottom:869.610450px;}
.y24e{bottom:870.420000px;}
.y17b{bottom:870.780600px;}
.y15f{bottom:870.960000px;}
.y8d{bottom:871.680000px;}
.y21a{bottom:875.640000px;}
.y218{bottom:875.640300px;}
.yc4{bottom:875.820000px;}
.y12b{bottom:876.000000px;}
.yd6{bottom:876.360000px;}
.y24f{bottom:877.620000px;}
.y105{bottom:881.220000px;}
.y28{bottom:881.671170px;}
.y27b{bottom:882.480300px;}
.y219{bottom:882.840000px;}
.y18c{bottom:884.280600px;}
.y8b{bottom:885.180000px;}
.y1ed{bottom:885.180600px;}
.y106{bottom:888.420000px;}
.y24d{bottom:891.120000px;}
.y17a{bottom:891.480600px;}
.y1bc{bottom:894.000000px;}
.y1b9{bottom:894.360000px;}
.y35f{bottom:894.718350px;}
.y217{bottom:896.340300px;}
.yc2{bottom:896.520000px;}
.y4f{bottom:896.786580px;}
.yd5{bottom:897.060000px;}
.y20b{bottom:897.420000px;}
.y74{bottom:899.490450px;}
.y15e{bottom:900.660000px;}
.y27{bottom:901.110972px;}
.y104{bottom:901.920000px;}
.y27a{bottom:903.180300px;}
.yc3{bottom:903.720000px;}
.y18b{bottom:904.980600px;}
.ya{bottom:905.789784px;}
.y1ec{bottom:905.880600px;}
.y1ba{bottom:909.300000px;}
.y24c{bottom:911.820000px;}
.y179{bottom:912.180600px;}
.y35e{bottom:914.428692px;}
.yc1{bottom:917.220000px;}
.y12a{bottom:917.400000px;}
.yd4{bottom:917.760000px;}
.y26{bottom:920.640954px;}
.y103{bottom:922.620000px;}
.y279{bottom:923.880300px;}
.y1bb{bottom:924.960300px;}
.y18a{bottom:925.680000px;}
.y4e{bottom:925.946715px;}
.y73{bottom:929.190450px;}
.y24b{bottom:932.520000px;}
.y178{bottom:932.880600px;}
.y35d{bottom:934.229214px;}
.yc0{bottom:937.920000px;}
.y216{bottom:938.100000px;}
.yd3{bottom:938.460000px;}
.y25{bottom:940.170936px;}
.y102{bottom:943.320000px;}
.y278{bottom:944.580300px;}
.y89{bottom:945.120000px;}
.y189{bottom:946.380000px;}
.y1eb{bottom:947.280600px;}
.y72{bottom:949.890450px;}
.y8a{bottom:952.320000px;}
.y249{bottom:953.220000px;}
.y177{bottom:953.580600px;}
.y35c{bottom:954.029736px;}
.y4d{bottom:955.197435px;}
.y9{bottom:956.910450px;}
.y1b8{bottom:957.360000px;}
.ybf{bottom:958.620000px;}
.y128{bottom:958.800000px;}
.yd2{bottom:959.160000px;}
.y24{bottom:959.700918px;}
.y15d{bottom:960.060000px;}
.y24a{bottom:960.420000px;}
.y101{bottom:964.020000px;}
.y277{bottom:965.280300px;}
.y1d9{bottom:965.280600px;}
.y88{bottom:965.820000px;}
.y129{bottom:966.000000px;}
.y187{bottom:967.080000px;}
.y71{bottom:970.590450px;}
.y35b{bottom:973.830258px;}
.y248{bottom:973.920000px;}
.y188{bottom:974.280000px;}
.y176{bottom:974.280600px;}
.y1ea{bottom:976.980600px;}
.ybe{bottom:979.320000px;}
.y127{bottom:979.500000px;}
.y8{bottom:979.860450px;}
.y15c{bottom:981.300000px;}
.y4c{bottom:984.448155px;}
.y100{bottom:984.720000px;}
.y276{bottom:985.979700px;}
.y1d8{bottom:985.980000px;}
.y1d6{bottom:985.980150px;}
.y87{bottom:986.520000px;}
.y23{bottom:986.520450px;}
.y186{bottom:987.780000px;}
.y70{bottom:991.290450px;}
.y1d7{bottom:993.180000px;}
.y35a{bottom:993.540600px;}
.y247{bottom:994.620000px;}
.y175{bottom:994.980000px;}
.y7{bottom:999.661233px;}
.ybd{bottom:1000.020000px;}
.y126{bottom:1000.200000px;}
.y15b{bottom:1002.180300px;}
.yff{bottom:1005.420000px;}
.y1d5{bottom:1006.680150px;}
.y1e9{bottom:1006.680600px;}
.y86{bottom:1007.220000px;}
.y185{bottom:1008.480000px;}
.y6f{bottom:1011.990450px;}
.y4b{bottom:1013.698875px;}
.y246{bottom:1015.320000px;}
.y275{bottom:1015.679700px;}
.y20a{bottom:1018.018500px;}
.yd1{bottom:1018.560000px;}
.y22{bottom:1019.190450px;}
.ybc{bottom:1020.720000px;}
.y15a{bottom:1023.060150px;}
.y6{bottom:1023.690756px;}
.y122{bottom:1023.960300px;}
.yfe{bottom:1026.120000px;}
.y1d4{bottom:1027.380150px;}
.y1b7{bottom:1027.380450px;}
.y1e8{bottom:1027.380600px;}
.y85{bottom:1027.920000px;}
.y184{bottom:1029.180000px;}
.y274{bottom:1036.379700px;}
.y174{bottom:1036.380000px;}
.y244{bottom:1036.380150px;}
.y21{bottom:1038.630351px;}
.y359{bottom:1038.990468px;}
.y6e{bottom:1041.690450px;}
.y4a{bottom:1042.949595px;}
.y245{bottom:1043.580000px;}
.yd0{bottom:1043.940000px;}
.yfd{bottom:1046.820000px;}
.y121{bottom:1047.000000px;}
.y5{bottom:1047.810450px;}
.y1b6{bottom:1048.079850px;}
.y1e7{bottom:1048.080000px;}
.y1d3{bottom:1048.080150px;}
.y84{bottom:1048.620000px;}
.y183{bottom:1049.880000px;}
.y243{bottom:1057.080150px;}
.y358{bottom:1058.520450px;}
.y125{bottom:1059.780000px;}
.ybb{bottom:1062.120000px;}
.y6d{bottom:1062.210450px;}
.y159{bottom:1064.819850px;}
.y1b5{bottom:1068.779850px;}
.y1e6{bottom:1068.780000px;}
.y83{bottom:1069.320000px;}
.y182{bottom:1070.579400px;}
.y20{bottom:1071.390450px;}
.y49{bottom:1072.200315px;}
.y1d2{bottom:1077.780150px;}
.y6c{bottom:1083.090450px;}
.y173{bottom:1088.220000px;}
.y1b4{bottom:1089.479850px;}
.y1e5{bottom:1089.480000px;}
.y82{bottom:1090.020000px;}
.y181{bottom:1091.819700px;}
.y158{bottom:1094.519850px;}
.y4{bottom:1095.240450px;}
.yfc{bottom:1098.480000px;}
.y1d1{bottom:1098.480150px;}
.y48{bottom:1101.360450px;}
.y357{bottom:1101.900450px;}
.y6b{bottom:1107.840450px;}
.y1f{bottom:1110.810450px;}
.y157{bottom:1119.179550px;}
.y273{bottom:1119.179700px;}
.y1e4{bottom:1119.180000px;}
.y124{bottom:1126.200000px;}
.y6a{bottom:1132.590450px;}
.y172{bottom:1133.760000px;}
.y1b3{bottom:1135.200000px;}
.y47{bottom:1136.820450px;}
.y3{bottom:1141.949118px;}
.y1e{bottom:1143.570450px;}
.y69{bottom:1157.340450px;}
.y81{bottom:1161.120000px;}
.y1e3{bottom:1163.640000px;}
.yfb{bottom:1165.260000px;}
.y2{bottom:1193.069784px;}
.y1f6{bottom:1225.558500px;}
.y1{bottom:1244.190450px;}
.h25{height:12.959760px;}
.h39{height:12.978000px;}
.h21{height:14.580465px;}
.h17{height:16.739700px;}
.h1e{height:16.740300px;}
.h32{height:19.979850px;}
.h33{height:19.980450px;}
.h2c{height:20.159700px;}
.h36{height:20.160300px;}
.h16{height:27.622080px;}
.h10{height:29.265996px;}
.h11{height:32.027344px;}
.h2a{height:32.904000px;}
.h38{height:34.521480px;}
.h13{height:34.827840px;}
.h27{height:35.732880px;}
.h26{height:37.266480px;}
.h29{height:37.746000px;}
.h28{height:37.982160px;}
.h4{height:38.934000px;}
.h1f{height:40.122000px;}
.h1a{height:40.232160px;}
.h37{height:41.459040px;}
.h1b{height:42.634080px;}
.h8{height:43.346520px;}
.hb{height:45.035156px;}
.hc{height:45.054116px;}
.h2{height:47.499480px;}
.h19{height:47.988281px;}
.he{height:48.761719px;}
.hf{height:48.796875px;}
.h14{height:49.176000px;}
.h20{height:49.356000px;}
.h18{height:49.752000px;}
.h15{height:49.839840px;}
.hd{height:50.027344px;}
.h1d{height:50.328000px;}
.h9{height:51.912000px;}
.h2b{height:52.842240px;}
.h2f{height:53.732160px;}
.h2e{height:54.354240px;}
.h23{height:54.620640px;}
.ha{height:57.012187px;}
.h22{height:58.716960px;}
.h12{height:60.048000px;}
.h1{height:60.477480px;}
.h5{height:64.890000px;}
.h24{height:65.808000px;}
.h7{height:69.302520px;}
.h6{height:77.868000px;}
.h31{height:81.648000px;}
.h1c{height:82.866240px;}
.h3{height:103.824000px;}
.h35{height:119.808960px;}
.h34{height:123.406800px;}
.h30{height:123.409200px;}
.h2d{height:892.500000px;}
.h0{height:1263.000000px;}
.w4{width:0.179883px;}
.w2{width:0.180469px;}
.w6{width:38.340300px;}
.w5{width:70.019550px;}
.w3{width:76.859700px;}
.w8{width:99.540300px;}
.w9{width:108.540300px;}
.wa{width:214.920000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x38{left:72.719374px;}
.x2f{left:76.679850px;}
.x7f{left:78.827436px;}
.x30{left:80.459700px;}
.x35{left:83.159700px;}
.x8{left:85.050000px;}
.x32{left:88.559700px;}
.x4a{left:90.540300px;}
.x7{left:93.690000px;}
.x21{left:95.220150px;}
.x12{left:96.840195px;}
.x6c{left:99.000000px;}
.x16{left:100.440300px;}
.x65{left:101.520150px;}
.x40{left:103.320150px;}
.x1f{left:104.579850px;}
.x5{left:106.290000px;}
.x1a{left:108.540300px;}
.x27{left:110.340300px;}
.x18{left:112.140300px;}
.x4{left:114.390000px;}
.x3d{left:116.100000px;}
.x1d{left:120.240300px;}
.x6{left:122.758353px;}
.x20{left:125.279850px;}
.x1{left:129.150000px;}
.x31{left:132.120150px;}
.x41{left:134.820111px;}
.x22{left:139.140300px;}
.x7e{left:148.845750px;}
.x63{left:150.660000px;}
.x1b{left:154.620489px;}
.x3a{left:157.320516px;}
.x54{left:158.760000px;}
.x53{left:160.020000px;}
.x75{left:161.819875px;}
.x39{left:166.320516px;}
.x6d{left:167.400000px;}
.x4f{left:170.640126px;}
.x80{left:171.886500px;}
.x62{left:173.520000px;}
.x55{left:174.780000px;}
.x76{left:179.456907px;}
.x2{left:182.070000px;}
.x3e{left:184.860000px;}
.x6a{left:188.820000px;}
.x60{left:191.520000px;}
.x2b{left:192.600000px;}
.x1c{left:195.840000px;}
.x73{left:197.818319px;}
.x58{left:201.600000px;}
.x2c{left:203.040000px;}
.x77{left:206.816060px;}
.x61{left:207.900000px;}
.x1e{left:211.680000px;}
.x33{left:212.940000px;}
.x5a{left:214.020000px;}
.x59{left:230.760000px;}
.x74{left:238.319899px;}
.x2d{left:242.820000px;}
.x43{left:247.140000px;}
.x2e{left:253.440000px;}
.x6e{left:257.400000px;}
.x6f{left:276.840000px;}
.x70{left:280.260000px;}
.x13{left:301.320000px;}
.x6b{left:304.560000px;}
.x37{left:312.300000px;}
.x14{left:314.460000px;}
.x25{left:328.500000px;}
.x3b{left:334.080000px;}
.x28{left:338.400000px;}
.x5b{left:347.940000px;}
.x4b{left:349.740000px;}
.x15{left:359.820000px;}
.x29{left:362.340000px;}
.x7c{left:367.366679px;}
.x2a{left:376.380000px;}
.x4c{left:382.320000px;}
.x79{left:384.300000px;}
.x71{left:410.580000px;}
.x72{left:414.360000px;}
.x11{left:421.920000px;}
.x8b{left:423.166500px;}
.x5c{left:426.780000px;}
.x3c{left:428.760000px;}
.x34{left:436.140000px;}
.x45{left:437.580000px;}
.x3f{left:440.640000px;}
.xa{left:442.080000px;}
.x52{left:444.599374px;}
.x48{left:449.460000px;}
.x8f{left:451.710000px;}
.x56{left:464.580000px;}
.x26{left:473.400000px;}
.x57{left:475.920000px;}
.xd{left:479.880000px;}
.x10{left:492.480000px;}
.xe{left:495.900000px;}
.x3{left:507.689892px;}
.x7b{left:519.106500px;}
.x44{left:527.400000px;}
.x8c{left:533.866500px;}
.x4d{left:553.860000px;}
.x78{left:555.840000px;}
.x50{left:577.979562px;}
.x5f{left:579.420000px;}
.x17{left:584.100000px;}
.x19{left:585.360000px;}
.xf{left:586.800000px;}
.xb{left:603.180000px;}
.x46{left:618.120000px;}
.x7a{left:622.606500px;}
.x88{left:629.266500px;}
.x47{left:636.120000px;}
.x4e{left:663.660000px;}
.x51{left:686.159436px;}
.x7d{left:692.269777px;}
.xc{left:709.560000px;}
.x67{left:724.140000px;}
.x36{left:726.840000px;}
.x23{left:728.820000px;}
.x8e{left:742.126500px;}
.x24{left:747.000000px;}
.x42{left:748.980000px;}
.x68{left:750.600000px;}
.x5d{left:765.720000px;}
.x69{left:768.060000px;}
.x66{left:770.400000px;}
.x5e{left:780.660000px;}
.x8d{left:793.966500px;}
.x49{left:796.320000px;}
.x64{left:798.480000px;}
.x9{left:799.560000px;}
.x84{left:882.166500px;}
.x89{left:884.866500px;}
.x85{left:887.026500px;}
.x83{left:892.786500px;}
.x8a{left:897.106500px;}
.x86{left:905.386500px;}
.x82{left:912.766500px;}
.x87{left:915.646500px;}
.x81{left:918.346500px;}
@media print{
.v4{vertical-align:-53.760533pt;}
.v2{vertical-align:-20.481227pt;}
.v1{vertical-align:-16.000000pt;}
.v6{vertical-align:-9.600000pt;}
.v8{vertical-align:-8.318773pt;}
.v5{vertical-align:-7.039573pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.320853pt;}
.va{vertical-align:19.200000pt;}
.v3{vertical-align:20.481227pt;}
.vb{vertical-align:53.120853pt;}
.v9{vertical-align:56.321067pt;}
.ls49{letter-spacing:-0.339200pt;}
.ls56{letter-spacing:-0.336672pt;}
.ls4b{letter-spacing:-0.332800pt;}
.ls55{letter-spacing:-0.320896pt;}
.ls46{letter-spacing:-0.281600pt;}
.ls4a{letter-spacing:-0.275200pt;}
.ls47{letter-spacing:-0.268800pt;}
.ls4e{letter-spacing:-0.262400pt;}
.ls48{letter-spacing:-0.256000pt;}
.ls4d{letter-spacing:-0.243200pt;}
.ls52{letter-spacing:-0.236800pt;}
.ls57{letter-spacing:-0.229792pt;}
.ls51{letter-spacing:-0.224000pt;}
.ls54{letter-spacing:-0.217600pt;}
.ls50{letter-spacing:-0.192000pt;}
.ls53{letter-spacing:-0.172800pt;}
.ls4f{letter-spacing:-0.160992pt;}
.ls12{letter-spacing:-0.138944pt;}
.ls1f{letter-spacing:-0.117568pt;}
.ls4c{letter-spacing:-0.115200pt;}
.ls20{letter-spacing:-0.106880pt;}
.ls6f{letter-spacing:-0.085120pt;}
.ls3e{letter-spacing:-0.070272pt;}
.ls14{letter-spacing:-0.068352pt;}
.ls6a{letter-spacing:-0.068096pt;}
.ls38{letter-spacing:-0.064416pt;}
.ls21{letter-spacing:-0.058784pt;}
.ls1e{letter-spacing:-0.053440pt;}
.ls16{letter-spacing:-0.048096pt;}
.ls3c{letter-spacing:-0.046848pt;}
.ls15{letter-spacing:-0.042752pt;}
.ls6e{letter-spacing:-0.042560pt;}
.ls42{letter-spacing:-0.040992pt;}
.ls6d{letter-spacing:-0.038304pt;}
.ls1c{letter-spacing:-0.037408pt;}
.ls36{letter-spacing:-0.035136pt;}
.ls19{letter-spacing:-0.032064pt;}
.ls37{letter-spacing:-0.029280pt;}
.ls69{letter-spacing:-0.028800pt;}
.ls1d{letter-spacing:-0.026720pt;}
.ls13{letter-spacing:-0.025632pt;}
.ls43{letter-spacing:-0.023424pt;}
.ls1b{letter-spacing:-0.021376pt;}
.ls6{letter-spacing:-0.019200pt;}
.ls41{letter-spacing:-0.017568pt;}
.ls18{letter-spacing:-0.016032pt;}
.ls3a{letter-spacing:-0.011712pt;}
.ls17{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.005856pt;}
.ls1a{letter-spacing:-0.005344pt;}
.ls6c{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.005344pt;}
.ls5{letter-spacing:0.007456pt;}
.ls5a{letter-spacing:0.009478pt;}
.lsb{letter-spacing:0.010688pt;}
.ls26{letter-spacing:0.011712pt;}
.ls67{letter-spacing:0.012768pt;}
.ls44{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.016032pt;}
.ls45{letter-spacing:0.019200pt;}
.lse{letter-spacing:0.021376pt;}
.ls0{letter-spacing:0.022368pt;}
.lsd{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.032064pt;}
.ls64{letter-spacing:0.034048pt;}
.ls31{letter-spacing:0.035136pt;}
.ls5b{letter-spacing:0.035757pt;}
.ls5f{letter-spacing:0.037280pt;}
.lsf{letter-spacing:0.037408pt;}
.ls65{letter-spacing:0.038304pt;}
.ls29{letter-spacing:0.040992pt;}
.ls66{letter-spacing:0.042560pt;}
.ls10{letter-spacing:0.042752pt;}
.ls7{letter-spacing:0.044800pt;}
.ls68{letter-spacing:0.051072pt;}
.ls1{letter-spacing:0.052704pt;}
.ls63{letter-spacing:0.055328pt;}
.ls2e{letter-spacing:0.058560pt;}
.lsc{letter-spacing:0.058784pt;}
.ls11{letter-spacing:0.062400pt;}
.ls6b{letter-spacing:0.063840pt;}
.ls34{letter-spacing:0.064416pt;}
.ls4{letter-spacing:0.067104pt;}
.ls5c{letter-spacing:0.069965pt;}
.ls23{letter-spacing:0.070272pt;}
.ls5d{letter-spacing:0.071514pt;}
.ls3f{letter-spacing:0.081984pt;}
.ls61{letter-spacing:0.093632pt;}
.ls60{letter-spacing:0.097888pt;}
.ls33{letter-spacing:0.099552pt;}
.ls3d{letter-spacing:0.111264pt;}
.ls62{letter-spacing:0.131936pt;}
.ls2d{letter-spacing:0.158112pt;}
.ls39{letter-spacing:0.163968pt;}
.ls40{letter-spacing:0.187392pt;}
.ls59{letter-spacing:0.203904pt;}
.ls28{letter-spacing:0.204960pt;}
.ls58{letter-spacing:0.271279pt;}
.ls35{letter-spacing:0.843264pt;}
.ls2b{letter-spacing:1.165344pt;}
.ls5e{letter-spacing:52.441472pt;}
.ls2a{letter-spacing:56.205888pt;}
.ls2f{letter-spacing:58.442880pt;}
.ls24{letter-spacing:59.725344pt;}
.ls2c{letter-spacing:61.324032pt;}
.ls32{letter-spacing:70.283712pt;}
.ls22{letter-spacing:74.763552pt;}
.ls30{letter-spacing:85.005696pt;}
.ls27{letter-spacing:100.043904pt;}
.ls25{letter-spacing:103.563360pt;}
.ws4b{word-spacing:-58.560000pt;}
.ws8b{word-spacing:-17.280000pt;}
.ws7b{word-spacing:-16.000000pt;}
.ws7f{word-spacing:-13.344000pt;}
.ws79{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.972800pt;}
.ws8{word-spacing:-12.928000pt;}
.ws8a{word-spacing:-12.632320pt;}
.ws91{word-spacing:-11.208960pt;}
.ws7d{word-spacing:-9.280000pt;}
.ws7c{word-spacing:-7.360000pt;}
.ws63{word-spacing:-4.140800pt;}
.ws6c{word-spacing:-3.916800pt;}
.ws75{word-spacing:-2.707200pt;}
.ws74{word-spacing:-2.579200pt;}
.ws76{word-spacing:-2.342400pt;}
.ws71{word-spacing:-1.804800pt;}
.ws62{word-spacing:-1.798400pt;}
.ws38{word-spacing:-1.432192pt;}
.ws33{word-spacing:-1.394784pt;}
.ws32{word-spacing:-1.384096pt;}
.ws34{word-spacing:-1.378752pt;}
.ws64{word-spacing:-1.324800pt;}
.ws70{word-spacing:-1.120000pt;}
.ws6f{word-spacing:-1.088000pt;}
.ws65{word-spacing:-0.947200pt;}
.ws78{word-spacing:-0.651968pt;}
.ws77{word-spacing:-0.545088pt;}
.ws59{word-spacing:-0.245952pt;}
.ws98{word-spacing:-0.235136pt;}
.ws95{word-spacing:-0.224448pt;}
.ws4d{word-spacing:-0.222528pt;}
.ws56{word-spacing:-0.216672pt;}
.ws9d{word-spacing:-0.195776pt;}
.ws54{word-spacing:-0.169824pt;}
.ws9b{word-spacing:-0.161728pt;}
.ws5d{word-spacing:-0.158112pt;}
.ws9c{word-spacing:-0.157472pt;}
.ws94{word-spacing:-0.149632pt;}
.ws58{word-spacing:-0.140544pt;}
.ws46{word-spacing:-0.133600pt;}
.ws9f{word-spacing:-0.127680pt;}
.ws5e{word-spacing:-0.122976pt;}
.wsa0{word-spacing:-0.119168pt;}
.ws57{word-spacing:-0.117120pt;}
.wsa9{word-spacing:-0.114912pt;}
.ws53{word-spacing:-0.111264pt;}
.wsa2{word-spacing:-0.102144pt;}
.ws45{word-spacing:-0.101536pt;}
.ws52{word-spacing:-0.099552pt;}
.wsa1{word-spacing:-0.097888pt;}
.ws5a{word-spacing:-0.093696pt;}
.ws2{word-spacing:-0.089472pt;}
.wsa7{word-spacing:-0.076608pt;}
.ws48{word-spacing:-0.074560pt;}
.ws4f{word-spacing:-0.070272pt;}
.ws6a{word-spacing:-0.064000pt;}
.ws55{word-spacing:-0.058560pt;}
.ws50{word-spacing:-0.052704pt;}
.ws66{word-spacing:-0.051200pt;}
.ws4e{word-spacing:-0.046848pt;}
.ws68{word-spacing:-0.044800pt;}
.ws5b{word-spacing:-0.040992pt;}
.ws6b{word-spacing:-0.038400pt;}
.ws5f{word-spacing:-0.035136pt;}
.ws4a{word-spacing:-0.029280pt;}
.wsa5{word-spacing:-0.025536pt;}
.ws49{word-spacing:-0.023424pt;}
.ws1{word-spacing:-0.022368pt;}
.ws61{word-spacing:-0.019200pt;}
.ws5c{word-spacing:-0.017568pt;}
.ws69{word-spacing:-0.012800pt;}
.ws51{word-spacing:-0.011712pt;}
.ws2c{word-spacing:-0.010688pt;}
.ws3{word-spacing:-0.007456pt;}
.ws0{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.004256pt;}
.ws4c{word-spacing:0.005856pt;}
.ws60{word-spacing:0.006400pt;}
.wsc{word-spacing:0.008544pt;}
.ws9{word-spacing:0.010688pt;}
.ws4{word-spacing:0.011712pt;}
.wsb{word-spacing:0.017088pt;}
.ws67{word-spacing:0.019200pt;}
.wsa8{word-spacing:0.021280pt;}
.wsa{word-spacing:0.051200pt;}
.ws99{word-spacing:0.058784pt;}
.ws5{word-spacing:0.064000pt;}
.wsa4{word-spacing:0.067200pt;}
.ws47{word-spacing:0.081600pt;}
.wsd{word-spacing:0.085440pt;}
.ws9a{word-spacing:0.091200pt;}
.ws97{word-spacing:0.112224pt;}
.ws6{word-spacing:0.144000pt;}
.ws96{word-spacing:0.144288pt;}
.ws30{word-spacing:0.165664pt;}
.ws31{word-spacing:0.208416pt;}
.ws8c{word-spacing:0.620698pt;}
.ws7a{word-spacing:0.658880pt;}
.ws42{word-spacing:1.111552pt;}
.ws41{word-spacing:1.164992pt;}
.ws37{word-spacing:1.426848pt;}
.ws15{word-spacing:1.469600pt;}
.ws1e{word-spacing:2.137600pt;}
.ws1f{word-spacing:2.148288pt;}
.ws20{word-spacing:2.164320pt;}
.ws17{word-spacing:3.377408pt;}
.ws2f{word-spacing:3.388096pt;}
.ws19{word-spacing:3.393440pt;}
.ws18{word-spacing:3.420160pt;}
.ws2e{word-spacing:3.698048pt;}
.ws40{word-spacing:3.703392pt;}
.ws2d{word-spacing:3.724768pt;}
.ws3f{word-spacing:3.756832pt;}
.ws28{word-spacing:4.024032pt;}
.ws3c{word-spacing:4.643936pt;}
.ws26{word-spacing:4.649280pt;}
.ws27{word-spacing:4.681344pt;}
.ws3b{word-spacing:4.777536pt;}
.ws90{word-spacing:5.738688pt;}
.ws43{word-spacing:5.953216pt;}
.ws44{word-spacing:5.958560pt;}
.ws12{word-spacing:7.241120pt;}
.ws13{word-spacing:7.561760pt;}
.ws14{word-spacing:7.567104pt;}
.wse{word-spacing:7.914464pt;}
.wsf{word-spacing:7.919808pt;}
.ws1b{word-spacing:8.133568pt;}
.ws1a{word-spacing:8.213728pt;}
.ws3e{word-spacing:8.838976pt;}
.ws3d{word-spacing:8.860352pt;}
.ws6d{word-spacing:9.216000pt;}
.ws11{word-spacing:9.437504pt;}
.ws10{word-spacing:9.453536pt;}
.ws6e{word-spacing:9.702400pt;}
.ws29{word-spacing:10.089472pt;}
.ws92{word-spacing:12.018656pt;}
.ws39{word-spacing:12.024000pt;}
.ws93{word-spacing:12.040032pt;}
.ws3a{word-spacing:12.061408pt;}
.ws8f{word-spacing:12.766592pt;}
.ws35{word-spacing:14.231072pt;}
.ws36{word-spacing:14.295200pt;}
.ws16{word-spacing:15.540352pt;}
.ws7e{word-spacing:16.028352pt;}
.ws72{word-spacing:17.472000pt;}
.ws73{word-spacing:17.606400pt;}
.ws1c{word-spacing:18.404736pt;}
.ws1d{word-spacing:18.468864pt;}
.ws2b{word-spacing:19.366656pt;}
.ws2a{word-spacing:19.404064pt;}
.ws23{word-spacing:20.654560pt;}
.ws25{word-spacing:20.686624pt;}
.ws24{word-spacing:20.724032pt;}
.ws22{word-spacing:23.529632pt;}
.ws21{word-spacing:23.534976pt;}
.wsa3{word-spacing:98.134848pt;}
.ws80{word-spacing:104.438167pt;}
.wsaa{word-spacing:104.863584pt;}
.wsa6{word-spacing:104.940192pt;}
.ws82{word-spacing:179.556000pt;}
.ws84{word-spacing:190.472160pt;}
.ws85{word-spacing:205.882560pt;}
.ws87{word-spacing:216.796800pt;}
.ws88{word-spacing:233.490240pt;}
.ws81{word-spacing:245.689920pt;}
.ws86{word-spacing:397.729790pt;}
.ws83{word-spacing:471.705076pt;}
.ws89{word-spacing:483.902405pt;}
.ws8d{word-spacing:1940.673747pt;}
.ws8e{word-spacing:1996.321747pt;}
._2d{margin-left:-540.275921pt;}
._4d{margin-left:-454.369193pt;}
._48{margin-left:-307.705797pt;}
._45{margin-left:-236.610847pt;}
._3f{margin-left:-213.124896pt;}
._2b{margin-left:-175.117505pt;}
._47{margin-left:-80.487380pt;}
._60{margin-left:-52.655784pt;}
._4c{margin-left:-45.594158pt;}
._4f{margin-left:-31.530176pt;}
._4a{margin-left:-25.924207pt;}
._a{margin-left:-14.346816pt;}
._41{margin-left:-13.024131pt;}
._b{margin-left:-10.750016pt;}
._16{margin-left:-8.363200pt;}
._8{margin-left:-7.437120pt;}
._6{margin-left:-5.792800pt;}
._29{margin-left:-4.634008pt;}
._4{margin-left:-3.507744pt;}
._9{margin-left:-2.412672pt;}
._2{margin-left:-1.088000pt;}
._3{width:1.079488pt;}
._7{width:2.575872pt;}
._5{width:3.466752pt;}
._12{width:4.374752pt;}
._10{width:5.734836pt;}
._13{width:6.810581pt;}
._0{width:7.977920pt;}
._25{width:9.109749pt;}
._1d{width:10.145889pt;}
._1b{width:11.039955pt;}
._26{width:12.333856pt;}
._20{width:13.353455pt;}
._18{width:14.729751pt;}
._1f{width:15.814259pt;}
._27{width:16.948955pt;}
._19{width:18.108795pt;}
._15{width:19.171391pt;}
._35{width:20.066802pt;}
._e{width:21.007705pt;}
._c{width:22.070275pt;}
._d{width:23.007441pt;}
._23{width:23.900054pt;}
._17{width:25.339201pt;}
._1{width:26.568672pt;}
._22{width:28.099716pt;}
._f{width:28.996664pt;}
._14{width:30.508030pt;}
._11{width:31.734107pt;}
._1c{width:32.845638pt;}
._2a{width:34.172314pt;}
._24{width:35.141430pt;}
._1e{width:36.901366pt;}
._28{width:37.829693pt;}
._31{width:39.623883pt;}
._21{width:41.728768pt;}
._42{width:42.650474pt;}
._30{width:43.544710pt;}
._43{width:44.819097pt;}
._1a{width:45.791535pt;}
._34{width:48.670860pt;}
._50{width:51.139160pt;}
._51{width:52.441472pt;}
._3e{width:54.020943pt;}
._32{width:55.020983pt;}
._33{width:56.642195pt;}
._2f{width:62.555078pt;}
._44{width:68.049794pt;}
._59{width:89.493867pt;}
._6a{width:112.442008pt;}
._5d{width:127.338667pt;}
._38{width:129.811520pt;}
._3d{width:140.929365pt;}
._2c{width:142.432640pt;}
._65{width:145.147200pt;}
._69{width:176.805333pt;}
._40{width:185.479104pt;}
._46{width:209.354950pt;}
._39{width:270.093855pt;}
._54{width:276.619355pt;}
._49{width:279.524346pt;}
._3a{width:283.360199pt;}
._63{width:332.272688pt;}
._36{width:391.835413pt;}
._3b{width:404.035093pt;}
._4e{width:427.470982pt;}
._4b{width:455.207059pt;}
._67{width:475.557333pt;}
._2e{width:508.048000pt;}
._5e{width:520.734411pt;}
._6c{width:541.229845pt;}
._5b{width:563.614411pt;}
._5f{width:681.002667pt;}
._37{width:688.793448pt;}
._3c{width:769.054253pt;}
._53{width:791.134411pt;}
._62{width:846.782411pt;}
._56{width:1066.474667pt;}
._52{width:1144.810667pt;}
._57{width:1170.756675pt;}
._5a{width:1174.899179pt;}
._58{width:1192.810667pt;}
._61{width:1200.458667pt;}
._68{width:1328.613333pt;}
._55{width:1395.434667pt;}
._6d{width:1419.941333pt;}
._64{width:1451.082667pt;}
._6b{width:1730.989845pt;}
._5c{width:1855.748675pt;}
._6e{width:1877.589333pt;}
._66{width:1922.762667pt;}
.fs15{font-size:16.000000pt;}
.fsa{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs9{font-size:37.440000pt;}
.fs13{font-size:40.320000pt;}
.fs14{font-size:42.560000pt;}
.fsd{font-size:42.880000pt;}
.fse{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs6{font-size:53.440000pt;}
.fs11{font-size:56.320000pt;}
.fs1{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs12{font-size:69.120000pt;}
.fs0{font-size:74.560000pt;}
.fs4{font-size:80.000000pt;}
.fs7{font-size:85.440000pt;}
.fsf{font-size:88.320000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y20d{bottom:1.918667pt;}
.y19b{bottom:2.240000pt;}
.yb3{bottom:3.040000pt;}
.y150{bottom:3.040133pt;}
.y2b4{bottom:3.359867pt;}
.y2d1{bottom:3.360400pt;}
.y294{bottom:3.518667pt;}
.y2b7{bottom:3.519733pt;}
.y327{bottom:3.520267pt;}
.y2ea{bottom:21.493467pt;}
.y2b1{bottom:28.213200pt;}
.y2ff{bottom:28.374000pt;}
.y156{bottom:30.666667pt;}
.y155{bottom:35.786933pt;}
.y120{bottom:38.666667pt;}
.y272{bottom:39.466667pt;}
.y2e9{bottom:43.253333pt;}
.y271{bottom:44.586933pt;}
.y154{bottom:45.866667pt;}
.y2b0{bottom:46.613200pt;}
.y180{bottom:51.147200pt;}
.y2cc{bottom:51.733600pt;}
.y1e2{bottom:53.866667pt;}
.y270{bottom:54.986933pt;}
.y26f{bottom:60.106800pt;}
.y153{bottom:61.227067pt;}
.y2fe{bottom:61.653733pt;}
.y298{bottom:63.466667pt;}
.y2af{bottom:65.013200pt;}
.y26e{bottom:70.027067pt;}
.y2cb{bottom:70.133600pt;}
.y152{bottom:76.586933pt;}
.y151{bottom:81.706800pt;}
.y297{bottom:81.866667pt;}
.y2fd{bottom:81.974000pt;}
.y80{bottom:82.987067pt;}
.y2ae{bottom:83.413200pt;}
.y1d0{bottom:83.466667pt;}
.y26d{bottom:85.386933pt;}
.y312{bottom:85.813467pt;}
.y14f{bottom:88.906800pt;}
.yba{bottom:89.546933pt;}
.y26c{bottom:90.506800pt;}
.y242{bottom:91.146933pt;}
.y11f{bottom:91.786933pt;}
.y14e{bottom:91.946933pt;}
.y2ca{bottom:94.773733pt;}
.y68{bottom:96.749744pt;}
.y7f{bottom:97.547067pt;}
.y296{bottom:100.266667pt;}
.y26b{bottom:100.906800pt;}
.yfa{bottom:102.186933pt;}
.y311{bottom:104.213467pt;}
.yb9{bottom:105.066667pt;}
.y2ad{bottom:106.613200pt;}
.y241{bottom:106.666667pt;}
.y14d{bottom:107.466667pt;}
.y1d{bottom:108.187131pt;}
.yb8{bottom:110.027067pt;}
.y14c{bottom:112.427067pt;}
.y2d0{bottom:112.852933pt;}
.y2fc{bottom:115.253733pt;}
.y26a{bottom:116.266667pt;}
.yb7{bottom:120.427067pt;}
.y269{bottom:121.386933pt;}
.y240{bottom:122.186933pt;}
.y7e{bottom:123.547067pt;}
.y67{bottom:125.309456pt;}
.yb6{bottom:125.386933pt;}
.y310{bottom:127.413467pt;}
.yf9{bottom:127.466667pt;}
.y23f{bottom:128.586933pt;}
.y268{bottom:129.066667pt;}
.y267{bottom:132.106800pt;}
.y1b2{bottom:133.386533pt;}
.y2fb{bottom:133.653733pt;}
.y2ac{bottom:134.613200pt;}
.y2cf{bottom:134.613333pt;}
.yb5{bottom:136.426667pt;}
.y23e{bottom:137.066667pt;}
.y2e5{bottom:139.093733pt;}
.y23d{bottom:140.106800pt;}
.y7d{bottom:141.947067pt;}
.yb4{bottom:142.826667pt;}
.y14b{bottom:142.986667pt;}
.y1c{bottom:146.347755pt;}
.yf8{bottom:147.306667pt;}
.y266{bottom:147.946667pt;}
.y1b1{bottom:148.746400pt;}
.y389{bottom:149.947067pt;}
.y30f{bottom:150.613467pt;}
.y1e1{bottom:152.587200pt;}
.y66{bottom:153.949688pt;}
.y2fa{bottom:153.974000pt;}
.yb2{bottom:154.026667pt;}
.y265{bottom:154.346667pt;}
.y23c{bottom:155.466667pt;}
.yb1{bottom:157.066667pt;}
.y2e4{bottom:157.493733pt;}
.y2ab{bottom:157.813200pt;}
.y356{bottom:160.053333pt;}
.y7c{bottom:160.267067pt;}
.ycf{bottom:160.586667pt;}
.y14a{bottom:161.386667pt;}
.yb0{bottom:162.186667pt;}
.y1b0{bottom:164.266667pt;}
.yce{bottom:165.706667pt;}
.y387{bottom:167.222163pt;}
.y1f8{bottom:167.466667pt;}
.y209{bottom:168.426667pt;}
.y30e{bottom:169.013467pt;}
.y1af{bottom:169.226667pt;}
.y355{bottom:169.973333pt;}
.y1f5{bottom:170.666800pt;}
.y23b{bottom:170.826667pt;}
.y1e0{bottom:170.987200pt;}
.y208{bottom:171.466933pt;}
.yaf{bottom:172.426667pt;}
.y2e2{bottom:175.893733pt;}
.ycd{bottom:175.946533pt;}
.y23a{bottom:175.946667pt;}
.y2aa{bottom:176.213200pt;}
.y46{bottom:177.066667pt;}
.yae{bottom:177.546667pt;}
.y148{bottom:179.786400pt;}
.y149{bottom:179.786667pt;}
.y354{bottom:179.893333pt;}
.y386{bottom:181.142475pt;}
.y65{bottom:182.509400pt;}
.y1b{bottom:184.587435pt;}
.y7b{bottom:184.827067pt;}
.y239{bottom:186.186400pt;}
.y207{bottom:186.986667pt;}
.y2f9{bottom:187.253733pt;}
.yad{bottom:187.786667pt;}
.y1df{bottom:189.387200pt;}
.y1f4{bottom:189.706933pt;}
.y353{bottom:189.813333pt;}
.ycc{bottom:191.466800pt;}
.y206{bottom:191.946667pt;}
.y30d{bottom:192.213467pt;}
.yac{bottom:192.906667pt;}
.y2e1{bottom:194.293733pt;}
.y2a9{bottom:194.613200pt;}
.y385{bottom:194.981923pt;}
.y1ae{bottom:194.986800pt;}
.y2e3{bottom:199.093733pt;}
.y352{bottom:199.733333pt;}
.yf7{bottom:200.426667pt;}
.y238{bottom:201.706667pt;}
.y2f8{bottom:205.653733pt;}
.y237{bottom:206.666667pt;}
.ycb{bottom:206.826667pt;}
.y1f3{bottom:208.586667pt;}
.y384{bottom:208.902235pt;}
.y1ad{bottom:210.346667pt;}
.y64{bottom:211.069112pt;}
.y351{bottom:211.093333pt;}
.yca{bottom:211.786667pt;}
.y2e0{bottom:212.693733pt;}
.y2a8{bottom:213.013200pt;}
.y264{bottom:215.306933pt;}
.y1ac{bottom:215.466667pt;}
.y1de{bottom:215.787200pt;}
.yf6{bottom:218.826667pt;}
.y322{bottom:219.893813pt;}
.y30c{bottom:220.213467pt;}
.y350{bottom:220.853333pt;}
.y383{bottom:222.742747pt;}
.y1a{bottom:222.827115pt;}
.y2f7{bottom:224.053733pt;}
.y295{bottom:229.066667pt;}
.y236{bottom:229.386667pt;}
.y45{bottom:229.707067pt;}
.y147{bottom:230.666667pt;}
.y34f{bottom:231.253333pt;}
.y2a7{bottom:231.413200pt;}
.y263{bottom:233.706933pt;}
.y1dd{bottom:234.187200pt;}
.y2df{bottom:235.893733pt;}
.y382{bottom:236.663059pt;}
.y2c9{bottom:236.853733pt;}
.yf4{bottom:237.226667pt;}
.y321{bottom:238.293813pt;}
.y63{bottom:239.628824pt;}
.y34e{bottom:240.373333pt;}
.y30b{bottom:243.413467pt;}
.yf5{bottom:243.626667pt;}
.y293{bottom:243.948000pt;}
.y292{bottom:247.466667pt;}
.y235{bottom:247.786667pt;}
.y146{bottom:249.066667pt;}
.y34d{bottom:250.133333pt;}
.y381{bottom:250.503571pt;}
.y44{bottom:251.308427pt;}
.y262{bottom:252.106933pt;}
.y1dc{bottom:252.587200pt;}
.y326{bottom:252.693067pt;}
.yaa{bottom:254.826667pt;}
.y2c8{bottom:255.253733pt;}
.yf3{bottom:255.626667pt;}
.y2a6{bottom:256.053333pt;}
.y320{bottom:256.693813pt;}
.y1f2{bottom:257.866667pt;}
.y2de{bottom:259.093733pt;}
.y34c{bottom:260.693333pt;}
.y19{bottom:260.987739pt;}
.yab{bottom:261.226667pt;}
.y30a{bottom:261.813467pt;}
.y380{bottom:264.344083pt;}
.y291{bottom:265.866667pt;}
.y234{bottom:266.186667pt;}
.y145{bottom:267.466667pt;}
.y62{bottom:268.188536pt;}
.y34b{bottom:270.453333pt;}
.y261{bottom:270.506933pt;}
.y2b6{bottom:270.613600pt;}
.ya9{bottom:273.226667pt;}
.yc9{bottom:273.706667pt;}
.yf2{bottom:274.026667pt;}
.yf0{bottom:274.026933pt;}
.y2a5{bottom:274.453733pt;}
.y325{bottom:274.613333pt;}
.y31f{bottom:275.093813pt;}
.y1ab{bottom:275.786667pt;}
.y2dd{bottom:277.493733pt;}
.y37f{bottom:278.264395pt;}
.y34a{bottom:280.053333pt;}
.yf1{bottom:280.426667pt;}
.y2ce{bottom:281.333467pt;}
.y1db{bottom:282.187200pt;}
.y309{bottom:285.013467pt;}
.y144{bottom:285.866667pt;}
.y2f6{bottom:287.573467pt;}
.y11e{bottom:288.746667pt;}
.y349{bottom:289.333333pt;}
.ya8{bottom:291.626667pt;}
.y37e{bottom:292.104907pt;}
.yef{bottom:292.426933pt;}
.y2b5{bottom:292.533333pt;}
.y233{bottom:292.586667pt;}
.y2a4{bottom:292.853733pt;}
.y61{bottom:296.748248pt;}
.y260{bottom:296.906933pt;}
.y232{bottom:297.866667pt;}
.y348{bottom:299.093333pt;}
.y18{bottom:299.227419pt;}
.y1da{bottom:300.587200pt;}
.y2dc{bottom:300.693733pt;}
.y43{bottom:301.948171pt;}
.y290{bottom:302.667600pt;}
.y2cd{bottom:303.093333pt;}
.y143{bottom:304.266667pt;}
.y141{bottom:304.267200pt;}
.y2f5{bottom:305.973467pt;}
.y37d{bottom:306.025219pt;}
.y1aa{bottom:306.346307pt;}
.y347{bottom:309.333333pt;}
.ya7{bottom:310.026667pt;}
.y142{bottom:310.666667pt;}
.yee{bottom:310.826933pt;}
.y230{bottom:310.986667pt;}
.y25f{bottom:315.306933pt;}
.y231{bottom:316.266667pt;}
.y346{bottom:318.933333pt;}
.y42{bottom:319.308155pt;}
.y37c{bottom:319.865731pt;}
.y140{bottom:322.667200pt;}
.y11d{bottom:322.986667pt;}
.y2f4{bottom:324.373467pt;}
.y60{bottom:325.307960pt;}
.y1a9{bottom:326.186400pt;}
.ya6{bottom:328.426667pt;}
.y345{bottom:328.693333pt;}
.y2db{bottom:328.693733pt;}
.yed{bottom:329.226933pt;}
.y22f{bottom:329.386667pt;}
.y171{bottom:330.826667pt;}
.y308{bottom:332.853600pt;}
.y25e{bottom:333.706933pt;}
.y37b{bottom:333.786043pt;}
.y41{bottom:336.587979pt;}
.y17{bottom:337.467099pt;}
.y344{bottom:340.053333pt;}
.y13f{bottom:341.067200pt;}
.y11c{bottom:341.386667pt;}
.y2f3{bottom:342.773467pt;}
.ya5{bottom:346.826667pt;}
.y37a{bottom:347.626555pt;}
.yec{bottom:347.626933pt;}
.y22e{bottom:347.786667pt;}
.y1a8{bottom:349.226533pt;}
.y170{bottom:349.226667pt;}
.y343{bottom:349.813333pt;}
.y205{bottom:350.346667pt;}
.y307{bottom:351.253600pt;}
.y2da{bottom:351.893733pt;}
.y5f{bottom:353.867672pt;}
.y40{bottom:353.947963pt;}
.y13e{bottom:359.467200pt;}
.y342{bottom:359.573333pt;}
.y11b{bottom:359.786667pt;}
.y379{bottom:361.467067pt;}
.y1a6{bottom:362.986533pt;}
.y1a7{bottom:365.066667pt;}
.ya4{bottom:365.226667pt;}
.yeb{bottom:366.026933pt;}
.y22d{bottom:366.186667pt;}
.y2f2{bottom:367.413600pt;}
.y16f{bottom:367.626667pt;}
.y204{bottom:368.746667pt;}
.y202{bottom:368.747200pt;}
.y341{bottom:369.333333pt;}
.y306{bottom:369.653600pt;}
.y2d9{bottom:370.293733pt;}
.y3f{bottom:371.307947pt;}
.y378{bottom:372.427067pt;}
.y2c7{bottom:372.533333pt;}
.y25d{bottom:373.226667pt;}
.y203{bottom:375.146667pt;}
.y16{bottom:375.627723pt;}
.y1a5{bottom:376.746400pt;}
.y13d{bottom:377.867200pt;}
.y11a{bottom:378.186667pt;}
.y340{bottom:379.733333pt;}
.y377{bottom:381.067200pt;}
.y388{bottom:382.261883pt;}
.y5e{bottom:382.427384pt;}
.ya3{bottom:383.626667pt;}
.yea{bottom:384.426933pt;}
.y22c{bottom:384.586667pt;}
.y2f1{bottom:385.813600pt;}
.y16e{bottom:386.026667pt;}
.y201{bottom:387.146667pt;}
.y305{bottom:388.053600pt;}
.y3e{bottom:388.667931pt;}
.y2d8{bottom:388.693733pt;}
.y33f{bottom:388.853333pt;}
.y31e{bottom:389.493813pt;}
.y1a4{bottom:390.346400pt;}
.y2c6{bottom:390.933333pt;}
.y119{bottom:396.586667pt;}
.y33e{bottom:398.773333pt;}
.ya2{bottom:402.026667pt;}
.ye9{bottom:402.826933pt;}
.y22b{bottom:402.986667pt;}
.y2a3{bottom:404.213600pt;}
.y13c{bottom:404.267200pt;}
.y200{bottom:405.546667pt;}
.y1a1{bottom:405.866667pt;}
.y3d{bottom:406.027915pt;}
.y2d7{bottom:407.093733pt;}
.y1a3{bottom:407.466667pt;}
.y31d{bottom:407.893813pt;}
.y33d{bottom:409.013333pt;}
.y2c5{bottom:409.333333pt;}
.y5d{bottom:410.987096pt;}
.y301{bottom:411.413600pt;}
.y15{bottom:413.867403pt;}
.y28f{bottom:416.427467pt;}
.y33c{bottom:418.293333pt;}
.ya1{bottom:420.426667pt;}
.ye8{bottom:421.226933pt;}
.y22a{bottom:421.386667pt;}
.y2e6{bottom:421.973600pt;}
.y2a2{bottom:422.613600pt;}
.y16d{bottom:422.826667pt;}
.y3c{bottom:423.307739pt;}
.y1a2{bottom:423.466667pt;}
.y1ff{bottom:423.946667pt;}
.y1a0{bottom:425.226933pt;}
.y2d6{bottom:425.493200pt;}
.y31c{bottom:426.293813pt;}
.y2c4{bottom:427.733333pt;}
.y33b{bottom:428.053333pt;}
.y13b{bottom:430.667200pt;}
.y300{bottom:433.333333pt;}
.y118{bottom:433.386667pt;}
.y28e{bottom:434.827467pt;}
.y33a{bottom:438.293333pt;}
.ya0{bottom:438.826667pt;}
.ye7{bottom:439.626933pt;}
.y5c{bottom:439.627328pt;}
.y229{bottom:439.786667pt;}
.y19e{bottom:440.106667pt;}
.y3b{bottom:440.667723pt;}
.y2a1{bottom:441.013600pt;}
.y1fe{bottom:442.346667pt;}
.y31b{bottom:444.693813pt;}
.y339{bottom:447.733333pt;}
.y2d5{bottom:450.133333pt;}
.y2c3{bottom:450.933333pt;}
.y14{bottom:452.107083pt;}
.y28d{bottom:453.227467pt;}
.y376{bottom:455.147200pt;}
.y13a{bottom:457.067200pt;}
.y338{bottom:457.653333pt;}
.ye6{bottom:458.026933pt;}
.y3a{bottom:458.027707pt;}
.y228{bottom:458.186667pt;}
.y1fd{bottom:460.746667pt;}
.y2a0{bottom:465.653733pt;}
.y19f{bottom:465.867067pt;}
.y337{bottom:467.413333pt;}
.y5b{bottom:468.187040pt;}
.y314{bottom:468.852933pt;}
.y31a{bottom:469.333413pt;}
.y375{bottom:471.382403pt;}
.y28c{bottom:471.627467pt;}
.y9e{bottom:474.026667pt;}
.y2c2{bottom:474.133333pt;}
.y39{bottom:475.387691pt;}
.ye5{bottom:476.426933pt;}
.y227{bottom:476.586667pt;}
.y19a{bottom:478.986667pt;}
.y336{bottom:479.093333pt;}
.y1fc{bottom:479.146667pt;}
.y9f{bottom:480.426667pt;}
.y198{bottom:481.866667pt;}
.y117{bottom:482.666667pt;}
.y139{bottom:483.467200pt;}
.y374{bottom:485.222915pt;}
.y2d4{bottom:486.933333pt;}
.y335{bottom:488.373333pt;}
.y319{bottom:489.653680pt;}
.y28b{bottom:490.026933pt;}
.y13{bottom:490.267707pt;}
.y313{bottom:490.613333pt;}
.y1cf{bottom:491.626667pt;}
.y9d{bottom:492.426667pt;}
.y2c1{bottom:492.533333pt;}
.y38{bottom:492.667515pt;}
.ye4{bottom:494.826933pt;}
.y199{bottom:494.986667pt;}
.y19d{bottom:494.986933pt;}
.y16c{bottom:496.426667pt;}
.y5a{bottom:496.746752pt;}
.y372{bottom:496.827067pt;}
.y334{bottom:498.133333pt;}
.y373{bottom:499.143227pt;}
.y116{bottom:501.066667pt;}
.y226{bottom:501.386667pt;}
.y138{bottom:502.346933pt;}
.y29f{bottom:502.453733pt;}
.y2d3{bottom:505.333333pt;}
.y1fb{bottom:505.546667pt;}
.y333{bottom:507.733333pt;}
.y28a{bottom:508.426933pt;}
.y19c{bottom:508.906667pt;}
.y1ce{bottom:510.026667pt;}
.y37{bottom:510.027499pt;}
.y9c{bottom:510.826667pt;}
.y2c0{bottom:510.933333pt;}
.y371{bottom:512.983739pt;}
.y225{bottom:513.386667pt;}
.y16b{bottom:514.826667pt;}
.ye3{bottom:516.906667pt;}
.y332{bottom:517.813333pt;}
.y115{bottom:519.466667pt;}
.y29e{bottom:520.853733pt;}
.y2f0{bottom:521.653733pt;}
.y318{bottom:522.933413pt;}
.y2d2{bottom:523.733333pt;}
.y1fa{bottom:523.946667pt;}
.y59{bottom:525.306464pt;}
.y289{bottom:526.826933pt;}
.y370{bottom:526.904051pt;}
.y36{bottom:527.387483pt;}
.y331{bottom:527.573333pt;}
.y1cd{bottom:528.426667pt;}
.y12{bottom:528.507387pt;}
.y9b{bottom:529.226667pt;}
.y2bf{bottom:529.333333pt;}
.y2e8{bottom:531.093467pt;}
.y16a{bottom:533.226667pt;}
.ye2{bottom:535.306667pt;}
.y330{bottom:537.333333pt;}
.y114{bottom:537.866667pt;}
.y113{bottom:537.867200pt;}
.y29d{bottom:539.253733pt;}
.y137{bottom:539.467200pt;}
.y2ef{bottom:540.053733pt;}
.y36f{bottom:540.743499pt;}
.y288{bottom:545.226933pt;}
.y1cc{bottom:546.826667pt;}
.y9a{bottom:547.626667pt;}
.y2be{bottom:547.733333pt;}
.y32f{bottom:548.853333pt;}
.y224{bottom:550.826667pt;}
.y197{bottom:551.146800pt;}
.y35{bottom:551.227067pt;}
.y169{bottom:551.626667pt;}
.y2e7{bottom:552.853333pt;}
.ye1{bottom:553.706667pt;}
.y58{bottom:553.866176pt;}
.y36e{bottom:554.582947pt;}
.y317{bottom:554.773467pt;}
.y112{bottom:556.586933pt;}
.y29c{bottom:557.653733pt;}
.y32e{bottom:558.453333pt;}
.y2ee{bottom:558.453733pt;}
.y287{bottom:563.626933pt;}
.y196{bottom:564.586933pt;}
.y1cb{bottom:565.226667pt;}
.y99{bottom:566.026667pt;}
.y2bd{bottom:566.133333pt;}
.y11{bottom:566.747067pt;}
.y36d{bottom:568.503259pt;}
.y32d{bottom:568.853333pt;}
.y168{bottom:570.026667pt;}
.ydf{bottom:572.106667pt;}
.y111{bottom:575.306667pt;}
.y110{bottom:575.307200pt;}
.y34{bottom:575.548219pt;}
.y136{bottom:576.267200pt;}
.y32c{bottom:578.133333pt;}
.ye0{bottom:578.506667pt;}
.y304{bottom:580.853600pt;}
.y286{bottom:582.026933pt;}
.y36c{bottom:582.343771pt;}
.y57{bottom:582.425888pt;}
.y2ed{bottom:583.093333pt;}
.y2b3{bottom:583.893467pt;}
.y98{bottom:584.426667pt;}
.y32b{bottom:587.733333pt;}
.y167{bottom:588.426667pt;}
.y25b{bottom:589.226933pt;}
.y2bc{bottom:589.333333pt;}
.yde{bottom:590.506667pt;}
.y33{bottom:592.908203pt;}
.y135{bottom:594.667200pt;}
.y25c{bottom:595.626667pt;}
.y316{bottom:595.733333pt;}
.y36b{bottom:596.264083pt;}
.y32a{bottom:598.293333pt;}
.y215{bottom:598.986667pt;}
.y214{bottom:599.146667pt;}
.y285{bottom:600.426933pt;}
.y2ec{bottom:601.493333pt;}
.y10f{bottom:601.707200pt;}
.y2b2{bottom:605.653333pt;}
.y166{bottom:606.826667pt;}
.y25a{bottom:607.626933pt;}
.y329{bottom:608.373333pt;}
.ydd{bottom:608.906667pt;}
.y36a{bottom:610.104595pt;}
.y32{bottom:610.268187pt;}
.y1c9{bottom:610.346533pt;}
.y1ca{bottom:610.346667pt;}
.y195{bottom:610.506667pt;}
.y56{bottom:610.985600pt;}
.y2bb{bottom:612.533333pt;}
.y134{bottom:613.067200pt;}
.y303{bottom:614.133333pt;}
.y315{bottom:616.053600pt;}
.y1f9{bottom:618.666667pt;}
.y284{bottom:618.826933pt;}
.y10{bottom:619.307067pt;}
.y2eb{bottom:619.893333pt;}
.y96{bottom:621.226667pt;}
.y369{bottom:624.024907pt;}
.y29b{bottom:624.373467pt;}
.y259{bottom:626.026933pt;}
.y324{bottom:627.093467pt;}
.ydc{bottom:627.306667pt;}
.y97{bottom:627.626667pt;}
.y31{bottom:627.628171pt;}
.y10e{bottom:628.106667pt;}
.y213{bottom:628.266667pt;}
.y2ba{bottom:630.933333pt;}
.y222{bottom:631.146667pt;}
.y133{bottom:631.466667pt;}
.y194{bottom:633.226667pt;}
.y302{bottom:634.453600pt;}
.y283{bottom:637.226933pt;}
.y223{bottom:637.546667pt;}
.y1c8{bottom:637.706400pt;}
.y368{bottom:637.865419pt;}
.y55{bottom:639.545312pt;}
.y95{bottom:639.626667pt;}
.y165{bottom:643.626667pt;}
.y258{bottom:644.906667pt;}
.y256{bottom:644.907200pt;}
.y30{bottom:644.988155pt;}
.ydb{bottom:645.706667pt;}
.y10d{bottom:646.506667pt;}
.y328{bottom:648.053733pt;}
.y323{bottom:648.853333pt;}
.y2b9{bottom:649.333333pt;}
.y221{bottom:649.546667pt;}
.y132{bottom:649.866667pt;}
.y257{bottom:651.306667pt;}
.y193{bottom:651.626667pt;}
.y367{bottom:651.705931pt;}
.yf{bottom:653.946267pt;}
.y282{bottom:655.626933pt;}
.y212{bottom:657.386667pt;}
.y211{bottom:657.546667pt;}
.y94{bottom:658.026667pt;}
.y164{bottom:662.026667pt;}
.y163{bottom:662.026933pt;}
.y2f{bottom:662.267979pt;}
.y1c7{bottom:662.346533pt;}
.y1f7{bottom:662.506667pt;}
.y255{bottom:663.307200pt;}
.y29a{bottom:664.213600pt;}
.y10c{bottom:664.906667pt;}
.y366{bottom:665.626243pt;}
.y2b8{bottom:667.733333pt;}
.y220{bottom:667.946667pt;}
.y54{bottom:668.105024pt;}
.y192{bottom:670.026667pt;}
.y7a{bottom:673.147067pt;}
.y281{bottom:674.026933pt;}
.y1c5{bottom:676.106560pt;}
.y93{bottom:676.426667pt;}
.y1f1{bottom:676.427200pt;}
.y1c6{bottom:678.186667pt;}
.y365{bottom:679.466755pt;}
.y2e{bottom:679.627963pt;}
.ye{bottom:681.467067pt;}
.y254{bottom:681.706667pt;}
.yda{bottom:682.506667pt;}
.y10b{bottom:683.306667pt;}
.y21f{bottom:686.346667pt;}
.y210{bottom:686.506667pt;}
.y131{bottom:686.666667pt;}
.y191{bottom:688.426667pt;}
.y1c4{bottom:689.866427pt;}
.y280{bottom:692.426933pt;}
.y53{bottom:693.145280pt;}
.y364{bottom:693.387067pt;}
.y92{bottom:694.826667pt;}
.y2d{bottom:696.987947pt;}
.y162{bottom:699.306667pt;}
.y79{bottom:699.547067pt;}
.y253{bottom:700.106667pt;}
.y123{bottom:700.266667pt;}
.y17f{bottom:700.427200pt;}
.y10a{bottom:701.706667pt;}
.yd9{bottom:702.346667pt;}
.y1c3{bottom:703.786693pt;}
.y363{bottom:704.347067pt;}
.y21e{bottom:704.746667pt;}
.y299{bottom:705.013600pt;}
.y130{bottom:705.067200pt;}
.yd{bottom:708.027067pt;}
.y27f{bottom:710.826933pt;}
.y362{bottom:712.987200pt;}
.y90{bottom:713.226667pt;}
.y1f0{bottom:713.227200pt;}
.y2c{bottom:714.347931pt;}
.y18f{bottom:714.827200pt;}
.y20f{bottom:715.786667pt;}
.y78{bottom:717.947067pt;}
.y161{bottom:718.026800pt;}
.y252{bottom:718.506667pt;}
.y17e{bottom:718.827200pt;}
.y1c0{bottom:718.986667pt;}
.y52{bottom:719.145920pt;}
.y91{bottom:719.626667pt;}
.y109{bottom:720.106667pt;}
.y1c2{bottom:720.586667pt;}
.y190{bottom:721.226667pt;}
.yd8{bottom:722.346667pt;}
.y21d{bottom:723.146667pt;}
.yc7{bottom:723.306667pt;}
.y12f{bottom:723.466667pt;}
.y361{bottom:728.027067pt;}
.yc{bottom:728.987200pt;}
.y27e{bottom:729.226933pt;}
.yc8{bottom:729.706667pt;}
.y8f{bottom:731.626667pt;}
.y1ef{bottom:731.627200pt;}
.y2b{bottom:731.627755pt;}
.y77{bottom:736.347067pt;}
.y1c1{bottom:736.586667pt;}
.y251{bottom:736.906667pt;}
.y17d{bottom:737.227200pt;}
.y1bf{bottom:738.186933pt;}
.y108{bottom:738.506667pt;}
.y18e{bottom:741.227200pt;}
.y21c{bottom:741.546667pt;}
.yc6{bottom:741.706667pt;}
.y12e{bottom:741.866667pt;}
.y20e{bottom:743.146667pt;}
.y51{bottom:745.146560pt;}
.y27d{bottom:747.626933pt;}
.yb{bottom:747.707067pt;}
.y2a{bottom:748.987739pt;}
.y8e{bottom:750.026667pt;}
.y1bd{bottom:753.227067pt;}
.y76{bottom:754.587067pt;}
.y250{bottom:755.306667pt;}
.y160{bottom:755.466400pt;}
.y17c{bottom:755.627200pt;}
.y107{bottom:756.906667pt;}
.y18d{bottom:759.627200pt;}
.y21b{bottom:759.946667pt;}
.yc5{bottom:760.106667pt;}
.y12c{bottom:760.266667pt;}
.yd7{bottom:760.586667pt;}
.y360{bottom:762.344744pt;}
.y27c{bottom:766.026933pt;}
.y29{bottom:766.347723pt;}
.y12d{bottom:766.666667pt;}
.y1be{bottom:766.827067pt;}
.y20c{bottom:767.148000pt;}
.y8c{bottom:768.426667pt;}
.y1ee{bottom:768.427200pt;}
.y50{bottom:771.142987pt;}
.y75{bottom:772.987067pt;}
.y24e{bottom:773.706667pt;}
.y17b{bottom:774.027200pt;}
.y15f{bottom:774.186667pt;}
.y8d{bottom:774.826667pt;}
.y21a{bottom:778.346667pt;}
.y218{bottom:778.346933pt;}
.yc4{bottom:778.506667pt;}
.y12b{bottom:778.666667pt;}
.yd6{bottom:778.986667pt;}
.y24f{bottom:780.106667pt;}
.y105{bottom:783.306667pt;}
.y28{bottom:783.707707pt;}
.y27b{bottom:784.426933pt;}
.y219{bottom:784.746667pt;}
.y18c{bottom:786.027200pt;}
.y8b{bottom:786.826667pt;}
.y1ed{bottom:786.827200pt;}
.y106{bottom:789.706667pt;}
.y24d{bottom:792.106667pt;}
.y17a{bottom:792.427200pt;}
.y1bc{bottom:794.666667pt;}
.y1b9{bottom:794.986667pt;}
.y35f{bottom:795.305200pt;}
.y217{bottom:796.746933pt;}
.yc2{bottom:796.906667pt;}
.y4f{bottom:797.143627pt;}
.yd5{bottom:797.386667pt;}
.y20b{bottom:797.706667pt;}
.y74{bottom:799.547067pt;}
.y15e{bottom:800.586667pt;}
.y27{bottom:800.987531pt;}
.y104{bottom:801.706667pt;}
.y27a{bottom:802.826933pt;}
.yc3{bottom:803.306667pt;}
.y18b{bottom:804.427200pt;}
.ya{bottom:805.146475pt;}
.y1ec{bottom:805.227200pt;}
.y1ba{bottom:808.266667pt;}
.y24c{bottom:810.506667pt;}
.y179{bottom:810.827200pt;}
.y35e{bottom:812.825504pt;}
.yc1{bottom:815.306667pt;}
.y12a{bottom:815.466667pt;}
.yd4{bottom:815.786667pt;}
.y26{bottom:818.347515pt;}
.y103{bottom:820.106667pt;}
.y279{bottom:821.226933pt;}
.y1bb{bottom:822.186933pt;}
.y18a{bottom:822.826667pt;}
.y4e{bottom:823.063747pt;}
.y73{bottom:825.947067pt;}
.y24b{bottom:828.906667pt;}
.y178{bottom:829.227200pt;}
.y35d{bottom:830.425968pt;}
.yc0{bottom:833.706667pt;}
.y216{bottom:833.866667pt;}
.yd3{bottom:834.186667pt;}
.y25{bottom:835.707499pt;}
.y102{bottom:838.506667pt;}
.y278{bottom:839.626933pt;}
.y89{bottom:840.106667pt;}
.y189{bottom:841.226667pt;}
.y1eb{bottom:842.027200pt;}
.y72{bottom:844.347067pt;}
.y8a{bottom:846.506667pt;}
.y249{bottom:847.306667pt;}
.y177{bottom:847.627200pt;}
.y35c{bottom:848.026432pt;}
.y4d{bottom:849.064387pt;}
.y9{bottom:850.587067pt;}
.y1b8{bottom:850.986667pt;}
.ybf{bottom:852.106667pt;}
.y128{bottom:852.266667pt;}
.yd2{bottom:852.586667pt;}
.y24{bottom:853.067483pt;}
.y15d{bottom:853.386667pt;}
.y24a{bottom:853.706667pt;}
.y101{bottom:856.906667pt;}
.y277{bottom:858.026933pt;}
.y1d9{bottom:858.027200pt;}
.y88{bottom:858.506667pt;}
.y129{bottom:858.666667pt;}
.y187{bottom:859.626667pt;}
.y71{bottom:862.747067pt;}
.y35b{bottom:865.626896pt;}
.y248{bottom:865.706667pt;}
.y188{bottom:866.026667pt;}
.y176{bottom:866.027200pt;}
.y1ea{bottom:868.427200pt;}
.ybe{bottom:870.506667pt;}
.y127{bottom:870.666667pt;}
.y8{bottom:870.987067pt;}
.y15c{bottom:872.266667pt;}
.y4c{bottom:875.065027pt;}
.y100{bottom:875.306667pt;}
.y276{bottom:876.426400pt;}
.y1d8{bottom:876.426667pt;}
.y1d6{bottom:876.426800pt;}
.y87{bottom:876.906667pt;}
.y23{bottom:876.907067pt;}
.y186{bottom:878.026667pt;}
.y70{bottom:881.147067pt;}
.y1d7{bottom:882.826667pt;}
.y35a{bottom:883.147200pt;}
.y247{bottom:884.106667pt;}
.y175{bottom:884.426667pt;}
.y7{bottom:888.587763pt;}
.ybd{bottom:888.906667pt;}
.y126{bottom:889.066667pt;}
.y15b{bottom:890.826933pt;}
.yff{bottom:893.706667pt;}
.y1d5{bottom:894.826800pt;}
.y1e9{bottom:894.827200pt;}
.y86{bottom:895.306667pt;}
.y185{bottom:896.426667pt;}
.y6f{bottom:899.547067pt;}
.y4b{bottom:901.065667pt;}
.y246{bottom:902.506667pt;}
.y275{bottom:902.826400pt;}
.y20a{bottom:904.905333pt;}
.yd1{bottom:905.386667pt;}
.y22{bottom:905.947067pt;}
.ybc{bottom:907.306667pt;}
.y15a{bottom:909.386800pt;}
.y6{bottom:909.947339pt;}
.y122{bottom:910.186933pt;}
.yfe{bottom:912.106667pt;}
.y1d4{bottom:913.226800pt;}
.y1b7{bottom:913.227067pt;}
.y1e8{bottom:913.227200pt;}
.y85{bottom:913.706667pt;}
.y184{bottom:914.826667pt;}
.y274{bottom:921.226400pt;}
.y174{bottom:921.226667pt;}
.y244{bottom:921.226800pt;}
.y21{bottom:923.226979pt;}
.y359{bottom:923.547083pt;}
.y6e{bottom:925.947067pt;}
.y4a{bottom:927.066307pt;}
.y245{bottom:927.626667pt;}
.yd0{bottom:927.946667pt;}
.yfd{bottom:930.506667pt;}
.y121{bottom:930.666667pt;}
.y5{bottom:931.387067pt;}
.y1b6{bottom:931.626533pt;}
.y1e7{bottom:931.626667pt;}
.y1d3{bottom:931.626800pt;}
.y84{bottom:932.106667pt;}
.y183{bottom:933.226667pt;}
.y243{bottom:939.626800pt;}
.y358{bottom:940.907067pt;}
.y125{bottom:942.026667pt;}
.ybb{bottom:944.106667pt;}
.y6d{bottom:944.187067pt;}
.y159{bottom:946.506533pt;}
.y1b5{bottom:950.026533pt;}
.y1e6{bottom:950.026667pt;}
.y83{bottom:950.506667pt;}
.y182{bottom:951.626133pt;}
.y20{bottom:952.347067pt;}
.y49{bottom:953.066947pt;}
.y1d2{bottom:958.026800pt;}
.y6c{bottom:962.747067pt;}
.y173{bottom:967.306667pt;}
.y1b4{bottom:968.426533pt;}
.y1e5{bottom:968.426667pt;}
.y82{bottom:968.906667pt;}
.y181{bottom:970.506400pt;}
.y158{bottom:972.906533pt;}
.y4{bottom:973.547067pt;}
.yfc{bottom:976.426667pt;}
.y1d1{bottom:976.426800pt;}
.y48{bottom:978.987067pt;}
.y357{bottom:979.467067pt;}
.y6b{bottom:984.747067pt;}
.y1f{bottom:987.387067pt;}
.y157{bottom:994.826267pt;}
.y273{bottom:994.826400pt;}
.y1e4{bottom:994.826667pt;}
.y124{bottom:1001.066667pt;}
.y6a{bottom:1006.747067pt;}
.y172{bottom:1007.786667pt;}
.y1b3{bottom:1009.066667pt;}
.y47{bottom:1010.507067pt;}
.y3{bottom:1015.065883pt;}
.y1e{bottom:1016.507067pt;}
.y69{bottom:1028.747067pt;}
.y81{bottom:1032.106667pt;}
.y1e3{bottom:1034.346667pt;}
.yfb{bottom:1035.786667pt;}
.y2{bottom:1060.506475pt;}
.y1f6{bottom:1089.385333pt;}
.y1{bottom:1105.947067pt;}
.h25{height:11.519787pt;}
.h39{height:11.536000pt;}
.h21{height:12.960413pt;}
.h17{height:14.879733pt;}
.h1e{height:14.880267pt;}
.h32{height:17.759867pt;}
.h33{height:17.760400pt;}
.h2c{height:17.919733pt;}
.h36{height:17.920267pt;}
.h16{height:24.552960pt;}
.h10{height:26.014219pt;}
.h11{height:28.468750pt;}
.h2a{height:29.248000pt;}
.h38{height:30.685760pt;}
.h13{height:30.958080pt;}
.h27{height:31.762560pt;}
.h26{height:33.125760pt;}
.h29{height:33.552000pt;}
.h28{height:33.761920pt;}
.h4{height:34.608000pt;}
.h1f{height:35.664000pt;}
.h1a{height:35.761920pt;}
.h37{height:36.852480pt;}
.h1b{height:37.896960pt;}
.h8{height:38.530240pt;}
.hb{height:40.031250pt;}
.hc{height:40.048103pt;}
.h2{height:42.221760pt;}
.h19{height:42.656250pt;}
.he{height:43.343750pt;}
.hf{height:43.375000pt;}
.h14{height:43.712000pt;}
.h20{height:43.872000pt;}
.h18{height:44.224000pt;}
.h15{height:44.302080pt;}
.hd{height:44.468750pt;}
.h1d{height:44.736000pt;}
.h9{height:46.144000pt;}
.h2b{height:46.970880pt;}
.h2f{height:47.761920pt;}
.h2e{height:48.314880pt;}
.h23{height:48.551680pt;}
.ha{height:50.677500pt;}
.h22{height:52.192853pt;}
.h12{height:53.376000pt;}
.h1{height:53.757760pt;}
.h5{height:57.680000pt;}
.h24{height:58.496000pt;}
.h7{height:61.602240pt;}
.h6{height:69.216000pt;}
.h31{height:72.576000pt;}
.h1c{height:73.658880pt;}
.h3{height:92.288000pt;}
.h35{height:106.496853pt;}
.h34{height:109.694933pt;}
.h30{height:109.697067pt;}
.h2d{height:793.333333pt;}
.h0{height:1122.666667pt;}
.w4{width:0.159896pt;}
.w2{width:0.160417pt;}
.w6{width:34.080267pt;}
.w5{width:62.239600pt;}
.w3{width:68.319733pt;}
.w8{width:88.480267pt;}
.w9{width:96.480267pt;}
.wa{width:191.040000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x38{left:64.639443pt;}
.x2f{left:68.159867pt;}
.x7f{left:70.068832pt;}
.x30{left:71.519733pt;}
.x35{left:73.919733pt;}
.x8{left:75.600000pt;}
.x32{left:78.719733pt;}
.x4a{left:80.480267pt;}
.x7{left:83.280000pt;}
.x21{left:84.640133pt;}
.x12{left:86.080173pt;}
.x6c{left:88.000000pt;}
.x16{left:89.280267pt;}
.x65{left:90.240133pt;}
.x40{left:91.840133pt;}
.x1f{left:92.959867pt;}
.x5{left:94.480000pt;}
.x1a{left:96.480267pt;}
.x27{left:98.080267pt;}
.x18{left:99.680267pt;}
.x4{left:101.680000pt;}
.x3d{left:103.200000pt;}
.x1d{left:106.880267pt;}
.x6{left:109.118536pt;}
.x20{left:111.359867pt;}
.x1{left:114.800000pt;}
.x31{left:117.440133pt;}
.x41{left:119.840099pt;}
.x22{left:123.680267pt;}
.x7e{left:132.307333pt;}
.x63{left:133.920000pt;}
.x1b{left:137.440435pt;}
.x3a{left:139.840458pt;}
.x54{left:141.120000pt;}
.x53{left:142.240000pt;}
.x75{left:143.839889pt;}
.x39{left:147.840459pt;}
.x6d{left:148.800000pt;}
.x4f{left:151.680112pt;}
.x80{left:152.788000pt;}
.x62{left:154.240000pt;}
.x55{left:155.360000pt;}
.x76{left:159.517250pt;}
.x2{left:161.840000pt;}
.x3e{left:164.320000pt;}
.x6a{left:167.840000pt;}
.x60{left:170.240000pt;}
.x2b{left:171.200000pt;}
.x1c{left:174.080000pt;}
.x73{left:175.838506pt;}
.x58{left:179.200000pt;}
.x2c{left:180.480000pt;}
.x77{left:183.836497pt;}
.x61{left:184.800000pt;}
.x1e{left:188.160000pt;}
.x33{left:189.280000pt;}
.x5a{left:190.240000pt;}
.x59{left:205.120000pt;}
.x74{left:211.839910pt;}
.x2d{left:215.840000pt;}
.x43{left:219.680000pt;}
.x2e{left:225.280000pt;}
.x6e{left:228.800000pt;}
.x6f{left:246.080000pt;}
.x70{left:249.120000pt;}
.x13{left:267.840000pt;}
.x6b{left:270.720000pt;}
.x37{left:277.600000pt;}
.x14{left:279.520000pt;}
.x25{left:292.000000pt;}
.x3b{left:296.960000pt;}
.x28{left:300.800000pt;}
.x5b{left:309.280000pt;}
.x4b{left:310.880000pt;}
.x15{left:319.840000pt;}
.x29{left:322.080000pt;}
.x7c{left:326.548159pt;}
.x2a{left:334.560000pt;}
.x4c{left:339.840000pt;}
.x79{left:341.600000pt;}
.x71{left:364.960000pt;}
.x72{left:368.320000pt;}
.x11{left:375.040000pt;}
.x8b{left:376.148000pt;}
.x5c{left:379.360000pt;}
.x3c{left:381.120000pt;}
.x34{left:387.680000pt;}
.x45{left:388.960000pt;}
.x3f{left:391.680000pt;}
.xa{left:392.960000pt;}
.x52{left:395.199443pt;}
.x48{left:399.520000pt;}
.x8f{left:401.520000pt;}
.x56{left:412.960000pt;}
.x26{left:420.800000pt;}
.x57{left:423.040000pt;}
.xd{left:426.560000pt;}
.x10{left:437.760000pt;}
.xe{left:440.800000pt;}
.x3{left:451.279904pt;}
.x7b{left:461.428000pt;}
.x44{left:468.800000pt;}
.x8c{left:474.548000pt;}
.x4d{left:492.320000pt;}
.x78{left:494.080000pt;}
.x50{left:513.759611pt;}
.x5f{left:515.040000pt;}
.x17{left:519.200000pt;}
.x19{left:520.320000pt;}
.xf{left:521.600000pt;}
.xb{left:536.160000pt;}
.x46{left:549.440000pt;}
.x7a{left:553.428000pt;}
.x88{left:559.348000pt;}
.x47{left:565.440000pt;}
.x4e{left:589.920000pt;}
.x51{left:609.919499pt;}
.x7d{left:615.350913pt;}
.xc{left:630.720000pt;}
.x67{left:643.680000pt;}
.x36{left:646.080000pt;}
.x23{left:647.840000pt;}
.x8e{left:659.668000pt;}
.x24{left:664.000000pt;}
.x42{left:665.760000pt;}
.x68{left:667.200000pt;}
.x5d{left:680.640000pt;}
.x69{left:682.720000pt;}
.x66{left:684.800000pt;}
.x5e{left:693.920000pt;}
.x8d{left:705.748000pt;}
.x49{left:707.840000pt;}
.x64{left:709.760000pt;}
.x9{left:710.720000pt;}
.x84{left:784.148000pt;}
.x89{left:786.548000pt;}
.x85{left:788.468000pt;}
.x83{left:793.588000pt;}
.x8a{left:797.428000pt;}
.x86{left:804.788000pt;}
.x82{left:811.348000pt;}
.x87{left:813.908000pt;}
.x81{left:816.308000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  