
    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_470dc0737c588efe86409a0e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d1dca0b32fc49d2640494cf2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b2afeb46b15c63ad15169a4d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2db4940327b1d722ddd7170f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a314fc47cbce38793495c5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7859b6a312973f72dddefb7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_41cb38358a524b9a0db4267b.woff2')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_27e8de36748c0aa535b9b3cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.845000;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_f772a1231d1e65f253c60ca2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_9dda6b5e3b25a0f9db606b2b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55{transform:matrix(0.000000,-0.249273,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249273,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249273,0.250000,0.000000,0,0);}
.m57{transform:matrix(0.000000,-0.249449,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249449,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249449,0.250000,0.000000,0,0);}
.m48{transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.161064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161064,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.187724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187724,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.189168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189168,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.189346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189346,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.189677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189677,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.190257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190257,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.190846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190846,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.191074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191074,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.192468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192468,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.193495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193495,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.194197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194197,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.194518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194518,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.194579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194579,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.195071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195071,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.195919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195919,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.196014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196014,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.196199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196199,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.196541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196541,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.196731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196731,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.196756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196756,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.197074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197074,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.197142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197142,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.197541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197541,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.197753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197753,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.197989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197989,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.198133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198133,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.201669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201669,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.202131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202131,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.237897,0.000000,-0.079291,0.237093,0,0);-ms-transform:matrix(0.237897,0.000000,-0.079291,0.237093,0,0);-webkit-transform:matrix(0.237897,0.000000,-0.079291,0.237093,0,0);}
.m2d{transform:matrix(0.244925,0.000000,-0.081634,0.236296,0,0);-ms-transform:matrix(0.244925,0.000000,-0.081634,0.236296,0,0);-webkit-transform:matrix(0.244925,0.000000,-0.081634,0.236296,0,0);}
.m10{transform:matrix(0.246081,0.000000,-0.082019,0.236163,0,0);-ms-transform:matrix(0.246081,0.000000,-0.082019,0.236163,0,0);-webkit-transform:matrix(0.246081,0.000000,-0.082019,0.236163,0,0);}
.m4{transform:matrix(0.246350,0.000000,-0.082108,0.236132,0,0);-ms-transform:matrix(0.246350,0.000000,-0.082108,0.236132,0,0);-webkit-transform:matrix(0.246350,0.000000,-0.082108,0.236132,0,0);}
.m4b{transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246973,0.000000,-0.082316,0.236059,0,0);-ms-transform:matrix(0.246973,0.000000,-0.082316,0.236059,0,0);-webkit-transform:matrix(0.246973,0.000000,-0.082316,0.236059,0,0);}
.m44{transform:matrix(0.247190,0.000000,-0.082389,0.236034,0,0);-ms-transform:matrix(0.247190,0.000000,-0.082389,0.236034,0,0);-webkit-transform:matrix(0.247190,0.000000,-0.082389,0.236034,0,0);}
.m50{transform:matrix(0.247662,0.000000,-0.082546,0.235979,0,0);-ms-transform:matrix(0.247662,0.000000,-0.082546,0.235979,0,0);-webkit-transform:matrix(0.247662,0.000000,-0.082546,0.235979,0,0);}
.m24{transform:matrix(0.247769,0.000000,-0.082581,0.235967,0,0);-ms-transform:matrix(0.247769,0.000000,-0.082581,0.235967,0,0);-webkit-transform:matrix(0.247769,0.000000,-0.082581,0.235967,0,0);}
.m30{transform:matrix(0.247776,0.000000,-0.082584,0.235966,0,0);-ms-transform:matrix(0.247776,0.000000,-0.082584,0.235966,0,0);-webkit-transform:matrix(0.247776,0.000000,-0.082584,0.235966,0,0);}
.m2a{transform:matrix(0.247977,0.000000,-0.082651,0.235943,0,0);-ms-transform:matrix(0.247977,0.000000,-0.082651,0.235943,0,0);-webkit-transform:matrix(0.247977,0.000000,-0.082651,0.235943,0,0);}
.m7{transform:matrix(0.248362,0.000000,-0.082779,0.235897,0,0);-ms-transform:matrix(0.248362,0.000000,-0.082779,0.235897,0,0);-webkit-transform:matrix(0.248362,0.000000,-0.082779,0.235897,0,0);}
.m1c{transform:matrix(0.248961,0.000000,-0.082979,0.235827,0,0);-ms-transform:matrix(0.248961,0.000000,-0.082979,0.235827,0,0);-webkit-transform:matrix(0.248961,0.000000,-0.082979,0.235827,0,0);}
.m20{transform:matrix(0.249038,0.000000,-0.083004,0.235818,0,0);-ms-transform:matrix(0.249038,0.000000,-0.083004,0.235818,0,0);-webkit-transform:matrix(0.249038,0.000000,-0.083004,0.235818,0,0);}
.m14{transform:matrix(0.249724,0.000000,-0.083233,0.235738,0,0);-ms-transform:matrix(0.249724,0.000000,-0.083233,0.235738,0,0);-webkit-transform:matrix(0.249724,0.000000,-0.083233,0.235738,0,0);}
.m18{transform:matrix(0.249989,0.000000,-0.083321,0.235707,0,0);-ms-transform:matrix(0.249989,0.000000,-0.083321,0.235707,0,0);-webkit-transform:matrix(0.249989,0.000000,-0.083321,0.235707,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);}
.m4d{transform:matrix(0.250045,0.000000,-0.083340,0.235700,0,0);-ms-transform:matrix(0.250045,0.000000,-0.083340,0.235700,0,0);-webkit-transform:matrix(0.250045,0.000000,-0.083340,0.235700,0,0);}
.m37{transform:matrix(0.250151,0.000000,-0.083375,0.235687,0,0);-ms-transform:matrix(0.250151,0.000000,-0.083375,0.235687,0,0);-webkit-transform:matrix(0.250151,0.000000,-0.083375,0.235687,0,0);}
.m56{transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254621,0.000000,-0.084865,0.235155,0,0);-ms-transform:matrix(0.254621,0.000000,-0.084865,0.235155,0,0);-webkit-transform:matrix(0.254621,0.000000,-0.084865,0.235155,0,0);}
.m3c{transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.259898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259898,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.260582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260582,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.260676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260676,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.261011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261011,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.261558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261558,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.261816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261816,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.261855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261855,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.262377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262377,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.262512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262512,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.262751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262751,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.263498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263498,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.263922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263922,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.264014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264014,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.264332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264332,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.264548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264548,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.264832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264832,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.265148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265148,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.265216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265216,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.265342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265342,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.269482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269482,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.270076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270076,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-77.267719px;}
.vf{vertical-align:-74.619229px;}
.v10{vertical-align:-58.661255px;}
.va{vertical-align:-56.312744px;}
.vc{vertical-align:-50.245206px;}
.v3{vertical-align:-37.963717px;}
.v9{vertical-align:-32.241215px;}
.v15{vertical-align:-27.360000px;}
.v2{vertical-align:-17.820151px;}
.v4{vertical-align:-15.916165px;}
.v1{vertical-align:-5.760000px;}
.v13{vertical-align:-4.348243px;}
.v16{vertical-align:-2.719076px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:5.760000px;}
.v6{vertical-align:17.792442px;}
.vb{vertical-align:27.360000px;}
.v14{vertical-align:32.318979px;}
.v17{vertical-align:35.348039px;}
.v7{vertical-align:37.601792px;}
.v5{vertical-align:46.730923px;}
.v11{vertical-align:72.606142px;}
.vd{vertical-align:76.451210px;}
.v8{vertical-align:107.441644px;}
.ls4d{letter-spacing:-2.177472px;}
.ls6c{letter-spacing:-1.656000px;}
.ls54{letter-spacing:-1.243526px;}
.ls6a{letter-spacing:-1.183654px;}
.ls22{letter-spacing:-1.137571px;}
.ls6b{letter-spacing:-1.028162px;}
.ls8{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.743273px;}
.ls24{letter-spacing:-0.720000px;}
.ls4a{letter-spacing:-0.711467px;}
.ls1b{letter-spacing:-0.653150px;}
.ls1c{letter-spacing:-0.604310px;}
.ls53{letter-spacing:-0.376215px;}
.ls2a{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.328495px;}
.ls3{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.045360px;}
.ls55{letter-spacing:-0.045318px;}
.ls0{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.033898px;}
.lsf{letter-spacing:0.048000px;}
.ls5e{letter-spacing:0.053280px;}
.ls51{letter-spacing:0.070150px;}
.ls9{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181440px;}
.ls4e{letter-spacing:0.194703px;}
.ls1{letter-spacing:0.206400px;}
.ls2d{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.252000px;}
.ls52{letter-spacing:0.259469px;}
.ls26{letter-spacing:0.269280px;}
.ls10{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.432000px;}
.ls46{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.720000px;}
.ls6e{letter-spacing:0.792000px;}
.ls3b{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.900000px;}
.ls60{letter-spacing:0.926965px;}
.ls5f{letter-spacing:0.941847px;}
.ls3c{letter-spacing:0.984000px;}
.ls2c{letter-spacing:0.989280px;}
.ls6d{letter-spacing:1.152000px;}
.ls58{letter-spacing:1.152654px;}
.ls56{letter-spacing:1.181950px;}
.ls65{letter-spacing:1.269305px;}
.ls5a{letter-spacing:1.269838px;}
.ls5d{letter-spacing:1.328430px;}
.ls63{letter-spacing:1.388266px;}
.ls61{letter-spacing:1.418006px;}
.ls68{letter-spacing:1.447746px;}
.ls2f{letter-spacing:1.448519px;}
.ls34{letter-spacing:1.454976px;}
.ls2e{letter-spacing:1.936729px;}
.ls3a{letter-spacing:2.928000px;}
.ls20{letter-spacing:3.751686px;}
.ls23{letter-spacing:4.685271px;}
.ls1a{letter-spacing:4.735340px;}
.ls1e{letter-spacing:4.857614px;}
.ls1f{letter-spacing:5.010490px;}
.ls17{letter-spacing:5.463013px;}
.ls50{letter-spacing:9.632973px;}
.ls4c{letter-spacing:21.868077px;}
.ls27{letter-spacing:73.236445px;}
.ls35{letter-spacing:115.375348px;}
.ls39{letter-spacing:117.768554px;}
.ls28{letter-spacing:139.949965px;}
.ls62{letter-spacing:142.449501px;}
.ls64{letter-spacing:142.508981px;}
.ls66{letter-spacing:142.568461px;}
.ls67{letter-spacing:142.627941px;}
.ls69{letter-spacing:158.329191px;}
.ls48{letter-spacing:167.720532px;}
.ls37{letter-spacing:184.113236px;}
.ls38{letter-spacing:191.225621px;}
.ls5c{letter-spacing:201.681747px;}
.ls5b{letter-spacing:201.740339px;}
.ls57{letter-spacing:201.798931px;}
.ls59{letter-spacing:201.857524px;}
.ls18{letter-spacing:292.436202px;}
.ls21{letter-spacing:340.790218px;}
.ls49{letter-spacing:343.442561px;}
.ls47{letter-spacing:395.473528px;}
.ls13{letter-spacing:518.707519px;}
.ls32{letter-spacing:687.847308px;}
.ls2b{letter-spacing:754.111427px;}
.ls45{letter-spacing:820.920000px;}
.ls36{letter-spacing:860.402114px;}
.ls40{letter-spacing:922.440000px;}
.ls33{letter-spacing:1000.695601px;}
.ls30{letter-spacing:1027.859926px;}
.ls31{letter-spacing:1076.814314px;}
.ls43{letter-spacing:1077.960000px;}
.ls42{letter-spacing:1113.960000px;}
.ls41{letter-spacing:1329.960000px;}
.ls44{letter-spacing:1366.140000px;}
.ls3f{letter-spacing:1430.220000px;}
.ls3d{letter-spacing:1566.300000px;}
.ls3e{letter-spacing:1598.700000px;}
.ls12{letter-spacing:1609.270826px;}
.ls11{letter-spacing:1687.380818px;}
.ls4b{letter-spacing:1837.357171px;}
.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;}
}
.wsaf{word-spacing:-171.861052px;}
.ws18{word-spacing:-41.979021px;}
.ws5c{word-spacing:-41.902768px;}
.ws3e{word-spacing:-41.716227px;}
.ws4a{word-spacing:-41.614455px;}
.ws38{word-spacing:-41.570786px;}
.ws30{word-spacing:-41.565291px;}
.wse{word-spacing:-41.510100px;}
.ws92{word-spacing:-41.411834px;}
.ws1e{word-spacing:-39.998223px;}
.ws80{word-spacing:-39.735890px;}
.ws9d{word-spacing:-39.610980px;}
.ws71{word-spacing:-39.576194px;}
.ws77{word-spacing:-39.522285px;}
.ws50{word-spacing:-39.351316px;}
.ws87{word-spacing:-39.287235px;}
.wsf{word-spacing:-39.195400px;}
.ws2f{word-spacing:-39.194028px;}
.ws13{word-spacing:-39.134454px;}
.ws57{word-spacing:-23.244684px;}
.ws40{word-spacing:-22.948546px;}
.ws34{word-spacing:-21.211604px;}
.ws7b{word-spacing:-19.900789px;}
.ws8d{word-spacing:-19.630300px;}
.ws7f{word-spacing:-19.543187px;}
.wsb1{word-spacing:-19.152000px;}
.wsb3{word-spacing:-18.792000px;}
.ws5f{word-spacing:-18.720000px;}
.ws98{word-spacing:-18.504000px;}
.ws6e{word-spacing:-18.432000px;}
.wsb4{word-spacing:-18.288000px;}
.ws79{word-spacing:-18.216000px;}
.wsa0{word-spacing:-18.181026px;}
.ws8c{word-spacing:-18.175324px;}
.ws3{word-spacing:-18.144000px;}
.ws7c{word-spacing:-18.094667px;}
.wsa{word-spacing:-18.072000px;}
.ws8f{word-spacing:-18.063878px;}
.ws73{word-spacing:-18.021946px;}
.ws5b{word-spacing:-18.008461px;}
.ws4{word-spacing:-18.000000px;}
.ws76{word-spacing:-17.997397px;}
.ws7{word-spacing:-17.928000px;}
.ws3d{word-spacing:-17.919543px;}
.ws8a{word-spacing:-17.890362px;}
.ws27{word-spacing:-17.884228px;}
.ws6{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.848543px;}
.ws35{word-spacing:-17.847918px;}
.ws10{word-spacing:-17.820789px;}
.ws6f{word-spacing:-17.784000px;}
.ws62{word-spacing:-17.783479px;}
.ws5{word-spacing:-17.712000px;}
.ws5d{word-spacing:-17.658207px;}
.ws6d{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.064000px;}
.wsa8{word-spacing:-16.359794px;}
.wsb0{word-spacing:-16.344000px;}
.wsac{word-spacing:-16.204760px;}
.wsa1{word-spacing:-16.003554px;}
.ws26{word-spacing:-15.880528px;}
.ws15{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.146400px;}
.wsa5{word-spacing:-15.109905px;}
.ws0{word-spacing:-15.000000px;}
.wsab{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.910354px;}
.ws53{word-spacing:-14.336697px;}
.wsa3{word-spacing:-13.726564px;}
.wsa2{word-spacing:-13.531861px;}
.wsb{word-spacing:-12.060000px;}
.ws14{word-spacing:-12.014640px;}
.ws16{word-spacing:-11.900607px;}
.ws67{word-spacing:-11.349691px;}
.ws5a{word-spacing:-11.137086px;}
.ws58{word-spacing:-11.113586px;}
.ws32{word-spacing:-11.113456px;}
.ws3b{word-spacing:-11.097210px;}
.ws39{word-spacing:-11.079138px;}
.ws9b{word-spacing:-10.943376px;}
.ws2b{word-spacing:-10.910400px;}
.ws29{word-spacing:-10.730773px;}
.ws4c{word-spacing:-10.688633px;}
.ws7e{word-spacing:-10.530736px;}
.ws90{word-spacing:-10.528328px;}
.ws75{word-spacing:-10.510145px;}
.ws44{word-spacing:-10.489717px;}
.ws42{word-spacing:-10.474042px;}
.ws7a{word-spacing:-10.464016px;}
.ws4d{word-spacing:-10.450157px;}
.ws45{word-spacing:-10.424264px;}
.ws2c{word-spacing:-10.422852px;}
.ws89{word-spacing:-10.417728px;}
.wsc{word-spacing:-10.390750px;}
.ws6c{word-spacing:-10.364901px;}
.ws65{word-spacing:-10.336133px;}
.ws5e{word-spacing:-10.152651px;}
.ws25{word-spacing:-10.089019px;}
.ws60{word-spacing:-10.053218px;}
.ws3c{word-spacing:-9.845848px;}
.ws21{word-spacing:-9.739706px;}
.ws22{word-spacing:-9.731737px;}
.ws46{word-spacing:-9.680990px;}
.ws52{word-spacing:-9.447440px;}
.ws51{word-spacing:-9.122835px;}
.ws9e{word-spacing:-6.977465px;}
.ws31{word-spacing:-6.291277px;}
.ws3a{word-spacing:-6.270471px;}
.ws59{word-spacing:-6.217324px;}
.ws28{word-spacing:-6.097057px;}
.ws33{word-spacing:-6.096248px;}
.ws2a{word-spacing:-5.893936px;}
.ws4b{word-spacing:-5.880488px;}
.ws43{word-spacing:-5.873227px;}
.ws41{word-spacing:-5.865917px;}
.ws20{word-spacing:-4.946284px;}
.ws1f{word-spacing:-4.942981px;}
.ws8b{word-spacing:-3.920918px;}
.ws6a{word-spacing:-3.822666px;}
.ws93{word-spacing:-3.407420px;}
.ws82{word-spacing:-3.237590px;}
.ws24{word-spacing:-2.152628px;}
.ws23{word-spacing:-2.072932px;}
.ws66{word-spacing:-1.466897px;}
.ws1{word-spacing:0.000000px;}
.ws88{word-spacing:3.328262px;}
.ws63{word-spacing:5.754956px;}
.ws99{word-spacing:10.412500px;}
.ws1b{word-spacing:17.233055px;}
.ws17{word-spacing:20.845823px;}
.ws9a{word-spacing:46.258701px;}
.wsa9{word-spacing:49.117055px;}
.ws61{word-spacing:70.414354px;}
.wsad{word-spacing:81.262911px;}
.ws3f{word-spacing:90.797438px;}
.wsa7{word-spacing:102.110648px;}
.wsae{word-spacing:110.335597px;}
.wsa6{word-spacing:117.636379px;}
.ws81{word-spacing:119.129094px;}
.ws1d{word-spacing:134.553496px;}
.wsaa{word-spacing:138.725510px;}
.ws68{word-spacing:140.449865px;}
.ws72{word-spacing:148.923424px;}
.wsb2{word-spacing:169.206047px;}
.wsa4{word-spacing:175.156431px;}
.ws91{word-spacing:219.398130px;}
.ws69{word-spacing:225.361536px;}
.ws1a{word-spacing:228.781859px;}
.ws19{word-spacing:231.476176px;}
.ws37{word-spacing:237.484756px;}
.ws4e{word-spacing:237.499153px;}
.ws84{word-spacing:241.498796px;}
.ws97{word-spacing:244.887829px;}
.ws7d{word-spacing:250.855448px;}
.ws4f{word-spacing:251.909736px;}
.ws85{word-spacing:256.287589px;}
.ws9c{word-spacing:291.055272px;}
.ws8e{word-spacing:344.584789px;}
.ws86{word-spacing:350.530139px;}
.ws6b{word-spacing:361.420364px;}
.ws83{word-spacing:365.049224px;}
.ws94{word-spacing:384.611994px;}
.ws64{word-spacing:392.208206px;}
.ws36{word-spacing:393.975901px;}
.ws49{word-spacing:394.500382px;}
.ws56{word-spacing:404.725408px;}
.ws95{word-spacing:447.061676px;}
.ws12{word-spacing:447.894692px;}
.ws2d{word-spacing:575.083908px;}
.ws54{word-spacing:579.420394px;}
.ws2e{word-spacing:588.813639px;}
.ws70{word-spacing:623.041077px;}
.ws55{word-spacing:625.684374px;}
.ws11{word-spacing:652.922868px;}
.ws74{word-spacing:747.813166px;}
.ws96{word-spacing:839.665765px;}
.ws47{word-spacing:907.501339px;}
.ws78{word-spacing:909.860408px;}
.ws48{word-spacing:921.454831px;}
.ws9f{word-spacing:2449.186010px;}
._d{margin-left:-955.800871px;}
._8b{margin-left:-759.393386px;}
._45{margin-left:-747.923555px;}
._82{margin-left:-717.399903px;}
._6c{margin-left:-634.550671px;}
._6f{margin-left:-632.493762px;}
._3c{margin-left:-612.538422px;}
._7b{margin-left:-486.906770px;}
._9{margin-left:-475.832979px;}
._b{margin-left:-467.954186px;}
._a{margin-left:-461.045454px;}
._7{margin-left:-456.244537px;}
._8{margin-left:-448.436723px;}
._55{margin-left:-446.290064px;}
._21{margin-left:-428.246653px;}
._47{margin-left:-424.596717px;}
._42{margin-left:-410.524480px;}
._32{margin-left:-409.431081px;}
._ad{margin-left:-404.370078px;}
._2e{margin-left:-396.846380px;}
._2f{margin-left:-395.500925px;}
._8f{margin-left:-393.091167px;}
._80{margin-left:-391.089009px;}
._7f{margin-left:-389.298502px;}
._99{margin-left:-388.223491px;}
._16{margin-left:-382.958578px;}
._37{margin-left:-381.364885px;}
._18{margin-left:-373.835307px;}
._73{margin-left:-340.741339px;}
._1d{margin-left:-335.118935px;}
._7c{margin-left:-332.490866px;}
._5e{margin-left:-324.932170px;}
._25{margin-left:-322.652870px;}
._b0{margin-left:-317.873475px;}
._70{margin-left:-313.074777px;}
._8a{margin-left:-311.531285px;}
._69{margin-left:-301.364363px;}
._14{margin-left:-299.934428px;}
._8d{margin-left:-293.470840px;}
._97{margin-left:-280.933722px;}
._66{margin-left:-278.387990px;}
._2a{margin-left:-267.612937px;}
._9a{margin-left:-258.091949px;}
._92{margin-left:-256.044910px;}
._98{margin-left:-254.878596px;}
._4f{margin-left:-253.583594px;}
._96{margin-left:-250.068198px;}
._85{margin-left:-244.839329px;}
._29{margin-left:-242.153791px;}
._52{margin-left:-239.908829px;}
._6e{margin-left:-236.080323px;}
._41{margin-left:-232.252241px;}
._51{margin-left:-231.082027px;}
._c2{margin-left:-229.471795px;}
._6d{margin-left:-227.121052px;}
._8e{margin-left:-226.075740px;}
._5f{margin-left:-222.547633px;}
._1a{margin-left:-218.429018px;}
._79{margin-left:-217.248841px;}
._76{margin-left:-216.082113px;}
._8c{margin-left:-212.786111px;}
._84{margin-left:-210.575959px;}
._44{margin-left:-207.540706px;}
._31{margin-left:-205.745292px;}
._b2{margin-left:-204.742239px;}
._1b{margin-left:-201.798249px;}
._3a{margin-left:-200.797624px;}
._19{margin-left:-198.311280px;}
._4d{margin-left:-197.130202px;}
._43{margin-left:-195.328802px;}
._30{margin-left:-194.247267px;}
._36{margin-left:-191.895004px;}
._4e{margin-left:-190.597538px;}
._af{margin-left:-188.682239px;}
._3b{margin-left:-187.396718px;}
._75{margin-left:-185.792475px;}
._50{margin-left:-184.655057px;}
._17{margin-left:-181.094979px;}
._15{margin-left:-178.646992px;}
._f{margin-left:-176.778532px;}
._b6{margin-left:-174.623574px;}
._1f{margin-left:-173.524537px;}
._7e{margin-left:-171.691738px;}
._53{margin-left:-170.644251px;}
._11{margin-left:-168.958889px;}
._60{margin-left:-166.367927px;}
._10{margin-left:-164.179561px;}
._74{margin-left:-161.993924px;}
._72{margin-left:-159.213017px;}
._5a{margin-left:-156.299633px;}
._6a{margin-left:-150.929341px;}
._12{margin-left:-148.682235px;}
._65{margin-left:-147.005551px;}
._1e{margin-left:-143.123213px;}
._90{margin-left:-141.435091px;}
._64{margin-left:-138.597258px;}
._78{margin-left:-136.545364px;}
._77{margin-left:-134.245089px;}
._b7{margin-left:-129.062088px;}
._20{margin-left:-127.919621px;}
._c1{margin-left:-121.728151px;}
._81{margin-left:-116.944205px;}
._b1{margin-left:-115.511398px;}
._c{margin-left:-112.558559px;}
._35{margin-left:-110.808132px;}
._e{margin-left:-106.751143px;}
._7d{margin-left:-96.159227px;}
._3d{margin-left:-94.108155px;}
._87{margin-left:-87.434403px;}
._7a{margin-left:-70.696482px;}
._ae{margin-left:-60.970424px;}
._ac{margin-left:-53.456780px;}
._c3{margin-left:-52.311947px;}
._88{margin-left:-47.041406px;}
._d0{margin-left:-15.058114px;}
._d2{margin-left:-3.334589px;}
._57{margin-left:-2.268236px;}
._1{margin-left:-1.263600px;}
._0{width:1.135201px;}
._4{width:2.135274px;}
._58{width:3.920635px;}
._2{width:5.376000px;}
._c7{width:11.255901px;}
._34{width:40.621251px;}
._24{width:45.211113px;}
._63{width:46.785315px;}
._2d{width:48.251484px;}
._b5{width:56.410329px;}
._cd{width:65.610595px;}
._a1{width:66.792000px;}
._23{width:72.548464px;}
._a3{width:74.784000px;}
._b4{width:77.155562px;}
._ca{width:78.202651px;}
._cf{width:79.243117px;}
._5c{width:82.219924px;}
._ce{width:83.506665px;}
._9f{width:86.148236px;}
._c8{width:96.423500px;}
._4c{width:99.834093px;}
._39{width:103.113294px;}
._13{width:104.400000px;}
._5{width:107.491199px;}
._4b{width:109.616495px;}
._a0{width:110.712000px;}
._3f{width:113.610572px;}
._2c{width:114.635287px;}
._a2{width:118.704000px;}
._c6{width:120.519374px;}
._a4{width:124.392000px;}
._aa{width:126.696000px;}
._c9{width:129.286916px;}
._40{width:131.642064px;}
._cc{width:137.199256px;}
._9d{width:140.376000px;}
._a6{width:144.408000px;}
._c5{width:146.311719px;}
._a7{width:148.008000px;}
._cb{width:154.370562px;}
._9e{width:156.216000px;}
._a8{width:158.376000px;}
._4a{width:164.667421px;}
._d1{width:166.870218px;}
._a9{width:174.360000px;}
._49{width:176.378399px;}
._27{width:178.110145px;}
._c4{width:185.854776px;}
._a5{width:194.376000px;}
._6{width:196.920000px;}
._3{width:198.180000px;}
._83{width:199.620000px;}
._28{width:220.811505px;}
._ab{width:355.725597px;}
._91{width:383.940000px;}
._46{width:512.820000px;}
._9b{width:524.340000px;}
._68{width:589.557850px;}
._71{width:620.820000px;}
._86{width:628.740000px;}
._54{width:640.980000px;}
._89{width:648.180000px;}
._2b{width:651.780000px;}
._5d{width:655.386190px;}
._33{width:686.340000px;}
._b3{width:709.380000px;}
._1c{width:712.260000px;}
._61{width:715.860000px;}
._38{width:726.660000px;}
._56{width:731.700000px;}
._6b{width:742.500000px;}
._3e{width:779.220000px;}
._94{width:787.860000px;}
._9c{width:827.460000px;}
._22{width:829.620000px;}
._48{width:831.060000px;}
._b8{width:833.220000px;}
._b9{width:837.996000px;}
._67{width:860.580000px;}
._ba{width:862.532399px;}
._93{width:876.420000px;}
._95{width:890.820000px;}
._5b{width:906.780000px;}
._59{width:921.900000px;}
._62{width:923.340000px;}
._26{width:931.140000px;}
._bf{width:1296.276000px;}
._be{width:1308.228000px;}
._bc{width:1388.420399px;}
._bd{width:1424.420399px;}
._bb{width:1719.996000px;}
._c0{width:1788.180000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3c{font-size:41.344534px;}
.fs39{font-size:41.459602px;}
.fsa{font-size:41.498373px;}
.fs6{font-size:41.563001px;}
.fs18{font-size:41.670057px;}
.fs51{font-size:41.670913px;}
.fs1c{font-size:41.691406px;}
.fs27{font-size:41.697055px;}
.fs35{font-size:41.719875px;}
.fs22{font-size:41.800630px;}
.fs5c{font-size:41.815856px;}
.fs4c{font-size:41.856065px;}
.fs49{font-size:42.040580px;}
.fs40{font-size:42.063417px;}
.fs47{font-size:42.097924px;}
.fs30{font-size:42.103681px;}
.fs61{font-size:42.112580px;}
.fs59{font-size:42.113312px;}
.fs4e{font-size:42.122943px;}
.fs64{font-size:42.148965px;}
.fs10{font-size:42.172244px;}
.fs56{font-size:42.310705px;}
.fs2c{font-size:42.340044px;}
.fs70{font-size:43.595906px;}
.fs4{font-size:48.240000px;}
.fs6a{font-size:48.675759px;}
.fs72{font-size:48.777953px;}
.fs74{font-size:49.219788px;}
.fs6d{font-size:54.352177px;}
.fs71{font-size:57.566773px;}
.fs73{font-size:58.290504px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs6e{font-size:65.294961px;}
.fs6f{font-size:65.439176px;}
.fs3d{font-size:70.797693px;}
.fs66{font-size:70.923084px;}
.fs42{font-size:70.936489px;}
.fs45{font-size:70.994734px;}
.fs38{font-size:71.133916px;}
.fs9{font-size:71.283158px;}
.fs1d{font-size:71.391671px;}
.fs7{font-size:71.394171px;}
.fs34{font-size:71.456276px;}
.fs28{font-size:71.500564px;}
.fs17{font-size:71.536911px;}
.fs52{font-size:71.561449px;}
.fs23{font-size:71.678170px;}
.fs4b{font-size:71.856239px;}
.fs4a{font-size:71.989590px;}
.fs2{font-size:72.000000px;}
.fs31{font-size:72.033846px;}
.fs3f{font-size:72.044681px;}
.fs60{font-size:72.071231px;}
.fs48{font-size:72.087785px;}
.fsf{font-size:72.151148px;}
.fs58{font-size:72.255513px;}
.fs63{font-size:72.275483px;}
.fs4d{font-size:72.378670px;}
.fs55{font-size:72.701295px;}
.fs2d{font-size:72.724103px;}
.fs13{font-size:72.856508px;}
.fs6b{font-size:73.064238px;}
.fs6c{font-size:73.277326px;}
.fs43{font-size:75.244241px;}
.fs3a{font-size:75.364584px;}
.fs5d{font-size:75.431391px;}
.fsb{font-size:75.469678px;}
.fs36{font-size:75.600281px;}
.fs8{font-size:75.610383px;}
.fs1e{font-size:75.710912px;}
.fs1f{font-size:75.720922px;}
.fs67{font-size:75.723068px;}
.fs19{font-size:75.728369px;}
.fs29{font-size:75.800465px;}
.fs2a{font-size:75.940948px;}
.fs24{font-size:75.985842px;}
.fs32{font-size:76.325625px;}
.fs68{font-size:76.438022px;}
.fse{font-size:76.464519px;}
.fs5b{font-size:76.530782px;}
.fs14{font-size:77.455831px;}
.fs1{font-size:84.240000px;}
.fs41{font-size:93.589206px;}
.fs44{font-size:93.710497px;}
.fs37{font-size:93.849679px;}
.fs3b{font-size:93.872582px;}
.fs1b{font-size:94.234440px;}
.fs26{font-size:94.284529px;}
.fs50{font-size:94.409699px;}
.fs33{font-size:94.410255px;}
.fs16{font-size:94.412535px;}
.fs20{font-size:94.518730px;}
.fs3e{font-size:95.187675px;}
.fs5e{font-size:95.224107px;}
.fs2e{font-size:95.232078px;}
.fsc{font-size:95.387158px;}
.fs69{font-size:95.935145px;}
.fs54{font-size:95.963096px;}
.fs12{font-size:96.205317px;}
.fs1a{font-size:97.663480px;}
.fs25{font-size:97.725827px;}
.fs15{font-size:97.762945px;}
.fs21{font-size:97.968576px;}
.fs2f{font-size:98.525221px;}
.fsd{font-size:98.685663px;}
.fs2b{font-size:99.307641px;}
.fs11{font-size:99.706496px;}
.fs53{font-size:107.198381px;}
.fs62{font-size:108.103891px;}
.fs46{font-size:108.125789px;}
.fs5a{font-size:108.312581px;}
.fs65{font-size:108.339275px;}
.fs4f{font-size:108.562092px;}
.fs5f{font-size:115.486567px;}
.fs57{font-size:115.670084px;}
.y53{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y282{bottom:2.034815px;}
.y275{bottom:2.276933px;}
.ye4{bottom:2.920340px;}
.y296{bottom:3.295808px;}
.y8e{bottom:3.803388px;}
.y6f{bottom:3.912335px;}
.y74{bottom:4.231662px;}
.y70{bottom:4.238253px;}
.y131{bottom:4.478047px;}
.y1b4{bottom:4.492912px;}
.ybd{bottom:4.571470px;}
.yd4{bottom:4.587811px;}
.yca{bottom:4.599207px;}
.y143{bottom:4.604279px;}
.y124{bottom:4.617093px;}
.y129{bottom:4.639701px;}
.y148{bottom:4.652614px;}
.ybe{bottom:4.857223px;}
.yd5{bottom:4.874586px;}
.ycb{bottom:4.886695px;}
.y22d{bottom:5.048103px;}
.y1d6{bottom:5.050699px;}
.y20a{bottom:5.108593px;}
.y2b0{bottom:5.312843px;}
.y2d4{bottom:5.343202px;}
.y169{bottom:5.365994px;}
.y15e{bottom:5.373313px;}
.y17f{bottom:5.454523px;}
.y10b{bottom:5.488643px;}
.y111{bottom:5.741443px;}
.ya6{bottom:6.013480px;}
.yab{bottom:6.159280px;}
.yad{bottom:6.232179px;}
.yaf{bottom:6.377979px;}
.y157{bottom:6.743729px;}
.y1f2{bottom:6.769275px;}
.y137{bottom:6.844512px;}
.y1bd{bottom:6.865186px;}
.y22f{bottom:7.175472px;}
.y9c{bottom:7.275656px;}
.y259{bottom:7.283470px;}
.y9a{bottom:7.310639px;}
.ye3{bottom:7.353850px;}
.y9b{bottom:7.380605px;}
.y258{bottom:7.389040px;}
.y1c4{bottom:7.637734px;}
.y23a{bottom:7.642880px;}
.y18d{bottom:7.870652px;}
.y19d{bottom:8.219313px;}
.y1b0{bottom:8.231063px;}
.y280{bottom:8.839871px;}
.y2b6{bottom:8.966626px;}
.y142{bottom:9.031448px;}
.y123{bottom:9.056584px;}
.y12a{bottom:9.066870px;}
.y149{bottom:9.092105px;}
.y141{bottom:9.137714px;}
.yd6{bottom:9.139776px;}
.ybf{bottom:9.142939px;}
.ycc{bottom:9.162479px;}
.y122{bottom:9.163146px;}
.y128{bottom:9.173136px;}
.ybb{bottom:9.178658px;}
.y147{bottom:9.198666px;}
.yd2{bottom:9.211470px;}
.yc9{bottom:9.234351px;}
.yd3{bottom:9.247317px;}
.ybc{bottom:9.250097px;}
.yc8{bottom:9.270287px;}
.y2a6{bottom:9.866607px;}
.y16c{bottom:9.867843px;}
.y159{bottom:9.881303px;}
.y2cd{bottom:9.891906px;}
.y273{bottom:9.892007px;}
.y1ea{bottom:9.949617px;}
.y113{bottom:10.219032px;}
.yb3{bottom:10.678465px;}
.ya3{bottom:10.714915px;}
.yb1{bottom:10.824265px;}
.ya5{bottom:10.897164px;}
.y1b7{bottom:11.322150px;}
.y138{bottom:11.358971px;}
.y6b{bottom:11.918006px;}
.y181{bottom:12.336935px;}
.y4e{bottom:12.420000px;}
.y42{bottom:12.780000px;}
.y177{bottom:12.959199px;}
.y109{bottom:13.180113px;}
.y12f{bottom:13.288644px;}
.yef{bottom:13.290142px;}
.y243{bottom:13.311784px;}
.y245{bottom:13.383555px;}
.yf1{bottom:13.540784px;}
.y77{bottom:13.707834px;}
.y6a{bottom:13.729182px;}
.y22c{bottom:13.918199px;}
.y211{bottom:14.709779px;}
.y1b6{bottom:15.959441px;}
.ye5{bottom:16.749008px;}
.yf3{bottom:17.875390px;}
.y8d{bottom:17.904499px;}
.yee{bottom:17.910486px;}
.y8c{bottom:17.939652px;}
.y15d{bottom:17.958644px;}
.y1e7{bottom:17.967542px;}
.yed{bottom:17.982140px;}
.y8b{bottom:18.011422px;}
.y75{bottom:18.155944px;}
.y6d{bottom:18.184219px;}
.yd7{bottom:18.458933px;}
.ydd{bottom:18.504784px;}
.yaa{bottom:19.096743px;}
.y1dd{bottom:19.191950px;}
.y20d{bottom:19.238755px;}
.y1bc{bottom:19.337086px;}
.y15c{bottom:19.438146px;}
.y1f5{bottom:19.511780px;}
.y156{bottom:19.798820px;}
.y1bb{bottom:20.846901px;}
.ya7{bottom:21.210834px;}
.y2af{bottom:22.819925px;}
.y29a{bottom:23.253491px;}
.y2c0{bottom:23.532433px;}
.y16f{bottom:23.913222px;}
.y15b{bottom:23.945840px;}
.y1f0{bottom:23.999608px;}
.y1ef{bottom:24.072016px;}
.y1ee{bottom:24.108959px;}
.y1e6{bottom:24.235427px;}
.ya9{bottom:24.272621px;}
.y1b9{bottom:25.304452px;}
.y1ae{bottom:25.411563px;}
.y6e{bottom:25.430107px;}
.yf2{bottom:25.935694px;}
.y1d9{bottom:26.119431px;}
.y191{bottom:26.393912px;}
.yf0{bottom:27.260555px;}
.y244{bottom:27.304947px;}
.y214{bottom:27.426466px;}
.y1b3{bottom:28.503090px;}
.yf4{bottom:29.231762px;}
.y8f{bottom:29.279364px;}
.y76{bottom:29.369606px;}
.y78{bottom:29.839118px;}
.y6c{bottom:29.885588px;}
.y178{bottom:30.164258px;}
.y10a{bottom:30.331624px;}
.y130{bottom:30.581389px;}
.y16b{bottom:30.827269px;}
.y160{bottom:30.869318px;}
.y20f{bottom:30.905060px;}
.y22e{bottom:30.936854px;}
.y158{bottom:32.023476px;}
.y1f3{bottom:32.072378px;}
.y1bf{bottom:32.133104px;}
.y230{bottom:32.235089px;}
.y1c8{bottom:32.950754px;}
.y16a{bottom:32.988368px;}
.yae{bottom:33.091995px;}
.yb0{bottom:33.237795px;}
.y18e{bottom:33.277072px;}
.y1b1{bottom:33.320121px;}
.y1f4{bottom:33.412667px;}
.y1a5{bottom:33.420889px;}
.y20b{bottom:34.311184px;}
.y1b2{bottom:34.614249px;}
.y1a1{bottom:34.796983px;}
.y16e{bottom:35.328824px;}
.y15a{bottom:35.377013px;}
.y1e9{bottom:35.534879px;}
.yac{bottom:36.262388px;}
.ya8{bottom:36.372481px;}
.y1b8{bottom:36.625869px;}
.y116{bottom:37.048891px;}
.y16d{bottom:37.489923px;}
.y1c5{bottom:37.496812px;}
.yb4{bottom:37.501683px;}
.ya2{bottom:37.538876px;}
.yb2{bottom:37.647482px;}
.y182{bottom:37.742308px;}
.ya4{bottom:37.757575px;}
.y19f{bottom:37.946773px;}
.y1db{bottom:38.853685px;}
.y216{bottom:38.984805px;}
.y1dc{bottom:39.179147px;}
.y2c2{bottom:39.537670px;}
.y1b5{bottom:39.969766px;}
.y2ae{bottom:41.055625px;}
.y2d3{bottom:41.085984px;}
.y27e{bottom:41.464714px;}
.y2bf{bottom:42.566067px;}
.y1d7{bottom:43.363027px;}
.y1d5{bottom:43.435189px;}
.y15f{bottom:43.456121px;}
.y1e8{bottom:43.552357px;}
.y212{bottom:43.983805px;}
.y1ba{bottom:44.246843px;}
.y1be{bottom:44.641538px;}
.y1c7{bottom:45.644678px;}
.y112{bottom:45.968396px;}
.y1a4{bottom:46.057004px;}
.y1f1{bottom:46.734289px;}
.y2a4{bottom:47.152744px;}
.y179{bottom:47.408022px;}
.y10e{bottom:47.483724px;}
.y1a3{bottom:47.577949px;}
.y134{bottom:47.874728px;}
.y271{bottom:50.188655px;}
.y110{bottom:50.554180px;}
.y108{bottom:50.626409px;}
.y136{bottom:50.970468px;}
.y12e{bottom:51.043291px;}
.y213{bottom:51.121431px;}
.y1da{bottom:51.480433px;}
.y2e4{bottom:51.706610px;}
.y1ca{bottom:51.718461px;}
.y19e{bottom:52.068359px;}
.y1af{bottom:52.082039px;}
.y192{bottom:54.582587px;}
.y210{bottom:54.780462px;}
.y1de{bottom:55.088496px;}
.y1{bottom:56.736000px;}
.y1a7{bottom:59.019774px;}
.y20c{bottom:59.309142px;}
.y2ad{bottom:59.321684px;}
.y2d2{bottom:59.331804px;}
.y117{bottom:59.399982px;}
.y1a2{bottom:60.178589px;}
.y277{bottom:60.501541px;}
.y10c{bottom:60.881407px;}
.y299{bottom:60.935558px;}
.y13b{bottom:60.945794px;}
.y132{bottom:61.382734px;}
.y2be{bottom:61.599701px;}
.y1d8{bottom:61.725859px;}
.y215{bottom:62.715265px;}
.y1c6{bottom:63.138539px;}
.y1c3{bottom:63.246920px;}
.y1a0{bottom:63.545658px;}
.y114{bottom:63.878160px;}
.y17a{bottom:64.612931px;}
.y29c{bottom:64.634527px;}
.y189{bottom:64.979057px;}
.y139{bottom:65.460847px;}
.y20e{bottom:66.519238px;}
.y18b{bottom:67.138450px;}
.y266{bottom:67.695736px;}
.y2dc{bottom:69.213692px;}
.y1a6{bottom:71.620414px;}
.y10d{bottom:72.292065px;}
.y1c9{bottom:72.630031px;}
.y18f{bottom:73.435809px;}
.y188{bottom:73.948384px;}
.y133{bottom:73.979704px;}
.y217{bottom:74.925840px;}
.y2ac{bottom:77.567504px;}
.y2d1{bottom:77.597863px;}
.y183{bottom:77.938405px;}
.y298{bottom:79.758282px;}
.y2bd{bottom:80.633335px;}
.y187{bottom:81.160309px;}
.y17b{bottom:81.819335px;}
.y118{bottom:86.230726px;}
.y13c{bottom:88.033143px;}
.y10f{bottom:89.444165px;}
.y115{bottom:90.707430px;}
.y278{bottom:91.088884px;}
.y18a{bottom:91.190654px;}
.y135{bottom:91.273044px;}
.y193{bottom:91.958770px;}
.y18c{bottom:92.508705px;}
.y13a{bottom:92.511042px;}
.y267{bottom:93.551571px;}
.y2ab{bottom:95.074586px;}
.y29d{bottom:95.828504px;}
.y195{bottom:98.804570px;}
.y17c{bottom:99.024245px;}
.y2bc{bottom:99.704144px;}
.y2dd{bottom:101.925623px;}
.y184{bottom:103.307166px;}
.y40{bottom:109.836000px;}
.y206{bottom:110.736000px;}
.y16{bottom:111.996000px;}
.y2aa{bottom:113.340646px;}
.y255{bottom:114.336000px;}
.y3f{bottom:115.056000px;}
.y294{bottom:115.956000px;}
.y17d{bottom:116.266514px;}
.y174{bottom:118.296000px;}
.y268{bottom:118.653488px;}
.y229{bottom:118.656000px;}
.y2bb{bottom:118.737778px;}
.y67{bottom:118.836000px;}
.y265{bottom:121.140000px;}
.y279{bottom:121.683462px;}
.y190{bottom:122.160388px;}
.y2c3{bottom:123.986571px;}
.y185{bottom:126.627119px;}
.y153{bottom:126.756000px;}
.y29e{bottom:127.022481px;}
.y3e{bottom:127.836000px;}
.y2a9{bottom:131.576346px;}
.y2d0{bottom:131.606705px;}
.y272{bottom:133.303880px;}
.y88{bottom:133.416000px;}
.y17e{bottom:133.472918px;}
.y2de{bottom:133.853279px;}
.y2cb{bottom:134.612256px;}
.y2b3{bottom:136.034300px;}
.y2ba{bottom:137.771412px;}
.y264{bottom:138.636000px;}
.y5b{bottom:139.536000px;}
.y297{bottom:140.375331px;}
.y194{bottom:140.684843px;}
.y269{bottom:144.509323px;}
.y207{bottom:146.556000px;}
.y105{bottom:147.456000px;}
.y196{bottom:147.493283px;}
.y56{bottom:149.256000px;}
.y1e5{bottom:149.796000px;}
.y180{bottom:150.679322px;}
.y27a{bottom:151.590725px;}
.y186{bottom:151.994385px;}
.y2c4{bottom:152.119338px;}
.y205{bottom:152.130000px;}
.ye0{bottom:152.490000px;}
.y15{bottom:153.390000px;}
.y293{bottom:154.650000px;}
.y254{bottom:155.730000px;}
.y2b9{bottom:156.799098px;}
.y9f{bottom:157.350000px;}
.y29f{bottom:158.191158px;}
.y173{bottom:159.690000px;}
.y228{bottom:160.050000px;}
.y66{bottom:160.230000px;}
.y2df{bottom:166.570270px;}
.y152{bottom:168.150000px;}
.y12b{bottom:169.050000px;}
.y26a{bottom:170.385397px;}
.y87{bottom:174.810000px;}
.y2b8{bottom:175.832732px;}
.y263{bottom:180.030000px;}
.y2c5{bottom:180.252105px;}
.y32{bottom:180.930000px;}
.y27b{bottom:182.185303px;}
.y55{bottom:187.950000px;}
.y104{bottom:188.850000px;}
.y2a0{bottom:189.390195px;}
.y22a{bottom:190.650000px;}
.y1e4{bottom:191.190000px;}
.y204{bottom:193.530000px;}
.ydf{bottom:193.890000px;}
.y14{bottom:194.790000px;}
.y2b7{bottom:194.910976px;}
.y292{bottom:196.050000px;}
.y26b{bottom:196.241232px;}
.y253{bottom:197.130000px;}
.y9e{bottom:198.750000px;}
.y2e0{bottom:199.277142px;}
.y172{bottom:201.090000px;}
.y227{bottom:201.450000px;}
.y65{bottom:201.630000px;}
.y127{bottom:206.040000px;}
.y2c6{bottom:208.415232px;}
.y151{bottom:209.550000px;}
.y27c{bottom:212.770837px;}
.y126{bottom:214.950000px;}
.y86{bottom:216.210000px;}
.y2b4{bottom:219.520869px;}
.y1c0{bottom:220.710000px;}
.y26c{bottom:221.338089px;}
.y262{bottom:221.430000px;}
.y31{bottom:222.330000px;}
.y54{bottom:229.350000px;}
.y103{bottom:230.250000px;}
.y2e1{bottom:231.235156px;}
.y3d{bottom:232.050000px;}
.y1e3{bottom:232.590000px;}
.y203{bottom:234.930000px;}
.yde{bottom:235.290000px;}
.y295{bottom:235.660529px;}
.y4c{bottom:236.190000px;}
.y2c7{bottom:236.547999px;}
.y291{bottom:237.450000px;}
.y252{bottom:238.530000px;}
.y9d{bottom:240.150000px;}
.y171{bottom:242.490000px;}
.y226{bottom:242.850000px;}
.y64{bottom:243.030000px;}
.y27d{bottom:243.365415px;}
.y26d{bottom:247.193924px;}
.y150{bottom:250.950000px;}
.y2a1{bottom:252.537126px;}
.y85{bottom:257.610000px;}
.y125{bottom:257.790000px;}
.y1ad{bottom:257.865000px;}
.y261{bottom:262.830000px;}
.y30{bottom:263.730000px;}
.y2e2{bottom:263.942028px;}
.y2c8{bottom:264.701006px;}
.y3c{bottom:270.750000px;}
.y102{bottom:271.650000px;}
.ydc{bottom:272.265000px;}
.y26e{bottom:273.049759px;}
.y1e2{bottom:274.035000px;}
.y202{bottom:276.375000px;}
.y99{bottom:277.140000px;}
.y4b{bottom:277.635000px;}
.y290{bottom:278.895000px;}
.y251{bottom:279.975000px;}
.y2b2{bottom:280.335000px;}
.ydb{bottom:281.235000px;}
.y13{bottom:281.415000px;}
.y1ac{bottom:283.395000px;}
.y2a2{bottom:283.705804px;}
.y170{bottom:283.935000px;}
.y225{bottom:284.295000px;}
.y63{bottom:284.475000px;}
.y98{bottom:284.655000px;}
.y274{bottom:287.710270px;}
.y14f{bottom:292.395000px;}
.y2c9{bottom:292.833773px;}
.y121{bottom:294.915000px;}
.y2e3{bottom:296.628661px;}
.y26f{bottom:298.176975px;}
.y84{bottom:299.055000px;}
.y120{bottom:303.915000px;}
.y260{bottom:304.275000px;}
.y2f{bottom:305.175000px;}
.y3b{bottom:312.195000px;}
.y2a3{bottom:314.894720px;}
.y1e1{bottom:315.435000px;}
.y101{bottom:316.875000px;}
.y201{bottom:317.775000px;}
.y4a{bottom:319.035000px;}
.y28f{bottom:320.295000px;}
.y2ca{bottom:320.996900px;}
.y168{bottom:321.015000px;}
.y250{bottom:321.375000px;}
.y2ee{bottom:321.735000px;}
.y270{bottom:324.032810px;}
.y224{bottom:325.695000px;}
.y62{bottom:325.875000px;}
.yda{bottom:327.315000px;}
.y97{bottom:327.675000px;}
.y14e{bottom:333.795000px;}
.y83{bottom:340.455000px;}
.y167{bottom:344.955000px;}
.y25f{bottom:345.675000px;}
.y2e{bottom:346.575000px;}
.y2b5{bottom:346.588543px;}
.y11f{bottom:346.755000px;}
.y1ab{bottom:346.935000px;}
.y3a{bottom:353.595000px;}
.y2b1{bottom:356.295000px;}
.y1e0{bottom:356.835000px;}
.y200{bottom:359.175000px;}
.y49{bottom:360.435000px;}
.y100{bottom:361.335000px;}
.y28e{bottom:361.695000px;}
.y24f{bottom:362.775000px;}
.y12{bottom:363.855000px;}
.y223{bottom:366.915000px;}
.y61{bottom:367.275000px;}
.yd9{bottom:368.715000px;}
.y96{bottom:369.075000px;}
.y14d{bottom:375.195000px;}
.y82{bottom:381.855000px;}
.y29b{bottom:382.965000px;}
.y25e{bottom:387.075000px;}
.y2d{bottom:387.975000px;}
.y11e{bottom:388.155000px;}
.y1aa{bottom:388.335000px;}
.y2a5{bottom:392.093071px;}
.y11{bottom:394.995000px;}
.y45{bottom:398.055000px;}
.y1df{bottom:398.235000px;}
.y1ff{bottom:400.575000px;}
.y166{bottom:401.475000px;}
.y48{bottom:401.835000px;}
.yff{bottom:402.735000px;}
.y28d{bottom:403.095000px;}
.y24e{bottom:404.175000px;}
.y2da{bottom:404.535000px;}
.y222{bottom:408.315000px;}
.y60{bottom:408.675000px;}
.yd8{bottom:410.115000px;}
.y95{bottom:410.475000px;}
.y14c{bottom:416.595000px;}
.y81{bottom:423.255000px;}
.y10{bottom:425.955000px;}
.y25d{bottom:428.475000px;}
.y2c{bottom:429.375000px;}
.y11d{bottom:429.555000px;}
.y1a9{bottom:429.735000px;}
.y1d4{bottom:435.315000px;}
.y39{bottom:436.215000px;}
.y1fe{bottom:441.975000px;}
.y165{bottom:442.875000px;}
.y47{bottom:443.235000px;}
.yfe{bottom:444.135000px;}
.y28c{bottom:444.495000px;}
.y24d{bottom:445.575000px;}
.yd1{bottom:447.240000px;}
.y221{bottom:449.715000px;}
.y5f{bottom:450.075000px;}
.y94{bottom:451.875000px;}
.y1d3{bottom:454.755000px;}
.yd0{bottom:456.195000px;}
.y14b{bottom:457.995000px;}
.y22b{bottom:458.715000px;}
.y80{bottom:464.655000px;}
.y25c{bottom:469.875000px;}
.y2b{bottom:470.775000px;}
.y11c{bottom:470.955000px;}
.y1a8{bottom:471.135000px;}
.y38{bottom:477.615000px;}
.y46{bottom:480.315000px;}
.y1fd{bottom:483.375000px;}
.y164{bottom:484.275000px;}
.y2d9{bottom:484.635000px;}
.yfd{bottom:485.535000px;}
.y28b{bottom:485.895000px;}
.y24c{bottom:486.975000px;}
.y220{bottom:491.115000px;}
.y44{bottom:491.475000px;}
.y93{bottom:493.275000px;}
.y14a{bottom:499.395000px;}
.y43{bottom:500.475000px;}
.ycf{bottom:502.275000px;}
.y7f{bottom:506.055000px;}
.y19c{bottom:508.065000px;}
.y25b{bottom:511.275000px;}
.y2a{bottom:512.175000px;}
.y11b{bottom:512.355000px;}
.yf{bottom:519.015000px;}
.y1fc{bottom:524.775000px;}
.y163{bottom:525.675000px;}
.y2d8{bottom:526.035000px;}
.yfc{bottom:526.935000px;}
.y28a{bottom:527.295000px;}
.y24b{bottom:528.375000px;}
.y21f{bottom:532.515000px;}
.y5e{bottom:532.875000px;}
.y92{bottom:534.675000px;}
.y146{bottom:536.490000px;}
.y1d2{bottom:538.275000px;}
.yce{bottom:543.675000px;}
.y2a8{bottom:544.222427px;}
.y145{bottom:545.475000px;}
.y7e{bottom:547.455000px;}
.ye{bottom:550.155000px;}
.y25a{bottom:552.675000px;}
.y29{bottom:553.575000px;}
.y11a{bottom:553.755000px;}
.y37{bottom:560.445000px;}
.y2a7{bottom:561.699150px;}
.y1fb{bottom:566.205000px;}
.y162{bottom:567.105000px;}
.y2d7{bottom:567.465000px;}
.yfb{bottom:568.365000px;}
.y289{bottom:568.725000px;}
.y24a{bottom:569.805000px;}
.y5d{bottom:570.165000px;}
.y21e{bottom:573.945000px;}
.y91{bottom:576.105000px;}
.y52{bottom:579.165000px;}
.y1d1{bottom:579.705000px;}
.yd{bottom:581.145000px;}
.ycd{bottom:585.105000px;}
.y144{bottom:588.345000px;}
.y7d{bottom:588.885000px;}
.y257{bottom:589.740000px;}
.y28{bottom:595.005000px;}
.y119{bottom:595.185000px;}
.y256{bottom:597.345000px;}
.y36{bottom:601.845000px;}
.y5c{bottom:604.545000px;}
.y1fa{bottom:607.605000px;}
.y161{bottom:608.505000px;}
.y2d6{bottom:608.865000px;}
.yfa{bottom:609.765000px;}
.y288{bottom:610.125000px;}
.y249{bottom:611.205000px;}
.yc{bottom:612.285000px;}
.y21d{bottom:615.345000px;}
.y19b{bottom:617.145000px;}
.y90{bottom:617.505000px;}
.y1d0{bottom:621.105000px;}
.yc7{bottom:622.140000px;}
.y140{bottom:625.440000px;}
.y7c{bottom:630.285000px;}
.yc6{bottom:631.185000px;}
.y107{bottom:632.265000px;}
.y13f{bottom:634.425000px;}
.y27{bottom:636.405000px;}
.yb{bottom:643.245000px;}
.y155{bottom:645.540000px;}
.y2d5{bottom:645.945000px;}
.y51{bottom:646.665000px;}
.y1f9{bottom:649.005000px;}
.y2ed{bottom:650.265000px;}
.yf9{bottom:651.165000px;}
.y287{bottom:651.525000px;}
.y248{bottom:652.605000px;}
.y41{bottom:653.505000px;}
.y8a{bottom:654.540000px;}
.y21c{bottom:656.745000px;}
.y19a{bottom:658.545000px;}
.y1cf{bottom:662.505000px;}
.y154{bottom:669.525000px;}
.y7b{bottom:671.685000px;}
.y89{bottom:672.585000px;}
.ya{bottom:674.385000px;}
.yc5{bottom:677.265000px;}
.y26{bottom:677.805000px;}
.y2c1{bottom:681.765000px;}
.y106{bottom:683.205000px;}
.y35{bottom:684.645000px;}
.y2cc{bottom:685.554929px;}
.y1f8{bottom:690.405000px;}
.y2ec{bottom:691.665000px;}
.yf8{bottom:692.565000px;}
.y286{bottom:692.925000px;}
.y247{bottom:694.005000px;}
.y21b{bottom:698.145000px;}
.y199{bottom:699.945000px;}
.y1ce{bottom:703.905000px;}
.y9{bottom:705.345000px;}
.y7a{bottom:713.085000px;}
.yc4{bottom:718.665000px;}
.y5a{bottom:719.205000px;}
.y25{bottom:722.985000px;}
.y34{bottom:726.045000px;}
.y2eb{bottom:728.745000px;}
.y2e9{bottom:730.005000px;}
.y1f7{bottom:731.805000px;}
.yf7{bottom:733.965000px;}
.y285{bottom:734.325000px;}
.y246{bottom:735.405000px;}
.y21a{bottom:739.545000px;}
.y198{bottom:741.345000px;}
.y1cd{bottom:745.305000px;}
.y8{bottom:746.745000px;}
.y79{bottom:754.485000px;}
.yc3{bottom:760.065000px;}
.y59{bottom:760.605000px;}
.y24{bottom:767.445000px;}
.y242{bottom:772.440000px;}
.y1f6{bottom:773.205000px;}
.y2e8{bottom:774.465000px;}
.yf6{bottom:775.365000px;}
.y284{bottom:775.725000px;}
.y219{bottom:780.945000px;}
.y197{bottom:782.745000px;}
.y4f{bottom:786.705000px;}
.y7{bottom:788.145000px;}
.y241{bottom:790.485000px;}
.y73{bottom:791.565000px;}
.yc2{bottom:797.115000px;}
.y13e{bottom:801.465000px;}
.y58{bottom:802.005000px;}
.yc1{bottom:806.145000px;}
.y2ce{bottom:807.269526px;}
.y23{bottom:808.845000px;}
.y72{bottom:809.565000px;}
.y1ed{bottom:810.240000px;}
.y2e7{bottom:811.545000px;}
.y283{bottom:812.985000px;}
.y2cf{bottom:813.341346px;}
.yf5{bottom:816.765000px;}
.y176{bottom:819.840000px;}
.y4d{bottom:822.165000px;}
.y218{bottom:822.345000px;}
.y1cc{bottom:828.105000px;}
.y2db{bottom:833.565000px;}
.y1ec{bottom:834.225000px;}
.y13d{bottom:842.910000px;}
.y237{bottom:843.450000px;}
.y240{bottom:843.990000px;}
.y276{bottom:847.147535px;}
.y57{bottom:847.230000px;}
.y2e5{bottom:847.246835px;}
.yc0{bottom:849.210000px;}
.y22{bottom:850.290000px;}
.y27f{bottom:853.274561px;}
.yec{bottom:853.815000px;}
.y209{bottom:859.440000px;}
.y71{bottom:864.510000px;}
.y1cb{bottom:869.550000px;}
.y6{bottom:870.990000px;}
.yeb{bottom:871.890000px;}
.y208{bottom:878.910000px;}
.y12d{bottom:879.765000px;}
.y236{bottom:884.850000px;}
.y23f{bottom:885.390000px;}
.yba{bottom:886.215000px;}
.y21{bottom:891.690000px;}
.yb9{bottom:895.290000px;}
.y1eb{bottom:896.910000px;}
.y175{bottom:900.870000px;}
.y69{bottom:901.515000px;}
.y1c2{bottom:906.390000px;}
.y5{bottom:912.390000px;}
.y68{bottom:919.590000px;}
.yea{bottom:925.350000px;}
.y235{bottom:926.250000px;}
.y23e{bottom:926.790000px;}
.y2ea{bottom:930.030000px;}
.y12c{bottom:930.750000px;}
.y20{bottom:933.090000px;}
.yb8{bottom:938.310000px;}
.y1c1{bottom:943.890000px;}
.y50{bottom:963.510000px;}
.ye9{bottom:966.750000px;}
.y234{bottom:967.650000px;}
.y23d{bottom:968.190000px;}
.y281{bottom:969.509268px;}
.y1f{bottom:974.490000px;}
.yb7{bottom:979.710000px;}
.y2e6{bottom:994.822427px;}
.y4{bottom:995.190000px;}
.ye8{bottom:1008.150000px;}
.y233{bottom:1009.050000px;}
.y23c{bottom:1009.590000px;}
.y1e{bottom:1015.890000px;}
.yb6{bottom:1021.110000px;}
.ye7{bottom:1049.550000px;}
.y232{bottom:1050.450000px;}
.y23b{bottom:1050.990000px;}
.y1d{bottom:1057.290000px;}
.yb5{bottom:1062.510000px;}
.y239{bottom:1088.040000px;}
.y3{bottom:1088.790000px;}
.ye6{bottom:1090.950000px;}
.y231{bottom:1091.850000px;}
.y238{bottom:1095.630000px;}
.y1c{bottom:1098.690000px;}
.ya1{bottom:1099.365000px;}
.ya0{bottom:1123.380000px;}
.ye2{bottom:1127.940000px;}
.ye1{bottom:1135.620000px;}
.y2{bottom:1137.060000px;}
.y1b{bottom:1140.120000px;}
.y33{bottom:1146.960000px;}
.y1a{bottom:1196.100000px;}
.y19{bottom:1197.286500px;}
.y18{bottom:1215.286500px;}
.y17{bottom:1233.286500px;}
.hd{height:16.020000px;}
.hda{height:17.724121px;}
.h22{height:25.499207px;}
.h60{height:26.776125px;}
.h5a{height:26.850647px;}
.h2f{height:27.000771px;}
.he3{height:28.030000px;}
.h47{height:28.501034px;}
.hd6{height:29.233513px;}
.hc{height:29.520000px;}
.hb{height:29.556000px;}
.ha{height:29.700000px;}
.h3e{height:30.000155px;}
.h37{height:30.074675px;}
.hde{height:31.952954px;}
.hdd{height:32.686633px;}
.hd0{height:32.711932px;}
.h9{height:38.158594px;}
.h96{height:38.598497px;}
.hae{height:38.732754px;}
.h77{height:38.994024px;}
.hb9{height:39.007600px;}
.ha8{height:39.008278px;}
.h91{height:39.017199px;}
.ha2{height:39.191117px;}
.h62{height:40.557211px;}
.h64{height:40.577399px;}
.h71{height:40.670088px;}
.h73{height:40.690332px;}
.h11{height:40.771518px;}
.hf{height:40.791812px;}
.h2c{height:40.876535px;}
.h99{height:40.877375px;}
.h32{height:40.897478px;}
.h94{height:40.897722px;}
.h41{height:40.903019px;}
.h44{height:40.923379px;}
.h56{height:40.925405px;}
.h59{height:40.945776px;}
.h3a{height:41.004622px;}
.had{height:41.019558px;}
.hb0{height:41.039976px;}
.h85{height:41.059001px;}
.h88{height:41.079439px;}
.h7f{height:41.240002px;}
.h69{height:41.262405px;}
.h6b{height:41.282944px;}
.h7a{height:41.296254px;}
.h4e{height:41.301901px;}
.hb7{height:41.310632px;}
.ha6{height:41.311350px;}
.h7d{height:41.316810px;}
.h8c{height:41.320797px;}
.hb5{height:41.331195px;}
.hab{height:41.331913px;}
.h8e{height:41.341365px;}
.hbc{height:41.346324px;}
.hc1{height:41.366904px;}
.hc8{height:41.369159px;}
.h9e{height:41.504983px;}
.ha0{height:41.525643px;}
.h49{height:41.533764px;}
.hcd{height:41.554438px;}
.h5{height:41.689453px;}
.h95{height:45.522266px;}
.hb8{height:45.830183px;}
.h4b{height:46.425711px;}
.h1c{height:46.501313px;}
.h7{height:47.344922px;}
.h15{height:47.850370px;}
.he{height:47.924890px;}
.hc2{height:50.625281px;}
.hcf{height:50.767296px;}
.h58{height:54.378226px;}
.h7e{height:55.425574px;}
.h75{height:55.501176px;}
.hd5{height:56.687622px;}
.h27{height:57.073017px;}
.h2{height:58.621992px;}
.h8{height:58.651172px;}
.hdb{height:60.040345px;}
.he2{height:60.795174px;}
.hb1{height:61.575005px;}
.h92{height:64.051987px;}
.hd7{height:64.083433px;}
.h65{height:65.577746px;}
.hd3{height:65.691977px;}
.hc3{height:65.693891px;}
.h6f{height:65.706308px;}
.h74{height:65.760259px;}
.h5f{height:65.889179px;}
.h1b{height:66.027417px;}
.h14{height:66.130245px;}
.h55{height:66.187771px;}
.h2b{height:66.262461px;}
.h97{height:66.285190px;}
.h84{height:66.558244px;}
.h81{height:66.681764px;}
.h50{height:66.722757px;}
.h68{height:66.732793px;}
.h78{height:66.772719px;}
.ha9{height:66.928080px;}
.hbf{height:66.946578px;}
.h8f{height:67.042157px;}
.ha1{height:67.340994px;}
.hd2{height:67.700796px;}
.haa{height:69.041837px;}
.h63{height:69.449494px;}
.hc4{height:69.572498px;}
.h6d{height:69.620285px;}
.h72{height:69.642783px;}
.h6e{height:69.696447px;}
.h5e{height:69.807918px;}
.h5c{height:69.814049px;}
.haf{height:69.869799px;}
.h1a{height:69.905263px;}
.h19{height:69.925715px;}
.h16{height:69.960521px;}
.h57{height:70.026237px;}
.h12{height:70.034614px;}
.h13{height:70.035594px;}
.h35{height:70.067021px;}
.h10{height:70.069474px;}
.h34{height:70.128711px;}
.h36{height:70.137983px;}
.hc7{height:70.139971px;}
.h2e{height:70.144881px;}
.h2d{height:70.174635px;}
.h9a{height:70.198706px;}
.h43{height:70.211661px;}
.h46{height:70.341786px;}
.h3c{height:70.383370px;}
.h86{height:70.487882px;}
.h87{height:70.522969px;}
.h80{height:70.618694px;}
.h6{height:70.628906px;}
.h82{height:70.653846px;}
.h4{height:70.664062px;}
.h6a{height:70.672737px;}
.h51{height:70.697280px;}
.h4f{height:70.698101px;}
.hd8{height:70.698526px;}
.h7c{height:70.715020px;}
.hb4{height:70.733972px;}
.hca{height:70.802211px;}
.h21{height:70.812406px;}
.h1f{height:70.826754px;}
.ha5{height:70.879553px;}
.hac{height:70.888131px;}
.hbb{height:70.899143px;}
.h8a{height:71.000365px;}
.h8d{height:71.035706px;}
.h9d{height:71.316847px;}
.h9f{height:71.352345px;}
.hcc{height:71.374730px;}
.h25{height:71.469104px;}
.hd1{height:71.708554px;}
.h26{height:71.744977px;}
.hdf{height:71.917688px;}
.hc6{height:72.920456px;}
.h52{height:74.681367px;}
.hc5{height:74.704922px;}
.ha3{height:77.923854px;}
.hd9{height:78.135042px;}
.h3d{height:78.394253px;}
.h20{height:78.970951px;}
.hb6{height:80.115490px;}
.h90{height:83.896830px;}
.h89{height:84.076203px;}
.h9b{height:84.450969px;}
.h3{height:84.898125px;}
.h6c{height:86.688830px;}
.h70{height:86.801178px;}
.h5b{height:86.930099px;}
.h61{height:86.951312px;}
.h33{height:87.175027px;}
.h31{height:87.286491px;}
.h40{height:87.332887px;}
.h45{height:87.416343px;}
.h17{height:87.439044px;}
.h93{height:87.448828px;}
.h54{height:87.449343px;}
.h29{height:87.451455px;}
.h5d{height:87.537278px;}
.h38{height:87.549820px;}
.h18{height:87.718156px;}
.hc0{height:88.032125px;}
.h67{height:88.169444px;}
.hb2{height:88.203189px;}
.h4c{height:88.210572px;}
.h1d{height:88.354218px;}
.h3b{height:88.566292px;}
.h7b{height:88.745799px;}
.hc9{height:88.860955px;}
.hcb{height:88.861802px;}
.h9c{height:88.887692px;}
.h24{height:89.112053px;}
.hba{height:89.996790px;}
.h30{height:90.462706px;}
.h3f{height:90.520456px;}
.h28{height:90.554838px;}
.h39{height:90.745307px;}
.h4d{height:91.260910px;}
.h1e{height:91.409523px;}
.h48{height:91.985642px;}
.h23{height:92.355089px;}
.h42{height:92.960097px;}
.h4a{height:96.869109px;}
.hbe{height:99.265556px;}
.h76{height:100.153624px;}
.ha7{height:100.326644px;}
.hbd{height:100.351369px;}
.hb3{height:106.971688px;}
.ha4{height:107.141675px;}
.h53{height:110.170848px;}
.h66{height:111.078049px;}
.h98{height:113.483517px;}
.h79{height:117.747464px;}
.he4{height:117.894511px;}
.h8b{height:118.080499px;}
.hdc{height:131.832305px;}
.he0{height:144.509323px;}
.he5{height:144.539682px;}
.h83{height:171.003023px;}
.h2a{height:194.893099px;}
.he1{height:257.623209px;}
.hd4{height:309.291921px;}
.hce{height:349.883734px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2c{width:32.756588px;}
.w31{width:32.781961px;}
.w2f{width:34.713580px;}
.w26{width:46.123707px;}
.w9{width:56.880000px;}
.w32{width:58.687830px;}
.w34{width:59.423648px;}
.w19{width:90.149541px;}
.w16{width:90.899904px;}
.w17{width:98.624282px;}
.wd{width:104.248141px;}
.w23{width:106.575244px;}
.w6{width:107.820000px;}
.w7{width:108.000000px;}
.w8{width:108.036000px;}
.w21{width:113.550358px;}
.w1a{width:121.727212px;}
.w2b{width:127.271145px;}
.w2e{width:132.011302px;}
.w28{width:135.150274px;}
.w13{width:136.424834px;}
.w25{width:138.230382px;}
.wc{width:154.949652px;}
.w22{width:158.022619px;}
.w11{width:180.147316px;}
.w1b{width:180.527699px;}
.w15{width:185.919223px;}
.w18{width:194.019784px;}
.w27{width:197.322681px;}
.w10{width:206.472611px;}
.w35{width:208.058889px;}
.wb{width:213.830332px;}
.wf{width:226.644031px;}
.w1f{width:227.690050px;}
.w14{width:231.309498px;}
.w1e{width:237.455420px;}
.w1c{width:241.577191px;}
.w4{width:242.850000px;}
.w5{width:243.030000px;}
.we{width:243.898098px;}
.w24{width:289.645873px;}
.w12{width:313.573876px;}
.w20{width:359.851531px;}
.w1d{width:451.950326px;}
.wa{width:517.496215px;}
.w33{width:552.377720px;}
.w29{width:561.069248px;}
.w2d{width:636.944337px;}
.w2a{width:637.878105px;}
.w30{width:648.409367px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:1.055951px;}
.x30{left:3.105998px;}
.x9d{left:4.841416px;}
.x7f{left:7.257141px;}
.xc{left:10.800000px;}
.xa5{left:11.838540px;}
.x9b{left:12.985658px;}
.x77{left:16.066790px;}
.xab{left:20.821290px;}
.x27{left:21.893297px;}
.xc3{left:22.960459px;}
.x99{left:25.032557px;}
.x1d{left:26.174178px;}
.xd3{left:27.239610px;}
.x42{left:29.152520px;}
.x6{left:31.500000px;}
.x87{left:32.935363px;}
.xda{left:34.304344px;}
.x4a{left:35.414199px;}
.x7d{left:36.510305px;}
.xaf{left:38.082207px;}
.xc8{left:39.217265px;}
.x4e{left:40.351376px;}
.xd2{left:41.663098px;}
.x79{left:43.008709px;}
.x66{left:44.747329px;}
.x3b{left:45.820565px;}
.xd5{left:47.244592px;}
.x60{left:48.249310px;}
.xc4{left:49.973857px;}
.x7c{left:51.434672px;}
.x1f{left:52.840341px;}
.x46{left:54.216957px;}
.xc1{left:55.543358px;}
.x3c{left:56.569075px;}
.x41{left:57.738195px;}
.x7e{left:59.477451px;}
.x6c{left:61.264643px;}
.xa2{left:63.440155px;}
.x83{left:65.153256px;}
.x37{left:66.742763px;}
.xc2{left:68.047268px;}
.x5d{left:69.875185px;}
.x5c{left:71.544786px;}
.xa4{left:73.737207px;}
.xce{left:75.702825px;}
.x90{left:77.051205px;}
.x7b{left:79.229929px;}
.xa9{left:81.179084px;}
.x4d{left:83.088368px;}
.x59{left:84.943446px;}
.x58{left:86.764969px;}
.x82{left:88.783624px;}
.x8e{left:90.566390px;}
.xac{left:91.626569px;}
.xb9{left:92.877233px;}
.x47{left:95.370832px;}
.xb7{left:96.777468px;}
.x61{left:98.350382px;}
.x55{left:99.707862px;}
.xb3{left:100.819381px;}
.xb2{left:102.408778px;}
.x2e{left:104.203183px;}
.xcd{left:106.984285px;}
.x54{left:109.575092px;}
.xae{left:111.409185px;}
.x8a{left:112.710382px;}
.x11{left:114.156000px;}
.x68{left:115.162638px;}
.x53{left:116.558890px;}
.x15{left:119.016000px;}
.xa3{left:120.489937px;}
.x49{left:122.101498px;}
.x95{left:123.184785px;}
.x50{left:124.871237px;}
.x2f{left:126.249645px;}
.x2{left:127.656000px;}
.xa8{left:128.946475px;}
.x5e{left:130.374563px;}
.xb{left:132.515987px;}
.x48{left:133.579307px;}
.x26{left:134.885669px;}
.x93{left:136.511852px;}
.x94{left:138.133983px;}
.x69{left:139.618347px;}
.x62{left:141.192667px;}
.xcb{left:143.877198px;}
.x6d{left:144.972600px;}
.x64{left:146.712434px;}
.x3d{left:148.022284px;}
.x57{left:150.718266px;}
.x2d{left:153.407791px;}
.x78{left:156.456782px;}
.x3a{left:160.133996px;}
.x86{left:161.642388px;}
.x8c{left:163.053317px;}
.x25{left:164.814708px;}
.x71{left:167.433060px;}
.xb4{left:168.933321px;}
.x40{left:170.007591px;}
.x7{left:171.929987px;}
.x76{left:175.130160px;}
.x92{left:176.491513px;}
.x4{left:177.690000px;}
.x17{left:180.749987px;}
.x8f{left:182.381759px;}
.x3e{left:183.778252px;}
.x52{left:186.958054px;}
.x67{left:189.061680px;}
.x19{left:193.065000px;}
.x51{left:196.833036px;}
.x3{left:198.030000px;}
.xba{left:200.903831px;}
.x5b{left:202.522389px;}
.x5a{left:204.119129px;}
.xa7{left:205.910337px;}
.xaa{left:207.307224px;}
.xb0{left:210.560394px;}
.x8{left:214.229973px;}
.x63{left:215.462411px;}
.xa6{left:217.346389px;}
.xb1{left:218.391535px;}
.x9{left:220.349987px;}
.x56{left:222.566897px;}
.x91{left:224.091487px;}
.x70{left:225.206428px;}
.x9e{left:226.795274px;}
.xdc{left:230.069987px;}
.x36{left:231.248047px;}
.x16{left:234.029987px;}
.xbe{left:236.534839px;}
.x2c{left:239.354956px;}
.xbd{left:240.803137px;}
.x9c{left:244.960357px;}
.x24{left:247.987887px;}
.xdd{left:254.369987px;}
.x9a{left:256.227307px;}
.x97{left:268.276046px;}
.xb5{left:271.890000px;}
.x23{left:277.151101px;}
.xbc{left:278.862126px;}
.x1c{left:281.483038px;}
.xb8{left:285.109924px;}
.xcf{left:287.129987px;}
.x13{left:288.750000px;}
.xb6{left:290.677269px;}
.x5{left:292.710000px;}
.x6f{left:294.915000px;}
.x14{left:302.115000px;}
.xca{left:306.990000px;}
.xbb{left:326.911406px;}
.x2a{left:328.515490px;}
.x12{left:329.655000px;}
.x8d{left:330.915000px;}
.xa1{left:333.090000px;}
.x75{left:336.165000px;}
.x1b{left:338.262347px;}
.x10{left:340.454987px;}
.x35{left:342.455042px;}
.xa{left:343.694987px;}
.x39{left:344.790000px;}
.xd{left:349.275000px;}
.x2b{left:350.608366px;}
.xd0{left:353.040000px;}
.x85{left:354.690000px;}
.xdb{left:356.617686px;}
.xd8{left:358.140068px;}
.x22{left:359.194882px;}
.x6b{left:361.740000px;}
.xc5{left:372.690000px;}
.x45{left:374.340000px;}
.x29{left:377.729382px;}
.x73{left:383.490000px;}
.x21{left:389.131657px;}
.x89{left:390.840000px;}
.x18{left:393.554987px;}
.xc0{left:395.040000px;}
.xc7{left:398.415000px;}
.x4c{left:399.690000px;}
.x81{left:402.390000px;}
.x34{left:406.737884px;}
.xd6{left:414.920097px;}
.x1e{left:422.503038px;}
.x98{left:434.337094px;}
.x9f{left:442.154978px;}
.x33{left:457.607194px;}
.x28{left:465.714104px;}
.x20{left:474.347034px;}
.x32{left:485.904022px;}
.x31{left:491.705722px;}
.x80{left:497.234987px;}
.x84{left:501.014987px;}
.x4f{left:503.924987px;}
.xc9{left:505.004987px;}
.x1a{left:509.048939px;}
.x8b{left:512.564987px;}
.x74{left:519.944987px;}
.x4b{left:529.304987px;}
.xc6{left:530.744987px;}
.x6e{left:541.904987px;}
.x7a{left:544.784987px;}
.x88{left:548.744987px;}
.xd1{left:550.364987px;}
.x6a{left:555.044987px;}
.x43{left:558.644987px;}
.x65{left:565.124987px;}
.x44{left:568.004987px;}
.xad{left:570.524987px;}
.x96{left:572.504987px;}
.x5f{left:573.764987px;}
.x1{left:575.385000px;}
.xcc{left:596.624987px;}
.xe{left:603.645000px;}
.x72{left:608.504987px;}
.xf{left:618.225000px;}
.xbf{left:631.724987px;}
.xd9{left:651.523399px;}
.xa0{left:677.804987px;}
.x38{left:710.609987px;}
.xd4{left:732.389987px;}
.xd7{left:764.789987px;}
@media print{
.v12{vertical-align:-68.682417pt;}
.vf{vertical-align:-66.328204pt;}
.v10{vertical-align:-52.143338pt;}
.va{vertical-align:-50.055773pt;}
.vc{vertical-align:-44.662405pt;}
.v3{vertical-align:-33.745526pt;}
.v9{vertical-align:-28.658857pt;}
.v15{vertical-align:-24.320000pt;}
.v2{vertical-align:-15.840134pt;}
.v4{vertical-align:-14.147702pt;}
.v1{vertical-align:-5.120000pt;}
.v13{vertical-align:-3.865105pt;}
.v16{vertical-align:-2.416956pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:5.120000pt;}
.v6{vertical-align:15.815504pt;}
.vb{vertical-align:24.320000pt;}
.v14{vertical-align:28.727981pt;}
.v17{vertical-align:31.420479pt;}
.v7{vertical-align:33.423815pt;}
.v5{vertical-align:41.538598pt;}
.v11{vertical-align:64.538792pt;}
.vd{vertical-align:67.956631pt;}
.v8{vertical-align:95.503683pt;}
.ls4d{letter-spacing:-1.935530pt;}
.ls6c{letter-spacing:-1.472000pt;}
.ls54{letter-spacing:-1.105356pt;}
.ls6a{letter-spacing:-1.052137pt;}
.ls22{letter-spacing:-1.011174pt;}
.ls6b{letter-spacing:-0.913921pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.660688pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls4a{letter-spacing:-0.632415pt;}
.ls1b{letter-spacing:-0.580578pt;}
.ls1c{letter-spacing:-0.537164pt;}
.ls53{letter-spacing:-0.334413pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.291995pt;}
.ls3{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.040320pt;}
.ls55{letter-spacing:-0.040283pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.030131pt;}
.lsf{letter-spacing:0.042667pt;}
.ls5e{letter-spacing:0.047360pt;}
.ls51{letter-spacing:0.062355pt;}
.ls9{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161280pt;}
.ls4e{letter-spacing:0.173069pt;}
.ls1{letter-spacing:0.183467pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.224000pt;}
.ls52{letter-spacing:0.230639pt;}
.ls26{letter-spacing:0.239360pt;}
.ls10{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.384000pt;}
.ls46{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls6e{letter-spacing:0.704000pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.800000pt;}
.ls60{letter-spacing:0.823969pt;}
.ls5f{letter-spacing:0.837197pt;}
.ls3c{letter-spacing:0.874667pt;}
.ls2c{letter-spacing:0.879360pt;}
.ls6d{letter-spacing:1.024000pt;}
.ls58{letter-spacing:1.024581pt;}
.ls56{letter-spacing:1.050622pt;}
.ls65{letter-spacing:1.128272pt;}
.ls5a{letter-spacing:1.128745pt;}
.ls5d{letter-spacing:1.180827pt;}
.ls63{letter-spacing:1.234014pt;}
.ls61{letter-spacing:1.260450pt;}
.ls68{letter-spacing:1.286885pt;}
.ls2f{letter-spacing:1.287573pt;}
.ls34{letter-spacing:1.293312pt;}
.ls2e{letter-spacing:1.721537pt;}
.ls3a{letter-spacing:2.602667pt;}
.ls20{letter-spacing:3.334832pt;}
.ls23{letter-spacing:4.164685pt;}
.ls1a{letter-spacing:4.209191pt;}
.ls1e{letter-spacing:4.317879pt;}
.ls1f{letter-spacing:4.453769pt;}
.ls17{letter-spacing:4.856012pt;}
.ls50{letter-spacing:8.562643pt;}
.ls4c{letter-spacing:19.438290pt;}
.ls27{letter-spacing:65.099062pt;}
.ls35{letter-spacing:102.555865pt;}
.ls39{letter-spacing:104.683159pt;}
.ls28{letter-spacing:124.399969pt;}
.ls62{letter-spacing:126.621779pt;}
.ls64{letter-spacing:126.674650pt;}
.ls66{letter-spacing:126.727521pt;}
.ls67{letter-spacing:126.780392pt;}
.ls69{letter-spacing:140.737059pt;}
.ls48{letter-spacing:149.084918pt;}
.ls37{letter-spacing:163.656210pt;}
.ls38{letter-spacing:169.978330pt;}
.ls5c{letter-spacing:179.272664pt;}
.ls5b{letter-spacing:179.324746pt;}
.ls57{letter-spacing:179.376828pt;}
.ls59{letter-spacing:179.428910pt;}
.ls18{letter-spacing:259.943291pt;}
.ls21{letter-spacing:302.924638pt;}
.ls49{letter-spacing:305.282276pt;}
.ls47{letter-spacing:351.532025pt;}
.ls13{letter-spacing:461.073350pt;}
.ls32{letter-spacing:611.419829pt;}
.ls2b{letter-spacing:670.321268pt;}
.ls45{letter-spacing:729.706667pt;}
.ls36{letter-spacing:764.801880pt;}
.ls40{letter-spacing:819.946667pt;}
.ls33{letter-spacing:889.507201pt;}
.ls30{letter-spacing:913.653268pt;}
.ls31{letter-spacing:957.168279pt;}
.ls43{letter-spacing:958.186667pt;}
.ls42{letter-spacing:990.186667pt;}
.ls41{letter-spacing:1182.186667pt;}
.ls44{letter-spacing:1214.346667pt;}
.ls3f{letter-spacing:1271.306667pt;}
.ls3d{letter-spacing:1392.266667pt;}
.ls3e{letter-spacing:1421.066667pt;}
.ls12{letter-spacing:1430.462956pt;}
.ls11{letter-spacing:1499.894060pt;}
.ls4b{letter-spacing:1633.206374pt;}
.wsaf{word-spacing:-152.765380pt;}
.ws18{word-spacing:-37.314685pt;}
.ws5c{word-spacing:-37.246905pt;}
.ws3e{word-spacing:-37.081091pt;}
.ws4a{word-spacing:-36.990627pt;}
.ws38{word-spacing:-36.951810pt;}
.ws30{word-spacing:-36.946925pt;}
.wse{word-spacing:-36.897867pt;}
.ws92{word-spacing:-36.810519pt;}
.ws1e{word-spacing:-35.553976pt;}
.ws80{word-spacing:-35.320791pt;}
.ws9d{word-spacing:-35.209760pt;}
.ws71{word-spacing:-35.178839pt;}
.ws77{word-spacing:-35.130920pt;}
.ws50{word-spacing:-34.978947pt;}
.ws87{word-spacing:-34.921987pt;}
.wsf{word-spacing:-34.840355pt;}
.ws2f{word-spacing:-34.839136pt;}
.ws13{word-spacing:-34.786181pt;}
.ws57{word-spacing:-20.661941pt;}
.ws40{word-spacing:-20.398707pt;}
.ws34{word-spacing:-18.854759pt;}
.ws7b{word-spacing:-17.689590pt;}
.ws8d{word-spacing:-17.449155pt;}
.ws7f{word-spacing:-17.371722pt;}
.wsb1{word-spacing:-17.024000pt;}
.wsb3{word-spacing:-16.704000pt;}
.ws5f{word-spacing:-16.640000pt;}
.ws98{word-spacing:-16.448000pt;}
.ws6e{word-spacing:-16.384000pt;}
.wsb4{word-spacing:-16.256000pt;}
.ws79{word-spacing:-16.192000pt;}
.wsa0{word-spacing:-16.160912pt;}
.ws8c{word-spacing:-16.155843pt;}
.ws3{word-spacing:-16.128000pt;}
.ws7c{word-spacing:-16.084149pt;}
.wsa{word-spacing:-16.064000pt;}
.ws8f{word-spacing:-16.056781pt;}
.ws73{word-spacing:-16.019508pt;}
.ws5b{word-spacing:-16.007521pt;}
.ws4{word-spacing:-16.000000pt;}
.ws76{word-spacing:-15.997687pt;}
.ws7{word-spacing:-15.936000pt;}
.ws3d{word-spacing:-15.928482pt;}
.ws8a{word-spacing:-15.902544pt;}
.ws27{word-spacing:-15.897091pt;}
.ws6{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.865371pt;}
.ws35{word-spacing:-15.864816pt;}
.ws10{word-spacing:-15.840702pt;}
.ws6f{word-spacing:-15.808000pt;}
.ws62{word-spacing:-15.807537pt;}
.ws5{word-spacing:-15.744000pt;}
.ws5d{word-spacing:-15.696184pt;}
.ws6d{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.168000pt;}
.wsa8{word-spacing:-14.542039pt;}
.wsb0{word-spacing:-14.528000pt;}
.wsac{word-spacing:-14.404231pt;}
.wsa1{word-spacing:-14.225381pt;}
.ws26{word-spacing:-14.116025pt;}
.ws15{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.463467pt;}
.wsa5{word-spacing:-13.431027pt;}
.ws0{word-spacing:-13.333333pt;}
.wsab{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-13.253648pt;}
.ws53{word-spacing:-12.743730pt;}
.wsa3{word-spacing:-12.201390pt;}
.wsa2{word-spacing:-12.028321pt;}
.wsb{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.679680pt;}
.ws16{word-spacing:-10.578317pt;}
.ws67{word-spacing:-10.088614pt;}
.ws5a{word-spacing:-9.899632pt;}
.ws58{word-spacing:-9.878743pt;}
.ws32{word-spacing:-9.878628pt;}
.ws3b{word-spacing:-9.864186pt;}
.ws39{word-spacing:-9.848123pt;}
.ws9b{word-spacing:-9.727446pt;}
.ws2b{word-spacing:-9.698133pt;}
.ws29{word-spacing:-9.538465pt;}
.ws4c{word-spacing:-9.501007pt;}
.ws7e{word-spacing:-9.360654pt;}
.ws90{word-spacing:-9.358514pt;}
.ws75{word-spacing:-9.342351pt;}
.ws44{word-spacing:-9.324193pt;}
.ws42{word-spacing:-9.310259pt;}
.ws7a{word-spacing:-9.301348pt;}
.ws4d{word-spacing:-9.289029pt;}
.ws45{word-spacing:-9.266012pt;}
.ws2c{word-spacing:-9.264757pt;}
.ws89{word-spacing:-9.260203pt;}
.wsc{word-spacing:-9.236222pt;}
.ws6c{word-spacing:-9.213245pt;}
.ws65{word-spacing:-9.187674pt;}
.ws5e{word-spacing:-9.024578pt;}
.ws25{word-spacing:-8.968017pt;}
.ws60{word-spacing:-8.936194pt;}
.ws3c{word-spacing:-8.751865pt;}
.ws21{word-spacing:-8.657517pt;}
.ws22{word-spacing:-8.650433pt;}
.ws46{word-spacing:-8.605325pt;}
.ws52{word-spacing:-8.397724pt;}
.ws51{word-spacing:-8.109187pt;}
.ws9e{word-spacing:-6.202191pt;}
.ws31{word-spacing:-5.592247pt;}
.ws3a{word-spacing:-5.573752pt;}
.ws59{word-spacing:-5.526510pt;}
.ws28{word-spacing:-5.419607pt;}
.ws33{word-spacing:-5.418887pt;}
.ws2a{word-spacing:-5.239054pt;}
.ws4b{word-spacing:-5.227101pt;}
.ws43{word-spacing:-5.220646pt;}
.ws41{word-spacing:-5.214149pt;}
.ws20{word-spacing:-4.396697pt;}
.ws1f{word-spacing:-4.393761pt;}
.ws8b{word-spacing:-3.485260pt;}
.ws6a{word-spacing:-3.397926pt;}
.ws93{word-spacing:-3.028818pt;}
.ws82{word-spacing:-2.877858pt;}
.ws24{word-spacing:-1.913447pt;}
.ws23{word-spacing:-1.842606pt;}
.ws66{word-spacing:-1.303909pt;}
.ws1{word-spacing:0.000000pt;}
.ws88{word-spacing:2.958455pt;}
.ws63{word-spacing:5.115516pt;}
.ws99{word-spacing:9.255556pt;}
.ws1b{word-spacing:15.318271pt;}
.ws17{word-spacing:18.529620pt;}
.ws9a{word-spacing:41.118845pt;}
.wsa9{word-spacing:43.659604pt;}
.ws61{word-spacing:62.590537pt;}
.wsad{word-spacing:72.233698pt;}
.ws3f{word-spacing:80.708834pt;}
.wsa7{word-spacing:90.765020pt;}
.wsae{word-spacing:98.076086pt;}
.wsa6{word-spacing:104.565670pt;}
.ws81{word-spacing:105.892528pt;}
.ws1d{word-spacing:119.603108pt;}
.wsaa{word-spacing:123.311564pt;}
.ws68{word-spacing:124.844324pt;}
.ws72{word-spacing:132.376377pt;}
.wsb2{word-spacing:150.405375pt;}
.wsa4{word-spacing:155.694606pt;}
.ws91{word-spacing:195.020560pt;}
.ws69{word-spacing:200.321365pt;}
.ws1a{word-spacing:203.361652pt;}
.ws19{word-spacing:205.756600pt;}
.ws37{word-spacing:211.097561pt;}
.ws4e{word-spacing:211.110358pt;}
.ws84{word-spacing:214.665597pt;}
.ws97{word-spacing:217.678070pt;}
.ws7d{word-spacing:222.982620pt;}
.ws4f{word-spacing:223.919765pt;}
.ws85{word-spacing:227.811190pt;}
.ws9c{word-spacing:258.715797pt;}
.ws8e{word-spacing:306.297590pt;}
.ws86{word-spacing:311.582346pt;}
.ws6b{word-spacing:321.262546pt;}
.ws83{word-spacing:324.488199pt;}
.ws94{word-spacing:341.877328pt;}
.ws64{word-spacing:348.629517pt;}
.ws36{word-spacing:350.200801pt;}
.ws49{word-spacing:350.667006pt;}
.ws56{word-spacing:359.755918pt;}
.ws95{word-spacing:397.388157pt;}
.ws12{word-spacing:398.128615pt;}
.ws2d{word-spacing:511.185696pt;}
.ws54{word-spacing:515.040350pt;}
.ws2e{word-spacing:523.389902pt;}
.ws70{word-spacing:553.814291pt;}
.ws55{word-spacing:556.163888pt;}
.ws11{word-spacing:580.375882pt;}
.ws74{word-spacing:664.722814pt;}
.ws96{word-spacing:746.369569pt;}
.ws47{word-spacing:806.667857pt;}
.ws78{word-spacing:808.764808pt;}
.ws48{word-spacing:819.070961pt;}
.ws9f{word-spacing:2177.054231pt;}
._d{margin-left:-849.600774pt;}
._8b{margin-left:-675.016343pt;}
._45{margin-left:-664.820938pt;}
._82{margin-left:-637.688803pt;}
._6c{margin-left:-564.045041pt;}
._6f{margin-left:-562.216677pt;}
._3c{margin-left:-544.478597pt;}
._7b{margin-left:-432.806018pt;}
._9{margin-left:-422.962648pt;}
._b{margin-left:-415.959277pt;}
._a{margin-left:-409.818182pt;}
._7{margin-left:-405.550699pt;}
._8{margin-left:-398.610421pt;}
._55{margin-left:-396.702279pt;}
._21{margin-left:-380.663691pt;}
._47{margin-left:-377.419304pt;}
._42{margin-left:-364.910649pt;}
._32{margin-left:-363.938739pt;}
._ad{margin-left:-359.440069pt;}
._2e{margin-left:-352.752338pt;}
._2f{margin-left:-351.556378pt;}
._8f{margin-left:-349.414371pt;}
._80{margin-left:-347.634675pt;}
._7f{margin-left:-346.043113pt;}
._99{margin-left:-345.087547pt;}
._16{margin-left:-340.407625pt;}
._37{margin-left:-338.991009pt;}
._18{margin-left:-332.298050pt;}
._73{margin-left:-302.881190pt;}
._1d{margin-left:-297.883497pt;}
._7c{margin-left:-295.547436pt;}
._5e{margin-left:-288.828595pt;}
._25{margin-left:-286.802551pt;}
._b0{margin-left:-282.554200pt;}
._70{margin-left:-278.288691pt;}
._8a{margin-left:-276.916697pt;}
._69{margin-left:-267.879434pt;}
._14{margin-left:-266.608381pt;}
._8d{margin-left:-260.862969pt;}
._97{margin-left:-249.718864pt;}
._66{margin-left:-247.455991pt;}
._2a{margin-left:-237.878166pt;}
._9a{margin-left:-229.415066pt;}
._92{margin-left:-227.595476pt;}
._98{margin-left:-226.558752pt;}
._4f{margin-left:-225.407639pt;}
._96{margin-left:-222.282842pt;}
._85{margin-left:-217.634959pt;}
._29{margin-left:-215.247814pt;}
._52{margin-left:-213.252292pt;}
._6e{margin-left:-209.849176pt;}
._41{margin-left:-206.446436pt;}
._51{margin-left:-205.406247pt;}
._c2{margin-left:-203.974929pt;}
._6d{margin-left:-201.885380pt;}
._8e{margin-left:-200.956213pt;}
._5f{margin-left:-197.820118pt;}
._1a{margin-left:-194.159127pt;}
._79{margin-left:-193.110081pt;}
._76{margin-left:-192.072989pt;}
._8c{margin-left:-189.143209pt;}
._84{margin-left:-187.178631pt;}
._44{margin-left:-184.480627pt;}
._31{margin-left:-182.884704pt;}
._b2{margin-left:-181.993102pt;}
._1b{margin-left:-179.376222pt;}
._3a{margin-left:-178.486777pt;}
._19{margin-left:-176.276694pt;}
._4d{margin-left:-175.226847pt;}
._43{margin-left:-173.625601pt;}
._30{margin-left:-172.664238pt;}
._36{margin-left:-170.573337pt;}
._4e{margin-left:-169.420034pt;}
._af{margin-left:-167.717546pt;}
._3b{margin-left:-166.574861pt;}
._75{margin-left:-165.148867pt;}
._50{margin-left:-164.137829pt;}
._17{margin-left:-160.973315pt;}
._15{margin-left:-158.797326pt;}
._f{margin-left:-157.136473pt;}
._b6{margin-left:-155.220955pt;}
._1f{margin-left:-154.244033pt;}
._7e{margin-left:-152.614878pt;}
._53{margin-left:-151.683779pt;}
._11{margin-left:-150.185679pt;}
._60{margin-left:-147.882602pt;}
._10{margin-left:-145.937388pt;}
._74{margin-left:-143.994599pt;}
._72{margin-left:-141.522682pt;}
._5a{margin-left:-138.933007pt;}
._6a{margin-left:-134.159414pt;}
._12{margin-left:-132.161987pt;}
._65{margin-left:-130.671600pt;}
._1e{margin-left:-127.220634pt;}
._90{margin-left:-125.720081pt;}
._64{margin-left:-123.197562pt;}
._78{margin-left:-121.373657pt;}
._77{margin-left:-119.328968pt;}
._b7{margin-left:-114.721856pt;}
._20{margin-left:-113.706330pt;}
._c1{margin-left:-108.202801pt;}
._81{margin-left:-103.950405pt;}
._b1{margin-left:-102.676798pt;}
._c{margin-left:-100.052052pt;}
._35{margin-left:-98.496117pt;}
._e{margin-left:-94.889905pt;}
._7d{margin-left:-85.474869pt;}
._3d{margin-left:-83.651693pt;}
._87{margin-left:-77.719469pt;}
._7a{margin-left:-62.841318pt;}
._ae{margin-left:-54.195932pt;}
._ac{margin-left:-47.517137pt;}
._c3{margin-left:-46.499508pt;}
._88{margin-left:-41.814583pt;}
._d0{margin-left:-13.384991pt;}
._d2{margin-left:-2.964079pt;}
._57{margin-left:-2.016210pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.009068pt;}
._4{width:1.898022pt;}
._58{width:3.485009pt;}
._2{width:4.778667pt;}
._c7{width:10.005245pt;}
._34{width:36.107779pt;}
._24{width:40.187656pt;}
._63{width:41.586947pt;}
._2d{width:42.890208pt;}
._b5{width:50.142514pt;}
._cd{width:58.320529pt;}
._a1{width:59.370667pt;}
._23{width:64.487523pt;}
._a3{width:66.474667pt;}
._b4{width:68.582721pt;}
._ca{width:69.513467pt;}
._cf{width:70.438326pt;}
._5c{width:73.084377pt;}
._ce{width:74.228146pt;}
._9f{width:76.576210pt;}
._c8{width:85.709778pt;}
._4c{width:88.741416pt;}
._39{width:91.656261pt;}
._13{width:92.800000pt;}
._5{width:95.547732pt;}
._4b{width:97.436885pt;}
._a0{width:98.410667pt;}
._3f{width:100.987175pt;}
._2c{width:101.898033pt;}
._a2{width:105.514667pt;}
._c6{width:107.128332pt;}
._a4{width:110.570667pt;}
._aa{width:112.618667pt;}
._c9{width:114.921703pt;}
._40{width:117.015168pt;}
._cc{width:121.954894pt;}
._9d{width:124.778667pt;}
._a6{width:128.362667pt;}
._c5{width:130.054861pt;}
._a7{width:131.562667pt;}
._cb{width:137.218277pt;}
._9e{width:138.858667pt;}
._a8{width:140.778667pt;}
._4a{width:146.371041pt;}
._d1{width:148.329083pt;}
._a9{width:154.986667pt;}
._49{width:156.780799pt;}
._27{width:158.320129pt;}
._c4{width:165.204246pt;}
._a5{width:172.778667pt;}
._6{width:175.040000pt;}
._3{width:176.160000pt;}
._83{width:177.440000pt;}
._28{width:196.276893pt;}
._ab{width:316.200531pt;}
._91{width:341.280000pt;}
._46{width:455.840000pt;}
._9b{width:466.080000pt;}
._68{width:524.051423pt;}
._71{width:551.840000pt;}
._86{width:558.880000pt;}
._54{width:569.760000pt;}
._89{width:576.160000pt;}
._2b{width:579.360000pt;}
._5d{width:582.565503pt;}
._33{width:610.080000pt;}
._b3{width:630.560000pt;}
._1c{width:633.120000pt;}
._61{width:636.320000pt;}
._38{width:645.920000pt;}
._56{width:650.400000pt;}
._6b{width:660.000000pt;}
._3e{width:692.640000pt;}
._94{width:700.320000pt;}
._9c{width:735.520000pt;}
._22{width:737.440000pt;}
._48{width:738.720000pt;}
._b8{width:740.640000pt;}
._b9{width:744.885333pt;}
._67{width:764.960000pt;}
._ba{width:766.695466pt;}
._93{width:779.040000pt;}
._95{width:791.840000pt;}
._5b{width:806.026667pt;}
._59{width:819.466667pt;}
._62{width:820.746667pt;}
._26{width:827.680000pt;}
._bf{width:1152.245333pt;}
._be{width:1162.869333pt;}
._bc{width:1234.151466pt;}
._bd{width:1266.151466pt;}
._bb{width:1528.885333pt;}
._c0{width:1589.493333pt;}
.fs5{font-size:34.560000pt;}
.fs3c{font-size:36.750697pt;}
.fs39{font-size:36.852980pt;}
.fsa{font-size:36.887443pt;}
.fs6{font-size:36.944890pt;}
.fs18{font-size:37.040051pt;}
.fs51{font-size:37.040812pt;}
.fs1c{font-size:37.059028pt;}
.fs27{font-size:37.064049pt;}
.fs35{font-size:37.084334pt;}
.fs22{font-size:37.156115pt;}
.fs5c{font-size:37.169650pt;}
.fs4c{font-size:37.205391pt;}
.fs49{font-size:37.369404pt;}
.fs40{font-size:37.389704pt;}
.fs47{font-size:37.420377pt;}
.fs30{font-size:37.425494pt;}
.fs61{font-size:37.433405pt;}
.fs59{font-size:37.434055pt;}
.fs4e{font-size:37.442616pt;}
.fs64{font-size:37.465747pt;}
.fs10{font-size:37.486439pt;}
.fs56{font-size:37.609515pt;}
.fs2c{font-size:37.635594pt;}
.fs70{font-size:38.751916pt;}
.fs4{font-size:42.880000pt;}
.fs6a{font-size:43.267342pt;}
.fs72{font-size:43.358180pt;}
.fs74{font-size:43.750922pt;}
.fs6d{font-size:48.313046pt;}
.fs71{font-size:51.170465pt;}
.fs73{font-size:51.813781pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs6e{font-size:58.039965pt;}
.fs6f{font-size:58.168157pt;}
.fs3d{font-size:62.931282pt;}
.fs66{font-size:63.042741pt;}
.fs42{font-size:63.054657pt;}
.fs45{font-size:63.106430pt;}
.fs38{font-size:63.230148pt;}
.fs9{font-size:63.362807pt;}
.fs1d{font-size:63.459263pt;}
.fs7{font-size:63.461485pt;}
.fs34{font-size:63.516689pt;}
.fs28{font-size:63.556057pt;}
.fs17{font-size:63.588365pt;}
.fs52{font-size:63.610177pt;}
.fs23{font-size:63.713929pt;}
.fs4b{font-size:63.872212pt;}
.fs4a{font-size:63.990747pt;}
.fs2{font-size:64.000000pt;}
.fs31{font-size:64.030085pt;}
.fs3f{font-size:64.039717pt;}
.fs60{font-size:64.063316pt;}
.fs48{font-size:64.078031pt;}
.fsf{font-size:64.134354pt;}
.fs58{font-size:64.227123pt;}
.fs63{font-size:64.244874pt;}
.fs4d{font-size:64.336595pt;}
.fs55{font-size:64.623373pt;}
.fs2d{font-size:64.643647pt;}
.fs13{font-size:64.761340pt;}
.fs6b{font-size:64.945989pt;}
.fs6c{font-size:65.135401pt;}
.fs43{font-size:66.883769pt;}
.fs3a{font-size:66.990742pt;}
.fs5d{font-size:67.050125pt;}
.fsb{font-size:67.084158pt;}
.fs36{font-size:67.200250pt;}
.fs8{font-size:67.209229pt;}
.fs1e{font-size:67.298589pt;}
.fs1f{font-size:67.307486pt;}
.fs67{font-size:67.309394pt;}
.fs19{font-size:67.314106pt;}
.fs29{font-size:67.378191pt;}
.fs2a{font-size:67.503065pt;}
.fs24{font-size:67.542971pt;}
.fs32{font-size:67.845000pt;}
.fs68{font-size:67.944908pt;}
.fse{font-size:67.968462pt;}
.fs5b{font-size:68.027361pt;}
.fs14{font-size:68.849628pt;}
.fs1{font-size:74.880000pt;}
.fs41{font-size:83.190405pt;}
.fs44{font-size:83.298219pt;}
.fs37{font-size:83.421937pt;}
.fs3b{font-size:83.442295pt;}
.fs1b{font-size:83.763947pt;}
.fs26{font-size:83.808470pt;}
.fs50{font-size:83.919733pt;}
.fs33{font-size:83.920227pt;}
.fs16{font-size:83.922254pt;}
.fs20{font-size:84.016649pt;}
.fs3e{font-size:84.611267pt;}
.fs5e{font-size:84.643650pt;}
.fs2e{font-size:84.650736pt;}
.fsc{font-size:84.788585pt;}
.fs69{font-size:85.275684pt;}
.fs54{font-size:85.300530pt;}
.fs12{font-size:85.515837pt;}
.fs1a{font-size:86.811982pt;}
.fs25{font-size:86.867402pt;}
.fs15{font-size:86.900396pt;}
.fs21{font-size:87.083178pt;}
.fs2f{font-size:87.577974pt;}
.fsd{font-size:87.720590pt;}
.fs2b{font-size:88.273458pt;}
.fs11{font-size:88.627996pt;}
.fs53{font-size:95.287450pt;}
.fs62{font-size:96.092348pt;}
.fs46{font-size:96.111812pt;}
.fs5a{font-size:96.277850pt;}
.fs65{font-size:96.301577pt;}
.fs4f{font-size:96.499638pt;}
.fs5f{font-size:102.654726pt;}
.fs57{font-size:102.817853pt;}
.y53{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y282{bottom:1.808725pt;}
.y275{bottom:2.023940pt;}
.ye4{bottom:2.595858pt;}
.y296{bottom:2.929607pt;}
.y8e{bottom:3.380789pt;}
.y6f{bottom:3.477632pt;}
.y74{bottom:3.761478pt;}
.y70{bottom:3.767336pt;}
.y131{bottom:3.980487pt;}
.y1b4{bottom:3.993700pt;}
.ybd{bottom:4.063529pt;}
.yd4{bottom:4.078055pt;}
.yca{bottom:4.088184pt;}
.y143{bottom:4.092692pt;}
.y124{bottom:4.104083pt;}
.y129{bottom:4.124179pt;}
.y148{bottom:4.135657pt;}
.ybe{bottom:4.317531pt;}
.yd5{bottom:4.332966pt;}
.ycb{bottom:4.343729pt;}
.y22d{bottom:4.487203pt;}
.y1d6{bottom:4.489510pt;}
.y20a{bottom:4.540972pt;}
.y2b0{bottom:4.722527pt;}
.y2d4{bottom:4.749513pt;}
.y169{bottom:4.769773pt;}
.y15e{bottom:4.776279pt;}
.y17f{bottom:4.848465pt;}
.y10b{bottom:4.878793pt;}
.y111{bottom:5.103505pt;}
.ya6{bottom:5.345316pt;}
.yab{bottom:5.474915pt;}
.yad{bottom:5.539715pt;}
.yaf{bottom:5.669315pt;}
.y157{bottom:5.994426pt;}
.y1f2{bottom:6.017134pt;}
.y137{bottom:6.084011pt;}
.y1bd{bottom:6.102388pt;}
.y22f{bottom:6.378197pt;}
.y9c{bottom:6.467249pt;}
.y259{bottom:6.474196pt;}
.y9a{bottom:6.498346pt;}
.ye3{bottom:6.536756pt;}
.y9b{bottom:6.560538pt;}
.y258{bottom:6.568036pt;}
.y1c4{bottom:6.789097pt;}
.y23a{bottom:6.793671pt;}
.y18d{bottom:6.996135pt;}
.y19d{bottom:7.306056pt;}
.y1b0{bottom:7.316501pt;}
.y280{bottom:7.857663pt;}
.y2b6{bottom:7.970334pt;}
.y142{bottom:8.027954pt;}
.y123{bottom:8.050297pt;}
.y12a{bottom:8.059440pt;}
.y149{bottom:8.081871pt;}
.y141{bottom:8.122412pt;}
.yd6{bottom:8.124245pt;}
.ybf{bottom:8.127057pt;}
.ycc{bottom:8.144426pt;}
.y122{bottom:8.145018pt;}
.y128{bottom:8.153899pt;}
.ybb{bottom:8.158807pt;}
.y147{bottom:8.176592pt;}
.yd2{bottom:8.187973pt;}
.yc9{bottom:8.208312pt;}
.yd3{bottom:8.219837pt;}
.ybc{bottom:8.222308pt;}
.yc8{bottom:8.240255pt;}
.y2a6{bottom:8.770317pt;}
.y16c{bottom:8.771416pt;}
.y159{bottom:8.783380pt;}
.y2cd{bottom:8.792805pt;}
.y273{bottom:8.792895pt;}
.y1ea{bottom:8.844104pt;}
.y113{bottom:9.083584pt;}
.yb3{bottom:9.491969pt;}
.ya3{bottom:9.524369pt;}
.yb1{bottom:9.621569pt;}
.ya5{bottom:9.686368pt;}
.y1b7{bottom:10.064134pt;}
.y138{bottom:10.096864pt;}
.y6b{bottom:10.593783pt;}
.y181{bottom:10.966164pt;}
.y4e{bottom:11.040000pt;}
.y42{bottom:11.360000pt;}
.y177{bottom:11.519288pt;}
.y109{bottom:11.715656pt;}
.y12f{bottom:11.812128pt;}
.yef{bottom:11.813460pt;}
.y243{bottom:11.832697pt;}
.y245{bottom:11.896493pt;}
.yf1{bottom:12.036252pt;}
.y77{bottom:12.184741pt;}
.y6a{bottom:12.203717pt;}
.y22c{bottom:12.371732pt;}
.y211{bottom:13.075359pt;}
.y1b6{bottom:14.186170pt;}
.ye5{bottom:14.888007pt;}
.yf3{bottom:15.889236pt;}
.y8d{bottom:15.915111pt;}
.yee{bottom:15.920432pt;}
.y8c{bottom:15.946357pt;}
.y15d{bottom:15.963239pt;}
.y1e7{bottom:15.971148pt;}
.yed{bottom:15.984124pt;}
.y8b{bottom:16.010153pt;}
.y75{bottom:16.138617pt;}
.y6d{bottom:16.163751pt;}
.yd7{bottom:16.407940pt;}
.ydd{bottom:16.448697pt;}
.yaa{bottom:16.974883pt;}
.y1dd{bottom:17.059511pt;}
.y20d{bottom:17.101116pt;}
.y1bc{bottom:17.188520pt;}
.y15c{bottom:17.278352pt;}
.y1f5{bottom:17.343804pt;}
.y156{bottom:17.598951pt;}
.y1bb{bottom:18.530579pt;}
.ya7{bottom:18.854075pt;}
.y2af{bottom:20.284377pt;}
.y29a{bottom:20.669770pt;}
.y2c0{bottom:20.917718pt;}
.y16f{bottom:21.256198pt;}
.y15b{bottom:21.285191pt;}
.y1f0{bottom:21.332985pt;}
.y1ef{bottom:21.397347pt;}
.y1ee{bottom:21.430186pt;}
.y1e6{bottom:21.542602pt;}
.ya9{bottom:21.575663pt;}
.y1b9{bottom:22.492846pt;}
.y1ae{bottom:22.588056pt;}
.y6e{bottom:22.604539pt;}
.yf2{bottom:23.053950pt;}
.y1d9{bottom:23.217272pt;}
.y191{bottom:23.461256pt;}
.yf0{bottom:24.231605pt;}
.y244{bottom:24.271064pt;}
.y214{bottom:24.379081pt;}
.y1b3{bottom:25.336080pt;}
.yf4{bottom:25.983788pt;}
.y8f{bottom:26.026101pt;}
.y76{bottom:26.106316pt;}
.y78{bottom:26.523660pt;}
.y6c{bottom:26.564967pt;}
.y178{bottom:26.812674pt;}
.y10a{bottom:26.961443pt;}
.y130{bottom:27.183457pt;}
.y16b{bottom:27.402017pt;}
.y160{bottom:27.439394pt;}
.y20f{bottom:27.471165pt;}
.y22e{bottom:27.499426pt;}
.y158{bottom:28.465312pt;}
.y1f3{bottom:28.508780pt;}
.y1bf{bottom:28.562759pt;}
.y230{bottom:28.653412pt;}
.y1c8{bottom:29.289559pt;}
.y16a{bottom:29.322994pt;}
.yae{bottom:29.415107pt;}
.yb0{bottom:29.544706pt;}
.y18e{bottom:29.579619pt;}
.y1b1{bottom:29.617885pt;}
.y1f4{bottom:29.700149pt;}
.y1a5{bottom:29.707457pt;}
.y20b{bottom:30.498830pt;}
.y1b2{bottom:30.768221pt;}
.y1a1{bottom:30.930651pt;}
.y16e{bottom:31.403399pt;}
.y15a{bottom:31.446234pt;}
.y1e9{bottom:31.586559pt;}
.yac{bottom:32.233234pt;}
.ya8{bottom:32.331094pt;}
.y1b8{bottom:32.556328pt;}
.y116{bottom:32.932347pt;}
.y16d{bottom:33.324376pt;}
.y1c5{bottom:33.330500pt;}
.yb4{bottom:33.334829pt;}
.ya2{bottom:33.367890pt;}
.yb2{bottom:33.464428pt;}
.y182{bottom:33.548719pt;}
.ya4{bottom:33.562289pt;}
.y19f{bottom:33.730465pt;}
.y1db{bottom:34.536609pt;}
.y216{bottom:34.653160pt;}
.y1dc{bottom:34.825908pt;}
.y2c2{bottom:35.144595pt;}
.y1b5{bottom:35.528681pt;}
.y2ae{bottom:36.493889pt;}
.y2d3{bottom:36.520875pt;}
.y27e{bottom:36.857523pt;}
.y2bf{bottom:37.836504pt;}
.y1d7{bottom:38.544913pt;}
.y1d5{bottom:38.609057pt;}
.y15f{bottom:38.627663pt;}
.y1e8{bottom:38.713206pt;}
.y212{bottom:39.096716pt;}
.y1ba{bottom:39.330528pt;}
.y1be{bottom:39.681367pt;}
.y1c7{bottom:40.573047pt;}
.y112{bottom:40.860796pt;}
.y1a4{bottom:40.939559pt;}
.y1f1{bottom:41.541590pt;}
.y2a4{bottom:41.913551pt;}
.y179{bottom:42.140464pt;}
.y10e{bottom:42.207755pt;}
.y1a3{bottom:42.291510pt;}
.y134{bottom:42.555314pt;}
.y271{bottom:44.612137pt;}
.y110{bottom:44.937049pt;}
.y108{bottom:45.001252pt;}
.y136{bottom:45.307082pt;}
.y12e{bottom:45.371814pt;}
.y213{bottom:45.441272pt;}
.y1da{bottom:45.760385pt;}
.y2e4{bottom:45.961431pt;}
.y1ca{bottom:45.971966pt;}
.y19e{bottom:46.282986pt;}
.y1af{bottom:46.295145pt;}
.y192{bottom:48.517855pt;}
.y210{bottom:48.693744pt;}
.y1de{bottom:48.967552pt;}
.y1{bottom:50.432000pt;}
.y1a7{bottom:52.462021pt;}
.y20c{bottom:52.719237pt;}
.y2ad{bottom:52.730386pt;}
.y2d2{bottom:52.739381pt;}
.y117{bottom:52.799984pt;}
.y1a2{bottom:53.492079pt;}
.y277{bottom:53.779148pt;}
.y10c{bottom:54.116806pt;}
.y299{bottom:54.164941pt;}
.y13b{bottom:54.174039pt;}
.y132{bottom:54.562431pt;}
.y2be{bottom:54.755290pt;}
.y1d8{bottom:54.867431pt;}
.y215{bottom:55.746902pt;}
.y1c6{bottom:56.123146pt;}
.y1c3{bottom:56.219484pt;}
.y1a0{bottom:56.485029pt;}
.y114{bottom:56.780587pt;}
.y17a{bottom:57.433717pt;}
.y29c{bottom:57.452913pt;}
.y189{bottom:57.759162pt;}
.y139{bottom:58.187420pt;}
.y20e{bottom:59.128211pt;}
.y18b{bottom:59.678622pt;}
.y266{bottom:60.173988pt;}
.y2dc{bottom:61.523281pt;}
.y1a6{bottom:63.662591pt;}
.y10d{bottom:64.259613pt;}
.y1c9{bottom:64.560027pt;}
.y18f{bottom:65.276274pt;}
.y188{bottom:65.731897pt;}
.y133{bottom:65.759737pt;}
.y217{bottom:66.600747pt;}
.y2ac{bottom:68.948893pt;}
.y2d1{bottom:68.975879pt;}
.y183{bottom:69.278582pt;}
.y298{bottom:70.896250pt;}
.y2bd{bottom:71.674075pt;}
.y187{bottom:72.142497pt;}
.y17b{bottom:72.728298pt;}
.y118{bottom:76.649534pt;}
.y13c{bottom:78.251683pt;}
.y10f{bottom:79.505925pt;}
.y115{bottom:80.628827pt;}
.y278{bottom:80.967897pt;}
.y18a{bottom:81.058359pt;}
.y135{bottom:81.131594pt;}
.y193{bottom:81.741129pt;}
.y18c{bottom:82.229960pt;}
.y13a{bottom:82.232038pt;}
.y267{bottom:83.156952pt;}
.y2ab{bottom:84.510743pt;}
.y29d{bottom:85.180892pt;}
.y195{bottom:87.826284pt;}
.y17c{bottom:88.021551pt;}
.y2bc{bottom:88.625906pt;}
.y2dd{bottom:90.600554pt;}
.y184{bottom:91.828592pt;}
.y40{bottom:97.632000pt;}
.y206{bottom:98.432000pt;}
.y16{bottom:99.552000pt;}
.y2aa{bottom:100.747241pt;}
.y255{bottom:101.632000pt;}
.y3f{bottom:102.272000pt;}
.y294{bottom:103.072000pt;}
.y17d{bottom:103.348013pt;}
.y174{bottom:105.152000pt;}
.y268{bottom:105.469767pt;}
.y229{bottom:105.472000pt;}
.y2bb{bottom:105.544691pt;}
.y67{bottom:105.632000pt;}
.y265{bottom:107.680000pt;}
.y279{bottom:108.163078pt;}
.y190{bottom:108.587011pt;}
.y2c3{bottom:110.210285pt;}
.y185{bottom:112.557439pt;}
.y153{bottom:112.672000pt;}
.y29e{bottom:112.908872pt;}
.y3e{bottom:113.632000pt;}
.y2a9{bottom:116.956752pt;}
.y2d0{bottom:116.983738pt;}
.y272{bottom:118.492338pt;}
.y88{bottom:118.592000pt;}
.y17e{bottom:118.642594pt;}
.y2de{bottom:118.980692pt;}
.y2cb{bottom:119.655339pt;}
.y2b3{bottom:120.919377pt;}
.y2ba{bottom:122.463477pt;}
.y264{bottom:123.232000pt;}
.y5b{bottom:124.032000pt;}
.y297{bottom:124.778072pt;}
.y194{bottom:125.053194pt;}
.y269{bottom:128.452732pt;}
.y207{bottom:130.272000pt;}
.y105{bottom:131.072000pt;}
.y196{bottom:131.105141pt;}
.y56{bottom:132.672000pt;}
.y1e5{bottom:133.152000pt;}
.y180{bottom:133.937175pt;}
.y27a{bottom:134.747311pt;}
.y186{bottom:135.106120pt;}
.y2c4{bottom:135.217189pt;}
.y205{bottom:135.226667pt;}
.ye0{bottom:135.546667pt;}
.y15{bottom:136.346667pt;}
.y293{bottom:137.466667pt;}
.y254{bottom:138.426667pt;}
.y2b9{bottom:139.376976pt;}
.y9f{bottom:139.866667pt;}
.y29f{bottom:140.614363pt;}
.y173{bottom:141.946667pt;}
.y228{bottom:142.266667pt;}
.y66{bottom:142.426667pt;}
.y2df{bottom:148.062462pt;}
.y152{bottom:149.466667pt;}
.y12b{bottom:150.266667pt;}
.y26a{bottom:151.453687pt;}
.y87{bottom:155.386667pt;}
.y2b8{bottom:156.295761pt;}
.y263{bottom:160.026667pt;}
.y2c5{bottom:160.224094pt;}
.y32{bottom:160.826667pt;}
.y27b{bottom:161.942491pt;}
.y55{bottom:167.066667pt;}
.y104{bottom:167.866667pt;}
.y2a0{bottom:168.346840pt;}
.y22a{bottom:169.466667pt;}
.y1e4{bottom:169.946667pt;}
.y204{bottom:172.026667pt;}
.ydf{bottom:172.346667pt;}
.y14{bottom:173.146667pt;}
.y2b7{bottom:173.254200pt;}
.y292{bottom:174.266667pt;}
.y26b{bottom:174.436651pt;}
.y253{bottom:175.226667pt;}
.y9e{bottom:176.666667pt;}
.y2e0{bottom:177.135238pt;}
.y172{bottom:178.746667pt;}
.y227{bottom:179.066667pt;}
.y65{bottom:179.226667pt;}
.y127{bottom:183.146667pt;}
.y2c6{bottom:185.257984pt;}
.y151{bottom:186.266667pt;}
.y27c{bottom:189.129633pt;}
.y126{bottom:191.066667pt;}
.y86{bottom:192.186667pt;}
.y2b4{bottom:195.129662pt;}
.y1c0{bottom:196.186667pt;}
.y26c{bottom:196.744968pt;}
.y262{bottom:196.826667pt;}
.y31{bottom:197.626667pt;}
.y54{bottom:203.866667pt;}
.y103{bottom:204.666667pt;}
.y2e1{bottom:205.542361pt;}
.y3d{bottom:206.266667pt;}
.y1e3{bottom:206.746667pt;}
.y203{bottom:208.826667pt;}
.yde{bottom:209.146667pt;}
.y295{bottom:209.476025pt;}
.y4c{bottom:209.946667pt;}
.y2c7{bottom:210.264888pt;}
.y291{bottom:211.066667pt;}
.y252{bottom:212.026667pt;}
.y9d{bottom:213.466667pt;}
.y171{bottom:215.546667pt;}
.y226{bottom:215.866667pt;}
.y64{bottom:216.026667pt;}
.y27d{bottom:216.324814pt;}
.y26d{bottom:219.727933pt;}
.y150{bottom:223.066667pt;}
.y2a1{bottom:224.477445pt;}
.y85{bottom:228.986667pt;}
.y125{bottom:229.146667pt;}
.y1ad{bottom:229.213333pt;}
.y261{bottom:233.626667pt;}
.y30{bottom:234.426667pt;}
.y2e2{bottom:234.615136pt;}
.y2c8{bottom:235.289783pt;}
.y3c{bottom:240.666667pt;}
.y102{bottom:241.466667pt;}
.ydc{bottom:242.013333pt;}
.y26e{bottom:242.710897pt;}
.y1e2{bottom:243.586667pt;}
.y202{bottom:245.666667pt;}
.y99{bottom:246.346667pt;}
.y4b{bottom:246.786667pt;}
.y290{bottom:247.906667pt;}
.y251{bottom:248.866667pt;}
.y2b2{bottom:249.186667pt;}
.ydb{bottom:249.986667pt;}
.y13{bottom:250.146667pt;}
.y1ac{bottom:251.906667pt;}
.y2a2{bottom:252.182936pt;}
.y170{bottom:252.386667pt;}
.y225{bottom:252.706667pt;}
.y63{bottom:252.866667pt;}
.y98{bottom:253.026667pt;}
.y274{bottom:255.742462pt;}
.y14f{bottom:259.906667pt;}
.y2c9{bottom:260.296687pt;}
.y121{bottom:262.146667pt;}
.y2e3{bottom:263.669921pt;}
.y26f{bottom:265.046200pt;}
.y84{bottom:265.826667pt;}
.y120{bottom:270.146667pt;}
.y260{bottom:270.466667pt;}
.y2f{bottom:271.266667pt;}
.y3b{bottom:277.506667pt;}
.y2a3{bottom:279.906418pt;}
.y1e1{bottom:280.386667pt;}
.y101{bottom:281.666667pt;}
.y201{bottom:282.466667pt;}
.y4a{bottom:283.586667pt;}
.y28f{bottom:284.706667pt;}
.y2ca{bottom:285.330578pt;}
.y168{bottom:285.346667pt;}
.y250{bottom:285.666667pt;}
.y2ee{bottom:285.986667pt;}
.y270{bottom:288.029164pt;}
.y224{bottom:289.506667pt;}
.y62{bottom:289.666667pt;}
.yda{bottom:290.946667pt;}
.y97{bottom:291.266667pt;}
.y14e{bottom:296.706667pt;}
.y83{bottom:302.626667pt;}
.y167{bottom:306.626667pt;}
.y25f{bottom:307.266667pt;}
.y2e{bottom:308.066667pt;}
.y2b5{bottom:308.078705pt;}
.y11f{bottom:308.226667pt;}
.y1ab{bottom:308.386667pt;}
.y3a{bottom:314.306667pt;}
.y2b1{bottom:316.706667pt;}
.y1e0{bottom:317.186667pt;}
.y200{bottom:319.266667pt;}
.y49{bottom:320.386667pt;}
.y100{bottom:321.186667pt;}
.y28e{bottom:321.506667pt;}
.y24f{bottom:322.466667pt;}
.y12{bottom:323.426667pt;}
.y223{bottom:326.146667pt;}
.y61{bottom:326.466667pt;}
.yd9{bottom:327.746667pt;}
.y96{bottom:328.066667pt;}
.y14d{bottom:333.506667pt;}
.y82{bottom:339.426667pt;}
.y29b{bottom:340.413333pt;}
.y25e{bottom:344.066667pt;}
.y2d{bottom:344.866667pt;}
.y11e{bottom:345.026667pt;}
.y1aa{bottom:345.186667pt;}
.y2a5{bottom:348.527174pt;}
.y11{bottom:351.106667pt;}
.y45{bottom:353.826667pt;}
.y1df{bottom:353.986667pt;}
.y1ff{bottom:356.066667pt;}
.y166{bottom:356.866667pt;}
.y48{bottom:357.186667pt;}
.yff{bottom:357.986667pt;}
.y28d{bottom:358.306667pt;}
.y24e{bottom:359.266667pt;}
.y2da{bottom:359.586667pt;}
.y222{bottom:362.946667pt;}
.y60{bottom:363.266667pt;}
.yd8{bottom:364.546667pt;}
.y95{bottom:364.866667pt;}
.y14c{bottom:370.306667pt;}
.y81{bottom:376.226667pt;}
.y10{bottom:378.626667pt;}
.y25d{bottom:380.866667pt;}
.y2c{bottom:381.666667pt;}
.y11d{bottom:381.826667pt;}
.y1a9{bottom:381.986667pt;}
.y1d4{bottom:386.946667pt;}
.y39{bottom:387.746667pt;}
.y1fe{bottom:392.866667pt;}
.y165{bottom:393.666667pt;}
.y47{bottom:393.986667pt;}
.yfe{bottom:394.786667pt;}
.y28c{bottom:395.106667pt;}
.y24d{bottom:396.066667pt;}
.yd1{bottom:397.546667pt;}
.y221{bottom:399.746667pt;}
.y5f{bottom:400.066667pt;}
.y94{bottom:401.666667pt;}
.y1d3{bottom:404.226667pt;}
.yd0{bottom:405.506667pt;}
.y14b{bottom:407.106667pt;}
.y22b{bottom:407.746667pt;}
.y80{bottom:413.026667pt;}
.y25c{bottom:417.666667pt;}
.y2b{bottom:418.466667pt;}
.y11c{bottom:418.626667pt;}
.y1a8{bottom:418.786667pt;}
.y38{bottom:424.546667pt;}
.y46{bottom:426.946667pt;}
.y1fd{bottom:429.666667pt;}
.y164{bottom:430.466667pt;}
.y2d9{bottom:430.786667pt;}
.yfd{bottom:431.586667pt;}
.y28b{bottom:431.906667pt;}
.y24c{bottom:432.866667pt;}
.y220{bottom:436.546667pt;}
.y44{bottom:436.866667pt;}
.y93{bottom:438.466667pt;}
.y14a{bottom:443.906667pt;}
.y43{bottom:444.866667pt;}
.ycf{bottom:446.466667pt;}
.y7f{bottom:449.826667pt;}
.y19c{bottom:451.613333pt;}
.y25b{bottom:454.466667pt;}
.y2a{bottom:455.266667pt;}
.y11b{bottom:455.426667pt;}
.yf{bottom:461.346667pt;}
.y1fc{bottom:466.466667pt;}
.y163{bottom:467.266667pt;}
.y2d8{bottom:467.586667pt;}
.yfc{bottom:468.386667pt;}
.y28a{bottom:468.706667pt;}
.y24b{bottom:469.666667pt;}
.y21f{bottom:473.346667pt;}
.y5e{bottom:473.666667pt;}
.y92{bottom:475.266667pt;}
.y146{bottom:476.880000pt;}
.y1d2{bottom:478.466667pt;}
.yce{bottom:483.266667pt;}
.y2a8{bottom:483.753269pt;}
.y145{bottom:484.866667pt;}
.y7e{bottom:486.626667pt;}
.ye{bottom:489.026667pt;}
.y25a{bottom:491.266667pt;}
.y29{bottom:492.066667pt;}
.y11a{bottom:492.226667pt;}
.y37{bottom:498.173333pt;}
.y2a7{bottom:499.288134pt;}
.y1fb{bottom:503.293333pt;}
.y162{bottom:504.093333pt;}
.y2d7{bottom:504.413333pt;}
.yfb{bottom:505.213333pt;}
.y289{bottom:505.533333pt;}
.y24a{bottom:506.493333pt;}
.y5d{bottom:506.813333pt;}
.y21e{bottom:510.173333pt;}
.y91{bottom:512.093333pt;}
.y52{bottom:514.813333pt;}
.y1d1{bottom:515.293333pt;}
.yd{bottom:516.573333pt;}
.ycd{bottom:520.093333pt;}
.y144{bottom:522.973333pt;}
.y7d{bottom:523.453333pt;}
.y257{bottom:524.213333pt;}
.y28{bottom:528.893333pt;}
.y119{bottom:529.053333pt;}
.y256{bottom:530.973333pt;}
.y36{bottom:534.973333pt;}
.y5c{bottom:537.373333pt;}
.y1fa{bottom:540.093333pt;}
.y161{bottom:540.893333pt;}
.y2d6{bottom:541.213333pt;}
.yfa{bottom:542.013333pt;}
.y288{bottom:542.333333pt;}
.y249{bottom:543.293333pt;}
.yc{bottom:544.253333pt;}
.y21d{bottom:546.973333pt;}
.y19b{bottom:548.573333pt;}
.y90{bottom:548.893333pt;}
.y1d0{bottom:552.093333pt;}
.yc7{bottom:553.013333pt;}
.y140{bottom:555.946667pt;}
.y7c{bottom:560.253333pt;}
.yc6{bottom:561.053333pt;}
.y107{bottom:562.013333pt;}
.y13f{bottom:563.933333pt;}
.y27{bottom:565.693333pt;}
.yb{bottom:571.773333pt;}
.y155{bottom:573.813333pt;}
.y2d5{bottom:574.173333pt;}
.y51{bottom:574.813333pt;}
.y1f9{bottom:576.893333pt;}
.y2ed{bottom:578.013333pt;}
.yf9{bottom:578.813333pt;}
.y287{bottom:579.133333pt;}
.y248{bottom:580.093333pt;}
.y41{bottom:580.893333pt;}
.y8a{bottom:581.813333pt;}
.y21c{bottom:583.773333pt;}
.y19a{bottom:585.373333pt;}
.y1cf{bottom:588.893333pt;}
.y154{bottom:595.133333pt;}
.y7b{bottom:597.053333pt;}
.y89{bottom:597.853333pt;}
.ya{bottom:599.453333pt;}
.yc5{bottom:602.013333pt;}
.y26{bottom:602.493333pt;}
.y2c1{bottom:606.013333pt;}
.y106{bottom:607.293333pt;}
.y35{bottom:608.573333pt;}
.y2cc{bottom:609.382159pt;}
.y1f8{bottom:613.693333pt;}
.y2ec{bottom:614.813333pt;}
.yf8{bottom:615.613333pt;}
.y286{bottom:615.933333pt;}
.y247{bottom:616.893333pt;}
.y21b{bottom:620.573333pt;}
.y199{bottom:622.173333pt;}
.y1ce{bottom:625.693333pt;}
.y9{bottom:626.973333pt;}
.y7a{bottom:633.853333pt;}
.yc4{bottom:638.813333pt;}
.y5a{bottom:639.293333pt;}
.y25{bottom:642.653333pt;}
.y34{bottom:645.373333pt;}
.y2eb{bottom:647.773333pt;}
.y2e9{bottom:648.893333pt;}
.y1f7{bottom:650.493333pt;}
.yf7{bottom:652.413333pt;}
.y285{bottom:652.733333pt;}
.y246{bottom:653.693333pt;}
.y21a{bottom:657.373333pt;}
.y198{bottom:658.973333pt;}
.y1cd{bottom:662.493333pt;}
.y8{bottom:663.773333pt;}
.y79{bottom:670.653333pt;}
.yc3{bottom:675.613333pt;}
.y59{bottom:676.093333pt;}
.y24{bottom:682.173333pt;}
.y242{bottom:686.613333pt;}
.y1f6{bottom:687.293333pt;}
.y2e8{bottom:688.413333pt;}
.yf6{bottom:689.213333pt;}
.y284{bottom:689.533333pt;}
.y219{bottom:694.173333pt;}
.y197{bottom:695.773333pt;}
.y4f{bottom:699.293333pt;}
.y7{bottom:700.573333pt;}
.y241{bottom:702.653333pt;}
.y73{bottom:703.613333pt;}
.yc2{bottom:708.546667pt;}
.y13e{bottom:712.413333pt;}
.y58{bottom:712.893333pt;}
.yc1{bottom:716.573333pt;}
.y2ce{bottom:717.572912pt;}
.y23{bottom:718.973333pt;}
.y72{bottom:719.613333pt;}
.y1ed{bottom:720.213333pt;}
.y2e7{bottom:721.373333pt;}
.y283{bottom:722.653333pt;}
.y2cf{bottom:722.970085pt;}
.yf5{bottom:726.013333pt;}
.y176{bottom:728.746667pt;}
.y4d{bottom:730.813333pt;}
.y218{bottom:730.973333pt;}
.y1cc{bottom:736.093333pt;}
.y2db{bottom:740.946667pt;}
.y1ec{bottom:741.533333pt;}
.y13d{bottom:749.253333pt;}
.y237{bottom:749.733333pt;}
.y240{bottom:750.213333pt;}
.y276{bottom:753.020031pt;}
.y57{bottom:753.093333pt;}
.y2e5{bottom:753.108298pt;}
.yc0{bottom:754.853333pt;}
.y22{bottom:755.813333pt;}
.y27f{bottom:758.466277pt;}
.yec{bottom:758.946667pt;}
.y209{bottom:763.946667pt;}
.y71{bottom:768.453333pt;}
.y1cb{bottom:772.933333pt;}
.y6{bottom:774.213333pt;}
.yeb{bottom:775.013333pt;}
.y208{bottom:781.253333pt;}
.y12d{bottom:782.013333pt;}
.y236{bottom:786.533333pt;}
.y23f{bottom:787.013333pt;}
.yba{bottom:787.746667pt;}
.y21{bottom:792.613333pt;}
.yb9{bottom:795.813333pt;}
.y1eb{bottom:797.253333pt;}
.y175{bottom:800.773333pt;}
.y69{bottom:801.346667pt;}
.y1c2{bottom:805.680000pt;}
.y5{bottom:811.013333pt;}
.y68{bottom:817.413333pt;}
.yea{bottom:822.533333pt;}
.y235{bottom:823.333333pt;}
.y23e{bottom:823.813333pt;}
.y2ea{bottom:826.693333pt;}
.y12c{bottom:827.333333pt;}
.y20{bottom:829.413333pt;}
.yb8{bottom:834.053333pt;}
.y1c1{bottom:839.013333pt;}
.y50{bottom:856.453333pt;}
.ye9{bottom:859.333333pt;}
.y234{bottom:860.133333pt;}
.y23d{bottom:860.613333pt;}
.y281{bottom:861.786016pt;}
.y1f{bottom:866.213333pt;}
.yb7{bottom:870.853333pt;}
.y2e6{bottom:884.286602pt;}
.y4{bottom:884.613333pt;}
.ye8{bottom:896.133333pt;}
.y233{bottom:896.933333pt;}
.y23c{bottom:897.413333pt;}
.y1e{bottom:903.013333pt;}
.yb6{bottom:907.653333pt;}
.ye7{bottom:932.933333pt;}
.y232{bottom:933.733333pt;}
.y23b{bottom:934.213333pt;}
.y1d{bottom:939.813333pt;}
.yb5{bottom:944.453333pt;}
.y239{bottom:967.146667pt;}
.y3{bottom:967.813333pt;}
.ye6{bottom:969.733333pt;}
.y231{bottom:970.533333pt;}
.y238{bottom:973.893333pt;}
.y1c{bottom:976.613333pt;}
.ya1{bottom:977.213333pt;}
.ya0{bottom:998.560000pt;}
.ye2{bottom:1002.613333pt;}
.ye1{bottom:1009.440000pt;}
.y2{bottom:1010.720000pt;}
.y1b{bottom:1013.440000pt;}
.y33{bottom:1019.520000pt;}
.y1a{bottom:1063.200000pt;}
.y19{bottom:1064.254667pt;}
.y18{bottom:1080.254667pt;}
.y17{bottom:1096.254667pt;}
.hd{height:14.240000pt;}
.hda{height:15.754774pt;}
.h22{height:22.665961pt;}
.h60{height:23.801000pt;}
.h5a{height:23.867242pt;}
.h2f{height:24.000685pt;}
.he3{height:24.915556pt;}
.h47{height:25.334253pt;}
.hd6{height:25.985345pt;}
.hc{height:26.240000pt;}
.hb{height:26.272000pt;}
.ha{height:26.400000pt;}
.h3e{height:26.666804pt;}
.h37{height:26.733044pt;}
.hde{height:28.402626pt;}
.hdd{height:29.054785pt;}
.hd0{height:29.077273pt;}
.h9{height:33.918750pt;}
.h96{height:34.309775pt;}
.hae{height:34.429114pt;}
.h77{height:34.661355pt;}
.hb9{height:34.673422pt;}
.ha8{height:34.674025pt;}
.h91{height:34.681955pt;}
.ha2{height:34.836548pt;}
.h62{height:36.050854pt;}
.h64{height:36.068799pt;}
.h71{height:36.151190pt;}
.h73{height:36.169184pt;}
.h11{height:36.241349pt;}
.hf{height:36.259389pt;}
.h2c{height:36.334698pt;}
.h99{height:36.335445pt;}
.h32{height:36.353314pt;}
.h94{height:36.353531pt;}
.h41{height:36.358239pt;}
.h44{height:36.376337pt;}
.h56{height:36.378138pt;}
.h59{height:36.396245pt;}
.h3a{height:36.448553pt;}
.had{height:36.461830pt;}
.hb0{height:36.479979pt;}
.h85{height:36.496890pt;}
.h88{height:36.515056pt;}
.h7f{height:36.657780pt;}
.h69{height:36.677693pt;}
.h6b{height:36.695950pt;}
.h7a{height:36.707782pt;}
.h4e{height:36.712801pt;}
.hb7{height:36.720562pt;}
.ha6{height:36.721200pt;}
.h7d{height:36.726053pt;}
.h8c{height:36.729598pt;}
.hb5{height:36.738840pt;}
.hab{height:36.739478pt;}
.h8e{height:36.747880pt;}
.hbc{height:36.752288pt;}
.hc1{height:36.770581pt;}
.hc8{height:36.772586pt;}
.h9e{height:36.893318pt;}
.ha0{height:36.911682pt;}
.h49{height:36.918901pt;}
.hcd{height:36.937278pt;}
.h5{height:37.057292pt;}
.h95{height:40.464237pt;}
.hb8{height:40.737940pt;}
.h4b{height:41.267299pt;}
.h1c{height:41.334500pt;}
.h7{height:42.084375pt;}
.h15{height:42.533662pt;}
.he{height:42.599902pt;}
.hc2{height:45.000250pt;}
.hcf{height:45.126485pt;}
.h58{height:48.336201pt;}
.h7e{height:49.267177pt;}
.h75{height:49.334379pt;}
.hd5{height:50.388997pt;}
.h27{height:50.731571pt;}
.h2{height:52.108438pt;}
.h8{height:52.134375pt;}
.hdb{height:53.369196pt;}
.he2{height:54.040155pt;}
.hb1{height:54.733337pt;}
.h92{height:56.935099pt;}
.hd7{height:56.963052pt;}
.h65{height:58.291329pt;}
.hd3{height:58.392869pt;}
.hc3{height:58.394570pt;}
.h6f{height:58.405607pt;}
.h74{height:58.453563pt;}
.h5f{height:58.568159pt;}
.h1b{height:58.691037pt;}
.h14{height:58.782440pt;}
.h55{height:58.833574pt;}
.h2b{height:58.899965pt;}
.h97{height:58.920169pt;}
.h84{height:59.162884pt;}
.h81{height:59.272679pt;}
.h50{height:59.309117pt;}
.h68{height:59.318038pt;}
.h78{height:59.353528pt;}
.ha9{height:59.491627pt;}
.hbf{height:59.508069pt;}
.h8f{height:59.593028pt;}
.ha1{height:59.858662pt;}
.hd2{height:60.178486pt;}
.haa{height:61.370522pt;}
.h63{height:61.732884pt;}
.hc4{height:61.842220pt;}
.h6d{height:61.884697pt;}
.h72{height:61.904696pt;}
.h6e{height:61.952398pt;}
.h5e{height:62.051483pt;}
.h5c{height:62.056932pt;}
.haf{height:62.106488pt;}
.h1a{height:62.138012pt;}
.h19{height:62.156191pt;}
.h16{height:62.187130pt;}
.h57{height:62.245544pt;}
.h12{height:62.252990pt;}
.h13{height:62.253861pt;}
.h35{height:62.281797pt;}
.h10{height:62.283977pt;}
.h34{height:62.336632pt;}
.h36{height:62.344874pt;}
.hc7{height:62.346641pt;}
.h2e{height:62.351005pt;}
.h2d{height:62.377454pt;}
.h9a{height:62.398850pt;}
.h43{height:62.410366pt;}
.h46{height:62.526032pt;}
.h3c{height:62.562996pt;}
.h86{height:62.655896pt;}
.h87{height:62.687083pt;}
.h80{height:62.772173pt;}
.h6{height:62.781250pt;}
.h82{height:62.803418pt;}
.h4{height:62.812500pt;}
.h6a{height:62.820211pt;}
.h51{height:62.842027pt;}
.h4f{height:62.842757pt;}
.hd8{height:62.843134pt;}
.h7c{height:62.857795pt;}
.hb4{height:62.874642pt;}
.hca{height:62.935298pt;}
.h21{height:62.944361pt;}
.h1f{height:62.957115pt;}
.ha5{height:63.004048pt;}
.hac{height:63.011672pt;}
.hbb{height:63.021461pt;}
.h8a{height:63.111436pt;}
.h8d{height:63.142850pt;}
.h9d{height:63.392752pt;}
.h9f{height:63.424307pt;}
.hcc{height:63.444204pt;}
.h25{height:63.528092pt;}
.hd1{height:63.740936pt;}
.h26{height:63.773313pt;}
.hdf{height:63.926834pt;}
.hc6{height:64.818183pt;}
.h52{height:66.383438pt;}
.hc5{height:66.404375pt;}
.ha3{height:69.265648pt;}
.hd9{height:69.453371pt;}
.h3d{height:69.683780pt;}
.h20{height:70.196401pt;}
.hb6{height:71.213769pt;}
.h90{height:74.574960pt;}
.h89{height:74.734403pt;}
.h9b{height:75.067528pt;}
.h3{height:75.465000pt;}
.h6c{height:77.056738pt;}
.h70{height:77.156603pt;}
.h5b{height:77.271199pt;}
.h61{height:77.290056pt;}
.h33{height:77.488913pt;}
.h31{height:77.587992pt;}
.h40{height:77.629233pt;}
.h45{height:77.703416pt;}
.h17{height:77.723595pt;}
.h93{height:77.732292pt;}
.h54{height:77.732749pt;}
.h29{height:77.734626pt;}
.h5d{height:77.810913pt;}
.h38{height:77.822062pt;}
.h18{height:77.971695pt;}
.hc0{height:78.250778pt;}
.h67{height:78.372839pt;}
.hb2{height:78.402834pt;}
.h4c{height:78.409398pt;}
.h1d{height:78.537083pt;}
.h3b{height:78.725593pt;}
.h7b{height:78.885154pt;}
.hc9{height:78.987516pt;}
.hcb{height:78.988268pt;}
.h9c{height:79.011282pt;}
.h24{height:79.210714pt;}
.hba{height:79.997147pt;}
.h30{height:80.411294pt;}
.h3f{height:80.462627pt;}
.h28{height:80.493189pt;}
.h39{height:80.662495pt;}
.h4d{height:81.120809pt;}
.h1e{height:81.252909pt;}
.h48{height:81.765015pt;}
.h23{height:82.093412pt;}
.h42{height:82.631198pt;}
.h4a{height:86.105875pt;}
.hbe{height:88.236050pt;}
.h76{height:89.025443pt;}
.ha7{height:89.179239pt;}
.hbd{height:89.201217pt;}
.hb3{height:95.085945pt;}
.ha4{height:95.237044pt;}
.h53{height:97.929643pt;}
.h66{height:98.736043pt;}
.h98{height:100.874237pt;}
.h79{height:104.664413pt;}
.he4{height:104.795121pt;}
.h8b{height:104.960444pt;}
.hdc{height:117.184271pt;}
.he0{height:128.452732pt;}
.he5{height:128.479718pt;}
.h83{height:152.002688pt;}
.h2a{height:173.238310pt;}
.he1{height:228.998408pt;}
.hd4{height:274.926152pt;}
.hce{height:311.007764pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2c{width:29.116968pt;}
.w31{width:29.139521pt;}
.w2f{width:30.856515pt;}
.w26{width:40.998850pt;}
.w9{width:50.560000pt;}
.w32{width:52.166960pt;}
.w34{width:52.821021pt;}
.w19{width:80.132926pt;}
.w16{width:80.799915pt;}
.w17{width:87.666028pt;}
.wd{width:92.665015pt;}
.w23{width:94.733550pt;}
.w6{width:95.840000pt;}
.w7{width:96.000000pt;}
.w8{width:96.032000pt;}
.w21{width:100.933652pt;}
.w1a{width:108.201967pt;}
.w2b{width:113.129906pt;}
.w2e{width:117.343380pt;}
.w28{width:120.133577pt;}
.w13{width:121.266519pt;}
.w25{width:122.871451pt;}
.wc{width:137.733024pt;}
.w22{width:140.464551pt;}
.w11{width:160.130948pt;}
.w1b{width:160.469066pt;}
.w15{width:165.261532pt;}
.w18{width:172.462030pt;}
.w27{width:175.397939pt;}
.w10{width:183.531209pt;}
.w35{width:184.941234pt;}
.wb{width:190.071406pt;}
.wf{width:201.461361pt;}
.w1f{width:202.391156pt;}
.w14{width:205.608443pt;}
.w1e{width:211.071485pt;}
.w1c{width:214.735281pt;}
.w4{width:215.866667pt;}
.w5{width:216.026667pt;}
.we{width:216.798309pt;}
.w24{width:257.462999pt;}
.w12{width:278.732335pt;}
.w20{width:319.868027pt;}
.w1d{width:401.733623pt;}
.wa{width:459.996635pt;}
.w33{width:491.002418pt;}
.w29{width:498.728220pt;}
.w2d{width:566.172744pt;}
.w2a{width:567.002760pt;}
.w30{width:576.363882pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:0.938623pt;}
.x30{left:2.760887pt;}
.x9d{left:4.303481pt;}
.x7f{left:6.450792pt;}
.xc{left:9.600000pt;}
.xa5{left:10.523146pt;}
.x9b{left:11.542807pt;}
.x77{left:14.281591pt;}
.xab{left:18.507813pt;}
.x27{left:19.460709pt;}
.xc3{left:20.409297pt;}
.x99{left:22.251162pt;}
.x1d{left:23.265936pt;}
.xd3{left:24.212987pt;}
.x42{left:25.913351pt;}
.x6{left:28.000000pt;}
.x87{left:29.275878pt;}
.xda{left:30.492750pt;}
.x4a{left:31.479288pt;}
.x7d{left:32.453605pt;}
.xaf{left:33.850851pt;}
.xc8{left:34.859792pt;}
.x4e{left:35.867890pt;}
.xd2{left:37.033865pt;}
.x79{left:38.229964pt;}
.x66{left:39.775404pt;}
.x3b{left:40.729391pt;}
.xd5{left:41.995192pt;}
.x60{left:42.888275pt;}
.xc4{left:44.421206pt;}
.x7c{left:45.719708pt;}
.x1f{left:46.969192pt;}
.x46{left:48.192851pt;}
.xc1{left:49.371874pt;}
.x3c{left:50.283622pt;}
.x41{left:51.322840pt;}
.x7e{left:52.868845pt;}
.x6c{left:54.457460pt;}
.xa2{left:56.391249pt;}
.x83{left:57.914005pt;}
.x37{left:59.326900pt;}
.xc2{left:60.486461pt;}
.x5d{left:62.111276pt;}
.x5c{left:63.595365pt;}
.xa4{left:65.544184pt;}
.xce{left:67.291400pt;}
.x90{left:68.489960pt;}
.x7b{left:70.426604pt;}
.xa9{left:72.159185pt;}
.x4d{left:73.856327pt;}
.x59{left:75.505285pt;}
.x58{left:77.124417pt;}
.x82{left:78.918777pt;}
.x8e{left:80.503458pt;}
.xac{left:81.445840pt;}
.xb9{left:82.557541pt;}
.x47{left:84.774073pt;}
.xb7{left:86.024416pt;}
.x61{left:87.422562pt;}
.x55{left:88.629210pt;}
.xb3{left:89.617228pt;}
.xb2{left:91.030025pt;}
.x2e{left:92.625051pt;}
.xcd{left:95.097142pt;}
.x54{left:97.400082pt;}
.xae{left:99.030387pt;}
.x8a{left:100.187006pt;}
.x11{left:101.472000pt;}
.x68{left:102.366790pt;}
.x53{left:103.607902pt;}
.x15{left:105.792000pt;}
.xa3{left:107.102166pt;}
.x49{left:108.534665pt;}
.x95{left:109.497586pt;}
.x50{left:110.996655pt;}
.x2f{left:112.221906pt;}
.x2{left:113.472000pt;}
.xa8{left:114.619089pt;}
.x5e{left:115.888501pt;}
.xb{left:117.791988pt;}
.x48{left:118.737162pt;}
.x26{left:119.898373pt;}
.x93{left:121.343869pt;}
.x94{left:122.785763pt;}
.x69{left:124.105197pt;}
.x62{left:125.504593pt;}
.xcb{left:127.890843pt;}
.x6d{left:128.864534pt;}
.x64{left:130.411053pt;}
.x3d{left:131.575363pt;}
.x57{left:133.971792pt;}
.x2d{left:136.362481pt;}
.x78{left:139.072695pt;}
.x3a{left:142.341330pt;}
.x86{left:143.682123pt;}
.x8c{left:144.936282pt;}
.x25{left:146.501963pt;}
.x71{left:148.829387pt;}
.xb4{left:150.162952pt;}
.x40{left:151.117858pt;}
.x7{left:152.826655pt;}
.x76{left:155.671253pt;}
.x92{left:156.881345pt;}
.x4{left:157.946667pt;}
.x17{left:160.666655pt;}
.x8f{left:162.117119pt;}
.x3e{left:163.358446pt;}
.x52{left:166.184937pt;}
.x67{left:168.054826pt;}
.x19{left:171.613333pt;}
.x51{left:174.962698pt;}
.x3{left:176.026667pt;}
.xba{left:178.581183pt;}
.x5b{left:180.019902pt;}
.x5a{left:181.439226pt;}
.xa7{left:183.031411pt;}
.xaa{left:184.273088pt;}
.xb0{left:187.164795pt;}
.x8{left:190.426643pt;}
.x63{left:191.522143pt;}
.xa6{left:193.196790pt;}
.xb1{left:194.125809pt;}
.x9{left:195.866655pt;}
.x56{left:197.837242pt;}
.x91{left:199.192432pt;}
.x70{left:200.183492pt;}
.x9e{left:201.595799pt;}
.xdc{left:204.506655pt;}
.x36{left:205.553820pt;}
.x16{left:208.026655pt;}
.xbe{left:210.253190pt;}
.x2c{left:212.759961pt;}
.xbd{left:214.047233pt;}
.x9c{left:217.742540pt;}
.x24{left:220.433677pt;}
.xdd{left:226.106655pt;}
.x9a{left:227.757606pt;}
.x97{left:238.467596pt;}
.xb5{left:241.680000pt;}
.x23{left:246.356535pt;}
.xbc{left:247.877445pt;}
.x1c{left:250.207145pt;}
.xb8{left:253.431044pt;}
.xcf{left:255.226655pt;}
.x13{left:256.666667pt;}
.xb6{left:258.379795pt;}
.x5{left:260.186667pt;}
.x6f{left:262.146667pt;}
.x14{left:268.546667pt;}
.xca{left:272.880000pt;}
.xbb{left:290.587917pt;}
.x2a{left:292.013769pt;}
.x12{left:293.026667pt;}
.x8d{left:294.146667pt;}
.xa1{left:296.080000pt;}
.x75{left:298.813333pt;}
.x1b{left:300.677642pt;}
.x10{left:302.626655pt;}
.x35{left:304.404482pt;}
.xa{left:305.506655pt;}
.x39{left:306.480000pt;}
.xd{left:310.466667pt;}
.x2b{left:311.651880pt;}
.xd0{left:313.813333pt;}
.x85{left:315.280000pt;}
.xdb{left:316.993499pt;}
.xd8{left:318.346727pt;}
.x22{left:319.284340pt;}
.x6b{left:321.546667pt;}
.xc5{left:331.280000pt;}
.x45{left:332.746667pt;}
.x29{left:335.759450pt;}
.x73{left:340.880000pt;}
.x21{left:345.894806pt;}
.x89{left:347.413333pt;}
.x18{left:349.826655pt;}
.xc0{left:351.146667pt;}
.xc7{left:354.146667pt;}
.x4c{left:355.280000pt;}
.x81{left:357.680000pt;}
.x34{left:361.544786pt;}
.xd6{left:368.817864pt;}
.x1e{left:375.558256pt;}
.x98{left:386.077417pt;}
.x9f{left:393.026647pt;}
.x33{left:406.761950pt;}
.x28{left:413.968092pt;}
.x20{left:421.641808pt;}
.x32{left:431.914686pt;}
.x31{left:437.071753pt;}
.x80{left:441.986655pt;}
.x84{left:445.346655pt;}
.x4f{left:447.933322pt;}
.xc9{left:448.893322pt;}
.x1a{left:452.487946pt;}
.x8b{left:455.613322pt;}
.x74{left:462.173322pt;}
.x4b{left:470.493322pt;}
.xc6{left:471.773322pt;}
.x6e{left:481.693322pt;}
.x7a{left:484.253322pt;}
.x88{left:487.773322pt;}
.xd1{left:489.213322pt;}
.x6a{left:493.373322pt;}
.x43{left:496.573322pt;}
.x65{left:502.333322pt;}
.x44{left:504.893322pt;}
.xad{left:507.133322pt;}
.x96{left:508.893322pt;}
.x5f{left:510.013322pt;}
.x1{left:511.453333pt;}
.xcc{left:530.333322pt;}
.xe{left:536.573333pt;}
.x72{left:540.893322pt;}
.xf{left:549.533333pt;}
.xbf{left:561.533322pt;}
.xd9{left:579.131911pt;}
.xa0{left:602.493322pt;}
.x38{left:631.653322pt;}
.xd4{left:651.013322pt;}
.xd7{left:679.813322pt;}
}




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