
    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_c1bef8f765bdd513eb037636.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eb20f232bcde0daf6eacb48d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_6467100c675f957c0c479862.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_4dd321c5875d5ebba970933a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e877fd6ae0861d1d3f3c3b6c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_43576100065fac083c8de6a9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_23117e37096d9333b664bb7e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_6086775e09125c57e0551645.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_501aa632aeca1f5bc80c2fa7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e08ae76a28186326b461c984.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59{transform:matrix(0.158583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158583,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.185174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185174,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.186301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186301,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.190598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190598,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.229920,0.000000,-0.076632,0.237965,0,0);-ms-transform:matrix(0.229920,0.000000,-0.076632,0.237965,0,0);-webkit-transform:matrix(0.229920,0.000000,-0.076632,0.237965,0,0);}
.m4f{transform:matrix(0.231592,0.000000,-0.077190,0.237785,0,0);-ms-transform:matrix(0.231592,0.000000,-0.077190,0.237785,0,0);-webkit-transform:matrix(0.231592,0.000000,-0.077190,0.237785,0,0);}
.m64{transform:matrix(0.233403,0.000000,-0.077793,0.237588,0,0);-ms-transform:matrix(0.233403,0.000000,-0.077793,0.237588,0,0);-webkit-transform:matrix(0.233403,0.000000,-0.077793,0.237588,0,0);}
.m26{transform:matrix(0.233929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233929,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.234430,0.000000,-0.078135,0.237476,0,0);-ms-transform:matrix(0.234430,0.000000,-0.078135,0.237476,0,0);-webkit-transform:matrix(0.234430,0.000000,-0.078135,0.237476,0,0);}
.m5f{transform:matrix(0.236293,0.000000,-0.078756,0.237271,0,0);-ms-transform:matrix(0.236293,0.000000,-0.078756,0.237271,0,0);-webkit-transform:matrix(0.236293,0.000000,-0.078756,0.237271,0,0);}
.m7{transform:matrix(0.236526,0.000000,-0.078834,0.237245,0,0);-ms-transform:matrix(0.236526,0.000000,-0.078834,0.237245,0,0);-webkit-transform:matrix(0.236526,0.000000,-0.078834,0.237245,0,0);}
.m37{transform:matrix(0.237643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237643,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.238380,0.000000,-0.079452,0.237039,0,0);-ms-transform:matrix(0.238380,0.000000,-0.079452,0.237039,0,0);-webkit-transform:matrix(0.238380,0.000000,-0.079452,0.237039,0,0);}
.m54{transform:matrix(0.238756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238756,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.239209,0.000000,-0.079728,0.236946,0,0);-ms-transform:matrix(0.239209,0.000000,-0.079728,0.236946,0,0);-webkit-transform:matrix(0.239209,0.000000,-0.079728,0.236946,0,0);}
.m1f{transform:matrix(0.239236,0.000000,-0.079737,0.236943,0,0);-ms-transform:matrix(0.239236,0.000000,-0.079737,0.236943,0,0);-webkit-transform:matrix(0.239236,0.000000,-0.079737,0.236943,0,0);}
.m56{transform:matrix(0.239818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239818,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.239901,0.000000,-0.079959,0.236868,0,0);-ms-transform:matrix(0.239901,0.000000,-0.079959,0.236868,0,0);-webkit-transform:matrix(0.239901,0.000000,-0.079959,0.236868,0,0);}
.m58{transform:matrix(0.240094,0.000000,-0.080023,0.236847,0,0);-ms-transform:matrix(0.240094,0.000000,-0.080023,0.236847,0,0);-webkit-transform:matrix(0.240094,0.000000,-0.080023,0.236847,0,0);}
.m53{transform:matrix(0.240246,0.000000,-0.080074,0.236829,0,0);-ms-transform:matrix(0.240246,0.000000,-0.080074,0.236829,0,0);-webkit-transform:matrix(0.240246,0.000000,-0.080074,0.236829,0,0);}
.m51{transform:matrix(0.240289,0.000000,-0.080088,0.236825,0,0);-ms-transform:matrix(0.240289,0.000000,-0.080088,0.236825,0,0);-webkit-transform:matrix(0.240289,0.000000,-0.080088,0.236825,0,0);}
.m40{transform:matrix(0.240439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240439,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.240644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240644,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.241167,0.000000,-0.080381,0.236725,0,0);-ms-transform:matrix(0.241167,0.000000,-0.080381,0.236725,0,0);-webkit-transform:matrix(0.241167,0.000000,-0.080381,0.236725,0,0);}
.ma{transform:matrix(0.241314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241314,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.241408,0.000000,-0.080461,0.236698,0,0);-ms-transform:matrix(0.241408,0.000000,-0.080461,0.236698,0,0);-webkit-transform:matrix(0.241408,0.000000,-0.080461,0.236698,0,0);}
.m8{transform:matrix(0.241548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241548,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.242069,0.000000,-0.080681,0.236623,0,0);-ms-transform:matrix(0.242069,0.000000,-0.080681,0.236623,0,0);-webkit-transform:matrix(0.242069,0.000000,-0.080681,0.236623,0,0);}
.m4d{transform:matrix(0.242564,0.000000,-0.080847,0.236567,0,0);-ms-transform:matrix(0.242564,0.000000,-0.080847,0.236567,0,0);-webkit-transform:matrix(0.242564,0.000000,-0.080847,0.236567,0,0);}
.m1b{transform:matrix(0.242985,0.000000,-0.080987,0.236519,0,0);-ms-transform:matrix(0.242985,0.000000,-0.080987,0.236519,0,0);-webkit-transform:matrix(0.242985,0.000000,-0.080987,0.236519,0,0);}
.m68{transform:matrix(0.243388,0.000000,-0.081121,0.236473,0,0);-ms-transform:matrix(0.243388,0.000000,-0.081121,0.236473,0,0);-webkit-transform:matrix(0.243388,0.000000,-0.081121,0.236473,0,0);}
.m4e{transform:matrix(0.243489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243489,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.243787,0.000000,-0.081254,0.236427,0,0);-ms-transform:matrix(0.243787,0.000000,-0.081254,0.236427,0,0);-webkit-transform:matrix(0.243787,0.000000,-0.081254,0.236427,0,0);}
.m38{transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244650,0.000000,-0.081542,0.236328,0,0);-ms-transform:matrix(0.244650,0.000000,-0.081542,0.236328,0,0);-webkit-transform:matrix(0.244650,0.000000,-0.081542,0.236328,0,0);}
.m62{transform:matrix(0.245279,0.000000,-0.081751,0.236256,0,0);-ms-transform:matrix(0.245279,0.000000,-0.081751,0.236256,0,0);-webkit-transform:matrix(0.245279,0.000000,-0.081751,0.236256,0,0);}
.m63{transform:matrix(0.245596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245596,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246039,0.000000,-0.082005,0.236168,0,0);-ms-transform:matrix(0.246039,0.000000,-0.082005,0.236168,0,0);-webkit-transform:matrix(0.246039,0.000000,-0.082005,0.236168,0,0);}
.m1c{transform:matrix(0.246229,0.000000,-0.082068,0.236146,0,0);-ms-transform:matrix(0.246229,0.000000,-0.082068,0.236146,0,0);-webkit-transform:matrix(0.246229,0.000000,-0.082068,0.236146,0,0);}
.m30{transform:matrix(0.246323,0.000000,-0.082099,0.236135,0,0);-ms-transform:matrix(0.246323,0.000000,-0.082099,0.236135,0,0);-webkit-transform:matrix(0.246323,0.000000,-0.082099,0.236135,0,0);}
.mb{transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249139,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249291,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249754,0.000000,-0.083243,0.235734,0,0);-ms-transform:matrix(0.249754,0.000000,-0.083243,0.235734,0,0);-webkit-transform:matrix(0.249754,0.000000,-0.083243,0.235734,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);}
.m43{transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251322,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251399,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252052,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253201,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253208,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253606,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.253657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253657,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.254691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254691,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.254809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254809,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.255753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255753,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.255982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255982,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.256338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256338,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256403,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.257311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257311,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.257783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257783,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.258328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258328,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.258863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258863,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.258977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258977,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.260786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260786,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.276633,0.000000,-0.092202,0.232377,0,0);-ms-transform:matrix(0.276633,0.000000,-0.092202,0.232377,0,0);-webkit-transform:matrix(0.276633,0.000000,-0.092202,0.232377,0,0);}
.m3{transform:matrix(0.283921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283921,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);}
.v16{vertical-align:-107.333616px;}
.vd{vertical-align:-104.683755px;}
.v17{vertical-align:-101.211241px;}
.v18{vertical-align:-94.892575px;}
.v14{vertical-align:-85.353326px;}
.v3{vertical-align:-77.496977px;}
.v2{vertical-align:-76.051148px;}
.v1c{vertical-align:-74.303084px;}
.v13{vertical-align:-70.632611px;}
.v6{vertical-align:-69.187087px;}
.v1{vertical-align:-68.078738px;}
.v7{vertical-align:-66.863508px;}
.v1a{vertical-align:-63.265025px;}
.ve{vertical-align:-60.957119px;}
.v23{vertical-align:-56.129706px;}
.v8{vertical-align:-52.342404px;}
.v9{vertical-align:-48.303502px;}
.v11{vertical-align:-44.101643px;}
.v12{vertical-align:-40.827238px;}
.va{vertical-align:-39.369522px;}
.v20{vertical-align:-37.959390px;}
.v15{vertical-align:-36.238323px;}
.v24{vertical-align:-35.190320px;}
.v1b{vertical-align:-33.185374px;}
.v22{vertical-align:-24.909626px;}
.v19{vertical-align:-19.514173px;}
.vc{vertical-align:-12.627941px;}
.v27{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.818412px;}
.v4{vertical-align:22.238602px;}
.v21{vertical-align:25.602061px;}
.v1f{vertical-align:31.398051px;}
.v1e{vertical-align:33.478080px;}
.v1d{vertical-align:35.272367px;}
.vf{vertical-align:38.052670px;}
.v26{vertical-align:45.254811px;}
.v25{vertical-align:48.141602px;}
.v10{vertical-align:53.130076px;}
.vb{vertical-align:80.524530px;}
.ls32{letter-spacing:-4.200000px;}
.lsc{letter-spacing:-3.000000px;}
.lse{letter-spacing:-2.994000px;}
.lsb{letter-spacing:-2.988000px;}
.lsd{letter-spacing:-2.700000px;}
.ls11{letter-spacing:-1.924216px;}
.ls35{letter-spacing:-1.685042px;}
.ls10{letter-spacing:-0.957692px;}
.ls63{letter-spacing:-0.860183px;}
.ls67{letter-spacing:-0.848395px;}
.ls24{letter-spacing:-0.735272px;}
.ls57{letter-spacing:-0.497714px;}
.ls55{letter-spacing:-0.482783px;}
.ls5f{letter-spacing:-0.392181px;}
.ls28{letter-spacing:-0.388468px;}
.ls61{letter-spacing:-0.383954px;}
.ls34{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.185351px;}
.ls56{letter-spacing:-0.168851px;}
.ls23{letter-spacing:-0.168000px;}
.ls54{letter-spacing:-0.163785px;}
.ls27{letter-spacing:-0.143307px;}
.ls22{letter-spacing:-0.083985px;}
.ls5d{letter-spacing:-0.056284px;}
.ls25{letter-spacing:-0.048000px;}
.ls21{letter-spacing:-0.029044px;}
.lsa{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls4e{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.084000px;}
.ls33{letter-spacing:0.090148px;}
.ls0{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.150000px;}
.ls60{letter-spacing:0.161245px;}
.ls4a{letter-spacing:0.216000px;}
.ls53{letter-spacing:0.268032px;}
.ls65{letter-spacing:0.288000px;}
.ls5e{letter-spacing:0.295970px;}
.ls2{letter-spacing:0.300000px;}
.ls36{letter-spacing:0.332683px;}
.ls5c{letter-spacing:0.413745px;}
.lsf{letter-spacing:0.432000px;}
.ls62{letter-spacing:0.493284px;}
.ls5b{letter-spacing:0.497316px;}
.ls58{letter-spacing:0.533106px;}
.ls52{letter-spacing:0.545417px;}
.ls31{letter-spacing:0.609863px;}
.ls59{letter-spacing:0.717863px;}
.ls38{letter-spacing:0.743813px;}
.ls5a{letter-spacing:0.746659px;}
.ls51{letter-spacing:0.780089px;}
.ls37{letter-spacing:1.470953px;}
.ls26{letter-spacing:1.508365px;}
.ls4c{letter-spacing:3.765300px;}
.ls4b{letter-spacing:3.845986px;}
.ls45{letter-spacing:9.000000px;}
.ls7{letter-spacing:22.800000px;}
.ls3a{letter-spacing:50.400000px;}
.ls4{letter-spacing:78.865049px;}
.ls42{letter-spacing:81.222141px;}
.ls44{letter-spacing:83.594599px;}
.ls39{letter-spacing:95.428756px;}
.ls14{letter-spacing:101.547939px;}
.ls30{letter-spacing:101.967989px;}
.ls15{letter-spacing:106.994331px;}
.ls1c{letter-spacing:120.584705px;}
.ls13{letter-spacing:123.478009px;}
.ls12{letter-spacing:124.377779px;}
.ls3f{letter-spacing:127.930728px;}
.ls2f{letter-spacing:129.367451px;}
.ls46{letter-spacing:178.605903px;}
.ls4d{letter-spacing:192.151978px;}
.ls20{letter-spacing:226.985819px;}
.ls3d{letter-spacing:255.336376px;}
.ls19{letter-spacing:258.444010px;}
.ls5{letter-spacing:282.414594px;}
.ls6{letter-spacing:304.214144px;}
.ls2a{letter-spacing:315.660313px;}
.ls2c{letter-spacing:397.517557px;}
.ls29{letter-spacing:399.532424px;}
.ls17{letter-spacing:410.896008px;}
.ls3e{letter-spacing:429.560505px;}
.ls1e{letter-spacing:437.558972px;}
.ls1d{letter-spacing:440.950728px;}
.ls16{letter-spacing:445.233728px;}
.ls40{letter-spacing:451.462260px;}
.ls1b{letter-spacing:456.674180px;}
.ls3c{letter-spacing:500.001936px;}
.ls49{letter-spacing:506.819363px;}
.ls18{letter-spacing:509.015803px;}
.ls64{letter-spacing:509.990023px;}
.ls4f{letter-spacing:525.914650px;}
.ls48{letter-spacing:531.351571px;}
.ls1a{letter-spacing:537.242269px;}
.ls41{letter-spacing:555.155200px;}
.ls43{letter-spacing:559.486564px;}
.ls1f{letter-spacing:803.898110px;}
.ls3b{letter-spacing:975.783858px;}
.ls2e{letter-spacing:1016.838274px;}
.ls2d{letter-spacing:1130.567026px;}
.ls47{letter-spacing:1217.716624px;}
.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;}
}
.ws60{word-spacing:-104.305344px;}
.ws69{word-spacing:-103.115655px;}
.ws6e{word-spacing:-84.913982px;}
.ws89{word-spacing:-67.756407px;}
.wsa1{word-spacing:-59.209117px;}
.ws11{word-spacing:-54.668415px;}
.ws59{word-spacing:-54.380411px;}
.ws39{word-spacing:-53.829910px;}
.ws12{word-spacing:-53.615712px;}
.ws2d{word-spacing:-53.602443px;}
.ws9c{word-spacing:-53.521519px;}
.ws62{word-spacing:-52.835707px;}
.wsa2{word-spacing:-50.863051px;}
.wsa6{word-spacing:-50.213801px;}
.ws18{word-spacing:-48.806399px;}
.ws2e{word-spacing:-48.173949px;}
.ws45{word-spacing:-47.760612px;}
.ws8d{word-spacing:-47.713933px;}
.ws1d{word-spacing:-47.018569px;}
.ws83{word-spacing:-46.936894px;}
.ws51{word-spacing:-46.018027px;}
.ws7b{word-spacing:-45.528799px;}
.ws88{word-spacing:-45.203531px;}
.ws31{word-spacing:-41.163665px;}
.ws3b{word-spacing:-40.742902px;}
.ws96{word-spacing:-33.111045px;}
.ws82{word-spacing:-33.054799px;}
.ws7a{word-spacing:-32.063820px;}
.ws93{word-spacing:-31.313395px;}
.ws4f{word-spacing:-27.009021px;}
.ws21{word-spacing:-26.109999px;}
.ws10{word-spacing:-24.894542px;}
.ws99{word-spacing:-24.533521px;}
.wsf{word-spacing:-24.415170px;}
.ws98{word-spacing:-24.372276px;}
.ws61{word-spacing:-24.059976px;}
.ws5e{word-spacing:-23.749908px;}
.ws67{word-spacing:-23.479021px;}
.ws54{word-spacing:-23.062100px;}
.ws15{word-spacing:-22.225136px;}
.ws14{word-spacing:-22.196092px;}
.wsa3{word-spacing:-21.929303px;}
.wsa{word-spacing:-21.702870px;}
.wsa7{word-spacing:-21.628774px;}
.ws84{word-spacing:-21.488492px;}
.ws23{word-spacing:-21.429141px;}
.ws1a{word-spacing:-21.411006px;}
.ws19{word-spacing:-21.327021px;}
.ws35{word-spacing:-21.195477px;}
.ws5a{word-spacing:-21.028094px;}
.ws8f{word-spacing:-20.998231px;}
.ws50{word-spacing:-20.955386px;}
.ws8e{word-spacing:-20.584486px;}
.ws6c{word-spacing:-19.334590px;}
.ws3a{word-spacing:-18.553234px;}
.wsb{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws32{word-spacing:-17.952000px;}
.ws1e{word-spacing:-17.880047px;}
.ws27{word-spacing:-17.414501px;}
.ws70{word-spacing:-17.409007px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws57{word-spacing:-14.456958px;}
.ws37{word-spacing:-14.291368px;}
.ws7c{word-spacing:-14.259287px;}
.ws9a{word-spacing:-14.237416px;}
.ws75{word-spacing:-13.831512px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws74{word-spacing:-13.458012px;}
.ws90{word-spacing:-12.010756px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws7e{word-spacing:-8.324624px;}
.ws77{word-spacing:-8.074887px;}
.ws42{word-spacing:-0.696859px;}
.ws9e{word-spacing:-0.099578px;}
.ws58{word-spacing:-0.099054px;}
.ws38{word-spacing:-0.098051px;}
.ws9b{word-spacing:-0.097489px;}
.ws5c{word-spacing:-0.095000px;}
.ws65{word-spacing:-0.093916px;}
.ws4d{word-spacing:-0.092248px;}
.ws71{word-spacing:-0.092209px;}
.ws48{word-spacing:-0.090990px;}
.ws16{word-spacing:-0.088901px;}
.wsa0{word-spacing:-0.087717px;}
.ws41{word-spacing:-0.086996px;}
.wsa4{word-spacing:-0.086515px;}
.ws22{word-spacing:-0.085887px;}
.ws26{word-spacing:-0.085717px;}
.ws1b{word-spacing:-0.085644px;}
.wsc{word-spacing:-0.085005px;}
.ws3f{word-spacing:-0.082633px;}
.ws8a{word-spacing:-0.082338px;}
.ws6a{word-spacing:-0.077338px;}
.ws2f{word-spacing:-0.074979px;}
.ws1f{word-spacing:-0.071520px;}
.ws2a{word-spacing:-0.069658px;}
.ws6f{word-spacing:-0.069636px;}
.ws64{word-spacing:-0.069631px;}
.ws34{word-spacing:-0.069628px;}
.ws7f{word-spacing:-0.057037px;}
.ws78{word-spacing:-0.055326px;}
.ws8b{word-spacing:-0.048043px;}
.ws95{word-spacing:-0.033298px;}
.ws13{word-spacing:0.000000px;}
.ws81{word-spacing:0.464416px;}
.wsa5{word-spacing:0.797955px;}
.ws4e{word-spacing:1.592794px;}
.ws91{word-spacing:10.192061px;}
.wse{word-spacing:22.107049px;}
.ws8c{word-spacing:22.476728px;}
.ws6d{word-spacing:23.267429px;}
.ws53{word-spacing:24.491997px;}
.ws40{word-spacing:33.917260px;}
.ws6b{word-spacing:34.803299px;}
.ws72{word-spacing:36.885413px;}
.ws97{word-spacing:40.259559px;}
.ws76{word-spacing:44.086902px;}
.ws79{word-spacing:45.135901px;}
.ws7d{word-spacing:45.357372px;}
.ws80{word-spacing:46.578360px;}
.ws63{word-spacing:51.685825px;}
.wsd{word-spacing:68.851958px;}
.ws3e{word-spacing:71.602210px;}
.ws4c{word-spacing:77.757819px;}
.ws4a{word-spacing:85.575072px;}
.ws44{word-spacing:89.881876px;}
.ws4b{word-spacing:100.127850px;}
.ws68{word-spacing:107.250988px;}
.ws33{word-spacing:108.027946px;}
.ws5f{word-spacing:108.302449px;}
.ws66{word-spacing:109.046985px;}
.ws49{word-spacing:110.194036px;}
.ws5d{word-spacing:110.305106px;}
.ws3c{word-spacing:120.532138px;}
.ws87{word-spacing:138.359111px;}
.ws29{word-spacing:140.709999px;}
.ws9d{word-spacing:148.852733px;}
.ws36{word-spacing:162.696644px;}
.ws25{word-spacing:163.551410px;}
.ws5b{word-spacing:177.954688px;}
.ws20{word-spacing:188.437049px;}
.ws2c{word-spacing:196.826828px;}
.ws2b{word-spacing:217.939811px;}
.ws52{word-spacing:258.477204px;}
.ws92{word-spacing:260.664242px;}
.ws55{word-spacing:288.845159px;}
.ws9f{word-spacing:294.940938px;}
.ws3d{word-spacing:297.227056px;}
.ws28{word-spacing:309.007304px;}
.ws1c{word-spacing:315.134841px;}
.ws47{word-spacing:320.844676px;}
.ws17{word-spacing:331.662336px;}
.ws24{word-spacing:369.451498px;}
.ws73{word-spacing:400.911537px;}
.ws46{word-spacing:474.729881px;}
.ws56{word-spacing:496.564391px;}
.ws86{word-spacing:549.460903px;}
.ws85{word-spacing:570.531067px;}
.ws30{word-spacing:592.393381px;}
.ws43{word-spacing:924.483326px;}
.ws94{word-spacing:1394.170474px;}
._b0{margin-left:-879.467740px;}
._87{margin-left:-854.757821px;}
._bd{margin-left:-739.126007px;}
._b6{margin-left:-692.645714px;}
._91{margin-left:-673.683552px;}
._96{margin-left:-652.600517px;}
._af{margin-left:-632.988216px;}
._b2{margin-left:-621.772432px;}
._b5{margin-left:-611.312992px;}
._ae{margin-left:-564.096976px;}
._8e{margin-left:-520.737400px;}
._94{margin-left:-497.628101px;}
._73{margin-left:-456.265006px;}
._76{margin-left:-438.601777px;}
._74{margin-left:-434.111162px;}
._c4{margin-left:-426.990465px;}
._80{margin-left:-424.264187px;}
._c6{margin-left:-413.887384px;}
._9a{margin-left:-412.714145px;}
._c5{margin-left:-411.005099px;}
._b7{margin-left:-407.583461px;}
._90{margin-left:-398.082348px;}
._42{margin-left:-396.712796px;}
._95{margin-left:-393.722388px;}
._c2{margin-left:-387.367594px;}
._b1{margin-left:-376.417075px;}
._cb{margin-left:-364.103792px;}
._c3{margin-left:-362.579418px;}
._cc{margin-left:-360.977846px;}
._b8{margin-left:-344.314761px;}
._ac{margin-left:-338.435686px;}
._ad{margin-left:-335.530109px;}
._47{margin-left:-331.210663px;}
._ab{margin-left:-329.936505px;}
._d1{margin-left:-319.142378px;}
._7f{margin-left:-316.368483px;}
._ca{margin-left:-310.091960px;}
._b3{margin-left:-301.656084px;}
._99{margin-left:-295.348616px;}
._d0{margin-left:-292.789849px;}
._cd{margin-left:-291.123567px;}
._85{margin-left:-284.972470px;}
._75{margin-left:-280.815403px;}
._5e{margin-left:-278.081786px;}
._84{margin-left:-275.282559px;}
._5d{margin-left:-267.659954px;}
._67{margin-left:-262.815843px;}
._71{margin-left:-259.783833px;}
._72{margin-left:-257.141912px;}
._c7{margin-left:-254.503093px;}
._a3{margin-left:-250.184073px;}
._d2{margin-left:-247.769894px;}
._77{margin-left:-245.446476px;}
._ce{margin-left:-242.666564px;}
._b4{margin-left:-241.306893px;}
._9d{margin-left:-236.345677px;}
._cf{margin-left:-233.117178px;}
._4a{margin-left:-231.577852px;}
._32{margin-left:-229.634313px;}
._78{margin-left:-226.214933px;}
._5f{margin-left:-224.148049px;}
._29{margin-left:-221.759582px;}
._a9{margin-left:-218.317723px;}
._35{margin-left:-214.762998px;}
._3e{margin-left:-211.839962px;}
._4b{margin-left:-209.520214px;}
._bc{margin-left:-207.129388px;}
._a2{margin-left:-205.856105px;}
._c0{margin-left:-203.652849px;}
._9e{margin-left:-199.354462px;}
._a7{margin-left:-197.540723px;}
._9c{margin-left:-195.409131px;}
._66{margin-left:-194.026848px;}
._3d{margin-left:-192.559336px;}
._be{margin-left:-190.302937px;}
._7d{margin-left:-188.571542px;}
._8b{margin-left:-184.910997px;}
._7e{margin-left:-181.919731px;}
._83{margin-left:-180.789711px;}
._8a{margin-left:-179.756366px;}
._c1{margin-left:-178.115909px;}
._63{margin-left:-174.972933px;}
._62{margin-left:-170.270707px;}
._49{margin-left:-168.851971px;}
._88{margin-left:-166.451521px;}
._70{margin-left:-164.163157px;}
._c9{margin-left:-163.046884px;}
._40{margin-left:-161.901174px;}
._8c{margin-left:-158.159654px;}
._61{margin-left:-156.648973px;}
._6f{margin-left:-154.366694px;}
._24{margin-left:-148.357985px;}
._69{margin-left:-146.812882px;}
._bf{margin-left:-144.471703px;}
._7c{margin-left:-143.183284px;}
._8f{margin-left:-140.881181px;}
._28{margin-left:-139.134977px;}
._8d{margin-left:-137.938724px;}
._93{margin-left:-136.518600px;}
._89{margin-left:-135.019889px;}
._2e{margin-left:-133.349274px;}
._65{margin-left:-132.027239px;}
._2f{margin-left:-130.622159px;}
._43{margin-left:-129.346028px;}
._4c{margin-left:-127.617106px;}
._27{margin-left:-126.167812px;}
._2c{margin-left:-124.096978px;}
._31{margin-left:-122.039505px;}
._38{margin-left:-120.547864px;}
._25{margin-left:-118.892381px;}
._98{margin-left:-117.380426px;}
._34{margin-left:-115.719361px;}
._48{margin-left:-114.491388px;}
._22{margin-left:-111.999106px;}
._60{margin-left:-110.431620px;}
._a6{margin-left:-109.083199px;}
._37{margin-left:-108.078650px;}
._82{margin-left:-107.052721px;}
._4e{margin-left:-105.236271px;}
._a1{margin-left:-103.825453px;}
._26{margin-left:-102.343337px;}
._4d{margin-left:-101.303486px;}
._30{margin-left:-97.899751px;}
._41{margin-left:-95.321932px;}
._5c{margin-left:-93.944316px;}
._33{margin-left:-92.725594px;}
._ba{margin-left:-91.335259px;}
._45{margin-left:-89.848053px;}
._68{margin-left:-88.264125px;}
._97{margin-left:-84.960606px;}
._c8{margin-left:-83.491959px;}
._5b{margin-left:-82.421371px;}
._36{margin-left:-80.401169px;}
._92{margin-left:-78.727324px;}
._46{margin-left:-76.904926px;}
._2d{margin-left:-74.018826px;}
._2b{margin-left:-72.512363px;}
._5a{margin-left:-71.001655px;}
._a5{margin-left:-67.397518px;}
._a0{margin-left:-65.375609px;}
._3f{margin-left:-64.023938px;}
._aa{margin-left:-62.949672px;}
._81{margin-left:-61.850054px;}
._86{margin-left:-57.142373px;}
._9b{margin-left:-53.406196px;}
._44{margin-left:-51.826293px;}
._bb{margin-left:-42.623180px;}
._7b{margin-left:-4.464000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._13{width:2.226000px;}
._8{width:3.372000px;}
._19{width:4.392000px;}
._18{width:5.832000px;}
._6a{width:7.560000px;}
._d{width:8.598000px;}
._5{width:9.750000px;}
._4{width:10.806000px;}
._10{width:12.108000px;}
._b{width:13.746000px;}
._c{width:15.102000px;}
._9{width:16.776000px;}
._a{width:19.134000px;}
._1e{width:20.304000px;}
._2a{width:21.384000px;}
._1a{width:22.608000px;}
._6{width:23.904000px;}
._7{width:25.044000px;}
._17{width:26.796000px;}
._16{width:27.864000px;}
._51{width:29.100000px;}
._21{width:30.816000px;}
._14{width:32.904000px;}
._15{width:34.056000px;}
._3a{width:35.712000px;}
._3b{width:36.720000px;}
._d4{width:37.962000px;}
._58{width:39.312000px;}
._59{width:40.896000px;}
._11{width:42.408000px;}
._53{width:45.504000px;}
._52{width:47.160000px;}
._1f{width:48.888000px;}
._20{width:50.400000px;}
._39{width:51.636000px;}
._1d{width:52.920000px;}
._e{width:54.720000px;}
._f{width:55.728000px;}
._55{width:57.312000px;}
._56{width:58.320000px;}
._6b{width:60.336000px;}
._d6{width:62.640000px;}
._4f{width:63.792000px;}
._50{width:64.872000px;}
._79{width:66.558000px;}
._64{width:69.366000px;}
._1b{width:70.704000px;}
._1c{width:72.216000px;}
._7a{width:75.816000px;}
._d5{width:82.950000px;}
._6c{width:84.960000px;}
._54{width:85.968000px;}
._a8{width:88.644000px;}
._12{width:101.520000px;}
._23{width:109.512000px;}
._57{width:115.416000px;}
._d3{width:117.072000px;}
._3c{width:125.136000px;}
._6e{width:169.978618px;}
._9f{width:501.962292px;}
._a4{width:504.741559px;}
._b9{width:794.666406px;}
._6d{width:839.584646px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs66{font-size:32.299547px;}
.fs6a{font-size:33.298494px;}
.fs1e{font-size:40.681266px;}
.fs18{font-size:41.708454px;}
.fs2e{font-size:42.391547px;}
.fs26{font-size:43.714367px;}
.fs5a{font-size:45.060104px;}
.fs43{font-size:45.996282px;}
.fs7f{font-size:48.000000px;}
.fs71{font-size:48.043025px;}
.fs37{font-size:48.271463px;}
.fs20{font-size:48.735599px;}
.fs47{font-size:49.039088px;}
.fs16{font-size:49.932069px;}
.fs1c{font-size:49.987360px;}
.fs1a{font-size:50.159248px;}
.fs7d{font-size:50.439920px;}
.fs7{font-size:50.712177px;}
.fs53{font-size:51.140776px;}
.fs23{font-size:51.175123px;}
.fs14{font-size:51.932534px;}
.fs62{font-size:51.964903px;}
.fs6d{font-size:52.065454px;}
.fs3e{font-size:53.152891px;}
.fs30{font-size:53.718380px;}
.fs60{font-size:53.832046px;}
.fs3{font-size:54.000000px;}
.fs4d{font-size:54.319908px;}
.fs50{font-size:54.645185px;}
.fs56{font-size:54.828550px;}
.fs65{font-size:55.326049px;}
.fs4a{font-size:55.461130px;}
.fs34{font-size:56.206963px;}
.fs38{font-size:56.400238px;}
.fsd{font-size:56.938003px;}
.fs77{font-size:56.949666px;}
.fs2{font-size:57.000000px;}
.fs69{font-size:57.037149px;}
.fs2b{font-size:57.165473px;}
.fs45{font-size:57.827834px;}
.fs10{font-size:58.170023px;}
.fs67{font-size:58.404044px;}
.fs1{font-size:60.000000px;}
.fs6b{font-size:60.209105px;}
.fs74{font-size:60.311557px;}
.fs4{font-size:66.000000px;}
.fs29{font-size:69.627762px;}
.fs54{font-size:69.630955px;}
.fs5d{font-size:69.636030px;}
.fs1d{font-size:69.658005px;}
.fs17{font-size:71.520187px;}
.fs5{font-size:72.000000px;}
.fs5e{font-size:73.850171px;}
.fsb{font-size:73.992652px;}
.fs31{font-size:74.212936px;}
.fs6e{font-size:74.325133px;}
.fs12{font-size:74.749232px;}
.fs25{font-size:74.979354px;}
.fs59{font-size:77.338362px;}
.fs42{font-size:78.893319px;}
.fs40{font-size:79.048628px;}
.fs27{font-size:79.253061px;}
.fs5b{font-size:81.710491px;}
.fs6f{font-size:82.337943px;}
.fs36{font-size:82.633352px;}
.fs68{font-size:82.930417px;}
.fs41{font-size:83.821543px;}
.fs0{font-size:84.000000px;}
.fs46{font-size:84.112374px;}
.fs2d{font-size:84.781909px;}
.fs9{font-size:85.005170px;}
.fs6c{font-size:85.495254px;}
.fs15{font-size:85.644024px;}
.fs1b{font-size:85.716564px;}
.fs19{font-size:85.887032px;}
.fs7c{font-size:86.515096px;}
.fs6{font-size:86.811480px;}
.fs72{font-size:86.910624px;}
.fs3b{font-size:86.995650px;}
.fs3c{font-size:87.485295px;}
.fs52{font-size:87.717211px;}
.fs22{font-size:87.748541px;}
.fs48{font-size:88.829044px;}
.fs13{font-size:88.900544px;}
.fs63{font-size:89.107584px;}
.fs2f{font-size:89.452744px;}
.fs28{font-size:89.992135px;}
.fs3d{font-size:90.989608px;}
.fs73{font-size:91.346888px;}
.fs7e{font-size:91.464119px;}
.fs8{font-size:91.895959px;}
.fs5f{font-size:92.209168px;}
.fsa{font-size:92.248402px;}
.fs7b{font-size:92.646724px;}
.fs4e{font-size:93.011275px;}
.fs64{font-size:93.684990px;}
.fs4f{font-size:93.728012px;}
.fs55{font-size:93.916084px;}
.fs24{font-size:94.403415px;}
.fs49{font-size:94.999633px;}
.fs51{font-size:96.239904px;}
.fs33{font-size:96.381720px;}
.fs39{font-size:96.573397px;}
.fs61{font-size:97.445180px;}
.fs76{font-size:97.489105px;}
.fs1f{font-size:97.636509px;}
.fsc{font-size:97.660678px;}
.fs2a{font-size:98.050837px;}
.fs44{font-size:99.053571px;}
.fs57{font-size:99.122700px;}
.fsf{font-size:99.578169px;}
.fs4b{font-size:100.009718px;}
.fs78{font-size:102.719239px;}
.fse{font-size:102.911201px;}
.fs21{font-size:103.284924px;}
.fs2c{font-size:103.454048px;}
.fs3f{font-size:104.398163px;}
.fs11{font-size:104.614134px;}
.fs7a{font-size:104.780120px;}
.fs75{font-size:105.023062px;}
.fs79{font-size:105.371199px;}
.fs35{font-size:109.142602px;}
.fs3a{font-size:114.893659px;}
.fs70{font-size:123.417864px;}
.fs32{font-size:127.289679px;}
.fs5c{font-size:154.670277px;}
.fs58{font-size:187.824508px;}
.fs4c{font-size:189.991519px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y7c{bottom:2.810251px;}
.y96{bottom:3.269233px;}
.y94{bottom:3.269234px;}
.y21a{bottom:3.663689px;}
.y1c{bottom:3.900000px;}
.y269{bottom:3.993226px;}
.y27b{bottom:4.116727px;}
.y4f{bottom:4.274615px;}
.y285{bottom:4.347503px;}
.y13d{bottom:4.388438px;}
.y1e7{bottom:4.503724px;}
.y158{bottom:4.552543px;}
.ya4{bottom:4.574598px;}
.y3e{bottom:4.610350px;}
.y2c8{bottom:4.677238px;}
.y2ca{bottom:4.677261px;}
.y2bf{bottom:4.741961px;}
.y2c0{bottom:4.741966px;}
.y2d8{bottom:4.843568px;}
.y2da{bottom:4.843576px;}
.y2d1{bottom:4.843577px;}
.y2d9{bottom:4.843582px;}
.y2b5{bottom:4.843586px;}
.y2b6{bottom:4.843604px;}
.ya9{bottom:4.853786px;}
.y81{bottom:4.853805px;}
.y84{bottom:4.853809px;}
.ybe{bottom:4.968930px;}
.yc1{bottom:4.968948px;}
.yc6{bottom:4.968951px;}
.y132{bottom:4.987535px;}
.y25d{bottom:5.005153px;}
.y288{bottom:5.085035px;}
.y215{bottom:5.158577px;}
.y271{bottom:5.159950px;}
.y2a9{bottom:5.231960px;}
.y119{bottom:5.321602px;}
.y11b{bottom:5.321613px;}
.y117{bottom:5.321616px;}
.y7{bottom:5.400000px;}
.y68{bottom:5.436729px;}
.y6c{bottom:5.436731px;}
.y5a{bottom:5.436732px;}
.y61{bottom:5.436736px;}
.y5d{bottom:5.436737px;}
.y6a{bottom:5.436740px;}
.y6d{bottom:5.436741px;}
.y208{bottom:5.571290px;}
.y203{bottom:5.571297px;}
.y206{bottom:5.571299px;}
.y1fe{bottom:5.571300px;}
.y1d6{bottom:5.635519px;}
.y9c{bottom:5.640368px;}
.ya1{bottom:5.683360px;}
.yb{bottom:6.000000px;}
.y1dd{bottom:6.108203px;}
.y128{bottom:6.174934px;}
.y12a{bottom:6.174952px;}
.y142{bottom:6.342151px;}
.y146{bottom:6.342154px;}
.y139{bottom:6.390440px;}
.y243{bottom:6.400459px;}
.y247{bottom:6.400476px;}
.y22c{bottom:6.655324px;}
.y230{bottom:6.655348px;}
.yc{bottom:6.750000px;}
.y1b7{bottom:6.953432px;}
.y1bb{bottom:6.953458px;}
.y25b{bottom:7.165833px;}
.yd4{bottom:7.168444px;}
.yd7{bottom:7.168461px;}
.yde{bottom:7.168463px;}
.yd9{bottom:7.168469px;}
.ye1{bottom:7.168471px;}
.y18b{bottom:7.386331px;}
.y186{bottom:7.386337px;}
.y18d{bottom:7.386366px;}
.y189{bottom:7.386372px;}
.y26f{bottom:7.387455px;}
.y260{bottom:7.411962px;}
.y120{bottom:7.430486px;}
.y122{bottom:7.430494px;}
.y123{bottom:7.430498px;}
.y19b{bottom:7.542682px;}
.y1a0{bottom:7.542687px;}
.y105{bottom:7.569370px;}
.y1f5{bottom:7.569721px;}
.y2ae{bottom:7.613055px;}
.y274{bottom:7.641196px;}
.y93{bottom:7.723783px;}
.y2fc{bottom:7.971239px;}
.y2fe{bottom:7.971241px;}
.y8b{bottom:8.103236px;}
.y8e{bottom:8.103240px;}
.y2f5{bottom:8.142699px;}
.y302{bottom:8.142701px;}
.y2f7{bottom:8.142714px;}
.y305{bottom:8.142716px;}
.yb0{bottom:8.145559px;}
.y175{bottom:8.536806px;}
.y174{bottom:8.655865px;}
.ya3{bottom:8.939410px;}
.y1c9{bottom:8.958209px;}
.y1cb{bottom:8.958216px;}
.y1cc{bottom:8.958221px;}
.y1e3{bottom:9.112391px;}
.y281{bottom:9.112392px;}
.y17f{bottom:9.112403px;}
.y71{bottom:9.288423px;}
.y75{bottom:9.288425px;}
.y73{bottom:9.288434px;}
.y78{bottom:9.288435px;}
.y54{bottom:9.336902px;}
.y2ec{bottom:9.342139px;}
.y47{bottom:9.359332px;}
.y104{bottom:9.359387px;}
.y10b{bottom:9.374203px;}
.y154{bottom:9.395033px;}
.y16a{bottom:9.395044px;}
.y153{bottom:9.526053px;}
.y169{bottom:9.526080px;}
.ycf{bottom:9.604496px;}
.y1f1{bottom:9.646305px;}
.y1ef{bottom:9.646316px;}
.y289{bottom:9.719985px;}
.y2e5{bottom:9.993911px;}
.y2e7{bottom:9.993915px;}
.yd1{bottom:10.011189px;}
.y192{bottom:10.028490px;}
.y4a{bottom:10.028494px;}
.y17d{bottom:10.028499px;}
.y1eb{bottom:10.462425px;}
.y9b{bottom:11.022133px;}
.ya0{bottom:11.065288px;}
.y291{bottom:11.211372px;}
.y294{bottom:11.211403px;}
.y297{bottom:11.211429px;}
.y223{bottom:11.760597px;}
.y225{bottom:11.760604px;}
.y227{bottom:11.760615px;}
.y24a{bottom:11.816290px;}
.y24c{bottom:11.816299px;}
.y1de{bottom:11.936414px;}
.y220{bottom:12.307657px;}
.y147{bottom:12.393610px;}
.y143{bottom:12.393611px;}
.y138{bottom:12.442051px;}
.y1ae{bottom:12.486726px;}
.y1bd{bottom:12.486728px;}
.y1b0{bottom:12.486734px;}
.y1c0{bottom:12.486735px;}
.y1b2{bottom:12.486747px;}
.y1c3{bottom:12.486748px;}
.y137{bottom:12.587207px;}
.y26b{bottom:12.854666px;}
.y27d{bottom:13.252230px;}
.y25f{bottom:13.374673px;}
.y273{bottom:13.788319px;}
.y1f9{bottom:14.438973px;}
.y1fb{bottom:14.438991px;}
.y1d2{bottom:14.605554px;}
.y265{bottom:14.768879px;}
.y2ad{bottom:14.887245px;}
.y266{bottom:15.042982px;}
.y1e5{bottom:15.043051px;}
.y277{bottom:15.225644px;}
.y13f{bottom:15.421272px;}
.y278{bottom:15.508225px;}
.y2be{bottom:15.677452px;}
.y210{bottom:15.827416px;}
.ybc{bottom:15.942190px;}
.y2d0{bottom:16.013398px;}
.y2b4{bottom:16.013403px;}
.y42{bottom:16.201042px;}
.y182{bottom:16.217741px;}
.y184{bottom:16.217776px;}
.y115{bottom:16.303150px;}
.y195{bottom:16.374063px;}
.y197{bottom:16.374093px;}
.y129{bottom:16.528565px;}
.y80{bottom:16.590909px;}
.ydb{bottom:17.010858px;}
.y21d{bottom:17.350564px;}
.y300{bottom:17.699676px;}
.yc3{bottom:18.054560px;}
.y25a{bottom:18.243113px;}
.y63{bottom:18.583580px;}
.y2d3{bottom:18.583597px;}
.y26e{bottom:18.807328px;}
.y2ac{bottom:18.835237px;}
.y268{bottom:18.844335px;}
.y2ef{bottom:19.205396px;}
.y27a{bottom:19.427145px;}
.ycd{bottom:19.459821px;}
.y1ed{bottom:19.467079px;}
.y8a{bottom:19.472381px;}
.y2fa{bottom:19.628052px;}
.ya{bottom:19.950000px;}
.y216{bottom:20.125961px;}
.y28e{bottom:20.139272px;}
.y109{bottom:20.350136px;}
.y6{bottom:20.550000px;}
.y13c{bottom:20.588986px;}
.y15c{bottom:20.589042px;}
.y159{bottom:20.589061px;}
.y13b{bottom:20.712466px;}
.y245{bottom:20.722630px;}
.y22a{bottom:21.424245px;}
.y22e{bottom:21.424268px;}
.y3d{bottom:21.630017px;}
.y40{bottom:21.630042px;}
.y43{bottom:21.630052px;}
.yd2{bottom:21.680372px;}
.yd6{bottom:21.690532px;}
.ye4{bottom:21.690534px;}
.ydd{bottom:21.690536px;}
.ye0{bottom:21.690546px;}
.ye3{bottom:21.690554px;}
.ye5{bottom:21.690559px;}
.y2eb{bottom:21.725028px;}
.y23d{bottom:21.843106px;}
.y23f{bottom:21.843115px;}
.y233{bottom:22.108566px;}
.y235{bottom:22.108577px;}
.y7f{bottom:22.150542px;}
.ya8{bottom:22.150548px;}
.yab{bottom:22.150574px;}
.yad{bottom:22.150583px;}
.y83{bottom:22.150587px;}
.y86{bottom:22.150592px;}
.y56{bottom:22.204496px;}
.y160{bottom:22.671040px;}
.y163{bottom:22.671062px;}
.y1b5{bottom:22.818603px;}
.y1b9{bottom:22.818630px;}
.y181{bottom:22.822788px;}
.y19f{bottom:22.822809px;}
.y188{bottom:22.822833px;}
.y199{bottom:22.822835px;}
.y1a2{bottom:22.822848px;}
.y19d{bottom:22.822860px;}
.y1e4{bottom:23.261582px;}
.y1aa{bottom:23.602188px;}
.y1ac{bottom:23.602201px;}
.y204{bottom:23.678219px;}
.y124{bottom:23.906198px;}
.y125{bottom:23.906205px;}
.y1d8{bottom:23.951343px;}
.y264{bottom:23.986879px;}
.ybb{bottom:24.141010px;}
.yc0{bottom:24.141023px;}
.yc5{bottom:24.141026px;}
.yc8{bottom:24.141042px;}
.yc9{bottom:24.141048px;}
.y113{bottom:24.237599px;}
.y2bc{bottom:24.290458px;}
.y2c4{bottom:24.290489px;}
.y2c2{bottom:24.290497px;}
.y1b{bottom:24.600000px;}
.y229{bottom:24.614564px;}
.y59{bottom:24.810970px;}
.y2ce{bottom:24.810973px;}
.y2b2{bottom:24.810975px;}
.y5c{bottom:24.810979px;}
.y5f{bottom:24.810984px;}
.y64{bottom:24.810988px;}
.y2d2{bottom:24.810993px;}
.y2db{bottom:24.810997px;}
.y2d4{bottom:24.811009px;}
.y2b8{bottom:24.811049px;}
.y89{bottom:24.861420px;}
.yaf{bottom:24.861426px;}
.yb2{bottom:24.861453px;}
.yb4{bottom:24.861462px;}
.y8d{bottom:24.861466px;}
.y90{bottom:24.861471px;}
.y2f4{bottom:25.027660px;}
.y2fb{bottom:25.027663px;}
.y2fd{bottom:25.027665px;}
.y301{bottom:25.027700px;}
.y304{bottom:25.027716px;}
.y307{bottom:25.027731px;}
.y2f9{bottom:25.027738px;}
.y263{bottom:25.655188px;}
.y1cd{bottom:26.083668px;}
.y1ce{bottom:26.083674px;}
.y214{bottom:26.182930px;}
.y276{bottom:26.448641px;}
.y25c{bottom:26.968177px;}
.y1ff{bottom:27.021403px;}
.ycc{bottom:27.187236px;}
.y2e4{bottom:27.201512px;}
.y2ed{bottom:27.201513px;}
.y2f0{bottom:27.201521px;}
.y1ec{bottom:27.201525px;}
.y2f1{bottom:27.201529px;}
.y2e9{bottom:27.201531px;}
.y1d7{bottom:27.333119px;}
.y262{bottom:27.432913px;}
.y28c{bottom:27.530474px;}
.y290{bottom:27.530479px;}
.y2a5{bottom:27.530493px;}
.y293{bottom:27.530497px;}
.y296{bottom:27.530528px;}
.y26a{bottom:27.732960px;}
.y270{bottom:27.802238px;}
.y70{bottom:28.299811px;}
.y77{bottom:28.299818px;}
.y53{bottom:28.349689px;}
.y108{bottom:28.364792px;}
.y21c{bottom:28.410622px;}
.y21b{bottom:28.480469px;}
.y27c{bottom:28.590673px;}
.y261{bottom:29.101222px;}
.y24e{bottom:29.273062px;}
.y252{bottom:29.273067px;}
.y275{bottom:30.001252px;}
.y242{bottom:30.166481px;}
.y246{bottom:30.166498px;}
.y222{bottom:30.404899px;}
.y238{bottom:30.404927px;}
.y20f{bottom:31.029471px;}
.y22b{bottom:31.406929px;}
.y22f{bottom:31.406952px;}
.y267{bottom:32.328424px;}
.y1a8{bottom:32.661749px;}
.y1bf{bottom:32.661767px;}
.y1c2{bottom:32.661779px;}
.y1b4{bottom:32.661788px;}
.y202{bottom:32.871031px;}
.y1fd{bottom:32.871056px;}
.y209{bottom:32.871077px;}
.y161{bottom:32.877868px;}
.y25e{bottom:33.176679px;}
.y1d5{bottom:33.250259px;}
.y279{bottom:33.328264px;}
.yd5{bottom:33.390540px;}
.ydc{bottom:33.390543px;}
.yd8{bottom:33.390556px;}
.ydf{bottom:33.390558px;}
.yda{bottom:33.390564px;}
.ye2{bottom:33.390565px;}
.y15a{bottom:33.468120px;}
.y15b{bottom:33.468131px;}
.y13e{bottom:33.632173px;}
.y9{bottom:33.900000px;}
.y1b6{bottom:33.934059px;}
.y1ba{bottom:33.934086px;}
.y272{bottom:34.202753px;}
.y19a{bottom:35.133554px;}
.y19e{bottom:35.133562px;}
.y19c{bottom:35.133584px;}
.y1a1{bottom:35.133592px;}
.y114{bottom:35.219151px;}
.y18c{bottom:35.289917px;}
.y187{bottom:35.289927px;}
.y18e{bottom:35.289952px;}
.y18a{bottom:35.289962px;}
.y41{bottom:35.332711px;}
.y3f{bottom:35.332715px;}
.y5{bottom:36.000000px;}
.yaa{bottom:36.093816px;}
.yac{bottom:36.093822px;}
.y82{bottom:36.093834px;}
.y85{bottom:36.093838px;}
.y2c9{bottom:36.182956px;}
.y2cb{bottom:36.182979px;}
.y2ea{bottom:36.586487px;}
.y162{bottom:36.852561px;}
.y10f{bottom:37.593366px;}
.y1e8{bottom:38.072936px;}
.yb1{bottom:38.225600px;}
.yb3{bottom:38.225607px;}
.y8c{bottom:38.351598px;}
.y8f{bottom:38.351602px;}
.y2ff{bottom:38.656807px;}
.y241{bottom:39.298405px;}
.y12d{bottom:39.390203px;}
.y11a{bottom:39.476901px;}
.y11c{bottom:39.476913px;}
.y118{bottom:39.476917px;}
.ybf{bottom:39.627054px;}
.yc4{bottom:39.627059px;}
.yc2{bottom:39.627074px;}
.yc7{bottom:39.627077px;}
.y2bd{bottom:39.678540px;}
.y2c1{bottom:39.678543px;}
.y2c3{bottom:39.678546px;}
.y69{bottom:40.331079px;}
.y60{bottom:40.331081px;}
.y5b{bottom:40.331082px;}
.y62{bottom:40.331086px;}
.y5e{bottom:40.331087px;}
.y6b{bottom:40.331089px;}
.y6e{bottom:40.331091px;}
.y2cf{bottom:40.528808px;}
.y2b7{bottom:40.528824px;}
.y2b3{bottom:40.528832px;}
.y292{bottom:40.692908px;}
.y2a3{bottom:40.692910px;}
.y295{bottom:40.692940px;}
.y2a6{bottom:40.692967px;}
.y237{bottom:40.752325px;}
.yd0{bottom:41.046003px;}
.y1f2{bottom:41.061272px;}
.y1f0{bottom:41.061294px;}
.y2ee{bottom:41.149036px;}
.y2f6{bottom:41.742861px;}
.y303{bottom:41.742864px;}
.y2f8{bottom:41.742876px;}
.y306{bottom:41.742879px;}
.y2e8{bottom:42.104206px;}
.y24b{bottom:43.237642px;}
.y24d{bottom:43.237650px;}
.y212{bottom:43.301359px;}
.y211{bottom:43.378724px;}
.y55{bottom:43.539089px;}
.y72{bottom:43.539093px;}
.y76{bottom:43.539095px;}
.y74{bottom:43.539104px;}
.y79{bottom:43.539105px;}
.y10c{bottom:43.664954px;}
.y10e{bottom:43.713030px;}
.y196{bottom:44.004783px;}
.y198{bottom:44.004813px;}
.y183{bottom:44.161148px;}
.y185{bottom:44.161183px;}
.y244{bottom:44.489188px;}
.y248{bottom:44.489205px;}
.y2e6{bottom:44.754643px;}
.y224{bottom:44.946535px;}
.y226{bottom:44.946541px;}
.y228{bottom:44.946553px;}
.y1a{bottom:45.300000px;}
.y221{bottom:45.856432px;}
.y22d{bottom:46.221156px;}
.y231{bottom:46.221180px;}
.y10d{bottom:46.675708px;}
.y121{bottom:46.700531px;}
.y1fc{bottom:47.773760px;}
.y201{bottom:47.773763px;}
.y1fa{bottom:47.913520px;}
.y200{bottom:47.913523px;}
.y1d4{bottom:48.324924px;}
.y1af{bottom:48.379710px;}
.y1be{bottom:48.379713px;}
.y1b1{bottom:48.379719px;}
.y1c1{bottom:48.379722px;}
.y1b3{bottom:48.379731px;}
.y1c4{bottom:48.379733px;}
.y1d3{bottom:48.466315px;}
.y1e6{bottom:48.564392px;}
.y1ca{bottom:48.874821px;}
.y1b8{bottom:49.847901px;}
.y1bc{bottom:49.847928px;}
.y116{bottom:50.408573px;}
.ybd{bottom:50.601173px;}
.yce{bottom:50.901070px;}
.y1ee{bottom:50.924718px;}
.y2a0{bottom:51.156427px;}
.y23e{bottom:53.262980px;}
.y240{bottom:53.262990px;}
.y10a{bottom:54.690364px;}
.y232{bottom:55.293933px;}
.y234{bottom:55.293940px;}
.y236{bottom:55.293951px;}
.y3{bottom:57.637500px;}
.y213{bottom:58.073077px;}
.y1a9{bottom:59.495167px;}
.y1ab{bottom:59.495176px;}
.y1ad{bottom:59.495187px;}
.y23c{bottom:59.618573px;}
.y251{bottom:61.453480px;}
.y207{bottom:61.655936px;}
.y205{bottom:61.655944px;}
.y1d9{bottom:62.413721px;}
.y19{bottom:66.000000px;}
.y249{bottom:67.048543px;}
.y250{bottom:67.048550px;}
.y2aa{bottom:70.838439px;}
.y299{bottom:76.818510px;}
.y29b{bottom:76.818524px;}
.y29e{bottom:76.818563px;}
.y24f{bottom:81.415538px;}
.y2{bottom:81.637500px;}
.y28f{bottom:85.745923px;}
.y18{bottom:86.700000px;}
.y2a2{bottom:87.987624px;}
.y28d{bottom:93.178196px;}
.y298{bottom:93.178204px;}
.y2a7{bottom:93.178218px;}
.y29d{bottom:93.178235px;}
.y29f{bottom:93.178273px;}
.y29a{bottom:106.299532px;}
.y2a4{bottom:106.299535px;}
.y29c{bottom:106.299546px;}
.y2a8{bottom:106.299587px;}
.y17{bottom:107.400000px;}
.y3b{bottom:112.687500px;}
.y2a1{bottom:116.763078px;}
.y283{bottom:120.487500px;}
.y284{bottom:120.525000px;}
.y325{bottom:127.087500px;}
.y16{bottom:128.100000px;}
.yf2{bottom:128.437500px;}
.y7d{bottom:130.087500px;}
.y3a{bottom:136.537500px;}
.y1e1{bottom:144.787500px;}
.y1e2{bottom:144.825000px;}
.y324{bottom:150.930000px;}
.yf1{bottom:152.295000px;}
.y7a{bottom:153.930000px;}
.y7b{bottom:153.975000px;}
.y39{bottom:160.395000px;}
.y13a{bottom:160.845000px;}
.y136{bottom:160.875000px;}
.y6f{bottom:173.895000px;}
.y67{bottom:173.924980px;}
.y323{bottom:174.795000px;}
.yf0{bottom:176.145000px;}
.y282{bottom:180.930000px;}
.y280{bottom:180.974980px;}
.y38{bottom:184.095000px;}
.y2f2{bottom:190.095000px;}
.y2e3{bottom:190.124980px;}
.y322{bottom:198.495000px;}
.yef{bottom:199.995000px;}
.y37{bottom:207.945000px;}
.y1e0{bottom:216.195000px;}
.y135{bottom:221.295000px;}
.y321{bottom:222.345000px;}
.yee{bottom:223.695000px;}
.y36{bottom:231.795000px;}
.y1df{bottom:239.880000px;}
.y27f{bottom:240.045000px;}
.y320{bottom:246.195000px;}
.yed{bottom:247.545000px;}
.y66{bottom:247.995000px;}
.y133{bottom:254.595000px;}
.y134{bottom:254.625000px;}
.y35{bottom:255.495000px;}
.y27e{bottom:259.995000px;}
.y26d{bottom:260.025000px;}
.y2e2{bottom:262.845000px;}
.y1db{bottom:263.745000px;}
.y1dc{bottom:263.774980px;}
.y31f{bottom:270.045000px;}
.yec{bottom:271.395000px;}
.y65{bottom:271.695000px;}
.y58{bottom:271.724980px;}
.y177{bottom:277.695000px;}
.y34{bottom:279.345000px;}
.y130{bottom:283.695000px;}
.y131{bottom:283.725000px;}
.y2e1{bottom:286.545000px;}
.y31e{bottom:293.745000px;}
.yeb{bottom:295.095000px;}
.y176{bottom:301.395000px;}
.y173{bottom:301.424980px;}
.y33{bottom:303.195000px;}
.y1da{bottom:306.045000px;}
.y1d1{bottom:306.075000px;}
.y26c{bottom:307.995000px;}
.y259{bottom:308.025000px;}
.y2e0{bottom:310.380000px;}
.y12f{bottom:312.795000px;}
.y31d{bottom:317.580000px;}
.yea{bottom:318.945000px;}
.y32{bottom:326.880000px;}
.y12e{bottom:332.595000px;}
.y12c{bottom:332.625000px;}
.y2df{bottom:334.245000px;}
.y172{bottom:336.795000px;}
.y57{bottom:339.195000px;}
.y52{bottom:339.225000px;}
.y31c{bottom:341.445000px;}
.ye9{bottom:342.795000px;}
.y31{bottom:350.745000px;}
.y2de{bottom:357.945000px;}
.y258{bottom:358.695000px;}
.y171{bottom:360.630000px;}
.y31b{bottom:365.145000px;}
.ye8{bottom:366.495000px;}
.y30{bottom:374.580000px;}
.y2dd{bottom:381.825000px;}
.y257{bottom:382.575000px;}
.y170{bottom:384.375000px;}
.y31a{bottom:389.025000px;}
.ye7{bottom:390.375000px;}
.y1d0{bottom:392.025000px;}
.y2f{bottom:398.325000px;}
.y2d7{bottom:405.674959px;}
.y2dc{bottom:405.675000px;}
.y256{bottom:406.275000px;}
.y16f{bottom:408.225000px;}
.yd3{bottom:410.324959px;}
.ye6{bottom:410.325000px;}
.y12b{bottom:411.075000px;}
.y319{bottom:412.875000px;}
.y51{bottom:413.325000px;}
.y1cf{bottom:415.875000px;}
.y2e{bottom:422.175000px;}
.y255{bottom:430.125000px;}
.y16e{bottom:432.075000px;}
.y127{bottom:434.774959px;}
.y126{bottom:434.775000px;}
.y318{bottom:436.575000px;}
.y50{bottom:437.175000px;}
.y1c8{bottom:439.574959px;}
.y1c7{bottom:439.575000px;}
.y2d{bottom:446.025000px;}
.y254{bottom:453.975000px;}
.y16d{bottom:455.775000px;}
.y317{bottom:460.425000px;}
.y4e{bottom:460.874959px;}
.y4d{bottom:460.875000px;}
.y2c{bottom:469.725000px;}
.ycb{bottom:471.975000px;}
.y11f{bottom:473.024959px;}
.y11e{bottom:473.025000px;}
.y2d6{bottom:476.925000px;}
.y253{bottom:477.675000px;}
.y16c{bottom:479.625000px;}
.y316{bottom:484.275000px;}
.y4c{bottom:484.725000px;}
.y2b{bottom:493.575000px;}
.y2cd{bottom:496.874959px;}
.y2d5{bottom:496.875000px;}
.y23b{bottom:501.524959px;}
.y23a{bottom:501.525000px;}
.y16b{bottom:503.475000px;}
.y49{bottom:504.524959px;}
.y4b{bottom:504.525000px;}
.y315{bottom:507.975000px;}
.y1c6{bottom:509.625000px;}
.y2a{bottom:517.425000px;}
.y168{bottom:527.174959px;}
.y167{bottom:527.175000px;}
.y314{bottom:531.825000px;}
.y1a7{bottom:533.474959px;}
.y1c5{bottom:533.475000px;}
.y112{bottom:538.874959px;}
.y11d{bottom:538.875000px;}
.yba{bottom:540.824959px;}
.yca{bottom:540.825000px;}
.y29{bottom:541.275000px;}
.y48{bottom:542.775000px;}
.y313{bottom:555.675000px;}
.y28{bottom:564.975000px;}
.y166{bottom:565.425000px;}
.y46{bottom:566.624959px;}
.y45{bottom:566.625000px;}
.y2cc{bottom:568.275000px;}
.y312{bottom:579.375000px;}
.y27{bottom:588.825000px;}
.y165{bottom:589.125000px;}
.y2c7{bottom:591.974959px;}
.y2c6{bottom:591.975000px;}
.y3c{bottom:597.074959px;}
.y44{bottom:597.075000px;}
.y311{bottom:603.225000px;}
.y21f{bottom:611.024959px;}
.y239{bottom:611.025000px;}
.yb9{bottom:612.075000px;}
.y26{bottom:612.675000px;}
.y111{bottom:612.975000px;}
.y1a6{bottom:618.675000px;}
.y310{bottom:627.075000px;}
.yb8{bottom:635.925000px;}
.y25{bottom:636.375000px;}
.y110{bottom:636.675000px;}
.y15f{bottom:636.824959px;}
.y164{bottom:636.825000px;}
.y1a5{bottom:642.375000px;}
.y30f{bottom:650.925000px;}
.y2bb{bottom:652.574959px;}
.y2c5{bottom:652.575000px;}
.yb7{bottom:659.775000px;}
.y24{bottom:660.225000px;}
.y107{bottom:660.525000px;}
.y1a4{bottom:666.225000px;}
.y30e{bottom:674.625000px;}
.yb6{bottom:683.475000px;}
.y23{bottom:684.075000px;}
.y194{bottom:686.174919px;}
.y1a3{bottom:686.175000px;}
.y21e{bottom:690.675000px;}
.y30d{bottom:698.475000px;}
.y15e{bottom:702.675000px;}
.yb5{bottom:707.325000px;}
.y22{bottom:707.775000px;}
.y219{bottom:714.525000px;}
.y30c{bottom:722.325000px;}
.y2ba{bottom:722.625000px;}
.y15d{bottom:726.375000px;}
.ya7{bottom:731.174919px;}
.yae{bottom:731.175000px;}
.y21{bottom:731.625000px;}
.y106{bottom:738.870000px;}
.y30b{bottom:742.170000px;}
.y2b1{bottom:742.574919px;}
.y2b9{bottom:742.620000px;}
.y157{bottom:750.224919px;}
.y156{bottom:750.270000px;}
.y191{bottom:750.525000px;}
.y193{bottom:750.570000px;}
.y20{bottom:755.520000px;}
.y103{bottom:762.674919px;}
.y102{bottom:762.720000px;}
.y218{bottom:766.470000px;}
.y1f{bottom:788.220000px;}
.y190{bottom:788.820000px;}
.y20e{bottom:790.275000px;}
.y217{bottom:790.320000px;}
.y101{bottom:793.320000px;}
.ya6{bottom:797.070000px;}
.y1e{bottom:805.020000px;}
.y152{bottom:810.525000px;}
.y155{bottom:810.570000px;}
.y180{bottom:812.474919px;}
.y18f{bottom:812.520000px;}
.y2b0{bottom:813.870000px;}
.y100{bottom:817.020000px;}
.ya5{bottom:820.770000px;}
.y2ab{bottom:833.775000px;}
.y2af{bottom:833.820000px;}
.y9f{bottom:840.674919px;}
.ya2{bottom:840.720000px;}
.yff{bottom:840.870000px;}
.y1d{bottom:846.420000px;}
.y151{bottom:848.820000px;}
.yfe{bottom:864.720000px;}
.y15{bottom:867.120000px;}
.y20d{bottom:868.620000px;}
.y150{bottom:872.520000px;}
.y17c{bottom:876.824919px;}
.y17e{bottom:876.870000px;}
.y9e{bottom:880.320000px;}
.y28b{bottom:881.924919px;}
.yfd{bottom:888.420000px;}
.y20c{bottom:892.470000px;}
.y14f{bottom:896.370000px;}
.y9d{bottom:904.170000px;}
.yfc{bottom:912.270000px;}
.y17b{bottom:915.120000px;}
.y20b{bottom:916.320000px;}
.y14e{bottom:920.220000px;}
.y9a{bottom:927.824919px;}
.y99{bottom:927.870000px;}
.yfb{bottom:936.120000px;}
.y17a{bottom:938.970000px;}
.y1f8{bottom:940.124919px;}
.y20a{bottom:940.170000px;}
.y14d{bottom:943.920000px;}
.yfa{bottom:959.970000px;}
.y179{bottom:962.670000px;}
.y98{bottom:967.470000px;}
.y14c{bottom:967.770000px;}
.y178{bottom:982.620000px;}
.yf9{bottom:983.670000px;}
.y97{bottom:991.320000px;}
.y14b{bottom:991.620000px;}
.yf8{bottom:1007.520000px;}
.y92{bottom:1014.974919px;}
.y95{bottom:1015.020000px;}
.y14a{bottom:1015.320000px;}
.y14{bottom:1015.620000px;}
.y28a{bottom:1019.820000px;}
.y1f7{bottom:1023.270000px;}
.yf7{bottom:1031.370000px;}
.y30a{bottom:1032.720000px;}
.y13{bottom:1034.820000px;}
.y149{bottom:1039.170000px;}
.y287{bottom:1043.474919px;}
.y286{bottom:1043.520000px;}
.y1f6{bottom:1046.970000px;}
.y88{bottom:1047.674919px;}
.y91{bottom:1047.720000px;}
.yf6{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y309{bottom:1056.570000px;}
.y145{bottom:1062.974919px;}
.y148{bottom:1063.020000px;}
.y1f4{bottom:1070.774919px;}
.y1f3{bottom:1070.820000px;}
.y11{bottom:1076.220000px;}
.yf5{bottom:1078.920000px;}
.y2f3{bottom:1080.224919px;}
.y308{bottom:1080.270000px;}
.y10{bottom:1096.950000px;}
.y1ea{bottom:1101.374919px;}
.y1e9{bottom:1101.450000px;}
.yf4{bottom:1102.800000px;}
.y144{bottom:1106.700000px;}
.y7e{bottom:1109.624919px;}
.y87{bottom:1109.700000px;}
.yf{bottom:1117.650000px;}
.yf3{bottom:1126.500000px;}
.y141{bottom:1130.474919px;}
.y140{bottom:1130.550000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h2a{height:15.300412px;}
.h1b{height:16.649951px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h6e{height:22.050138px;}
.h59{height:23.549458px;}
.h17{height:23.549539px;}
.h57{height:23.549580px;}
.hba{height:23.550538px;}
.h36{height:25.649681px;}
.h3f{height:26.399785px;}
.h89{height:28.349578px;}
.had{height:28.349971px;}
.hf4{height:28.349992px;}
.h8d{height:28.350053px;}
.hf5{height:28.350829px;}
.he6{height:29.918087px;}
.hf1{height:30.843381px;}
.h7e{height:31.199633px;}
.h88{height:31.199674px;}
.h94{height:31.200088px;}
.h19{height:31.200129px;}
.h8c{height:31.200170px;}
.he3{height:31.684468px;}
.he1{height:31.700239px;}
.hb3{height:32.550169px;}
.h39{height:32.550428px;}
.hee{height:32.664392px;}
.hec{height:32.680651px;}
.haa{height:35.250386px;}
.h71{height:36.600375px;}
.h7b{height:36.600457px;}
.h10{height:41.400000px;}
.h66{height:41.604985px;}
.h52{height:42.881915px;}
.hde{height:43.651269px;}
.hc8{height:44.202026px;}
.hcb{height:44.224028px;}
.he9{height:45.001297px;}
.hce{height:45.001422px;}
.h91{height:45.142835px;}
.h6{height:45.300000px;}
.hfd{height:47.128144px;}
.h100{height:47.151602px;}
.h79{height:47.375802px;}
.h46{height:47.807528px;}
.h44{height:47.831325px;}
.h9c{height:48.129183px;}
.h3{height:48.600000px;}
.h118{height:49.479394px;}
.h11b{height:49.504023px;}
.h15{height:49.746467px;}
.h113{height:50.166903px;}
.hb7{height:50.191874px;}
.h4d{height:50.200596px;}
.h4b{height:50.225584px;}
.he{height:50.484375px;}
.hc3{height:50.786015px;}
.hdc{height:50.975337px;}
.hd9{height:51.000710px;}
.hf6{height:51.073973px;}
.he8{height:51.246833px;}
.ha8{height:51.371955px;}
.h86{height:52.166656px;}
.h6c{height:52.721652px;}
.hf3{height:52.831774px;}
.hd6{height:52.833210px;}
.h7{height:52.998047px;}
.hab{height:53.285495px;}
.h76{height:53.400780px;}
.h81{height:53.400862px;}
.hb0{height:53.631261px;}
.hc7{height:53.698804px;}
.hbe{height:53.784451px;}
.hc1{height:53.811223px;}
.he4{height:54.097886px;}
.he2{height:54.272476px;}
.hdf{height:54.299491px;}
.ha3{height:54.404985px;}
.ha6{height:54.432066px;}
.h50{height:54.598576px;}
.h74{height:55.164060px;}
.h7c{height:55.353749px;}
.hef{height:55.769859px;}
.h21{height:55.853734px;}
.h103{height:55.864757px;}
.h63{height:55.881536px;}
.h109{height:55.892983px;}
.h5{height:55.942383px;}
.hed{height:55.950993px;}
.hea{height:55.978843px;}
.h5f{height:56.076873px;}
.h11{height:56.100885px;}
.h5d{height:56.104786px;}
.h97{height:56.754856px;}
.h27{height:57.062293px;}
.h105{height:57.090696px;}
.hfc{height:57.170193px;}
.h8f{height:57.448692px;}
.h10d{height:57.450916px;}
.h2c{height:57.450957px;}
.h102{height:58.282712px;}
.h64{height:58.798726px;}
.h31{height:58.800300px;}
.h84{height:58.800948px;}
.h4{height:58.886719px;}
.h9a{height:62.998401px;}
.h115{height:62.998724px;}
.h107{height:63.001167px;}
.h42{height:64.348737px;}
.hae{height:64.350404px;}
.h23{height:64.351179px;}
.h10e{height:64.351199px;}
.h104{height:64.351240px;}
.hc{height:64.775391px;}
.he0{height:65.178319px;}
.h9{height:65.645508px;}
.h111{height:65.698326px;}
.hb5{height:65.698387px;}
.h49{height:65.699153px;}
.h1d{height:67.050436px;}
.h29{height:67.050457px;}
.h62{height:67.050477px;}
.heb{height:67.194127px;}
.hcf{height:68.309953px;}
.h5a{height:68.335840px;}
.hbb{height:68.338974px;}
.hd1{height:68.343955px;}
.h40{height:68.365522px;}
.hd0{height:68.405163px;}
.h53{height:69.451091px;}
.h37{height:70.193153px;}
.h3c{height:70.628906px;}
.hb{height:70.664062px;}
.h5b{height:71.398750px;}
.hc5{height:71.399052px;}
.hcd{height:71.636168px;}
.ha{height:72.562500px;}
.h1c{height:72.583612px;}
.hd2{height:72.751435px;}
.h6f{height:72.799702px;}
.h70{height:72.835938px;}
.hf7{height:72.909762px;}
.h92{height:73.076478px;}
.h2b{height:73.325785px;}
.h56{height:73.409696px;}
.h51{height:73.551525px;}
.h55{height:73.588136px;}
.hc9{height:75.685938px;}
.hc6{height:75.865610px;}
.hca{height:75.903373px;}
.hbc{height:76.049362px;}
.hf9{height:76.267128px;}
.h7a{height:76.540756px;}
.he5{height:76.815918px;}
.h93{height:77.390956px;}
.h90{height:77.429478px;}
.h8b{height:77.581906px;}
.h9e{height:77.910730px;}
.h95{height:78.151548px;}
.h68{height:78.530899px;}
.ha1{height:78.898427px;}
.hf0{height:79.191649px;}
.h35{height:79.329450px;}
.h11c{height:80.136297px;}
.h13{height:80.410829px;}
.hfe{height:80.502663px;}
.hfb{height:80.769985px;}
.hff{height:80.810189px;}
.h82{height:81.034963px;}
.h78{height:81.059767px;}
.h83{height:81.100116px;}
.hb8{height:81.249780px;}
.h4e{height:81.278800px;}
.h8e{height:82.266260px;}
.h9d{height:82.279636px;}
.h30{height:82.345865px;}
.h2{height:82.441406px;}
.ha0{height:82.510625px;}
.hda{height:82.537640px;}
.he7{height:82.644884px;}
.h67{height:82.857351px;}
.h6a{height:83.167410px;}
.h65{height:83.208808px;}
.h58{height:83.356973px;}
.h18{height:83.427925px;}
.h34{height:84.013108px;}
.h32{height:84.054926px;}
.h3d{height:84.126120px;}
.h3a{height:84.293425px;}
.h101{height:84.611839px;}
.h119{height:84.720427px;}
.h116{height:84.867591px;}
.h11a{height:84.909835px;}
.h16{height:85.120427px;}
.h14{height:85.158332px;}
.h12{height:85.200720px;}
.hf2{height:85.200891px;}
.h80{height:85.381473px;}
.hd5{height:85.410543px;}
.h6d{height:85.446884px;}
.h41{height:85.790944px;}
.h114{height:85.815838px;}
.h9b{height:85.960849px;}
.hb9{height:86.046815px;}
.h4c{height:86.077549px;}
.hb6{height:86.089646px;}
.h4a{height:86.120395px;}
.hdd{height:86.777552px;}
.hb1{height:86.817402px;}
.hc4{height:86.991607px;}
.h2f{height:87.207614px;}
.h2d{height:87.251022px;}
.hdb{height:87.410711px;}
.h4f{height:87.443007px;}
.h38{height:87.976643px;}
.ha9{height:87.995266px;}
.h87{height:89.256896px;}
.h75{height:89.275450px;}
.h85{height:89.301325px;}
.hd7{height:90.260501px;}
.h10c{height:90.301187px;}
.h47{height:90.437723px;}
.hd3{height:90.453232px;}
.h1f{height:90.460111px;}
.h6b{height:90.491719px;}
.h1a{height:90.536762px;}
.h60{height:90.821503px;}
.hac{height:91.240064px;}
.h99{height:91.750305px;}
.hbf{height:91.814337px;}
.hb2{height:91.943153px;}
.haf{height:91.988918px;}
.hbd{height:92.127642px;}
.hc0{height:92.173500px;}
.h25{height:92.236224px;}
.ha4{height:92.635955px;}
.ha2{height:93.190558px;}
.ha5{height:93.236945px;}
.hb4{height:94.454203px;}
.h73{height:94.593387px;}
.h117{height:94.734205px;}
.h7d{height:94.734353px;}
.h10a{height:95.145701px;}
.h22{height:95.323510px;}
.h10b{height:95.632623px;}
.h48{height:95.669678px;}
.h108{height:95.680225px;}
.h45{height:95.777220px;}
.h20{height:95.800929px;}
.h43{height:95.824894px;}
.h61{height:95.826333px;}
.h1e{height:95.848615px;}
.h5e{height:96.183658px;}
.h5c{height:96.231535px;}
.h8a{height:96.700838px;}
.h28{height:96.900885px;}
.h110{height:97.054632px;}
.h98{height:97.167297px;}
.h96{height:97.215663px;}
.h106{height:97.279663px;}
.h10f{height:97.602131px;}
.h26{height:97.681905px;}
.h24{height:97.730527px;}
.h112{height:98.308506px;}
.h77{height:101.095466px;}
.hd8{height:102.451980px;}
.h33{height:105.569339px;}
.h3e{height:105.612137px;}
.h3b{height:105.778647px;}
.h7f{height:106.422495px;}
.hd4{height:108.571874px;}
.h2e{height:109.446216px;}
.hfa{height:114.318207px;}
.h72{height:117.904552px;}
.h54{height:123.427790px;}
.hf8{height:130.798905px;}
.h9f{height:136.007937px;}
.h69{height:136.297486px;}
.hcc{height:143.266365px;}
.hd{height:144.885000px;}
.hc2{height:173.976119px;}
.ha7{height:175.983356px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w10{width:15.299782px;}
.wc{width:18.000579px;}
.w24{width:22.049736px;}
.w1d{width:23.549687px;}
.w29{width:28.350587px;}
.w46{width:32.549421px;}
.w28{width:32.549964px;}
.w25{width:36.750121px;}
.w37{width:39.450641px;}
.w22{width:50.548594px;}
.wa{width:51.299802px;}
.w3c{width:54.749862px;}
.w30{width:58.797874px;}
.w13{width:58.798260px;}
.w38{width:58.800385px;}
.w2e{width:64.348255px;}
.w14{width:64.348719px;}
.w3a{width:67.050554px;}
.w2b{width:69.898250px;}
.w2d{width:71.248231px;}
.w1e{width:71.400448px;}
.w3b{width:79.650509px;}
.w39{width:85.800106px;}
.w15{width:105.302205px;}
.w4c{width:110.701364px;}
.wb{width:110.704525px;}
.w27{width:114.902766px;}
.w9{width:115.649283px;}
.w3f{width:121.953766px;}
.w19{width:123.304218px;}
.w45{width:124.652254px;}
.w31{width:124.653692px;}
.w32{width:125.998748px;}
.w21{width:126.003403px;}
.w17{width:130.054853px;}
.wf{width:132.901790px;}
.w35{width:134.255278px;}
.w18{width:134.396180px;}
.w4b{width:136.348587px;}
.w26{width:138.445912px;}
.w49{width:140.547349px;}
.w4d{width:143.395856px;}
.w2f{width:151.653387px;}
.w33{width:153.004192px;}
.w6{width:178.350000px;}
.w2c{width:179.246429px;}
.w44{width:180.604572px;}
.w16{width:184.790799px;}
.w1a{width:190.350025px;}
.wd{width:202.037682px;}
.w20{width:202.044903px;}
.we{width:202.045638px;}
.w1b{width:202.045665px;}
.w41{width:209.092540px;}
.w1c{width:211.803553px;}
.w12{width:216.005169px;}
.w4a{width:216.008373px;}
.w11{width:220.206479px;}
.w1f{width:222.905250px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w23{width:292.945819px;}
.w2a{width:296.261395px;}
.w4{width:297.780000px;}
.w40{width:330.898235px;}
.w3e{width:339.151122px;}
.w3d{width:349.654871px;}
.w36{width:352.500977px;}
.w4f{width:359.396247px;}
.w4e{width:364.792818px;}
.w34{width:366.157536px;}
.w48{width:396.453572px;}
.w47{width:396.744662px;}
.w42{width:399.910654px;}
.w43{width:400.211196px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x94{left:1.086242px;}
.x21{left:2.328228px;}
.x46{left:3.712259px;}
.x80{left:5.331659px;}
.x4{left:6.900000px;}
.x9b{left:8.478706px;}
.x53{left:11.163869px;}
.x9{left:12.435000px;}
.x105{left:13.602934px;}
.xaa{left:14.915873px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x84{left:19.340646px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.x3d{left:24.076861px;}
.x3c{left:25.410878px;}
.x72{left:27.250101px;}
.xca{left:28.414464px;}
.x1f{left:29.863444px;}
.xb{left:32.100000px;}
.x64{left:34.115609px;}
.x38{left:35.294494px;}
.x24{left:36.837507px;}
.x4b{left:37.960331px;}
.xa2{left:40.752511px;}
.x3{left:42.599987px;}
.x75{left:43.729829px;}
.x9f{left:46.078378px;}
.x5c{left:48.268783px;}
.x1e{left:49.563183px;}
.x52{left:50.613940px;}
.x1d{left:51.981011px;}
.x6b{left:53.401259px;}
.x35{left:55.583736px;}
.x2c{left:57.006982px;}
.x57{left:58.085942px;}
.x20{left:60.398877px;}
.xab{left:61.527597px;}
.x50{left:63.059081px;}
.x4f{left:64.882304px;}
.x4a{left:65.966815px;}
.x49{left:68.002957px;}
.x71{left:69.648580px;}
.x63{left:70.930180px;}
.x43{left:73.373705px;}
.xf1{left:74.817010px;}
.x34{left:76.160511px;}
.x2b{left:78.125765px;}
.x60{left:79.181002px;}
.xa9{left:80.554155px;}
.x7e{left:81.834400px;}
.xf0{left:83.120349px;}
.x74{left:84.261904px;}
.x37{left:87.687686px;}
.x2e{left:89.766252px;}
.x42{left:91.599063px;}
.x3b{left:93.454459px;}
.x1a{left:95.699987px;}
.xbc{left:96.744195px;}
.x9a{left:97.818965px;}
.x18{left:100.200000px;}
.xae{left:101.471421px;}
.x41{left:103.162324px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x33{left:109.645064px;}
.xe2{left:110.962880px;}
.xa8{left:112.021220px;}
.x5f{left:113.024990px;}
.x87{left:114.291887px;}
.x4d{left:116.325000px;}
.xda{left:117.825000px;}
.x69{left:119.844319px;}
.x6{left:121.687500px;}
.x40{left:122.910580px;}
.x3a{left:124.384273px;}
.x2a{left:127.048810px;}
.xa{left:128.130000px;}
.x32{left:129.410427px;}
.x31{left:130.743765px;}
.xdf{left:133.656596px;}
.x6a{left:135.536216px;}
.x81{left:136.813381px;}
.x2d{left:138.691286px;}
.x36{left:140.937602px;}
.xed{left:141.963592px;}
.x6d{left:143.024990px;}
.x108{left:144.154053px;}
.x6e{left:145.172126px;}
.x59{left:146.255266px;}
.x76{left:148.734594px;}
.x67{left:150.800280px;}
.xec{left:151.932174px;}
.x10{left:154.979987px;}
.xe1{left:157.724990px;}
.x68{left:159.777689px;}
.xd3{left:161.198071px;}
.xc1{left:162.585244px;}
.x66{left:163.668845px;}
.xa4{left:165.409514px;}
.x7f{left:167.287129px;}
.x4e{left:170.516135px;}
.xf4{left:172.112284px;}
.x48{left:173.168603px;}
.x73{left:174.239459px;}
.xc2{left:178.214138px;}
.x65{left:180.219943px;}
.x8e{left:184.179726px;}
.x7c{left:185.433465px;}
.x7d{left:187.098004px;}
.x91{left:188.372733px;}
.xde{left:189.413507px;}
.x29{left:192.137681px;}
.x113{left:193.390103px;}
.x7b{left:194.678534px;}
.x104{left:196.445379px;}
.x70{left:197.986514px;}
.xef{left:199.062620px;}
.x8f{left:200.128886px;}
.x117{left:202.037594px;}
.x112{left:203.332849px;}
.xfa{left:204.670881px;}
.x54{left:206.025000px;}
.xd7{left:207.078563px;}
.xea{left:209.145651px;}
.x8d{left:212.756313px;}
.x7a{left:214.491427px;}
.xe7{left:217.202920px;}
.xb8{left:218.902492px;}
.xb7{left:221.014567px;}
.xe5{left:223.177202px;}
.x5e{left:228.779987px;}
.xdd{left:229.832206px;}
.xd8{left:231.085758px;}
.xb4{left:233.829039px;}
.xf9{left:236.910967px;}
.xe9{left:238.376142px;}
.xa3{left:239.444987px;}
.xd1{left:241.907647px;}
.xb5{left:243.556690px;}
.xc0{left:245.026037px;}
.x61{left:247.394987px;}
.x90{left:248.474526px;}
.x62{left:251.924980px;}
.xf5{left:253.567753px;}
.xd2{left:254.571240px;}
.x9d{left:257.324980px;}
.x106{left:260.434214px;}
.x8c{left:262.269703px;}
.xb6{left:263.499391px;}
.x56{left:267.224980px;}
.xe8{left:269.289045px;}
.x55{left:270.329987px;}
.xd5{left:271.482484px;}
.xc4{left:272.769523px;}
.xa0{left:273.951355px;}
.x8b{left:274.955618px;}
.xf8{left:277.019382px;}
.xe6{left:279.085949px;}
.xcc{left:280.424980px;}
.xd6{left:284.524854px;}
.xee{left:287.280559px;}
.x9e{left:289.844987px;}
.x5a{left:290.894987px;}
.xdc{left:292.962329px;}
.x5b{left:295.424980px;}
.xd4{left:298.589510px;}
.xdb{left:301.058408px;}
.xff{left:302.080774px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x102{left:312.496732px;}
.x100{left:315.812496px;}
.xd0{left:317.423789px;}
.xbe{left:319.480301px;}
.xc3{left:322.443940px;}
.x116{left:323.449344px;}
.x103{left:326.176374px;}
.xa5{left:329.144987px;}
.x51{left:332.294987px;}
.x115{left:333.309274px;}
.xbf{left:334.547060px;}
.xf7{left:337.193797px;}
.x111{left:338.729646px;}
.x101{left:340.116430px;}
.x6f{left:345.029987px;}
.xcd{left:347.444987px;}
.x110{left:350.426995px;}
.xce{left:351.824959px;}
.xb3{left:354.419359px;}
.xfe{left:355.740418px;}
.xfb{left:359.444987px;}
.x6c{left:360.944987px;}
.xe3{left:366.794987px;}
.xeb{left:368.047814px;}
.x58{left:372.494987px;}
.x4c{left:375.944987px;}
.xe0{left:378.524987px;}
.xd9{left:381.824987px;}
.x107{left:384.438725px;}
.xf6{left:386.208638px;}
.xe4{left:387.229609px;}
.xa1{left:392.024987px;}
.xf3{left:395.138659px;}
.x118{left:402.074987px;}
.x5d{left:425.474987px;}
.xcf{left:431.474987px;}
.x119{left:436.424987px;}
.xf2{left:442.574987px;}
.x1b{left:457.274987px;}
.xb2{left:468.524959px;}
.x22{left:510.374987px;}
.x97{left:521.324959px;}
.x13{left:525.374987px;}
.x8a{left:533.925000px;}
.x30{left:535.574959px;}
.x79{left:547.274959px;}
.x83{left:557.624959px;}
.x93{left:565.124959px;}
.x25{left:567.974987px;}
.xa7{left:569.774959px;}
.x86{left:575.024959px;}
.xb0{left:577.425000px;}
.x28{left:579.374959px;}
.xbb{left:580.574959px;}
.x95{left:587.174987px;}
.x1c{left:598.574959px;}
.xfc{left:604.425000px;}
.xc6{left:616.724987px;}
.x10e{left:621.074987px;}
.xc{left:625.425000px;}
.x12{left:626.624987px;}
.x11{left:628.124987px;}
.xfd{left:637.004987px;}
.xba{left:638.969987px;}
.x3e{left:643.319987px;}
.x89{left:648.254987px;}
.x10a{left:650.969987px;}
.x3f{left:652.274959px;}
.x10f{left:653.819987px;}
.x45{left:655.425000px;}
.x98{left:659.819987px;}
.x14{left:664.619987px;}
.x47{left:670.754987px;}
.xad{left:671.969987px;}
.x77{left:675.254987px;}
.x15{left:677.669987px;}
.x26{left:680.925000px;}
.x99{left:685.724919px;}
.x10c{left:687.374919px;}
.xc7{left:690.074919px;}
.xac{left:694.454987px;}
.x27{left:698.969987px;}
.x88{left:701.069987px;}
.xaf{left:705.254987px;}
.xf{left:713.655000px;}
.xbd{left:714.869987px;}
.x10b{left:726.419987px;}
.xb1{left:730.469987px;}
.x39{left:737.654987px;}
.xc8{left:748.904987px;}
.xc9{left:753.374919px;}
.x85{left:759.719987px;}
.xa6{left:767.324919px;}
.x82{left:770.204987px;}
.x78{left:779.174919px;}
.x2f{left:781.469987px;}
.x44{left:785.204987px;}
.x23{left:799.274919px;}
.x9c{left:800.669987px;}
.xc5{left:810.704987px;}
.x96{left:813.824919px;}
.x2{left:819.119987px;}
.x114{left:822.119987px;}
.x10d{left:823.754987px;}
.x92{left:826.919987px;}
.xb9{left:834.704987px;}
.xcb{left:839.204987px;}
.x16{left:850.619987px;}
.x109{left:853.754987px;}
@media print{
.v16{vertical-align:-95.407659pt;}
.vd{vertical-align:-93.052227pt;}
.v17{vertical-align:-89.965547pt;}
.v18{vertical-align:-84.348956pt;}
.v14{vertical-align:-75.869623pt;}
.v3{vertical-align:-68.886202pt;}
.v2{vertical-align:-67.601021pt;}
.v1c{vertical-align:-66.047186pt;}
.v13{vertical-align:-62.784543pt;}
.v6{vertical-align:-61.499633pt;}
.v1{vertical-align:-60.514434pt;}
.v7{vertical-align:-59.434230pt;}
.v1a{vertical-align:-56.235577pt;}
.ve{vertical-align:-54.184105pt;}
.v23{vertical-align:-49.893072pt;}
.v8{vertical-align:-46.526582pt;}
.v9{vertical-align:-42.936447pt;}
.v11{vertical-align:-39.201461pt;}
.v12{vertical-align:-36.290878pt;}
.va{vertical-align:-34.995131pt;}
.v20{vertical-align:-33.741680pt;}
.v15{vertical-align:-32.211843pt;}
.v24{vertical-align:-31.280284pt;}
.v1b{vertical-align:-29.498110pt;}
.v22{vertical-align:-22.141890pt;}
.v19{vertical-align:-17.345932pt;}
.vc{vertical-align:-11.224837pt;}
.v27{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.838588pt;}
.v4{vertical-align:19.767647pt;}
.v21{vertical-align:22.757387pt;}
.v1f{vertical-align:27.909379pt;}
.v1e{vertical-align:29.758293pt;}
.v1d{vertical-align:31.353215pt;}
.vf{vertical-align:33.824595pt;}
.v26{vertical-align:40.226499pt;}
.v25{vertical-align:42.792536pt;}
.v10{vertical-align:47.226734pt;}
.vb{vertical-align:71.577360pt;}
.ls32{letter-spacing:-3.733333pt;}
.lsc{letter-spacing:-2.666667pt;}
.lse{letter-spacing:-2.661333pt;}
.lsb{letter-spacing:-2.656000pt;}
.lsd{letter-spacing:-2.400000pt;}
.ls11{letter-spacing:-1.710414pt;}
.ls35{letter-spacing:-1.497815pt;}
.ls10{letter-spacing:-0.851282pt;}
.ls63{letter-spacing:-0.764608pt;}
.ls67{letter-spacing:-0.754129pt;}
.ls24{letter-spacing:-0.653575pt;}
.ls57{letter-spacing:-0.442413pt;}
.ls55{letter-spacing:-0.429141pt;}
.ls5f{letter-spacing:-0.348606pt;}
.ls28{letter-spacing:-0.345305pt;}
.ls61{letter-spacing:-0.341292pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.164756pt;}
.ls56{letter-spacing:-0.150090pt;}
.ls23{letter-spacing:-0.149333pt;}
.ls54{letter-spacing:-0.145587pt;}
.ls27{letter-spacing:-0.127384pt;}
.ls22{letter-spacing:-0.074654pt;}
.ls5d{letter-spacing:-0.050030pt;}
.ls25{letter-spacing:-0.042667pt;}
.ls21{letter-spacing:-0.025817pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls4e{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.074667pt;}
.ls33{letter-spacing:0.080131pt;}
.ls0{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.133333pt;}
.ls60{letter-spacing:0.143329pt;}
.ls4a{letter-spacing:0.192000pt;}
.ls53{letter-spacing:0.238250pt;}
.ls65{letter-spacing:0.256000pt;}
.ls5e{letter-spacing:0.263085pt;}
.ls2{letter-spacing:0.266667pt;}
.ls36{letter-spacing:0.295718pt;}
.ls5c{letter-spacing:0.367773pt;}
.lsf{letter-spacing:0.384000pt;}
.ls62{letter-spacing:0.438475pt;}
.ls5b{letter-spacing:0.442058pt;}
.ls58{letter-spacing:0.473872pt;}
.ls52{letter-spacing:0.484815pt;}
.ls31{letter-spacing:0.542101pt;}
.ls59{letter-spacing:0.638100pt;}
.ls38{letter-spacing:0.661167pt;}
.ls5a{letter-spacing:0.663696pt;}
.ls51{letter-spacing:0.693412pt;}
.ls37{letter-spacing:1.307514pt;}
.ls26{letter-spacing:1.340769pt;}
.ls4c{letter-spacing:3.346933pt;}
.ls4b{letter-spacing:3.418654pt;}
.ls45{letter-spacing:8.000000pt;}
.ls7{letter-spacing:20.266667pt;}
.ls3a{letter-spacing:44.800000pt;}
.ls4{letter-spacing:70.102265pt;}
.ls42{letter-spacing:72.197458pt;}
.ls44{letter-spacing:74.306310pt;}
.ls39{letter-spacing:84.825561pt;}
.ls14{letter-spacing:90.264835pt;}
.ls30{letter-spacing:90.638213pt;}
.ls15{letter-spacing:95.106072pt;}
.ls1c{letter-spacing:107.186405pt;}
.ls13{letter-spacing:109.758230pt;}
.ls12{letter-spacing:110.558026pt;}
.ls3f{letter-spacing:113.716202pt;}
.ls2f{letter-spacing:114.993289pt;}
.ls46{letter-spacing:158.760803pt;}
.ls4d{letter-spacing:170.801759pt;}
.ls20{letter-spacing:201.765173pt;}
.ls3d{letter-spacing:226.965668pt;}
.ls19{letter-spacing:229.728009pt;}
.ls5{letter-spacing:251.035194pt;}
.ls6{letter-spacing:270.412572pt;}
.ls2a{letter-spacing:280.586945pt;}
.ls2c{letter-spacing:353.348940pt;}
.ls29{letter-spacing:355.139933pt;}
.ls17{letter-spacing:365.240896pt;}
.ls3e{letter-spacing:381.831560pt;}
.ls1e{letter-spacing:388.941309pt;}
.ls1d{letter-spacing:391.956203pt;}
.ls16{letter-spacing:395.763314pt;}
.ls40{letter-spacing:401.299787pt;}
.ls1b{letter-spacing:405.932605pt;}
.ls3c{letter-spacing:444.446166pt;}
.ls49{letter-spacing:450.506101pt;}
.ls18{letter-spacing:452.458492pt;}
.ls64{letter-spacing:453.324465pt;}
.ls4f{letter-spacing:467.479689pt;}
.ls48{letter-spacing:472.312507pt;}
.ls1a{letter-spacing:477.548683pt;}
.ls41{letter-spacing:493.471289pt;}
.ls43{letter-spacing:497.321390pt;}
.ls1f{letter-spacing:714.576097pt;}
.ls3b{letter-spacing:867.363430pt;}
.ls2e{letter-spacing:903.856244pt;}
.ls2d{letter-spacing:1004.948467pt;}
.ls47{letter-spacing:1082.414777pt;}
.ws60{word-spacing:-92.715862pt;}
.ws69{word-spacing:-91.658360pt;}
.ws6e{word-spacing:-75.479095pt;}
.ws89{word-spacing:-60.227918pt;}
.wsa1{word-spacing:-52.630327pt;}
.ws11{word-spacing:-48.594146pt;}
.ws59{word-spacing:-48.338143pt;}
.ws39{word-spacing:-47.848809pt;}
.ws12{word-spacing:-47.658411pt;}
.ws2d{word-spacing:-47.646616pt;}
.ws9c{word-spacing:-47.574683pt;}
.ws62{word-spacing:-46.965073pt;}
.wsa2{word-spacing:-45.211601pt;}
.wsa6{word-spacing:-44.634490pt;}
.ws18{word-spacing:-43.383466pt;}
.ws2e{word-spacing:-42.821288pt;}
.ws45{word-spacing:-42.453877pt;}
.ws8d{word-spacing:-42.412385pt;}
.ws1d{word-spacing:-41.794284pt;}
.ws83{word-spacing:-41.721684pt;}
.ws51{word-spacing:-40.904913pt;}
.ws7b{word-spacing:-40.470043pt;}
.ws88{word-spacing:-40.180916pt;}
.ws31{word-spacing:-36.589925pt;}
.ws3b{word-spacing:-36.215913pt;}
.ws96{word-spacing:-29.432040pt;}
.ws82{word-spacing:-29.382043pt;}
.ws7a{word-spacing:-28.501173pt;}
.ws93{word-spacing:-27.834129pt;}
.ws4f{word-spacing:-24.008019pt;}
.ws21{word-spacing:-23.208888pt;}
.ws10{word-spacing:-22.128482pt;}
.ws99{word-spacing:-21.807574pt;}
.wsf{word-spacing:-21.702373pt;}
.ws98{word-spacing:-21.664246pt;}
.ws61{word-spacing:-21.386645pt;}
.ws5e{word-spacing:-21.111030pt;}
.ws67{word-spacing:-20.870241pt;}
.ws54{word-spacing:-20.499645pt;}
.ws15{word-spacing:-19.755676pt;}
.ws14{word-spacing:-19.729860pt;}
.wsa3{word-spacing:-19.492714pt;}
.wsa{word-spacing:-19.291440pt;}
.wsa7{word-spacing:-19.225577pt;}
.ws84{word-spacing:-19.100882pt;}
.ws23{word-spacing:-19.048125pt;}
.ws1a{word-spacing:-19.032005pt;}
.ws19{word-spacing:-18.957352pt;}
.ws35{word-spacing:-18.840424pt;}
.ws5a{word-spacing:-18.691639pt;}
.ws8f{word-spacing:-18.665094pt;}
.ws50{word-spacing:-18.627010pt;}
.ws8e{word-spacing:-18.297321pt;}
.ws6c{word-spacing:-17.186303pt;}
.ws3a{word-spacing:-16.491764pt;}
.wsb{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws32{word-spacing:-15.957333pt;}
.ws1e{word-spacing:-15.893375pt;}
.ws27{word-spacing:-15.479557pt;}
.ws70{word-spacing:-15.474673pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws57{word-spacing:-12.850630pt;}
.ws37{word-spacing:-12.703438pt;}
.ws7c{word-spacing:-12.674922pt;}
.ws9a{word-spacing:-12.655481pt;}
.ws75{word-spacing:-12.294677pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws74{word-spacing:-11.962677pt;}
.ws90{word-spacing:-10.676228pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws7e{word-spacing:-7.399665pt;}
.ws77{word-spacing:-7.177677pt;}
.ws42{word-spacing:-0.619430pt;}
.ws9e{word-spacing:-0.088514pt;}
.ws58{word-spacing:-0.088048pt;}
.ws38{word-spacing:-0.087156pt;}
.ws9b{word-spacing:-0.086657pt;}
.ws5c{word-spacing:-0.084444pt;}
.ws65{word-spacing:-0.083481pt;}
.ws4d{word-spacing:-0.081999pt;}
.ws71{word-spacing:-0.081964pt;}
.ws48{word-spacing:-0.080880pt;}
.ws16{word-spacing:-0.079023pt;}
.wsa0{word-spacing:-0.077971pt;}
.ws41{word-spacing:-0.077329pt;}
.wsa4{word-spacing:-0.076902pt;}
.ws22{word-spacing:-0.076344pt;}
.ws26{word-spacing:-0.076193pt;}
.ws1b{word-spacing:-0.076128pt;}
.wsc{word-spacing:-0.075560pt;}
.ws3f{word-spacing:-0.073452pt;}
.ws8a{word-spacing:-0.073189pt;}
.ws6a{word-spacing:-0.068745pt;}
.ws2f{word-spacing:-0.066648pt;}
.ws1f{word-spacing:-0.063573pt;}
.ws2a{word-spacing:-0.061918pt;}
.ws6f{word-spacing:-0.061899pt;}
.ws64{word-spacing:-0.061894pt;}
.ws34{word-spacing:-0.061891pt;}
.ws7f{word-spacing:-0.050700pt;}
.ws78{word-spacing:-0.049179pt;}
.ws8b{word-spacing:-0.042705pt;}
.ws95{word-spacing:-0.029599pt;}
.ws13{word-spacing:0.000000pt;}
.ws81{word-spacing:0.412814pt;}
.wsa5{word-spacing:0.709294pt;}
.ws4e{word-spacing:1.415817pt;}
.ws91{word-spacing:9.059609pt;}
.wse{word-spacing:19.650710pt;}
.ws8c{word-spacing:19.979313pt;}
.ws6d{word-spacing:20.682159pt;}
.ws53{word-spacing:21.770664pt;}
.ws40{word-spacing:30.148675pt;}
.ws6b{word-spacing:30.936266pt;}
.ws72{word-spacing:32.787034pt;}
.ws97{word-spacing:35.786275pt;}
.ws76{word-spacing:39.188357pt;}
.ws79{word-spacing:40.120801pt;}
.ws7d{word-spacing:40.317664pt;}
.ws80{word-spacing:41.402987pt;}
.ws63{word-spacing:45.942956pt;}
.wsd{word-spacing:61.201741pt;}
.ws3e{word-spacing:63.646409pt;}
.ws4c{word-spacing:69.118062pt;}
.ws4a{word-spacing:76.066731pt;}
.ws44{word-spacing:79.895001pt;}
.ws4b{word-spacing:89.002533pt;}
.ws68{word-spacing:95.334211pt;}
.ws33{word-spacing:96.024841pt;}
.ws5f{word-spacing:96.268843pt;}
.ws66{word-spacing:96.930653pt;}
.ws49{word-spacing:97.950254pt;}
.ws5d{word-spacing:98.048983pt;}
.ws3c{word-spacing:107.139679pt;}
.ws87{word-spacing:122.985876pt;}
.ws29{word-spacing:125.075555pt;}
.ws9d{word-spacing:132.313540pt;}
.ws36{word-spacing:144.619239pt;}
.ws25{word-spacing:145.379031pt;}
.ws5b{word-spacing:158.181945pt;}
.ws20{word-spacing:167.499600pt;}
.ws2c{word-spacing:174.957180pt;}
.ws2b{word-spacing:193.724277pt;}
.ws52{word-spacing:229.757514pt;}
.ws92{word-spacing:231.701548pt;}
.ws55{word-spacing:256.751253pt;}
.ws9f{word-spacing:262.169723pt;}
.ws3d{word-spacing:264.201827pt;}
.ws28{word-spacing:274.673159pt;}
.ws1c{word-spacing:280.119858pt;}
.ws47{word-spacing:285.195268pt;}
.ws17{word-spacing:294.810966pt;}
.ws24{word-spacing:328.401331pt;}
.ws73{word-spacing:356.365810pt;}
.ws46{word-spacing:421.982117pt;}
.ws56{word-spacing:441.390570pt;}
.ws86{word-spacing:488.409692pt;}
.ws85{word-spacing:507.138726pt;}
.ws30{word-spacing:526.571894pt;}
.ws43{word-spacing:821.762957pt;}
.ws94{word-spacing:1239.262643pt;}
._b0{margin-left:-781.749102pt;}
._87{margin-left:-759.784730pt;}
._bd{margin-left:-657.000895pt;}
._b6{margin-left:-615.685080pt;}
._91{margin-left:-598.829824pt;}
._96{margin-left:-580.089349pt;}
._af{margin-left:-562.656192pt;}
._b2{margin-left:-552.686606pt;}
._b5{margin-left:-543.389326pt;}
._ae{margin-left:-501.419535pt;}
._8e{margin-left:-462.877689pt;}
._94{margin-left:-442.336090pt;}
._73{margin-left:-405.568894pt;}
._76{margin-left:-389.868246pt;}
._74{margin-left:-385.876588pt;}
._c4{margin-left:-379.547080pt;}
._80{margin-left:-377.123722pt;}
._c6{margin-left:-367.899897pt;}
._9a{margin-left:-366.857018pt;}
._c5{margin-left:-365.337866pt;}
._b7{margin-left:-362.296409pt;}
._90{margin-left:-353.850976pt;}
._42{margin-left:-352.633596pt;}
._95{margin-left:-349.975456pt;}
._c2{margin-left:-344.326750pt;}
._b1{margin-left:-334.592956pt;}
._cb{margin-left:-323.647815pt;}
._c3{margin-left:-322.292816pt;}
._cc{margin-left:-320.869196pt;}
._b8{margin-left:-306.057566pt;}
._ac{margin-left:-300.831721pt;}
._ad{margin-left:-298.248986pt;}
._47{margin-left:-294.409478pt;}
._ab{margin-left:-293.276893pt;}
._d1{margin-left:-283.682114pt;}
._7f{margin-left:-281.216430pt;}
._ca{margin-left:-275.637298pt;}
._b3{margin-left:-268.138742pt;}
._99{margin-left:-262.532104pt;}
._d0{margin-left:-260.257643pt;}
._cd{margin-left:-258.776504pt;}
._85{margin-left:-253.308863pt;}
._75{margin-left:-249.613691pt;}
._5e{margin-left:-247.183810pt;}
._84{margin-left:-244.695608pt;}
._5d{margin-left:-237.919959pt;}
._67{margin-left:-233.614082pt;}
._71{margin-left:-230.918963pt;}
._72{margin-left:-228.570588pt;}
._c7{margin-left:-226.224971pt;}
._a3{margin-left:-222.385843pt;}
._d2{margin-left:-220.239906pt;}
._77{margin-left:-218.174645pt;}
._ce{margin-left:-215.703613pt;}
._b4{margin-left:-214.495016pt;}
._9d{margin-left:-210.085046pt;}
._cf{margin-left:-207.215269pt;}
._4a{margin-left:-205.846980pt;}
._32{margin-left:-204.119389pt;}
._78{margin-left:-201.079940pt;}
._5f{margin-left:-199.242710pt;}
._29{margin-left:-197.119629pt;}
._a9{margin-left:-194.060198pt;}
._35{margin-left:-190.900442pt;}
._3e{margin-left:-188.302189pt;}
._4b{margin-left:-186.240191pt;}
._bc{margin-left:-184.115012pt;}
._a2{margin-left:-182.983205pt;}
._c0{margin-left:-181.024754pt;}
._9e{margin-left:-177.203966pt;}
._a7{margin-left:-175.591754pt;}
._9c{margin-left:-173.697005pt;}
._66{margin-left:-172.468310pt;}
._3d{margin-left:-171.163854pt;}
._be{margin-left:-169.158166pt;}
._7d{margin-left:-167.619149pt;}
._8b{margin-left:-164.365331pt;}
._7e{margin-left:-161.706428pt;}
._83{margin-left:-160.701965pt;}
._8a{margin-left:-159.783436pt;}
._c1{margin-left:-158.325253pt;}
._63{margin-left:-155.531496pt;}
._62{margin-left:-151.351740pt;}
._49{margin-left:-150.090641pt;}
._88{margin-left:-147.956908pt;}
._70{margin-left:-145.922806pt;}
._c9{margin-left:-144.930563pt;}
._40{margin-left:-143.912155pt;}
._8c{margin-left:-140.586359pt;}
._61{margin-left:-139.243531pt;}
._6f{margin-left:-137.214839pt;}
._24{margin-left:-131.873764pt;}
._69{margin-left:-130.500340pt;}
._bf{margin-left:-128.419291pt;}
._7c{margin-left:-127.274030pt;}
._8f{margin-left:-125.227716pt;}
._28{margin-left:-123.675535pt;}
._8d{margin-left:-122.612199pt;}
._93{margin-left:-121.349867pt;}
._89{margin-left:-120.017679pt;}
._2e{margin-left:-118.532688pt;}
._65{margin-left:-117.357545pt;}
._2f{margin-left:-116.108586pt;}
._43{margin-left:-114.974247pt;}
._4c{margin-left:-113.437428pt;}
._27{margin-left:-112.149166pt;}
._2c{margin-left:-110.308425pt;}
._31{margin-left:-108.479560pt;}
._38{margin-left:-107.153657pt;}
._25{margin-left:-105.682117pt;}
._98{margin-left:-104.338156pt;}
._34{margin-left:-102.861655pt;}
._48{margin-left:-101.770123pt;}
._22{margin-left:-99.554761pt;}
._60{margin-left:-98.161440pt;}
._a6{margin-left:-96.962844pt;}
._37{margin-left:-96.069911pt;}
._82{margin-left:-95.157974pt;}
._4e{margin-left:-93.543352pt;}
._a1{margin-left:-92.289291pt;}
._26{margin-left:-90.971855pt;}
._4d{margin-left:-90.047543pt;}
._30{margin-left:-87.022001pt;}
._41{margin-left:-84.730606pt;}
._5c{margin-left:-83.506059pt;}
._33{margin-left:-82.422750pt;}
._ba{margin-left:-81.186897pt;}
._45{margin-left:-79.864936pt;}
._68{margin-left:-78.457000pt;}
._97{margin-left:-75.520539pt;}
._c8{margin-left:-74.215074pt;}
._5b{margin-left:-73.263441pt;}
._36{margin-left:-71.467706pt;}
._92{margin-left:-69.979844pt;}
._46{margin-left:-68.359934pt;}
._2d{margin-left:-65.794512pt;}
._2b{margin-left:-64.455434pt;}
._5a{margin-left:-63.112583pt;}
._a5{margin-left:-59.908905pt;}
._a0{margin-left:-58.111652pt;}
._3f{margin-left:-56.910167pt;}
._aa{margin-left:-55.955264pt;}
._81{margin-left:-54.977826pt;}
._86{margin-left:-50.793220pt;}
._9b{margin-left:-47.472174pt;}
._44{margin-left:-46.067816pt;}
._bb{margin-left:-37.887271pt;}
._7b{margin-left:-3.968000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._13{width:1.978667pt;}
._8{width:2.997333pt;}
._19{width:3.904000pt;}
._18{width:5.184000pt;}
._6a{width:6.720000pt;}
._d{width:7.642667pt;}
._5{width:8.666667pt;}
._4{width:9.605333pt;}
._10{width:10.762667pt;}
._b{width:12.218667pt;}
._c{width:13.424000pt;}
._9{width:14.912000pt;}
._a{width:17.008000pt;}
._1e{width:18.048000pt;}
._2a{width:19.008000pt;}
._1a{width:20.096000pt;}
._6{width:21.248000pt;}
._7{width:22.261333pt;}
._17{width:23.818667pt;}
._16{width:24.768000pt;}
._51{width:25.866667pt;}
._21{width:27.392000pt;}
._14{width:29.248000pt;}
._15{width:30.272000pt;}
._3a{width:31.744000pt;}
._3b{width:32.640000pt;}
._d4{width:33.744000pt;}
._58{width:34.944000pt;}
._59{width:36.352000pt;}
._11{width:37.696000pt;}
._53{width:40.448000pt;}
._52{width:41.920000pt;}
._1f{width:43.456000pt;}
._20{width:44.800000pt;}
._39{width:45.898667pt;}
._1d{width:47.040000pt;}
._e{width:48.640000pt;}
._f{width:49.536000pt;}
._55{width:50.944000pt;}
._56{width:51.840000pt;}
._6b{width:53.632000pt;}
._d6{width:55.680000pt;}
._4f{width:56.704000pt;}
._50{width:57.664000pt;}
._79{width:59.162667pt;}
._64{width:61.658667pt;}
._1b{width:62.848000pt;}
._1c{width:64.192000pt;}
._7a{width:67.392000pt;}
._d5{width:73.733333pt;}
._6c{width:75.520000pt;}
._54{width:76.416000pt;}
._a8{width:78.794667pt;}
._12{width:90.240000pt;}
._23{width:97.344000pt;}
._57{width:102.592000pt;}
._d3{width:104.064000pt;}
._3c{width:111.232000pt;}
._6e{width:151.092105pt;}
._9f{width:446.188704pt;}
._a4{width:448.659164pt;}
._b9{width:706.370138pt;}
._6d{width:746.297463pt;}
.fs66{font-size:28.710709pt;}
.fs6a{font-size:29.598662pt;}
.fs1e{font-size:36.161125pt;}
.fs18{font-size:37.074181pt;}
.fs2e{font-size:37.681375pt;}
.fs26{font-size:38.857215pt;}
.fs5a{font-size:40.053426pt;}
.fs43{font-size:40.885584pt;}
.fs7f{font-size:42.666667pt;}
.fs71{font-size:42.704912pt;}
.fs37{font-size:42.907968pt;}
.fs20{font-size:43.320532pt;}
.fs47{font-size:43.590301pt;}
.fs16{font-size:44.384061pt;}
.fs1c{font-size:44.433209pt;}
.fs1a{font-size:44.585998pt;}
.fs7d{font-size:44.835484pt;}
.fs7{font-size:45.077491pt;}
.fs53{font-size:45.458467pt;}
.fs23{font-size:45.488998pt;}
.fs14{font-size:46.162253pt;}
.fs62{font-size:46.191024pt;}
.fs6d{font-size:46.280403pt;}
.fs3e{font-size:47.247014pt;}
.fs30{font-size:47.749671pt;}
.fs60{font-size:47.850708pt;}
.fs3{font-size:48.000000pt;}
.fs4d{font-size:48.284362pt;}
.fs50{font-size:48.573498pt;}
.fs56{font-size:48.736489pt;}
.fs65{font-size:49.178710pt;}
.fs4a{font-size:49.298782pt;}
.fs34{font-size:49.961745pt;}
.fs38{font-size:50.133545pt;}
.fsd{font-size:50.611558pt;}
.fs77{font-size:50.621925pt;}
.fs2{font-size:50.666667pt;}
.fs69{font-size:50.699688pt;}
.fs2b{font-size:50.813754pt;}
.fs45{font-size:51.402519pt;}
.fs10{font-size:51.706687pt;}
.fs67{font-size:51.914706pt;}
.fs1{font-size:53.333333pt;}
.fs6b{font-size:53.519204pt;}
.fs74{font-size:53.610273pt;}
.fs4{font-size:58.666667pt;}
.fs29{font-size:61.891344pt;}
.fs54{font-size:61.894182pt;}
.fs5d{font-size:61.898693pt;}
.fs1d{font-size:61.918226pt;}
.fs17{font-size:63.573500pt;}
.fs5{font-size:64.000000pt;}
.fs5e{font-size:65.644596pt;}
.fsb{font-size:65.771246pt;}
.fs31{font-size:65.967054pt;}
.fs6e{font-size:66.066785pt;}
.fs12{font-size:66.443762pt;}
.fs25{font-size:66.648315pt;}
.fs59{font-size:68.745211pt;}
.fs42{font-size:70.127395pt;}
.fs40{font-size:70.265447pt;}
.fs27{font-size:70.447166pt;}
.fs5b{font-size:72.631547pt;}
.fs6f{font-size:73.189283pt;}
.fs36{font-size:73.451868pt;}
.fs68{font-size:73.715926pt;}
.fs41{font-size:74.508038pt;}
.fs0{font-size:74.666667pt;}
.fs46{font-size:74.766555pt;}
.fs2d{font-size:75.361697pt;}
.fs9{font-size:75.560151pt;}
.fs6c{font-size:75.995781pt;}
.fs15{font-size:76.128022pt;}
.fs1b{font-size:76.192502pt;}
.fs19{font-size:76.344028pt;}
.fs7c{font-size:76.902307pt;}
.fs6{font-size:77.165760pt;}
.fs72{font-size:77.253888pt;}
.fs3b{font-size:77.329467pt;}
.fs3c{font-size:77.764706pt;}
.fs52{font-size:77.970854pt;}
.fs22{font-size:77.998703pt;}
.fs48{font-size:78.959150pt;}
.fs13{font-size:79.022706pt;}
.fs63{font-size:79.206741pt;}
.fs2f{font-size:79.513550pt;}
.fs28{font-size:79.993009pt;}
.fs3d{font-size:80.879652pt;}
.fs73{font-size:81.197234pt;}
.fs7e{font-size:81.301439pt;}
.fs8{font-size:81.685297pt;}
.fs5f{font-size:81.963705pt;}
.fsa{font-size:81.998580pt;}
.fs7b{font-size:82.352644pt;}
.fs4e{font-size:82.676689pt;}
.fs64{font-size:83.275547pt;}
.fs4f{font-size:83.313789pt;}
.fs55{font-size:83.480963pt;}
.fs24{font-size:83.914147pt;}
.fs49{font-size:84.444119pt;}
.fs51{font-size:85.546581pt;}
.fs33{font-size:85.672640pt;}
.fs39{font-size:85.843020pt;}
.fs61{font-size:86.617938pt;}
.fs76{font-size:86.656982pt;}
.fs1f{font-size:86.788008pt;}
.fsc{font-size:86.809492pt;}
.fs2a{font-size:87.156300pt;}
.fs44{font-size:88.047619pt;}
.fs57{font-size:88.109067pt;}
.fsf{font-size:88.513928pt;}
.fs4b{font-size:88.897527pt;}
.fs78{font-size:91.305990pt;}
.fse{font-size:91.476623pt;}
.fs21{font-size:91.808821pt;}
.fs2c{font-size:91.959154pt;}
.fs3f{font-size:92.798367pt;}
.fs11{font-size:92.990341pt;}
.fs7a{font-size:93.137884pt;}
.fs75{font-size:93.353833pt;}
.fs79{font-size:93.663288pt;}
.fs35{font-size:97.015646pt;}
.fs3a{font-size:102.127697pt;}
.fs70{font-size:109.704768pt;}
.fs32{font-size:113.146382pt;}
.fs5c{font-size:137.484691pt;}
.fs58{font-size:166.955118pt;}
.fs4c{font-size:168.881351pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y7c{bottom:2.498001pt;}
.y96{bottom:2.905985pt;}
.y94{bottom:2.905986pt;}
.y21a{bottom:3.256612pt;}
.y1c{bottom:3.466667pt;}
.y269{bottom:3.549534pt;}
.y27b{bottom:3.659313pt;}
.y4f{bottom:3.799658pt;}
.y285{bottom:3.864448pt;}
.y13d{bottom:3.900834pt;}
.y1e7{bottom:4.003310pt;}
.y158{bottom:4.046704pt;}
.ya4{bottom:4.066309pt;}
.y3e{bottom:4.098089pt;}
.y2c8{bottom:4.157545pt;}
.y2ca{bottom:4.157566pt;}
.y2bf{bottom:4.215076pt;}
.y2c0{bottom:4.215081pt;}
.y2d8{bottom:4.305393pt;}
.y2da{bottom:4.305401pt;}
.y2d1{bottom:4.305402pt;}
.y2d9{bottom:4.305406pt;}
.y2b5{bottom:4.305410pt;}
.y2b6{bottom:4.305425pt;}
.ya9{bottom:4.314477pt;}
.y81{bottom:4.314493pt;}
.y84{bottom:4.314497pt;}
.ybe{bottom:4.416827pt;}
.yc1{bottom:4.416843pt;}
.yc6{bottom:4.416845pt;}
.y132{bottom:4.433364pt;}
.y25d{bottom:4.449025pt;}
.y288{bottom:4.520031pt;}
.y215{bottom:4.585402pt;}
.y271{bottom:4.586622pt;}
.y2a9{bottom:4.650631pt;}
.y119{bottom:4.730313pt;}
.y11b{bottom:4.730323pt;}
.y117{bottom:4.730325pt;}
.y7{bottom:4.800000pt;}
.y68{bottom:4.832648pt;}
.y6c{bottom:4.832650pt;}
.y5a{bottom:4.832651pt;}
.y61{bottom:4.832655pt;}
.y5d{bottom:4.832656pt;}
.y6a{bottom:4.832658pt;}
.y6d{bottom:4.832659pt;}
.y208{bottom:4.952258pt;}
.y203{bottom:4.952264pt;}
.y206{bottom:4.952265pt;}
.y1fe{bottom:4.952267pt;}
.y1d6{bottom:5.009350pt;}
.y9c{bottom:5.013661pt;}
.ya1{bottom:5.051876pt;}
.yb{bottom:5.333333pt;}
.y1dd{bottom:5.429513pt;}
.y128{bottom:5.488830pt;}
.y12a{bottom:5.488847pt;}
.y142{bottom:5.637468pt;}
.y146{bottom:5.637470pt;}
.y139{bottom:5.680391pt;}
.y243{bottom:5.689297pt;}
.y247{bottom:5.689312pt;}
.y22c{bottom:5.915844pt;}
.y230{bottom:5.915865pt;}
.yc{bottom:6.000000pt;}
.y1b7{bottom:6.180828pt;}
.y1bb{bottom:6.180852pt;}
.y25b{bottom:6.369630pt;}
.yd4{bottom:6.371951pt;}
.yd7{bottom:6.371966pt;}
.yde{bottom:6.371967pt;}
.yd9{bottom:6.371972pt;}
.ye1{bottom:6.371974pt;}
.y18b{bottom:6.565628pt;}
.y186{bottom:6.565633pt;}
.y18d{bottom:6.565659pt;}
.y189{bottom:6.565664pt;}
.y26f{bottom:6.566627pt;}
.y260{bottom:6.588411pt;}
.y120{bottom:6.604877pt;}
.y122{bottom:6.604884pt;}
.y123{bottom:6.604887pt;}
.y19b{bottom:6.704606pt;}
.y1a0{bottom:6.704611pt;}
.y105{bottom:6.728329pt;}
.y1f5{bottom:6.728641pt;}
.y2ae{bottom:6.767160pt;}
.y274{bottom:6.792175pt;}
.y93{bottom:6.865585pt;}
.y2fc{bottom:7.085546pt;}
.y2fe{bottom:7.085548pt;}
.y8b{bottom:7.202877pt;}
.y8e{bottom:7.202880pt;}
.y2f5{bottom:7.237954pt;}
.y302{bottom:7.237957pt;}
.y2f7{bottom:7.237968pt;}
.y305{bottom:7.237970pt;}
.yb0{bottom:7.240497pt;}
.y175{bottom:7.588272pt;}
.y174{bottom:7.694102pt;}
.ya3{bottom:7.946142pt;}
.y1c9{bottom:7.962852pt;}
.y1cb{bottom:7.962859pt;}
.y1cc{bottom:7.962864pt;}
.y1e3{bottom:8.099903pt;}
.y281{bottom:8.099904pt;}
.y17f{bottom:8.099914pt;}
.y71{bottom:8.256376pt;}
.y75{bottom:8.256378pt;}
.y73{bottom:8.256385pt;}
.y78{bottom:8.256387pt;}
.y54{bottom:8.299468pt;}
.y2ec{bottom:8.304124pt;}
.y47{bottom:8.319406pt;}
.y104{bottom:8.319455pt;}
.y10b{bottom:8.332625pt;}
.y154{bottom:8.351140pt;}
.y16a{bottom:8.351151pt;}
.y153{bottom:8.467602pt;}
.y169{bottom:8.467627pt;}
.ycf{bottom:8.537330pt;}
.y1f1{bottom:8.574493pt;}
.y1ef{bottom:8.574503pt;}
.y289{bottom:8.639986pt;}
.y2e5{bottom:8.883476pt;}
.y2e7{bottom:8.883480pt;}
.yd1{bottom:8.898835pt;}
.y192{bottom:8.914214pt;}
.y4a{bottom:8.914217pt;}
.y17d{bottom:8.914221pt;}
.y1eb{bottom:9.299934pt;}
.y9b{bottom:9.797451pt;}
.ya0{bottom:9.835812pt;}
.y291{bottom:9.965664pt;}
.y294{bottom:9.965692pt;}
.y297{bottom:9.965715pt;}
.y223{bottom:10.453864pt;}
.y225{bottom:10.453870pt;}
.y227{bottom:10.453880pt;}
.y24a{bottom:10.503369pt;}
.y24c{bottom:10.503377pt;}
.y1de{bottom:10.610146pt;}
.y220{bottom:10.940139pt;}
.y147{bottom:11.016542pt;}
.y143{bottom:11.016543pt;}
.y138{bottom:11.059601pt;}
.y1ae{bottom:11.099312pt;}
.y1bd{bottom:11.099314pt;}
.y1b0{bottom:11.099319pt;}
.y1c0{bottom:11.099320pt;}
.y1b2{bottom:11.099330pt;}
.y1c3{bottom:11.099332pt;}
.y137{bottom:11.188628pt;}
.y26b{bottom:11.426370pt;}
.y27d{bottom:11.779760pt;}
.y25f{bottom:11.888598pt;}
.y273{bottom:12.256284pt;}
.y1f9{bottom:12.834643pt;}
.y1fb{bottom:12.834659pt;}
.y1d2{bottom:12.982715pt;}
.y265{bottom:13.127892pt;}
.y2ad{bottom:13.233107pt;}
.y266{bottom:13.371540pt;}
.y1e5{bottom:13.371601pt;}
.y277{bottom:13.533906pt;}
.y13f{bottom:13.707798pt;}
.y278{bottom:13.785089pt;}
.y2be{bottom:13.935513pt;}
.y210{bottom:14.068814pt;}
.ybc{bottom:14.170836pt;}
.y2d0{bottom:14.234132pt;}
.y2b4{bottom:14.234136pt;}
.y42{bottom:14.400926pt;}
.y182{bottom:14.415770pt;}
.y184{bottom:14.415801pt;}
.y115{bottom:14.491689pt;}
.y195{bottom:14.554723pt;}
.y197{bottom:14.554749pt;}
.y129{bottom:14.692058pt;}
.y80{bottom:14.747475pt;}
.ydb{bottom:15.120762pt;}
.y21d{bottom:15.422724pt;}
.y300{bottom:15.733046pt;}
.yc3{bottom:16.048498pt;}
.y25a{bottom:16.216100pt;}
.y63{bottom:16.518737pt;}
.y2d3{bottom:16.518753pt;}
.y26e{bottom:16.717625pt;}
.y2ac{bottom:16.742433pt;}
.y268{bottom:16.750520pt;}
.y2ef{bottom:17.071463pt;}
.y27a{bottom:17.268573pt;}
.ycd{bottom:17.297619pt;}
.y1ed{bottom:17.304070pt;}
.y8a{bottom:17.308783pt;}
.y2fa{bottom:17.447158pt;}
.ya{bottom:17.733333pt;}
.y216{bottom:17.889743pt;}
.y28e{bottom:17.901575pt;}
.y109{bottom:18.089010pt;}
.y6{bottom:18.266667pt;}
.y13c{bottom:18.301321pt;}
.y15c{bottom:18.301371pt;}
.y159{bottom:18.301387pt;}
.y13b{bottom:18.411081pt;}
.y245{bottom:18.420115pt;}
.y22a{bottom:19.043773pt;}
.y22e{bottom:19.043794pt;}
.y3d{bottom:19.226682pt;}
.y40{bottom:19.226704pt;}
.y43{bottom:19.226713pt;}
.yd2{bottom:19.271442pt;}
.yd6{bottom:19.280473pt;}
.ye4{bottom:19.280474pt;}
.ydd{bottom:19.280476pt;}
.ye0{bottom:19.280485pt;}
.ye3{bottom:19.280492pt;}
.ye5{bottom:19.280497pt;}
.y2eb{bottom:19.311136pt;}
.y23d{bottom:19.416094pt;}
.y23f{bottom:19.416102pt;}
.y233{bottom:19.652058pt;}
.y235{bottom:19.652068pt;}
.y7f{bottom:19.689371pt;}
.ya8{bottom:19.689376pt;}
.yab{bottom:19.689399pt;}
.yad{bottom:19.689407pt;}
.y83{bottom:19.689411pt;}
.y86{bottom:19.689415pt;}
.y56{bottom:19.737330pt;}
.y160{bottom:20.152036pt;}
.y163{bottom:20.152055pt;}
.y1b5{bottom:20.283203pt;}
.y1b9{bottom:20.283227pt;}
.y181{bottom:20.286922pt;}
.y19f{bottom:20.286941pt;}
.y188{bottom:20.286963pt;}
.y199{bottom:20.286964pt;}
.y1a2{bottom:20.286976pt;}
.y19d{bottom:20.286987pt;}
.y1e4{bottom:20.676961pt;}
.y1aa{bottom:20.979722pt;}
.y1ac{bottom:20.979734pt;}
.y204{bottom:21.047305pt;}
.y124{bottom:21.249954pt;}
.y125{bottom:21.249960pt;}
.y1d8{bottom:21.290083pt;}
.y264{bottom:21.321670pt;}
.ybb{bottom:21.458675pt;}
.yc0{bottom:21.458687pt;}
.yc5{bottom:21.458690pt;}
.yc8{bottom:21.458704pt;}
.yc9{bottom:21.458709pt;}
.y113{bottom:21.544532pt;}
.y2bc{bottom:21.591518pt;}
.y2c4{bottom:21.591546pt;}
.y2c2{bottom:21.591553pt;}
.y1b{bottom:21.866667pt;}
.y229{bottom:21.879613pt;}
.y59{bottom:22.054196pt;}
.y2ce{bottom:22.054198pt;}
.y2b2{bottom:22.054200pt;}
.y5c{bottom:22.054203pt;}
.y5f{bottom:22.054208pt;}
.y64{bottom:22.054211pt;}
.y2d2{bottom:22.054216pt;}
.y2db{bottom:22.054219pt;}
.y2d4{bottom:22.054230pt;}
.y2b8{bottom:22.054265pt;}
.y89{bottom:22.099040pt;}
.yaf{bottom:22.099046pt;}
.yb2{bottom:22.099069pt;}
.yb4{bottom:22.099077pt;}
.y8d{bottom:22.099080pt;}
.y90{bottom:22.099085pt;}
.y2f4{bottom:22.246809pt;}
.y2fb{bottom:22.246811pt;}
.y2fd{bottom:22.246813pt;}
.y301{bottom:22.246844pt;}
.y304{bottom:22.246859pt;}
.y307{bottom:22.246872pt;}
.y2f9{bottom:22.246878pt;}
.y263{bottom:22.804611pt;}
.y1cd{bottom:23.185482pt;}
.y1ce{bottom:23.185488pt;}
.y214{bottom:23.273715pt;}
.y276{bottom:23.509903pt;}
.y25c{bottom:23.971713pt;}
.y1ff{bottom:24.019025pt;}
.ycc{bottom:24.166432pt;}
.y2e4{bottom:24.179121pt;}
.y2ed{bottom:24.179122pt;}
.y2f0{bottom:24.179130pt;}
.y1ec{bottom:24.179134pt;}
.y2f1{bottom:24.179137pt;}
.y2e9{bottom:24.179139pt;}
.y1d7{bottom:24.296106pt;}
.y262{bottom:24.384811pt;}
.y28c{bottom:24.471532pt;}
.y290{bottom:24.471537pt;}
.y2a5{bottom:24.471550pt;}
.y293{bottom:24.471553pt;}
.y296{bottom:24.471580pt;}
.y26a{bottom:24.651520pt;}
.y270{bottom:24.713100pt;}
.y70{bottom:25.155387pt;}
.y77{bottom:25.155394pt;}
.y53{bottom:25.199724pt;}
.y108{bottom:25.213149pt;}
.y21c{bottom:25.253886pt;}
.y21b{bottom:25.315973pt;}
.y27c{bottom:25.413932pt;}
.y261{bottom:25.867753pt;}
.y24e{bottom:26.020500pt;}
.y252{bottom:26.020504pt;}
.y275{bottom:26.667780pt;}
.y242{bottom:26.814650pt;}
.y246{bottom:26.814665pt;}
.y222{bottom:27.026577pt;}
.y238{bottom:27.026602pt;}
.y20f{bottom:27.581752pt;}
.y22b{bottom:27.917270pt;}
.y22f{bottom:27.917291pt;}
.y267{bottom:28.736377pt;}
.y1a8{bottom:29.032666pt;}
.y1bf{bottom:29.032681pt;}
.y1c2{bottom:29.032693pt;}
.y1b4{bottom:29.032701pt;}
.y202{bottom:29.218694pt;}
.y1fd{bottom:29.218717pt;}
.y209{bottom:29.218735pt;}
.y161{bottom:29.224772pt;}
.y25e{bottom:29.490381pt;}
.y1d5{bottom:29.555786pt;}
.y279{bottom:29.625124pt;}
.yd5{bottom:29.680480pt;}
.ydc{bottom:29.680483pt;}
.yd8{bottom:29.680494pt;}
.ydf{bottom:29.680496pt;}
.yda{bottom:29.680501pt;}
.ye2{bottom:29.680502pt;}
.y15a{bottom:29.749440pt;}
.y15b{bottom:29.749450pt;}
.y13e{bottom:29.895265pt;}
.y9{bottom:30.133333pt;}
.y1b6{bottom:30.163608pt;}
.y1ba{bottom:30.163632pt;}
.y272{bottom:30.402447pt;}
.y19a{bottom:31.229826pt;}
.y19e{bottom:31.229833pt;}
.y19c{bottom:31.229852pt;}
.y1a1{bottom:31.229860pt;}
.y114{bottom:31.305912pt;}
.y18c{bottom:31.368815pt;}
.y187{bottom:31.368824pt;}
.y18e{bottom:31.368847pt;}
.y18a{bottom:31.368855pt;}
.y41{bottom:31.406854pt;}
.y3f{bottom:31.406858pt;}
.y5{bottom:32.000000pt;}
.yaa{bottom:32.083392pt;}
.yac{bottom:32.083398pt;}
.y82{bottom:32.083408pt;}
.y85{bottom:32.083412pt;}
.y2c9{bottom:32.162627pt;}
.y2cb{bottom:32.162648pt;}
.y2ea{bottom:32.521321pt;}
.y162{bottom:32.757832pt;}
.y10f{bottom:33.416325pt;}
.y1e8{bottom:33.842610pt;}
.yb1{bottom:33.978312pt;}
.yb3{bottom:33.978318pt;}
.y8c{bottom:34.090309pt;}
.y8f{bottom:34.090312pt;}
.y2ff{bottom:34.361606pt;}
.y241{bottom:34.931916pt;}
.y12d{bottom:35.013514pt;}
.y11a{bottom:35.090579pt;}
.y11c{bottom:35.090589pt;}
.y118{bottom:35.090593pt;}
.ybf{bottom:35.224048pt;}
.yc4{bottom:35.224053pt;}
.yc2{bottom:35.224066pt;}
.yc7{bottom:35.224068pt;}
.y2bd{bottom:35.269814pt;}
.y2c1{bottom:35.269816pt;}
.y2c3{bottom:35.269819pt;}
.y69{bottom:35.849848pt;}
.y60{bottom:35.849849pt;}
.y5b{bottom:35.849850pt;}
.y62{bottom:35.849854pt;}
.y5e{bottom:35.849855pt;}
.y6b{bottom:35.849857pt;}
.y6e{bottom:35.849859pt;}
.y2cf{bottom:36.025607pt;}
.y2b7{bottom:36.025622pt;}
.y2b3{bottom:36.025628pt;}
.y292{bottom:36.171474pt;}
.y2a3{bottom:36.171476pt;}
.y295{bottom:36.171502pt;}
.y2a6{bottom:36.171526pt;}
.y237{bottom:36.224289pt;}
.yd0{bottom:36.485336pt;}
.y1f2{bottom:36.498908pt;}
.y1f0{bottom:36.498928pt;}
.y2ee{bottom:36.576921pt;}
.y2f6{bottom:37.104766pt;}
.y303{bottom:37.104768pt;}
.y2f8{bottom:37.104779pt;}
.y306{bottom:37.104781pt;}
.y2e8{bottom:37.425961pt;}
.y24b{bottom:38.433459pt;}
.y24d{bottom:38.433467pt;}
.y212{bottom:38.490097pt;}
.y211{bottom:38.558865pt;}
.y55{bottom:38.701412pt;}
.y72{bottom:38.701416pt;}
.y76{bottom:38.701418pt;}
.y74{bottom:38.701425pt;}
.y79{bottom:38.701427pt;}
.y10c{bottom:38.813292pt;}
.y10e{bottom:38.856026pt;}
.y196{bottom:39.115363pt;}
.y198{bottom:39.115390pt;}
.y183{bottom:39.254353pt;}
.y185{bottom:39.254385pt;}
.y244{bottom:39.545945pt;}
.y248{bottom:39.545960pt;}
.y2e6{bottom:39.781905pt;}
.y224{bottom:39.952476pt;}
.y226{bottom:39.952481pt;}
.y228{bottom:39.952491pt;}
.y1a{bottom:40.266667pt;}
.y221{bottom:40.761273pt;}
.y22d{bottom:41.085472pt;}
.y231{bottom:41.085493pt;}
.y10d{bottom:41.489518pt;}
.y121{bottom:41.511583pt;}
.y1fc{bottom:42.465564pt;}
.y201{bottom:42.465567pt;}
.y1fa{bottom:42.589796pt;}
.y200{bottom:42.589799pt;}
.y1d4{bottom:42.955488pt;}
.y1af{bottom:43.004187pt;}
.y1be{bottom:43.004189pt;}
.y1b1{bottom:43.004195pt;}
.y1c1{bottom:43.004198pt;}
.y1b3{bottom:43.004205pt;}
.y1c4{bottom:43.004207pt;}
.y1d3{bottom:43.081169pt;}
.y1e6{bottom:43.168348pt;}
.y1ca{bottom:43.444285pt;}
.y1b8{bottom:44.309246pt;}
.y1bc{bottom:44.309269pt;}
.y116{bottom:44.807621pt;}
.ybd{bottom:44.978820pt;}
.yce{bottom:45.245395pt;}
.y1ee{bottom:45.266416pt;}
.y2a0{bottom:45.472380pt;}
.y23e{bottom:47.344871pt;}
.y240{bottom:47.344880pt;}
.y10a{bottom:48.613657pt;}
.y232{bottom:49.150162pt;}
.y234{bottom:49.150168pt;}
.y236{bottom:49.150179pt;}
.y3{bottom:51.233333pt;}
.y213{bottom:51.620513pt;}
.y1a9{bottom:52.884593pt;}
.y1ab{bottom:52.884601pt;}
.y1ad{bottom:52.884611pt;}
.y23c{bottom:52.994287pt;}
.y251{bottom:54.625315pt;}
.y207{bottom:54.805276pt;}
.y205{bottom:54.805283pt;}
.y1d9{bottom:55.478863pt;}
.y19{bottom:58.666667pt;}
.y249{bottom:59.598705pt;}
.y250{bottom:59.598711pt;}
.y2aa{bottom:62.967501pt;}
.y299{bottom:68.283120pt;}
.y29b{bottom:68.283132pt;}
.y29e{bottom:68.283167pt;}
.y24f{bottom:72.369367pt;}
.y2{bottom:72.566667pt;}
.y28f{bottom:76.218598pt;}
.y18{bottom:77.066667pt;}
.y2a2{bottom:78.211222pt;}
.y28d{bottom:82.825063pt;}
.y298{bottom:82.825070pt;}
.y2a7{bottom:82.825083pt;}
.y29d{bottom:82.825098pt;}
.y29f{bottom:82.825132pt;}
.y29a{bottom:94.488473pt;}
.y2a4{bottom:94.488475pt;}
.y29c{bottom:94.488486pt;}
.y2a8{bottom:94.488522pt;}
.y17{bottom:95.466667pt;}
.y3b{bottom:100.166667pt;}
.y2a1{bottom:103.789402pt;}
.y283{bottom:107.100000pt;}
.y284{bottom:107.133333pt;}
.y325{bottom:112.966667pt;}
.y16{bottom:113.866667pt;}
.yf2{bottom:114.166667pt;}
.y7d{bottom:115.633333pt;}
.y3a{bottom:121.366667pt;}
.y1e1{bottom:128.700000pt;}
.y1e2{bottom:128.733333pt;}
.y324{bottom:134.160000pt;}
.yf1{bottom:135.373333pt;}
.y7a{bottom:136.826667pt;}
.y7b{bottom:136.866667pt;}
.y39{bottom:142.573333pt;}
.y13a{bottom:142.973333pt;}
.y136{bottom:143.000000pt;}
.y6f{bottom:154.573333pt;}
.y67{bottom:154.599982pt;}
.y323{bottom:155.373333pt;}
.yf0{bottom:156.573333pt;}
.y282{bottom:160.826667pt;}
.y280{bottom:160.866649pt;}
.y38{bottom:163.640000pt;}
.y2f2{bottom:168.973333pt;}
.y2e3{bottom:168.999982pt;}
.y322{bottom:176.440000pt;}
.yef{bottom:177.773333pt;}
.y37{bottom:184.840000pt;}
.y1e0{bottom:192.173333pt;}
.y135{bottom:196.706667pt;}
.y321{bottom:197.640000pt;}
.yee{bottom:198.840000pt;}
.y36{bottom:206.040000pt;}
.y1df{bottom:213.226667pt;}
.y27f{bottom:213.373333pt;}
.y320{bottom:218.840000pt;}
.yed{bottom:220.040000pt;}
.y66{bottom:220.440000pt;}
.y133{bottom:226.306667pt;}
.y134{bottom:226.333333pt;}
.y35{bottom:227.106667pt;}
.y27e{bottom:231.106667pt;}
.y26d{bottom:231.133333pt;}
.y2e2{bottom:233.640000pt;}
.y1db{bottom:234.440000pt;}
.y1dc{bottom:234.466649pt;}
.y31f{bottom:240.040000pt;}
.yec{bottom:241.240000pt;}
.y65{bottom:241.506667pt;}
.y58{bottom:241.533315pt;}
.y177{bottom:246.840000pt;}
.y34{bottom:248.306667pt;}
.y130{bottom:252.173333pt;}
.y131{bottom:252.200000pt;}
.y2e1{bottom:254.706667pt;}
.y31e{bottom:261.106667pt;}
.yeb{bottom:262.306667pt;}
.y176{bottom:267.906667pt;}
.y173{bottom:267.933315pt;}
.y33{bottom:269.506667pt;}
.y1da{bottom:272.040000pt;}
.y1d1{bottom:272.066667pt;}
.y26c{bottom:273.773333pt;}
.y259{bottom:273.800000pt;}
.y2e0{bottom:275.893333pt;}
.y12f{bottom:278.040000pt;}
.y31d{bottom:282.293333pt;}
.yea{bottom:283.506667pt;}
.y32{bottom:290.560000pt;}
.y12e{bottom:295.640000pt;}
.y12c{bottom:295.666667pt;}
.y2df{bottom:297.106667pt;}
.y172{bottom:299.373333pt;}
.y57{bottom:301.506667pt;}
.y52{bottom:301.533333pt;}
.y31c{bottom:303.506667pt;}
.ye9{bottom:304.706667pt;}
.y31{bottom:311.773333pt;}
.y2de{bottom:318.173333pt;}
.y258{bottom:318.840000pt;}
.y171{bottom:320.560000pt;}
.y31b{bottom:324.573333pt;}
.ye8{bottom:325.773333pt;}
.y30{bottom:332.960000pt;}
.y2dd{bottom:339.400000pt;}
.y257{bottom:340.066667pt;}
.y170{bottom:341.666667pt;}
.y31a{bottom:345.800000pt;}
.ye7{bottom:347.000000pt;}
.y1d0{bottom:348.466667pt;}
.y2f{bottom:354.066667pt;}
.y2d7{bottom:360.599964pt;}
.y2dc{bottom:360.600000pt;}
.y256{bottom:361.133333pt;}
.y16f{bottom:362.866667pt;}
.yd3{bottom:364.733297pt;}
.ye6{bottom:364.733333pt;}
.y12b{bottom:365.400000pt;}
.y319{bottom:367.000000pt;}
.y51{bottom:367.400000pt;}
.y1cf{bottom:369.666667pt;}
.y2e{bottom:375.266667pt;}
.y255{bottom:382.333333pt;}
.y16e{bottom:384.066667pt;}
.y127{bottom:386.466630pt;}
.y126{bottom:386.466667pt;}
.y318{bottom:388.066667pt;}
.y50{bottom:388.600000pt;}
.y1c8{bottom:390.733297pt;}
.y1c7{bottom:390.733333pt;}
.y2d{bottom:396.466667pt;}
.y254{bottom:403.533333pt;}
.y16d{bottom:405.133333pt;}
.y317{bottom:409.266667pt;}
.y4e{bottom:409.666630pt;}
.y4d{bottom:409.666667pt;}
.y2c{bottom:417.533333pt;}
.ycb{bottom:419.533333pt;}
.y11f{bottom:420.466630pt;}
.y11e{bottom:420.466667pt;}
.y2d6{bottom:423.933333pt;}
.y253{bottom:424.600000pt;}
.y16c{bottom:426.333333pt;}
.y316{bottom:430.466667pt;}
.y4c{bottom:430.866667pt;}
.y2b{bottom:438.733333pt;}
.y2cd{bottom:441.666630pt;}
.y2d5{bottom:441.666667pt;}
.y23b{bottom:445.799964pt;}
.y23a{bottom:445.800000pt;}
.y16b{bottom:447.533333pt;}
.y49{bottom:448.466630pt;}
.y4b{bottom:448.466667pt;}
.y315{bottom:451.533333pt;}
.y1c6{bottom:453.000000pt;}
.y2a{bottom:459.933333pt;}
.y168{bottom:468.599964pt;}
.y167{bottom:468.600000pt;}
.y314{bottom:472.733333pt;}
.y1a7{bottom:474.199964pt;}
.y1c5{bottom:474.200000pt;}
.y112{bottom:478.999964pt;}
.y11d{bottom:479.000000pt;}
.yba{bottom:480.733297pt;}
.yca{bottom:480.733333pt;}
.y29{bottom:481.133333pt;}
.y48{bottom:482.466667pt;}
.y313{bottom:493.933333pt;}
.y28{bottom:502.200000pt;}
.y166{bottom:502.600000pt;}
.y46{bottom:503.666630pt;}
.y45{bottom:503.666667pt;}
.y2cc{bottom:505.133333pt;}
.y312{bottom:515.000000pt;}
.y27{bottom:523.400000pt;}
.y165{bottom:523.666667pt;}
.y2c7{bottom:526.199964pt;}
.y2c6{bottom:526.200000pt;}
.y3c{bottom:530.733297pt;}
.y44{bottom:530.733333pt;}
.y311{bottom:536.200000pt;}
.y21f{bottom:543.133297pt;}
.y239{bottom:543.133333pt;}
.yb9{bottom:544.066667pt;}
.y26{bottom:544.600000pt;}
.y111{bottom:544.866667pt;}
.y1a6{bottom:549.933333pt;}
.y310{bottom:557.400000pt;}
.yb8{bottom:565.266667pt;}
.y25{bottom:565.666667pt;}
.y110{bottom:565.933333pt;}
.y15f{bottom:566.066630pt;}
.y164{bottom:566.066667pt;}
.y1a5{bottom:571.000000pt;}
.y30f{bottom:578.600000pt;}
.y2bb{bottom:580.066630pt;}
.y2c5{bottom:580.066667pt;}
.yb7{bottom:586.466667pt;}
.y24{bottom:586.866667pt;}
.y107{bottom:587.133333pt;}
.y1a4{bottom:592.200000pt;}
.y30e{bottom:599.666667pt;}
.yb6{bottom:607.533333pt;}
.y23{bottom:608.066667pt;}
.y194{bottom:609.933261pt;}
.y1a3{bottom:609.933333pt;}
.y21e{bottom:613.933333pt;}
.y30d{bottom:620.866667pt;}
.y15e{bottom:624.600000pt;}
.yb5{bottom:628.733333pt;}
.y22{bottom:629.133333pt;}
.y219{bottom:635.133333pt;}
.y30c{bottom:642.066667pt;}
.y2ba{bottom:642.333333pt;}
.y15d{bottom:645.666667pt;}
.ya7{bottom:649.933261pt;}
.yae{bottom:649.933333pt;}
.y21{bottom:650.333333pt;}
.y106{bottom:656.773333pt;}
.y30b{bottom:659.706667pt;}
.y2b1{bottom:660.066594pt;}
.y2b9{bottom:660.106667pt;}
.y157{bottom:666.866594pt;}
.y156{bottom:666.906667pt;}
.y191{bottom:667.133333pt;}
.y193{bottom:667.173333pt;}
.y20{bottom:671.573333pt;}
.y103{bottom:677.933261pt;}
.y102{bottom:677.973333pt;}
.y218{bottom:681.306667pt;}
.y1f{bottom:700.640000pt;}
.y190{bottom:701.173333pt;}
.y20e{bottom:702.466667pt;}
.y217{bottom:702.506667pt;}
.y101{bottom:705.173333pt;}
.ya6{bottom:708.506667pt;}
.y1e{bottom:715.573333pt;}
.y152{bottom:720.466667pt;}
.y155{bottom:720.506667pt;}
.y180{bottom:722.199928pt;}
.y18f{bottom:722.240000pt;}
.y2b0{bottom:723.440000pt;}
.y100{bottom:726.240000pt;}
.ya5{bottom:729.573333pt;}
.y2ab{bottom:741.133333pt;}
.y2af{bottom:741.173333pt;}
.y9f{bottom:747.266594pt;}
.ya2{bottom:747.306667pt;}
.yff{bottom:747.440000pt;}
.y1d{bottom:752.373333pt;}
.y151{bottom:754.506667pt;}
.yfe{bottom:768.640000pt;}
.y15{bottom:770.773333pt;}
.y20d{bottom:772.106667pt;}
.y150{bottom:775.573333pt;}
.y17c{bottom:779.399928pt;}
.y17e{bottom:779.440000pt;}
.y9e{bottom:782.506667pt;}
.y28b{bottom:783.933261pt;}
.yfd{bottom:789.706667pt;}
.y20c{bottom:793.306667pt;}
.y14f{bottom:796.773333pt;}
.y9d{bottom:803.706667pt;}
.yfc{bottom:810.906667pt;}
.y17b{bottom:813.440000pt;}
.y20b{bottom:814.506667pt;}
.y14e{bottom:817.973333pt;}
.y9a{bottom:824.733261pt;}
.y99{bottom:824.773333pt;}
.yfb{bottom:832.106667pt;}
.y17a{bottom:834.640000pt;}
.y1f8{bottom:835.666594pt;}
.y20a{bottom:835.706667pt;}
.y14d{bottom:839.040000pt;}
.yfa{bottom:853.306667pt;}
.y179{bottom:855.706667pt;}
.y98{bottom:859.973333pt;}
.y14c{bottom:860.240000pt;}
.y178{bottom:873.440000pt;}
.yf9{bottom:874.373333pt;}
.y97{bottom:881.173333pt;}
.y14b{bottom:881.440000pt;}
.yf8{bottom:895.573333pt;}
.y92{bottom:902.199928pt;}
.y95{bottom:902.240000pt;}
.y14a{bottom:902.506667pt;}
.y14{bottom:902.773333pt;}
.y28a{bottom:906.506667pt;}
.y1f7{bottom:909.573333pt;}
.yf7{bottom:916.773333pt;}
.y30a{bottom:917.973333pt;}
.y13{bottom:919.840000pt;}
.y149{bottom:923.706667pt;}
.y287{bottom:927.533261pt;}
.y286{bottom:927.573333pt;}
.y1f6{bottom:930.640000pt;}
.y88{bottom:931.266594pt;}
.y91{bottom:931.306667pt;}
.yf6{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y309{bottom:939.173333pt;}
.y145{bottom:944.866594pt;}
.y148{bottom:944.906667pt;}
.y1f4{bottom:951.799928pt;}
.y1f3{bottom:951.840000pt;}
.y11{bottom:956.640000pt;}
.yf5{bottom:959.040000pt;}
.y2f3{bottom:960.199928pt;}
.y308{bottom:960.240000pt;}
.y10{bottom:975.066667pt;}
.y1ea{bottom:978.999928pt;}
.y1e9{bottom:979.066667pt;}
.yf4{bottom:980.266667pt;}
.y144{bottom:983.733333pt;}
.y7e{bottom:986.333261pt;}
.y87{bottom:986.400000pt;}
.yf{bottom:993.466667pt;}
.yf3{bottom:1001.333333pt;}
.y141{bottom:1004.866594pt;}
.y140{bottom:1004.933333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h2a{height:13.600367pt;}
.h1b{height:14.799957pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h6e{height:19.600123pt;}
.h59{height:20.932851pt;}
.h17{height:20.932924pt;}
.h57{height:20.932960pt;}
.hba{height:20.933811pt;}
.h36{height:22.799717pt;}
.h3f{height:23.466476pt;}
.h89{height:25.199625pt;}
.had{height:25.199975pt;}
.hf4{height:25.199993pt;}
.h8d{height:25.200047pt;}
.hf5{height:25.200737pt;}
.he6{height:26.593855pt;}
.hf1{height:27.416338pt;}
.h7e{height:27.733007pt;}
.h88{height:27.733044pt;}
.h94{height:27.733412pt;}
.h19{height:27.733448pt;}
.h8c{height:27.733484pt;}
.he3{height:28.163972pt;}
.he1{height:28.177991pt;}
.hb3{height:28.933483pt;}
.h39{height:28.933714pt;}
.hee{height:29.035015pt;}
.hec{height:29.049468pt;}
.haa{height:31.333676pt;}
.h71{height:32.533667pt;}
.h7b{height:32.533739pt;}
.h10{height:36.800000pt;}
.h66{height:36.982209pt;}
.h52{height:38.117258pt;}
.hde{height:38.801128pt;}
.hc8{height:39.290690pt;}
.hcb{height:39.310247pt;}
.he9{height:40.001153pt;}
.hce{height:40.001264pt;}
.h91{height:40.126964pt;}
.h6{height:40.266667pt;}
.hfd{height:41.891683pt;}
.h100{height:41.912535pt;}
.h79{height:42.111824pt;}
.h46{height:42.495580pt;}
.h44{height:42.516733pt;}
.h9c{height:42.781496pt;}
.h3{height:43.200000pt;}
.h118{height:43.981684pt;}
.h11b{height:44.003576pt;}
.h15{height:44.219082pt;}
.h113{height:44.592803pt;}
.hb7{height:44.615000pt;}
.h4d{height:44.622752pt;}
.h4b{height:44.644964pt;}
.he{height:44.875000pt;}
.hc3{height:45.143124pt;}
.hdc{height:45.311410pt;}
.hd9{height:45.333964pt;}
.hf6{height:45.399087pt;}
.he8{height:45.552740pt;}
.ha8{height:45.663960pt;}
.h86{height:46.370361pt;}
.h6c{height:46.863691pt;}
.hf3{height:46.961576pt;}
.hd6{height:46.962853pt;}
.h7{height:47.109375pt;}
.hab{height:47.364885pt;}
.h76{height:47.467360pt;}
.h81{height:47.467432pt;}
.hb0{height:47.672232pt;}
.hc7{height:47.732270pt;}
.hbe{height:47.808401pt;}
.hc1{height:47.832198pt;}
.he4{height:48.087010pt;}
.he2{height:48.242201pt;}
.hdf{height:48.266214pt;}
.ha3{height:48.359987pt;}
.ha6{height:48.384059pt;}
.h50{height:48.532068pt;}
.h74{height:49.034720pt;}
.h7c{height:49.203332pt;}
.hef{height:49.573208pt;}
.h21{height:49.647764pt;}
.h103{height:49.657562pt;}
.h63{height:49.672477pt;}
.h109{height:49.682651pt;}
.h5{height:49.726562pt;}
.hed{height:49.734216pt;}
.hea{height:49.758971pt;}
.h5f{height:49.846109pt;}
.h11{height:49.867453pt;}
.h5d{height:49.870920pt;}
.h97{height:50.448761pt;}
.h27{height:50.722038pt;}
.h105{height:50.747286pt;}
.hfc{height:50.817949pt;}
.h8f{height:51.065504pt;}
.h10d{height:51.067481pt;}
.h2c{height:51.067517pt;}
.h102{height:51.806855pt;}
.h64{height:52.265534pt;}
.h31{height:52.266933pt;}
.h84{height:52.267510pt;}
.h4{height:52.343750pt;}
.h9a{height:55.998579pt;}
.h115{height:55.998866pt;}
.h107{height:56.001038pt;}
.h42{height:57.198877pt;}
.hae{height:57.200359pt;}
.h23{height:57.201048pt;}
.h10e{height:57.201066pt;}
.h104{height:57.201102pt;}
.hc{height:57.578125pt;}
.he0{height:57.936284pt;}
.h9{height:58.351562pt;}
.h111{height:58.398512pt;}
.hb5{height:58.398566pt;}
.h49{height:58.399247pt;}
.h1d{height:59.600388pt;}
.h29{height:59.600406pt;}
.h62{height:59.600424pt;}
.heb{height:59.728113pt;}
.hcf{height:60.719958pt;}
.h5a{height:60.742969pt;}
.hbb{height:60.745755pt;}
.hd1{height:60.750182pt;}
.h40{height:60.769353pt;}
.hd0{height:60.804589pt;}
.h53{height:61.734303pt;}
.h37{height:62.393913pt;}
.h3c{height:62.781250pt;}
.hb{height:62.812500pt;}
.h5b{height:63.465555pt;}
.hc5{height:63.465824pt;}
.hcd{height:63.676594pt;}
.ha{height:64.500000pt;}
.h1c{height:64.518767pt;}
.hd2{height:64.667942pt;}
.h6f{height:64.710846pt;}
.h70{height:64.743056pt;}
.hf7{height:64.808677pt;}
.h92{height:64.956869pt;}
.h2b{height:65.178475pt;}
.h56{height:65.253063pt;}
.h51{height:65.379133pt;}
.h55{height:65.411676pt;}
.hc9{height:67.276389pt;}
.hc6{height:67.436098pt;}
.hca{height:67.469665pt;}
.hbc{height:67.599432pt;}
.hf9{height:67.793003pt;}
.h7a{height:68.036227pt;}
.he5{height:68.280816pt;}
.h93{height:68.791961pt;}
.h90{height:68.826203pt;}
.h8b{height:68.961694pt;}
.h9e{height:69.253982pt;}
.h95{height:69.468042pt;}
.h68{height:69.805244pt;}
.ha1{height:70.131936pt;}
.hf0{height:70.392577pt;}
.h35{height:70.515067pt;}
.h11c{height:71.232264pt;}
.h13{height:71.476292pt;}
.hfe{height:71.557923pt;}
.hfb{height:71.795542pt;}
.hff{height:71.831279pt;}
.h82{height:72.031078pt;}
.h78{height:72.053126pt;}
.h83{height:72.088992pt;}
.hb8{height:72.222027pt;}
.h4e{height:72.247822pt;}
.h8e{height:73.125565pt;}
.h9d{height:73.137455pt;}
.h30{height:73.196325pt;}
.h2{height:73.281250pt;}
.ha0{height:73.342778pt;}
.hda{height:73.366791pt;}
.he7{height:73.462119pt;}
.h67{height:73.650979pt;}
.h6a{height:73.926587pt;}
.h65{height:73.963384pt;}
.h58{height:74.095087pt;}
.h18{height:74.158156pt;}
.h34{height:74.678318pt;}
.h32{height:74.715490pt;}
.h3d{height:74.778774pt;}
.h3a{height:74.927489pt;}
.h101{height:75.210523pt;}
.h119{height:75.307046pt;}
.h116{height:75.437859pt;}
.h11a{height:75.475409pt;}
.h16{height:75.662602pt;}
.h14{height:75.696295pt;}
.h12{height:75.733973pt;}
.hf2{height:75.734125pt;}
.h80{height:75.894643pt;}
.hd5{height:75.920483pt;}
.h6d{height:75.952786pt;}
.h41{height:76.258617pt;}
.h114{height:76.280744pt;}
.h9b{height:76.409644pt;}
.hb9{height:76.486058pt;}
.h4c{height:76.513377pt;}
.hb6{height:76.524129pt;}
.h4a{height:76.551462pt;}
.hdd{height:77.135602pt;}
.hb1{height:77.171024pt;}
.hc4{height:77.325873pt;}
.h2f{height:77.517879pt;}
.h2d{height:77.556464pt;}
.hdb{height:77.698410pt;}
.h4f{height:77.727117pt;}
.h38{height:78.201460pt;}
.ha9{height:78.218014pt;}
.h87{height:79.339463pt;}
.h75{height:79.355956pt;}
.h85{height:79.378955pt;}
.hd7{height:80.231557pt;}
.h10c{height:80.267722pt;}
.h47{height:80.389087pt;}
.hd3{height:80.402873pt;}
.h1f{height:80.408987pt;}
.h6b{height:80.437083pt;}
.h1a{height:80.477121pt;}
.h60{height:80.730225pt;}
.hac{height:81.102280pt;}
.h99{height:81.555827pt;}
.hbf{height:81.612744pt;}
.hb2{height:81.727247pt;}
.haf{height:81.767927pt;}
.hbd{height:81.891238pt;}
.hc0{height:81.932000pt;}
.h25{height:81.987755pt;}
.ha4{height:82.343071pt;}
.ha2{height:82.836052pt;}
.ha5{height:82.877284pt;}
.hb4{height:83.959291pt;}
.h73{height:84.083011pt;}
.h117{height:84.208183pt;}
.h7d{height:84.208314pt;}
.h10a{height:84.573956pt;}
.h22{height:84.732009pt;}
.h10b{height:85.006776pt;}
.h48{height:85.039714pt;}
.h108{height:85.049089pt;}
.h45{height:85.135307pt;}
.h20{height:85.156381pt;}
.h43{height:85.177684pt;}
.h61{height:85.178962pt;}
.h1e{height:85.198769pt;}
.h5e{height:85.496585pt;}
.h5c{height:85.539142pt;}
.h8a{height:85.956300pt;}
.h28{height:86.134120pt;}
.h110{height:86.270784pt;}
.h98{height:86.370931pt;}
.h96{height:86.413923pt;}
.h106{height:86.470811pt;}
.h10f{height:86.757450pt;}
.h26{height:86.828360pt;}
.h24{height:86.871580pt;}
.h112{height:87.385339pt;}
.h77{height:89.862637pt;}
.hd8{height:91.068427pt;}
.h33{height:93.839412pt;}
.h3e{height:93.877455pt;}
.h3b{height:94.025464pt;}
.h7f{height:94.597774pt;}
.hd4{height:96.508332pt;}
.h2e{height:97.285526pt;}
.hfa{height:101.616184pt;}
.h72{height:104.804046pt;}
.h54{height:109.713591pt;}
.hf8{height:116.265693pt;}
.h9f{height:120.895944pt;}
.h69{height:121.153321pt;}
.hcc{height:127.347880pt;}
.hd{height:128.786667pt;}
.hc2{height:154.645439pt;}
.ha7{height:156.429650pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w10{width:13.599807pt;}
.wc{width:16.000515pt;}
.w24{width:19.599765pt;}
.w1d{width:20.933055pt;}
.w29{width:25.200522pt;}
.w46{width:28.932819pt;}
.w28{width:28.933301pt;}
.w25{width:32.666775pt;}
.w37{width:35.067236pt;}
.w22{width:44.932084pt;}
.wa{width:45.599824pt;}
.w3c{width:48.666544pt;}
.w30{width:52.264777pt;}
.w13{width:52.265120pt;}
.w38{width:52.267009pt;}
.w2e{width:57.198449pt;}
.w14{width:57.198861pt;}
.w3a{width:59.600493pt;}
.w2b{width:62.131778pt;}
.w2d{width:63.331761pt;}
.w1e{width:63.467065pt;}
.w3b{width:70.800452pt;}
.w39{width:76.266760pt;}
.w15{width:93.601960pt;}
.w4c{width:98.401212pt;}
.wb{width:98.404022pt;}
.w27{width:102.135792pt;}
.w9{width:102.799362pt;}
.w3f{width:108.403348pt;}
.w19{width:109.603750pt;}
.w45{width:110.802004pt;}
.w31{width:110.803282pt;}
.w32{width:111.998887pt;}
.w21{width:112.003025pt;}
.w17{width:115.604314pt;}
.wf{width:118.134924pt;}
.w35{width:119.338025pt;}
.w18{width:119.463272pt;}
.w4b{width:121.198744pt;}
.w26{width:123.063033pt;}
.w49{width:124.930977pt;}
.w4d{width:127.462983pt;}
.w2f{width:134.803011pt;}
.w33{width:136.003726pt;}
.w6{width:158.533333pt;}
.w2c{width:159.330159pt;}
.w44{width:160.537397pt;}
.w16{width:164.258488pt;}
.w1a{width:169.200022pt;}
.wd{width:179.589051pt;}
.w20{width:179.595469pt;}
.we{width:179.596122pt;}
.w1b{width:179.596147pt;}
.w41{width:185.860036pt;}
.w1c{width:188.269825pt;}
.w12{width:192.004594pt;}
.w4a{width:192.007443pt;}
.w11{width:195.739093pt;}
.w1f{width:198.138000pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w23{width:260.396284pt;}
.w2a{width:263.343462pt;}
.w4{width:264.693333pt;}
.w40{width:294.131765pt;}
.w3e{width:301.467664pt;}
.w3d{width:310.804330pt;}
.w36{width:313.334202pt;}
.w4f{width:319.463331pt;}
.w4e{width:324.260282pt;}
.w34{width:325.473366pt;}
.w48{width:352.403175pt;}
.w47{width:352.661921pt;}
.w42{width:355.476137pt;}
.w43{width:355.743285pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x94{left:0.965549pt;}
.x21{left:2.069536pt;}
.x46{left:3.299786pt;}
.x80{left:4.739253pt;}
.x4{left:6.133333pt;}
.x9b{left:7.536627pt;}
.x53{left:9.923439pt;}
.x9{left:11.053333pt;}
.x105{left:12.091497pt;}
.xaa{left:13.258553pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x84{left:17.191685pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.x3d{left:21.401654pt;}
.x3c{left:22.587448pt;}
.x72{left:24.222312pt;}
.xca{left:25.257301pt;}
.x1f{left:26.545284pt;}
.xb{left:28.533333pt;}
.x64{left:30.324985pt;}
.x38{left:31.372883pt;}
.x24{left:32.744451pt;}
.x4b{left:33.742516pt;}
.xa2{left:36.224455pt;}
.x3{left:37.866655pt;}
.x75{left:38.870959pt;}
.x9f{left:40.958558pt;}
.x5c{left:42.905585pt;}
.x1e{left:44.056162pt;}
.x52{left:44.990169pt;}
.x1d{left:46.205343pt;}
.x6b{left:47.467786pt;}
.x35{left:49.407765pt;}
.x2c{left:50.672873pt;}
.x57{left:51.631949pt;}
.x20{left:53.687891pt;}
.xab{left:54.691198pt;}
.x50{left:56.052517pt;}
.x4f{left:57.673159pt;}
.x4a{left:58.637169pt;}
.x49{left:60.447073pt;}
.x71{left:61.909849pt;}
.x63{left:63.049049pt;}
.x43{left:65.221071pt;}
.xf1{left:66.504009pt;}
.x34{left:67.698232pt;}
.x2b{left:69.445125pt;}
.x60{left:70.383113pt;}
.xa9{left:71.603693pt;}
.x7e{left:72.741689pt;}
.xf0{left:73.884754pt;}
.x74{left:74.899471pt;}
.x37{left:77.944610pt;}
.x2e{left:79.792224pt;}
.x42{left:81.421389pt;}
.x3b{left:83.070630pt;}
.x1a{left:85.066655pt;}
.xbc{left:85.994840pt;}
.x9a{left:86.950191pt;}
.x18{left:89.066667pt;}
.xae{left:90.196818pt;}
.x41{left:91.699843pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x33{left:97.462279pt;}
.xe2{left:98.633671pt;}
.xa8{left:99.574418pt;}
.x5f{left:100.466658pt;}
.x87{left:101.592788pt;}
.x4d{left:103.400000pt;}
.xda{left:104.733333pt;}
.x69{left:106.528284pt;}
.x6{left:108.166667pt;}
.x40{left:109.253849pt;}
.x3a{left:110.563798pt;}
.x2a{left:112.932276pt;}
.xa{left:113.893333pt;}
.x32{left:115.031490pt;}
.x31{left:116.216680pt;}
.xdf{left:118.805863pt;}
.x6a{left:120.476636pt;}
.x81{left:121.611894pt;}
.x2d{left:123.281143pt;}
.x36{left:125.277868pt;}
.xed{left:126.189860pt;}
.x6d{left:127.133324pt;}
.x108{left:128.136936pt;}
.x6e{left:129.041890pt;}
.x59{left:130.004681pt;}
.x76{left:132.208528pt;}
.x67{left:134.044694pt;}
.xec{left:135.050821pt;}
.x10{left:137.759988pt;}
.xe1{left:140.199991pt;}
.x68{left:142.024612pt;}
.xd3{left:143.287175pt;}
.xc1{left:144.520217pt;}
.x66{left:145.483418pt;}
.xa4{left:147.030679pt;}
.x7f{left:148.699670pt;}
.x4e{left:151.569898pt;}
.xf4{left:152.988697pt;}
.x48{left:153.927647pt;}
.x73{left:154.879519pt;}
.xc2{left:158.412567pt;}
.x65{left:160.195505pt;}
.x8e{left:163.715312pt;}
.x7c{left:164.829747pt;}
.x7d{left:166.309337pt;}
.x91{left:167.442430pt;}
.xde{left:168.367562pt;}
.x29{left:170.789050pt;}
.x113{left:171.902314pt;}
.x7b{left:173.047586pt;}
.x104{left:174.618115pt;}
.x70{left:175.988012pt;}
.xef{left:176.944551pt;}
.x8f{left:177.892343pt;}
.x117{left:179.588972pt;}
.x112{left:180.740310pt;}
.xfa{left:181.929672pt;}
.x54{left:183.133333pt;}
.xd7{left:184.069834pt;}
.xea{left:185.907246pt;}
.x8d{left:189.116723pt;}
.x7a{left:190.659046pt;}
.xe7{left:193.069262pt;}
.xb8{left:194.579993pt;}
.xb7{left:196.457393pt;}
.xe5{left:198.379735pt;}
.x5e{left:203.359988pt;}
.xdd{left:204.295294pt;}
.xd8{left:205.409563pt;}
.xb4{left:207.848035pt;}
.xf9{left:210.587526pt;}
.xe9{left:211.889904pt;}
.xa3{left:212.839988pt;}
.xd1{left:215.029019pt;}
.xb5{left:216.494836pt;}
.xc0{left:217.800922pt;}
.x61{left:219.906655pt;}
.x90{left:220.866246pt;}
.x62{left:223.933315pt;}
.xf5{left:225.393558pt;}
.xd2{left:226.285547pt;}
.x9d{left:228.733315pt;}
.x106{left:231.497080pt;}
.x8c{left:233.128625pt;}
.xb6{left:234.221681pt;}
.x56{left:237.533315pt;}
.xe8{left:239.368040pt;}
.x55{left:240.293322pt;}
.xd5{left:241.317764pt;}
.xc4{left:242.461799pt;}
.xa0{left:243.512316pt;}
.x8b{left:244.404994pt;}
.xf8{left:246.239450pt;}
.xe6{left:248.076399pt;}
.xcc{left:249.266649pt;}
.xd6{left:252.910981pt;}
.xee{left:255.360497pt;}
.x9e{left:257.639988pt;}
.x5a{left:258.573322pt;}
.xdc{left:260.410959pt;}
.x5b{left:262.599982pt;}
.xd4{left:265.412898pt;}
.xdb{left:267.607474pt;}
.xff{left:268.516243pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x102{left:277.774873pt;}
.x100{left:280.722219pt;}
.xd0{left:282.154479pt;}
.xbe{left:283.982489pt;}
.xc3{left:286.616835pt;}
.x116{left:287.510528pt;}
.x103{left:289.934555pt;}
.xa5{left:292.573322pt;}
.x51{left:295.373322pt;}
.x115{left:296.274910pt;}
.xbf{left:297.375164pt;}
.xf7{left:299.727819pt;}
.x111{left:301.093019pt;}
.x101{left:302.325715pt;}
.x6f{left:306.693322pt;}
.xcd{left:308.839988pt;}
.x110{left:311.490662pt;}
.xce{left:312.733297pt;}
.xb3{left:315.039430pt;}
.xfe{left:316.213705pt;}
.xfb{left:319.506655pt;}
.x6c{left:320.839988pt;}
.xe3{left:326.039988pt;}
.xeb{left:327.153613pt;}
.x58{left:331.106655pt;}
.x4c{left:334.173322pt;}
.xe0{left:336.466655pt;}
.xd9{left:339.399988pt;}
.x107{left:341.723311pt;}
.xf6{left:343.296567pt;}
.xe4{left:344.204097pt;}
.xa1{left:348.466655pt;}
.xf3{left:351.234364pt;}
.x118{left:357.399988pt;}
.x5d{left:378.199988pt;}
.xcf{left:383.533322pt;}
.x119{left:387.933322pt;}
.xf2{left:393.399988pt;}
.x1b{left:406.466655pt;}
.xb2{left:416.466630pt;}
.x22{left:453.666655pt;}
.x97{left:463.399964pt;}
.x13{left:466.999988pt;}
.x8a{left:474.600000pt;}
.x30{left:476.066630pt;}
.x79{left:486.466630pt;}
.x83{left:495.666630pt;}
.x93{left:502.333297pt;}
.x25{left:504.866655pt;}
.xa7{left:506.466630pt;}
.x86{left:511.133297pt;}
.xb0{left:513.266667pt;}
.x28{left:514.999964pt;}
.xbb{left:516.066630pt;}
.x95{left:521.933322pt;}
.x1c{left:532.066630pt;}
.xfc{left:537.266667pt;}
.xc6{left:548.199988pt;}
.x10e{left:552.066655pt;}
.xc{left:555.933333pt;}
.x12{left:556.999988pt;}
.x11{left:558.333322pt;}
.xfd{left:566.226655pt;}
.xba{left:567.973322pt;}
.x3e{left:571.839988pt;}
.x89{left:576.226655pt;}
.x10a{left:578.639988pt;}
.x3f{left:579.799964pt;}
.x10f{left:581.173322pt;}
.x45{left:582.600000pt;}
.x98{left:586.506655pt;}
.x14{left:590.773322pt;}
.x47{left:596.226655pt;}
.xad{left:597.306655pt;}
.x77{left:600.226655pt;}
.x15{left:602.373322pt;}
.x26{left:605.266667pt;}
.x99{left:609.533261pt;}
.x10c{left:610.999928pt;}
.xc7{left:613.399928pt;}
.xac{left:617.293322pt;}
.x27{left:621.306655pt;}
.x88{left:623.173322pt;}
.xaf{left:626.893322pt;}
.xf{left:634.360000pt;}
.xbd{left:635.439988pt;}
.x10b{left:645.706655pt;}
.xb1{left:649.306655pt;}
.x39{left:655.693322pt;}
.xc8{left:665.693322pt;}
.xc9{left:669.666594pt;}
.x85{left:675.306655pt;}
.xa6{left:682.066594pt;}
.x82{left:684.626655pt;}
.x78{left:692.599928pt;}
.x2f{left:694.639988pt;}
.x44{left:697.959988pt;}
.x23{left:710.466594pt;}
.x9c{left:711.706655pt;}
.xc5{left:720.626655pt;}
.x96{left:723.399928pt;}
.x2{left:728.106655pt;}
.x114{left:730.773322pt;}
.x10d{left:732.226655pt;}
.x92{left:735.039988pt;}
.xb9{left:741.959988pt;}
.xcb{left:745.959988pt;}
.x16{left:756.106655pt;}
.x109{left:758.893322pt;}
}




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