
    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_4f2679acfccd357a1022f346.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_8be0ceee6d539a76257be706.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_5381129d87442450ccc3c43e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_215a3ee380cee55b21b3025d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bbe980f2b56b947947962499.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ebadc5ee54eb960527e04e5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_28966e433b637ae3c6c45a47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_fdc882e73756862a6b3af951.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ab431507cf11fb9a405a1ad5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_cbc9c16280dad55344d8587d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9c7c025ef7fdc39e228dca8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_af71f51a818b3b4f4d24cb33.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6dd5667ce81e0eeca8825cfb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_47d15fc3dd24ab2f67fb87da.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0a2287163da02560ecae4a0c.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f99632db68830ccbc5920c0c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_44743f61ecb808fa08eb1b55.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4f33803ed0f880011d69457c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_84570c1a83cc7acd7aa67f26.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f3e9ab20eed7c1d4b39c95d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_50e35e473fd49680b80da42c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9cf8aea8cac336d9f24729f4.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_240dbaddfc4d1d43fb215449.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_35a529ab445d64e3f68f875f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_703d67f98b8978ed0dd101ec.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_23dbce213dc23cf7ac07d35e.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_0a2287163da02560ecae4a0c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_78df7017463bb0200366decc.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8051d1be58e6403a63e0f037.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_b686dc3dae7dec1ed5fd30c4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_de073e8fb436198e1027f018.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_df9ea20da0b622c5edcfc289.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_0d62e613e20771ef80cfaedd.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_493ddccadce7f302043726b6.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_28ca6282d9856a00ae4ce343.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_6c738fd70d7fcaf542a01687.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_2ad80c837a89cecb66891cf5.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.000000,-0.244698,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244698,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244698,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.244703,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244703,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244703,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.244723,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244723,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244723,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.250072,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250072,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250072,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.250074,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250074,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250074,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252596,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252598,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252619,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253119,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255389,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255393,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255414,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255418,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-33.140880px;}
