
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_bba4196c896d47f6016a81bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_9449caed35a4ba0d175b6a99.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_53320b899c89fd782fad49e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_c9d007e9d3b20d8e04d4edf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_a07cdcb884e056f5eef51f90.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_2a60c9a9de031b4366101181.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_d4b05758e5261abf25739966.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.013672;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_13d290d86053374bf9a62a60.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200684;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_5a5c5b33a7072745a7077afc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_d4b05758e5261abf25739966.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.013672;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_13d290d86053374bf9a62a60.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.200684;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_5a5c5b33a7072745a7077afc.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;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_7556af56934cadad70182c9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.013672;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_eff7a9ba6a5d721ca0343ade.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200684;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_76bea47ced0b9b8d9148c004.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;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_7556af56934cadad70182c9d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.013672;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_eff7a9ba6a5d721ca0343ade.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.200684;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_76bea47ced0b9b8d9148c004.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;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_fd2c41cee1cfbcc800d750d1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666000;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_d3cf2fa5817a57577bc7438e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.893000;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_1a596db494129271a4aa30bc.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.013672;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_e642e1b155cec13d220f07eb.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.200684;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_b3d38e9d9339f3fca7f36093.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.206055;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_d0b959db13fab0785f943fe5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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_7556af56934cadad70182c9d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.013672;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_91b9528e8e397731dd1f9350.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.200684;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_83541066fd7a4bc4d2732dc7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.206055;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_01b7cadf35ccead4f0c8f690.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.909180;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_9b5a784c130b4822987dd528.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000488;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_7556af56934cadad70182c9d.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.013672;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_b6731f610d1d87436afe48ab.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.200684;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_1a2871ecee646ed9f7f8e155.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.206055;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_7556af56934cadad70182c9d.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.013672;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_4f0948fca31b95b8b9b6d8dc.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_3ea353f3a20951489d9f42d6.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_7556af56934cadad70182c9d.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_cdb9d1b0fbd303bd1f5c0a20.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_c522500d55a52ddadc27f7f3.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_33dda59370e1b177e3d4dd11.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_13d290d86053374bf9a62a60.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_116c3231e8d0514173761234.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_7556af56934cadad70182c9d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_af0219eff63507b4ab485ae9.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_2b06c6499dab68409d79c9e5.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.206055;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:ff30;src:url('chunks/assets/font_207c86f125ca7f6cdd2d8d8c.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000488;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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m23{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-21.702000px;}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.144000px;}
.v7{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:32.622000px;}
.lsbe{letter-spacing:-2.075220px;}
.lsd5{letter-spacing:-0.264384px;}
.ls2e{letter-spacing:-0.252504px;}
.ls59{letter-spacing:-0.241983px;}
.lsae{letter-spacing:-0.191783px;}
.ls33{letter-spacing:-0.187574px;}
.lsb3{letter-spacing:-0.185170px;}
.ls5e{letter-spacing:-0.179759px;}
.lse7{letter-spacing:-0.165330px;}
.lsb2{letter-spacing:-0.158717px;}
.lse5{letter-spacing:-0.145490px;}
.lsbf{letter-spacing:-0.145190px;}
.ls2d{letter-spacing:-0.122645px;}
.ls58{letter-spacing:-0.117535px;}
.lsb7{letter-spacing:-0.112424px;}
.ls32{letter-spacing:-0.108216px;}
.ls8a{letter-spacing:-0.107314px;}
.lsa9{letter-spacing:-0.105811px;}
.ls5d{letter-spacing:-0.103707px;}
.ls34{letter-spacing:-0.101002px;}
.ls5f{letter-spacing:-0.096793px;}
.ls8c{letter-spacing:-0.086573px;}
.lsb5{letter-spacing:-0.085972px;}
.ls2f{letter-spacing:-0.079358px;}
.ls5a{letter-spacing:-0.076052px;}
.ls80{letter-spacing:-0.075751px;}
.lsf4{letter-spacing:-0.072745px;}
.lsb4{letter-spacing:-0.066132px;}
.ls8e{letter-spacing:-0.064930px;}
.lsad{letter-spacing:-0.059519px;}
.ls37{letter-spacing:-0.057715px;}
.ls85{letter-spacing:-0.056813px;}
.ls62{letter-spacing:-0.055310px;}
.lsd6{letter-spacing:-0.055080px;}
.lsab{letter-spacing:-0.052906px;}
.ls82{letter-spacing:-0.050501px;}
.lsf3{letter-spacing:-0.047520px;}
.lsb1{letter-spacing:-0.046292px;}
.ls2b{letter-spacing:-0.045360px;}
.ls87{letter-spacing:-0.044188px;}
.ls56{letter-spacing:-0.043470px;}
.ls38{letter-spacing:-0.043286px;}
.lsf2{letter-spacing:-0.041580px;}
.ls63{letter-spacing:-0.041483px;}
.lsbd{letter-spacing:-0.039690px;}
.lsaf{letter-spacing:-0.039679px;}
.ls30{letter-spacing:-0.036072px;}
.ls5b{letter-spacing:-0.034569px;}
.lsa8{letter-spacing:-0.033066px;}
.ls84{letter-spacing:-0.031563px;}
.ls31{letter-spacing:-0.028858px;}
.ls5c{letter-spacing:-0.027655px;}
.lse6{letter-spacing:-0.026453px;}
.ls86{letter-spacing:-0.025250px;}
.lsd9{letter-spacing:-0.024529px;}
.ls2c{letter-spacing:-0.021643px;}
.ls57{letter-spacing:-0.020741px;}
.lsac{letter-spacing:-0.019840px;}
.ls8d{letter-spacing:-0.019440px;}
.ls8b{letter-spacing:-0.018938px;}
.lsd8{letter-spacing:-0.018397px;}
.lse4{letter-spacing:-0.017820px;}
.ls83{letter-spacing:-0.017010px;}
.ls36{letter-spacing:-0.014429px;}
.ls61{letter-spacing:-0.013828px;}
.lsb0{letter-spacing:-0.013226px;}
.ls81{letter-spacing:-0.012625px;}
.ls35{letter-spacing:-0.007214px;}
.ls60{letter-spacing:-0.006914px;}
.lsaa{letter-spacing:-0.006613px;}
.ls8f{letter-spacing:-0.006480px;}
.ls88{letter-spacing:-0.006313px;}
.lsd7{letter-spacing:-0.006132px;}
.lse0{letter-spacing:-0.005940px;}
.ls89{letter-spacing:-0.005670px;}
.lsc{letter-spacing:0.000000px;}
.ls102{letter-spacing:0.000419px;}
.lsf1{letter-spacing:0.000422px;}
.ls92{letter-spacing:0.000435px;}
.lsff{letter-spacing:0.000503px;}
.ls6{letter-spacing:0.000583px;}
.ls90{letter-spacing:0.000612px;}
.lsfd{letter-spacing:0.000800px;}
.lsf6{letter-spacing:0.000845px;}
.ls8{letter-spacing:0.001573px;}
.ls103{letter-spacing:0.002697px;}
.lsdf{letter-spacing:0.003178px;}
.lse{letter-spacing:0.003530px;}
.ls4{letter-spacing:0.004200px;}
.lsfe{letter-spacing:0.004221px;}
.lsf8{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.005265px;}
.lsba{letter-spacing:0.005670px;}
.lse9{letter-spacing:0.005940px;}
.ls72{letter-spacing:0.006313px;}
.lsa0{letter-spacing:0.006613px;}
.ls55{letter-spacing:0.006914px;}
.ls28{letter-spacing:0.007214px;}
.ls4c{letter-spacing:0.008280px;}
.ls1f{letter-spacing:0.008640px;}
.lscf{letter-spacing:0.011016px;}
.ls6e{letter-spacing:0.011340px;}
.lsdc{letter-spacing:0.011880px;}
.lsd2{letter-spacing:0.012264px;}
.ls42{letter-spacing:0.012420px;}
.ls15{letter-spacing:0.012960px;}
.ls98{letter-spacing:0.013226px;}
.ls4d{letter-spacing:0.013828px;}
.ls20{letter-spacing:0.014429px;}
.lscd{letter-spacing:0.016524px;}
.ls70{letter-spacing:0.017010px;}
.lse1{letter-spacing:0.017820px;}
.ls40{letter-spacing:0.018630px;}
.ls68{letter-spacing:0.018938px;}
.ls13{letter-spacing:0.019440px;}
.ls9f{letter-spacing:0.019840px;}
.ls78{letter-spacing:0.021643px;}
.ls46{letter-spacing:0.024840px;}
.ls74{letter-spacing:0.025250px;}
.ls19{letter-spacing:0.025920px;}
.ls9a{letter-spacing:0.026453px;}
.ls53{letter-spacing:0.027655px;}
.ls6d{letter-spacing:0.028350px;}
.ls26{letter-spacing:0.028858px;}
.lse8{letter-spacing:0.029700px;}
.ls41{letter-spacing:0.031050px;}
.ls14{letter-spacing:0.032400px;}
.lsce{letter-spacing:0.033048px;}
.ls9d{letter-spacing:0.033066px;}
.ls51{letter-spacing:0.034569px;}
.lsdb{letter-spacing:0.035640px;}
.ls24{letter-spacing:0.036072px;}
.ls52{letter-spacing:0.037260px;}
.ls73{letter-spacing:0.037876px;}
.ls25{letter-spacing:0.038880px;}
.lsef{letter-spacing:0.039679px;}
.ls6c{letter-spacing:0.039690px;}
.ls4f{letter-spacing:0.041483px;}
.lsde{letter-spacing:0.041580px;}
.ls22{letter-spacing:0.043286px;}
.ls49{letter-spacing:0.043470px;}
.lscb{letter-spacing:0.043954px;}
.ls69{letter-spacing:0.044188px;}
.ls66{letter-spacing:0.045247px;}
.ls1c{letter-spacing:0.045360px;}
.ls9e{letter-spacing:0.046292px;}
.ls96{letter-spacing:0.047401px;}
.ls4e{letter-spacing:0.048397px;}
.lsd3{letter-spacing:0.049058px;}
.ls3e{letter-spacing:0.049556px;}
.ls45{letter-spacing:0.049680px;}
.ls21{letter-spacing:0.050501px;}
.ls11{letter-spacing:0.051710px;}
.ls18{letter-spacing:0.051840px;}
.ls9b{letter-spacing:0.052906px;}
.lse2{letter-spacing:0.053460px;}
.lsd1{letter-spacing:0.055080px;}
.ls48{letter-spacing:0.055890px;}
.ls6a{letter-spacing:0.056813px;}
.ls79{letter-spacing:0.057715px;}
.ls1b{letter-spacing:0.058320px;}
.lsa3{letter-spacing:0.059519px;}
.ls43{letter-spacing:0.062100px;}
.ls50{letter-spacing:0.062224px;}
.ls76{letter-spacing:0.063126px;}
.ls16{letter-spacing:0.064800px;}
.ls23{letter-spacing:0.064930px;}
.lsa5{letter-spacing:0.066132px;}
.ls71{letter-spacing:0.068040px;}
.ls4a{letter-spacing:0.068310px;}
.lsc9{letter-spacing:0.068373px;}
.ls54{letter-spacing:0.069138px;}
.ls64{letter-spacing:0.070384px;}
.ls1d{letter-spacing:0.071280px;}
.ls27{letter-spacing:0.072144px;}
.ls9c{letter-spacing:0.072745px;}
.lsc7{letter-spacing:0.073710px;}
.ls94{letter-spacing:0.073735px;}
.ls75{letter-spacing:0.075751px;}
.ls4b{letter-spacing:0.076052px;}
.ls3c{letter-spacing:0.077087px;}
.ls7b{letter-spacing:0.077760px;}
.ls1e{letter-spacing:0.079358px;}
.lsd4{letter-spacing:0.079719px;}
.lsf{letter-spacing:0.080438px;}
.ls77{letter-spacing:0.082064px;}
.lsa4{letter-spacing:0.085972px;}
.ls7c{letter-spacing:0.086573px;}
.lsa1{letter-spacing:0.092585px;}
.ls7d{letter-spacing:0.093787px;}
.ls6b{letter-spacing:0.094689px;}
.ls99{letter-spacing:0.099198px;}
.lsc1{letter-spacing:0.107314px;}
.ls7a{letter-spacing:0.108216px;}
.lsbc{letter-spacing:0.119939px;}
.lsc0{letter-spacing:0.126252px;}
.ls44{letter-spacing:0.142830px;}
.lsd0{letter-spacing:0.143208px;}
.lsa7{letter-spacing:0.145490px;}
.ls6f{letter-spacing:0.147420px;}
.ls17{letter-spacing:0.149040px;}
.lsf5{letter-spacing:0.152104px;}
.lsdd{letter-spacing:0.154440px;}
.ls47{letter-spacing:0.161460px;}
.lsbb{letter-spacing:0.164430px;}
.lsb6{letter-spacing:0.165330px;}
.ls1a{letter-spacing:0.168480px;}
.lsea{letter-spacing:0.172260px;}
.lscc{letter-spacing:0.185583px;}
.ls67{letter-spacing:0.186014px;}
.lsa2{letter-spacing:0.191783px;}
.ls97{letter-spacing:0.194872px;}
.lsca{letter-spacing:0.195350px;}
.lsda{letter-spacing:0.200138px;}
.ls65{letter-spacing:0.201096px;}
.lsed{letter-spacing:0.201960px;}
.ls3f{letter-spacing:0.203729px;}
.ls95{letter-spacing:0.210672px;}
.lsa6{letter-spacing:0.211622px;}
.ls12{letter-spacing:0.212587px;}
.ls3d{letter-spacing:0.220248px;}
.ls10{letter-spacing:0.229824px;}
.ls93{letter-spacing:0.717483px;}
.lsb{letter-spacing:1.275394px;}
.lsec{letter-spacing:1.389960px;}
.ls2a{letter-spacing:1.398845px;}
.ls29{letter-spacing:1.407685px;}
.lsd{letter-spacing:1.542297px;}
.ls3a{letter-spacing:1.580036px;}
.ls0{letter-spacing:1.861130px;}
.lsc2{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls3b{letter-spacing:2.991662px;}
.ls3{letter-spacing:2.998354px;}
.ls91{letter-spacing:3.559200px;}
.lseb{letter-spacing:3.771900px;}
.lsf0{letter-spacing:4.463910px;}
.lsee{letter-spacing:5.257494px;}
.ls1{letter-spacing:10.461300px;}
.lsa{letter-spacing:11.954850px;}
.lsc6{letter-spacing:11.955746px;}
.ls101{letter-spacing:13.397858px;}
.lsf7{letter-spacing:13.448400px;}
.lse3{letter-spacing:13.450090px;}
.lsf9{letter-spacing:13.454400px;}
.lsfb{letter-spacing:13.459857px;}
.ls100{letter-spacing:13.653639px;}
.lsc4{letter-spacing:14.094088px;}
.lsc3{letter-spacing:14.100088px;}
.lsc8{letter-spacing:14.645022px;}
.ls7f{letter-spacing:14.779314px;}
.lsc5{letter-spacing:14.941200px;}
.lsfc{letter-spacing:15.373929px;}
.lsb9{letter-spacing:15.663483px;}
.lsfa{letter-spacing:16.749595px;}
.ls7e{letter-spacing:20.599200px;}
.lsb8{letter-spacing:21.280114px;}
.ls7{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.361200px;}
.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;}
}
.ws11{word-spacing:-110.285406px;}
.ws11c{word-spacing:-66.132000px;}
.ws170{word-spacing:-63.126000px;}
.ws1dc{word-spacing:-59.400000px;}
.ws11d{word-spacing:-16.724783px;}
.ws11e{word-spacing:-16.533000px;}
.ws1dd{word-spacing:-16.460255px;}
.ws46{word-spacing:-16.251840px;}
.ws83{word-spacing:-15.574680px;}
.ws13{word-spacing:-14.943900px;}
.ws1b9{word-spacing:-14.850000px;}
.ws44{word-spacing:-14.593824px;}
.ws45{word-spacing:-14.364000px;}
.ws185{word-spacing:-14.175000px;}
.ws81{word-spacing:-13.985748px;}
.ws82{word-spacing:-13.765500px;}
.ws1a7{word-spacing:-13.449600px;}
.ws11a{word-spacing:-13.377672px;}
.ws11b{word-spacing:-13.167000px;}
.wsbd{word-spacing:-12.769596px;}
.wsbe{word-spacing:-12.568500px;}
.ws192{word-spacing:-12.404750px;}
.ws193{word-spacing:-12.209400px;}
.ws36{word-spacing:-11.955150px;}
.ws19{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws62{word-spacing:-4.249282px;}
.ws1f4{word-spacing:-4.232448px;}
.ws1f3{word-spacing:-4.199382px;}
.ws60{word-spacing:-4.177138px;}
.wsa4{word-spacing:-4.072228px;}
.wsa2{word-spacing:-4.003090px;}
.ws1f5{word-spacing:-3.855496px;}
.ws61{word-spacing:-3.664915px;}
.wsa3{word-spacing:-3.512210px;}
.ws132{word-spacing:-3.511609px;}
.ws110{word-spacing:-3.397982px;}
.ws65{word-spacing:-3.376339px;}
.ws10f{word-spacing:-3.325838px;}
.wsa7{word-spacing:-3.235658px;}
.ws162{word-spacing:-3.128044px;}
.ws129{word-spacing:-3.114817px;}
.ws128{word-spacing:-3.088364px;}
.ws131{word-spacing:-3.061912px;}
.ws1f6{word-spacing:-3.048685px;}
.wsef{word-spacing:-2.973235px;}
.wsf4{word-spacing:-2.957904px;}
.ws163{word-spacing:-2.956100px;}
.wsee{word-spacing:-2.910109px;}
.ws20e{word-spacing:-2.743718px;}
.ws135{word-spacing:-2.704799px;}
.ws136{word-spacing:-2.665120px;}
.wsd0{word-spacing:-2.588166px;}
.wsfd{word-spacing:-2.092176px;}
.ws31{word-spacing:-2.092146px;}
.ws178{word-spacing:-2.080890px;}
.ws109{word-spacing:-2.070533px;}
.wsc5{word-spacing:-2.044339px;}
.ws108{word-spacing:-2.041675px;}
.ws30{word-spacing:-2.032370px;}
.ws47{word-spacing:-1.990541px;}
.ws207{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.ws1af{word-spacing:-1.904602px;}
.ws13f{word-spacing:-1.864922px;}
.ws140{word-spacing:-1.831856px;}
.wsdb{word-spacing:-1.830654px;}
.ws14e{word-spacing:-1.825243px;}
.wse8{word-spacing:-1.811716px;}
.ws84{word-spacing:-1.793268px;}
.wse7{word-spacing:-1.786466px;}
.wsc6{word-spacing:-1.775347px;}
.ws80{word-spacing:-1.673717px;}
.ws1d7{word-spacing:-1.527649px;}
.ws1a5{word-spacing:-1.422680px;}
.ws1a4{word-spacing:-1.385886px;}
.ws0{word-spacing:-1.322630px;}
.wsc2{word-spacing:-1.315063px;}
.ws101{word-spacing:-1.276949px;}
.wsfe{word-spacing:-1.269734px;}
.ws100{word-spacing:-1.255306px;}
.wsc3{word-spacing:-1.255288px;}
.ws223{word-spacing:-1.237363px;}
.ws1e1{word-spacing:-1.195512px;}
.ws14d{word-spacing:-1.183763px;}
.ws7{word-spacing:-1.171598px;}
.ws12c{word-spacing:-1.157310px;}
.wsc1{word-spacing:-1.135736px;}
.wse0{word-spacing:-1.117330px;}
.wsdd{word-spacing:-1.111018px;}
.wsdf{word-spacing:-1.098392px;}
.ws208{word-spacing:-1.075961px;}
.ws1b5{word-spacing:-1.071338px;}
.ws1b4{word-spacing:-1.051499px;}
.ws9{word-spacing:-1.046070px;}
.ws1c3{word-spacing:-0.997920px;}
.ws176{word-spacing:-0.980910px;}
.ws175{word-spacing:-0.958230px;}
.ws177{word-spacing:-0.901530px;}
.ws206{word-spacing:-0.896634px;}
.ws7e{word-spacing:-0.836858px;}
.ws112{word-spacing:-0.777083px;}
.ws102{word-spacing:-0.714226px;}
.ws1f2{word-spacing:-0.707612px;}
.ws116{word-spacing:-0.657532px;}
.ws25{word-spacing:-0.645581px;}
.ws153{word-spacing:-0.641480px;}
.wse1{word-spacing:-0.624947px;}
.ws1f1{word-spacing:-0.608414px;}
.ws154{word-spacing:-0.601801px;}
.ws211{word-spacing:-0.484186px;}
.ws190{word-spacing:-0.418429px;}
.ws17d{word-spacing:-0.404006px;}
.ws17c{word-spacing:-0.397694px;}
.ws14a{word-spacing:-0.376952px;}
.ws1c4{word-spacing:-0.370339px;}
.ws37{word-spacing:-0.358654px;}
.ws1b2{word-spacing:-0.350500px;}
.ws1a6{word-spacing:-0.349538px;}
.ws49{word-spacing:-0.333245px;}
.ws72{word-spacing:-0.324648px;}
.ws171{word-spacing:-0.322790px;}
.ws8b{word-spacing:-0.319360px;}
.wsb4{word-spacing:-0.311121px;}
.ws11f{word-spacing:-0.305474px;}
.ws123{word-spacing:-0.304207px;}
.ws85{word-spacing:-0.298878px;}
.ws70{word-spacing:-0.295790px;}
.wsc9{word-spacing:-0.291589px;}
.ws1d2{word-spacing:-0.290981px;}
.wsb2{word-spacing:-0.283466px;}
.ws197{word-spacing:-0.283258px;}
.ws52{word-spacing:-0.278640px;}
.ws145{word-spacing:-0.277754px;}
.ws172{word-spacing:-0.268992px;}
.ws94{word-spacing:-0.267030px;}
.ws71{word-spacing:-0.259718px;}
.wsb3{word-spacing:-0.248897px;}
.ws32{word-spacing:-0.239102px;}
.wsd1{word-spacing:-0.227254px;}
.ws1de{word-spacing:-0.215194px;}
.ws1b3{word-spacing:-0.205009px;}
.ws127{word-spacing:-0.185170px;}
.ws33{word-spacing:-0.179327px;}
.ws20d{word-spacing:-0.161395px;}
.ws4a{word-spacing:-0.155131px;}
.ws8c{word-spacing:-0.148667px;}
.ws120{word-spacing:-0.142204px;}
.wsca{word-spacing:-0.135740px;}
.ws198{word-spacing:-0.131862px;}
.ws64{word-spacing:-0.129859px;}
.wsa6{word-spacing:-0.124448px;}
.ws2e{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.ws149{word-spacing:-0.105811px;}
.ws14{word-spacing:-0.059776px;}
.ws1f{word-spacing:-0.053798px;}
.ws1a{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws164{word-spacing:-0.039679px;}
.ws48{word-spacing:-0.005539px;}
.ws1b{word-spacing:-0.003196px;}
.ws181{word-spacing:-0.001046px;}
.ws17{word-spacing:-0.000124px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.001225px;}
.ws18{word-spacing:0.001483px;}
.ws15{word-spacing:0.003608px;}
.wsd3{word-spacing:0.006313px;}
.ws146{word-spacing:0.006613px;}
.wsf5{word-spacing:0.007214px;}
.ws152{word-spacing:0.013226px;}
.ws98{word-spacing:0.034569px;}
.ws56{word-spacing:0.036072px;}
.ws150{word-spacing:0.039679px;}
.wsd2{word-spacing:0.044188px;}
.ws142{word-spacing:0.046292px;}
.wsde{word-spacing:0.050501px;}
.ws20{word-spacing:0.053798px;}
.wsff{word-spacing:0.057715px;}
.ws21f{word-spacing:0.059148px;}
.ws2c{word-spacing:0.059776px;}
.ws133{word-spacing:0.072745px;}
.ws122{word-spacing:0.092585px;}
.ws1b6{word-spacing:0.105811px;}
.wse9{word-spacing:0.107314px;}
.wsbf{word-spacing:0.107597px;}
.wsa0{word-spacing:0.110621px;}
.ws144{word-spacing:0.112424px;}
.ws5e{word-spacing:0.115430px;}
.ws18a{word-spacing:0.119070px;}
.ws40{word-spacing:0.119551px;}
.ws10a{word-spacing:0.122645px;}
.wsb0{word-spacing:0.124448px;}
.wsd8{word-spacing:0.124740px;}
.ws12f{word-spacing:0.125651px;}
.ws6e{word-spacing:0.129859px;}
.ws99{word-spacing:0.131362px;}
.ws57{word-spacing:0.137074px;}
.ws1b7{word-spacing:0.138877px;}
.wsfa{word-spacing:0.142560px;}
.wsa1{word-spacing:0.145190px;}
.ws1c1{word-spacing:0.148500px;}
.ws5f{word-spacing:0.151502px;}
.wsaa{word-spacing:0.155250px;}
.ws1ae{word-spacing:0.160380px;}
.ws24{word-spacing:0.161395px;}
.ws68{word-spacing:0.162000px;}
.ws130{word-spacing:0.165330px;}
.ws1ab{word-spacing:0.166320px;}
.ws93{word-spacing:0.167670px;}
.wsd7{word-spacing:0.170100px;}
.ws151{word-spacing:0.171943px;}
.wsa9{word-spacing:0.173880px;}
.ws51{word-spacing:0.174960px;}
.ws1a0{word-spacing:0.176256px;}
.ws38{word-spacing:0.179327px;}
.ws67{word-spacing:0.181440px;}
.ws1ac{word-spacing:0.190080px;}
.wsf9{word-spacing:0.194400px;}
.ws1eb{word-spacing:0.201960px;}
.ws1ad{word-spacing:0.207900px;}
.wsa8{word-spacing:0.214328px;}
.ws1bb{word-spacing:0.215194px;}
.ws1c2{word-spacing:0.219780px;}
.ws66{word-spacing:0.223646px;}
.ws2d{word-spacing:0.239102px;}
.ws1ec{word-spacing:0.249480px;}
.ws186{word-spacing:0.268992px;}
.ws1da{word-spacing:0.271141px;}
.ws166{word-spacing:0.298878px;}
.ws23{word-spacing:0.322790px;}
.ws15c{word-spacing:0.337273px;}
.ws9a{word-spacing:0.352604px;}
.wsc7{word-spacing:0.358654px;}
.ws58{word-spacing:0.367934px;}
.ws2a{word-spacing:0.418429px;}
.ws134{word-spacing:0.456311px;}
.wsda{word-spacing:0.473445px;}
.ws2b{word-spacing:0.478205px;}
.ws143{word-spacing:0.502603px;}
.wsd9{word-spacing:0.511321px;}
.ws165{word-spacing:0.537980px;}
.wsfc{word-spacing:0.541080px;}
.ws119{word-spacing:0.568500px;}
.wsfb{word-spacing:0.584366px;}
.ws22b{word-spacing:0.591782px;}
.ws39{word-spacing:0.657532px;}
.ws182{word-spacing:0.672730px;}
.ws21e{word-spacing:0.699379px;}
.ws18f{word-spacing:0.717307px;}
.ws1e{word-spacing:0.753178px;}
.ws41{word-spacing:0.777083px;}
.ws1e0{word-spacing:0.806976px;}
.wsdc{word-spacing:0.833263px;}
.ws205{word-spacing:0.836858px;}
.ws7d{word-spacing:0.896634px;}
.wsae{word-spacing:0.912622px;}
.ws15f{word-spacing:0.945688px;}
.ws6c{word-spacing:0.952301px;}
.ws16c{word-spacing:0.956410px;}
.ws21d{word-spacing:0.968371px;}
.ws8{word-spacing:1.004227px;}
.ws160{word-spacing:1.011820px;}
.ws195{word-spacing:1.022170px;}
.ws169{word-spacing:1.075961px;}
.ws18b{word-spacing:1.135736px;}
.ws159{word-spacing:1.203602px;}
.ws1ce{word-spacing:1.243282px;}
.ws17f{word-spacing:1.255288px;}
.ws19b{word-spacing:1.255824px;}
.ws19a{word-spacing:1.272348px;}
.wse5{word-spacing:1.281458px;}
.wsea{word-spacing:1.287090px;}
.ws158{word-spacing:1.289574px;}
.ws194{word-spacing:1.291162px;}
.wse6{word-spacing:1.294083px;}
.ws1f7{word-spacing:1.329253px;}
.wseb{word-spacing:1.332450px;}
.ws19d{word-spacing:1.343952px;}
.ws9b{word-spacing:1.355105px;}
.wsad{word-spacing:1.362019px;}
.ws1ea{word-spacing:1.378080px;}
.ws9d{word-spacing:1.389674px;}
.ws1e9{word-spacing:1.389960px;}
.ws59{word-spacing:1.414022px;}
.ws6b{word-spacing:1.421237px;}
.ws9c{word-spacing:1.431157px;}
.ws5b{word-spacing:1.450094px;}
.ws106{word-spacing:1.464523px;}
.ws10b{word-spacing:1.470960px;}
.ws107{word-spacing:1.478952px;}
.ws5a{word-spacing:1.493381px;}
.ws191{word-spacing:1.494390px;}
.ws218{word-spacing:1.506355px;}
.ws10c{word-spacing:1.522800px;}
.ws19c{word-spacing:1.553256px;}
.wsc4{word-spacing:1.554166px;}
.wse4{word-spacing:1.609713px;}
.wsc0{word-spacing:1.613941px;}
.ws1d0{word-spacing:1.633460px;}
.ws155{word-spacing:1.673140px;}
.ws1a9{word-spacing:1.673717px;}
.ws1fe{word-spacing:1.692979px;}
.ws12a{word-spacing:1.699592px;}
.ws3c{word-spacing:1.733492px;}
.ws9e{word-spacing:1.756105px;}
.ws3d{word-spacing:1.793268px;}
.ws5c{word-spacing:1.832458px;}
.ws1cf{word-spacing:1.838470px;}
.ws105{word-spacing:1.839672px;}
.ws118{word-spacing:1.912819px;}
.ws21a{word-spacing:1.936742px;}
.ws12b{word-spacing:2.010413px;}
.wse3{word-spacing:2.013719px;}
.ws2f{word-spacing:2.032370px;}
.ws22{word-spacing:2.044339px;}
.wse2{word-spacing:2.045282px;}
.ws113{word-spacing:2.092146px;}
.ws1fd{word-spacing:2.142677px;}
.ws16b{word-spacing:2.151922px;}
.ws111{word-spacing:2.211697px;}
.ws104{word-spacing:2.301394px;}
.ws1ba{word-spacing:2.313331px;}
.ws29{word-spacing:2.331248px;}
.ws103{word-spacing:2.337466px;}
.ws19e{word-spacing:2.340900px;}
.ws19f{word-spacing:2.384964px;}
.ws88{word-spacing:2.391024px;}
.ws188{word-spacing:2.449440px;}
.ws1c9{word-spacing:2.493176px;}
.ws2{word-spacing:2.511541px;}
.ws1c0{word-spacing:2.512620px;}
.ws138{word-spacing:2.519629px;}
.wsb1{word-spacing:2.523537px;}
.ws1bf{word-spacing:2.542320px;}
.ws1be{word-spacing:2.589840px;}
.ws114{word-spacing:2.630126px;}
.ws6f{word-spacing:2.633256px;}
.ws22e{word-spacing:2.636122px;}
.wsb6{word-spacing:2.647985px;}
.ws137{word-spacing:2.671733px;}
.ws1a1{word-spacing:2.673657px;}
.ws1a2{word-spacing:2.685921px;}
.ws8a{word-spacing:2.689902px;}
.ws21b{word-spacing:2.689920px;}
.wscc{word-spacing:2.727043px;}
.ws117{word-spacing:2.749678px;}
.ws74{word-spacing:2.763115px;}
.ws187{word-spacing:2.800980px;}
.wscd{word-spacing:2.821732px;}
.ws1d1{word-spacing:2.843676px;}
.ws1d5{word-spacing:2.863516px;}
.ws3a{word-spacing:2.869229px;}
.ws1c{word-spacing:2.869236px;}
.ws189{word-spacing:2.880360px;}
.ws1d9{word-spacing:2.896582px;}
.ws1d8{word-spacing:2.909808px;}
.wsa5{word-spacing:2.945279px;}
.wsaf{word-spacing:2.972934px;}
.wsb7{word-spacing:3.035158px;}
.wsb5{word-spacing:3.048986px;}
.ws1df{word-spacing:3.066509px;}
.ws63{word-spacing:3.073334px;}
.ws6d{word-spacing:3.102192px;}
.ws3b{word-spacing:3.108331px;}
.wsf0{word-spacing:3.116621px;}
.ws75{word-spacing:3.167122px;}
.ws167{word-spacing:3.168107px;}
.ws73{word-spacing:3.181550px;}
.ws27{word-spacing:3.219667px;}
.wsf1{word-spacing:3.224837px;}
.ws17a{word-spacing:3.377241px;}
.ws21{word-spacing:3.389299px;}
.ws1a8{word-spacing:3.407209px;}
.ws92{word-spacing:3.471390px;}
.ws228{word-spacing:3.478225px;}
.ws91{word-spacing:3.502440px;}
.wsed{word-spacing:3.522431px;}
.ws28{word-spacing:3.586536px;}
.wsec{word-spacing:3.610807px;}
.ws50{word-spacing:3.622320px;}
.ws1cc{word-spacing:3.637260px;}
.ws179{word-spacing:3.648683px;}
.ws4f{word-spacing:3.654720px;}
.ws168{word-spacing:3.706087px;}
.ws1e7{word-spacing:3.736260px;}
.ws1e6{word-spacing:3.765960px;}
.ws17b{word-spacing:3.774935px;}
.ws1cd{word-spacing:3.776137px;}
.ws1e8{word-spacing:3.813480px;}
.ws7f{word-spacing:3.825638px;}
.ws7b{word-spacing:3.885414px;}
.ws1bd{word-spacing:3.945190px;}
.ws15a{word-spacing:4.020826px;}
.ws10e{word-spacing:4.025635px;}
.ws1f0{word-spacing:4.027439px;}
.ws15b{word-spacing:4.040665px;}
.ws16d{word-spacing:4.064741px;}
.ws1b0{word-spacing:4.086958px;}
.ws1d6{word-spacing:4.093571px;}
.ws10d{word-spacing:4.126637px;}
.ws1bc{word-spacing:4.184292px;}
.wsba{word-spacing:4.189763px;}
.ws95{word-spacing:4.272728px;}
.ws43{word-spacing:4.303843px;}
.ws1fa{word-spacing:4.311806px;}
.ws78{word-spacing:4.371926px;}
.ws12e{word-spacing:4.397778px;}
.ws1f8{word-spacing:4.417618px;}
.ws42{word-spacing:4.423394px;}
.ws53{word-spacing:4.458499px;}
.ws12d{word-spacing:4.516816px;}
.ws1b1{word-spacing:4.523429px;}
.ws1f9{word-spacing:4.530042px;}
.ws7c{word-spacing:4.662497px;}
.wsf{word-spacing:4.770079px;}
.ws14f{word-spacing:4.774730px;}
.ws89{word-spacing:4.782048px;}
.ws1c8{word-spacing:4.787957px;}
.ws13e{word-spacing:4.827636px;}
.ws1d3{word-spacing:4.847476px;}
.ws10{word-spacing:4.853765px;}
.ws20b{word-spacing:4.895654px;}
.ws15d{word-spacing:4.900381px;}
.ws1c7{word-spacing:4.913608px;}
.ws1ef{word-spacing:4.920221px;}
.ws157{word-spacing:4.946674px;}
.ws17e{word-spacing:4.961375px;}
.ws9f{word-spacing:5.033246px;}
.wsd4{word-spacing:5.068980px;}
.ws204{word-spacing:5.080926px;}
.wsd6{word-spacing:5.091660px;}
.wsac{word-spacing:5.102384px;}
.wsd5{word-spacing:5.125680px;}
.ws125{word-spacing:5.158296px;}
.ws13d{word-spacing:5.164909px;}
.ws1c6{word-spacing:5.171522px;}
.wsab{word-spacing:5.178436px;}
.ws183{word-spacing:5.200477px;}
.ws1c5{word-spacing:5.224428px;}
.ws1a3{word-spacing:5.230801px;}
.ws156{word-spacing:5.231041px;}
.ws1ed{word-spacing:5.244268px;}
.ws5d{word-spacing:5.252083px;}
.ws13c{word-spacing:5.257494px;}
.ws184{word-spacing:5.260253px;}
.ws15e{word-spacing:5.270720px;}
.ws1ee{word-spacing:5.290560px;}
.ws18d{word-spacing:5.320028px;}
.ws6a{word-spacing:5.324227px;}
.ws1e5{word-spacing:5.340060px;}
.ws126{word-spacing:5.363305px;}
.ws1e4{word-spacing:5.393520px;}
.ws69{word-spacing:5.403586px;}
.ws209{word-spacing:5.433638px;}
.ws14b{word-spacing:5.588154px;}
.ws202{word-spacing:5.594767px;}
.ws1d4{word-spacing:5.627833px;}
.ws13b{word-spacing:5.647673px;}
.ws14c{word-spacing:5.660899px;}
.ws13a{word-spacing:5.674126px;}
.ws203{word-spacing:5.680739px;}
.ws124{word-spacing:5.687352px;}
.wscf{word-spacing:5.719216px;}
.ws26{word-spacing:5.756429px;}
.wsce{word-spacing:5.782342px;}
.wsf6{word-spacing:5.793120px;}
.wsf8{word-spacing:5.819040px;}
.wsf7{word-spacing:5.857920px;}
.ws34{word-spacing:5.917784px;}
.ws139{word-spacing:6.024625px;}
.ws16a{word-spacing:6.336214px;}
.ws86{word-spacing:6.455765px;}
.ws147{word-spacing:6.494162px;}
.wsf3{word-spacing:6.536246px;}
.ws174{word-spacing:6.563405px;}
.ws148{word-spacing:6.599974px;}
.wsf2{word-spacing:6.608390px;}
.ws173{word-spacing:6.617203px;}
.ws18c{word-spacing:6.635092px;}
.ws1cb{word-spacing:6.771917px;}
.ws196{word-spacing:6.778598px;}
.ws1ca{word-spacing:6.857888px;}
.ws20c{word-spacing:7.101389px;}
.ws1b8{word-spacing:7.113296px;}
.ws16f{word-spacing:7.173072px;}
.ws1fc{word-spacing:7.188548px;}
.ws8f{word-spacing:7.607250px;}
.ws8e{word-spacing:7.650720px;}
.ws1db{word-spacing:7.711052px;}
.ws90{word-spacing:7.712820px;}
.ws16e{word-spacing:7.770828px;}
.wsd{word-spacing:7.782761px;}
.ws3f{word-spacing:7.890379px;}
.ws4d{word-spacing:7.938000px;}
.ws1fb{word-spacing:7.975519px;}
.ws141{word-spacing:7.982132px;}
.ws4c{word-spacing:7.983360px;}
.wsb9{word-spacing:7.992353px;}
.ws3e{word-spacing:8.009930px;}
.ws4e{word-spacing:8.048160px;}
.wsb8{word-spacing:8.082232px;}
.ws20a{word-spacing:8.338752px;}
.ws77{word-spacing:8.339846px;}
.ws87{word-spacing:8.428360px;}
.ws76{word-spacing:8.433634px;}
.ws18e{word-spacing:8.547911px;}
.wsbc{word-spacing:8.808181px;}
.wsbb{word-spacing:8.815095px;}
.ws7a{word-spacing:9.191146px;}
.ws79{word-spacing:9.198360px;}
.ws161{word-spacing:10.323205px;}
.ws4{word-spacing:10.416059px;}
.ws199{word-spacing:11.848002px;}
.ws35{word-spacing:11.903953px;}
.wsb{word-spacing:12.176255px;}
.wscb{word-spacing:12.201500px;}
.ws1ff{word-spacing:12.690731px;}
.ws1aa{word-spacing:12.777257px;}
.ws121{word-spacing:12.782524px;}
.ws96{word-spacing:12.970289px;}
.ws97{word-spacing:13.067082px;}
.ws200{word-spacing:13.180108px;}
.ws201{word-spacing:13.193334px;}
.ws220{word-spacing:13.342003px;}
.ws8d{word-spacing:13.363547px;}
.ws230{word-spacing:13.384291px;}
.ws22c{word-spacing:13.391290px;}
.ws213{word-spacing:13.391424px;}
.ws214{word-spacing:13.395802px;}
.ws215{word-spacing:13.449600px;}
.ws229{word-spacing:13.503398px;}
.ws54{word-spacing:13.534214px;}
.ws222{word-spacing:13.557197px;}
.ws55{word-spacing:13.635216px;}
.ws4b{word-spacing:13.944571px;}
.ws1e3{word-spacing:14.059980px;}
.ws1e2{word-spacing:14.077800px;}
.ws115{word-spacing:14.884124px;}
.wsc{word-spacing:16.109478px;}
.ws217{word-spacing:16.354714px;}
.ws224{word-spacing:16.569907px;}
.ws225{word-spacing:16.613030px;}
.ws21c{word-spacing:16.614749px;}
.ws216{word-spacing:16.617379px;}
.ws221{word-spacing:16.618320px;}
.ws22f{word-spacing:16.618483px;}
.ws210{word-spacing:16.619030px;}
.ws22a{word-spacing:16.619136px;}
.ws22d{word-spacing:16.619549px;}
.ws227{word-spacing:16.620912px;}
.ws20f{word-spacing:16.623706px;}
.ws212{word-spacing:16.731302px;}
.ws226{word-spacing:16.892698px;}
.wsc8{word-spacing:18.470660px;}
.ws219{word-spacing:21.573158px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws12{word-spacing:40.042186px;}
.ws180{word-spacing:781.212710px;}
._1c{margin-left:-23.335253px;}
._b{margin-left:-6.939994px;}
._2{margin-left:-5.397721px;}
._9{margin-left:-4.309861px;}
._7{margin-left:-3.286840px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._8{width:3.688669px;}
._5{width:11.398711px;}
._3{width:12.973252px;}
._a{width:14.824386px;}
._1b{width:16.085722px;}
._c{width:17.269286px;}
._e{width:18.351109px;}
._28{width:19.382429px;}
._d{width:20.443255px;}
._11{width:21.891461px;}
._18{width:22.901622px;}
._13{width:24.328669px;}
._14{width:25.479540px;}
._12{width:27.676103px;}
._1e{width:29.237836px;}
._6{width:30.587087px;}
._15{width:32.585269px;}
._21{width:36.991106px;}
._1f{width:38.017282px;}
._20{width:41.012086px;}
._29{width:42.620003px;}
._19{width:44.293720px;}
._2a{width:88.767360px;}
._f{width:834.521491px;}
._23{width:969.285773px;}
._24{width:996.184973px;}
._22{width:1010.118758px;}
._26{width:2093.233257px;}
._1a{width:2179.754955px;}
._27{width:2257.408415px;}
._1d{width:2283.552810px;}
._17{width:2387.350665px;}
._16{width:2491.148520px;}
._25{width:2501.714700px;}
._10{width:2525.624700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(54,44,83);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs1a{font-size:37.800000px;}
.fs19{font-size:39.600000px;}
.fs11{font-size:41.400000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fsd{font-size:43.200000px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs16{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs1c{font-size:48.837600px;}
.fs12{font-size:50.274000px;}
.fs17{font-size:52.668000px;}
.fs9{font-size:53.798400px;}
.fse{font-size:55.062000px;}
.fs1e{font-size:55.080000px;}
.fs1b{font-size:56.058000px;}
.fs14{font-size:56.700000px;}
.fsa{font-size:57.456000px;}
.fs1f{font-size:59.400000px;}
.fs4{font-size:59.775600px;}
.fs1d{font-size:61.322400px;}
.fs10{font-size:62.100000px;}
.fs15{font-size:62.286600px;}
.fs13{font-size:63.126000px;}
.fsc{font-size:64.800000px;}
.fs18{font-size:66.132000px;}
.fsf{font-size:69.138000px;}
.fsb{font-size:72.144000px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:141.755020px;}
.y70{bottom:-966.205260px;}
.y8e{bottom:-880.014586px;}
.y8d{bottom:-856.903255px;}
.y8c{bottom:-833.900141px;}
.y8b{bottom:-810.788810px;}
.y8a{bottom:-787.677480px;}
.y89{bottom:-764.674366px;}
.y88{bottom:-741.563035px;}
.y87{bottom:-718.559921px;}
.y206{bottom:-709.542405px;}
.y86{bottom:-695.448590px;}
.y85{bottom:-672.337260px;}
.yc7{bottom:-647.357603px;}
.y84{bottom:-628.273260px;}
.y83{bottom:-601.270193px;}
.ye0{bottom:-569.393742px;}
.y22a{bottom:-555.176655px;}
.ydf{bottom:-549.171328px;}
.yde{bottom:-529.043603px;}
.y21d{bottom:-497.572604px;}
.y1dd{bottom:-494.770941px;}
.ydd{bottom:-490.393417px;}
.y242{bottom:-483.104883px;}
.y21c{bottom:-476.387218px;}
.ydc{bottom:-472.154445px;}
.y241{bottom:-462.017041px;}
.y21b{bottom:-455.201832px;}
.ydb{bottom:-448.622052px;}
.y240{bottom:-440.831655px;}
.y23e{bottom:-440.824240px;}
.y23f{bottom:-436.673655px;}
.y21a{bottom:-434.115644px;}
.y23d{bottom:-419.638854px;}
.y219{bottom:-412.930257px;}
.y1ed{bottom:-398.137905px;}
.y23c{bottom:-393.601032px;}
.y218{bottom:-391.844069px;}
.y82{bottom:-389.913523px;}
.y217{bottom:-370.658683px;}
.y81{bottom:-366.802193px;}
.y23b{bottom:-352.615725px;}
.y216{bottom:-349.473297px;}
.y95{bottom:-343.988632px;}
.y80{bottom:-343.690862px;}
.y23a{bottom:-331.529537px;}
.y215{bottom:-328.387109px;}
.y7f{bottom:-320.687748px;}
.y239{bottom:-310.344151px;}
.y214{bottom:-307.201722px;}
.y7e{bottom:-297.576418px;}
.yda{bottom:-295.626722px;}
.y238{bottom:-289.158764px;}
.y213{bottom:-286.016336px;}
.yd9{bottom:-275.404308px;}
.y7d{bottom:-274.571500px;}
.y237{bottom:-268.072576px;}
.y212{bottom:-264.930148px;}
.yb3{bottom:-261.389236px;}
.yd8{bottom:-255.275005px;}
.y7c{bottom:-251.460169px;}
.y236{bottom:-246.887190px;}
.y211{bottom:-243.744762px;}
.yb2{bottom:-239.240878px;}
.yd7{bottom:-235.052590px;}
.yf1{bottom:-230.080860px;}
.y7b{bottom:-228.348839px;}
.y235{bottom:-225.801002px;}
.y210{bottom:-222.658574px;}
.yb1{bottom:-217.196227px;}
.yd6{bottom:-214.923287px;}
.y7a{bottom:-205.343921px;}
.y234{bottom:-204.615616px;}
.y20f{bottom:-201.473187px;}
.yb0{bottom:-195.047868px;}
.yd5{bottom:-194.700873px;}
.y1f7{bottom:-193.105440px;}
.y1a6{bottom:-183.830378px;}
.y233{bottom:-183.430229px;}
.y79{bottom:-182.232590px;}
.y20e{bottom:-180.287801px;}
.y1e6{bottom:-174.937097px;}
.yd4{bottom:-174.478459px;}
.yaf{bottom:-172.899510px;}
.y1f6{bottom:-172.019252px;}
.y1d3{bottom:-172.010003px;}
.y232{bottom:-162.344041px;}
.y20d{bottom:-159.201613px;}
.y77{bottom:-159.121508px;}
.y78{bottom:-159.121260px;}
.y1e5{bottom:-155.384450px;}
.yd3{bottom:-154.350734px;}
.yae{bottom:-150.854859px;}
.y1f5{bottom:-150.833866px;}
.y231{bottom:-141.158655px;}
.y10a{bottom:-140.979305px;}
.y20c{bottom:-138.016227px;}
.y76{bottom:-136.116590px;}
.y1e4{bottom:-135.739819px;}
.yd2{bottom:-134.128320px;}
.y1f4{bottom:-129.747677px;}
.yad{bottom:-128.706500px;}
.y109{bottom:-117.867974px;}
.y1ad{bottom:-117.397523px;}
.y1ae{bottom:-117.396878px;}
.y1e3{bottom:-116.187172px;}
.yd1{bottom:-113.905906px;}
.y75{bottom:-113.005260px;}
.y20b{bottom:-111.978405px;}
.y1f3{bottom:-108.562291px;}
.yac{bottom:-106.661849px;}
.y230{bottom:-100.668645px;}
.y1ac{bottom:-97.268220px;}
.y1e2{bottom:-96.542541px;}
.y132{bottom:-96.439530px;}
.y108{bottom:-94.864860px;}
.yd0{bottom:-93.776602px;}
.y1ab{bottom:-93.299378px;}
.y1f2{bottom:-87.376905px;}
.y1d7{bottom:-86.298502px;}
.yab{bottom:-84.513491px;}
.y22f{bottom:-81.561150px;}
.y20a{bottom:-71.486910px;}
.y74{bottom:-68.833800px;}
.y22e{bottom:-62.553150px;}
.yaa{bottom:-62.365132px;}
.y1e1{bottom:-58.996800px;}
.y1aa{bottom:-58.617405px;}
.ycf{bottom:-55.126575px;}
.y209{bottom:-52.281405px;}
.y107{bottom:-50.693220px;}
.y73{bottom:-47.989260px;}
.y1f1{bottom:-46.886400px;}
.y1d6{bottom:-45.285975px;}
.y22d{bottom:-43.445655px;}
.y1e0{bottom:-41.278941px;}
.y1a9{bottom:-40.284878px;}
.yce{bottom:-36.887603px;}
.y208{bottom:-33.273405px;}
.y106{bottom:-29.848680px;}
.y1f0{bottom:-27.778905px;}
.y72{bottom:-27.253260px;}
.y1d5{bottom:-27.047002px;}
.y22c{bottom:-24.437655px;}
.y1df{bottom:-23.653341px;}
.y1a8{bottom:-22.140878px;}
.ya9{bottom:-20.137132px;}
.ycd{bottom:-13.261667px;}
.y207{bottom:-8.622563px;}
.y164{bottom:-7.821759px;}
.y1d4{bottom:-3.517240px;}
.y1ef{bottom:-3.225707px;}
.y105{bottom:-2.954516px;}
.y1de{bottom:-0.704029px;}
.y71{bottom:-0.361228px;}
.y0{bottom:0.000000px;}
.y22b{bottom:0.213107px;}
.y1a7{bottom:1.389197px;}
.y3{bottom:3.425340px;}
.ya8{bottom:5.740807px;}
.y2{bottom:14.151273px;}
.y1e{bottom:16.933071px;}
.y4c{bottom:31.890000px;}
.y1b1{bottom:91.972500px;}
.y1d9{bottom:98.595000px;}
.y24a{bottom:99.258000px;}
.y1c{bottom:104.646000px;}
.y226{bottom:104.857500px;}
.y202{bottom:105.601500px;}
.y1e9{bottom:107.491500px;}
.y4b{bottom:107.983500px;}
.y115{bottom:107.991000px;}
.y1b0{bottom:111.204000px;}
.y2a4{bottom:117.280500px;}
.y1d8{bottom:117.828000px;}
.y249{bottom:118.087500px;}
.y1b{bottom:122.535000px;}
.y225{bottom:123.687000px;}
.y91{bottom:124.251000px;}
.y201{bottom:124.431000px;}
.y1e8{bottom:126.724500px;}
.y4a{bottom:126.813000px;}
.y113{bottom:126.820500px;}
.y1af{bottom:130.437000px;}
.y114{bottom:132.246000px;}
.y2a3{bottom:134.541000px;}
.y248{bottom:136.917000px;}
.y1a{bottom:140.422500px;}
.y224{bottom:142.516500px;}
.y1d0{bottom:143.247000px;}
.y200{bottom:143.260500px;}
.y90{bottom:143.484000px;}
.y49{bottom:145.642500px;}
.y111{bottom:145.650000px;}
.y1e7{bottom:145.956000px;}
.y26c{bottom:147.541500px;}
.yc3{bottom:150.960000px;}
.y112{bottom:151.075500px;}
.y2a2{bottom:151.800000px;}
.y1a3{bottom:152.866500px;}
.y169{bottom:157.287000px;}
.y19{bottom:158.310000px;}
.y163{bottom:159.488894px;}
.y223{bottom:161.346000px;}
.y1ff{bottom:162.090000px;}
.y8f{bottom:162.717000px;}
.y48{bottom:164.472000px;}
.y247{bottom:167.494500px;}
.y1da{bottom:168.385500px;}
.y110{bottom:168.963000px;}
.y2a1{bottom:169.060500px;}
.yc2{bottom:169.789500px;}
.y104{bottom:171.897289px;}
.y26b{bottom:174.082500px;}
.y168{bottom:176.115000px;}
.y18{bottom:176.199000px;}
.y222{bottom:180.175500px;}
.y162{bottom:180.674281px;}
.y1fe{bottom:180.919500px;}
.y47{bottom:183.301500px;}
.y6d{bottom:185.145000px;}
.y2a0{bottom:186.321000px;}
.y246{bottom:186.726000px;}
.yc1{bottom:188.619000px;}
.y10f{bottom:189.138000px;}
.y26a{bottom:191.656500px;}
.y17{bottom:194.086500px;}
.y167{bottom:194.944500px;}
.y103{bottom:195.008620px;}
.y221{bottom:199.005000px;}
.y1fd{bottom:199.749000px;}
.y161{bottom:201.760469px;}
.y46{bottom:202.131000px;}
.y29f{bottom:203.581500px;}
.y245{bottom:205.959000px;}
.yc0{bottom:207.448500px;}
.ya7{bottom:208.290949px;}
.y16{bottom:211.974000px;}
.y102{bottom:218.013538px;}
.y269{bottom:218.197500px;}
.y166{bottom:218.257500px;}
.y1fc{bottom:218.578500px;}
.y29e{bottom:220.842000px;}
.y45{bottom:220.960500px;}
.y10e{bottom:222.762000px;}
.y160{bottom:222.945855px;}
.y244{bottom:225.192000px;}
.ybf{bottom:226.278000px;}
.y220{bottom:229.582500px;}
.y15{bottom:229.863000px;}
.ya6{bottom:230.439307px;}
.y1a2{bottom:233.170500px;}
.y268{bottom:235.771500px;}
.y1fb{bottom:237.406500px;}
.y29d{bottom:238.102500px;}
.y44{bottom:239.790000px;}
.y101{bottom:241.124868px;}
.y10d{bottom:241.590000px;}
.y15f{bottom:244.131241px;}
.y243{bottom:244.425000px;}
.ybe{bottom:245.107500px;}
.y21f{bottom:248.814000px;}
.y165{bottom:250.179000px;}
.y1a1{bottom:252.000000px;}
.ya5{bottom:252.587665px;}
.y29c{bottom:255.363000px;}
.y1fa{bottom:256.236000px;}
.y43{bottom:258.619500px;}
.y10c{bottom:260.419500px;}
.y267{bottom:262.312500px;}
.ybd{bottom:263.937000px;}
.y100{bottom:264.129786px;}
.y15e{bottom:265.217429px;}
.y227{bottom:266.854500px;}
.y21e{bottom:268.047000px;}
.y1a0{bottom:270.829500px;}
.y12f{bottom:272.609325px;}
.y29b{bottom:272.623500px;}
.ya4{bottom:274.632317px;}
.y1f9{bottom:275.065500px;}
.y42{bottom:277.449000px;}
.y266{bottom:279.886500px;}
.ybc{bottom:282.766500px;}
.y15d{bottom:286.402816px;}
.yff{bottom:287.241116px;}
.y19f{bottom:289.659000px;}
.y29a{bottom:289.884000px;}
.y203{bottom:290.476500px;}
.y1cf{bottom:293.499000px;}
.y10b{bottom:293.986500px;}
.y41{bottom:296.278500px;}
.ya3{bottom:296.780675px;}
.y265{bottom:297.460500px;}
.y14{bottom:300.154500px;}
.ybb{bottom:301.596000px;}
.y299{bottom:307.143000px;}
.y15c{bottom:307.489004px;}
.y19e{bottom:308.488500px;}
.y1f8{bottom:308.632500px;}
.yfe{bottom:310.352447px;}
.y1cd{bottom:312.328500px;}
.y264{bottom:315.034500px;}
.y40{bottom:315.108000px;}
.y1ce{bottom:317.752500px;}
.y13{bottom:318.043500px;}
.ya2{bottom:318.827055px;}
.yee{bottom:319.404000px;}
.yba{bottom:320.425500px;}
.y298{bottom:324.403500px;}
.y19d{bottom:327.318000px;}
.y15b{bottom:328.674390px;}
.y1ea{bottom:331.060500px;}
.y1cc{bottom:331.158000px;}
.y263{bottom:332.608500px;}
.yfd{bottom:333.355561px;}
.y3f{bottom:333.937500px;}
.y12{bottom:335.931000px;}
.yb9{bottom:339.255000px;}
.ya1{bottom:340.975413px;}
.y297{bottom:341.664000px;}
.y19c{bottom:346.147500px;}
.y15a{bottom:349.859776px;}
.y1cb{bottom:349.987500px;}
.y3e{bottom:352.765500px;}
.y11{bottom:353.818500px;}
.yfc{bottom:356.466892px;}
.yb8{bottom:358.084500px;}
.y296{bottom:358.924500px;}
.y262{bottom:359.149500px;}
.ya0{bottom:363.123771px;}
.y19b{bottom:364.977000px;}
.y1ca{bottom:368.817000px;}
.y159{bottom:370.945964px;}
.y3d{bottom:376.078500px;}
.y295{bottom:376.185000px;}
.y261{bottom:376.723500px;}
.yb7{bottom:376.914000px;}
.yfb{bottom:379.578222px;}
.y10{bottom:380.673000px;}
.y19a{bottom:381.076500px;}
.y199{bottom:383.806500px;}
.y9f{bottom:385.170151px;}
.y1c9{bottom:387.646500px;}
.y294{bottom:393.445500px;}
.y260{bottom:394.297500px;}
.y6f{bottom:394.702902px;}
.yb6{bottom:395.743500px;}
.y1ee{bottom:396.535620px;}
.y158{bottom:396.983786px;}
.yf{bottom:398.562000px;}
.y198{bottom:399.906000px;}
.yfa{bottom:402.583140px;}
.y197{bottom:402.636000px;}
.ycc{bottom:405.279495px;}
.y6e{bottom:406.258740px;}
.y1c8{bottom:406.476000px;}
.y9e{bottom:407.318509px;}
.y196{bottom:408.060000px;}
.y293{bottom:410.706000px;}
.y25f{bottom:411.871500px;}
.yb5{bottom:414.571500px;}
.ye{bottom:416.449500px;}
.y195{bottom:421.465500px;}
.y1c7{bottom:425.305500px;}
.ycb{bottom:425.407220px;}
.y12e{bottom:425.500500px;}
.y292{bottom:427.966500px;}
.y25e{bottom:429.445500px;}
.y9c{bottom:429.466629px;}
.y9d{bottom:429.466868px;}
.y194{bottom:437.565000px;}
.y157{bottom:437.969093px;}
.y193{bottom:440.295000px;}
.y1c6{bottom:444.135000px;}
.y12d{bottom:444.330000px;}
.yd{bottom:444.798000px;}
.y291{bottom:445.225500px;}
.yca{bottom:445.629634px;}
.y192{bottom:445.719000px;}
.yf9{bottom:446.754600px;}
.yb4{bottom:448.138500px;}
.y3c{bottom:451.228500px;}
.y9b{bottom:451.513009px;}
.y191{bottom:459.124500px;}
.y156{bottom:459.154479px;}
.y290{bottom:462.486000px;}
.y1c5{bottom:462.964500px;}
.y12c{bottom:463.159500px;}
.y25d{bottom:464.952000px;}
.yc9{bottom:465.852048px;}
.yf8{bottom:467.599140px;}
.y92{bottom:470.568000px;}
.yc{bottom:471.652500px;}
.y9a{bottom:473.661367px;}
.y190{bottom:475.224000px;}
.yed{bottom:475.840500px;}
.y18f{bottom:477.954000px;}
.y28f{bottom:479.746500px;}
.y155{bottom:480.339866px;}
.y12b{bottom:481.989000px;}
.y18e{bottom:483.378000px;}
.y25c{bottom:483.781500px;}
.yc8{bottom:485.981351px;}
.y1c4{bottom:486.276000px;}
.y3b{bottom:488.619000px;}
.yb{bottom:489.540000px;}
.yf7{bottom:494.600209px;}
.yec{bottom:494.670000px;}
.y18d{bottom:496.783500px;}
.y28e{bottom:497.007000px;}
.y12a{bottom:500.818500px;}
.y154{bottom:501.426054px;}
.y25b{bottom:502.611000px;}
.ya{bottom:507.429000px;}
.y3a{bottom:508.075500px;}
.yeb{bottom:513.499500px;}
.y28d{bottom:514.267500px;}
.y18b{bottom:515.613000px;}
.y99{bottom:515.992350px;}
.y129{bottom:519.648000px;}
.y1c3{bottom:519.900000px;}
.y18c{bottom:521.037000px;}
.y25a{bottom:521.440500px;}
.y153{bottom:522.611440px;}
.y9{bottom:525.316500px;}
.y39{bottom:527.533500px;}
.y28c{bottom:531.528000px;}
.yea{bottom:532.329000px;}
.y18a{bottom:534.442500px;}
.y98{bottom:535.968368px;}
.y205{bottom:537.956744px;}
.y128{bottom:538.477500px;}
.y1c2{bottom:538.729500px;}
.y259{bottom:540.270000px;}
.y6c{bottom:540.718500px;}
.y8{bottom:543.204000px;}
.yc6{bottom:543.437039px;}
.y152{bottom:543.796826px;}
.y38{bottom:546.990000px;}
.y204{bottom:548.549595px;}
.y28b{bottom:548.788500px;}
.ye9{bottom:551.158500px;}
.y189{bottom:553.272000px;}
.yc5{bottom:553.548398px;}
.y97{bottom:555.840368px;}
.y127{bottom:557.307000px;}
.y1c1{bottom:557.559000px;}
.y258{bottom:559.099500px;}
.y6b{bottom:559.548000px;}
.y7{bottom:561.093000px;}
.y151{bottom:564.883014px;}
.y28a{bottom:566.049000px;}
.y37{bottom:566.446500px;}
.ye8{bottom:569.988000px;}
.y188{bottom:572.101500px;}
.y126{bottom:576.136500px;}
.y1bf{bottom:576.388500px;}
.y257{bottom:577.929000px;}
.y6a{bottom:578.377500px;}
.y6{bottom:578.980500px;}
.y96{bottom:581.611899px;}
.y1c0{bottom:581.814000px;}
.y289{bottom:583.309500px;}
.y36{bottom:585.904500px;}
.y150{bottom:586.068401px;}
.ye7{bottom:588.817500px;}
.y125{bottom:594.964500px;}
.y1be{bottom:595.218000px;}
.y187{bottom:595.413000px;}
.y256{bottom:596.758500px;}
.y5{bottom:596.868000px;}
.y69{bottom:597.207000px;}
.y288{bottom:600.568500px;}
.y35{bottom:605.361000px;}
.ye6{bottom:607.647000px;}
.y14f{bottom:612.106222px;}
.y1bc{bottom:614.047500px;}
.y4{bottom:614.757000px;}
.y186{bottom:615.588000px;}
.y68{bottom:616.036500px;}
.y287{bottom:617.829000px;}
.y124{bottom:618.277500px;}
.y1bd{bottom:619.473000px;}
.y34{bottom:624.817500px;}
.ye5{bottom:626.476500px;}
.y1{bottom:632.644464px;}
.y1bb{bottom:632.877000px;}
.y255{bottom:634.417500px;}
.y67{bottom:634.866000px;}
.y286{bottom:635.089500px;}
.y14e{bottom:638.241589px;}
.y33{bottom:644.275500px;}
.ye4{bottom:645.306000px;}
.y185{bottom:649.212000px;}
.y1b9{bottom:651.706500px;}
.y123{bottom:651.901500px;}
.y285{bottom:652.350000px;}
.y254{bottom:653.247000px;}
.y66{bottom:653.695500px;}
.y1ba{bottom:657.130500px;}
.y1dc{bottom:662.000997px;}
.y32{bottom:663.732000px;}
.ye3{bottom:664.135500px;}
.y183{bottom:668.041500px;}
.y283{bottom:669.610500px;}
.y122{bottom:670.731000px;}
.y1db{bottom:671.823459px;}
.y253{bottom:672.076500px;}
.y65{bottom:672.525000px;}
.y184{bottom:673.465500px;}
.y284{bottom:674.493000px;}
.y14d{bottom:679.226896px;}
.y31{bottom:683.190000px;}
.y182{bottom:686.871000px;}
.y1b8{bottom:687.088500px;}
.y121{bottom:689.560500px;}
.y252{bottom:690.906000px;}
.y64{bottom:691.354500px;}
.y229{bottom:692.322494px;}
.ye2{bottom:694.713000px;}
.y14c{bottom:700.313084px;}
.y1b7{bottom:701.626500px;}
.y30{bottom:702.646500px;}
.y228{bottom:702.915345px;}
.y282{bottom:704.131500px;}
.y181{bottom:705.700500px;}
.y120{bottom:708.390000px;}
.y251{bottom:709.735500px;}
.y63{bottom:710.184000px;}
.ye1{bottom:713.946000px;}
.y281{bottom:721.392000px;}
.y14b{bottom:721.498470px;}
.y14a{bottom:721.500509px;}
.y2f{bottom:722.103000px;}
.y180{bottom:724.530000px;}
.y1b6{bottom:725.266500px;}
.y11f{bottom:727.219500px;}
.y250{bottom:728.565000px;}
.y62{bottom:729.013500px;}
.yc4{bottom:736.374000px;}
.y280{bottom:738.651000px;}
.y2e{bottom:741.561000px;}
.y149{bottom:742.586698px;}
.y17e{bottom:743.359500px;}
.y11e{bottom:746.049000px;}
.y24f{bottom:747.394500px;}
.y61{bottom:747.843000px;}
.y17f{bottom:748.783500px;}
.y1b5{bottom:748.908000px;}
.y27f{bottom:755.911500px;}
.y2d{bottom:761.017500px;}
.y17c{bottom:762.189000px;}
.y148{bottom:763.772084px;}
.y11d{bottom:764.878500px;}
.y24e{bottom:766.224000px;}
.y60{bottom:766.671000px;}
.y17d{bottom:767.613000px;}
.y1b4{bottom:772.548000px;}
.y27e{bottom:773.172000px;}
.y17b{bottom:781.018500px;}
.y11c{bottom:783.708000px;}
.y146{bottom:784.956629px;}
.y147{bottom:784.957470px;}
.y24c{bottom:785.053500px;}
.y5f{bottom:785.500500px;}
.y27d{bottom:790.432500px;}
.y24d{bottom:790.477500px;}
.y1b3{bottom:796.384500px;}
.y2c{bottom:799.603500px;}
.y17a{bottom:799.848000px;}
.y24b{bottom:803.883000px;}
.y5e{bottom:804.330000px;}
.y145{bottom:806.044470px;}
.y144{bottom:806.049747px;}
.y11b{bottom:807.021000px;}
.y27c{bottom:807.693000px;}
.y2b{bottom:815.742000px;}
.y179{bottom:818.677500px;}
.y5d{bottom:823.159500px;}
.y27b{bottom:824.953500px;}
.y11a{bottom:827.194500px;}
.y143{bottom:827.235133px;}
.y1b2{bottom:828.198000px;}
.y2a{bottom:831.882000px;}
.y178{bottom:837.507000px;}
.y5c{bottom:841.989000px;}
.y27a{bottom:842.214000px;}
.y142{bottom:848.321321px;}
.y1ec{bottom:849.361244px;}
.y29{bottom:852.361500px;}
.y177{bottom:856.335000px;}
.y279{bottom:859.474500px;}
.y1eb{bottom:859.954095px;}
.y5b{bottom:860.818500px;}
.y28{bottom:864.160500px;}
.y141{bottom:869.506707px;}
.y176{bottom:875.164500px;}
.y278{bottom:876.735000px;}
.y5a{bottom:879.648000px;}
.y27{bottom:884.640000px;}
.y140{bottom:890.692094px;}
.y175{bottom:893.994000px;}
.y119{bottom:895.747500px;}
.y26{bottom:896.440500px;}
.y59{bottom:898.477500px;}
.y277{bottom:911.254500px;}
.y13f{bottom:911.778282px;}
.y25{bottom:912.580500px;}
.y174{bottom:912.823500px;}
.y58{bottom:917.307000px;}
.y276{bottom:928.515000px;}
.y173{bottom:931.653000px;}
.y13e{bottom:932.963668px;}
.y24{bottom:933.058500px;}
.y118{bottom:933.406500px;}
.y57{bottom:936.136500px;}
.y275{bottom:945.775500px;}
.y2ae{bottom:950.259000px;}
.y172{bottom:950.482500px;}
.y117{bottom:952.236000px;}
.y13d{bottom:954.149054px;}
.y56{bottom:954.966000px;}
.y94{bottom:960.215023px;}
.y274{bottom:963.036000px;}
.y2ad{bottom:967.519500px;}
.y171{bottom:969.312000px;}
.y93{bottom:971.289368px;}
.yf6{bottom:972.932965px;}
.y55{bottom:973.795500px;}
.y13c{bottom:975.236896px;}
.y23{bottom:977.736000px;}
.y273{bottom:980.296500px;}
.y2ac{bottom:984.780000px;}
.y170{bottom:988.141500px;}
.y54{bottom:992.625000px;}
.yf5{bottom:995.936080px;}
.y13b{bottom:996.422282px;}
.y22{bottom:996.565500px;}
.y272{bottom:997.557000px;}
.y2aa{bottom:1002.039000px;}
.y2ab{bottom:1002.040500px;}
.y1a5{bottom:1006.964264px;}
.y16f{bottom:1006.971000px;}
.y53{bottom:1011.454500px;}
.y271{bottom:1014.817500px;}
.y116{bottom:1016.878500px;}
.y1a4{bottom:1017.075623px;}
.y13a{bottom:1017.508470px;}
.y138{bottom:1017.509084px;}
.y1d2{bottom:1018.784639px;}
.yf4{bottom:1019.047410px;}
.y2a9{bottom:1019.299500px;}
.y139{bottom:1021.666470px;}
.y16e{bottom:1025.800500px;}
.y1d1{bottom:1028.895998px;}
.y52{bottom:1030.284000px;}
.y270{bottom:1032.076500px;}
.y21{bottom:1036.485000px;}
.y2a8{bottom:1036.560000px;}
.y137{bottom:1038.694470px;}
.y135{bottom:1038.696410px;}
.yf3{bottom:1042.158740px;}
.y136{bottom:1042.852470px;}
.y16d{bottom:1044.630000px;}
.y51{bottom:1049.113500px;}
.y26f{bottom:1049.337000px;}
.y2a7{bottom:1053.820500px;}
.y16c{bottom:1063.459500px;}
.y20{bottom:1064.728500px;}
.y134{bottom:1064.732579px;}
.yf2{bottom:1065.163658px;}
.y26e{bottom:1066.597500px;}
.y50{bottom:1067.943000px;}
.y2a6{bottom:1071.081000px;}
.y16a{bottom:1082.289000px;}
.y26d{bottom:1083.858000px;}
.y4f{bottom:1086.772500px;}
.y16b{bottom:1087.713000px;}
.y2a5{bottom:1088.341500px;}
.y133{bottom:1090.867945px;}
.y1f{bottom:1092.972000px;}
.y4e{bottom:1105.602000px;}
.yf0{bottom:1130.827302px;}
.y1d{bottom:1136.460000px;}
.yef{bottom:1142.383140px;}
.y131{bottom:1151.059619px;}
.y130{bottom:1161.652470px;}
.y4d{bottom:1168.366500px;}
.h2{height:25.508090px;}
.h2c{height:31.526842px;}
.hb{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h36{height:34.957617px;}
.h33{height:36.622266px;}
.h44{height:37.334628px;}
.h45{height:37.336090px;}
.h5{height:37.993262px;}
.hd{height:38.896243px;}
.h2a{height:41.250077px;}
.h29{height:41.482876px;}
.h34{height:41.484266px;}
.hf{height:43.217759px;}
.hc{height:43.421105px;}
.h8{height:43.815515px;}
.h3b{height:45.165241px;}
.h3a{height:45.427553px;}
.h22{height:46.493631px;}
.h21{height:46.763657px;}
.h32{height:48.468814px;}
.h2f{height:48.707613px;}
.he{height:48.848947px;}
.h2e{height:48.990498px;}
.h37{height:49.002344px;}
.h46{height:49.117939px;}
.h1b{height:50.921596px;}
.h6{height:50.930649px;}
.h3e{height:50.938242px;}
.h1a{height:51.217339px;}
.h3d{height:51.234082px;}
.h26{height:52.436426px;}
.h25{height:52.740967px;}
.h13{height:53.135578px;}
.h12{height:53.444180px;}
.h10{height:54.276245px;}
.h2b{height:54.575123px;}
.h41{height:54.933398px;}
.h40{height:55.252441px;}
.ha{height:55.352206px;}
.h1e{height:55.674914px;}
.h3c{height:56.711243px;}
.h1d{height:57.763916px;}
.h16{height:58.095562px;}
.h23{height:58.379221px;}
.h24{height:58.718276px;}
.h28{height:59.927344px;}
.h15{height:60.275391px;}
.h30{height:61.159184px;}
.h31{height:61.514385px;}
.h18{height:62.952077px;}
.h1c{height:63.939146px;}
.h1f{height:64.310493px;}
.h14{height:66.719109px;}
.h17{height:67.106602px;}
.h9{height:77.792486px;}
.h7{height:96.109904px;}
.h2d{height:132.238425px;}
.h27{height:140.268600px;}
.h19{height:185.789400px;}
.h11{height:336.416400px;}
.h20{height:384.170850px;}
.h42{height:493.199850px;}
.h39{height:615.291030px;}
.h43{height:647.133300px;}
.h3f{height:789.482100px;}
.h35{height:967.678425px;}
.h38{height:977.298525px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:192.612344px;}
.w4{width:353.521800px;}
.wd{width:415.438650px;}
.wb{width:443.042100px;}
.w9{width:501.020100px;}
.wc{width:548.643150px;}
.w6{width:551.809125px;}
.we{width:552.094950px;}
.w5{width:556.274550px;}
.w8{width:577.041300px;}
.wa{width:595.450800px;}
.w7{width:685.378800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-243.309600px;}
.x4a{left:-233.614800px;}
.x2f{left:-226.068150px;}
.x60{left:-216.760500px;}
.xa9{left:-213.849900px;}
.x3e{left:-209.901825px;}
.xa6{left:-207.308880px;}
.xb6{left:-205.423350px;}
.x89{left:-203.784525px;}
.x9a{left:-201.859875px;}
.x1d{left:-8.625600px;}
.x3f{left:-4.554469px;}
.x31{left:-1.162650px;}
.x0{left:0.000000px;}
.x4b{left:1.067892px;}
.x9c{left:3.488625px;}
.xb8{left:9.703650px;}
.x9d{left:24.940125px;}
.x2{left:29.274117px;}
.x61{left:33.411185px;}
.x32{left:35.476350px;}
.x4d{left:39.301200px;}
.x68{left:44.599500px;}
.x1{left:53.574073px;}
.x3{left:60.720389px;}
.x69{left:67.567500px;}
.x6a{left:72.418500px;}
.xcd{left:85.848000px;}
.x49{left:103.555500px;}
.x99{left:148.518000px;}
.xb9{left:153.748650px;}
.xba{left:158.698650px;}
.x8a{left:237.057975px;}
.x8b{left:241.782975px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.xbf{left:253.665000px;}
.xc0{left:259.636500px;}
.x5{left:269.914500px;}
.x7a{left:271.920000px;}
.x7b{left:278.346000px;}
.x8{left:281.479500px;}
.xb2{left:283.198500px;}
.x8c{left:285.347475px;}
.x7d{left:287.905500px;}
.x8d{left:290.072475px;}
.xd2{left:293.094000px;}
.xb3{left:298.143000px;}
.x5d{left:299.697000px;}
.x12{left:301.626000px;}
.x19{left:305.713500px;}
.x21{left:306.810000px;}
.x7{left:308.130000px;}
.xca{left:309.454500px;}
.x22{left:311.257500px;}
.x1a{left:313.185000px;}
.xb{left:314.721000px;}
.xb1{left:315.880500px;}
.xb4{left:316.897500px;}
.x23{left:317.982000px;}
.x3c{left:319.993500px;}
.x5c{left:324.063000px;}
.x3d{left:334.938000px;}
.xc7{left:341.464500px;}
.xc8{left:347.890500px;}
.x30{left:350.941491px;}
.x1c{left:358.787416px;}
.x90{left:367.009500px;}
.xcc{left:372.030000px;}
.x64{left:373.675500px;}
.x65{left:378.625500px;}
.x6d{left:388.093500px;}
.xc9{left:390.708000px;}
.x5e{left:400.881000px;}
.x5f{left:415.825500px;}
.x72{left:417.483000px;}
.x24{left:421.260000px;}
.xb0{left:426.211186px;}
.xcb{left:428.001000px;}
.x25{left:429.478500px;}
.x73{left:432.426000px;}
.x74{left:436.117500px;}
.x37{left:437.862000px;}
.x38{left:441.673500px;}
.x75{left:451.062000px;}
.xaf{left:452.871000px;}
.x39{left:456.616500px;}
.xd6{left:462.552000px;}
.x43{left:464.158500px;}
.x9{left:465.646500px;}
.x62{left:470.596500px;}
.xa{left:473.119500px;}
.x7e{left:477.571500px;}
.x44{left:479.101500px;}
.x54{left:484.503000px;}
.x55{left:488.652000px;}
.xce{left:490.509000px;}
.x15{left:497.518500px;}
.x2c{left:499.582500px;}
.x16{left:504.990000px;}
.x2d{left:514.527000px;}
.xab{left:519.241372px;}
.x36{left:520.641000px;}
.x6c{left:524.047500px;}
.x56{left:526.726500px;}
.x66{left:530.293500px;}
.x57{left:533.152500px;}
.x67{left:535.243500px;}
.x87{left:536.779500px;}
.x63{left:539.797335px;}
.xcf{left:542.583000px;}
.x17{left:543.912000px;}
.xb7{left:546.775746px;}
.xaa{left:548.248510px;}
.x82{left:549.340500px;}
.x18{left:551.383500px;}
.x91{left:552.787500px;}
.xa7{left:556.149000px;}
.x92{left:559.594500px;}
.x35{left:562.810985px;}
.x40{left:564.805627px;}
.xac{left:568.077000px;}
.x8e{left:575.931000px;}
.x6b{left:577.714833px;}
.x20{left:579.868628px;}
.x8f{left:581.902500px;}
.xad{left:583.021500px;}
.x93{left:584.434500px;}
.xae{left:586.831500px;}
.x9b{left:587.873455px;}
.x9e{left:591.727500px;}
.x7f{left:594.157500px;}
.x94{left:597.067500px;}
.x33{left:600.793178px;}
.x34{left:611.039677px;}
.x45{left:613.977000px;}
.xd7{left:618.204000px;}
.x1e{left:619.502220px;}
.x95{left:623.233500px;}
.x80{left:625.015500px;}
.x46{left:628.920000px;}
.x1f{left:630.194220px;}
.x47{left:632.581500px;}
.x7c{left:634.797000px;}
.x81{left:636.861000px;}
.x3a{left:641.595000px;}
.x4f{left:644.649000px;}
.x48{left:647.526000px;}
.x3b{left:649.066500px;}
.x4c{left:651.765145px;}
.xa8{left:653.346000px;}
.x83{left:658.159500px;}
.x2a{left:661.407000px;}
.x6e{left:662.782500px;}
.x84{left:664.966500px;}
.x13{left:666.570000px;}
.x2b{left:668.878500px;}
.xa5{left:670.459500px;}
.x14{left:674.041500px;}
.x50{left:676.399500px;}
.x6f{left:678.900000px;}
.x88{left:682.608000px;}
.x85{left:688.702500px;}
.xbb{left:690.633000px;}
.x4e{left:692.482821px;}
.x41{left:695.037000px;}
.x86{left:700.231500px;}
.x42{left:703.254000px;}
.xc3{left:706.083000px;}
.x96{left:707.962500px;}
.xb5{left:710.838000px;}
.xc4{left:714.390000px;}
.x51{left:717.037500px;}
.x97{left:719.800500px;}
.x10{left:726.418500px;}
.xd3{left:731.215500px;}
.x11{left:733.890000px;}
.x78{left:740.031000px;}
.xd1{left:741.364500px;}
.x70{left:742.480500px;}
.x79{left:746.457000px;}
.x52{left:748.044000px;}
.x71{left:749.287500px;}
.xd0{left:753.534000px;}
.x26{left:757.182000px;}
.x53{left:758.196000px;}
.x58{left:768.054000px;}
.xc6{left:770.299500px;}
.x27{left:772.126500px;}
.xc1{left:773.155500px;}
.x59{left:774.478500px;}
.x28{left:775.836000px;}
.xbd{left:777.078000px;}
.x98{left:778.405500px;}
.x76{left:779.632500px;}
.xc2{left:781.374000px;}
.xa3{left:782.641500px;}
.xc5{left:784.186500px;}
.xbe{left:785.385000px;}
.xbc{left:787.536000px;}
.x77{left:788.863500px;}
.x29{left:790.780500px;}
.x5a{left:795.396000px;}
.xa4{left:797.586000px;}
.x9f{left:800.139000px;}
.x5b{left:801.822000px;}
.xd4{left:810.339000px;}
.xc{left:813.886500px;}
.xa0{left:815.082000px;}
.x2e{left:817.881000px;}
.xa1{left:818.893500px;}
.xd{left:821.359500px;}
.xe{left:825.169500px;}
.xf{left:832.642500px;}
.xa2{left:833.838000px;}
.xd5{left:837.238500px;}
@media print{
.v6{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.128000pt;}
.v7{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:28.997333pt;}
.lsbe{letter-spacing:-1.844640pt;}
.lsd5{letter-spacing:-0.235008pt;}
.ls2e{letter-spacing:-0.224448pt;}
.ls59{letter-spacing:-0.215096pt;}
.lsae{letter-spacing:-0.170474pt;}
.ls33{letter-spacing:-0.166733pt;}
.lsb3{letter-spacing:-0.164595pt;}
.ls5e{letter-spacing:-0.159786pt;}
.lse7{letter-spacing:-0.146960pt;}
.lsb2{letter-spacing:-0.141082pt;}
.lse5{letter-spacing:-0.129325pt;}
.lsbf{letter-spacing:-0.129058pt;}
.ls2d{letter-spacing:-0.109018pt;}
.ls58{letter-spacing:-0.104475pt;}
.lsb7{letter-spacing:-0.099933pt;}
.ls32{letter-spacing:-0.096192pt;}
.ls8a{letter-spacing:-0.095390pt;}
.lsa9{letter-spacing:-0.094054pt;}
.ls5d{letter-spacing:-0.092184pt;}
.ls34{letter-spacing:-0.089779pt;}
.ls5f{letter-spacing:-0.086038pt;}
.ls8c{letter-spacing:-0.076954pt;}
.lsb5{letter-spacing:-0.076419pt;}
.ls2f{letter-spacing:-0.070541pt;}
.ls5a{letter-spacing:-0.067602pt;}
.ls80{letter-spacing:-0.067334pt;}
.lsf4{letter-spacing:-0.064662pt;}
.lsb4{letter-spacing:-0.058784pt;}
.ls8e{letter-spacing:-0.057715pt;}
.lsad{letter-spacing:-0.052906pt;}
.ls37{letter-spacing:-0.051302pt;}
.ls85{letter-spacing:-0.050501pt;}
.ls62{letter-spacing:-0.049165pt;}
.lsd6{letter-spacing:-0.048960pt;}
.lsab{letter-spacing:-0.047027pt;}
.ls82{letter-spacing:-0.044890pt;}
.lsf3{letter-spacing:-0.042240pt;}
.lsb1{letter-spacing:-0.041149pt;}
.ls2b{letter-spacing:-0.040320pt;}
.ls87{letter-spacing:-0.039278pt;}
.ls56{letter-spacing:-0.038640pt;}
.ls38{letter-spacing:-0.038477pt;}
.lsf2{letter-spacing:-0.036960pt;}
.ls63{letter-spacing:-0.036874pt;}
.lsbd{letter-spacing:-0.035280pt;}
.lsaf{letter-spacing:-0.035270pt;}
.ls30{letter-spacing:-0.032064pt;}
.ls5b{letter-spacing:-0.030728pt;}
.lsa8{letter-spacing:-0.029392pt;}
.ls84{letter-spacing:-0.028056pt;}
.ls31{letter-spacing:-0.025651pt;}
.ls5c{letter-spacing:-0.024582pt;}
.lse6{letter-spacing:-0.023514pt;}
.ls86{letter-spacing:-0.022445pt;}
.lsd9{letter-spacing:-0.021804pt;}
.ls2c{letter-spacing:-0.019238pt;}
.ls57{letter-spacing:-0.018437pt;}
.lsac{letter-spacing:-0.017635pt;}
.ls8d{letter-spacing:-0.017280pt;}
.ls8b{letter-spacing:-0.016834pt;}
.lsd8{letter-spacing:-0.016353pt;}
.lse4{letter-spacing:-0.015840pt;}
.ls83{letter-spacing:-0.015120pt;}
.ls36{letter-spacing:-0.012826pt;}
.ls61{letter-spacing:-0.012291pt;}
.lsb0{letter-spacing:-0.011757pt;}
.ls81{letter-spacing:-0.011222pt;}
.ls35{letter-spacing:-0.006413pt;}
.ls60{letter-spacing:-0.006146pt;}
.lsaa{letter-spacing:-0.005878pt;}
.ls8f{letter-spacing:-0.005760pt;}
.ls88{letter-spacing:-0.005611pt;}
.lsd7{letter-spacing:-0.005451pt;}
.lse0{letter-spacing:-0.005280pt;}
.ls89{letter-spacing:-0.005040pt;}
.lsc{letter-spacing:0.000000pt;}
.ls102{letter-spacing:0.000372pt;}
.lsf1{letter-spacing:0.000375pt;}
.ls92{letter-spacing:0.000387pt;}
.lsff{letter-spacing:0.000447pt;}
.ls6{letter-spacing:0.000518pt;}
.ls90{letter-spacing:0.000544pt;}
.lsfd{letter-spacing:0.000711pt;}
.lsf6{letter-spacing:0.000751pt;}
.ls8{letter-spacing:0.001398pt;}
.ls103{letter-spacing:0.002397pt;}
.lsdf{letter-spacing:0.002825pt;}
.lse{letter-spacing:0.003137pt;}
.ls4{letter-spacing:0.003733pt;}
.lsfe{letter-spacing:0.003752pt;}
.lsf8{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.004680pt;}
.lsba{letter-spacing:0.005040pt;}
.lse9{letter-spacing:0.005280pt;}
.ls72{letter-spacing:0.005611pt;}
.lsa0{letter-spacing:0.005878pt;}
.ls55{letter-spacing:0.006146pt;}
.ls28{letter-spacing:0.006413pt;}
.ls4c{letter-spacing:0.007360pt;}
.ls1f{letter-spacing:0.007680pt;}
.lscf{letter-spacing:0.009792pt;}
.ls6e{letter-spacing:0.010080pt;}
.lsdc{letter-spacing:0.010560pt;}
.lsd2{letter-spacing:0.010902pt;}
.ls42{letter-spacing:0.011040pt;}
.ls15{letter-spacing:0.011520pt;}
.ls98{letter-spacing:0.011757pt;}
.ls4d{letter-spacing:0.012291pt;}
.ls20{letter-spacing:0.012826pt;}
.lscd{letter-spacing:0.014688pt;}
.ls70{letter-spacing:0.015120pt;}
.lse1{letter-spacing:0.015840pt;}
.ls40{letter-spacing:0.016560pt;}
.ls68{letter-spacing:0.016834pt;}
.ls13{letter-spacing:0.017280pt;}
.ls9f{letter-spacing:0.017635pt;}
.ls78{letter-spacing:0.019238pt;}
.ls46{letter-spacing:0.022080pt;}
.ls74{letter-spacing:0.022445pt;}
.ls19{letter-spacing:0.023040pt;}
.ls9a{letter-spacing:0.023514pt;}
.ls53{letter-spacing:0.024582pt;}
.ls6d{letter-spacing:0.025200pt;}
.ls26{letter-spacing:0.025651pt;}
.lse8{letter-spacing:0.026400pt;}
.ls41{letter-spacing:0.027600pt;}
.ls14{letter-spacing:0.028800pt;}
.lsce{letter-spacing:0.029376pt;}
.ls9d{letter-spacing:0.029392pt;}
.ls51{letter-spacing:0.030728pt;}
.lsdb{letter-spacing:0.031680pt;}
.ls24{letter-spacing:0.032064pt;}
.ls52{letter-spacing:0.033120pt;}
.ls73{letter-spacing:0.033667pt;}
.ls25{letter-spacing:0.034560pt;}
.lsef{letter-spacing:0.035270pt;}
.ls6c{letter-spacing:0.035280pt;}
.ls4f{letter-spacing:0.036874pt;}
.lsde{letter-spacing:0.036960pt;}
.ls22{letter-spacing:0.038477pt;}
.ls49{letter-spacing:0.038640pt;}
.lscb{letter-spacing:0.039070pt;}
.ls69{letter-spacing:0.039278pt;}
.ls66{letter-spacing:0.040219pt;}
.ls1c{letter-spacing:0.040320pt;}
.ls9e{letter-spacing:0.041149pt;}
.ls96{letter-spacing:0.042134pt;}
.ls4e{letter-spacing:0.043019pt;}
.lsd3{letter-spacing:0.043607pt;}
.ls3e{letter-spacing:0.044050pt;}
.ls45{letter-spacing:0.044160pt;}
.ls21{letter-spacing:0.044890pt;}
.ls11{letter-spacing:0.045965pt;}
.ls18{letter-spacing:0.046080pt;}
.ls9b{letter-spacing:0.047027pt;}
.lse2{letter-spacing:0.047520pt;}
.lsd1{letter-spacing:0.048960pt;}
.ls48{letter-spacing:0.049680pt;}
.ls6a{letter-spacing:0.050501pt;}
.ls79{letter-spacing:0.051302pt;}
.ls1b{letter-spacing:0.051840pt;}
.lsa3{letter-spacing:0.052906pt;}
.ls43{letter-spacing:0.055200pt;}
.ls50{letter-spacing:0.055310pt;}
.ls76{letter-spacing:0.056112pt;}
.ls16{letter-spacing:0.057600pt;}
.ls23{letter-spacing:0.057715pt;}
.lsa5{letter-spacing:0.058784pt;}
.ls71{letter-spacing:0.060480pt;}
.ls4a{letter-spacing:0.060720pt;}
.lsc9{letter-spacing:0.060776pt;}
.ls54{letter-spacing:0.061456pt;}
.ls64{letter-spacing:0.062563pt;}
.ls1d{letter-spacing:0.063360pt;}
.ls27{letter-spacing:0.064128pt;}
.ls9c{letter-spacing:0.064662pt;}
.lsc7{letter-spacing:0.065520pt;}
.ls94{letter-spacing:0.065542pt;}
.ls75{letter-spacing:0.067334pt;}
.ls4b{letter-spacing:0.067602pt;}
.ls3c{letter-spacing:0.068522pt;}
.ls7b{letter-spacing:0.069120pt;}
.ls1e{letter-spacing:0.070541pt;}
.lsd4{letter-spacing:0.070861pt;}
.lsf{letter-spacing:0.071501pt;}
.ls77{letter-spacing:0.072946pt;}
.lsa4{letter-spacing:0.076419pt;}
.ls7c{letter-spacing:0.076954pt;}
.lsa1{letter-spacing:0.082298pt;}
.ls7d{letter-spacing:0.083366pt;}
.ls6b{letter-spacing:0.084168pt;}
.ls99{letter-spacing:0.088176pt;}
.lsc1{letter-spacing:0.095390pt;}
.ls7a{letter-spacing:0.096192pt;}
.lsbc{letter-spacing:0.106613pt;}
.lsc0{letter-spacing:0.112224pt;}
.ls44{letter-spacing:0.126960pt;}
.lsd0{letter-spacing:0.127296pt;}
.lsa7{letter-spacing:0.129325pt;}
.ls6f{letter-spacing:0.131040pt;}
.ls17{letter-spacing:0.132480pt;}
.lsf5{letter-spacing:0.135203pt;}
.lsdd{letter-spacing:0.137280pt;}
.ls47{letter-spacing:0.143520pt;}
.lsbb{letter-spacing:0.146160pt;}
.lsb6{letter-spacing:0.146960pt;}
.ls1a{letter-spacing:0.149760pt;}
.lsea{letter-spacing:0.153120pt;}
.lscc{letter-spacing:0.164963pt;}
.ls67{letter-spacing:0.165346pt;}
.lsa2{letter-spacing:0.170474pt;}
.ls97{letter-spacing:0.173219pt;}
.lsca{letter-spacing:0.173645pt;}
.lsda{letter-spacing:0.177901pt;}
.ls65{letter-spacing:0.178752pt;}
.lsed{letter-spacing:0.179520pt;}
.ls3f{letter-spacing:0.181093pt;}
.ls95{letter-spacing:0.187264pt;}
.lsa6{letter-spacing:0.188109pt;}
.ls12{letter-spacing:0.188966pt;}
.ls3d{letter-spacing:0.195776pt;}
.ls10{letter-spacing:0.204288pt;}
.ls93{letter-spacing:0.637762pt;}
.lsb{letter-spacing:1.133683pt;}
.lsec{letter-spacing:1.235520pt;}
.ls2a{letter-spacing:1.243418pt;}
.ls29{letter-spacing:1.251275pt;}
.lsd{letter-spacing:1.370931pt;}
.ls3a{letter-spacing:1.404476pt;}
.ls0{letter-spacing:1.654338pt;}
.lsc2{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls3b{letter-spacing:2.659255pt;}
.ls3{letter-spacing:2.665203pt;}
.ls91{letter-spacing:3.163733pt;}
.lseb{letter-spacing:3.352800pt;}
.lsf0{letter-spacing:3.967920pt;}
.lsee{letter-spacing:4.673328pt;}
.ls1{letter-spacing:9.298933pt;}
.lsa{letter-spacing:10.626533pt;}
.lsc6{letter-spacing:10.627330pt;}
.ls101{letter-spacing:11.909207pt;}
.lsf7{letter-spacing:11.954133pt;}
.lse3{letter-spacing:11.955635pt;}
.lsf9{letter-spacing:11.959467pt;}
.lsfb{letter-spacing:11.964317pt;}
.ls100{letter-spacing:12.136568pt;}
.lsc4{letter-spacing:12.528078pt;}
.lsc3{letter-spacing:12.533411pt;}
.lsc8{letter-spacing:13.017797pt;}
.ls7f{letter-spacing:13.137168pt;}
.lsc5{letter-spacing:13.281067pt;}
.lsfc{letter-spacing:13.665715pt;}
.lsb9{letter-spacing:13.923096pt;}
.lsfa{letter-spacing:14.888529pt;}
.ls7e{letter-spacing:18.310400pt;}
.lsb8{letter-spacing:18.915657pt;}
.ls7{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.321067pt;}
.ws11{word-spacing:-98.031472pt;}
.ws11c{word-spacing:-58.784000pt;}
.ws170{word-spacing:-56.112000pt;}
.ws1dc{word-spacing:-52.800000pt;}
.ws11d{word-spacing:-14.866474pt;}
.ws11e{word-spacing:-14.696000pt;}
.ws1dd{word-spacing:-14.631338pt;}
.ws46{word-spacing:-14.446080pt;}
.ws83{word-spacing:-13.844160pt;}
.ws13{word-spacing:-13.283467pt;}
.ws1b9{word-spacing:-13.200000pt;}
.ws44{word-spacing:-12.972288pt;}
.ws45{word-spacing:-12.768000pt;}
.ws185{word-spacing:-12.600000pt;}
.ws81{word-spacing:-12.431776pt;}
.ws82{word-spacing:-12.236000pt;}
.ws1a7{word-spacing:-11.955200pt;}
.ws11a{word-spacing:-11.891264pt;}
.ws11b{word-spacing:-11.704000pt;}
.wsbd{word-spacing:-11.350752pt;}
.wsbe{word-spacing:-11.172000pt;}
.ws192{word-spacing:-11.026445pt;}
.ws193{word-spacing:-10.852800pt;}
.ws36{word-spacing:-10.626800pt;}
.ws19{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws62{word-spacing:-3.777139pt;}
.ws1f4{word-spacing:-3.762176pt;}
.ws1f3{word-spacing:-3.732784pt;}
.ws60{word-spacing:-3.713011pt;}
.wsa4{word-spacing:-3.619758pt;}
.wsa2{word-spacing:-3.558302pt;}
.ws1f5{word-spacing:-3.427107pt;}
.ws61{word-spacing:-3.257702pt;}
.wsa3{word-spacing:-3.121965pt;}
.ws132{word-spacing:-3.121430pt;}
.ws110{word-spacing:-3.020429pt;}
.ws65{word-spacing:-3.001190pt;}
.ws10f{word-spacing:-2.956301pt;}
.wsa7{word-spacing:-2.876141pt;}
.ws162{word-spacing:-2.780483pt;}
.ws129{word-spacing:-2.768726pt;}
.ws128{word-spacing:-2.745213pt;}
.ws131{word-spacing:-2.721699pt;}
.ws1f6{word-spacing:-2.709942pt;}
.wsef{word-spacing:-2.642875pt;}
.wsf4{word-spacing:-2.629248pt;}
.ws163{word-spacing:-2.627645pt;}
.wsee{word-spacing:-2.586763pt;}
.ws20e{word-spacing:-2.438861pt;}
.ws135{word-spacing:-2.404266pt;}
.ws136{word-spacing:-2.368995pt;}
.wsd0{word-spacing:-2.300592pt;}
.wsfd{word-spacing:-1.859712pt;}
.ws31{word-spacing:-1.859685pt;}
.ws178{word-spacing:-1.849680pt;}
.ws109{word-spacing:-1.840474pt;}
.wsc5{word-spacing:-1.817190pt;}
.ws108{word-spacing:-1.814822pt;}
.ws30{word-spacing:-1.806551pt;}
.ws47{word-spacing:-1.769370pt;}
.ws207{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.ws1af{word-spacing:-1.692979pt;}
.ws13f{word-spacing:-1.657709pt;}
.ws140{word-spacing:-1.628317pt;}
.wsdb{word-spacing:-1.627248pt;}
.ws14e{word-spacing:-1.622438pt;}
.wse8{word-spacing:-1.610414pt;}
.ws84{word-spacing:-1.594016pt;}
.wse7{word-spacing:-1.587970pt;}
.wsc6{word-spacing:-1.578086pt;}
.ws80{word-spacing:-1.487748pt;}
.ws1d7{word-spacing:-1.357910pt;}
.ws1a5{word-spacing:-1.264604pt;}
.ws1a4{word-spacing:-1.231899pt;}
.ws0{word-spacing:-1.175671pt;}
.wsc2{word-spacing:-1.168945pt;}
.ws101{word-spacing:-1.135066pt;}
.wsfe{word-spacing:-1.128653pt;}
.ws100{word-spacing:-1.115827pt;}
.wsc3{word-spacing:-1.115811pt;}
.ws223{word-spacing:-1.099878pt;}
.ws1e1{word-spacing:-1.062677pt;}
.ws14d{word-spacing:-1.052234pt;}
.ws7{word-spacing:-1.041421pt;}
.ws12c{word-spacing:-1.028720pt;}
.wsc1{word-spacing:-1.009543pt;}
.wse0{word-spacing:-0.993182pt;}
.wsdd{word-spacing:-0.987571pt;}
.wsdf{word-spacing:-0.976349pt;}
.ws208{word-spacing:-0.956410pt;}
.ws1b5{word-spacing:-0.952301pt;}
.ws1b4{word-spacing:-0.934666pt;}
.ws9{word-spacing:-0.929840pt;}
.ws1c3{word-spacing:-0.887040pt;}
.ws176{word-spacing:-0.871920pt;}
.ws175{word-spacing:-0.851760pt;}
.ws177{word-spacing:-0.801360pt;}
.ws206{word-spacing:-0.797008pt;}
.ws7e{word-spacing:-0.743874pt;}
.ws112{word-spacing:-0.690740pt;}
.ws102{word-spacing:-0.634867pt;}
.ws1f2{word-spacing:-0.628989pt;}
.ws116{word-spacing:-0.584473pt;}
.ws25{word-spacing:-0.573850pt;}
.ws153{word-spacing:-0.570205pt;}
.wse1{word-spacing:-0.555509pt;}
.ws1f1{word-spacing:-0.540813pt;}
.ws154{word-spacing:-0.534934pt;}
.ws211{word-spacing:-0.430387pt;}
.ws190{word-spacing:-0.371937pt;}
.ws17d{word-spacing:-0.359117pt;}
.ws17c{word-spacing:-0.353506pt;}
.ws14a{word-spacing:-0.335069pt;}
.ws1c4{word-spacing:-0.329190pt;}
.ws37{word-spacing:-0.318803pt;}
.ws1b2{word-spacing:-0.311555pt;}
.ws1a6{word-spacing:-0.310700pt;}
.ws49{word-spacing:-0.296218pt;}
.ws72{word-spacing:-0.288576pt;}
.ws171{word-spacing:-0.286925pt;}
.ws8b{word-spacing:-0.283875pt;}
.wsb4{word-spacing:-0.276552pt;}
.ws11f{word-spacing:-0.271533pt;}
.ws123{word-spacing:-0.270406pt;}
.ws85{word-spacing:-0.265669pt;}
.ws70{word-spacing:-0.262925pt;}
.wsc9{word-spacing:-0.259190pt;}
.ws1d2{word-spacing:-0.258650pt;}
.wsb2{word-spacing:-0.251970pt;}
.ws197{word-spacing:-0.251785pt;}
.ws52{word-spacing:-0.247680pt;}
.ws145{word-spacing:-0.246893pt;}
.ws172{word-spacing:-0.239104pt;}
.ws94{word-spacing:-0.237360pt;}
.ws71{word-spacing:-0.230861pt;}
.wsb3{word-spacing:-0.221242pt;}
.ws32{word-spacing:-0.212535pt;}
.wsd1{word-spacing:-0.202003pt;}
.ws1de{word-spacing:-0.191283pt;}
.ws1b3{word-spacing:-0.182230pt;}
.ws127{word-spacing:-0.164595pt;}
.ws33{word-spacing:-0.159402pt;}
.ws20d{word-spacing:-0.143462pt;}
.ws4a{word-spacing:-0.137894pt;}
.ws8c{word-spacing:-0.132149pt;}
.ws120{word-spacing:-0.126403pt;}
.wsca{word-spacing:-0.120658pt;}
.ws198{word-spacing:-0.117210pt;}
.ws64{word-spacing:-0.115430pt;}
.wsa6{word-spacing:-0.110621pt;}
.ws2e{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws149{word-spacing:-0.094054pt;}
.ws14{word-spacing:-0.053134pt;}
.ws1f{word-spacing:-0.047821pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws164{word-spacing:-0.035270pt;}
.ws48{word-spacing:-0.004924pt;}
.ws1b{word-spacing:-0.002841pt;}
.ws181{word-spacing:-0.000930pt;}
.ws17{word-spacing:-0.000110pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.001089pt;}
.ws18{word-spacing:0.001318pt;}
.ws15{word-spacing:0.003207pt;}
.wsd3{word-spacing:0.005611pt;}
.ws146{word-spacing:0.005878pt;}
.wsf5{word-spacing:0.006413pt;}
.ws152{word-spacing:0.011757pt;}
.ws98{word-spacing:0.030728pt;}
.ws56{word-spacing:0.032064pt;}
.ws150{word-spacing:0.035270pt;}
.wsd2{word-spacing:0.039278pt;}
.ws142{word-spacing:0.041149pt;}
.wsde{word-spacing:0.044890pt;}
.ws20{word-spacing:0.047821pt;}
.wsff{word-spacing:0.051302pt;}
.ws21f{word-spacing:0.052576pt;}
.ws2c{word-spacing:0.053134pt;}
.ws133{word-spacing:0.064662pt;}
.ws122{word-spacing:0.082298pt;}
.ws1b6{word-spacing:0.094054pt;}
.wse9{word-spacing:0.095390pt;}
.wsbf{word-spacing:0.095642pt;}
.wsa0{word-spacing:0.098330pt;}
.ws144{word-spacing:0.099933pt;}
.ws5e{word-spacing:0.102605pt;}
.ws18a{word-spacing:0.105840pt;}
.ws40{word-spacing:0.106268pt;}
.ws10a{word-spacing:0.109018pt;}
.wsb0{word-spacing:0.110621pt;}
.wsd8{word-spacing:0.110880pt;}
.ws12f{word-spacing:0.111690pt;}
.ws6e{word-spacing:0.115430pt;}
.ws99{word-spacing:0.116766pt;}
.ws57{word-spacing:0.121843pt;}
.ws1b7{word-spacing:0.123446pt;}
.wsfa{word-spacing:0.126720pt;}
.wsa1{word-spacing:0.129058pt;}
.ws1c1{word-spacing:0.132000pt;}
.ws5f{word-spacing:0.134669pt;}
.wsaa{word-spacing:0.138000pt;}
.ws1ae{word-spacing:0.142560pt;}
.ws24{word-spacing:0.143462pt;}
.ws68{word-spacing:0.144000pt;}
.ws130{word-spacing:0.146960pt;}
.ws1ab{word-spacing:0.147840pt;}
.ws93{word-spacing:0.149040pt;}
.wsd7{word-spacing:0.151200pt;}
.ws151{word-spacing:0.152838pt;}
.wsa9{word-spacing:0.154560pt;}
.ws51{word-spacing:0.155520pt;}
.ws1a0{word-spacing:0.156672pt;}
.ws38{word-spacing:0.159402pt;}
.ws67{word-spacing:0.161280pt;}
.ws1ac{word-spacing:0.168960pt;}
.wsf9{word-spacing:0.172800pt;}
.ws1eb{word-spacing:0.179520pt;}
.ws1ad{word-spacing:0.184800pt;}
.wsa8{word-spacing:0.190514pt;}
.ws1bb{word-spacing:0.191283pt;}
.ws1c2{word-spacing:0.195360pt;}
.ws66{word-spacing:0.198797pt;}
.ws2d{word-spacing:0.212535pt;}
.ws1ec{word-spacing:0.221760pt;}
.ws186{word-spacing:0.239104pt;}
.ws1da{word-spacing:0.241014pt;}
.ws166{word-spacing:0.265669pt;}
.ws23{word-spacing:0.286925pt;}
.ws15c{word-spacing:0.299798pt;}
.ws9a{word-spacing:0.313426pt;}
.wsc7{word-spacing:0.318803pt;}
.ws58{word-spacing:0.327053pt;}
.ws2a{word-spacing:0.371937pt;}
.ws134{word-spacing:0.405610pt;}
.wsda{word-spacing:0.420840pt;}
.ws2b{word-spacing:0.425071pt;}
.ws143{word-spacing:0.446758pt;}
.wsd9{word-spacing:0.454507pt;}
.ws165{word-spacing:0.478205pt;}
.wsfc{word-spacing:0.480960pt;}
.ws119{word-spacing:0.505333pt;}
.wsfb{word-spacing:0.519437pt;}
.ws22b{word-spacing:0.526029pt;}
.ws39{word-spacing:0.584473pt;}
.ws182{word-spacing:0.597982pt;}
.ws21e{word-spacing:0.621670pt;}
.ws18f{word-spacing:0.637606pt;}
.ws1e{word-spacing:0.669491pt;}
.ws41{word-spacing:0.690740pt;}
.ws1e0{word-spacing:0.717312pt;}
.wsdc{word-spacing:0.740678pt;}
.ws205{word-spacing:0.743874pt;}
.ws7d{word-spacing:0.797008pt;}
.wsae{word-spacing:0.811219pt;}
.ws15f{word-spacing:0.840611pt;}
.ws6c{word-spacing:0.846490pt;}
.ws16c{word-spacing:0.850142pt;}
.ws21d{word-spacing:0.860774pt;}
.ws8{word-spacing:0.892646pt;}
.ws160{word-spacing:0.899395pt;}
.ws195{word-spacing:0.908595pt;}
.ws169{word-spacing:0.956410pt;}
.ws18b{word-spacing:1.009543pt;}
.ws159{word-spacing:1.069869pt;}
.ws1ce{word-spacing:1.105139pt;}
.ws17f{word-spacing:1.115811pt;}
.ws19b{word-spacing:1.116288pt;}
.ws19a{word-spacing:1.130976pt;}
.wse5{word-spacing:1.139074pt;}
.wsea{word-spacing:1.144080pt;}
.ws158{word-spacing:1.146288pt;}
.ws194{word-spacing:1.147699pt;}
.wse6{word-spacing:1.150296pt;}
.ws1f7{word-spacing:1.181558pt;}
.wseb{word-spacing:1.184400pt;}
.ws19d{word-spacing:1.194624pt;}
.ws9b{word-spacing:1.204538pt;}
.wsad{word-spacing:1.210683pt;}
.ws1ea{word-spacing:1.224960pt;}
.ws9d{word-spacing:1.235266pt;}
.ws1e9{word-spacing:1.235520pt;}
.ws59{word-spacing:1.256909pt;}
.ws6b{word-spacing:1.263322pt;}
.ws9c{word-spacing:1.272139pt;}
.ws5b{word-spacing:1.288973pt;}
.ws106{word-spacing:1.301798pt;}
.ws10b{word-spacing:1.307520pt;}
.ws107{word-spacing:1.314624pt;}
.ws5a{word-spacing:1.327450pt;}
.ws191{word-spacing:1.328347pt;}
.ws218{word-spacing:1.338982pt;}
.ws10c{word-spacing:1.353600pt;}
.ws19c{word-spacing:1.380672pt;}
.wsc4{word-spacing:1.381481pt;}
.wse4{word-spacing:1.430856pt;}
.wsc0{word-spacing:1.434614pt;}
.ws1d0{word-spacing:1.451965pt;}
.ws155{word-spacing:1.487235pt;}
.ws1a9{word-spacing:1.487748pt;}
.ws1fe{word-spacing:1.504870pt;}
.ws12a{word-spacing:1.510749pt;}
.ws3c{word-spacing:1.540882pt;}
.ws9e{word-spacing:1.560982pt;}
.ws3d{word-spacing:1.594016pt;}
.ws5c{word-spacing:1.628851pt;}
.ws1cf{word-spacing:1.634195pt;}
.ws105{word-spacing:1.635264pt;}
.ws118{word-spacing:1.700284pt;}
.ws21a{word-spacing:1.721549pt;}
.ws12b{word-spacing:1.787034pt;}
.wse3{word-spacing:1.789973pt;}
.ws2f{word-spacing:1.806551pt;}
.ws22{word-spacing:1.817190pt;}
.wse2{word-spacing:1.818029pt;}
.ws113{word-spacing:1.859685pt;}
.ws1fd{word-spacing:1.904602pt;}
.ws16b{word-spacing:1.912819pt;}
.ws111{word-spacing:1.965953pt;}
.ws104{word-spacing:2.045683pt;}
.ws1ba{word-spacing:2.056294pt;}
.ws29{word-spacing:2.072221pt;}
.ws103{word-spacing:2.077747pt;}
.ws19e{word-spacing:2.080800pt;}
.ws19f{word-spacing:2.119968pt;}
.ws88{word-spacing:2.125355pt;}
.ws188{word-spacing:2.177280pt;}
.ws1c9{word-spacing:2.216157pt;}
.ws2{word-spacing:2.232481pt;}
.ws1c0{word-spacing:2.233440pt;}
.ws138{word-spacing:2.239670pt;}
.wsb1{word-spacing:2.243144pt;}
.ws1bf{word-spacing:2.259840pt;}
.ws1be{word-spacing:2.302080pt;}
.ws114{word-spacing:2.337890pt;}
.ws6f{word-spacing:2.340672pt;}
.ws22e{word-spacing:2.343219pt;}
.wsb6{word-spacing:2.353765pt;}
.ws137{word-spacing:2.374874pt;}
.ws1a1{word-spacing:2.376584pt;}
.ws1a2{word-spacing:2.387485pt;}
.ws8a{word-spacing:2.391024pt;}
.ws21b{word-spacing:2.391040pt;}
.wscc{word-spacing:2.424038pt;}
.ws117{word-spacing:2.444158pt;}
.ws74{word-spacing:2.456102pt;}
.ws187{word-spacing:2.489760pt;}
.wscd{word-spacing:2.508206pt;}
.ws1d1{word-spacing:2.527712pt;}
.ws1d5{word-spacing:2.545347pt;}
.ws3a{word-spacing:2.550426pt;}
.ws1c{word-spacing:2.550432pt;}
.ws189{word-spacing:2.560320pt;}
.ws1d9{word-spacing:2.574739pt;}
.ws1d8{word-spacing:2.586496pt;}
.wsa5{word-spacing:2.618026pt;}
.wsaf{word-spacing:2.642608pt;}
.wsb7{word-spacing:2.697918pt;}
.wsb5{word-spacing:2.710210pt;}
.ws1df{word-spacing:2.725786pt;}
.ws63{word-spacing:2.731853pt;}
.ws6d{word-spacing:2.757504pt;}
.ws3b{word-spacing:2.762961pt;}
.wsf0{word-spacing:2.770330pt;}
.ws75{word-spacing:2.815219pt;}
.ws167{word-spacing:2.816095pt;}
.ws73{word-spacing:2.828045pt;}
.ws27{word-spacing:2.861926pt;}
.wsf1{word-spacing:2.866522pt;}
.ws17a{word-spacing:3.001992pt;}
.ws21{word-spacing:3.012710pt;}
.ws1a8{word-spacing:3.028630pt;}
.ws92{word-spacing:3.085680pt;}
.ws228{word-spacing:3.091756pt;}
.ws91{word-spacing:3.113280pt;}
.wsed{word-spacing:3.131050pt;}
.ws28{word-spacing:3.188032pt;}
.wsec{word-spacing:3.209606pt;}
.ws50{word-spacing:3.219840pt;}
.ws1cc{word-spacing:3.233120pt;}
.ws179{word-spacing:3.243274pt;}
.ws4f{word-spacing:3.248640pt;}
.ws168{word-spacing:3.294300pt;}
.ws1e7{word-spacing:3.321120pt;}
.ws1e6{word-spacing:3.347520pt;}
.ws17b{word-spacing:3.355498pt;}
.ws1cd{word-spacing:3.356566pt;}
.ws1e8{word-spacing:3.389760pt;}
.ws7f{word-spacing:3.400567pt;}
.ws7b{word-spacing:3.453701pt;}
.ws1bd{word-spacing:3.506835pt;}
.ws15a{word-spacing:3.574067pt;}
.ws10e{word-spacing:3.578342pt;}
.ws1f0{word-spacing:3.579946pt;}
.ws15b{word-spacing:3.591702pt;}
.ws16d{word-spacing:3.613103pt;}
.ws1b0{word-spacing:3.632851pt;}
.ws1d6{word-spacing:3.638730pt;}
.ws10d{word-spacing:3.668122pt;}
.ws1bc{word-spacing:3.719371pt;}
.wsba{word-spacing:3.724234pt;}
.ws95{word-spacing:3.797981pt;}
.ws43{word-spacing:3.825638pt;}
.ws1fa{word-spacing:3.832717pt;}
.ws78{word-spacing:3.886157pt;}
.ws12e{word-spacing:3.909136pt;}
.ws1f8{word-spacing:3.926771pt;}
.ws42{word-spacing:3.931906pt;}
.ws53{word-spacing:3.963110pt;}
.ws12d{word-spacing:4.014947pt;}
.ws1b1{word-spacing:4.020826pt;}
.ws1f9{word-spacing:4.026704pt;}
.ws7c{word-spacing:4.144442pt;}
.wsf{word-spacing:4.240070pt;}
.ws14f{word-spacing:4.244205pt;}
.ws89{word-spacing:4.250709pt;}
.ws1c8{word-spacing:4.255962pt;}
.ws13e{word-spacing:4.291232pt;}
.ws1d3{word-spacing:4.308867pt;}
.ws10{word-spacing:4.314458pt;}
.ws20b{word-spacing:4.351693pt;}
.ws15d{word-spacing:4.355894pt;}
.ws1c7{word-spacing:4.367651pt;}
.ws1ef{word-spacing:4.373530pt;}
.ws157{word-spacing:4.397043pt;}
.ws17e{word-spacing:4.410111pt;}
.ws9f{word-spacing:4.473997pt;}
.wsd4{word-spacing:4.505760pt;}
.ws204{word-spacing:4.516379pt;}
.wsd6{word-spacing:4.525920pt;}
.wsac{word-spacing:4.535453pt;}
.wsd5{word-spacing:4.556160pt;}
.ws125{word-spacing:4.585152pt;}
.ws13d{word-spacing:4.591030pt;}
.ws1c6{word-spacing:4.596909pt;}
.wsab{word-spacing:4.603054pt;}
.ws183{word-spacing:4.622646pt;}
.ws1c5{word-spacing:4.643936pt;}
.ws1a3{word-spacing:4.649601pt;}
.ws156{word-spacing:4.649814pt;}
.ws1ed{word-spacing:4.661571pt;}
.ws5d{word-spacing:4.668518pt;}
.ws13c{word-spacing:4.673328pt;}
.ws184{word-spacing:4.675780pt;}
.ws15e{word-spacing:4.685085pt;}
.ws1ee{word-spacing:4.702720pt;}
.ws18d{word-spacing:4.728914pt;}
.ws6a{word-spacing:4.732646pt;}
.ws1e5{word-spacing:4.746720pt;}
.ws126{word-spacing:4.767382pt;}
.ws1e4{word-spacing:4.794240pt;}
.ws69{word-spacing:4.803187pt;}
.ws209{word-spacing:4.829901pt;}
.ws14b{word-spacing:4.967248pt;}
.ws202{word-spacing:4.973126pt;}
.ws1d4{word-spacing:5.002518pt;}
.ws13b{word-spacing:5.020154pt;}
.ws14c{word-spacing:5.031910pt;}
.ws13a{word-spacing:5.043667pt;}
.ws203{word-spacing:5.049546pt;}
.ws124{word-spacing:5.055424pt;}
.wscf{word-spacing:5.083747pt;}
.ws26{word-spacing:5.116826pt;}
.wsce{word-spacing:5.139859pt;}
.wsf6{word-spacing:5.149440pt;}
.wsf8{word-spacing:5.172480pt;}
.wsf7{word-spacing:5.207040pt;}
.ws34{word-spacing:5.260253pt;}
.ws139{word-spacing:5.355222pt;}
.ws16a{word-spacing:5.632190pt;}
.ws86{word-spacing:5.738458pt;}
.ws147{word-spacing:5.772589pt;}
.wsf3{word-spacing:5.809997pt;}
.ws174{word-spacing:5.834138pt;}
.ws148{word-spacing:5.866643pt;}
.wsf2{word-spacing:5.874125pt;}
.ws173{word-spacing:5.881958pt;}
.ws18c{word-spacing:5.897859pt;}
.ws1cb{word-spacing:6.019482pt;}
.ws196{word-spacing:6.025421pt;}
.ws1ca{word-spacing:6.095901pt;}
.ws20c{word-spacing:6.312346pt;}
.ws1b8{word-spacing:6.322930pt;}
.ws16f{word-spacing:6.376064pt;}
.ws1fc{word-spacing:6.389821pt;}
.ws8f{word-spacing:6.762000pt;}
.ws8e{word-spacing:6.800640pt;}
.ws1db{word-spacing:6.854269pt;}
.ws90{word-spacing:6.855840pt;}
.ws16e{word-spacing:6.907403pt;}
.wsd{word-spacing:6.918010pt;}
.ws3f{word-spacing:7.013670pt;}
.ws4d{word-spacing:7.056000pt;}
.ws1fb{word-spacing:7.089350pt;}
.ws141{word-spacing:7.095229pt;}
.ws4c{word-spacing:7.096320pt;}
.wsb9{word-spacing:7.104314pt;}
.ws3e{word-spacing:7.119938pt;}
.ws4e{word-spacing:7.153920pt;}
.wsb8{word-spacing:7.184206pt;}
.ws20a{word-spacing:7.412224pt;}
.ws77{word-spacing:7.413197pt;}
.ws87{word-spacing:7.491875pt;}
.ws76{word-spacing:7.496563pt;}
.ws18e{word-spacing:7.598143pt;}
.wsbc{word-spacing:7.829494pt;}
.wsbb{word-spacing:7.835640pt;}
.ws7a{word-spacing:8.169907pt;}
.ws79{word-spacing:8.176320pt;}
.ws161{word-spacing:9.176182pt;}
.ws4{word-spacing:9.258719pt;}
.ws199{word-spacing:10.531557pt;}
.ws35{word-spacing:10.581291pt;}
.wsb{word-spacing:10.823338pt;}
.wscb{word-spacing:10.845778pt;}
.ws1ff{word-spacing:11.280650pt;}
.ws1aa{word-spacing:11.357562pt;}
.ws121{word-spacing:11.362243pt;}
.ws96{word-spacing:11.529146pt;}
.ws97{word-spacing:11.615184pt;}
.ws200{word-spacing:11.715651pt;}
.ws201{word-spacing:11.727408pt;}
.ws220{word-spacing:11.859558pt;}
.ws8d{word-spacing:11.878709pt;}
.ws230{word-spacing:11.897148pt;}
.ws22c{word-spacing:11.903369pt;}
.ws213{word-spacing:11.903488pt;}
.ws214{word-spacing:11.907379pt;}
.ws215{word-spacing:11.955200pt;}
.ws229{word-spacing:12.003021pt;}
.ws54{word-spacing:12.030413pt;}
.ws222{word-spacing:12.050842pt;}
.ws55{word-spacing:12.120192pt;}
.ws4b{word-spacing:12.395174pt;}
.ws1e3{word-spacing:12.497760pt;}
.ws1e2{word-spacing:12.513600pt;}
.ws115{word-spacing:13.230333pt;}
.wsc{word-spacing:14.319536pt;}
.ws217{word-spacing:14.537523pt;}
.ws224{word-spacing:14.728806pt;}
.ws225{word-spacing:14.767138pt;}
.ws21c{word-spacing:14.768666pt;}
.ws216{word-spacing:14.771004pt;}
.ws221{word-spacing:14.771840pt;}
.ws22f{word-spacing:14.771985pt;}
.ws210{word-spacing:14.772471pt;}
.ws22a{word-spacing:14.772565pt;}
.ws22d{word-spacing:14.772932pt;}
.ws227{word-spacing:14.774144pt;}
.ws20f{word-spacing:14.776627pt;}
.ws212{word-spacing:14.872269pt;}
.ws226{word-spacing:15.015731pt;}
.wsc8{word-spacing:16.418365pt;}
.ws219{word-spacing:19.176141pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws12{word-spacing:35.593054pt;}
.ws180{word-spacing:694.411298pt;}
._1c{margin-left:-20.742448pt;}
._b{margin-left:-6.168883pt;}
._2{margin-left:-4.797974pt;}
._9{margin-left:-3.830987pt;}
._7{margin-left:-2.921635pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._8{width:3.278817pt;}
._5{width:10.132188pt;}
._3{width:11.531779pt;}
._a{width:13.177232pt;}
._1b{width:14.298419pt;}
._c{width:15.350477pt;}
._e{width:16.312097pt;}
._28{width:17.228826pt;}
._d{width:18.171782pt;}
._11{width:19.459076pt;}
._18{width:20.356997pt;}
._13{width:21.625484pt;}
._14{width:22.648480pt;}
._12{width:24.600980pt;}
._1e{width:25.989187pt;}
._6{width:27.188522pt;}
._15{width:28.964684pt;}
._21{width:32.880983pt;}
._1f{width:33.793139pt;}
._20{width:36.455187pt;}
._29{width:37.884447pt;}
._19{width:39.372195pt;}
._2a{width:78.904320pt;}
._f{width:741.796881pt;}
._23{width:861.587354pt;}
._24{width:885.497754pt;}
._22{width:897.883341pt;}
._26{width:1860.651784pt;}
._1a{width:1937.559960pt;}
._27{width:2006.585258pt;}
._1d{width:2029.824720pt;}
._17{width:2122.089480pt;}
._16{width:2214.354240pt;}
._25{width:2223.746400pt;}
._10{width:2244.999733pt;}
.fs7{font-size:31.880533pt;}
.fs1a{font-size:33.600000pt;}
.fs19{font-size:35.200000pt;}
.fs11{font-size:36.800000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fsd{font-size:38.400000pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs16{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs1c{font-size:43.411200pt;}
.fs12{font-size:44.688000pt;}
.fs17{font-size:46.816000pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.944000pt;}
.fs1e{font-size:48.960000pt;}
.fs1b{font-size:49.829333pt;}
.fs14{font-size:50.400000pt;}
.fsa{font-size:51.072000pt;}
.fs1f{font-size:52.800000pt;}
.fs4{font-size:53.133867pt;}
.fs1d{font-size:54.508800pt;}
.fs10{font-size:55.200000pt;}
.fs15{font-size:55.365867pt;}
.fs13{font-size:56.112000pt;}
.fsc{font-size:57.600000pt;}
.fs18{font-size:58.784000pt;}
.fsf{font-size:61.456000pt;}
.fsb{font-size:64.128000pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:126.004462pt;}
.y70{bottom:-858.849120pt;}
.y8e{bottom:-782.235187pt;}
.y8d{bottom:-761.691782pt;}
.y8c{bottom:-741.244570pt;}
.y8b{bottom:-720.701165pt;}
.y8a{bottom:-700.157760pt;}
.y89{bottom:-679.710547pt;}
.y88{bottom:-659.167142pt;}
.y87{bottom:-638.719930pt;}
.y206{bottom:-630.704360pt;}
.y86{bottom:-618.176525pt;}
.y85{bottom:-597.633120pt;}
.yc7{bottom:-575.428980pt;}
.y84{bottom:-558.465120pt;}
.y83{bottom:-534.462394pt;}
.ye0{bottom:-506.127770pt;}
.y22a{bottom:-493.490360pt;}
.ydf{bottom:-488.152291pt;}
.yde{bottom:-470.260980pt;}
.y21d{bottom:-442.286759pt;}
.y1dd{bottom:-439.796392pt;}
.ydd{bottom:-435.905260pt;}
.y242{bottom:-429.426562pt;}
.y21c{bottom:-423.455305pt;}
.ydc{bottom:-419.692840pt;}
.y241{bottom:-410.681814pt;}
.y21b{bottom:-404.623850pt;}
.ydb{bottom:-398.775157pt;}
.y240{bottom:-391.850360pt;}
.y23e{bottom:-391.843769pt;}
.y23f{bottom:-388.154360pt;}
.y21a{bottom:-385.880572pt;}
.y23d{bottom:-373.012314pt;}
.y219{bottom:-367.049118pt;}
.y1ed{bottom:-353.900360pt;}
.y23c{bottom:-349.867584pt;}
.y218{bottom:-348.305839pt;}
.y82{bottom:-346.589798pt;}
.y217{bottom:-329.474385pt;}
.y81{bottom:-326.046394pt;}
.y23b{bottom:-313.436200pt;}
.y216{bottom:-310.642930pt;}
.y95{bottom:-305.767673pt;}
.y80{bottom:-305.502989pt;}
.y23a{bottom:-294.692922pt;}
.y215{bottom:-291.899652pt;}
.y7f{bottom:-285.055776pt;}
.y239{bottom:-275.861467pt;}
.y214{bottom:-273.068198pt;}
.y7e{bottom:-264.512371pt;}
.yda{bottom:-262.779308pt;}
.y238{bottom:-257.030013pt;}
.y213{bottom:-254.236743pt;}
.yd9{bottom:-244.803829pt;}
.y7d{bottom:-244.063555pt;}
.y237{bottom:-238.286734pt;}
.y212{bottom:-235.493465pt;}
.yb3{bottom:-232.345988pt;}
.yd8{bottom:-226.911115pt;}
.y7c{bottom:-223.520150pt;}
.y236{bottom:-219.455280pt;}
.y211{bottom:-216.662010pt;}
.yb2{bottom:-212.658558pt;}
.yd7{bottom:-208.935636pt;}
.yf1{bottom:-204.516320pt;}
.y7b{bottom:-202.976746pt;}
.y235{bottom:-200.712002pt;}
.y210{bottom:-197.918732pt;}
.yb1{bottom:-193.063313pt;}
.yd6{bottom:-191.042922pt;}
.y7a{bottom:-182.527930pt;}
.y234{bottom:-181.880547pt;}
.y20f{bottom:-179.087278pt;}
.yb0{bottom:-173.375883pt;}
.yd5{bottom:-173.067443pt;}
.y1f7{bottom:-171.649280pt;}
.y1a6{bottom:-163.404780pt;}
.y233{bottom:-163.049093pt;}
.y79{bottom:-161.984525pt;}
.y20e{bottom:-160.255823pt;}
.y1e6{bottom:-155.499642pt;}
.yd4{bottom:-155.091964pt;}
.yaf{bottom:-153.688453pt;}
.y1f6{bottom:-152.906002pt;}
.y1d3{bottom:-152.897780pt;}
.y232{bottom:-144.305814pt;}
.y20d{bottom:-141.512545pt;}
.y77{bottom:-141.441341pt;}
.y78{bottom:-141.441120pt;}
.y1e5{bottom:-138.119511pt;}
.yd3{bottom:-137.200652pt;}
.yae{bottom:-134.093208pt;}
.y1f5{bottom:-134.074547pt;}
.y231{bottom:-125.474360pt;}
.y10a{bottom:-125.314938pt;}
.y20c{bottom:-122.681090pt;}
.y76{bottom:-120.992525pt;}
.y1e4{bottom:-120.657617pt;}
.yd2{bottom:-119.225173pt;}
.y1f4{bottom:-115.331269pt;}
.yad{bottom:-114.405778pt;}
.y109{bottom:-104.771533pt;}
.y1ad{bottom:-104.353354pt;}
.y1ae{bottom:-104.352780pt;}
.y1e3{bottom:-103.277486pt;}
.yd1{bottom:-101.249694pt;}
.y75{bottom:-100.449120pt;}
.y20b{bottom:-99.536360pt;}
.y1f3{bottom:-96.499814pt;}
.yac{bottom:-94.810533pt;}
.y230{bottom:-89.483240pt;}
.y1ac{bottom:-86.460640pt;}
.y1e2{bottom:-85.815592pt;}
.y132{bottom:-85.724027pt;}
.y108{bottom:-84.324320pt;}
.yd0{bottom:-83.356980pt;}
.y1ab{bottom:-82.932780pt;}
.y1f2{bottom:-77.668360pt;}
.y1d7{bottom:-76.709780pt;}
.yab{bottom:-75.123103pt;}
.y22f{bottom:-72.498800pt;}
.y20a{bottom:-63.543920pt;}
.y74{bottom:-61.185600pt;}
.y22e{bottom:-55.602800pt;}
.yaa{bottom:-55.435673pt;}
.y1e1{bottom:-52.441600pt;}
.y1aa{bottom:-52.104360pt;}
.ycf{bottom:-49.001400pt;}
.y209{bottom:-46.472360pt;}
.y107{bottom:-45.060640pt;}
.y73{bottom:-42.657120pt;}
.y1f1{bottom:-41.676800pt;}
.y1d6{bottom:-40.254200pt;}
.y22d{bottom:-38.618360pt;}
.y1e0{bottom:-36.692392pt;}
.y1a9{bottom:-35.808780pt;}
.yce{bottom:-32.788980pt;}
.y208{bottom:-29.576360pt;}
.y106{bottom:-26.532160pt;}
.y1f0{bottom:-24.692360pt;}
.y72{bottom:-24.225120pt;}
.y1d5{bottom:-24.041780pt;}
.y22c{bottom:-21.722360pt;}
.y1df{bottom:-21.025192pt;}
.y1a8{bottom:-19.680780pt;}
.ya9{bottom:-17.899673pt;}
.ycd{bottom:-11.788148pt;}
.y207{bottom:-7.664501pt;}
.y164{bottom:-6.952675pt;}
.y1d4{bottom:-3.126435pt;}
.y1ef{bottom:-2.867295pt;}
.y105{bottom:-2.626237pt;}
.y1de{bottom:-0.625804pt;}
.y71{bottom:-0.321091pt;}
.y0{bottom:0.000000pt;}
.y22b{bottom:0.189429pt;}
.y1a7{bottom:1.234842pt;}
.y3{bottom:3.044747pt;}
.ya8{bottom:5.102939pt;}
.y2{bottom:12.578910pt;}
.y1e{bottom:15.051618pt;}
.y4c{bottom:28.346667pt;}
.y1b1{bottom:81.753333pt;}
.y1d9{bottom:87.640000pt;}
.y24a{bottom:88.229333pt;}
.y1c{bottom:93.018667pt;}
.y226{bottom:93.206667pt;}
.y202{bottom:93.868000pt;}
.y1e9{bottom:95.548000pt;}
.y4b{bottom:95.985333pt;}
.y115{bottom:95.992000pt;}
.y1b0{bottom:98.848000pt;}
.y2a4{bottom:104.249333pt;}
.y1d8{bottom:104.736000pt;}
.y249{bottom:104.966667pt;}
.y1b{bottom:108.920000pt;}
.y225{bottom:109.944000pt;}
.y91{bottom:110.445333pt;}
.y201{bottom:110.605333pt;}
.y1e8{bottom:112.644000pt;}
.y4a{bottom:112.722667pt;}
.y113{bottom:112.729333pt;}
.y1af{bottom:115.944000pt;}
.y114{bottom:117.552000pt;}
.y2a3{bottom:119.592000pt;}
.y248{bottom:121.704000pt;}
.y1a{bottom:124.820000pt;}
.y224{bottom:126.681333pt;}
.y1d0{bottom:127.330667pt;}
.y200{bottom:127.342667pt;}
.y90{bottom:127.541333pt;}
.y49{bottom:129.460000pt;}
.y111{bottom:129.466667pt;}
.y1e7{bottom:129.738667pt;}
.y26c{bottom:131.148000pt;}
.yc3{bottom:134.186667pt;}
.y112{bottom:134.289333pt;}
.y2a2{bottom:134.933333pt;}
.y1a3{bottom:135.881333pt;}
.y169{bottom:139.810667pt;}
.y19{bottom:140.720000pt;}
.y163{bottom:141.767906pt;}
.y223{bottom:143.418667pt;}
.y1ff{bottom:144.080000pt;}
.y8f{bottom:144.637333pt;}
.y48{bottom:146.197333pt;}
.y247{bottom:148.884000pt;}
.y1da{bottom:149.676000pt;}
.y110{bottom:150.189333pt;}
.y2a1{bottom:150.276000pt;}
.yc2{bottom:150.924000pt;}
.y104{bottom:152.797590pt;}
.y26b{bottom:154.740000pt;}
.y168{bottom:156.546667pt;}
.y18{bottom:156.621333pt;}
.y222{bottom:160.156000pt;}
.y162{bottom:160.599361pt;}
.y1fe{bottom:160.817333pt;}
.y47{bottom:162.934667pt;}
.y6d{bottom:164.573333pt;}
.y2a0{bottom:165.618667pt;}
.y246{bottom:165.978667pt;}
.yc1{bottom:167.661333pt;}
.y10f{bottom:168.122667pt;}
.y26a{bottom:170.361333pt;}
.y17{bottom:172.521333pt;}
.y167{bottom:173.284000pt;}
.y103{bottom:173.340995pt;}
.y221{bottom:176.893333pt;}
.y1fd{bottom:177.554667pt;}
.y161{bottom:179.342639pt;}
.y46{bottom:179.672000pt;}
.y29f{bottom:180.961333pt;}
.y245{bottom:183.074667pt;}
.yc0{bottom:184.398667pt;}
.ya7{bottom:185.147510pt;}
.y16{bottom:188.421333pt;}
.y102{bottom:193.789811pt;}
.y269{bottom:193.953333pt;}
.y166{bottom:194.006667pt;}
.y1fc{bottom:194.292000pt;}
.y29e{bottom:196.304000pt;}
.y45{bottom:196.409333pt;}
.y10e{bottom:198.010667pt;}
.y160{bottom:198.174093pt;}
.y244{bottom:200.170667pt;}
.ybf{bottom:201.136000pt;}
.y220{bottom:204.073333pt;}
.y15{bottom:204.322667pt;}
.ya6{bottom:204.834939pt;}
.y1a2{bottom:207.262667pt;}
.y268{bottom:209.574667pt;}
.y1fb{bottom:211.028000pt;}
.y29d{bottom:211.646667pt;}
.y44{bottom:213.146667pt;}
.y101{bottom:214.333216pt;}
.y10d{bottom:214.746667pt;}
.y15f{bottom:217.005548pt;}
.y243{bottom:217.266667pt;}
.ybe{bottom:217.873333pt;}
.y21f{bottom:221.168000pt;}
.y165{bottom:222.381333pt;}
.y1a1{bottom:224.000000pt;}
.ya5{bottom:224.522369pt;}
.y29c{bottom:226.989333pt;}
.y1fa{bottom:227.765333pt;}
.y43{bottom:229.884000pt;}
.y10c{bottom:231.484000pt;}
.y267{bottom:233.166667pt;}
.ybd{bottom:234.610667pt;}
.y100{bottom:234.782032pt;}
.y15e{bottom:235.748826pt;}
.y227{bottom:237.204000pt;}
.y21e{bottom:238.264000pt;}
.y1a0{bottom:240.737333pt;}
.y12f{bottom:242.319400pt;}
.y29b{bottom:242.332000pt;}
.ya4{bottom:244.117615pt;}
.y1f9{bottom:244.502667pt;}
.y42{bottom:246.621333pt;}
.y266{bottom:248.788000pt;}
.ybc{bottom:251.348000pt;}
.y15d{bottom:254.580281pt;}
.yff{bottom:255.325437pt;}
.y19f{bottom:257.474667pt;}
.y29a{bottom:257.674667pt;}
.y203{bottom:258.201333pt;}
.y1cf{bottom:260.888000pt;}
.y10b{bottom:261.321333pt;}
.y41{bottom:263.358667pt;}
.ya3{bottom:263.805044pt;}
.y265{bottom:264.409333pt;}
.y14{bottom:266.804000pt;}
.ybb{bottom:268.085333pt;}
.y299{bottom:273.016000pt;}
.y15c{bottom:273.323559pt;}
.y19e{bottom:274.212000pt;}
.y1f8{bottom:274.340000pt;}
.yfe{bottom:275.868842pt;}
.y1cd{bottom:277.625333pt;}
.y264{bottom:280.030667pt;}
.y40{bottom:280.096000pt;}
.y1ce{bottom:282.446667pt;}
.y13{bottom:282.705333pt;}
.ya2{bottom:283.401826pt;}
.yee{bottom:283.914667pt;}
.yba{bottom:284.822667pt;}
.y298{bottom:288.358667pt;}
.y19d{bottom:290.949333pt;}
.y15b{bottom:292.155013pt;}
.y1ea{bottom:294.276000pt;}
.y1cc{bottom:294.362667pt;}
.y263{bottom:295.652000pt;}
.yfd{bottom:296.316054pt;}
.y3f{bottom:296.833333pt;}
.y12{bottom:298.605333pt;}
.yb9{bottom:301.560000pt;}
.ya1{bottom:303.089256pt;}
.y297{bottom:303.701333pt;}
.y19c{bottom:307.686667pt;}
.y15a{bottom:310.986468pt;}
.y1cb{bottom:311.100000pt;}
.y3e{bottom:313.569333pt;}
.y11{bottom:314.505333pt;}
.yfc{bottom:316.859459pt;}
.yb8{bottom:318.297333pt;}
.y296{bottom:319.044000pt;}
.y262{bottom:319.244000pt;}
.ya0{bottom:322.776685pt;}
.y19b{bottom:324.424000pt;}
.y1ca{bottom:327.837333pt;}
.y159{bottom:329.729746pt;}
.y3d{bottom:334.292000pt;}
.y295{bottom:334.386667pt;}
.y261{bottom:334.865333pt;}
.yb7{bottom:335.034667pt;}
.yfb{bottom:337.402864pt;}
.y10{bottom:338.376000pt;}
.y19a{bottom:338.734667pt;}
.y199{bottom:341.161333pt;}
.y9f{bottom:342.373467pt;}
.y1c9{bottom:344.574667pt;}
.y294{bottom:349.729333pt;}
.y260{bottom:350.486667pt;}
.y6f{bottom:350.847024pt;}
.yb6{bottom:351.772000pt;}
.y1ee{bottom:352.476106pt;}
.y158{bottom:352.874477pt;}
.yf{bottom:354.277333pt;}
.y198{bottom:355.472000pt;}
.yfa{bottom:357.851680pt;}
.y197{bottom:357.898667pt;}
.ycc{bottom:360.248440pt;}
.y6e{bottom:361.118880pt;}
.y1c8{bottom:361.312000pt;}
.y9e{bottom:362.060897pt;}
.y196{bottom:362.720000pt;}
.y293{bottom:365.072000pt;}
.y25f{bottom:366.108000pt;}
.yb5{bottom:368.508000pt;}
.ye{bottom:370.177333pt;}
.y195{bottom:374.636000pt;}
.y1c7{bottom:378.049333pt;}
.ycb{bottom:378.139751pt;}
.y12e{bottom:378.222667pt;}
.y292{bottom:380.414667pt;}
.y25e{bottom:381.729333pt;}
.y9c{bottom:381.748115pt;}
.y9d{bottom:381.748327pt;}
.y194{bottom:388.946667pt;}
.y157{bottom:389.305861pt;}
.y193{bottom:391.373333pt;}
.y1c6{bottom:394.786667pt;}
.y12d{bottom:394.960000pt;}
.yd{bottom:395.376000pt;}
.y291{bottom:395.756000pt;}
.yca{bottom:396.115230pt;}
.y192{bottom:396.194667pt;}
.yf9{bottom:397.115200pt;}
.yb4{bottom:398.345333pt;}
.y3c{bottom:401.092000pt;}
.y9b{bottom:401.344897pt;}
.y191{bottom:408.110667pt;}
.y156{bottom:408.137315pt;}
.y290{bottom:411.098667pt;}
.y1c5{bottom:411.524000pt;}
.y12c{bottom:411.697333pt;}
.y25d{bottom:413.290667pt;}
.yc9{bottom:414.090709pt;}
.yf8{bottom:415.643680pt;}
.y92{bottom:418.282667pt;}
.yc{bottom:419.246667pt;}
.y9a{bottom:421.032327pt;}
.y190{bottom:422.421333pt;}
.yed{bottom:422.969333pt;}
.y18f{bottom:424.848000pt;}
.y28f{bottom:426.441333pt;}
.y155{bottom:426.968769pt;}
.y12b{bottom:428.434667pt;}
.y18e{bottom:429.669333pt;}
.y25c{bottom:430.028000pt;}
.yc8{bottom:431.983423pt;}
.y1c4{bottom:432.245333pt;}
.y3b{bottom:434.328000pt;}
.yb{bottom:435.146667pt;}
.yf7{bottom:439.644630pt;}
.yec{bottom:439.706667pt;}
.y18d{bottom:441.585333pt;}
.y28e{bottom:441.784000pt;}
.y12a{bottom:445.172000pt;}
.y154{bottom:445.712048pt;}
.y25b{bottom:446.765333pt;}
.ya{bottom:451.048000pt;}
.y3a{bottom:451.622667pt;}
.yeb{bottom:456.444000pt;}
.y28d{bottom:457.126667pt;}
.y18b{bottom:458.322667pt;}
.y99{bottom:458.659867pt;}
.y129{bottom:461.909333pt;}
.y1c3{bottom:462.133333pt;}
.y18c{bottom:463.144000pt;}
.y25a{bottom:463.502667pt;}
.y153{bottom:464.543502pt;}
.y9{bottom:466.948000pt;}
.y39{bottom:468.918667pt;}
.y28c{bottom:472.469333pt;}
.yea{bottom:473.181333pt;}
.y18a{bottom:475.060000pt;}
.y98{bottom:476.416327pt;}
.y205{bottom:478.183772pt;}
.y128{bottom:478.646667pt;}
.y1c2{bottom:478.870667pt;}
.y259{bottom:480.240000pt;}
.y6c{bottom:480.638667pt;}
.y8{bottom:482.848000pt;}
.yc6{bottom:483.055146pt;}
.y152{bottom:483.374957pt;}
.y38{bottom:486.213333pt;}
.y204{bottom:487.599640pt;}
.y28b{bottom:487.812000pt;}
.ye9{bottom:489.918667pt;}
.y189{bottom:491.797333pt;}
.yc5{bottom:492.043020pt;}
.y97{bottom:494.080327pt;}
.y127{bottom:495.384000pt;}
.y1c1{bottom:495.608000pt;}
.y258{bottom:496.977333pt;}
.y6b{bottom:497.376000pt;}
.y7{bottom:498.749333pt;}
.y151{bottom:502.118235pt;}
.y28a{bottom:503.154667pt;}
.y37{bottom:503.508000pt;}
.ye8{bottom:506.656000pt;}
.y188{bottom:508.534667pt;}
.y126{bottom:512.121333pt;}
.y1bf{bottom:512.345333pt;}
.y257{bottom:513.714667pt;}
.y6a{bottom:514.113333pt;}
.y6{bottom:514.649333pt;}
.y96{bottom:516.988354pt;}
.y1c0{bottom:517.168000pt;}
.y289{bottom:518.497333pt;}
.y36{bottom:520.804000pt;}
.y150{bottom:520.949689pt;}
.ye7{bottom:523.393333pt;}
.y125{bottom:528.857333pt;}
.y1be{bottom:529.082667pt;}
.y187{bottom:529.256000pt;}
.y256{bottom:530.452000pt;}
.y5{bottom:530.549333pt;}
.y69{bottom:530.850667pt;}
.y288{bottom:533.838667pt;}
.y35{bottom:538.098667pt;}
.ye6{bottom:540.130667pt;}
.y14f{bottom:544.094420pt;}
.y1bc{bottom:545.820000pt;}
.y4{bottom:546.450667pt;}
.y186{bottom:547.189333pt;}
.y68{bottom:547.588000pt;}
.y287{bottom:549.181333pt;}
.y124{bottom:549.580000pt;}
.y1bd{bottom:550.642667pt;}
.y34{bottom:555.393333pt;}
.ye5{bottom:556.868000pt;}
.y1{bottom:562.350634pt;}
.y1bb{bottom:562.557333pt;}
.y255{bottom:563.926667pt;}
.y67{bottom:564.325333pt;}
.y286{bottom:564.524000pt;}
.y14e{bottom:567.325857pt;}
.y33{bottom:572.689333pt;}
.ye4{bottom:573.605333pt;}
.y185{bottom:577.077333pt;}
.y1b9{bottom:579.294667pt;}
.y123{bottom:579.468000pt;}
.y285{bottom:579.866667pt;}
.y254{bottom:580.664000pt;}
.y66{bottom:581.062667pt;}
.y1ba{bottom:584.116000pt;}
.y1dc{bottom:588.445330pt;}
.y32{bottom:589.984000pt;}
.ye3{bottom:590.342667pt;}
.y183{bottom:593.814667pt;}
.y283{bottom:595.209333pt;}
.y122{bottom:596.205333pt;}
.y1db{bottom:597.176408pt;}
.y253{bottom:597.401333pt;}
.y65{bottom:597.800000pt;}
.y184{bottom:598.636000pt;}
.y284{bottom:599.549333pt;}
.y14d{bottom:603.757241pt;}
.y31{bottom:607.280000pt;}
.y182{bottom:610.552000pt;}
.y1b8{bottom:610.745333pt;}
.y121{bottom:612.942667pt;}
.y252{bottom:614.138667pt;}
.y64{bottom:614.537333pt;}
.y229{bottom:615.397772pt;}
.ye2{bottom:617.522667pt;}
.y14c{bottom:622.500519pt;}
.y1b7{bottom:623.668000pt;}
.y30{bottom:624.574667pt;}
.y228{bottom:624.813640pt;}
.y282{bottom:625.894667pt;}
.y181{bottom:627.289333pt;}
.y120{bottom:629.680000pt;}
.y251{bottom:630.876000pt;}
.y63{bottom:631.274667pt;}
.ye1{bottom:634.618667pt;}
.y281{bottom:641.237333pt;}
.y14b{bottom:641.331973pt;}
.y14a{bottom:641.333786pt;}
.y2f{bottom:641.869333pt;}
.y180{bottom:644.026667pt;}
.y1b6{bottom:644.681333pt;}
.y11f{bottom:646.417333pt;}
.y250{bottom:647.613333pt;}
.y62{bottom:648.012000pt;}
.yc4{bottom:654.554667pt;}
.y280{bottom:656.578667pt;}
.y2e{bottom:659.165333pt;}
.y149{bottom:660.077065pt;}
.y17e{bottom:660.764000pt;}
.y11e{bottom:663.154667pt;}
.y24f{bottom:664.350667pt;}
.y61{bottom:664.749333pt;}
.y17f{bottom:665.585333pt;}
.y1b5{bottom:665.696000pt;}
.y27f{bottom:671.921333pt;}
.y2d{bottom:676.460000pt;}
.y17c{bottom:677.501333pt;}
.y148{bottom:678.908519pt;}
.y11d{bottom:679.892000pt;}
.y24e{bottom:681.088000pt;}
.y60{bottom:681.485333pt;}
.y17d{bottom:682.322667pt;}
.y1b4{bottom:686.709333pt;}
.y27e{bottom:687.264000pt;}
.y17b{bottom:694.238667pt;}
.y11c{bottom:696.629333pt;}
.y146{bottom:697.739225pt;}
.y147{bottom:697.739973pt;}
.y24c{bottom:697.825333pt;}
.y5f{bottom:698.222667pt;}
.y27d{bottom:702.606667pt;}
.y24d{bottom:702.646667pt;}
.y1b3{bottom:707.897333pt;}
.y2c{bottom:710.758667pt;}
.y17a{bottom:710.976000pt;}
.y24b{bottom:714.562667pt;}
.y5e{bottom:714.960000pt;}
.y145{bottom:716.483973pt;}
.y144{bottom:716.488664pt;}
.y11b{bottom:717.352000pt;}
.y27c{bottom:717.949333pt;}
.y2b{bottom:725.104000pt;}
.y179{bottom:727.713333pt;}
.y5d{bottom:731.697333pt;}
.y27b{bottom:733.292000pt;}
.y11a{bottom:735.284000pt;}
.y143{bottom:735.320118pt;}
.y1b2{bottom:736.176000pt;}
.y2a{bottom:739.450667pt;}
.y178{bottom:744.450667pt;}
.y5c{bottom:748.434667pt;}
.y27a{bottom:748.634667pt;}
.y142{bottom:754.063397pt;}
.y1ec{bottom:754.987772pt;}
.y29{bottom:757.654667pt;}
.y177{bottom:761.186667pt;}
.y279{bottom:763.977333pt;}
.y1eb{bottom:764.403640pt;}
.y5b{bottom:765.172000pt;}
.y28{bottom:768.142667pt;}
.y141{bottom:772.894851pt;}
.y176{bottom:777.924000pt;}
.y278{bottom:779.320000pt;}
.y5a{bottom:781.909333pt;}
.y27{bottom:786.346667pt;}
.y140{bottom:791.726305pt;}
.y175{bottom:794.661333pt;}
.y119{bottom:796.220000pt;}
.y26{bottom:796.836000pt;}
.y59{bottom:798.646667pt;}
.y277{bottom:810.004000pt;}
.y13f{bottom:810.469584pt;}
.y25{bottom:811.182667pt;}
.y174{bottom:811.398667pt;}
.y58{bottom:815.384000pt;}
.y276{bottom:825.346667pt;}
.y173{bottom:828.136000pt;}
.y13e{bottom:829.301038pt;}
.y24{bottom:829.385333pt;}
.y118{bottom:829.694667pt;}
.y57{bottom:832.121333pt;}
.y275{bottom:840.689333pt;}
.y2ae{bottom:844.674667pt;}
.y172{bottom:844.873333pt;}
.y117{bottom:846.432000pt;}
.y13d{bottom:848.132493pt;}
.y56{bottom:848.858667pt;}
.y94{bottom:853.524465pt;}
.y274{bottom:856.032000pt;}
.y2ad{bottom:860.017333pt;}
.y171{bottom:861.610667pt;}
.y93{bottom:863.368327pt;}
.yf6{bottom:864.829302pt;}
.y55{bottom:865.596000pt;}
.y13c{bottom:866.877241pt;}
.y23{bottom:869.098667pt;}
.y273{bottom:871.374667pt;}
.y2ac{bottom:875.360000pt;}
.y170{bottom:878.348000pt;}
.y54{bottom:882.333333pt;}
.yf5{bottom:885.276515pt;}
.y13b{bottom:885.708695pt;}
.y22{bottom:885.836000pt;}
.y272{bottom:886.717333pt;}
.y2aa{bottom:890.701333pt;}
.y2ab{bottom:890.702667pt;}
.y1a5{bottom:895.079346pt;}
.y16f{bottom:895.085333pt;}
.y53{bottom:899.070667pt;}
.y271{bottom:902.060000pt;}
.y116{bottom:903.892000pt;}
.y1a4{bottom:904.067220pt;}
.y13a{bottom:904.451973pt;}
.y138{bottom:904.452519pt;}
.y1d2{bottom:905.586346pt;}
.yf4{bottom:905.819920pt;}
.y2a9{bottom:906.044000pt;}
.y139{bottom:908.147973pt;}
.y16e{bottom:911.822667pt;}
.y1d1{bottom:914.574220pt;}
.y52{bottom:915.808000pt;}
.y270{bottom:917.401333pt;}
.y21{bottom:921.320000pt;}
.y2a8{bottom:921.386667pt;}
.y137{bottom:923.283973pt;}
.y135{bottom:923.285698pt;}
.yf3{bottom:926.363325pt;}
.y136{bottom:926.979973pt;}
.y16d{bottom:928.560000pt;}
.y51{bottom:932.545333pt;}
.y26f{bottom:932.744000pt;}
.y2a7{bottom:936.729333pt;}
.y16c{bottom:945.297333pt;}
.y20{bottom:946.425333pt;}
.y134{bottom:946.428959pt;}
.yf2{bottom:946.812141pt;}
.y26e{bottom:948.086667pt;}
.y50{bottom:949.282667pt;}
.y2a6{bottom:952.072000pt;}
.y16a{bottom:962.034667pt;}
.y26d{bottom:963.429333pt;}
.y4f{bottom:966.020000pt;}
.y16b{bottom:966.856000pt;}
.y2a5{bottom:967.414667pt;}
.y133{bottom:969.660396pt;}
.y1f{bottom:971.530667pt;}
.y4e{bottom:982.757333pt;}
.yf0{bottom:1005.179824pt;}
.y1d{bottom:1010.186667pt;}
.yef{bottom:1015.451680pt;}
.y131{bottom:1023.164105pt;}
.y130{bottom:1032.579973pt;}
.y4d{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.h2c{height:28.023859pt;}
.hb{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h36{height:31.073438pt;}
.h33{height:32.553125pt;}
.h44{height:33.186336pt;}
.h45{height:33.187635pt;}
.h5{height:33.771789pt;}
.hd{height:34.574438pt;}
.h2a{height:36.666735pt;}
.h29{height:36.873667pt;}
.h34{height:36.874903pt;}
.hf{height:38.415786pt;}
.hc{height:38.596538pt;}
.h8{height:38.947124pt;}
.h3b{height:40.146881pt;}
.h3a{height:40.380047pt;}
.h22{height:41.327672pt;}
.h21{height:41.567695pt;}
.h32{height:43.083391pt;}
.h2f{height:43.295656pt;}
.he{height:43.421286pt;}
.h2e{height:43.547109pt;}
.h37{height:43.557639pt;}
.h46{height:43.660390pt;}
.h1b{height:45.263641pt;}
.h6{height:45.271688pt;}
.h3e{height:45.278437pt;}
.h1a{height:45.526523pt;}
.h3d{height:45.541406pt;}
.h26{height:46.610156pt;}
.h25{height:46.880859pt;}
.h13{height:47.231625pt;}
.h12{height:47.505937pt;}
.h10{height:48.245551pt;}
.h2b{height:48.511220pt;}
.h41{height:48.829687pt;}
.h40{height:49.113281pt;}
.ha{height:49.201961pt;}
.h1e{height:49.488812pt;}
.h3c{height:50.409994pt;}
.h1d{height:51.345703pt;}
.h16{height:51.640500pt;}
.h23{height:51.892641pt;}
.h24{height:52.194023pt;}
.h28{height:53.268750pt;}
.h15{height:53.578125pt;}
.h30{height:54.363719pt;}
.h31{height:54.679453pt;}
.h18{height:55.957402pt;}
.h1c{height:56.834797pt;}
.h1f{height:57.164883pt;}
.h14{height:59.305875pt;}
.h17{height:59.650312pt;}
.h9{height:69.148877pt;}
.h7{height:85.431026pt;}
.h2d{height:117.545267pt;}
.h27{height:124.683200pt;}
.h19{height:165.146133pt;}
.h11{height:299.036800pt;}
.h20{height:341.485200pt;}
.h42{height:438.399867pt;}
.h39{height:546.925360pt;}
.h43{height:575.229600pt;}
.h3f{height:701.761867pt;}
.h35{height:860.158600pt;}
.h38{height:868.709800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:171.210973pt;}
.w4{width:314.241600pt;}
.wd{width:369.278800pt;}
.wb{width:393.815200pt;}
.w9{width:445.351200pt;}
.wc{width:487.682800pt;}
.w6{width:490.497000pt;}
.we{width:490.751067pt;}
.w5{width:494.466267pt;}
.w8{width:512.925600pt;}
.wa{width:529.289600pt;}
.w7{width:609.225600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-216.275200pt;}
.x4a{left:-207.657600pt;}
.x2f{left:-200.949467pt;}
.x60{left:-192.676000pt;}
.xa9{left:-190.088800pt;}
.x3e{left:-186.579400pt;}
.xa6{left:-184.274560pt;}
.xb6{left:-182.598533pt;}
.x89{left:-181.141800pt;}
.x9a{left:-179.431000pt;}
.x1d{left:-7.667200pt;}
.x3f{left:-4.048417pt;}
.x31{left:-1.033467pt;}
.x0{left:0.000000pt;}
.x4b{left:0.949238pt;}
.x9c{left:3.101000pt;}
.xb8{left:8.625467pt;}
.x9d{left:22.169000pt;}
.x2{left:26.021437pt;}
.x61{left:29.698831pt;}
.x32{left:31.534533pt;}
.x4d{left:34.934400pt;}
.x68{left:39.644000pt;}
.x1{left:47.621398pt;}
.x3{left:53.973679pt;}
.x69{left:60.060000pt;}
.x6a{left:64.372000pt;}
.xcd{left:76.309333pt;}
.x49{left:92.049333pt;}
.x99{left:132.016000pt;}
.xb9{left:136.665467pt;}
.xba{left:141.065467pt;}
.x8a{left:210.718200pt;}
.x8b{left:214.918200pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.xbf{left:225.480000pt;}
.xc0{left:230.788000pt;}
.x5{left:239.924000pt;}
.x7a{left:241.706667pt;}
.x7b{left:247.418667pt;}
.x8{left:250.204000pt;}
.xb2{left:251.732000pt;}
.x8c{left:253.642200pt;}
.x7d{left:255.916000pt;}
.x8d{left:257.842200pt;}
.xd2{left:260.528000pt;}
.xb3{left:265.016000pt;}
.x5d{left:266.397333pt;}
.x12{left:268.112000pt;}
.x19{left:271.745333pt;}
.x21{left:272.720000pt;}
.x7{left:273.893333pt;}
.xca{left:275.070667pt;}
.x22{left:276.673333pt;}
.x1a{left:278.386667pt;}
.xb{left:279.752000pt;}
.xb1{left:280.782667pt;}
.xb4{left:281.686667pt;}
.x23{left:282.650667pt;}
.x3c{left:284.438667pt;}
.x5c{left:288.056000pt;}
.x3d{left:297.722667pt;}
.xc7{left:303.524000pt;}
.xc8{left:309.236000pt;}
.x30{left:311.947992pt;}
.x1c{left:318.922148pt;}
.x90{left:326.230667pt;}
.xcc{left:330.693333pt;}
.x64{left:332.156000pt;}
.x65{left:336.556000pt;}
.x6d{left:344.972000pt;}
.xc9{left:347.296000pt;}
.x5e{left:356.338667pt;}
.x5f{left:369.622667pt;}
.x72{left:371.096000pt;}
.x24{left:374.453333pt;}
.xb0{left:378.854387pt;}
.xcb{left:380.445333pt;}
.x25{left:381.758667pt;}
.x73{left:384.378667pt;}
.x74{left:387.660000pt;}
.x37{left:389.210667pt;}
.x38{left:392.598667pt;}
.x75{left:400.944000pt;}
.xaf{left:402.552000pt;}
.x39{left:405.881333pt;}
.xd6{left:411.157333pt;}
.x43{left:412.585333pt;}
.x9{left:413.908000pt;}
.x62{left:418.308000pt;}
.xa{left:420.550667pt;}
.x7e{left:424.508000pt;}
.x44{left:425.868000pt;}
.x54{left:430.669333pt;}
.x55{left:434.357333pt;}
.xce{left:436.008000pt;}
.x15{left:442.238667pt;}
.x2c{left:444.073333pt;}
.x16{left:448.880000pt;}
.x2d{left:457.357333pt;}
.xab{left:461.547887pt;}
.x36{left:462.792000pt;}
.x6c{left:465.820000pt;}
.x56{left:468.201333pt;}
.x66{left:471.372000pt;}
.x57{left:473.913333pt;}
.x67{left:475.772000pt;}
.x87{left:477.137333pt;}
.x63{left:479.819853pt;}
.xcf{left:482.296000pt;}
.x17{left:483.477333pt;}
.xb7{left:486.022885pt;}
.xaa{left:487.332009pt;}
.x82{left:488.302667pt;}
.x18{left:490.118667pt;}
.x91{left:491.366667pt;}
.xa7{left:494.354667pt;}
.x92{left:497.417333pt;}
.x35{left:500.276431pt;}
.x40{left:502.049446pt;}
.xac{left:504.957333pt;}
.x8e{left:511.938667pt;}
.x6b{left:513.524296pt;}
.x20{left:515.438780pt;}
.x8f{left:517.246667pt;}
.xad{left:518.241333pt;}
.x93{left:519.497333pt;}
.xae{left:521.628000pt;}
.x9b{left:522.554182pt;}
.x9e{left:525.980000pt;}
.x7f{left:528.140000pt;}
.x94{left:530.726667pt;}
.x33{left:534.038380pt;}
.x34{left:543.146380pt;}
.x45{left:545.757333pt;}
.xd7{left:549.514667pt;}
.x1e{left:550.668640pt;}
.x95{left:553.985333pt;}
.x80{left:555.569333pt;}
.x46{left:559.040000pt;}
.x1f{left:560.172640pt;}
.x47{left:562.294667pt;}
.x7c{left:564.264000pt;}
.x81{left:566.098667pt;}
.x3a{left:570.306667pt;}
.x4f{left:573.021333pt;}
.x48{left:575.578667pt;}
.x3b{left:576.948000pt;}
.x4c{left:579.346796pt;}
.xa8{left:580.752000pt;}
.x83{left:585.030667pt;}
.x2a{left:587.917333pt;}
.x6e{left:589.140000pt;}
.x84{left:591.081333pt;}
.x13{left:592.506667pt;}
.x2b{left:594.558667pt;}
.xa5{left:595.964000pt;}
.x14{left:599.148000pt;}
.x50{left:601.244000pt;}
.x6f{left:603.466667pt;}
.x88{left:606.762667pt;}
.x85{left:612.180000pt;}
.xbb{left:613.896000pt;}
.x4e{left:615.540285pt;}
.x41{left:617.810667pt;}
.x86{left:622.428000pt;}
.x42{left:625.114667pt;}
.xc3{left:627.629333pt;}
.x96{left:629.300000pt;}
.xb5{left:631.856000pt;}
.xc4{left:635.013333pt;}
.x51{left:637.366667pt;}
.x97{left:639.822667pt;}
.x10{left:645.705333pt;}
.xd3{left:649.969333pt;}
.x11{left:652.346667pt;}
.x78{left:657.805333pt;}
.xd1{left:658.990667pt;}
.x70{left:659.982667pt;}
.x79{left:663.517333pt;}
.x52{left:664.928000pt;}
.x71{left:666.033333pt;}
.xd0{left:669.808000pt;}
.x26{left:673.050667pt;}
.x53{left:673.952000pt;}
.x58{left:682.714667pt;}
.xc6{left:684.710667pt;}
.x27{left:686.334667pt;}
.xc1{left:687.249333pt;}
.x59{left:688.425333pt;}
.x28{left:689.632000pt;}
.xbd{left:690.736000pt;}
.x98{left:691.916000pt;}
.x76{left:693.006667pt;}
.xc2{left:694.554667pt;}
.xa3{left:695.681333pt;}
.xc5{left:697.054667pt;}
.xbe{left:698.120000pt;}
.xbc{left:700.032000pt;}
.x77{left:701.212000pt;}
.x29{left:702.916000pt;}
.x5a{left:707.018667pt;}
.xa4{left:708.965333pt;}
.x9f{left:711.234667pt;}
.x5b{left:712.730667pt;}
.xd4{left:720.301333pt;}
.xc{left:723.454667pt;}
.xa0{left:724.517333pt;}
.x2e{left:727.005333pt;}
.xa1{left:727.905333pt;}
.xd{left:730.097333pt;}
.xe{left:733.484000pt;}
.xf{left:740.126667pt;}
.xa2{left:741.189333pt;}
.xd5{left:744.212000pt;}
}




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