.v8{vertical-align:-30.912960px;}
.vd{vertical-align:-27.546108px;}
.vf{vertical-align:-22.327800px;}
.vc{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v9{vertical-align:-13.097400px;}
.v6{vertical-align:-5.416560px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v10{vertical-align:5.760000px;}
.va{vertical-align:13.097400px;}
.vb{vertical-align:18.280800px;}
.v7{vertical-align:20.923200px;}
.ve{vertical-align:22.320000px;}
.v2{vertical-align:27.360000px;}
.v11{vertical-align:46.080000px;}
.lsa0{letter-spacing:-4.365360px;}
.lsa1{letter-spacing:-3.654720px;}
.ls8a{letter-spacing:-3.372138px;}
.ls8f{letter-spacing:-3.371128px;}
.lsa6{letter-spacing:-3.351823px;}
.lsad{letter-spacing:-3.313213px;}
.ls7b{letter-spacing:-3.278880px;}
.ls82{letter-spacing:-3.277870px;}
.ls9d{letter-spacing:-3.259872px;}
.ls9a{letter-spacing:-3.209554px;}
.ls8c{letter-spacing:-3.088147px;}
.ls91{letter-spacing:-3.087176px;}
.lsa8{letter-spacing:-3.069528px;}
.lsa3{letter-spacing:-3.067957px;}
.lsaf{letter-spacing:-3.034139px;}
.ls88{letter-spacing:-3.031518px;}
.ls8d{letter-spacing:-3.030610px;}
.lsa4{letter-spacing:-3.013255px;}
.ls7d{letter-spacing:-3.002677px;}
.ls84{letter-spacing:-3.001753px;}
.ls9f{letter-spacing:-2.985305px;}
.lsab{letter-spacing:-2.978545px;}
.ls79{letter-spacing:-2.947680px;}
.ls80{letter-spacing:-2.946772px;}
.ls9b{letter-spacing:-2.930592px;}
.ls89{letter-spacing:-2.861208px;}
.ls8e{letter-spacing:-2.860351px;}
.lsa5{letter-spacing:-2.843971px;}
.lsac{letter-spacing:-2.811211px;}
.ls7a{letter-spacing:-2.782080px;}
.ls81{letter-spacing:-2.781223px;}
.ls9c{letter-spacing:-2.765952px;}
.lsaa{letter-spacing:-2.243736px;}
.ls7f{letter-spacing:-2.242872px;}
.ls86{letter-spacing:-2.242404px;}
.ls97{letter-spacing:-2.131927px;}
.ls95{letter-spacing:-2.067581px;}
.ls8b{letter-spacing:-1.907472px;}
.ls90{letter-spacing:-1.906901px;}
.lsa7{letter-spacing:-1.895981px;}
.lsa2{letter-spacing:-1.895040px;}
.lsae{letter-spacing:-1.874141px;}
.ls99{letter-spacing:-1.860835px;}
.ls7c{letter-spacing:-1.854720px;}
.ls83{letter-spacing:-1.854149px;}
.ls9e{letter-spacing:-1.843968px;}
.lsa9{letter-spacing:-1.387746px;}
.ls7e{letter-spacing:-1.387188px;}
.ls85{letter-spacing:-1.386890px;}
.ls98{letter-spacing:-1.108565px;}
.ls78{letter-spacing:-0.964800px;}
.lsb5{letter-spacing:-0.956160px;}
.ls2e{letter-spacing:-0.918000px;}
.ls76{letter-spacing:-0.916560px;}
.ls93{letter-spacing:-0.820080px;}
.ls94{letter-spacing:-0.776880px;}
.ls28{letter-spacing:-0.775584px;}
.ls77{letter-spacing:-0.771840px;}
.lsb4{letter-spacing:-0.728640px;}
.ls96{letter-spacing:-0.703217px;}
.lscb{letter-spacing:-0.675360px;}
.lsb1{letter-spacing:-0.657360px;}
.ls87{letter-spacing:-0.597600px;}
.ls3f{letter-spacing:-0.540000px;}
.ls47{letter-spacing:-0.537840px;}
.ls23{letter-spacing:-0.533214px;}
.ls35{letter-spacing:-0.530640px;}
.ls2d{letter-spacing:-0.480000px;}
.ls46{letter-spacing:-0.478080px;}
.ls36{letter-spacing:-0.434160px;}
.lsb8{letter-spacing:-0.418320px;}
.ls38{letter-spacing:-0.408960px;}
.ls3e{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.360299px;}
.ls43{letter-spacing:-0.358560px;}
.ls22{letter-spacing:-0.339318px;}
.ls31{letter-spacing:-0.337680px;}
.lsb6{letter-spacing:-0.298800px;}
.ls34{letter-spacing:-0.289440px;}
.ls32{letter-spacing:-0.241200px;}
.ls41{letter-spacing:-0.239040px;}
.ls27{letter-spacing:-0.217049px;}
.ls3b{letter-spacing:-0.216000px;}
.ls75{letter-spacing:-0.192960px;}
.ls42{letter-spacing:-0.179280px;}
.ls29{letter-spacing:-0.120100px;}
.ls40{letter-spacing:-0.119520px;}
.ls26{letter-spacing:-0.108524px;}
.ls3d{letter-spacing:-0.108000px;}
.ls92{letter-spacing:-0.096480px;}
.ls2c{letter-spacing:-0.060050px;}
.ls44{letter-spacing:-0.059760px;}
.lsb0{letter-spacing:-0.048240px;}
.ls1e{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000600px;}
.ls39{letter-spacing:0.048240px;}
.ls19{letter-spacing:0.053280px;}
.ls60{letter-spacing:0.053880px;}
.ls16{letter-spacing:0.059760px;}
.ls5b{letter-spacing:0.074160px;}
.ls3c{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.119520px;}
.ls2b{letter-spacing:0.120100px;}
.lsb7{letter-spacing:0.132480px;}
.ls6e{letter-spacing:0.149400px;}
.lsd{letter-spacing:0.162000px;}
.ls45{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.192960px;}
.ls24{letter-spacing:0.193896px;}
.ls66{letter-spacing:0.197208px;}
.ls30{letter-spacing:0.198720px;}
.ls2f{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.217049px;}
.ls12{letter-spacing:0.239040px;}
.ls49{letter-spacing:0.241200px;}
.lsb3{letter-spacing:0.252000px;}
.lsc8{letter-spacing:0.255672px;}
.ls5d{letter-spacing:0.256968px;}
.ls5f{letter-spacing:0.262944px;}
.ls3a{letter-spacing:0.289440px;}
.ls1{letter-spacing:0.290844px;}
.ls48{letter-spacing:0.298800px;}
.ls21{letter-spacing:0.299525px;}
.ls73{letter-spacing:0.310752px;}
.ls33{letter-spacing:0.337680px;}
.ls0{letter-spacing:0.339318px;}
.ls4c{letter-spacing:0.340632px;}
.ls7{letter-spacing:0.342720px;}
.ls6{letter-spacing:0.357840px;}
.ls13{letter-spacing:0.358560px;}
.ls9{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.360299px;}
.ls8{letter-spacing:0.360600px;}
.ls3{letter-spacing:0.361800px;}
.lsb{letter-spacing:0.378000px;}
.ls20{letter-spacing:0.379835px;}
.ls37{letter-spacing:0.385920px;}
.ls25{letter-spacing:0.387792px;}
.lsbf{letter-spacing:0.390960px;}
.lsc3{letter-spacing:0.454176px;}
.ls4f{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.896400px;}
.lsf{letter-spacing:0.918000px;}
.ls5c{letter-spacing:0.920304px;}
.lsc5{letter-spacing:0.945504px;}
.lsbd{letter-spacing:1.096560px;}
.ls6a{letter-spacing:1.125480px;}
.lsc6{letter-spacing:1.640160px;}
.lsc0{letter-spacing:1.673280px;}
.ls4e{letter-spacing:2.330640px;}
.lsc2{letter-spacing:2.808720px;}
.lsc1{letter-spacing:2.868480px;}
.ls4b{letter-spacing:3.047760px;}
.ls64{letter-spacing:3.059712px;}
.ls4d{letter-spacing:3.083616px;}
.ls4a{letter-spacing:3.095568px;}
.lsbe{letter-spacing:3.178080px;}
.ls6c{letter-spacing:3.178560px;}
.ls53{letter-spacing:3.215088px;}
.ls56{letter-spacing:3.735000px;}
.ls57{letter-spacing:3.764880px;}
.ls54{letter-spacing:3.920256px;}
.lsb9{letter-spacing:3.926232px;}
.ls50{letter-spacing:4.482000px;}
.lse{letter-spacing:4.514400px;}
.ls18{letter-spacing:5.199120px;}
.ls1c{letter-spacing:5.916240px;}
.ls1d{letter-spacing:6.633360px;}
.ls1a{letter-spacing:7.350480px;}
.ls17{letter-spacing:7.410240px;}
.ls65{letter-spacing:8.127360px;}
.ls55{letter-spacing:10.278720px;}
.ls5a{letter-spacing:10.954008px;}
.ls69{letter-spacing:10.995840px;}
.ls52{letter-spacing:12.430080px;}
.lsb2{letter-spacing:12.967920px;}
.lsc{letter-spacing:13.122000px;}
.ls1b{letter-spacing:13.147200px;}
.ls72{letter-spacing:14.581440px;}
.lsca{letter-spacing:14.616720px;}
.ls61{letter-spacing:16.015680px;}
.ls67{letter-spacing:16.732800px;}
.ls51{letter-spacing:18.167040px;}
.ls62{letter-spacing:18.884160px;}
.ls11{letter-spacing:19.601280px;}
.ls63{letter-spacing:19.643112px;}
.ls6b{letter-spacing:19.740960px;}
.lsc9{letter-spacing:21.080880px;}
.ls14{letter-spacing:21.746664px;}
.ls74{letter-spacing:21.752640px;}
.ls58{letter-spacing:23.963760px;}
.ls70{letter-spacing:24.651000px;}
.ls6f{letter-spacing:24.680880px;}
.ls68{letter-spacing:25.398000px;}
.lsc7{letter-spacing:31.915584px;}
.ls71{letter-spacing:40.517280px;}
.ls6d{letter-spacing:42.668640px;}
.lsc4{letter-spacing:52.768080px;}
.lsbb{letter-spacing:53.402688px;}
.lsba{letter-spacing:77.257440px;}
.lsbc{letter-spacing:81.482688px;}
.ls5{letter-spacing:201.054240px;}
.ls59{letter-spacing:799.385040px;}
.ls4{letter-spacing:1374.647040px;}
.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;}
}
.ws3{word-spacing:-100.141325px;}
.wsc1{word-spacing:-59.760000px;}
.wsbf{word-spacing:-59.580720px;}
.ws148{word-spacing:-48.625920px;}
.ws92{word-spacing:-37.381200px;}
.ws142{word-spacing:-36.252000px;}
.ws145{word-spacing:-26.676720px;}
.ws11{word-spacing:-25.560000px;}
.ws9{word-spacing:-22.654080px;}
.ws6{word-spacing:-15.984000px;}
.wsc0{word-spacing:-15.831360px;}
.ws2{word-spacing:-15.464727px;}
.ws8{word-spacing:-15.390000px;}
.ws1c{word-spacing:-15.298560px;}
.ws20{word-spacing:-15.179040px;}
.ws23{word-spacing:-15.119280px;}
.ws1f{word-spacing:-15.059520px;}
.ws1{word-spacing:-15.012000px;}
.ws26{word-spacing:-14.999760px;}
.ws22{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.880240px;}
.ws1d{word-spacing:-14.820480px;}
.ws9e{word-spacing:-14.760720px;}
.ws9d{word-spacing:-14.700960px;}
.ws21{word-spacing:-14.581440px;}
.ws25{word-spacing:-14.461920px;}
.wsbd{word-spacing:-14.282640px;}
.ws16{word-spacing:-13.878000px;}
.ws19{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.284000px;}
.wsbe{word-spacing:-13.027680px;}
.ws18{word-spacing:-12.960000px;}
.wsf{word-spacing:-12.445920px;}
.ws1b{word-spacing:-12.397680px;}
.ws14{word-spacing:-12.349440px;}
.wsc{word-spacing:-12.252960px;}
.ws13{word-spacing:-12.108240px;}
.wsb{word-spacing:-12.060000px;}
.ws5{word-spacing:-12.000000px;}
.wsa7{word-spacing:-11.963520px;}
.ws8c{word-spacing:-11.867040px;}
.ws144{word-spacing:-11.818800px;}
.wsd{word-spacing:-11.770560px;}
.wsa{word-spacing:-11.722320px;}
.wse{word-spacing:-11.625840px;}
.ws10{word-spacing:-11.529360px;}
.ws147{word-spacing:-11.384640px;}
.wsa8{word-spacing:-11.239920px;}
.ws146{word-spacing:-11.095200px;}
.wsb6{word-spacing:-10.395977px;}
.ws93{word-spacing:-10.391974px;}
.ws9b{word-spacing:-10.389805px;}
.ws24{word-spacing:-9.720000px;}
.wsab{word-spacing:-9.237718px;}
.ws17{word-spacing:-9.000000px;}
.wsb7{word-spacing:-8.152241px;}
.ws94{word-spacing:-8.149102px;}
.ws9c{word-spacing:-8.147401px;}
.wsa2{word-spacing:-7.561764px;}
.ws12{word-spacing:-7.560000px;}
.wsa6{word-spacing:-7.559500px;}
.wsb4{word-spacing:-7.516210px;}
.wsbc{word-spacing:-7.429630px;}
.ws90{word-spacing:-7.352640px;}
.ws99{word-spacing:-7.350376px;}
.wsaa{word-spacing:-6.713978px;}
.wsa9{word-spacing:-6.385176px;}
.ws95{word-spacing:-6.219972px;}
.wsa1{word-spacing:-6.097098px;}
.wsa5{word-spacing:-6.095272px;}
.wsb3{word-spacing:-6.060367px;}
.wsba{word-spacing:-5.990557px;}
.ws8f{word-spacing:-5.928480px;}
.ws98{word-spacing:-5.926654px;}
.wsae{word-spacing:-5.894112px;}
.wsd3{word-spacing:-3.764880px;}
.ws6c{word-spacing:-3.525840px;}
.ws128{word-spacing:-3.406320px;}
.ws6b{word-spacing:-3.346560px;}
.wsd2{word-spacing:-3.047760px;}
.ws166{word-spacing:-2.990880px;}
.ws176{word-spacing:-2.894400px;}
.ws133{word-spacing:-2.868480px;}
.ws110{word-spacing:-2.808720px;}
.ws167{word-spacing:-2.363760px;}
.wsd4{word-spacing:-2.330640px;}
.ws174{word-spacing:-2.267280px;}
.ws165{word-spacing:-2.170800px;}
.ws11b{word-spacing:-2.151360px;}
.ws177{word-spacing:-2.026080px;}
.wseb{word-spacing:-1.613520px;}
.ws175{word-spacing:-1.543680px;}
.ws173{word-spacing:-1.447200px;}
.wsea{word-spacing:-1.434240px;}
.wsef{word-spacing:-1.374480px;}
.ws124{word-spacing:-1.195200px;}
.ws149{word-spacing:-1.157760px;}
.ws189{word-spacing:-0.964800px;}
.ws4e{word-spacing:-0.918000px;}
.ws45{word-spacing:-0.916560px;}
.wsf0{word-spacing:-0.896400px;}
.wsc6{word-spacing:-0.820080px;}
.wsc7{word-spacing:-0.723600px;}
.ws12a{word-spacing:-0.717120px;}
.ws130{word-spacing:-0.657360px;}
.ws14b{word-spacing:-0.627120px;}
.wsc3{word-spacing:-0.578880px;}
.ws14a{word-spacing:-0.482400px;}
.ws12f{word-spacing:-0.478080px;}
.ws2c{word-spacing:-0.387792px;}
.ws39{word-spacing:-0.385920px;}
.ws2e{word-spacing:-0.379835px;}
.ws5b{word-spacing:-0.378000px;}
.ws35{word-spacing:-0.360299px;}
.ws7b{word-spacing:-0.358560px;}
.ws3e{word-spacing:-0.337680px;}
.ws41{word-spacing:-0.306720px;}
.ws85{word-spacing:-0.298800px;}
.ws30{word-spacing:-0.290844px;}
.wsc2{word-spacing:-0.289440px;}
.ws12b{word-spacing:-0.252000px;}
.ws6d{word-spacing:-0.239040px;}
.ws28{word-spacing:-0.217049px;}
.ws4b{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.193896px;}
.ws3d{word-spacing:-0.192960px;}
.ws6e{word-spacing:-0.179280px;}
.ws42{word-spacing:-0.153360px;}
.ws13b{word-spacing:-0.132480px;}
.ws33{word-spacing:-0.120100px;}
.ws5f{word-spacing:-0.119520px;}
.ws37{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.099000px;}
.ws5c{word-spacing:-0.096480px;}
.ws70{word-spacing:-0.059760px;}
.ws27{word-spacing:0.000000px;}
.ws5a{word-spacing:0.054000px;}
.ws78{word-spacing:0.059760px;}
.ws34{word-spacing:0.060050px;}
.ws47{word-spacing:0.108000px;}
.ws2d{word-spacing:0.108524px;}
.ws5d{word-spacing:0.119520px;}
.ws31{word-spacing:0.120100px;}
.ws64{word-spacing:0.179280px;}
.ws3b{word-spacing:0.192960px;}
.ws43{word-spacing:0.204480px;}
.ws48{word-spacing:0.216000px;}
.ws2f{word-spacing:0.217049px;}
.ws63{word-spacing:0.239040px;}
.ws3a{word-spacing:0.241200px;}
.ws116{word-spacing:0.298800px;}
.ws3c{word-spacing:0.337680px;}
.ws29{word-spacing:0.339318px;}
.ws65{word-spacing:0.358560px;}
.ws32{word-spacing:0.360299px;}
.ws4c{word-spacing:0.378000px;}
.ws40{word-spacing:0.408960px;}
.wsdc{word-spacing:0.418320px;}
.wsc8{word-spacing:0.434160px;}
.wscb{word-spacing:0.478080px;}
.ws36{word-spacing:0.480000px;}
.ws18a{word-spacing:0.482400px;}
.ws38{word-spacing:0.530640px;}
.ws2a{word-spacing:0.533214px;}
.ws6a{word-spacing:0.537840px;}
.ws4d{word-spacing:0.540000px;}
.wse4{word-spacing:0.597600px;}
.ws44{word-spacing:0.627120px;}
.ws11a{word-spacing:0.657360px;}
.wsfe{word-spacing:0.703217px;}
.ws3f{word-spacing:0.723600px;}
.wsc5{word-spacing:0.771840px;}
.wsfa{word-spacing:0.776880px;}
.ws18b{word-spacing:0.916560px;}
.ws103{word-spacing:0.921984px;}
.wsd9{word-spacing:0.927074px;}
.wsd6{word-spacing:0.927360px;}
.ws10a{word-spacing:0.937070px;}
.ws105{word-spacing:0.947520px;}
.ws107{word-spacing:0.947990px;}
.wse8{word-spacing:0.953450px;}
.wse6{word-spacing:0.953736px;}
.ws119{word-spacing:0.956160px;}
.wsc9{word-spacing:0.964800px;}
.ws57{word-spacing:1.026000px;}
.ws143{word-spacing:1.075680px;}
.wsff{word-spacing:1.081873px;}
.ws100{word-spacing:1.108565px;}
.wsc4{word-spacing:1.109520px;}
.ws56{word-spacing:1.134000px;}
.wse0{word-spacing:1.254960px;}
.wsdb{word-spacing:1.386890px;}
.wsd8{word-spacing:1.387188px;}
.ws109{word-spacing:1.387746px;}
.ws17d{word-spacing:1.447200px;}
.ws10d{word-spacing:1.494000px;}
.ws104{word-spacing:1.512038px;}
.wsda{word-spacing:1.520368px;}
.wsd7{word-spacing:1.520836px;}
.ws4{word-spacing:1.536626px;}
.ws10b{word-spacing:1.536772px;}
.ws106{word-spacing:1.553900px;}
.ws108{word-spacing:1.554696px;}
.wse9{word-spacing:1.563635px;}
.wse7{word-spacing:1.564126px;}
.ws14c{word-spacing:1.613520px;}
.ws102{word-spacing:1.694933px;}
.ws101{word-spacing:1.860835px;}
.ws58{word-spacing:1.944000px;}
.ws86{word-spacing:1.972080px;}
.ws15f{word-spacing:1.977840px;}
.wsfd{word-spacing:2.067581px;}
.ws168{word-spacing:2.170800px;}
.ws115{word-spacing:2.211120px;}
.ws114{word-spacing:2.390400px;}
.ws59{word-spacing:2.538000px;}
.ws17b{word-spacing:2.653200px;}
.ws8b{word-spacing:2.689200px;}
.ws55{word-spacing:2.700000px;}
.ws15e{word-spacing:2.701440px;}
.ws17c{word-spacing:2.797920px;}
.ws169{word-spacing:2.894400px;}
.wsde{word-spacing:2.928240px;}
.ws54{word-spacing:3.078000px;}
.wsd1{word-spacing:3.107520px;}
.wse5{word-spacing:3.227040px;}
.ws53{word-spacing:3.294000px;}
.ws16e{word-spacing:3.376800px;}
.wsca{word-spacing:3.406320px;}
.ws17f{word-spacing:3.569760px;}
.wsf3{word-spacing:3.645360px;}
.ws13c{word-spacing:3.705120px;}
.wsec{word-spacing:3.824640px;}
.wsf4{word-spacing:4.003920px;}
.ws180{word-spacing:4.100400px;}
.ws51{word-spacing:4.104000px;}
.ws7a{word-spacing:4.123440px;}
.ws79{word-spacing:4.183200px;}
.ws14d{word-spacing:4.362480px;}
.ws50{word-spacing:4.374000px;}
.ws14e{word-spacing:4.601520px;}
.ws4f{word-spacing:4.698000px;}
.wsf6{word-spacing:4.824000px;}
.ws84{word-spacing:4.840560px;}
.ws52{word-spacing:4.860000px;}
.wsf5{word-spacing:5.016960px;}
.ws131{word-spacing:5.079600px;}
.ws77{word-spacing:5.258880px;}
.ws17e{word-spacing:5.547600px;}
.ws82{word-spacing:5.557680px;}
.ws73{word-spacing:5.677200px;}
.ws184{word-spacing:5.740560px;}
.ws74{word-spacing:5.796720px;}
.ws83{word-spacing:5.976000px;}
.ws185{word-spacing:5.981760px;}
.ws6f{word-spacing:6.274800px;}
.ws112{word-spacing:6.454080px;}
.ws113{word-spacing:6.513840px;}
.ws158{word-spacing:6.693120px;}
.ws111{word-spacing:6.872400px;}
.wscd{word-spacing:7.051680px;}
.ws7c{word-spacing:7.230960px;}
.ws75{word-spacing:7.290720px;}
.wscc{word-spacing:7.470000px;}
.wsdd{word-spacing:7.768800px;}
.ws80{word-spacing:7.888320px;}
.ws16a{word-spacing:7.911360px;}
.ws120{word-spacing:7.948080px;}
.wsf8{word-spacing:8.007840px;}
.ws157{word-spacing:8.127360px;}
.ws156{word-spacing:8.187120px;}
.wsf1{word-spacing:8.485920px;}
.ws182{word-spacing:8.634960px;}
.wsf7{word-spacing:8.724960px;}
.ws7f{word-spacing:8.904240px;}
.wsf2{word-spacing:9.203040px;}
.wsee{word-spacing:9.442080px;}
.ws172{word-spacing:9.889200px;}
.ws72{word-spacing:9.920160px;}
.ws171{word-spacing:10.082160px;}
.ws81{word-spacing:10.159200px;}
.ws71{word-spacing:10.338480px;}
.ws16c{word-spacing:10.612800px;}
.ws62{word-spacing:10.637280px;}
.ws170{word-spacing:10.709280px;}
.ws17a{word-spacing:10.805760px;}
.ws129{word-spacing:11.055600px;}
.ws181{word-spacing:11.336400px;}
.wse3{word-spacing:11.354400px;}
.ws16d{word-spacing:11.432880px;}
.ws179{word-spacing:11.529360px;}
.ws132{word-spacing:11.653200px;}
.wse2{word-spacing:11.892240px;}
.ws5e{word-spacing:12.071520px;}
.ws60{word-spacing:12.310560px;}
.ws76{word-spacing:12.489840px;}
.ws153{word-spacing:12.728880px;}
.ws4a{word-spacing:12.744000px;}
.ws89{word-spacing:12.788640px;}
.ws46{word-spacing:13.014000px;}
.ws7d{word-spacing:13.027680px;}
.ws152{word-spacing:13.087440px;}
.ws7e{word-spacing:13.206960px;}
.ws49{word-spacing:13.338000px;}
.ws8a{word-spacing:13.505760px;}
.ws178{word-spacing:14.182560px;}
.ws117{word-spacing:14.222880px;}
.ws16f{word-spacing:14.375520px;}
.wsdf{word-spacing:14.461920px;}
.ws118{word-spacing:14.521680px;}
.wscf{word-spacing:14.700960px;}
.wsd0{word-spacing:14.940000px;}
.ws16b{word-spacing:15.099120px;}
.wsce{word-spacing:15.179040px;}
.ws187{word-spacing:15.629760px;}
.ws11e{word-spacing:15.657120px;}
.ws11c{word-spacing:15.776640px;}
.ws11d{word-spacing:15.896160px;}
.ws134{word-spacing:16.374240px;}
.ws164{word-spacing:16.449840px;}
.ws135{word-spacing:16.493760px;}
.ws186{word-spacing:16.546320px;}
.ws11f{word-spacing:16.613280px;}
.ws122{word-spacing:16.673040px;}
.ws127{word-spacing:16.792560px;}
.ws123{word-spacing:16.852320px;}
.ws12e{word-spacing:17.091360px;}
.ws154{word-spacing:17.210880px;}
.wse1{word-spacing:17.808480px;}
.wsd5{word-spacing:18.525600px;}
.ws15d{word-spacing:18.645120px;}
.ws155{word-spacing:18.704880px;}
.ws61{word-spacing:18.764640px;}
.ws66{word-spacing:19.242720px;}
.ws10f{word-spacing:19.481760px;}
.ws10e{word-spacing:19.661040px;}
.wsed{word-spacing:19.959840px;}
.ws188{word-spacing:20.164320px;}
.ws138{word-spacing:20.378160px;}
.ws68{word-spacing:21.394080px;}
.ws13e{word-spacing:21.453840px;}
.ws69{word-spacing:21.573360px;}
.ws67{word-spacing:21.872160px;}
.ws15a{word-spacing:22.170960px;}
.ws159{word-spacing:22.589280px;}
.ws151{word-spacing:22.768560px;}
.ws87{word-spacing:23.605200px;}
.ws10c{word-spacing:23.844240px;}
.ws88{word-spacing:24.023520px;}
.ws137{word-spacing:24.322320px;}
.ws125{word-spacing:25.039440px;}
.ws126{word-spacing:25.278480px;}
.ws161{word-spacing:25.711920px;}
.ws160{word-spacing:25.904880px;}
.wsfb{word-spacing:25.935840px;}
.wsfc{word-spacing:26.294400px;}
.ws121{word-spacing:27.907920px;}
.ws13d{word-spacing:30.059280px;}
.ws163{word-spacing:32.224320px;}
.ws162{word-spacing:33.092640px;}
.ws150{word-spacing:33.824160px;}
.ws14f{word-spacing:34.003440px;}
.ws13a{word-spacing:40.158720px;}
.ws139{word-spacing:40.397760px;}
.ws12d{word-spacing:42.310080px;}
.wsf9{word-spacing:50.437440px;}
.ws15b{word-spacing:52.529040px;}
.ws15c{word-spacing:53.365680px;}
.ws183{word-spacing:54.511200px;}
.ws9a{word-spacing:77.306126px;}
.ws140{word-spacing:77.306364px;}
.ws91{word-spacing:77.331230px;}
.ws13f{word-spacing:77.331541px;}
.ws12c{word-spacing:77.568480px;}
.ws141{word-spacing:86.702106px;}
.wsb5{word-spacing:86.702151px;}
.ws136{word-spacing:108.763200px;}
.wsbb{word-spacing:118.331911px;}
.wsad{word-spacing:131.800906px;}
.ws97{word-spacing:132.528596px;}
.ws8e{word-spacing:132.569424px;}
.wsb9{word-spacing:133.957560px;}
.wsb2{word-spacing:135.518613px;}
.wsb0{word-spacing:135.735624px;}
.wsa4{word-spacing:136.299140px;}
.wsa0{word-spacing:136.339967px;}
.wsac{word-spacing:138.244915px;}
.ws96{word-spacing:139.008184px;}
.ws8d{word-spacing:139.051008px;}
.wsb8{word-spacing:140.507013px;}
.wsb1{word-spacing:142.144389px;}
.wsa3{word-spacing:142.963077px;}
.ws9f{word-spacing:143.005901px;}
.wsaf{word-spacing:144.804744px;}
._2d{margin-left:-15.147360px;}
._22{margin-left:-6.987600px;}
._27{margin-left:-5.056168px;}
._21{margin-left:-3.985200px;}
._1f{margin-left:-2.980963px;}
._0{margin-left:-1.791900px;}
._1{width:1.357272px;}
._4{width:2.693183px;}
._5{width:3.769166px;}
._7{width:4.976123px;}
._b{width:5.991794px;}
._e{width:7.974859px;}
._16{width:9.054718px;}
._3{width:10.925973px;}
._a{width:11.951923px;}
._2{width:13.214012px;}
._d{width:14.583090px;}
._8{width:15.790650px;}
._6{width:17.210064px;}
._9{width:18.598139px;}
._c{width:19.604945px;}
._18{width:20.637655px;}
._f{width:21.692768px;}
._12{width:23.256701px;}
._14{width:25.640825px;}
._1e{width:26.875083px;}
._1a{width:31.027439px;}
._1b{width:32.137920px;}
._2c{width:34.063200px;}
._17{width:35.352339px;}
._19{width:36.401749px;}
._20{width:37.782676px;}
._13{width:38.960164px;}
._15{width:40.875899px;}
._11{width:44.730363px;}
._1d{width:46.659134px;}
._1c{width:47.757606px;}
._10{width:60.283994px;}
._28{width:135.741341px;}
._29{width:482.359680px;}
._24{width:785.971044px;}
._2b{width:891.091931px;}
._25{width:895.338600px;}
._2a{width:967.338600px;}
._26{width:1059.076908px;}
._23{width:1545.320160px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,159,227);}
.fc6{color:rgb(0,128,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs21{font-size:18.031200px;}
.fs23{font-size:19.092000px;}
.fs25{font-size:19.795800px;}
.fs1b{font-size:22.369200px;}
.fs17{font-size:22.374000px;}
.fs2f{font-size:22.383000px;}
.fs28{font-size:24.961800px;}
.fsa{font-size:30.240000px;}
.fs20{font-size:30.405600px;}
.fs22{font-size:31.819800px;}
.fs27{font-size:32.928000px;}
.fs18{font-size:33.109800px;}
.fs14{font-size:33.120000px;}
.fs24{font-size:33.229200px;}
.fs30{font-size:33.466800px;}
.fs2a{font-size:33.840000px;}
.fs2c{font-size:33.856800px;}
.fs1e{font-size:34.051800px;}
.fs1c{font-size:34.062000px;}
.fs12{font-size:36.000000px;}
.fs26{font-size:36.062400px;}
.fs1a{font-size:37.373400px;}
.fs16{font-size:37.381200px;}
.fs2e{font-size:37.395600px;}
.fs29{font-size:38.770200px;}
.fs13{font-size:38.880000px;}
.fs19{font-size:38.983800px;}
.fs15{font-size:38.995800px;}
.fs31{font-size:39.404400px;}
.fs2b{font-size:39.843600px;}
.fs2d{font-size:39.864000px;}
.fs1f{font-size:40.093200px;}
.fs1d{font-size:40.105800px;}
.fs32{font-size:41.760000px;}
.fs33{font-size:44.018905px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:48.240000px;}
.fs4{font-size:48.474000px;}
.fs11{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:54.262200px;}
.fsf{font-size:59.760000px;}
.fs8{font-size:60.049800px;}
.fs34{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs5{font-size:72.349200px;}
.fs10{font-size:77.760000px;}
.fs7{font-size:78.137400px;}
.fs0{font-size:99.000000px;}
.fsb{font-size:99.360000px;}
.fs3{font-size:99.841800px;}
.fse{font-size:102.240000px;}
.fs6{font-size:102.735600px;}
.yb{bottom:-1009.673799px;}
.ya{bottom:-994.477200px;}
.y40{bottom:-949.525121px;}
.y30{bottom:-949.480084px;}
.y3f{bottom:-931.435119px;}
.y2f{bottom:-931.390081px;}
.y3e{bottom:-913.345117px;}
.y2e{bottom:-913.300079px;}
.y3d{bottom:-895.255114px;}
.y2d{bottom:-895.210077px;}
.y3c{bottom:-877.165112px;}
.y2c{bottom:-877.120075px;}
.y3b{bottom:-859.075110px;}
.y2b{bottom:-859.030072px;}
.y3a{bottom:-840.985108px;}
.y2a{bottom:-840.940070px;}
.y39{bottom:-822.895105px;}
.y29{bottom:-822.850068px;}
.y38{bottom:-804.805103px;}
.y28{bottom:-804.760066px;}
.y37{bottom:-786.715101px;}
.y27{bottom:-786.670063px;}
.y36{bottom:-768.625099px;}
.y26{bottom:-768.580061px;}
.y35{bottom:-750.535096px;}
.y25{bottom:-750.490059px;}
.y34{bottom:-732.445094px;}
.y24{bottom:-732.400057px;}
.y33{bottom:-714.355092px;}
.y23{bottom:-714.310054px;}
.y32{bottom:-696.265090px;}
.y31{bottom:-678.175087px;}
.y22{bottom:-678.130050px;}
.y21{bottom:-612.473100px;}
.y20{bottom:-580.292742px;}
.y1f{bottom:-563.837729px;}
.y1e{bottom:-547.382717px;}
.y1d{bottom:-530.737787px;}
.y1c{bottom:-514.092858px;}
.y1b{bottom:-497.637845px;}
.y9a{bottom:-494.734860px;}
.y1a{bottom:-480.992916px;}
.y99{bottom:-479.792520px;}
.y98{bottom:-464.488380px;}
.y19{bottom:-464.347986px;}
.y18{bottom:-447.892974px;}
.y17{bottom:-431.248044px;}
.yc2{bottom:-424.243290px;}
.yd2{bottom:-422.578110px;}
.y16{bottom:-414.603114px;}
.yc1{bottom:-406.957710px;}
.yd1{bottom:-405.292530px;}
.y15{bottom:-398.148102px;}
.yc0{bottom:-389.672130px;}
.yd0{bottom:-388.186230px;}
.y14{bottom:-381.503172px;}
.ybf{bottom:-372.386550px;}
.ycf{bottom:-370.900650px;}
.y13{bottom:-364.858242px;}
.ybe{bottom:-346.107090px;}
.yce{bottom:-344.621190px;}
.y12{bottom:-331.758300px;}
.ybd{bottom:-328.821510px;}
.ycd{bottom:-327.335610px;}
.ybc{bottom:-311.715210px;}
.ycc{bottom:-310.050030px;}
.ybb{bottom:-294.429630px;}
.ycb{bottom:-292.776330px;}
.yba{bottom:-277.144050px;}
.yca{bottom:-275.670030px;}
.y11{bottom:-269.540521px;}
.yb9{bottom:-259.858470px;}
.yc9{bottom:-258.390180px;}
.yb8{bottom:-242.572890px;}
.yc8{bottom:-241.121910px;}
.y10{bottom:-230.288700px;}
.yb7{bottom:-225.466590px;}
.yc7{bottom:-223.836330px;}
.yb6{bottom:-208.181010px;}
.yc6{bottom:-206.550750px;}
.yf{bottom:-201.529800px;}
.yb5{bottom:-190.895430px;}
.yc5{bottom:-189.450030px;}
.yc4{bottom:-172.250310px;}
.ye{bottom:-159.565916px;}
.yb4{bottom:-155.248590px;}
.yc3{bottom:-154.964730px;}
.yb3{bottom:-137.604450px;}
.yd{bottom:-129.361650px;}
.yb2{bottom:-89.904600px;}
.yc{bottom:-83.419800px;}
.yb1{bottom:-58.044450px;}
.y55{bottom:-51.467910px;}
.yb0{bottom:-41.668950px;}
.y54{bottom:-36.525570px;}
.yaf{bottom:-25.104450px;}
.y53{bottom:-21.221430px;}
.yae{bottom:-8.544600px;}
.y0{bottom:0.000000px;}
.y25b{bottom:1.596900px;}
.y176{bottom:1.598400px;}
.y17c{bottom:1.681050px;}
.y16f{bottom:2.176350px;}
.y113{bottom:2.322900px;}
.y119{bottom:2.368350px;}
.y94{bottom:2.519400px;}
.y4f{bottom:2.519850px;}
.ye7{bottom:2.532750px;}
.yf5{bottom:2.577000px;}
.y8{bottom:2.893500px;}
.y18c{bottom:3.744750px;}
.y22d{bottom:4.499250px;}
.y134{bottom:4.500750px;}
.y141{bottom:4.860750px;}
.y22f{bottom:5.399250px;}
.y136{bottom:5.400750px;}
.y16d{bottom:6.166650px;}
.y231{bottom:7.199250px;}
.y139{bottom:7.200750px;}
.y17d{bottom:9.391936px;}
.ye8{bottom:10.075830px;}
.yf6{bottom:10.117757px;}
.y96{bottom:11.519400px;}
.y51{bottom:11.519850px;}
.y14d{bottom:16.071150px;}
.y179{bottom:17.901750px;}
.y14e{bottom:19.783500px;}
.y271{bottom:19.979100px;}
.y196{bottom:19.980600px;}
.y190{bottom:20.753400px;}
.y26f{bottom:21.239250px;}
.y193{bottom:21.240750px;}
.y14f{bottom:26.589300px;}
.ye9{bottom:27.033270px;}
.yf7{bottom:27.069975px;}
.y178{bottom:27.112350px;}
.y6{bottom:27.455400px;}
.y18f{bottom:29.862150px;}
.y17e{bottom:32.736200px;}
.y161{bottom:34.624573px;}
.y163{bottom:34.627200px;}
.y177{bottom:36.322800px;}
.y162{bottom:38.516400px;}
.y18e{bottom:38.970900px;}
.y15d{bottom:43.905328px;}
.y15f{bottom:43.908000px;}
.yea{bottom:43.990710px;}
.yf8{bottom:44.022192px;}
.y160{bottom:44.703495px;}
.yf4{bottom:46.668000px;}
.y102{bottom:46.700700px;}
.y186{bottom:46.803750px;}
.y15e{bottom:47.797050px;}
.y150{bottom:50.457696px;}
.y103{bottom:52.441350px;}
.y187{bottom:52.674150px;}
.y15c{bottom:53.984250px;}
.y151{bottom:54.166200px;}
.y17f{bottom:56.012750px;}
.y104{bottom:58.382400px;}
.y188{bottom:58.749300px;}
.yeb{bottom:60.881910px;}
.yf9{bottom:60.908190px;}
.y5{bottom:61.097550px;}
.y45{bottom:68.031450px;}
.y152{bottom:75.556050px;}
.yec{bottom:77.839350px;}
.yfa{bottom:77.860408px;}
.y153{bottom:79.268250px;}
.y180{bottom:79.357013px;}
.y213{bottom:79.720950px;}
.y105{bottom:79.743450px;}
.y189{bottom:80.592600px;}
.y44{bottom:81.531450px;}
.y106{bottom:82.480200px;}
.y18a{bottom:83.391300px;}
.y1d0{bottom:86.957460px;}
.y168{bottom:92.432850px;}
.yed{bottom:94.796790px;}
.yfb{bottom:94.812625px;}
.y43{bottom:95.031450px;}
.y91{bottom:97.019400px;}
.y4c{bottom:97.019850px;}
.y172{bottom:97.378200px;}
.y95{bottom:97.739400px;}
.y50{bottom:97.739850px;}
.y169{bottom:97.824300px;}
.yf2{bottom:98.350650px;}
.y100{bottom:98.367300px;}
.y184{bottom:100.661250px;}
.y117{bottom:100.728000px;}
.y154{bottom:100.746450px;}
.y11d{bottom:100.747350px;}
.y16a{bottom:101.536500px;}
.y181{bottom:102.633563px;}
.y4{bottom:102.698400px;}
.y1cf{bottom:104.243040px;}
.y155{bottom:104.458800px;}
.y171{bottom:106.340400px;}
.yf1{bottom:107.365200px;}
.yff{bottom:107.379150px;}
.y42{bottom:108.531450px;}
.y114{bottom:109.724250px;}
.y11a{bottom:109.741050px;}
.y183{bottom:109.876200px;}
.y116{bottom:109.998900px;}
.y11c{bottom:110.015700px;}
.y18d{bottom:110.020500px;}
.y111{bottom:110.419950px;}
.yee{bottom:113.691750px;}
.yfc{bottom:113.701766px;}
.y16b{bottom:114.794400px;}
.y170{bottom:115.302750px;}
.y16c{bottom:117.269100px;}
.yef{bottom:118.899870px;}
.yfd{bottom:118.908282px;}
.y115{bottom:119.269800px;}
.y11b{bottom:119.283750px;}
.y1ce{bottom:121.528620px;}
.y14b{bottom:123.613590px;}
.yf0{bottom:124.107990px;}
.yfe{bottom:124.114798px;}
.y156{bottom:125.936850px;}
.y182{bottom:125.977827px;}
.y110{bottom:128.422650px;}
.y174{bottom:128.712900px;}
.y25f{bottom:129.176400px;}
.y17a{bottom:129.177900px;}
.y157{bottom:129.649200px;}
.yf3{bottom:130.268700px;}
.y101{bottom:130.275450px;}
.y185{bottom:130.900200px;}
.y173{bottom:131.169300px;}
.y118{bottom:131.287800px;}
.y11e{bottom:131.298000px;}
.y191{bottom:132.961650px;}
.y1cd{bottom:138.814200px;}
.y14a{bottom:142.228830px;}
.y165{bottom:143.697519px;}
.y167{bottom:143.697600px;}
.y10f{bottom:146.425350px;}
.y166{bottom:147.586650px;}
.y158{bottom:151.038900px;}
.y164{bottom:153.776441px;}
.y159{bottom:154.751250px;}
.y1cc{bottom:155.920500px;}
.y149{bottom:160.844070px;}
.y10e{bottom:164.428050px;}
.y202{bottom:167.982300px;}
.y1cb{bottom:173.206080px;}
.y15a{bottom:176.229450px;}
.y49{bottom:176.457000px;}
.y148{bottom:179.459310px;}
.y15b{bottom:179.941650px;}
.y10d{bottom:182.428050px;}
.y1ca{bottom:190.491660px;}
.y201{bottom:194.261760px;}
.y7d{bottom:195.480510px;}
.y8d{bottom:197.145690px;}
.y147{bottom:198.074550px;}
.y10c{bottom:200.428050px;}
.y7c{bottom:212.766090px;}
.y200{bottom:212.802300px;}
.y8c{bottom:214.431270px;}
.y146{bottom:216.689790px;}
.y1c9{bottom:216.771120px;}
.y10b{bottom:218.425350px;}
.y7b{bottom:230.051670px;}
.y291{bottom:230.113800px;}
.y1ff{bottom:231.163560px;}
.y8b{bottom:231.537570px;}
.y1c8{bottom:234.056700px;}
.y2cc{bottom:235.125900px;}
.y145{bottom:235.305030px;}
.y10a{bottom:236.428050px;}
.y7a{bottom:247.337250px;}
.y290{bottom:247.393800px;}
.y1fe{bottom:248.269860px;}
.y2cb{bottom:248.801940px;}
.y8a{bottom:248.823150px;}
.y144{bottom:253.920270px;}
.y109{bottom:254.430900px;}
.y2ca{bottom:262.658880px;}
.y28f{bottom:264.493800px;}
.y1fd{bottom:265.555440px;}
.y1c7{bottom:272.146500px;}
.y108{bottom:272.433600px;}
.y143{bottom:272.535510px;}
.y79{bottom:273.616710px;}
.y89{bottom:275.102610px;}
.y2c9{bottom:276.515820px;}
.y28e{bottom:281.773800px;}
.y1fc{bottom:283.906080px;}
.y1c6{bottom:289.432080px;}
.y2c8{bottom:290.191860px;}
.y107{bottom:290.436300px;}
.y78{bottom:290.902290px;}
.y142{bottom:291.150750px;}
.y88{bottom:292.388190px;}
.y28d{bottom:299.053800px;}
.y2c7{bottom:304.048800px;}
.y1c5{bottom:306.717660px;}
.y77{bottom:308.008590px;}
.y87{bottom:309.673770px;}
.y1fb{bottom:310.185540px;}
.y140{bottom:314.910000px;}
.y28c{bottom:316.333800px;}
.y192{bottom:316.710000px;}
.y26e{bottom:316.711500px;}
.y2c6{bottom:317.905740px;}
.y235{bottom:319.770750px;}
.y1c4{bottom:324.003240px;}
.y194{bottom:324.090750px;}
.y76{bottom:325.294170px;}
.y86{bottom:326.947470px;}
.y1fa{bottom:327.471120px;}
.y13e{bottom:329.310750px;}
.y2c5{bottom:331.581780px;}
.y28b{bottom:333.613800px;}
.y13f{bottom:334.170000px;}
.y234{bottom:334.171500px;}
.y1c3{bottom:341.109540px;}
.y75{bottom:342.579750px;}
.y85{bottom:344.053770px;}
.y1f9{bottom:344.751120px;}
.y2c4{bottom:345.438720px;}
.y28a{bottom:350.893800px;}
.y13d{bottom:353.250000px;}
.y1c2{bottom:358.395120px;}
.y2c3{bottom:359.295660px;}
.y74{bottom:359.865330px;}
.y84{bottom:361.333770px;}
.y1f8{bottom:362.030400px;}
.y175{bottom:365.476500px;}
.y25a{bottom:365.478000px;}
.y13b{bottom:367.830750px;}
.y289{bottom:367.993800px;}
.y13c{bottom:372.510000px;}
.y233{bottom:372.511500px;}
.y2c2{bottom:372.971700px;}
.y1c1{bottom:375.680700px;}
.y73{bottom:377.150910px;}
.y83{bottom:378.601890px;}
.y1f7{bottom:379.130580px;}
.y25e{bottom:383.378250px;}
.y6c{bottom:385.222350px;}
.y288{bottom:385.273800px;}
.y2c1{bottom:386.828640px;}
.y13a{bottom:391.770000px;}
.y232{bottom:391.771500px;}
.y25d{bottom:392.588850px;}
.y1c0{bottom:392.966280px;}
.y72{bottom:394.257210px;}
.y82{bottom:395.887470px;}
.y1f6{bottom:396.416160px;}
.y2c0{bottom:400.685580px;}
.y6b{bottom:401.597850px;}
.y25c{bottom:401.799300px;}
.y287{bottom:402.553800px;}
.y137{bottom:406.170750px;}
.y1bf{bottom:410.251860px;}
.y138{bottom:410.850000px;}
.y230{bottom:410.851500px;}
.y71{bottom:411.542790px;}
.y81{bottom:413.173050px;}
.y2bf{bottom:414.361620px;}
.y1f5{bottom:414.946440px;}
.y6a{bottom:418.162350px;}
.y286{bottom:419.833800px;}
.y2be{bottom:428.218560px;}
.y70{bottom:428.828370px;}
.y135{bottom:430.110000px;}
.y22e{bottom:430.111500px;}
.y80{bottom:430.273770px;}
.y1f4{bottom:433.845540px;}
.y69{bottom:434.722350px;}
.y285{bottom:437.113650px;}
.y2bd{bottom:442.075500px;}
.y7f{bottom:447.473490px;}
.y133{bottom:447.570000px;}
.y22c{bottom:447.571500px;}
.y1be{bottom:448.408620px;}
.y1f3{bottom:451.131120px;}
.y68{bottom:451.817850px;}
.y2bc{bottom:455.751540px;}
.y6f{bottom:464.475210px;}
.y7e{bottom:464.759070px;}
.y67{bottom:468.382350px;}
.y1f2{bottom:468.416700px;}
.y2bb{bottom:469.608480px;}
.y284{bottom:472.607550px;}
.y1bd{bottom:474.688080px;}
.y132{bottom:475.653810px;}
.y97{bottom:481.775400px;}
.y6e{bottom:482.119350px;}
.y2ba{bottom:483.465420px;}
.y66{bottom:484.946850px;}
.y131{bottom:489.510750px;}
.y1bc{bottom:491.973660px;}
.y1f1{bottom:493.794540px;}
.y2b9{bottom:497.141460px;}
.y65{bottom:501.317850px;}
.y2cd{bottom:507.493800px;}
.y1f0{bottom:507.651480px;}
.y1bb{bottom:509.259240px;}
.y2b8{bottom:510.998400px;}
.ye6{bottom:512.115000px;}
.y16e{bottom:512.281500px;}
.y130{bottom:512.848650px;}
.y64{bottom:517.882350px;}
.y207{bottom:522.190800px;}
.y215{bottom:522.232800px;}
.y2b7{bottom:524.855340px;}
.y1ba{bottom:526.544820px;}
.y1ef{bottom:527.996700px;}
.y6d{bottom:529.819350px;}
.y12f{bottom:530.134230px;}
.y63{bottom:534.446850px;}
.y8f{bottom:535.055550px;}
.y93{bottom:537.395550px;}
.y2b6{bottom:538.531380px;}
.y208{bottom:539.148240px;}
.y216{bottom:539.185018px;}
.y1b9{bottom:543.651120px;}
.y12e{bottom:547.419810px;}
.y62{bottom:550.822350px;}
.y2b5{bottom:552.388320px;}
.y209{bottom:556.105680px;}
.y217{bottom:556.137235px;}
.y48{bottom:558.072300px;}
.y212{bottom:558.783000px;}
.y220{bottom:558.815700px;}
.y1b8{bottom:560.931120px;}
.y221{bottom:564.556350px;}
.y12d{bottom:564.705390px;}
.y2b4{bottom:566.064360px;}
.y61{bottom:567.386850px;}
.y222{bottom:570.497400px;}
.y92{bottom:570.875550px;}
.y20a{bottom:572.996880px;}
.y218{bottom:573.023233px;}
.y47{bottom:573.072300px;}
.y1b7{bottom:578.211120px;}
.y2b3{bottom:579.921300px;}
.y12c{bottom:581.990970px;}
.y46{bottom:588.072300px;}
.y20b{bottom:589.954320px;}
.y219{bottom:589.975451px;}
.y2b2{bottom:593.778240px;}
.y214{bottom:594.573600px;}
.y223{bottom:594.595200px;}
.y1b6{bottom:595.468080px;}
.y12b{bottom:599.276550px;}
.y60{bottom:600.502350px;}
.y8e{bottom:601.653000px;}
.y20c{bottom:606.911760px;}
.y21a{bottom:606.927668px;}
.y2b1{bottom:607.454280px;}
.y259{bottom:609.659700px;}
.yad{bottom:610.204050px;}
.y211{bottom:610.465650px;}
.y21f{bottom:610.482300px;}
.y1b5{bottom:612.753660px;}
.y12a{bottom:616.382850px;}
.y258{bottom:618.621900px;}
.y210{bottom:619.480200px;}
.y21e{bottom:619.494150px;}
.y2b0{bottom:621.311220px;}
.y20d{bottom:625.806720px;}
.y21b{bottom:625.816809px;}
.yac{bottom:626.768550px;}
.y257{bottom:627.584250px;}
.y1b4{bottom:629.859960px;}
.y20e{bottom:631.014840px;}
.y21c{bottom:631.023325px;}
.y129{bottom:633.668430px;}
.y2af{bottom:635.168160px;}
.y20f{bottom:636.222960px;}
.y21d{bottom:636.229841px;}
.yab{bottom:643.333050px;}
.y1b3{bottom:647.145540px;}
.y2ae{bottom:648.844200px;}
.y128{bottom:650.954010px;}
.yaa{bottom:659.704050px;}
.y5f{bottom:662.417670px;}
.y2ad{bottom:662.701140px;}
.ye5{bottom:663.371850px;}
.y1b2{bottom:664.431120px;}
.y127{bottom:668.239590px;}
.y1ee{bottom:674.967930px;}
.ya9{bottom:676.268550px;}
.y2ac{bottom:676.558080px;}
.y5e{bottom:677.360010px;}
.ye4{bottom:681.374550px;}
.y1b1{bottom:681.680520px;}
.y126{bottom:685.525170px;}
.y2ab{bottom:690.234120px;}
.ya8{bottom:692.833050px;}
.y1ed{bottom:693.508470px;}
.y5d{bottom:696.802350px;}
.ye3{bottom:699.377250px;}
.y283{bottom:701.504550px;}
.y125{bottom:702.804450px;}
.y2aa{bottom:704.091060px;}
.y1b0{bottom:707.959980px;}
.ya7{bottom:709.203900px;}
.y5c{bottom:711.922350px;}
.y1ec{bottom:712.228290px;}
.ye2{bottom:717.379950px;}
.y2a9{bottom:717.948000px;}
.y282{bottom:718.760250px;}
.y124{bottom:719.891340px;}
.ya6{bottom:725.768400px;}
.y1eb{bottom:730.768830px;}
.y2a8{bottom:731.624040px;}
.y5b{bottom:732.450270px;}
.ye1{bottom:735.382650px;}
.y281{bottom:736.015950px;}
.y123{bottom:737.176920px;}
.y1af{bottom:743.606820px;}
.y2a7{bottom:745.480980px;}
.y1ea{bottom:749.488650px;}
.y280{bottom:753.271650px;}
.ye0{bottom:753.385350px;}
.y122{bottom:754.462500px;}
.y5a{bottom:754.939110px;}
.ya5{bottom:758.888550px;}
.y2a6{bottom:759.337920px;}
.y1e9{bottom:768.029190px;}
.y27f{bottom:770.527350px;}
.ydf{bottom:771.388050px;}
.y121{bottom:771.748080px;}
.y2a5{bottom:773.013960px;}
.y59{bottom:776.542350px;}
.y1ae{bottom:779.253660px;}
.y1e8{bottom:786.569730px;}
.y2a4{bottom:786.870900px;}
.y27e{bottom:787.783050px;}
.y120{bottom:789.033660px;}
.yde{bottom:789.388050px;}
.y1ad{bottom:796.359960px;}
.y2a3{bottom:800.727840px;}
.y27d{bottom:805.038750px;}
.ydd{bottom:807.379950px;}
.y1ac{bottom:813.645540px;}
.y58{bottom:814.343790px;}
.y2a2{bottom:814.403880px;}
.ya4{bottom:820.803870px;}
.y1e7{bottom:822.216570px;}
.y27c{bottom:822.294450px;}
.ydc{bottom:825.382650px;}
.y2a1{bottom:828.260820px;}
.y195{bottom:828.270000px;}
.y270{bottom:828.271500px;}
.y1ab{bottom:830.931120px;}
.y197{bottom:834.390750px;}
.ya3{bottom:835.746210px;}
.y27b{bottom:839.550150px;}
.y11f{bottom:841.413300px;}
.y2a0{bottom:842.117760px;}
.ydb{bottom:843.385350px;}
.y57{bottom:844.402350px;}
.y1aa{bottom:848.119680px;}
.ya2{bottom:855.188550px;}
.y29f{bottom:855.793800px;}
.y27a{bottom:856.805850px;}
.y1e6{bottom:857.863410px;}
.yda{bottom:861.388050px;}
.y18b{bottom:864.480000px;}
.y1a9{bottom:865.405260px;}
.y269{bottom:868.224750px;}
.ya1{bottom:870.308400px;}
.y279{bottom:874.061550px;}
.y1e5{bottom:875.148990px;}
.yd9{bottom:879.390750px;}
.y29e{bottom:879.735630px;}
.y1a8{bottom:882.690840px;}
.y26d{bottom:885.233400px;}
.y56{bottom:890.122350px;}
.ya0{bottom:890.836470px;}
.y278{bottom:891.317250px;}
.y1e4{bottom:892.434570px;}
.y26c{bottom:894.342150px;}
.y1a7{bottom:899.797140px;}
.y26b{bottom:903.450900px;}
.yd8{bottom:905.316870px;}
.y206{bottom:905.316930px;}
.y29d{bottom:906.373650px;}
.y277{bottom:908.572950px;}
.y1e3{bottom:909.720150px;}
.y9f{bottom:913.325160px;}
.y1a6{bottom:917.082720px;}
.yd7{bottom:919.173810px;}
.y205{bottom:919.173870px;}
.y29c{bottom:923.653800px;}
.y52{bottom:925.042350px;}
.y276{bottom:925.828650px;}
.y1e2{bottom:927.005730px;}
.yd6{bottom:932.849850px;}
.y204{bottom:932.849910px;}
.y1a5{bottom:934.368300px;}
.y9e{bottom:934.928400px;}
.y29b{bottom:940.933800px;}
.y1e1{bottom:944.112030px;}
.yd5{bottom:946.706790px;}
.y203{bottom:946.706850px;}
.y1a4{bottom:951.653880px;}
.y275{bottom:956.252610px;}
.y29a{bottom:958.033650px;}
.y1e0{bottom:961.397610px;}
.y14c{bottom:967.005000px;}
.y1a3{bottom:968.939460px;}
.y274{bottom:969.928650px;}
.y9d{bottom:972.729840px;}
.y256{bottom:973.171650px;}
.y26a{bottom:974.500500px;}
.y299{bottom:975.313500px;}
.y4a{bottom:978.322350px;}
.y1df{bottom:978.683190px;}
.y4e{bottom:980.662350px;}
.y236{bottom:983.076150px;}
.y1a2{bottom:986.045760px;}
.y237{bottom:986.788500px;}
.y238{bottom:993.594300px;}
.y1de{bottom:995.968770px;}
.y298{bottom:1001.593800px;}
.y24a{bottom:1001.629573px;}
.y24c{bottom:1001.632200px;}
.y9c{bottom:1002.788400px;}
.y1a1{bottom:1003.331340px;}
.y24b{bottom:1005.521400px;}
.y246{bottom:1010.910328px;}
.y248{bottom:1010.913000px;}
.y249{bottom:1011.708495px;}
.y1dd{bottom:1013.254350px;}
.y112{bottom:1013.790000px;}
.y17b{bottom:1014.115500px;}
.y4d{bottom:1014.142350px;}
.y247{bottom:1014.802050px;}
.y239{bottom:1017.462696px;}
.y1a0{bottom:1020.616920px;}
.y245{bottom:1020.989250px;}
.y23a{bottom:1021.171200px;}
.y260{bottom:1023.507450px;}
.y1dc{bottom:1030.539930px;}
.y19f{bottom:1037.902500px;}
.y23b{bottom:1042.561050px;}
.y23c{bottom:1046.273250px;}
.y261{bottom:1046.851714px;}
.y1db{bottom:1047.646230px;}
.y9b{bottom:1048.508550px;}
.y297{bottom:1054.153800px;}
.y19e{bottom:1055.188080px;}
.y251{bottom:1059.437850px;}
.y252{bottom:1064.829300px;}
.y268{bottom:1066.789650px;}
.y23d{bottom:1067.751450px;}
.y253{bottom:1068.541500px;}
.y262{bottom:1070.128264px;}
.y296{bottom:1071.433800px;}
.y23e{bottom:1071.463800px;}
.y19d{bottom:1072.473660px;}
.y1da{bottom:1073.925690px;}
.y254{bottom:1081.799400px;}
.y255{bottom:1084.274100px;}
.y3{bottom:1086.486000px;}
.y295{bottom:1088.533650px;}
.y19c{bottom:1089.579960px;}
.y1d9{bottom:1091.211270px;}
.y7{bottom:1091.332500px;}
.y23f{bottom:1092.941850px;}
.y263{bottom:1093.472527px;}
.y9{bottom:1094.226150px;}
.y240{bottom:1096.654200px;}
.y294{bottom:1105.813500px;}
.y19b{bottom:1106.865540px;}
.y1d8{bottom:1108.496850px;}
.y41{bottom:1110.693750px;}
.y24e{bottom:1110.702519px;}
.y250{bottom:1110.702600px;}
.y227{bottom:1114.518000px;}
.y22b{bottom:1114.537350px;}
.y24f{bottom:1114.591650px;}
.y267{bottom:1114.776750px;}
.y264{bottom:1116.749077px;}
.y90{bottom:1116.909000px;}
.y241{bottom:1118.043900px;}
.y24d{bottom:1120.781441px;}
.y242{bottom:1121.756250px;}
.y1d7{bottom:1122.536700px;}
.y293{bottom:1123.093800px;}
.y224{bottom:1123.514250px;}
.y228{bottom:1123.531050px;}
.y226{bottom:1123.788900px;}
.y22a{bottom:1123.805700px;}
.y266{bottom:1123.991700px;}
.y19a{bottom:1124.151120px;}
.y1d6{bottom:1126.496850px;}
.y1d2{bottom:1130.816850px;}
.y225{bottom:1133.059800px;}
.y229{bottom:1133.073750px;}
.y272{bottom:1134.051660px;}
.y1d1{bottom:1134.056700px;}
.y4b{bottom:1134.979500px;}
.y1{bottom:1138.562550px;}
.y1d5{bottom:1139.636700px;}
.y1d3{bottom:1139.638650px;}
.y265{bottom:1140.093341px;}
.y292{bottom:1140.373650px;}
.y199{bottom:1141.436700px;}
.y243{bottom:1143.234450px;}
.y1d4{bottom:1143.596700px;}
.y244{bottom:1146.946650px;}
.yd4{bottom:1174.230750px;}
.y273{bottom:1175.293800px;}
.y198{bottom:1176.356850px;}
.y2{bottom:1183.178100px;}
.yd3{bottom:1186.931700px;}
.h16{height:-590.373000px;}
.h29{height:-36.909000px;}
.h4a{height:13.136011px;}
.h8{height:13.746000px;}
.h4c{height:13.908820px;}
.h4e{height:14.411884px;}
.h41{height:15.840000px;}
.h38{height:16.285389px;}
.h75{height:16.288884px;}
.h5c{height:16.295436px;}
.h43{height:16.740000px;}
.h52{height:18.185061px;}
.h46{height:18.360000px;}
.h45{height:18.540000px;}
.h47{height:18.541500px;}
.h15{height:20.996719px;}
.h49{height:22.150955px;}
.h4b{height:23.181221px;}
.h51{height:23.988563px;}
.h35{height:24.121007px;}
.h32{height:24.128437px;}
.h4d{height:24.191766px;}
.h5f{height:24.381087px;}
.h55{height:24.636445px;}
.h56{height:24.652969px;}
.h59{height:24.665208px;}
.h3d{height:24.807268px;}
.h3b{height:24.814699px;}
.h37{height:25.949695px;}
.h5b{height:25.965109px;}
.h4f{height:26.254413px;}
.h39{height:27.208857px;}
.h74{height:27.214536px;}
.h5d{height:27.225019px;}
.h53{height:28.225766px;}
.h36{height:28.381272px;}
.h33{height:28.390009px;}
.h60{height:28.687481px;}
.h57{height:29.007230px;}
.h5a{height:29.022082px;}
.h3e{height:29.188946px;}
.h3c{height:29.198119px;}
.h6d{height:30.563908px;}
.h62{height:31.320000px;}
.h61{height:32.580000px;}
.h44{height:32.693906px;}
.h11{height:33.328125px;}
.h1a{height:33.494766px;}
.h7{height:33.657240px;}
.h34{height:34.569684px;}
.h12{height:36.000000px;}
.h20{height:36.597656px;}
.hd{height:36.775358px;}
.h13{height:37.494141px;}
.he{height:37.676196px;}
.h42{height:38.494688px;}
.h3{height:38.664000px;}
.h5{height:38.841985px;}
.h17{height:39.339844px;}
.h19{height:40.066523px;}
.h79{height:40.501406px;}
.hf{height:40.697814px;}
.h65{height:41.493516px;}
.h10{height:41.694734px;}
.hc{height:42.651439px;}
.h23{height:43.506914px;}
.h21{height:44.850586px;}
.h22{height:44.868586px;}
.h2b{height:44.869186px;}
.h6e{height:46.089844px;}
.h1d{height:49.634648px;}
.h25{height:49.656968px;}
.h2d{height:49.657568px;}
.h71{height:49.659128px;}
.h72{height:49.659848px;}
.h70{height:49.675688px;}
.h73{height:49.677128px;}
.h27{height:49.682168px;}
.h2c{height:49.703888px;}
.h26{height:49.704488px;}
.h66{height:49.779368px;}
.h69{height:49.791608px;}
.h24{height:49.978088px;}
.h64{height:50.022728px;}
.h9{height:50.234650px;}
.h30{height:53.183222px;}
.h3a{height:53.194022px;}
.h40{height:53.197622px;}
.h2f{height:53.215622px;}
.h3f{height:53.250062px;}
.h67{height:53.286902px;}
.h6b{height:53.464219px;}
.h6c{height:54.181341px;}
.hb{height:54.253605px;}
.h6f{height:55.016719px;}
.h1b{height:59.800781px;}
.h68{height:60.081581px;}
.h18{height:66.223828px;}
.h6{height:66.544950px;}
.h1f{height:69.786875px;}
.h1e{height:69.831515px;}
.h2a{height:69.832115px;}
.ha{height:71.333019px;}
.h2{height:74.646000px;}
.h6a{height:76.509141px;}
.h76{height:76.529301px;}
.h1c{height:84.917109px;}
.h4{height:119.797500px;}
.h77{height:122.589141px;}
.h50{height:137.412000px;}
.h54{height:137.713500px;}
.h31{height:138.600000px;}
.h58{height:139.191000px;}
.h5e{height:140.326500px;}
.h48{height:186.300000px;}
.h14{height:368.149500px;}
.h28{height:478.347000px;}
.h78{height:1166.103000px;}
.h63{height:1167.165000px;}
.h2e{height:1167.874500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.we{width:-749.065500px;}
.w8{width:-744.120000px;}
.wd{width:-671.665500px;}
.wb{width:-670.299000px;}
.wc{width:-601.285500px;}
.wf{width:-530.185500px;}
.w13{width:-479.077500px;}
.w14{width:-474.610500px;}
.w16{width:-464.665500px;}
.w7{width:-253.980000px;}
.w11{width:-251.262000px;}
.w10{width:-102.354000px;}
.wa{width:-58.675500px;}
.w12{width:-58.510500px;}
.w15{width:-47.425500px;}
.w3{width:3.316500px;}
.w9{width:5.314500px;}
.w26{width:6.445500px;}
.w1c{width:69.660000px;}
.w1f{width:70.200000px;}
.w1d{width:76.680000px;}
.w1e{width:79.560000px;}
.w1a{width:162.000000px;}
.w20{width:162.222000px;}
.w2{width:187.578000px;}
.w21{width:190.500000px;}
.w22{width:190.875000px;}
.w19{width:192.750000px;}
.w23{width:195.672000px;}
.w1b{width:227.340000px;}
.w6{width:235.980000px;}
.w24{width:360.900000px;}
.w25{width:378.540000px;}
.w5{width:490.140000px;}
.w27{width:884.409000px;}
.w17{width:886.536000px;}
.w4{width:886.602000px;}
.w18{width:887.665500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x88{left:-835.595400px;}
.x9{left:-606.576900px;}
.xf{left:-603.517950px;}
.xb{left:-594.830250px;}
.x10{left:-588.687834px;}
.xc{left:-583.433392px;}
.xe{left:-542.021250px;}
.xd{left:-441.088200px;}
.xa{left:-420.830550px;}
.x8e{left:-419.435400px;}
.x89{left:-392.608020px;}
.x4{left:-384.661950px;}
.x6{left:-340.703850px;}
.x5{left:-325.329600px;}
.x8c{left:-295.955400px;}
.x8a{left:-293.435400px;}
.x8d{left:-290.555400px;}
.x8b{left:-288.035400px;}
.x90{left:-238.382580px;}
.x11{left:-202.153952px;}
.x12{left:-184.254836px;}
.x8f{left:-71.495400px;}
.x7{left:-2.652450px;}
.x1b{left:-1.260000px;}
.x0{left:0.000000px;}
.x58{left:5.300100px;}
.x33{left:6.745350px;}
.x91{left:8.503500px;}
.x57{left:9.872100px;}
.x31{left:11.319450px;}
.x2f{left:12.953105px;}
.x32{left:14.588250px;}
.x4d{left:15.731400px;}
.x35{left:18.945000px;}
.x37{left:19.986000px;}
.x2e{left:23.526229px;}
.x43{left:25.011995px;}
.x50{left:29.440500px;}
.x42{left:39.239850px;}
.x44{left:44.984250px;}
.x3f{left:48.077400px;}
.x2d{left:49.519200px;}
.x55{left:50.746500px;}
.x56{left:52.522350px;}
.x51{left:53.638350px;}
.x40{left:55.501050px;}
.x66{left:57.189000px;}
.x14{left:58.251900px;}
.x28{left:59.314950px;}
.x2b{left:63.900420px;}
.x48{left:68.314650px;}
.x49{left:70.612500px;}
.x23{left:72.103440px;}
.x69{left:73.262850px;}
.x53{left:77.076300px;}
.x30{left:79.806150px;}
.x20{left:81.642000px;}
.x36{left:85.765350px;}
.x52{left:87.718950px;}
.x21{left:95.682000px;}
.x68{left:108.057450px;}
.x17{left:117.900000px;}
.x7d{left:122.149800px;}
.x77{left:127.365095px;}
.x4e{left:140.517300px;}
.x15{left:142.122000px;}
.x81{left:146.228550px;}
.x78{left:147.337350px;}
.x74{left:150.430500px;}
.x4a{left:157.483358px;}
.x16{left:160.482000px;}
.x4b{left:162.611100px;}
.x4c{left:164.908950px;}
.x45{left:169.858050px;}
.x7a{left:172.965600px;}
.x46{left:174.983700px;}
.x47{left:177.281550px;}
.x41{left:186.473250px;}
.x1f{left:194.580000px;}
.x25{left:206.742000px;}
.x26{left:225.642000px;}
.x7e{left:242.870400px;}
.x1d{left:244.980000px;}
.x7f{left:251.262000px;}
.x7b{left:259.836457px;}
.x7c{left:264.964200px;}
.x67{left:267.379800px;}
.x2a{left:272.695200px;}
.x79{left:277.336800px;}
.x24{left:278.735670px;}
.x80{left:280.701600px;}
.x75{left:288.826350px;}
.x76{left:296.249850px;}
.x22{left:317.798400px;}
.x2{left:320.737200px;}
.x19{left:322.122000px;}
.x18{left:337.422000px;}
.x13{left:362.286750px;}
.x1{left:368.715150px;}
.x87{left:464.664000px;}
.x27{left:473.481480px;}
.x6d{left:474.576450px;}
.x92{left:475.603950px;}
.x38{left:479.891850px;}
.x71{left:483.025050px;}
.x3c{left:488.340450px;}
.x84{left:492.224250px;}
.x5c{left:493.920000px;}
.x82{left:497.473650px;}
.x72{left:530.185500px;}
.x83{left:531.598950px;}
.x73{left:537.925050px;}
.x85{left:542.844300px;}
.x5e{left:561.960600px;}
.x5d{left:566.897850px;}
.x86{left:571.103250px;}
.x60{left:596.958000px;}
.x5f{left:599.477850px;}
.x6e{left:601.284000px;}
.x61{left:602.358000px;}
.x62{left:606.779850px;}
.x63{left:618.917850px;}
.x1a{left:650.622000px;}
.x65{left:654.530670px;}
.x3{left:658.923000px;}
.x8{left:662.239500px;}
.x6a{left:670.297500px;}
.x6f{left:671.665500px;}
.x6c{left:690.284100px;}
.x70{left:749.065500px;}
.x6b{left:756.063300px;}
.x64{left:821.417850px;}
.x29{left:887.598000px;}
.x5a{left:940.338000px;}
.x2c{left:951.588000px;}
.x3e{left:995.266500px;}
.x1c{left:1140.582000px;}
.x4f{left:1144.174500px;}
.x5b{left:1357.578000px;}
.x59{left:1367.523000px;}
.x54{left:1371.990000px;}
.x3d{left:1423.098000px;}
.x39{left:1494.198000px;}
.x34{left:1563.211500px;}
.x3a{left:1564.578000px;}
.x1e{left:1630.722000px;}
.x3b{left:1641.978000px;}
@media print{
.v1{vertical-align:-29.458560pt;}
.v8{vertical-align:-27.478187pt;}
.vd{vertical-align:-24.485429pt;}
.vf{vertical-align:-19.846933pt;}
.vc{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v9{vertical-align:-11.642133pt;}
.v6{vertical-align:-4.814720pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v10{vertical-align:5.120000pt;}
.va{vertical-align:11.642133pt;}
.vb{vertical-align:16.249600pt;}
.v7{vertical-align:18.598400pt;}
.ve{vertical-align:19.840000pt;}
.v2{vertical-align:24.320000pt;}
.v11{vertical-align:40.960000pt;}
.lsa0{letter-spacing:-3.880320pt;}
.lsa1{letter-spacing:-3.248640pt;}
.ls8a{letter-spacing:-2.997456pt;}
.ls8f{letter-spacing:-2.996558pt;}
.lsa6{letter-spacing:-2.979398pt;}
.lsad{letter-spacing:-2.945078pt;}
.ls7b{letter-spacing:-2.914560pt;}
.ls82{letter-spacing:-2.913662pt;}
.ls9d{letter-spacing:-2.897664pt;}
.ls9a{letter-spacing:-2.852937pt;}
.ls8c{letter-spacing:-2.745019pt;}
.ls91{letter-spacing:-2.744157pt;}
.lsa8{letter-spacing:-2.728469pt;}
.lsa3{letter-spacing:-2.727073pt;}
.lsaf{letter-spacing:-2.697012pt;}
.ls88{letter-spacing:-2.694683pt;}
.ls8d{letter-spacing:-2.693876pt;}
.lsa4{letter-spacing:-2.678449pt;}
.ls7d{letter-spacing:-2.669046pt;}
.ls84{letter-spacing:-2.668225pt;}
.ls9f{letter-spacing:-2.653605pt;}
.lsab{letter-spacing:-2.647596pt;}
.ls79{letter-spacing:-2.620160pt;}
.ls80{letter-spacing:-2.619353pt;}
.ls9b{letter-spacing:-2.604971pt;}
.ls89{letter-spacing:-2.543296pt;}
.ls8e{letter-spacing:-2.542534pt;}
.lsa5{letter-spacing:-2.527974pt;}
.lsac{letter-spacing:-2.498854pt;}
.ls7a{letter-spacing:-2.472960pt;}
.ls81{letter-spacing:-2.472198pt;}
.ls9c{letter-spacing:-2.458624pt;}
.lsaa{letter-spacing:-1.994432pt;}
.ls7f{letter-spacing:-1.993664pt;}
.ls86{letter-spacing:-1.993248pt;}
.ls97{letter-spacing:-1.895046pt;}
.ls95{letter-spacing:-1.837850pt;}
.ls8b{letter-spacing:-1.695531pt;}
.ls90{letter-spacing:-1.695023pt;}
.lsa7{letter-spacing:-1.685316pt;}
.lsa2{letter-spacing:-1.684480pt;}
.lsae{letter-spacing:-1.665903pt;}
.ls99{letter-spacing:-1.654076pt;}
.ls7c{letter-spacing:-1.648640pt;}
.ls83{letter-spacing:-1.648132pt;}
.ls9e{letter-spacing:-1.639083pt;}
.lsa9{letter-spacing:-1.233552pt;}
.ls7e{letter-spacing:-1.233056pt;}
.ls85{letter-spacing:-1.232791pt;}
.ls98{letter-spacing:-0.985391pt;}
.ls78{letter-spacing:-0.857600pt;}
.lsb5{letter-spacing:-0.849920pt;}
.ls2e{letter-spacing:-0.816000pt;}
.ls76{letter-spacing:-0.814720pt;}
.ls93{letter-spacing:-0.728960pt;}
.ls94{letter-spacing:-0.690560pt;}
.ls28{letter-spacing:-0.689408pt;}
.ls77{letter-spacing:-0.686080pt;}
.lsb4{letter-spacing:-0.647680pt;}
.ls96{letter-spacing:-0.625082pt;}
.lscb{letter-spacing:-0.600320pt;}
.lsb1{letter-spacing:-0.584320pt;}
.ls87{letter-spacing:-0.531200pt;}
.ls3f{letter-spacing:-0.480000pt;}
.ls47{letter-spacing:-0.478080pt;}
.ls23{letter-spacing:-0.473968pt;}
.ls35{letter-spacing:-0.471680pt;}
.ls2d{letter-spacing:-0.426667pt;}
.ls46{letter-spacing:-0.424960pt;}
.ls36{letter-spacing:-0.385920pt;}
.lsb8{letter-spacing:-0.371840pt;}
.ls38{letter-spacing:-0.363520pt;}
.ls3e{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.320266pt;}
.ls43{letter-spacing:-0.318720pt;}
.ls22{letter-spacing:-0.301616pt;}
.ls31{letter-spacing:-0.300160pt;}
.lsb6{letter-spacing:-0.265600pt;}
.ls34{letter-spacing:-0.257280pt;}
.ls32{letter-spacing:-0.214400pt;}
.ls41{letter-spacing:-0.212480pt;}
.ls27{letter-spacing:-0.192932pt;}
.ls3b{letter-spacing:-0.192000pt;}
.ls75{letter-spacing:-0.171520pt;}
.ls42{letter-spacing:-0.159360pt;}
.ls29{letter-spacing:-0.106755pt;}
.ls40{letter-spacing:-0.106240pt;}
.ls26{letter-spacing:-0.096466pt;}
.ls3d{letter-spacing:-0.096000pt;}
.ls92{letter-spacing:-0.085760pt;}
.ls2c{letter-spacing:-0.053378pt;}
.ls44{letter-spacing:-0.053120pt;}
.lsb0{letter-spacing:-0.042880pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000533pt;}
.ls39{letter-spacing:0.042880pt;}
.ls19{letter-spacing:0.047360pt;}
.ls60{letter-spacing:0.047893pt;}
.ls16{letter-spacing:0.053120pt;}
.ls5b{letter-spacing:0.065920pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106240pt;}
.ls2b{letter-spacing:0.106755pt;}
.lsb7{letter-spacing:0.117760pt;}
.ls6e{letter-spacing:0.132800pt;}
.lsd{letter-spacing:0.144000pt;}
.ls45{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.171520pt;}
.ls24{letter-spacing:0.172352pt;}
.ls66{letter-spacing:0.175296pt;}
.ls30{letter-spacing:0.176640pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.192932pt;}
.ls12{letter-spacing:0.212480pt;}
.ls49{letter-spacing:0.214400pt;}
.lsb3{letter-spacing:0.224000pt;}
.lsc8{letter-spacing:0.227264pt;}
.ls5d{letter-spacing:0.228416pt;}
.ls5f{letter-spacing:0.233728pt;}
.ls3a{letter-spacing:0.257280pt;}
.ls1{letter-spacing:0.258528pt;}
.ls48{letter-spacing:0.265600pt;}
.ls21{letter-spacing:0.266245pt;}
.ls73{letter-spacing:0.276224pt;}
.ls33{letter-spacing:0.300160pt;}
.ls0{letter-spacing:0.301616pt;}
.ls4c{letter-spacing:0.302784pt;}
.ls7{letter-spacing:0.304640pt;}
.ls6{letter-spacing:0.318080pt;}
.ls13{letter-spacing:0.318720pt;}
.ls9{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.320266pt;}
.ls8{letter-spacing:0.320533pt;}
.ls3{letter-spacing:0.321600pt;}
.lsb{letter-spacing:0.336000pt;}
.ls20{letter-spacing:0.337631pt;}
.ls37{letter-spacing:0.343040pt;}
.ls25{letter-spacing:0.344704pt;}
.lsbf{letter-spacing:0.347520pt;}
.lsc3{letter-spacing:0.403712pt;}
.ls4f{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.796800pt;}
.lsf{letter-spacing:0.816000pt;}
.ls5c{letter-spacing:0.818048pt;}
.lsc5{letter-spacing:0.840448pt;}
.lsbd{letter-spacing:0.974720pt;}
.ls6a{letter-spacing:1.000427pt;}
.lsc6{letter-spacing:1.457920pt;}
.lsc0{letter-spacing:1.487360pt;}
.ls4e{letter-spacing:2.071680pt;}
.lsc2{letter-spacing:2.496640pt;}
.lsc1{letter-spacing:2.549760pt;}
.ls4b{letter-spacing:2.709120pt;}
.ls64{letter-spacing:2.719744pt;}
.ls4d{letter-spacing:2.740992pt;}
.ls4a{letter-spacing:2.751616pt;}
.lsbe{letter-spacing:2.824960pt;}
.ls6c{letter-spacing:2.825387pt;}
.ls53{letter-spacing:2.857856pt;}
.ls56{letter-spacing:3.320000pt;}
.ls57{letter-spacing:3.346560pt;}
.ls54{letter-spacing:3.484672pt;}
.lsb9{letter-spacing:3.489984pt;}
.ls50{letter-spacing:3.984000pt;}
.lse{letter-spacing:4.012800pt;}
.ls18{letter-spacing:4.621440pt;}
.ls1c{letter-spacing:5.258880pt;}
.ls1d{letter-spacing:5.896320pt;}
.ls1a{letter-spacing:6.533760pt;}
.ls17{letter-spacing:6.586880pt;}
.ls65{letter-spacing:7.224320pt;}
.ls55{letter-spacing:9.136640pt;}
.ls5a{letter-spacing:9.736896pt;}
.ls69{letter-spacing:9.774080pt;}
.ls52{letter-spacing:11.048960pt;}
.lsb2{letter-spacing:11.527040pt;}
.lsc{letter-spacing:11.664000pt;}
.ls1b{letter-spacing:11.686400pt;}
.ls72{letter-spacing:12.961280pt;}
.lsca{letter-spacing:12.992640pt;}
.ls61{letter-spacing:14.236160pt;}
.ls67{letter-spacing:14.873600pt;}
.ls51{letter-spacing:16.148480pt;}
.ls62{letter-spacing:16.785920pt;}
.ls11{letter-spacing:17.423360pt;}
.ls63{letter-spacing:17.460544pt;}
.ls6b{letter-spacing:17.547520pt;}
.lsc9{letter-spacing:18.738560pt;}
.ls14{letter-spacing:19.330368pt;}
.ls74{letter-spacing:19.335680pt;}
.ls58{letter-spacing:21.301120pt;}
.ls70{letter-spacing:21.912000pt;}
.ls6f{letter-spacing:21.938560pt;}
.ls68{letter-spacing:22.576000pt;}
.lsc7{letter-spacing:28.369408pt;}
.ls71{letter-spacing:36.015360pt;}
.ls6d{letter-spacing:37.927680pt;}
.lsc4{letter-spacing:46.904960pt;}
.lsbb{letter-spacing:47.469056pt;}
.lsba{letter-spacing:68.673280pt;}
.lsbc{letter-spacing:72.429056pt;}
.ls5{letter-spacing:178.714880pt;}
.ls59{letter-spacing:710.564480pt;}
.ls4{letter-spacing:1221.908480pt;}
.ws3{word-spacing:-89.014511pt;}
.wsc1{word-spacing:-53.120000pt;}
.wsbf{word-spacing:-52.960640pt;}
.ws148{word-spacing:-43.223040pt;}
.ws92{word-spacing:-33.227733pt;}
.ws142{word-spacing:-32.224000pt;}
.ws145{word-spacing:-23.712640pt;}
.ws11{word-spacing:-22.720000pt;}
.ws9{word-spacing:-20.136960pt;}
.ws6{word-spacing:-14.208000pt;}
.wsc0{word-spacing:-14.072320pt;}
.ws2{word-spacing:-13.746424pt;}
.ws8{word-spacing:-13.680000pt;}
.ws1c{word-spacing:-13.598720pt;}
.ws20{word-spacing:-13.492480pt;}
.ws23{word-spacing:-13.439360pt;}
.ws1f{word-spacing:-13.386240pt;}
.ws1{word-spacing:-13.344000pt;}
.ws26{word-spacing:-13.333120pt;}
.ws22{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.226880pt;}
.ws1d{word-spacing:-13.173760pt;}
.ws9e{word-spacing:-13.120640pt;}
.ws9d{word-spacing:-13.067520pt;}
.ws21{word-spacing:-12.961280pt;}
.ws25{word-spacing:-12.855040pt;}
.wsbd{word-spacing:-12.695680pt;}
.ws16{word-spacing:-12.336000pt;}
.ws19{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.808000pt;}
.wsbe{word-spacing:-11.580160pt;}
.ws18{word-spacing:-11.520000pt;}
.wsf{word-spacing:-11.063040pt;}
.ws1b{word-spacing:-11.020160pt;}
.ws14{word-spacing:-10.977280pt;}
.wsc{word-spacing:-10.891520pt;}
.ws13{word-spacing:-10.762880pt;}
.wsb{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.666667pt;}
.wsa7{word-spacing:-10.634240pt;}
.ws8c{word-spacing:-10.548480pt;}
.ws144{word-spacing:-10.505600pt;}
.wsd{word-spacing:-10.462720pt;}
.wsa{word-spacing:-10.419840pt;}
.wse{word-spacing:-10.334080pt;}
.ws10{word-spacing:-10.248320pt;}
.ws147{word-spacing:-10.119680pt;}
.wsa8{word-spacing:-9.991040pt;}
.ws146{word-spacing:-9.862400pt;}
.wsb6{word-spacing:-9.240868pt;}
.ws93{word-spacing:-9.237310pt;}
.ws9b{word-spacing:-9.235382pt;}
.ws24{word-spacing:-8.640000pt;}
.wsab{word-spacing:-8.211305pt;}
.ws17{word-spacing:-8.000000pt;}
.wsb7{word-spacing:-7.246436pt;}
.ws94{word-spacing:-7.243646pt;}
.ws9c{word-spacing:-7.242134pt;}
.wsa2{word-spacing:-6.721568pt;}
.ws12{word-spacing:-6.720000pt;}
.wsa6{word-spacing:-6.719555pt;}
.wsb4{word-spacing:-6.681075pt;}
.wsbc{word-spacing:-6.604115pt;}
.ws90{word-spacing:-6.535680pt;}
.ws99{word-spacing:-6.533667pt;}
.wsaa{word-spacing:-5.967980pt;}
.wsa9{word-spacing:-5.675712pt;}
.ws95{word-spacing:-5.528864pt;}
.wsa1{word-spacing:-5.419643pt;}
.wsa5{word-spacing:-5.418020pt;}
.wsb3{word-spacing:-5.386993pt;}
.wsba{word-spacing:-5.324940pt;}
.ws8f{word-spacing:-5.269760pt;}
.ws98{word-spacing:-5.268137pt;}
.wsae{word-spacing:-5.239211pt;}
.wsd3{word-spacing:-3.346560pt;}
.ws6c{word-spacing:-3.134080pt;}
.ws128{word-spacing:-3.027840pt;}
.ws6b{word-spacing:-2.974720pt;}
.wsd2{word-spacing:-2.709120pt;}
.ws166{word-spacing:-2.658560pt;}
.ws176{word-spacing:-2.572800pt;}
.ws133{word-spacing:-2.549760pt;}
.ws110{word-spacing:-2.496640pt;}
.ws167{word-spacing:-2.101120pt;}
.wsd4{word-spacing:-2.071680pt;}
.ws174{word-spacing:-2.015360pt;}
.ws165{word-spacing:-1.929600pt;}
.ws11b{word-spacing:-1.912320pt;}
.ws177{word-spacing:-1.800960pt;}
.wseb{word-spacing:-1.434240pt;}
.ws175{word-spacing:-1.372160pt;}
.ws173{word-spacing:-1.286400pt;}
.wsea{word-spacing:-1.274880pt;}
.wsef{word-spacing:-1.221760pt;}
.ws124{word-spacing:-1.062400pt;}
.ws149{word-spacing:-1.029120pt;}
.ws189{word-spacing:-0.857600pt;}
.ws4e{word-spacing:-0.816000pt;}
.ws45{word-spacing:-0.814720pt;}
.wsf0{word-spacing:-0.796800pt;}
.wsc6{word-spacing:-0.728960pt;}
.wsc7{word-spacing:-0.643200pt;}
.ws12a{word-spacing:-0.637440pt;}
.ws130{word-spacing:-0.584320pt;}
.ws14b{word-spacing:-0.557440pt;}
.wsc3{word-spacing:-0.514560pt;}
.ws14a{word-spacing:-0.428800pt;}
.ws12f{word-spacing:-0.424960pt;}
.ws2c{word-spacing:-0.344704pt;}
.ws39{word-spacing:-0.343040pt;}
.ws2e{word-spacing:-0.337631pt;}
.ws5b{word-spacing:-0.336000pt;}
.ws35{word-spacing:-0.320266pt;}
.ws7b{word-spacing:-0.318720pt;}
.ws3e{word-spacing:-0.300160pt;}
.ws41{word-spacing:-0.272640pt;}
.ws85{word-spacing:-0.265600pt;}
.ws30{word-spacing:-0.258528pt;}
.wsc2{word-spacing:-0.257280pt;}
.ws12b{word-spacing:-0.224000pt;}
.ws6d{word-spacing:-0.212480pt;}
.ws28{word-spacing:-0.192932pt;}
.ws4b{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.172352pt;}
.ws3d{word-spacing:-0.171520pt;}
.ws6e{word-spacing:-0.159360pt;}
.ws42{word-spacing:-0.136320pt;}
.ws13b{word-spacing:-0.117760pt;}
.ws33{word-spacing:-0.106755pt;}
.ws5f{word-spacing:-0.106240pt;}
.ws37{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.088000pt;}
.ws5c{word-spacing:-0.085760pt;}
.ws70{word-spacing:-0.053120pt;}
.ws27{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.048000pt;}
.ws78{word-spacing:0.053120pt;}
.ws34{word-spacing:0.053378pt;}
.ws47{word-spacing:0.096000pt;}
.ws2d{word-spacing:0.096466pt;}
.ws5d{word-spacing:0.106240pt;}
.ws31{word-spacing:0.106755pt;}
.ws64{word-spacing:0.159360pt;}
.ws3b{word-spacing:0.171520pt;}
.ws43{word-spacing:0.181760pt;}
.ws48{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.192932pt;}
.ws63{word-spacing:0.212480pt;}
.ws3a{word-spacing:0.214400pt;}
.ws116{word-spacing:0.265600pt;}
.ws3c{word-spacing:0.300160pt;}
.ws29{word-spacing:0.301616pt;}
.ws65{word-spacing:0.318720pt;}
.ws32{word-spacing:0.320266pt;}
.ws4c{word-spacing:0.336000pt;}
.ws40{word-spacing:0.363520pt;}
.wsdc{word-spacing:0.371840pt;}
.wsc8{word-spacing:0.385920pt;}
.wscb{word-spacing:0.424960pt;}
.ws36{word-spacing:0.426667pt;}
.ws18a{word-spacing:0.428800pt;}
.ws38{word-spacing:0.471680pt;}
.ws2a{word-spacing:0.473968pt;}
.ws6a{word-spacing:0.478080pt;}
.ws4d{word-spacing:0.480000pt;}
.wse4{word-spacing:0.531200pt;}
.ws44{word-spacing:0.557440pt;}
.ws11a{word-spacing:0.584320pt;}
.wsfe{word-spacing:0.625082pt;}
.ws3f{word-spacing:0.643200pt;}
.wsc5{word-spacing:0.686080pt;}
.wsfa{word-spacing:0.690560pt;}
.ws18b{word-spacing:0.814720pt;}
.ws103{word-spacing:0.819541pt;}
.wsd9{word-spacing:0.824066pt;}
.wsd6{word-spacing:0.824320pt;}
.ws10a{word-spacing:0.832951pt;}
.ws105{word-spacing:0.842240pt;}
.ws107{word-spacing:0.842658pt;}
.wse8{word-spacing:0.847511pt;}
.wse6{word-spacing:0.847765pt;}
.ws119{word-spacing:0.849920pt;}
.wsc9{word-spacing:0.857600pt;}
.ws57{word-spacing:0.912000pt;}
.ws143{word-spacing:0.956160pt;}
.wsff{word-spacing:0.961665pt;}
.ws100{word-spacing:0.985391pt;}
.wsc4{word-spacing:0.986240pt;}
.ws56{word-spacing:1.008000pt;}
.wse0{word-spacing:1.115520pt;}
.wsdb{word-spacing:1.232791pt;}
.wsd8{word-spacing:1.233056pt;}
.ws109{word-spacing:1.233552pt;}
.ws17d{word-spacing:1.286400pt;}
.ws10d{word-spacing:1.328000pt;}
.ws104{word-spacing:1.344034pt;}
.wsda{word-spacing:1.351438pt;}
.wsd7{word-spacing:1.351854pt;}
.ws4{word-spacing:1.365890pt;}
.ws10b{word-spacing:1.366019pt;}
.ws106{word-spacing:1.381245pt;}
.ws108{word-spacing:1.381952pt;}
.wse9{word-spacing:1.389898pt;}
.wse7{word-spacing:1.390334pt;}
.ws14c{word-spacing:1.434240pt;}
.ws102{word-spacing:1.506607pt;}
.ws101{word-spacing:1.654076pt;}
.ws58{word-spacing:1.728000pt;}
.ws86{word-spacing:1.752960pt;}
.ws15f{word-spacing:1.758080pt;}
.wsfd{word-spacing:1.837850pt;}
.ws168{word-spacing:1.929600pt;}
.ws115{word-spacing:1.965440pt;}
.ws114{word-spacing:2.124800pt;}
.ws59{word-spacing:2.256000pt;}
.ws17b{word-spacing:2.358400pt;}
.ws8b{word-spacing:2.390400pt;}
.ws55{word-spacing:2.400000pt;}
.ws15e{word-spacing:2.401280pt;}
.ws17c{word-spacing:2.487040pt;}
.ws169{word-spacing:2.572800pt;}
.wsde{word-spacing:2.602880pt;}
.ws54{word-spacing:2.736000pt;}
.wsd1{word-spacing:2.762240pt;}
.wse5{word-spacing:2.868480pt;}
.ws53{word-spacing:2.928000pt;}
.ws16e{word-spacing:3.001600pt;}
.wsca{word-spacing:3.027840pt;}
.ws17f{word-spacing:3.173120pt;}
.wsf3{word-spacing:3.240320pt;}
.ws13c{word-spacing:3.293440pt;}
.wsec{word-spacing:3.399680pt;}
.wsf4{word-spacing:3.559040pt;}
.ws180{word-spacing:3.644800pt;}
.ws51{word-spacing:3.648000pt;}
.ws7a{word-spacing:3.665280pt;}
.ws79{word-spacing:3.718400pt;}
.ws14d{word-spacing:3.877760pt;}
.ws50{word-spacing:3.888000pt;}
.ws14e{word-spacing:4.090240pt;}
.ws4f{word-spacing:4.176000pt;}
.wsf6{word-spacing:4.288000pt;}
.ws84{word-spacing:4.302720pt;}
.ws52{word-spacing:4.320000pt;}
.wsf5{word-spacing:4.459520pt;}
.ws131{word-spacing:4.515200pt;}
.ws77{word-spacing:4.674560pt;}
.ws17e{word-spacing:4.931200pt;}
.ws82{word-spacing:4.940160pt;}
.ws73{word-spacing:5.046400pt;}
.ws184{word-spacing:5.102720pt;}
.ws74{word-spacing:5.152640pt;}
.ws83{word-spacing:5.312000pt;}
.ws185{word-spacing:5.317120pt;}
.ws6f{word-spacing:5.577600pt;}
.ws112{word-spacing:5.736960pt;}
.ws113{word-spacing:5.790080pt;}
.ws158{word-spacing:5.949440pt;}
.ws111{word-spacing:6.108800pt;}
.wscd{word-spacing:6.268160pt;}
.ws7c{word-spacing:6.427520pt;}
.ws75{word-spacing:6.480640pt;}
.wscc{word-spacing:6.640000pt;}
.wsdd{word-spacing:6.905600pt;}
.ws80{word-spacing:7.011840pt;}
.ws16a{word-spacing:7.032320pt;}
.ws120{word-spacing:7.064960pt;}
.wsf8{word-spacing:7.118080pt;}
.ws157{word-spacing:7.224320pt;}
.ws156{word-spacing:7.277440pt;}
.wsf1{word-spacing:7.543040pt;}
.ws182{word-spacing:7.675520pt;}
.wsf7{word-spacing:7.755520pt;}
.ws7f{word-spacing:7.914880pt;}
.wsf2{word-spacing:8.180480pt;}
.wsee{word-spacing:8.392960pt;}
.ws172{word-spacing:8.790400pt;}
.ws72{word-spacing:8.817920pt;}
.ws171{word-spacing:8.961920pt;}
.ws81{word-spacing:9.030400pt;}
.ws71{word-spacing:9.189760pt;}
.ws16c{word-spacing:9.433600pt;}
.ws62{word-spacing:9.455360pt;}
.ws170{word-spacing:9.519360pt;}
.ws17a{word-spacing:9.605120pt;}
.ws129{word-spacing:9.827200pt;}
.ws181{word-spacing:10.076800pt;}
.wse3{word-spacing:10.092800pt;}
.ws16d{word-spacing:10.162560pt;}
.ws179{word-spacing:10.248320pt;}
.ws132{word-spacing:10.358400pt;}
.wse2{word-spacing:10.570880pt;}
.ws5e{word-spacing:10.730240pt;}
.ws60{word-spacing:10.942720pt;}
.ws76{word-spacing:11.102080pt;}
.ws153{word-spacing:11.314560pt;}
.ws4a{word-spacing:11.328000pt;}
.ws89{word-spacing:11.367680pt;}
.ws46{word-spacing:11.568000pt;}
.ws7d{word-spacing:11.580160pt;}
.ws152{word-spacing:11.633280pt;}
.ws7e{word-spacing:11.739520pt;}
.ws49{word-spacing:11.856000pt;}
.ws8a{word-spacing:12.005120pt;}
.ws178{word-spacing:12.606720pt;}
.ws117{word-spacing:12.642560pt;}
.ws16f{word-spacing:12.778240pt;}
.wsdf{word-spacing:12.855040pt;}
.ws118{word-spacing:12.908160pt;}
.wscf{word-spacing:13.067520pt;}
.wsd0{word-spacing:13.280000pt;}
.ws16b{word-spacing:13.421440pt;}
.wsce{word-spacing:13.492480pt;}
.ws187{word-spacing:13.893120pt;}
.ws11e{word-spacing:13.917440pt;}
.ws11c{word-spacing:14.023680pt;}
.ws11d{word-spacing:14.129920pt;}
.ws134{word-spacing:14.554880pt;}
.ws164{word-spacing:14.622080pt;}
.ws135{word-spacing:14.661120pt;}
.ws186{word-spacing:14.707840pt;}
.ws11f{word-spacing:14.767360pt;}
.ws122{word-spacing:14.820480pt;}
.ws127{word-spacing:14.926720pt;}
.ws123{word-spacing:14.979840pt;}
.ws12e{word-spacing:15.192320pt;}
.ws154{word-spacing:15.298560pt;}
.wse1{word-spacing:15.829760pt;}
.wsd5{word-spacing:16.467200pt;}
.ws15d{word-spacing:16.573440pt;}
.ws155{word-spacing:16.626560pt;}
.ws61{word-spacing:16.679680pt;}
.ws66{word-spacing:17.104640pt;}
.ws10f{word-spacing:17.317120pt;}
.ws10e{word-spacing:17.476480pt;}
.wsed{word-spacing:17.742080pt;}
.ws188{word-spacing:17.923840pt;}
.ws138{word-spacing:18.113920pt;}
.ws68{word-spacing:19.016960pt;}
.ws13e{word-spacing:19.070080pt;}
.ws69{word-spacing:19.176320pt;}
.ws67{word-spacing:19.441920pt;}
.ws15a{word-spacing:19.707520pt;}
.ws159{word-spacing:20.079360pt;}
.ws151{word-spacing:20.238720pt;}
.ws87{word-spacing:20.982400pt;}
.ws10c{word-spacing:21.194880pt;}
.ws88{word-spacing:21.354240pt;}
.ws137{word-spacing:21.619840pt;}
.ws125{word-spacing:22.257280pt;}
.ws126{word-spacing:22.469760pt;}
.ws161{word-spacing:22.855040pt;}
.ws160{word-spacing:23.026560pt;}
.wsfb{word-spacing:23.054080pt;}
.wsfc{word-spacing:23.372800pt;}
.ws121{word-spacing:24.807040pt;}
.ws13d{word-spacing:26.719360pt;}
.ws163{word-spacing:28.643840pt;}
.ws162{word-spacing:29.415680pt;}
.ws150{word-spacing:30.065920pt;}
.ws14f{word-spacing:30.225280pt;}
.ws13a{word-spacing:35.696640pt;}
.ws139{word-spacing:35.909120pt;}
.ws12d{word-spacing:37.608960pt;}
.wsf9{word-spacing:44.833280pt;}
.ws15b{word-spacing:46.692480pt;}
.ws15c{word-spacing:47.436160pt;}
.ws183{word-spacing:48.454400pt;}
.ws9a{word-spacing:68.716556pt;}
.ws140{word-spacing:68.716768pt;}
.ws91{word-spacing:68.738871pt;}
.ws13f{word-spacing:68.739147pt;}
.ws12c{word-spacing:68.949760pt;}
.ws141{word-spacing:77.068538pt;}
.wsb5{word-spacing:77.068579pt;}
.ws136{word-spacing:96.678400pt;}
.wsbb{word-spacing:105.183921pt;}
.wsad{word-spacing:117.156361pt;}
.ws97{word-spacing:117.803197pt;}
.ws8e{word-spacing:117.839488pt;}
.wsb9{word-spacing:119.073387pt;}
.wsb2{word-spacing:120.460990pt;}
.wsb0{word-spacing:120.653888pt;}
.wsa4{word-spacing:121.154791pt;}
.wsa0{word-spacing:121.191082pt;}
.wsac{word-spacing:122.884369pt;}
.ws96{word-spacing:123.562831pt;}
.ws8d{word-spacing:123.600896pt;}
.wsb8{word-spacing:124.895123pt;}
.wsb1{word-spacing:126.350568pt;}
.wsa3{word-spacing:127.078291pt;}
.ws9f{word-spacing:127.116356pt;}
.wsaf{word-spacing:128.715328pt;}
._2d{margin-left:-13.464320pt;}
._22{margin-left:-6.211200pt;}
._27{margin-left:-4.494372pt;}
._21{margin-left:-3.542400pt;}
._1f{margin-left:-2.649745pt;}
._0{margin-left:-1.592800pt;}
._1{width:1.206464pt;}
._4{width:2.393940pt;}
._5{width:3.350369pt;}
._7{width:4.423221pt;}
._b{width:5.326039pt;}
._e{width:7.088764pt;}
._16{width:8.048639pt;}
._3{width:9.711976pt;}
._a{width:10.623931pt;}
._2{width:11.745789pt;}
._d{width:12.962747pt;}
._8{width:14.036133pt;}
._6{width:15.297835pt;}
._9{width:16.531679pt;}
._c{width:17.426617pt;}
._18{width:18.344582pt;}
._f{width:19.282461pt;}
._12{width:20.672624pt;}
._14{width:22.791844pt;}
._1e{width:23.888963pt;}
._1a{width:27.579945pt;}
._1b{width:28.567040pt;}
._2c{width:30.278400pt;}
._17{width:31.424302pt;}
._19{width:32.357110pt;}
._20{width:33.584601pt;}
._13{width:34.631257pt;}
._15{width:36.334132pt;}
._11{width:39.760323pt;}
._1d{width:41.474786pt;}
._1c{width:42.451205pt;}
._10{width:53.585773pt;}
._28{width:120.658970pt;}
._29{width:428.764160pt;}
._24{width:698.640928pt;}
._2b{width:792.081717pt;}
._25{width:795.856533pt;}
._2a{width:859.856533pt;}
._26{width:941.401696pt;}
._23{width:1373.617920pt;}
.fs21{font-size:16.027733pt;}
.fs23{font-size:16.970667pt;}
.fs25{font-size:17.596267pt;}
.fs1b{font-size:19.883733pt;}
.fs17{font-size:19.888000pt;}
.fs2f{font-size:19.896000pt;}
.fs28{font-size:22.188267pt;}
.fsa{font-size:26.880000pt;}
.fs20{font-size:27.027200pt;}
.fs22{font-size:28.284267pt;}
.fs27{font-size:29.269333pt;}
.fs18{font-size:29.430933pt;}
.fs14{font-size:29.440000pt;}
.fs24{font-size:29.537067pt;}
.fs30{font-size:29.748267pt;}
.fs2a{font-size:30.080000pt;}
.fs2c{font-size:30.094933pt;}
.fs1e{font-size:30.268267pt;}
.fs1c{font-size:30.277333pt;}
.fs12{font-size:32.000000pt;}
.fs26{font-size:32.055467pt;}
.fs1a{font-size:33.220800pt;}
.fs16{font-size:33.227733pt;}
.fs2e{font-size:33.240533pt;}
.fs29{font-size:34.462400pt;}
.fs13{font-size:34.560000pt;}
.fs19{font-size:34.652267pt;}
.fs15{font-size:34.662933pt;}
.fs31{font-size:35.026133pt;}
.fs2b{font-size:35.416533pt;}
.fs2d{font-size:35.434667pt;}
.fs1f{font-size:35.638400pt;}
.fs1d{font-size:35.649600pt;}
.fs32{font-size:37.120000pt;}
.fs33{font-size:39.127916pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:42.880000pt;}
.fs4{font-size:43.088000pt;}
.fs11{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:48.233067pt;}
.fsf{font-size:53.120000pt;}
.fs8{font-size:53.377600pt;}
.fs34{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs5{font-size:64.310400pt;}
.fs10{font-size:69.120000pt;}
.fs7{font-size:69.455467pt;}
.fs0{font-size:88.000000pt;}
.fsb{font-size:88.320000pt;}
.fs3{font-size:88.748267pt;}
.fse{font-size:90.880000pt;}
.fs6{font-size:91.320533pt;}
.yb{bottom:-897.487821pt;}
.ya{bottom:-883.979733pt;}
.y40{bottom:-844.022330pt;}
.y30{bottom:-843.982297pt;}
.y3f{bottom:-827.942328pt;}
.y2f{bottom:-827.902295pt;}
.y3e{bottom:-811.862326pt;}
.y2e{bottom:-811.822293pt;}
.y3d{bottom:-795.782324pt;}
.y2d{bottom:-795.742291pt;}
.y3c{bottom:-779.702322pt;}
.y2c{bottom:-779.662289pt;}
.y3b{bottom:-763.622320pt;}
.y2b{bottom:-763.582287pt;}
.y3a{bottom:-747.542318pt;}
.y2a{bottom:-747.502285pt;}
.y39{bottom:-731.462316pt;}
.y29{bottom:-731.422283pt;}
.y38{bottom:-715.382314pt;}
.y28{bottom:-715.342281pt;}
.y37{bottom:-699.302312pt;}
.y27{bottom:-699.262279pt;}
.y36{bottom:-683.222310pt;}
.y26{bottom:-683.182277pt;}
.y35{bottom:-667.142308pt;}
.y25{bottom:-667.102275pt;}
.y34{bottom:-651.062306pt;}
.y24{bottom:-651.022273pt;}
.y33{bottom:-634.982304pt;}
.y23{bottom:-634.942271pt;}
.y32{bottom:-618.902302pt;}
.y31{bottom:-602.822300pt;}
.y22{bottom:-602.782267pt;}
.y21{bottom:-544.420533pt;}
.y20{bottom:-515.815770pt;}
.y1f{bottom:-501.189093pt;}
.y1e{bottom:-486.562415pt;}
.y1d{bottom:-471.766922pt;}
.y1c{bottom:-456.971429pt;}
.y1b{bottom:-442.344751pt;}
.y9a{bottom:-439.764320pt;}
.y1a{bottom:-427.549258pt;}
.y99{bottom:-426.482240pt;}
.y98{bottom:-412.878560pt;}
.y19{bottom:-412.753765pt;}
.y18{bottom:-398.127088pt;}
.y17{bottom:-383.331594pt;}
.yc2{bottom:-377.105147pt;}
.yd2{bottom:-375.624987pt;}
.y16{bottom:-368.536101pt;}
.yc1{bottom:-361.740187pt;}
.yd1{bottom:-360.260027pt;}
.y15{bottom:-353.909424pt;}
.yc0{bottom:-346.375227pt;}
.yd0{bottom:-345.054427pt;}
.y14{bottom:-339.113931pt;}
.ybf{bottom:-331.010267pt;}
.ycf{bottom:-329.689467pt;}
.y13{bottom:-324.318437pt;}
.ybe{bottom:-307.650747pt;}
.yce{bottom:-306.329947pt;}
.y12{bottom:-294.896267pt;}
.ybd{bottom:-292.285787pt;}
.ycd{bottom:-290.964987pt;}
.ybc{bottom:-277.080187pt;}
.ycc{bottom:-275.600027pt;}
.ybb{bottom:-261.715227pt;}
.ycb{bottom:-260.245627pt;}
.yba{bottom:-246.350267pt;}
.yca{bottom:-245.040027pt;}
.y11{bottom:-239.591575pt;}
.yb9{bottom:-230.985307pt;}
.yc9{bottom:-229.680160pt;}
.yb8{bottom:-215.620347pt;}
.yc8{bottom:-214.330587pt;}
.y10{bottom:-204.701067pt;}
.yb7{bottom:-200.414747pt;}
.yc7{bottom:-198.965627pt;}
.yb6{bottom:-185.049787pt;}
.yc6{bottom:-183.600667pt;}
.yf{bottom:-179.137600pt;}
.yb5{bottom:-169.684827pt;}
.yc5{bottom:-168.400027pt;}
.yc4{bottom:-153.111387pt;}
.ye{bottom:-141.836370pt;}
.yb4{bottom:-137.998747pt;}
.yc3{bottom:-137.746427pt;}
.yb3{bottom:-122.315067pt;}
.yd{bottom:-114.988133pt;}
.yb2{bottom:-79.915200pt;}
.yc{bottom:-74.150933pt;}
.yb1{bottom:-51.595067pt;}
.y55{bottom:-45.749253pt;}
.yb0{bottom:-37.039067pt;}
.y54{bottom:-32.467173pt;}
.yaf{bottom:-22.315067pt;}
.y53{bottom:-18.863493pt;}
.yae{bottom:-7.595200pt;}
.y0{bottom:0.000000pt;}
.y25b{bottom:1.419467pt;}
.y176{bottom:1.420800pt;}
.y17c{bottom:1.494267pt;}
.y16f{bottom:1.934533pt;}
.y113{bottom:2.064800pt;}
.y119{bottom:2.105200pt;}
.y94{bottom:2.239467pt;}
.y4f{bottom:2.239867pt;}
.ye7{bottom:2.251333pt;}
.yf5{bottom:2.290667pt;}
.y8{bottom:2.572000pt;}
.y18c{bottom:3.328667pt;}
.y22d{bottom:3.999333pt;}
.y134{bottom:4.000667pt;}
.y141{bottom:4.320667pt;}
.y22f{bottom:4.799333pt;}
.y136{bottom:4.800667pt;}
.y16d{bottom:5.481467pt;}
.y231{bottom:6.399333pt;}
.y139{bottom:6.400667pt;}
.y17d{bottom:8.348388pt;}
.ye8{bottom:8.956293pt;}
.yf6{bottom:8.993562pt;}
.y96{bottom:10.239467pt;}
.y51{bottom:10.239867pt;}
.y14d{bottom:14.285467pt;}
.y179{bottom:15.912667pt;}
.y14e{bottom:17.585333pt;}
.y271{bottom:17.759200pt;}
.y196{bottom:17.760533pt;}
.y190{bottom:18.447467pt;}
.y26f{bottom:18.879333pt;}
.y193{bottom:18.880667pt;}
.y14f{bottom:23.634933pt;}
.ye9{bottom:24.029573pt;}
.yf7{bottom:24.062200pt;}
.y178{bottom:24.099867pt;}
.y6{bottom:24.404800pt;}
.y18f{bottom:26.544133pt;}
.y17e{bottom:29.098844pt;}
.y161{bottom:30.777399pt;}
.y163{bottom:30.779733pt;}
.y177{bottom:32.286933pt;}
.y162{bottom:34.236800pt;}
.y18e{bottom:34.640800pt;}
.y15d{bottom:39.026959pt;}
.y15f{bottom:39.029333pt;}
.yea{bottom:39.102853pt;}
.yf8{bottom:39.130837pt;}
.y160{bottom:39.736440pt;}
.yf4{bottom:41.482667pt;}
.y102{bottom:41.511733pt;}
.y186{bottom:41.603333pt;}
.y15e{bottom:42.486267pt;}
.y150{bottom:44.851285pt;}
.y103{bottom:46.614533pt;}
.y187{bottom:46.821467pt;}
.y15c{bottom:47.986000pt;}
.y151{bottom:48.147733pt;}
.y17f{bottom:49.789111pt;}
.y104{bottom:51.895467pt;}
.y188{bottom:52.221600pt;}
.yeb{bottom:54.117253pt;}
.yf9{bottom:54.140613pt;}
.y5{bottom:54.308933pt;}
.y45{bottom:60.472400pt;}
.y152{bottom:67.160933pt;}
.yec{bottom:69.190533pt;}
.yfa{bottom:69.209251pt;}
.y153{bottom:70.460667pt;}
.y180{bottom:70.539567pt;}
.y213{bottom:70.863067pt;}
.y105{bottom:70.883067pt;}
.y189{bottom:71.637867pt;}
.y44{bottom:72.472400pt;}
.y106{bottom:73.315733pt;}
.y18a{bottom:74.125600pt;}
.y1d0{bottom:77.295520pt;}
.y168{bottom:82.162533pt;}
.yed{bottom:84.263813pt;}
.yfb{bottom:84.277889pt;}
.y43{bottom:84.472400pt;}
.y91{bottom:86.239467pt;}
.y4c{bottom:86.239867pt;}
.y172{bottom:86.558400pt;}
.y95{bottom:86.879467pt;}
.y50{bottom:86.879867pt;}
.y169{bottom:86.954933pt;}
.yf2{bottom:87.422800pt;}
.y100{bottom:87.437600pt;}
.y184{bottom:89.476667pt;}
.y117{bottom:89.536000pt;}
.y154{bottom:89.552400pt;}
.y11d{bottom:89.553200pt;}
.y16a{bottom:90.254667pt;}
.y181{bottom:91.229834pt;}
.y4{bottom:91.287467pt;}
.y1cf{bottom:92.660480pt;}
.y155{bottom:92.852267pt;}
.y171{bottom:94.524800pt;}
.yf1{bottom:95.435733pt;}
.yff{bottom:95.448133pt;}
.y42{bottom:96.472400pt;}
.y114{bottom:97.532667pt;}
.y11a{bottom:97.547600pt;}
.y183{bottom:97.667733pt;}
.y116{bottom:97.776800pt;}
.y11c{bottom:97.791733pt;}
.y18d{bottom:97.796000pt;}
.y111{bottom:98.151067pt;}
.yee{bottom:101.059333pt;}
.yfc{bottom:101.068237pt;}
.y16b{bottom:102.039467pt;}
.y170{bottom:102.491333pt;}
.y16c{bottom:104.239200pt;}
.yef{bottom:105.688773pt;}
.yfd{bottom:105.696251pt;}
.y115{bottom:106.017600pt;}
.y11b{bottom:106.030000pt;}
.y1ce{bottom:108.025440pt;}
.y14b{bottom:109.878747pt;}
.yf0{bottom:110.318213pt;}
.yfe{bottom:110.324265pt;}
.y156{bottom:111.943867pt;}
.y182{bottom:111.980291pt;}
.y110{bottom:114.153467pt;}
.y174{bottom:114.411467pt;}
.y25f{bottom:114.823467pt;}
.y17a{bottom:114.824800pt;}
.y157{bottom:115.243733pt;}
.yf3{bottom:115.794400pt;}
.y101{bottom:115.800400pt;}
.y185{bottom:116.355733pt;}
.y173{bottom:116.594933pt;}
.y118{bottom:116.700267pt;}
.y11e{bottom:116.709333pt;}
.y191{bottom:118.188133pt;}
.y1cd{bottom:123.390400pt;}
.y14a{bottom:126.425627pt;}
.y165{bottom:127.731128pt;}
.y167{bottom:127.731200pt;}
.y10f{bottom:130.155867pt;}
.y166{bottom:131.188133pt;}
.y158{bottom:134.256800pt;}
.y164{bottom:136.690170pt;}
.y159{bottom:137.556667pt;}
.y1cc{bottom:138.596000pt;}
.y149{bottom:142.972507pt;}
.y10e{bottom:146.158267pt;}
.y202{bottom:149.317600pt;}
.y1cb{bottom:153.960960pt;}
.y15a{bottom:156.648400pt;}
.y49{bottom:156.850667pt;}
.y148{bottom:159.519387pt;}
.y15b{bottom:159.948133pt;}
.y10d{bottom:162.158267pt;}
.y1ca{bottom:169.325920pt;}
.y201{bottom:172.677120pt;}
.y7d{bottom:173.760453pt;}
.y8d{bottom:175.240613pt;}
.y147{bottom:176.066267pt;}
.y10c{bottom:178.158267pt;}
.y7c{bottom:189.125413pt;}
.y200{bottom:189.157600pt;}
.y8c{bottom:190.605573pt;}
.y146{bottom:192.613147pt;}
.y1c9{bottom:192.685440pt;}
.y10b{bottom:194.155867pt;}
.y7b{bottom:204.490373pt;}
.y291{bottom:204.545600pt;}
.y1ff{bottom:205.478720pt;}
.y8b{bottom:205.811173pt;}
.y1c8{bottom:208.050400pt;}
.y2cc{bottom:209.000800pt;}
.y145{bottom:209.160027pt;}
.y10a{bottom:210.158267pt;}
.y7a{bottom:219.855333pt;}
.y290{bottom:219.905600pt;}
.y1fe{bottom:220.684320pt;}
.y2cb{bottom:221.157280pt;}
.y8a{bottom:221.176133pt;}
.y144{bottom:225.706907pt;}
.y109{bottom:226.160800pt;}
.y2ca{bottom:233.474560pt;}
.y28f{bottom:235.105600pt;}
.y1fd{bottom:236.049280pt;}
.y1c7{bottom:241.908000pt;}
.y108{bottom:242.163200pt;}
.y143{bottom:242.253787pt;}
.y79{bottom:243.214853pt;}
.y89{bottom:244.535653pt;}
.y2c9{bottom:245.791840pt;}
.y28e{bottom:250.465600pt;}
.y1fc{bottom:252.360960pt;}
.y1c6{bottom:257.272960pt;}
.y2c8{bottom:257.948320pt;}
.y107{bottom:258.165600pt;}
.y78{bottom:258.579813pt;}
.y142{bottom:258.800667pt;}
.y88{bottom:259.900613pt;}
.y28d{bottom:265.825600pt;}
.y2c7{bottom:270.265600pt;}
.y1c5{bottom:272.637920pt;}
.y77{bottom:273.785413pt;}
.y87{bottom:275.265573pt;}
.y1fb{bottom:275.720480pt;}
.y140{bottom:279.920000pt;}
.y28c{bottom:281.185600pt;}
.y192{bottom:281.520000pt;}
.y26e{bottom:281.521333pt;}
.y2c6{bottom:282.582880pt;}
.y235{bottom:284.240667pt;}
.y1c4{bottom:288.002880pt;}
.y194{bottom:288.080667pt;}
.y76{bottom:289.150373pt;}
.y86{bottom:290.619973pt;}
.y1fa{bottom:291.085440pt;}
.y13e{bottom:292.720667pt;}
.y2c5{bottom:294.739360pt;}
.y28b{bottom:296.545600pt;}
.y13f{bottom:297.040000pt;}
.y234{bottom:297.041333pt;}
.y1c3{bottom:303.208480pt;}
.y75{bottom:304.515333pt;}
.y85{bottom:305.825573pt;}
.y1f9{bottom:306.445440pt;}
.y2c4{bottom:307.056640pt;}
.y28a{bottom:311.905600pt;}
.y13d{bottom:314.000000pt;}
.y1c2{bottom:318.573440pt;}
.y2c3{bottom:319.373920pt;}
.y74{bottom:319.880293pt;}
.y84{bottom:321.185573pt;}
.y1f8{bottom:321.804800pt;}
.y175{bottom:324.868000pt;}
.y25a{bottom:324.869333pt;}
.y13b{bottom:326.960667pt;}
.y289{bottom:327.105600pt;}
.y13c{bottom:331.120000pt;}
.y233{bottom:331.121333pt;}
.y2c2{bottom:331.530400pt;}
.y1c1{bottom:333.938400pt;}
.y73{bottom:335.245253pt;}
.y83{bottom:336.535013pt;}
.y1f7{bottom:337.004960pt;}
.y25e{bottom:340.780667pt;}
.y6c{bottom:342.419867pt;}
.y288{bottom:342.465600pt;}
.y2c1{bottom:343.847680pt;}
.y13a{bottom:348.240000pt;}
.y232{bottom:348.241333pt;}
.y25d{bottom:348.967867pt;}
.y1c0{bottom:349.303360pt;}
.y72{bottom:350.450853pt;}
.y82{bottom:351.899973pt;}
.y1f6{bottom:352.369920pt;}
.y2c0{bottom:356.164960pt;}
.y6b{bottom:356.975867pt;}
.y25c{bottom:357.154933pt;}
.y287{bottom:357.825600pt;}
.y137{bottom:361.040667pt;}
.y1bf{bottom:364.668320pt;}
.y138{bottom:365.200000pt;}
.y230{bottom:365.201333pt;}
.y71{bottom:365.815813pt;}
.y81{bottom:367.264933pt;}
.y2bf{bottom:368.321440pt;}
.y1f5{bottom:368.841280pt;}
.y6a{bottom:371.699867pt;}
.y286{bottom:373.185600pt;}
.y2be{bottom:380.638720pt;}
.y70{bottom:381.180773pt;}
.y135{bottom:382.320000pt;}
.y22e{bottom:382.321333pt;}
.y80{bottom:382.465573pt;}
.y1f4{bottom:385.640480pt;}
.y69{bottom:386.419867pt;}
.y285{bottom:388.545467pt;}
.y2bd{bottom:392.956000pt;}
.y7f{bottom:397.754213pt;}
.y133{bottom:397.840000pt;}
.y22c{bottom:397.841333pt;}
.y1be{bottom:398.585440pt;}
.y1f3{bottom:401.005440pt;}
.y68{bottom:401.615867pt;}
.y2bc{bottom:405.112480pt;}
.y6f{bottom:412.866853pt;}
.y7e{bottom:413.119173pt;}
.y67{bottom:416.339867pt;}
.y1f2{bottom:416.370400pt;}
.y2bb{bottom:417.429760pt;}
.y284{bottom:420.095600pt;}
.y1bd{bottom:421.944960pt;}
.y132{bottom:422.803387pt;}
.y97{bottom:428.244800pt;}
.y6e{bottom:428.550533pt;}
.y2ba{bottom:429.747040pt;}
.y66{bottom:431.063867pt;}
.y131{bottom:435.120667pt;}
.y1bc{bottom:437.309920pt;}
.y1f1{bottom:438.928480pt;}
.y2b9{bottom:441.903520pt;}
.y65{bottom:445.615867pt;}
.y2cd{bottom:451.105600pt;}
.y1f0{bottom:451.245760pt;}
.y1bb{bottom:452.674880pt;}
.y2b8{bottom:454.220800pt;}
.ye6{bottom:455.213333pt;}
.y16e{bottom:455.361333pt;}
.y130{bottom:455.865467pt;}
.y64{bottom:460.339867pt;}
.y207{bottom:464.169600pt;}
.y215{bottom:464.206933pt;}
.y2b7{bottom:466.538080pt;}
.y1ba{bottom:468.039840pt;}
.y1ef{bottom:469.330400pt;}
.y6d{bottom:470.950533pt;}
.y12f{bottom:471.230427pt;}
.y63{bottom:475.063867pt;}
.y8f{bottom:475.604933pt;}
.y93{bottom:477.684933pt;}
.y2b6{bottom:478.694560pt;}
.y208{bottom:479.242880pt;}
.y216{bottom:479.275571pt;}
.y1b9{bottom:483.245440pt;}
.y12e{bottom:486.595387pt;}
.y62{bottom:489.619867pt;}
.y2b5{bottom:491.011840pt;}
.y209{bottom:494.316160pt;}
.y217{bottom:494.344209pt;}
.y48{bottom:496.064267pt;}
.y212{bottom:496.696000pt;}
.y220{bottom:496.725067pt;}
.y1b8{bottom:498.605440pt;}
.y221{bottom:501.827867pt;}
.y12d{bottom:501.960347pt;}
.y2b4{bottom:503.168320pt;}
.y61{bottom:504.343867pt;}
.y222{bottom:507.108800pt;}
.y92{bottom:507.444933pt;}
.y20a{bottom:509.330560pt;}
.y218{bottom:509.353985pt;}
.y47{bottom:509.397600pt;}
.y1b7{bottom:513.965440pt;}
.y2b3{bottom:515.485600pt;}
.y12c{bottom:517.325307pt;}
.y46{bottom:522.730933pt;}
.y20b{bottom:524.403840pt;}
.y219{bottom:524.422623pt;}
.y2b2{bottom:527.802880pt;}
.y214{bottom:528.509867pt;}
.y223{bottom:528.529067pt;}
.y1b6{bottom:529.304960pt;}
.y12b{bottom:532.690267pt;}
.y60{bottom:533.779867pt;}
.y8e{bottom:534.802667pt;}
.y20c{bottom:539.477120pt;}
.y21a{bottom:539.491261pt;}
.y2b1{bottom:539.959360pt;}
.y259{bottom:541.919733pt;}
.yad{bottom:542.403600pt;}
.y211{bottom:542.636133pt;}
.y21f{bottom:542.650933pt;}
.y1b5{bottom:544.669920pt;}
.y12a{bottom:547.895867pt;}
.y258{bottom:549.886133pt;}
.y210{bottom:550.649067pt;}
.y21e{bottom:550.661467pt;}
.y2b0{bottom:552.276640pt;}
.y20d{bottom:556.272640pt;}
.y21b{bottom:556.281608pt;}
.yac{bottom:557.127600pt;}
.y257{bottom:557.852667pt;}
.y1b4{bottom:559.875520pt;}
.y20e{bottom:560.902080pt;}
.y21c{bottom:560.909623pt;}
.y129{bottom:563.260827pt;}
.y2af{bottom:564.593920pt;}
.y20f{bottom:565.531520pt;}
.y21d{bottom:565.537637pt;}
.yab{bottom:571.851600pt;}
.y1b3{bottom:575.240480pt;}
.y2ae{bottom:576.750400pt;}
.y128{bottom:578.625787pt;}
.yaa{bottom:586.403600pt;}
.y5f{bottom:588.815707pt;}
.y2ad{bottom:589.067680pt;}
.ye5{bottom:589.663867pt;}
.y1b2{bottom:590.605440pt;}
.y127{bottom:593.990747pt;}
.y1ee{bottom:599.971493pt;}
.ya9{bottom:601.127600pt;}
.y2ac{bottom:601.384960pt;}
.y5e{bottom:602.097787pt;}
.ye4{bottom:605.666267pt;}
.y1b1{bottom:605.938240pt;}
.y126{bottom:609.355707pt;}
.y2ab{bottom:613.541440pt;}
.ya8{bottom:615.851600pt;}
.y1ed{bottom:616.451973pt;}
.y5d{bottom:619.379867pt;}
.ye3{bottom:621.668667pt;}
.y283{bottom:623.559600pt;}
.y125{bottom:624.715067pt;}
.y2aa{bottom:625.858720pt;}
.y1b0{bottom:629.297760pt;}
.ya7{bottom:630.403467pt;}
.y5c{bottom:632.819867pt;}
.y1ec{bottom:633.091813pt;}
.ye2{bottom:637.671067pt;}
.y2a9{bottom:638.176000pt;}
.y282{bottom:638.898000pt;}
.y124{bottom:639.903413pt;}
.ya6{bottom:645.127467pt;}
.y1eb{bottom:649.572293pt;}
.y2a8{bottom:650.332480pt;}
.y5b{bottom:651.066907pt;}
.ye1{bottom:653.673467pt;}
.y281{bottom:654.236400pt;}
.y123{bottom:655.268373pt;}
.y1af{bottom:660.983840pt;}
.y2a7{bottom:662.649760pt;}
.y1ea{bottom:666.212133pt;}
.y280{bottom:669.574800pt;}
.ye0{bottom:669.675867pt;}
.y122{bottom:670.633333pt;}
.y5a{bottom:671.056987pt;}
.ya5{bottom:674.567600pt;}
.y2a6{bottom:674.967040pt;}
.y1e9{bottom:682.692613pt;}
.y27f{bottom:684.913200pt;}
.ydf{bottom:685.678267pt;}
.y121{bottom:685.998293pt;}
.y2a5{bottom:687.123520pt;}
.y59{bottom:690.259867pt;}
.y1ae{bottom:692.669920pt;}
.y1e8{bottom:699.173093pt;}
.y2a4{bottom:699.440800pt;}
.y27e{bottom:700.251600pt;}
.y120{bottom:701.363253pt;}
.yde{bottom:701.678267pt;}
.y1ad{bottom:707.875520pt;}
.y2a3{bottom:711.758080pt;}
.y27d{bottom:715.590000pt;}
.ydd{bottom:717.671067pt;}
.y1ac{bottom:723.240480pt;}
.y58{bottom:723.861147pt;}
.y2a2{bottom:723.914560pt;}
.ya4{bottom:729.603440pt;}
.y1e7{bottom:730.859173pt;}
.y27c{bottom:730.928400pt;}
.ydc{bottom:733.673467pt;}
.y2a1{bottom:736.231840pt;}
.y195{bottom:736.240000pt;}
.y270{bottom:736.241333pt;}
.y1ab{bottom:738.605440pt;}
.y197{bottom:741.680667pt;}
.ya3{bottom:742.885520pt;}
.y27b{bottom:746.266800pt;}
.y11f{bottom:747.922933pt;}
.y2a0{bottom:748.549120pt;}
.ydb{bottom:749.675867pt;}
.y57{bottom:750.579867pt;}
.y1aa{bottom:753.884160pt;}
.ya2{bottom:760.167600pt;}
.y29f{bottom:760.705600pt;}
.y27a{bottom:761.605200pt;}
.y1e6{bottom:762.545253pt;}
.yda{bottom:765.678267pt;}
.y18b{bottom:768.426667pt;}
.y1a9{bottom:769.249120pt;}
.y269{bottom:771.755333pt;}
.ya1{bottom:773.607467pt;}
.y279{bottom:776.943600pt;}
.y1e5{bottom:777.910213pt;}
.yd9{bottom:781.680667pt;}
.y29e{bottom:781.987227pt;}
.y1a8{bottom:784.614080pt;}
.y26d{bottom:786.874133pt;}
.y56{bottom:791.219867pt;}
.ya0{bottom:791.854640pt;}
.y278{bottom:792.282000pt;}
.y1e4{bottom:793.275173pt;}
.y26c{bottom:794.970800pt;}
.y1a7{bottom:799.819680pt;}
.y26b{bottom:803.067467pt;}
.yd8{bottom:804.726107pt;}
.y206{bottom:804.726160pt;}
.y29d{bottom:805.665467pt;}
.y277{bottom:807.620400pt;}
.y1e3{bottom:808.640133pt;}
.y9f{bottom:811.844587pt;}
.y1a6{bottom:815.184640pt;}
.yd7{bottom:817.043387pt;}
.y205{bottom:817.043440pt;}
.y29c{bottom:821.025600pt;}
.y52{bottom:822.259867pt;}
.y276{bottom:822.958800pt;}
.y1e2{bottom:824.005093pt;}
.yd6{bottom:829.199867pt;}
.y204{bottom:829.199920pt;}
.y1a5{bottom:830.549600pt;}
.y9e{bottom:831.047467pt;}
.y29b{bottom:836.385600pt;}
.y1e1{bottom:839.210693pt;}
.yd5{bottom:841.517147pt;}
.y203{bottom:841.517200pt;}
.y1a4{bottom:845.914560pt;}
.y275{bottom:850.002320pt;}
.y29a{bottom:851.585467pt;}
.y1e0{bottom:854.575653pt;}
.y14c{bottom:859.560000pt;}
.y1a3{bottom:861.279520pt;}
.y274{bottom:862.158800pt;}
.y9d{bottom:864.648747pt;}
.y256{bottom:865.041467pt;}
.y26a{bottom:866.222667pt;}
.y299{bottom:866.945333pt;}
.y4a{bottom:869.619867pt;}
.y1df{bottom:869.940613pt;}
.y4e{bottom:871.699867pt;}
.y236{bottom:873.845467pt;}
.y1a2{bottom:876.485120pt;}
.y237{bottom:877.145333pt;}
.y238{bottom:883.194933pt;}
.y1de{bottom:885.305573pt;}
.y298{bottom:890.305600pt;}
.y24a{bottom:890.337399pt;}
.y24c{bottom:890.339733pt;}
.y9c{bottom:891.367467pt;}
.y1a1{bottom:891.850080pt;}
.y24b{bottom:893.796800pt;}
.y246{bottom:898.586959pt;}
.y248{bottom:898.589333pt;}
.y249{bottom:899.296440pt;}
.y1dd{bottom:900.670533pt;}
.y112{bottom:901.146667pt;}
.y17b{bottom:901.436000pt;}
.y4d{bottom:901.459867pt;}
.y247{bottom:902.046267pt;}
.y239{bottom:904.411285pt;}
.y1a0{bottom:907.215040pt;}
.y245{bottom:907.546000pt;}
.y23a{bottom:907.707733pt;}
.y260{bottom:909.784400pt;}
.y1dc{bottom:916.035493pt;}
.y19f{bottom:922.580000pt;}
.y23b{bottom:926.720933pt;}
.y23c{bottom:930.020667pt;}
.y261{bottom:930.534857pt;}
.y1db{bottom:931.241093pt;}
.y9b{bottom:932.007600pt;}
.y297{bottom:937.025600pt;}
.y19e{bottom:937.944960pt;}
.y251{bottom:941.722533pt;}
.y252{bottom:946.514933pt;}
.y268{bottom:948.257467pt;}
.y23d{bottom:949.112400pt;}
.y253{bottom:949.814667pt;}
.y262{bottom:951.225123pt;}
.y296{bottom:952.385600pt;}
.y23e{bottom:952.412267pt;}
.y19d{bottom:953.309920pt;}
.y1da{bottom:954.600613pt;}
.y254{bottom:961.599467pt;}
.y255{bottom:963.799200pt;}
.y3{bottom:965.765333pt;}
.y295{bottom:967.585467pt;}
.y19c{bottom:968.515520pt;}
.y1d9{bottom:969.965573pt;}
.y7{bottom:970.073333pt;}
.y23f{bottom:971.503867pt;}
.y263{bottom:971.975580pt;}
.y9{bottom:972.645467pt;}
.y240{bottom:974.803733pt;}
.y294{bottom:982.945333pt;}
.y19b{bottom:983.880480pt;}
.y1d8{bottom:985.330533pt;}
.y41{bottom:987.283333pt;}
.y24e{bottom:987.291128pt;}
.y250{bottom:987.291200pt;}
.y227{bottom:990.682667pt;}
.y22b{bottom:990.699867pt;}
.y24f{bottom:990.748133pt;}
.y267{bottom:990.912667pt;}
.y264{bottom:992.665846pt;}
.y90{bottom:992.808000pt;}
.y241{bottom:993.816800pt;}
.y24d{bottom:996.250170pt;}
.y242{bottom:997.116667pt;}
.y1d7{bottom:997.810400pt;}
.y293{bottom:998.305600pt;}
.y224{bottom:998.679333pt;}
.y228{bottom:998.694267pt;}
.y226{bottom:998.923467pt;}
.y22a{bottom:998.938400pt;}
.y266{bottom:999.103733pt;}
.y19a{bottom:999.245440pt;}
.y1d6{bottom:1001.330533pt;}
.y1d2{bottom:1005.170533pt;}
.y225{bottom:1007.164267pt;}
.y229{bottom:1007.176667pt;}
.y272{bottom:1008.045920pt;}
.y1d1{bottom:1008.050400pt;}
.y4b{bottom:1008.870667pt;}
.y1{bottom:1012.055600pt;}
.y1d5{bottom:1013.010400pt;}
.y1d3{bottom:1013.012133pt;}
.y265{bottom:1013.416303pt;}
.y292{bottom:1013.665467pt;}
.y199{bottom:1014.610400pt;}
.y243{bottom:1016.208400pt;}
.y1d4{bottom:1016.530400pt;}
.y244{bottom:1019.508133pt;}
.yd4{bottom:1043.760667pt;}
.y273{bottom:1044.705600pt;}
.y198{bottom:1045.650533pt;}
.y2{bottom:1051.713867pt;}
.yd3{bottom:1055.050400pt;}
.h16{height:-524.776000pt;}
.h29{height:-32.808000pt;}
.h4a{height:11.676454pt;}
.h8{height:12.218667pt;}
.h4c{height:12.363396pt;}
.h4e{height:12.810563pt;}
.h41{height:14.080000pt;}
.h38{height:14.475902pt;}
.h75{height:14.479008pt;}
.h5c{height:14.484832pt;}
.h43{height:14.880000pt;}
.h52{height:16.164499pt;}
.h46{height:16.320000pt;}
.h45{height:16.480000pt;}
.h47{height:16.481333pt;}
.h15{height:18.663750pt;}
.h49{height:19.689737pt;}
.h4b{height:20.605530pt;}
.h51{height:21.323167pt;}
.h35{height:21.440895pt;}
.h32{height:21.447500pt;}
.h4d{height:21.503792pt;}
.h5f{height:21.672077pt;}
.h55{height:21.899062pt;}
.h56{height:21.913750pt;}
.h59{height:21.924629pt;}
.h3d{height:22.050905pt;}
.h3b{height:22.057510pt;}
.h37{height:23.066395pt;}
.h5b{height:23.080097pt;}
.h4f{height:23.337256pt;}
.h39{height:24.185651pt;}
.h74{height:24.190698pt;}
.h5d{height:24.200017pt;}
.h53{height:25.089570pt;}
.h36{height:25.227798pt;}
.h33{height:25.235563pt;}
.h60{height:25.499983pt;}
.h57{height:25.784205pt;}
.h5a{height:25.797406pt;}
.h3e{height:25.945730pt;}
.h3c{height:25.953884pt;}
.h6d{height:27.167918pt;}
.h62{height:27.840000pt;}
.h61{height:28.960000pt;}
.h44{height:29.061250pt;}
.h11{height:29.625000pt;}
.h1a{height:29.773125pt;}
.h7{height:29.917547pt;}
.h34{height:30.728608pt;}
.h12{height:32.000000pt;}
.h20{height:32.531250pt;}
.hd{height:32.689207pt;}
.h13{height:33.328125pt;}
.he{height:33.489952pt;}
.h42{height:34.217500pt;}
.h3{height:34.368000pt;}
.h5{height:34.526209pt;}
.h17{height:34.968750pt;}
.h19{height:35.614687pt;}
.h79{height:36.001250pt;}
.hf{height:36.175834pt;}
.h65{height:36.883125pt;}
.h10{height:37.061986pt;}
.hc{height:37.912391pt;}
.h23{height:38.672812pt;}
.h21{height:39.867188pt;}
.h22{height:39.883188pt;}
.h2b{height:39.883721pt;}
.h6e{height:40.968750pt;}
.h1d{height:44.119688pt;}
.h25{height:44.139528pt;}
.h2d{height:44.140061pt;}
.h71{height:44.141447pt;}
.h72{height:44.142088pt;}
.h70{height:44.156168pt;}
.h73{height:44.157447pt;}
.h27{height:44.161928pt;}
.h2c{height:44.181234pt;}
.h26{height:44.181767pt;}
.h66{height:44.248328pt;}
.h69{height:44.259207pt;}
.h24{height:44.424968pt;}
.h64{height:44.464648pt;}
.h9{height:44.653022pt;}
.h30{height:47.273975pt;}
.h3a{height:47.283575pt;}
.h40{height:47.286775pt;}
.h2f{height:47.302775pt;}
.h3f{height:47.333388pt;}
.h67{height:47.366135pt;}
.h6b{height:47.523750pt;}
.h6c{height:48.161192pt;}
.hb{height:48.225427pt;}
.h6f{height:48.903750pt;}
.h1b{height:53.156250pt;}
.h68{height:53.405850pt;}
.h18{height:58.865625pt;}
.h6{height:59.151066pt;}
.h1f{height:62.032778pt;}
.h1e{height:62.072458pt;}
.h2a{height:62.072991pt;}
.ha{height:63.407128pt;}
.h2{height:66.352000pt;}
.h6a{height:68.008125pt;}
.h76{height:68.026045pt;}
.h1c{height:75.481875pt;}
.h4{height:106.486667pt;}
.h77{height:108.968125pt;}
.h50{height:122.144000pt;}
.h54{height:122.412000pt;}
.h31{height:123.200000pt;}
.h58{height:123.725333pt;}
.h5e{height:124.734667pt;}
.h48{height:165.600000pt;}
.h14{height:327.244000pt;}
.h28{height:425.197333pt;}
.h78{height:1036.536000pt;}
.h63{height:1037.480000pt;}
.h2e{height:1038.110667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.we{width:-665.836000pt;}
.w8{width:-661.440000pt;}
.wd{width:-597.036000pt;}
.wb{width:-595.821333pt;}
.wc{width:-534.476000pt;}
.wf{width:-471.276000pt;}
.w13{width:-425.846667pt;}
.w14{width:-421.876000pt;}
.w16{width:-413.036000pt;}
.w7{width:-225.760000pt;}
.w11{width:-223.344000pt;}
.w10{width:-90.981333pt;}
.wa{width:-52.156000pt;}
.w12{width:-52.009333pt;}
.w15{width:-42.156000pt;}
.w3{width:2.948000pt;}
.w9{width:4.724000pt;}
.w26{width:5.729333pt;}
.w1c{width:61.920000pt;}
.w1f{width:62.400000pt;}
.w1d{width:68.160000pt;}
.w1e{width:70.720000pt;}
.w1a{width:144.000000pt;}
.w20{width:144.197333pt;}
.w2{width:166.736000pt;}
.w21{width:169.333333pt;}
.w22{width:169.666667pt;}
.w19{width:171.333333pt;}
.w23{width:173.930667pt;}
.w1b{width:202.080000pt;}
.w6{width:209.760000pt;}
.w24{width:320.800000pt;}
.w25{width:336.480000pt;}
.w5{width:435.680000pt;}
.w27{width:786.141333pt;}
.w17{width:788.032000pt;}
.w4{width:788.090667pt;}
.w18{width:789.036000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x88{left:-742.751467pt;}
.x9{left:-539.179467pt;}
.xf{left:-536.460400pt;}
.xb{left:-528.738000pt;}
.x10{left:-523.278075pt;}
.xc{left:-518.607459pt;}
.xe{left:-481.796667pt;}
.xd{left:-392.078400pt;}
.xa{left:-374.071600pt;}
.x8e{left:-372.831467pt;}
.x89{left:-348.984907pt;}
.x4{left:-341.921733pt;}
.x6{left:-302.847867pt;}
.x5{left:-289.181867pt;}
.x8c{left:-263.071467pt;}
.x8a{left:-260.831467pt;}
.x8d{left:-258.271467pt;}
.x8b{left:-256.031467pt;}
.x90{left:-211.895627pt;}
.x11{left:-179.692402pt;}
.x12{left:-163.782076pt;}
.x8f{left:-63.551467pt;}
.x7{left:-2.357733pt;}
.x1b{left:-1.120000pt;}
.x0{left:0.000000pt;}
.x58{left:4.711200pt;}
.x33{left:5.995867pt;}
.x91{left:7.558667pt;}
.x57{left:8.775200pt;}
.x31{left:10.061733pt;}
.x2f{left:11.513871pt;}
.x32{left:12.967333pt;}
.x4d{left:13.983467pt;}
.x35{left:16.840000pt;}
.x37{left:17.765333pt;}
.x2e{left:20.912204pt;}
.x43{left:22.232884pt;}
.x50{left:26.169333pt;}
.x42{left:34.879867pt;}
.x44{left:39.986000pt;}
.x3f{left:42.735467pt;}
.x2d{left:44.017067pt;}
.x55{left:45.108000pt;}
.x56{left:46.686533pt;}
.x51{left:47.678533pt;}
.x40{left:49.334267pt;}
.x66{left:50.834667pt;}
.x14{left:51.779467pt;}
.x28{left:52.724400pt;}
.x2b{left:56.800373pt;}
.x48{left:60.724133pt;}
.x49{left:62.766667pt;}
.x23{left:64.091947pt;}
.x69{left:65.122533pt;}
.x53{left:68.512267pt;}
.x30{left:70.938800pt;}
.x20{left:72.570667pt;}
.x36{left:76.235867pt;}
.x52{left:77.972400pt;}
.x21{left:85.050667pt;}
.x68{left:96.051067pt;}
.x17{left:104.800000pt;}
.x7d{left:108.577600pt;}
.x77{left:113.213418pt;}
.x4e{left:124.904267pt;}
.x15{left:126.330667pt;}
.x81{left:129.980933pt;}
.x78{left:130.966533pt;}
.x74{left:133.716000pt;}
.x4a{left:139.985207pt;}
.x16{left:142.650667pt;}
.x4b{left:144.543200pt;}
.x4c{left:146.585733pt;}
.x45{left:150.984933pt;}
.x7a{left:153.747200pt;}
.x46{left:155.541067pt;}
.x47{left:157.583600pt;}
.x41{left:165.754000pt;}
.x1f{left:172.960000pt;}
.x25{left:183.770667pt;}
.x26{left:200.570667pt;}
.x7e{left:215.884800pt;}
.x1d{left:217.760000pt;}
.x7f{left:223.344000pt;}
.x7b{left:230.965740pt;}
.x7c{left:235.523733pt;}
.x67{left:237.670933pt;}
.x2a{left:242.395733pt;}
.x79{left:246.521600pt;}
.x24{left:247.765040pt;}
.x80{left:249.512533pt;}
.x75{left:256.734533pt;}
.x76{left:263.333200pt;}
.x22{left:282.487467pt;}
.x2{left:285.099733pt;}
.x19{left:286.330667pt;}
.x18{left:299.930667pt;}
.x13{left:322.032667pt;}
.x1{left:327.746800pt;}
.x87{left:413.034667pt;}
.x27{left:420.872427pt;}
.x6d{left:421.845733pt;}
.x92{left:422.759067pt;}
.x38{left:426.570533pt;}
.x71{left:429.355600pt;}
.x3c{left:434.080400pt;}
.x84{left:437.532667pt;}
.x5c{left:439.040000pt;}
.x82{left:442.198800pt;}
.x72{left:471.276000pt;}
.x83{left:472.532400pt;}
.x73{left:478.155600pt;}
.x85{left:482.528267pt;}
.x5e{left:499.520533pt;}
.x5d{left:503.909200pt;}
.x86{left:507.647333pt;}
.x60{left:530.629333pt;}
.x5f{left:532.869200pt;}
.x6e{left:534.474667pt;}
.x61{left:535.429333pt;}
.x62{left:539.359867pt;}
.x63{left:550.149200pt;}
.x1a{left:578.330667pt;}
.x65{left:581.805040pt;}
.x3{left:585.709333pt;}
.x8{left:588.657333pt;}
.x6a{left:595.820000pt;}
.x6f{left:597.036000pt;}
.x6c{left:613.585867pt;}
.x70{left:665.836000pt;}
.x6b{left:672.056267pt;}
.x64{left:730.149200pt;}
.x29{left:788.976000pt;}
.x5a{left:835.856000pt;}
.x2c{left:845.856000pt;}
.x3e{left:884.681333pt;}
.x1c{left:1013.850667pt;}
.x4f{left:1017.044000pt;}
.x5b{left:1206.736000pt;}
.x59{left:1215.576000pt;}
.x54{left:1219.546667pt;}
.x3d{left:1264.976000pt;}
.x39{left:1328.176000pt;}
.x34{left:1389.521333pt;}
.x3a{left:1390.736000pt;}
.x1e{left:1449.530667pt;}
.x3b{left:1459.536000pt;}
}




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