
    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_c996c07b7a6611448f02e0a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb9efb88c4c33106d4479de4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_610e4d8c2f3ca4cfa7c1caca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_31bcdc1bb77091399a9239fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_972c4c813f2d9240758be424.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_bd0353866ca3e8d5da153bc3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718000;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_10bff3208a1c0f225b7eab43.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_6ed15baadb01cbfd5e0e8bff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_80376ab46b8e7cd92d30f502.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_662b92e2cf1c25c1f6a44496.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0a4dfa6b4b0047e0ff3d5a78.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_a0c4825b2bf4ef8313b4acbd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d406932d760fb0f24acbf353.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_27b46452fe97e5e82cebcfda.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978000;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_cace5855b547dc110cb57915.woff2')format("woff");}.fff{font-family:fff;line-height:0.909000;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_1b7560181d383d90a13fe5ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.518000;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_7334772715fcd7a6b622f4ea.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.999000;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_35031c4091bc48e98582e3e3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.914000;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_714e724e6829a8a5709b2dbc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_21a6f74c186b5a32cd4db38a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4acc37c5792a91481d83e23a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.804000;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_7e309dee9afccfb560691d85.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_65dc75511f7ca725a13e21db.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.764000;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.575000;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_80734d228825c147e6dfc544.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ce49c14e97416067c60b6a67.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.575000;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_8d65557249a72d88264acddb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_39ba4533e4498e55a80b9d86.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.239258;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.575000;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_412c894fcc84215e48585a6f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_587e083d01d8c90256fa9a19.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.239258;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.575000;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_c01268d02efcc32241fe046b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_484c356e0b25302f5e214272.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.239258;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.575000;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_e5f8e4019e9c74344330a9da.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_ce49c14e97416067c60b6a67.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_2f88ae3db90d445225abbf28.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.239258;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.575000;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_ca736dbd0e67ca9a0fca73c5.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_ce49c14e97416067c60b6a67.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.575000;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_39ab990e1a653c9309027998.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_2f88ae3db90d445225abbf28.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.239258;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_a30a30d06be7cdd2a9cf226b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.280000;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_1b0dcbbd2009e038498d9d83.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_fa2902a2d5901a5cd1a7656c.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_c25e539ab1f443ed5b136576.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.923000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.220737,-0.117368,0.117368,0.220737,0,0);-ms-transform:matrix(0.220737,-0.117368,0.117368,0.220737,0,0);-webkit-transform:matrix(0.220737,-0.117368,0.117368,0.220737,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);}
.m1{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);}
.v24{vertical-align:-72.290880px;}
.v21{vertical-align:-60.061529px;}
.v25{vertical-align:-55.396234px;}
.v31{vertical-align:-51.316183px;}
.v30{vertical-align:-50.280396px;}
.v1c{vertical-align:-46.679537px;}
.v20{vertical-align:-45.052706px;}
.v23{vertical-align:-21.633715px;}
.v15{vertical-align:-20.562739px;}
.v9{vertical-align:-18.048000px;}
.v1f{vertical-align:-12.017554px;}
.v3{vertical-align:-10.758000px;}
.vc{vertical-align:-7.308000px;}
.vb{vertical-align:-5.976000px;}
.v2e{vertical-align:-4.670578px;}
.v14{vertical-align:-3.453898px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:2.945184px;}
.v28{vertical-align:4.145794px;}
.vd{vertical-align:7.308000px;}
.v16{vertical-align:11.753962px;}
.v17{vertical-align:13.708493px;}
.v8{vertical-align:16.878000px;}
.v12{vertical-align:18.744000px;}
.v1b{vertical-align:21.553392px;}
.v2{vertical-align:26.028000px;}
.v4{vertical-align:29.616000px;}
.v32{vertical-align:30.888000px;}
.v11{vertical-align:32.136000px;}
.v1d{vertical-align:34.740701px;}
.v10{vertical-align:36.048000px;}
.v7{vertical-align:40.314000px;}
.v6{vertical-align:42.894000px;}
.v18{vertical-align:45.088090px;}
.ve{vertical-align:46.920000px;}
.v1a{vertical-align:49.479091px;}
.v1e{vertical-align:58.093589px;}
.va{vertical-align:69.342000px;}
.v26{vertical-align:80.449387px;}
.vf{vertical-align:82.794000px;}
.v22{vertical-align:86.956709px;}
.v1{vertical-align:91.530000px;}
.v29{vertical-align:95.799319px;}
.v27{vertical-align:100.679810px;}
.v5{vertical-align:105.204000px;}
.v2a{vertical-align:109.391225px;}
.v2f{vertical-align:111.437882px;}
.v2c{vertical-align:113.904367px;}
.v2d{vertical-align:118.653662px;}
.v2b{vertical-align:120.096818px;}
.v19{vertical-align:132.774250px;}
.ls0{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000141px;}
.lsf{letter-spacing:0.000163px;}
.ls50{letter-spacing:0.000179px;}
.ls92{letter-spacing:0.000300px;}
.lsd9{letter-spacing:0.000499px;}
.ls38{letter-spacing:0.000760px;}
.ls71{letter-spacing:0.000780px;}
.ls7f{letter-spacing:0.000843px;}
.lsc1{letter-spacing:0.000993px;}
.lsac{letter-spacing:0.001021px;}
.ls25{letter-spacing:0.001114px;}
.ls7b{letter-spacing:0.001133px;}
.lsc8{letter-spacing:0.001165px;}
.ls46{letter-spacing:0.001289px;}
.lscc{letter-spacing:0.001358px;}
.ls89{letter-spacing:0.001405px;}
.ls23{letter-spacing:0.001571px;}
.lscd{letter-spacing:0.001682px;}
.lsa2{letter-spacing:0.001809px;}
.ls64{letter-spacing:0.002012px;}
.ls15{letter-spacing:0.002400px;}
.ls7{letter-spacing:0.002759px;}
.ls12{letter-spacing:0.003056px;}
.ls8b{letter-spacing:0.003239px;}
.ls31{letter-spacing:0.003333px;}
.ls11f{letter-spacing:0.003427px;}
.lsc5{letter-spacing:0.004381px;}
.ls5f{letter-spacing:0.004391px;}
.lsd8{letter-spacing:0.004528px;}
.ls6f{letter-spacing:0.005017px;}
.lsfa{letter-spacing:0.005248px;}
.ls8f{letter-spacing:0.005282px;}
.lsbd{letter-spacing:0.005299px;}
.ls9b{letter-spacing:0.005364px;}
.ls120{letter-spacing:0.005812px;}
.lsd3{letter-spacing:0.006760px;}
.ls101{letter-spacing:0.015774px;}
.lsf3{letter-spacing:0.018742px;}
.ls93{letter-spacing:0.376364px;}
.ls107{letter-spacing:0.451809px;}
.lsdd{letter-spacing:0.457809px;}
.ls52{letter-spacing:0.592737px;}
.ls9e{letter-spacing:0.953282px;}
.ls11d{letter-spacing:1.174564px;}
.lsc2{letter-spacing:1.949053px;}
.ls6{letter-spacing:1.949543px;}
.lsd7{letter-spacing:2.455358px;}
.lsbf{letter-spacing:2.569240px;}
.ls108{letter-spacing:2.573587px;}
.lsb6{letter-spacing:2.575240px;}
.ls10f{letter-spacing:2.579587px;}
.ls79{letter-spacing:2.668393px;}
.ls7a{letter-spacing:2.685581px;}
.ls5c{letter-spacing:2.688179px;}
.ls22{letter-spacing:2.755488px;}
.ls11{letter-spacing:2.984915px;}
.ls24{letter-spacing:2.987236px;}
.ls6b{letter-spacing:2.987282px;}
.ls109{letter-spacing:2.988103px;}
.ls7c{letter-spacing:2.988532px;}
.ls39{letter-spacing:2.989289px;}
.ls8{letter-spacing:2.990915px;}
.ls43{letter-spacing:2.993236px;}
.ls70{letter-spacing:2.993282px;}
.ls47{letter-spacing:2.995289px;}
.ls10{letter-spacing:3.127301px;}
.ls17{letter-spacing:3.195477px;}
.ls4{letter-spacing:3.557845px;}
.lse7{letter-spacing:3.972993px;}
.ls2{letter-spacing:4.150850px;}
.ls11e{letter-spacing:4.186564px;}
.ls37{letter-spacing:4.524445px;}
.ls27{letter-spacing:5.743488px;}
.ls60{letter-spacing:5.972289px;}
.lsb8{letter-spacing:5.978289px;}
.ls30{letter-spacing:6.115301px;}
.ls45{letter-spacing:7.058044px;}
.ls6a{letter-spacing:7.182780px;}
.ls72{letter-spacing:7.188780px;}
.ls41{letter-spacing:7.658523px;}
.ls10a{letter-spacing:7.664523px;}
.lsa0{letter-spacing:8.840759px;}
.ls42{letter-spacing:8.846759px;}
.ls10b{letter-spacing:9.056759px;}
.ls8d{letter-spacing:9.216557px;}
.ls1c{letter-spacing:9.756440px;}
.ls26{letter-spacing:9.762440px;}
.lsc6{letter-spacing:11.101289px;}
.ls4e{letter-spacing:11.953114px;}
.ls4d{letter-spacing:11.959114px;}
.ls66{letter-spacing:11.960012px;}
.ls14{letter-spacing:11.979110px;}
.ls69{letter-spacing:12.285239px;}
.ls88{letter-spacing:12.285414px;}
.ls91{letter-spacing:12.288557px;}
.ls90{letter-spacing:12.289405px;}
.ls97{letter-spacing:12.289559px;}
.ls63{letter-spacing:12.409809px;}
.ls3{letter-spacing:12.553219px;}
.ls19{letter-spacing:13.207473px;}
.ls36{letter-spacing:13.229518px;}
.ls35{letter-spacing:13.232227px;}
.ls1{letter-spacing:14.180004px;}
.ls57{letter-spacing:14.525587px;}
.ls10e{letter-spacing:14.767473px;}
.ls9d{letter-spacing:15.275282px;}
.ls9a{letter-spacing:15.355336px;}
.ls81{letter-spacing:15.356004px;}
.ls86{letter-spacing:15.357414px;}
.ls85{letter-spacing:15.361336px;}
.ls77{letter-spacing:15.361405px;}
.ls98{letter-spacing:15.361559px;}
.ls87{letter-spacing:15.362004px;}
.ls80{letter-spacing:15.363414px;}
.ls2b{letter-spacing:15.605073px;}
.ls55{letter-spacing:15.605831px;}
.ls61{letter-spacing:15.611831px;}
.ls65{letter-spacing:15.934404px;}
.ls5e{letter-spacing:15.935518px;}
.ls20{letter-spacing:15.937473px;}
.ls3c{letter-spacing:15.938227px;}
.ls53{letter-spacing:15.938759px;}
.ls10d{letter-spacing:15.941073px;}
.ls3d{letter-spacing:15.941518px;}
.ls54{letter-spacing:15.943473px;}
.lsc{letter-spacing:17.243073px;}
.lsb{letter-spacing:17.248404px;}
.ls8c{letter-spacing:17.289775px;}
.lse4{letter-spacing:17.303484px;}
.ls4a{letter-spacing:17.643848px;}
.lsec{letter-spacing:17.726679px;}
.lsed{letter-spacing:17.752918px;}
.ls96{letter-spacing:18.347282px;}
.ls7e{letter-spacing:18.348532px;}
.ls2c{letter-spacing:18.596915px;}
.lsf6{letter-spacing:18.757150px;}
.ls6c{letter-spacing:18.828780px;}
.ls82{letter-spacing:18.829002px;}
.ls8e{letter-spacing:18.829133px;}
.ls83{letter-spacing:18.830400px;}
.ls8a{letter-spacing:18.834843px;}
.ls1f{letter-spacing:18.928059px;}
.ls10c{letter-spacing:18.929236px;}
.lsbc{letter-spacing:18.931289px;}
.lsc7{letter-spacing:18.933056px;}
.ls34{letter-spacing:19.919518px;}
.ls116{letter-spacing:19.921473px;}
.lsaa{letter-spacing:19.922809px;}
.lsc4{letter-spacing:19.924800px;}
.lsad{letter-spacing:19.925518px;}
.lsd0{letter-spacing:19.926760px;}
.ls18{letter-spacing:19.927114px;}
.ls115{letter-spacing:19.928759px;}
.ls33{letter-spacing:19.931779px;}
.ls75{letter-spacing:19.942404px;}
.ls74{letter-spacing:19.945288px;}
.lsf0{letter-spacing:20.189700px;}
.lse3{letter-spacing:20.261700px;}
.ls4c{letter-spacing:20.518737px;}
.ls49{letter-spacing:20.633236px;}
.lsf5{letter-spacing:20.705053px;}
.ls13{letter-spacing:20.767114px;}
.lsa{letter-spacing:21.211114px;}
.ls9{letter-spacing:21.212759px;}
.ls11a{letter-spacing:21.426760px;}
.lsa8{letter-spacing:21.495848px;}
.lsa6{letter-spacing:21.496800px;}
.ls76{letter-spacing:21.816532px;}
.ls78{letter-spacing:21.822532px;}
.lsfc{letter-spacing:22.100759px;}
.lse6{letter-spacing:22.105809px;}
.ls2a{letter-spacing:22.327300px;}
.lsde{letter-spacing:22.499587px;}
.ls9c{letter-spacing:22.544004px;}
.lsab{letter-spacing:22.685510px;}
.ls2f{letter-spacing:22.861301px;}
.ls2e{letter-spacing:22.867301px;}
.lse8{letter-spacing:22.871053px;}
.ls51{letter-spacing:22.913236px;}
.lsa9{letter-spacing:22.915289px;}
.ls2d{letter-spacing:22.916915px;}
.lsc9{letter-spacing:22.917056px;}
.lsc0{letter-spacing:22.921289px;}
.ls73{letter-spacing:22.928915px;}
.ls29{letter-spacing:23.329114px;}
.ls4f{letter-spacing:23.468400px;}
.ls1a{letter-spacing:23.630400px;}
.ls112{letter-spacing:23.783518px;}
.ls5b{letter-spacing:23.825724px;}
.ls103{letter-spacing:23.904993px;}
.lsfb{letter-spacing:24.099471px;}
.lsd5{letter-spacing:24.311587px;}
.lsa5{letter-spacing:24.487289px;}
.ls84{letter-spacing:24.491282px;}
.lse5{letter-spacing:24.623484px;}
.lsa1{letter-spacing:24.967289px;}
.ls4b{letter-spacing:25.013236px;}
.lsb9{letter-spacing:25.100759px;}
.ls117{letter-spacing:25.102404px;}
.lsb3{letter-spacing:25.103779px;}
.ls1b{letter-spacing:25.105114px;}
.lsca{letter-spacing:25.105165px;}
.lscb{letter-spacing:25.105200px;}
.ls40{letter-spacing:25.106227px;}
.ls21{letter-spacing:25.106400px;}
.lsb4{letter-spacing:25.109510px;}
.lsb2{letter-spacing:25.109779px;}
.lsd6{letter-spacing:25.110760px;}
.ls6e{letter-spacing:25.147559px;}
.ls5a{letter-spacing:25.301587px;}
.lse2{letter-spacing:25.420082px;}
.ls114{letter-spacing:25.789289px;}
.ls58{letter-spacing:25.841700px;}
.lsa7{letter-spacing:25.954404px;}
.ls100{letter-spacing:25.991053px;}
.ls7d{letter-spacing:26.012400px;}
.ls1e{letter-spacing:26.041301px;}
.ls106{letter-spacing:26.065114px;}
.ls111{letter-spacing:26.369587px;}
.ls32{letter-spacing:26.633236px;}
.lse{letter-spacing:26.881301px;}
.lsdb{letter-spacing:26.966759px;}
.lsda{letter-spacing:26.970760px;}
.ls6d{letter-spacing:27.075775px;}
.lse9{letter-spacing:27.825643px;}
.lsea{letter-spacing:27.852418px;}
.lsc3{letter-spacing:28.093289px;}
.ls1d{letter-spacing:28.096059px;}
.ls110{letter-spacing:28.136759px;}
.ls68{letter-spacing:28.433700px;}
.lsdc{letter-spacing:28.915289px;}
.lsff{letter-spacing:28.961700px;}
.ls105{letter-spacing:29.009053px;}
.ls59{letter-spacing:29.195587px;}
.ls67{letter-spacing:29.249700px;}
.ls104{letter-spacing:29.585053px;}
.lsae{letter-spacing:29.880777px;}
.ls3a{letter-spacing:29.886777px;}
.ls11c{letter-spacing:29.993053px;}
.ls3f{letter-spacing:30.299236px;}
.lsd4{letter-spacing:30.397289px;}
.ls118{letter-spacing:30.587518px;}
.ls113{letter-spacing:30.769289px;}
.lsd2{letter-spacing:30.799289px;}
.lsa4{letter-spacing:30.949289px;}
.ls119{letter-spacing:31.369289px;}
.lsbe{letter-spacing:31.573240px;}
.ls11b{letter-spacing:32.016993px;}
.lsa3{letter-spacing:32.125289px;}
.lsd1{letter-spacing:32.413289px;}
.lscf{letter-spacing:33.136404px;}
.lsfe{letter-spacing:33.175289px;}
.ls16{letter-spacing:33.384440px;}
.ls3e{letter-spacing:33.427301px;}
.lsfd{letter-spacing:33.827053px;}
.ls102{letter-spacing:35.064993px;}
.lsee{letter-spacing:36.094119px;}
.lsf4{letter-spacing:36.830329px;}
.lsf2{letter-spacing:36.910652px;}
.ls99{letter-spacing:37.658346px;}
.lsef{letter-spacing:38.477518px;}
.lsd{letter-spacing:38.531700px;}
.lsf8{letter-spacing:40.336551px;}
.lsf7{letter-spacing:40.362791px;}
.ls5{letter-spacing:43.039002px;}
.lsce{letter-spacing:45.978993px;}
.lsf9{letter-spacing:48.943009px;}
.lseb{letter-spacing:49.941298px;}
.ls95{letter-spacing:53.796557px;}
.ls5d{letter-spacing:59.771518px;}
.lsb7{letter-spacing:59.774759px;}
.lsbb{letter-spacing:59.776800px;}
.lsaf{letter-spacing:62.765236px;}
.lsba{letter-spacing:62.767289px;}
.ls3b{letter-spacing:71.728404px;}
.lsb0{letter-spacing:77.104404px;}
.lsdf{letter-spacing:100.124915px;}
.lse0{letter-spacing:127.811053px;}
.lse1{letter-spacing:172.796915px;}
.lsf1{letter-spacing:202.296121px;}
.ls94{letter-spacing:214.758557px;}
.lsb5{letter-spacing:336.028404px;}
.ls56{letter-spacing:853.021114px;}
.ls62{letter-spacing:1054.622759px;}
.ls48{letter-spacing:1085.437114px;}
.lsb1{letter-spacing:1117.087114px;}
.ls28{letter-spacing:1180.903114px;}
.ls9f{letter-spacing:1895.537282px;}
.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;}
}
.wsbe{word-spacing:-71.731200px;}
.ws76{word-spacing:-57.643192px;}
.wscb{word-spacing:-55.293996px;}
.ws79{word-spacing:-51.789926px;}
.ws7f{word-spacing:-50.809387px;}
.wsee{word-spacing:-50.211840px;}
.ws75{word-spacing:-47.414323px;}
.ws49{word-spacing:-45.664082px;}
.wsc4{word-spacing:-39.961452px;}
.wsb0{word-spacing:-36.071827px;}
.ws1aa{word-spacing:-33.708962px;}
.ws71{word-spacing:-33.684972px;}
.ws72{word-spacing:-33.211407px;}
.wsa3{word-spacing:-30.026012px;}
.ws14f{word-spacing:-29.543765px;}
.wsc6{word-spacing:-27.625478px;}
.wsb1{word-spacing:-26.872301px;}
.ws10f{word-spacing:-25.758672px;}
.ws131{word-spacing:-23.162320px;}
.ws14{word-spacing:-22.762728px;}
.ws92{word-spacing:-21.241553px;}
.wsd0{word-spacing:-20.685485px;}
.ws154{word-spacing:-20.335380px;}
.ws12c{word-spacing:-19.941274px;}
.ws1fa{word-spacing:-19.527480px;}
.ws134{word-spacing:-18.611878px;}
.ws165{word-spacing:-18.608208px;}
.ws1ae{word-spacing:-18.479835px;}
.ws152{word-spacing:-18.236244px;}
.wsaa{word-spacing:-17.932800px;}
.ws167{word-spacing:-16.734000px;}
.ws155{word-spacing:-16.399500px;}
.ws168{word-spacing:-16.375223px;}
.ws1fe{word-spacing:-16.272816px;}
.ws156{word-spacing:-16.047895px;}
.ws195{word-spacing:-14.887454px;}
.ws197{word-spacing:-14.886566px;}
.ws157{word-spacing:-14.431560px;}
.wsac{word-spacing:-14.280741px;}
.ws10b{word-spacing:-14.274741px;}
.wsdf{word-spacing:-13.449600px;}
.wsc2{word-spacing:-13.428043px;}
.ws196{word-spacing:-13.387998px;}
.ws166{word-spacing:-12.653581px;}
.ws153{word-spacing:-12.400646px;}
.ws16b{word-spacing:-11.151660px;}
.ws12a{word-spacing:-10.297534px;}
.wsf4{word-spacing:-10.296741px;}
.ws1af{word-spacing:-10.291534px;}
.wsff{word-spacing:-10.290741px;}
.ws128{word-spacing:-10.279534px;}
.ws144{word-spacing:-10.165534px;}
.ws1b9{word-spacing:-9.559534px;}
.ws159{word-spacing:-8.887534px;}
.ws106{word-spacing:-8.579052px;}
.ws142{word-spacing:-8.569534px;}
.ws18e{word-spacing:-6.181534px;}
.ws1a4{word-spacing:-6.025421px;}
.wsa0{word-spacing:-5.982288px;}
.ws1a5{word-spacing:-5.953690px;}
.ws17e{word-spacing:-5.731534px;}
.ws13c{word-spacing:-5.593534px;}
.ws17c{word-spacing:-5.293534px;}
.ws107{word-spacing:-5.113534px;}
.wsf3{word-spacing:-5.112741px;}
.ws13e{word-spacing:-5.013818px;}
.ws1a8{word-spacing:-4.147534px;}
.ws81{word-spacing:-4.126957px;}
.ws186{word-spacing:-3.631534px;}
.ws1f5{word-spacing:-3.335501px;}
.ws199{word-spacing:-3.156173px;}
.ws74{word-spacing:-3.154957px;}
.ws1b2{word-spacing:-2.443534px;}
.ws198{word-spacing:-2.438861px;}
.ws1cd{word-spacing:-2.179534px;}
.ws1f0{word-spacing:-1.990541px;}
.ws7{word-spacing:-1.882944px;}
.ws160{word-spacing:-1.865011px;}
.ws1b3{word-spacing:-1.837534px;}
.wsc{word-spacing:-1.613952px;}
.ws1c0{word-spacing:-1.585534px;}
.ws189{word-spacing:-1.561534px;}
.ws3f{word-spacing:-1.435037px;}
.ws3e{word-spacing:-1.434624px;}
.ws5f{word-spacing:-1.362893px;}
.ws203{word-spacing:-1.325079px;}
.ws3b{word-spacing:-1.291162px;}
.ws86{word-spacing:-1.219430px;}
.ws8{word-spacing:-1.183565px;}
.ws169{word-spacing:-1.147699px;}
.ws1f1{word-spacing:-1.075968px;}
.ws1f6{word-spacing:-0.860774px;}
.ws163{word-spacing:-0.717312px;}
.ws1c3{word-spacing:-0.652934px;}
.ws13a{word-spacing:-0.645581px;}
.ws5{word-spacing:-0.591782px;}
.ws1a1{word-spacing:-0.430387px;}
.ws52{word-spacing:-0.286925px;}
.ws53{word-spacing:-0.277421px;}
.ws60{word-spacing:-0.215194px;}
.wsd{word-spacing:-0.161395px;}
.ws67{word-spacing:-0.071731px;}
.wsb8{word-spacing:-0.053798px;}
.wsa1{word-spacing:-0.047821px;}
.ws184{word-spacing:-0.037534px;}
.wsb2{word-spacing:-0.035866px;}
.wsbb{word-spacing:-0.010656px;}
.ws129{word-spacing:-0.003878px;}
.wsbd{word-spacing:-0.003216px;}
.ws4{word-spacing:0.000000px;}
.ws19a{word-spacing:0.071731px;}
.ws179{word-spacing:0.178466px;}
.ws1de{word-spacing:0.215194px;}
.ws1ec{word-spacing:0.268992px;}
.ws126{word-spacing:0.358656px;}
.ws1bc{word-spacing:0.370466px;}
.ws10{word-spacing:0.430387px;}
.ws4b{word-spacing:0.502118px;}
.ws112{word-spacing:0.537984px;}
.ws177{word-spacing:0.544466px;}
.ws1ee{word-spacing:0.699379px;}
.ws16e{word-spacing:0.717312px;}
.ws11{word-spacing:0.753178px;}
.ws14d{word-spacing:0.789043px;}
.ws15e{word-spacing:0.808466px;}
.ws3a{word-spacing:0.860774px;}
.ws4f{word-spacing:0.932506px;}
.ws19c{word-spacing:1.004237px;}
.ws15f{word-spacing:1.075968px;}
.ws9{word-spacing:1.129766px;}
.ws59{word-spacing:1.147699px;}
.ws158{word-spacing:1.362893px;}
.ws6{word-spacing:1.398758px;}
.ws1ed{word-spacing:1.506355px;}
.ws4e{word-spacing:1.578086px;}
.ws1e6{word-spacing:1.613952px;}
.ws51{word-spacing:1.649818px;}
.ws1ea{word-spacing:1.775347px;}
.ws1e2{word-spacing:1.829146px;}
.ws1df{word-spacing:1.882944px;}
.ws5e{word-spacing:1.936742px;}
.wsf{word-spacing:1.990541px;}
.ws6b{word-spacing:2.008474px;}
.ws2f{word-spacing:2.080205px;}
.ws69{word-spacing:2.151936px;}
.ws36{word-spacing:2.223667px;}
.ws1cc{word-spacing:2.279510px;}
.ws1cb{word-spacing:2.295398px;}
.ws1b6{word-spacing:2.344466px;}
.ws16c{word-spacing:2.582323px;}
.ws111{word-spacing:2.654054px;}
.ws1e3{word-spacing:2.689920px;}
.ws1ba{word-spacing:2.725786px;}
.ws1b8{word-spacing:2.731296px;}
.ws4c{word-spacing:2.797517px;}
.ws73{word-spacing:2.835475px;}
.ws70{word-spacing:2.868643px;}
.ws6d{word-spacing:2.869248px;}
.ws5d{word-spacing:2.940979px;}
.ws146{word-spacing:2.981693px;}
.ws147{word-spacing:2.988278px;}
.ws148{word-spacing:3.012710px;}
.ws1f2{word-spacing:3.066509px;}
.ws1fd{word-spacing:3.068588px;}
.ws1fc{word-spacing:3.080212px;}
.ws1e{word-spacing:3.084442px;}
.ws200{word-spacing:3.086023px;}
.ws201{word-spacing:3.138329px;}
.ws1d0{word-spacing:3.156173px;}
.ws1f8{word-spacing:3.174106px;}
.ws171{word-spacing:3.227904px;}
.ws4a{word-spacing:3.284669px;}
.ws48{word-spacing:3.299635px;}
.ws161{word-spacing:3.371366px;}
.wsb{word-spacing:3.389299px;}
.ws1eb{word-spacing:3.496896px;}
.ws145{word-spacing:3.514829px;}
.ws114{word-spacing:3.604493px;}
.ws141{word-spacing:3.658291px;}
.ws143{word-spacing:3.715594px;}
.ws140{word-spacing:3.730022px;}
.ws1f9{word-spacing:3.765888px;}
.ws11d{word-spacing:3.801754px;}
.ws1d9{word-spacing:3.819686px;}
.wse6{word-spacing:4.016947px;}
.ws40{word-spacing:4.088678px;}
.ws1c{word-spacing:4.160410px;}
.ws17b{word-spacing:4.171546px;}
.wsa{word-spacing:4.196275px;}
.ws1a9{word-spacing:4.232141px;}
.ws1e0{word-spacing:4.250074px;}
.wse{word-spacing:4.303872px;}
.ws191{word-spacing:4.357670px;}
.ws28{word-spacing:4.447334px;}
.ws1dc{word-spacing:4.465267px;}
.ws173{word-spacing:4.590797px;}
.ws29{word-spacing:4.662528px;}
.ws35{word-spacing:4.734259px;}
.ws18c{word-spacing:4.805990px;}
.ws2a{word-spacing:4.877722px;}
.wsa4{word-spacing:4.916890px;}
.ws1c2{word-spacing:4.922237px;}
.ws1f{word-spacing:4.949453px;}
.ws110{word-spacing:5.021184px;}
.ws14a{word-spacing:5.040365px;}
.ws64{word-spacing:5.092915px;}
.ws182{word-spacing:5.164646px;}
.ws1c4{word-spacing:5.234237px;}
.ws170{word-spacing:5.236378px;}
.ws1d8{word-spacing:5.272243px;}
.ws41{word-spacing:5.308109px;}
.wsd5{word-spacing:5.373475px;}
.wsce{word-spacing:5.377392px;}
.wsd2{word-spacing:5.377488px;}
.ws1e9{word-spacing:5.377642px;}
.wsd7{word-spacing:5.378198px;}
.wsaf{word-spacing:5.379600px;}
.ws12{word-spacing:5.379840px;}
.ws80{word-spacing:5.390890px;}
.ws1e7{word-spacing:5.433638px;}
.ws117{word-spacing:5.451571px;}
.ws9f{word-spacing:5.523302px;}
.ws9e{word-spacing:5.539651px;}
.ws38{word-spacing:5.595034px;}
.wsb5{word-spacing:5.648832px;}
.ws78{word-spacing:5.666765px;}
.ws88{word-spacing:5.674253px;}
.ws89{word-spacing:5.677459px;}
.ws1e4{word-spacing:5.702630px;}
.ws87{word-spacing:5.738496px;}
.ws1e8{word-spacing:5.756429px;}
.wsc9{word-spacing:5.774362px;}
.ws1f3{word-spacing:5.810227px;}
.ws150{word-spacing:5.909593px;}
.ws15c{word-spacing:5.944241px;}
.ws1d4{word-spacing:5.971622px;}
.ws25{word-spacing:6.025421px;}
.ws18d{word-spacing:6.097152px;}
.ws18f{word-spacing:6.108278px;}
.ws192{word-spacing:6.186816px;}
.ws19b{word-spacing:6.240614px;}
.ws149{word-spacing:6.312346px;}
.ws5c{word-spacing:6.455808px;}
.ws17f{word-spacing:6.527539px;}
.ws17d{word-spacing:6.560419px;}
.ws1ff{word-spacing:6.625395px;}
.ws13b{word-spacing:6.671002px;}
.ws13d{word-spacing:6.690278px;}
.ws30{word-spacing:6.742733px;}
.ws16f{word-spacing:6.814464px;}
.wsb7{word-spacing:6.832397px;}
.ws32{word-spacing:6.886195px;}
.ws82{word-spacing:6.957926px;}
.ws190{word-spacing:7.029658px;}
.ws94{word-spacing:7.101389px;}
.ws115{word-spacing:7.155187px;}
.ws90{word-spacing:7.167149px;}
.wsf7{word-spacing:7.167494px;}
.ws7e{word-spacing:7.167734px;}
.ws101{word-spacing:7.167869px;}
.wsfa{word-spacing:7.168704px;}
.ws7d{word-spacing:7.170221px;}
.ws100{word-spacing:7.170298px;}
.ws108{word-spacing:7.170710px;}
.ws91{word-spacing:7.171363px;}
.wsf2{word-spacing:7.171651px;}
.ws10d{word-spacing:7.171670px;}
.ws176{word-spacing:7.172160px;}
.wsfe{word-spacing:7.172669px;}
.ws1d{word-spacing:7.173120px;}
.ws105{word-spacing:7.173984px;}
.ws109{word-spacing:7.174704px;}
.ws123{word-spacing:7.174800px;}
.ws10e{word-spacing:7.176931px;}
.ws1bb{word-spacing:7.177594px;}
.ws22{word-spacing:7.244851px;}
.ws62{word-spacing:7.316582px;}
.ws1d7{word-spacing:7.370381px;}
.ws1d6{word-spacing:7.424179px;}
.ws4d{word-spacing:7.460045px;}
.ws39{word-spacing:7.531776px;}
.ws21{word-spacing:7.603507px;}
.ws11c{word-spacing:7.675238px;}
.ws7b{word-spacing:7.723728px;}
.ws7a{word-spacing:7.730890px;}
.ws7c{word-spacing:7.746970px;}
.wsf0{word-spacing:7.818701px;}
.wsf1{word-spacing:7.890432px;}
.ws122{word-spacing:7.962163px;}
.ws1c6{word-spacing:7.982890px;}
.wsed{word-spacing:8.023651px;}
.wsec{word-spacing:8.033894px;}
.ws120{word-spacing:8.105626px;}
.ws14b{word-spacing:8.123558px;}
.ws1a7{word-spacing:8.177357px;}
.ws1db{word-spacing:8.231155px;}
.ws99{word-spacing:8.249088px;}
.ws15b{word-spacing:8.260466px;}
.wsae{word-spacing:8.320819px;}
.ws1d5{word-spacing:8.338752px;}
.wse5{word-spacing:8.392550px;}
.ws96{word-spacing:8.464282px;}
.wsb6{word-spacing:8.553946px;}
.ws93{word-spacing:8.554109px;}
.ws1e1{word-spacing:8.607744px;}
.ws185{word-spacing:8.653363px;}
.ws187{word-spacing:8.657510px;}
.wsa7{word-spacing:8.679475px;}
.wsb9{word-spacing:8.715341px;}
.ws43{word-spacing:8.770345px;}
.ws63{word-spacing:8.822938px;}
.ws1c7{word-spacing:8.894669px;}
.ws66{word-spacing:8.966400px;}
.ws1e5{word-spacing:8.984333px;}
.ws121{word-spacing:9.025949px;}
.ws24{word-spacing:9.038131px;}
.ws54{word-spacing:9.109862px;}
.ws1ef{word-spacing:9.145728px;}
.ws5a{word-spacing:9.181594px;}
.ws5b{word-spacing:9.209290px;}
.ws31{word-spacing:9.253325px;}
.ws1ad{word-spacing:9.254717px;}
.ws65{word-spacing:9.325056px;}
.ws8f{word-spacing:9.359597px;}
.ws1f7{word-spacing:9.360922px;}
.ws8d{word-spacing:9.362890px;}
.ws8e{word-spacing:9.396787px;}
.ws9c{word-spacing:9.438432px;}
.ws9b{word-spacing:9.451229px;}
.ws9d{word-spacing:9.468518px;}
.ws11a{word-spacing:9.480038px;}
.ws202{word-spacing:9.490539px;}
.ws204{word-spacing:9.531221px;}
.ws77{word-spacing:9.540250px;}
.wsf5{word-spacing:9.683712px;}
.ws2b{word-spacing:9.755443px;}
.ws1b1{word-spacing:9.827174px;}
.ws119{word-spacing:9.898906px;}
.ws42{word-spacing:9.970637px;}
.ws1a0{word-spacing:10.042368px;}
.ws1ce{word-spacing:10.110278px;}
.ws23{word-spacing:10.114099px;}
.ws138{word-spacing:10.135670px;}
.wsba{word-spacing:10.167898px;}
.ws1ac{word-spacing:10.185830px;}
.ws46{word-spacing:10.329293px;}
.ws1d3{word-spacing:10.436890px;}
.ws37{word-spacing:10.472755px;}
.ws1d2{word-spacing:10.490688px;}
.wsb4{word-spacing:10.544486px;}
.ws1c1{word-spacing:10.573267px;}
.ws26{word-spacing:10.616218px;}
.ws33{word-spacing:10.831411px;}
.ws50{word-spacing:10.903142px;}
.ws135{word-spacing:10.974874px;}
.ws104{word-spacing:11.046605px;}
.ws15d{word-spacing:11.053162px;}
.ws1f4{word-spacing:11.082470px;}
.ws15a{word-spacing:11.118336px;}
.ws27{word-spacing:11.190067px;}
.wse8{word-spacing:11.202278px;}
.ws1be{word-spacing:11.261798px;}
.ws181{word-spacing:11.405261px;}
.wse9{word-spacing:11.476992px;}
.wseb{word-spacing:11.548723px;}
.ws174{word-spacing:11.620454px;}
.ws44{word-spacing:11.763917px;}
.ws16d{word-spacing:11.835648px;}
.ws1bf{word-spacing:11.875334px;}
.ws18b{word-spacing:11.889763px;}
.ws188{word-spacing:11.907379px;}
.ws1b0{word-spacing:11.979110px;}
.ws1da{word-spacing:11.997043px;}
.ws56{word-spacing:12.025853px;}
.ws55{word-spacing:12.050842px;}
.ws2c{word-spacing:12.122573px;}
.ws11b{word-spacing:12.194304px;}
.wsca{word-spacing:12.212237px;}
.ws183{word-spacing:12.248400px;}
.ws175{word-spacing:12.266035px;}
.ws98{word-spacing:12.337766px;}
.wse7{word-spacing:12.409498px;}
.ws47{word-spacing:12.481229px;}
.ws6f{word-spacing:12.768154px;}
.ws178{word-spacing:12.809549px;}
.ws13f{word-spacing:12.839885px;}
.ws1a6{word-spacing:12.911616px;}
.ws2e{word-spacing:12.983347px;}
.ws1a{word-spacing:13.126810px;}
.wsc5{word-spacing:13.138929px;}
.ws20{word-spacing:13.198541px;}
.ws1fb{word-spacing:13.250722px;}
.ws6e{word-spacing:13.270272px;}
.wse3{word-spacing:13.448400px;}
.wsc0{word-spacing:13.449600px;}
.ws1c9{word-spacing:13.557197px;}
.ws97{word-spacing:13.628928px;}
.ws162{word-spacing:13.772390px;}
.ws180{word-spacing:13.915853px;}
.ws1b5{word-spacing:13.987584px;}
.ws1c8{word-spacing:14.131046px;}
.ws3c{word-spacing:14.274509px;}
.ws9a{word-spacing:14.417971px;}
.ws57{word-spacing:14.489702px;}
.ws18{word-spacing:14.561434px;}
.ws95{word-spacing:14.776627px;}
.ws136{word-spacing:14.920090px;}
.ws19e{word-spacing:14.991821px;}
.ws19{word-spacing:15.063552px;}
.ws1dd{word-spacing:15.224947px;}
.wsbf{word-spacing:15.278746px;}
.ws1d1{word-spacing:15.350477px;}
.ws84{word-spacing:15.500790px;}
.ws83{word-spacing:15.516918px;}
.wse4{word-spacing:15.565670px;}
.ws58{word-spacing:15.637402px;}
.ws1cf{word-spacing:15.780864px;}
.wsa2{word-spacing:15.852595px;}
.ws10c{word-spacing:15.863787px;}
.ws1b{word-spacing:15.924326px;}
.ws194{word-spacing:16.080199px;}
.ws193{word-spacing:16.081771px;}
.ws124{word-spacing:16.139520px;}
.wsdb{word-spacing:16.200390px;}
.ws3d{word-spacing:16.211251px;}
.ws2d{word-spacing:16.426445px;}
.ws19f{word-spacing:16.498176px;}
.ws113{word-spacing:16.927123px;}
.ws1ca{word-spacing:16.928563px;}
.ws125{word-spacing:17.000294px;}
.ws34{word-spacing:17.287219px;}
.ws6a{word-spacing:17.574144px;}
.ws15{word-spacing:17.660377px;}
.ws45{word-spacing:18.076262px;}
.wscd{word-spacing:18.309181px;}
.wsd8{word-spacing:18.311157px;}
.wsc8{word-spacing:18.773136px;}
.wsd9{word-spacing:18.775642px;}
.wscf{word-spacing:18.775757px;}
.wsad{word-spacing:18.865306px;}
.ws1ab{word-spacing:18.882151px;}
.wsda{word-spacing:19.278390px;}
.ws1{word-spacing:19.294910px;}
.ws16{word-spacing:19.439155px;}
.ws17{word-spacing:19.510886px;}
.ws11e{word-spacing:19.829272px;}
.ws8a{word-spacing:19.833627px;}
.wsa5{word-spacing:19.835272px;}
.wsbc{word-spacing:19.864191px;}
.ws85{word-spacing:19.869542px;}
.ws127{word-spacing:19.870032px;}
.wsc1{word-spacing:20.122022px;}
.ws14e{word-spacing:20.658586px;}
.ws172{word-spacing:21.083787px;}
.ws1c5{word-spacing:21.375898px;}
.ws6c{word-spacing:21.591091px;}
.wsb3{word-spacing:21.779157px;}
.ws0{word-spacing:22.200770px;}
.wsf6{word-spacing:22.413600px;}
.wsa8{word-spacing:22.667059px;}
.wsa6{word-spacing:22.775787px;}
.wsfc{word-spacing:22.860151px;}
.ws10a{word-spacing:22.866151px;}
.wsef{word-spacing:23.183787px;}
.ws1b4{word-spacing:24.549078px;}
.wsf8{word-spacing:25.030848px;}
.ws19d{word-spacing:25.031787px;}
.ws103{word-spacing:25.034189px;}
.ws139{word-spacing:25.321114px;}
.ws12b{word-spacing:25.882241px;}
.ws3{word-spacing:26.083134px;}
.wsea{word-spacing:27.903437px;}
.ws137{word-spacing:28.001787px;}
.ws18a{word-spacing:28.549018px;}
.wsa9{word-spacing:29.562151px;}
.ws68{word-spacing:29.808010px;}
.ws17a{word-spacing:30.342298px;}
.ws1bd{word-spacing:30.789078px;}
.ws1b7{word-spacing:32.494234px;}
.wsdd{word-spacing:37.600714px;}
.ws118{word-spacing:41.962752px;}
.ws130{word-spacing:43.906466px;}
.ws12f{word-spacing:44.480182px;}
.ws2{word-spacing:45.080389px;}
.ws61{word-spacing:51.789926px;}
.ws132{word-spacing:55.448911px;}
.ws1a3{word-spacing:56.186150px;}
.ws16a{word-spacing:56.398536px;}
.ws14c{word-spacing:57.548895px;}
.wsab{word-spacing:62.718151px;}
.ws13{word-spacing:64.605746px;}
.ws12e{word-spacing:76.810466px;}
.ws8b{word-spacing:78.900931px;}
.wsfb{word-spacing:78.906931px;}
.wsc3{word-spacing:92.109600px;}
.wse2{word-spacing:94.148400px;}
.wsc7{word-spacing:94.149600px;}
.ws133{word-spacing:95.632466px;}
.ws12d{word-spacing:126.649526px;}
.ws1a2{word-spacing:127.923600px;}
.wsf9{word-spacing:130.011600px;}
.ws116{word-spacing:147.179268px;}
.ws164{word-spacing:164.469784px;}
.ws151{word-spacing:165.826496px;}
.wse0{word-spacing:172.808400px;}
.wscc{word-spacing:174.843600px;}
.wsd3{word-spacing:174.848400px;}
.wsde{word-spacing:262.730400px;}
.wsd6{word-spacing:355.070400px;}
.wsfd{word-spacing:1001.075259px;}
.ws102{word-spacing:1127.891259px;}
.ws11f{word-spacing:1249.129623px;}
.ws8c{word-spacing:1380.078902px;}
.wse1{word-spacing:1598.863761px;}
.wsdc{word-spacing:1719.255181px;}
.wsd1{word-spacing:2012.040490px;}
.wsd4{word-spacing:2359.240445px;}
._15{margin-left:-44.584925px;}
._13{margin-left:-43.233187px;}
._17{margin-left:-34.807565px;}
._21{margin-left:-33.791672px;}
._51{margin-left:-32.215185px;}
._58{margin-left:-30.331328px;}
._1f{margin-left:-28.840002px;}
._20{margin-left:-26.924534px;}
._1e{margin-left:-25.608038px;}
._1c{margin-left:-10.424573px;}
._44{margin-left:-9.369002px;}
._a{margin-left:-7.962163px;}
._4{margin-left:-6.857875px;}
._43{margin-left:-5.820663px;}
._1{margin-left:-4.817916px;}
._2{margin-left:-3.736610px;}
._0{margin-left:-1.859750px;}
._6{width:1.255293px;}
._3{width:3.118220px;}
._5{width:4.453919px;}
._e{width:5.944818px;}
._11{width:8.014691px;}
._f{width:9.601676px;}
._16{width:11.979110px;}
._22{width:16.299170px;}
._18{width:18.829440px;}
._10{width:20.916307px;}
._b{width:23.379110px;}
._9{width:24.526810px;}
._14{width:25.615169px;}
._1d{width:26.899200px;}
._1b{width:29.016294px;}
._52{width:30.265306px;}
._8{width:31.484736px;}
._d{width:33.725386px;}
._7{width:36.434189px;}
._12{width:37.658880px;}
._19{width:39.111437px;}
._53{width:41.030246px;}
._45{width:42.680064px;}
._56{width:51.092785px;}
._57{width:52.814746px;}
._25{width:54.223526px;}
._55{width:59.172684px;}
._54{width:62.782733px;}
._1a{width:66.064435px;}
._c{width:71.731200px;}
._27{width:74.117818px;}
._40{width:81.201638px;}
._49{width:86.560042px;}
._48{width:89.042928px;}
._2a{width:90.250800px;}
._28{width:92.051760px;}
._29{width:95.452800px;}
._3d{width:104.801510px;}
._3c{width:106.764000px;}
._2f{width:108.807311px;}
._30{width:109.983360px;}
._2b{width:117.960000px;}
._4b{width:122.297290px;}
._33{width:126.970051px;}
._3b{width:140.284800px;}
._38{width:144.202982px;}
._26{width:145.885382px;}
._34{width:153.700800px;}
._3f{width:160.199098px;}
._2d{width:171.252000px;}
._35{width:173.038867px;}
._2c{width:175.464000px;}
._36{width:177.097709px;}
._37{width:179.721418px;}
._39{width:180.748800px;}
._4d{width:183.663658px;}
._23{width:188.294400px;}
._4e{width:190.769510px;}
._3e{width:194.052000px;}
._32{width:198.152400px;}
._31{width:202.362000px;}
._3a{width:203.452925px;}
._42{width:205.174022px;}
._46{width:207.740711px;}
._47{width:219.484502px;}
._2e{width:220.649818px;}
._4c{width:227.096611px;}
._4a{width:229.830787px;}
._50{width:247.690925px;}
._41{width:248.999549px;}
._24{width:268.992000px;}
._4f{width:293.636592px;}
.fc4{color:transparent;}
.fc3{color:rgb(143,120,0);}
.fc2{color:rgb(248,118,109);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1f{font-size:15.770122px;}
.fs1e{font-size:31.670714px;}
.fs11{font-size:32.316701px;}
.fsd{font-size:35.865600px;}
.fs14{font-size:42.507504px;}
.fse{font-size:43.038600px;}
.fs1a{font-size:43.374528px;}
.fs17{font-size:44.606640px;}
.fs12{font-size:45.516480px;}
.fs3{font-size:47.820600px;}
.fs10{font-size:49.572000px;}
.fs15{font-size:49.854480px;}
.fs1b{font-size:50.871360px;}
.fs20{font-size:53.548800px;}
.fs21{font-size:53.551993px;}
.fs6{font-size:53.798400px;}
.fsa{font-size:57.384600px;}
.fs19{font-size:57.726240px;}
.fs0{font-size:58.117200px;}
.fs1d{font-size:58.903680px;}
.fsc{font-size:59.775600px;}
.fsf{font-size:60.588000px;}
.fs16{font-size:65.598000px;}
.fs7{font-size:65.753400px;}
.fs13{font-size:66.936000px;}
.fs8{font-size:66.949200px;}
.fs2{font-size:69.741000px;}
.fsb{font-size:71.731200px;}
.fs18{font-size:81.341520px;}
.fs1c{font-size:83.000640px;}
.fs5{font-size:83.686200px;}
.fs1{font-size:120.535800px;}
.fs4{font-size:143.461800px;}
.fs9{font-size:202.664400px;}
.y172{bottom:-2.804618px;}
.y1e3{bottom:-2.748556px;}
.y0{bottom:0.000000px;}
.y1f5{bottom:7.084584px;}
.y185{bottom:7.229088px;}
.y12d{bottom:7.435800px;}
.y1a0{bottom:10.967986px;}
.y1db{bottom:11.191699px;}
.y192{bottom:14.438120px;}
.y24f{bottom:19.424827px;}
.y12c{bottom:20.792700px;}
.y1f4{bottom:21.220953px;}
.y184{bottom:21.653796px;}
.y248{bottom:24.920273px;}
.y1ce{bottom:25.000596px;}
.y24c{bottom:25.013983px;}
.y19f{bottom:27.013256px;}
.y1da{bottom:27.564245px;}
.y1e4{bottom:27.931628px;}
.y24a{bottom:28.648608px;}
.y1ab{bottom:29.440382px;}
.y247{bottom:29.692810px;}
.y1e9{bottom:29.873329px;}
.y1f{bottom:30.093000px;}
.y179{bottom:30.482654px;}
.y191{bottom:30.516190px;}
.y127{bottom:31.106430px;}
.y24d{bottom:34.532282px;}
.y24e{bottom:35.583178px;}
.y24b{bottom:37.892470px;}
.y1ac{bottom:38.112438px;}
.y249{bottom:38.253924px;}
.y1fd{bottom:42.632140px;}
.y1e{bottom:45.784500px;}
.y1d{bottom:46.189500px;}
.y173{bottom:49.251509px;}
.y1aa{bottom:50.018475px;}
.y190{bottom:50.097193px;}
.y1dc{bottom:51.018619px;}
.y196{bottom:51.409153px;}
.y1b1{bottom:51.789621px;}
.y1d1{bottom:53.107022px;}
.y1ea{bottom:53.882197px;}
.y1a1{bottom:54.098671px;}
.y17a{bottom:54.981230px;}
.y1a6{bottom:59.005401px;}
.y1ff{bottom:59.366190px;}
.y1fc{bottom:59.464587px;}
.y23d{bottom:61.688218px;}
.y237{bottom:63.723072px;}
.y1ad{bottom:66.713166px;}
.y1bc{bottom:67.244510px;}
.y60{bottom:68.193000px;}
.y125{bottom:73.582500px;}
.y236{bottom:74.379283px;}
.y1a5{bottom:75.608255px;}
.y1fe{bottom:76.100240px;}
.y1cd{bottom:76.835834px;}
.y1cb{bottom:77.001000px;}
.y1fb{bottom:77.071090px;}
.y170{bottom:77.314500px;}
.y197{bottom:77.340042px;}
.y189{bottom:77.652454px;}
.y1b2{bottom:77.674592px;}
.y2d3{bottom:77.851500px;}
.y1eb{bottom:77.884505px;}
.y17b{bottom:79.473113px;}
.y1d2{bottom:79.486500px;}
.y30{bottom:80.014500px;}
.y239{bottom:80.296426px;}
.y193{bottom:81.210324px;}
.y1e5{bottom:83.709608px;}
.yd5{bottom:83.884500px;}
.y1bb{bottom:83.978560px;}
.y23e{bottom:85.363481px;}
.y1a9{bottom:88.196511px;}
.y250{bottom:88.783910px;}
.y5f{bottom:88.995000px;}
.y124{bottom:89.274000px;}
.y238{bottom:89.761176px;}
.y20e{bottom:90.925500px;}
.y1a4{bottom:92.348864px;}
.y1fa{bottom:92.834290px;}
.y16f{bottom:93.006000px;}
.y2d2{bottom:93.543000px;}
.y128{bottom:93.849435px;}
.y101{bottom:95.947500px;}
.y188{bottom:96.012998px;}
.y1cf{bottom:96.354372px;}
.y174{bottom:99.466896px;}
.y1ba{bottom:100.712609px;}
.yd4{bottom:101.145000px;}
.y1ec{bottom:101.893373px;}
.y198{bottom:103.270931px;}
.ya8{bottom:103.488000px;}
.y2f{bottom:103.552500px;}
.y1b3{bottom:103.559563px;}
.y17c{bottom:103.971689px;}
.y123{bottom:104.965500px;}
.y1d3{bottom:105.865978px;}
.y18f{bottom:106.104765px;}
.y1f6{bottom:107.961188px;}
.y23f{bottom:109.032050px;}
.y1a3{bottom:109.082914px;}
.y2d1{bottom:109.234500px;}
.y28c{bottom:109.557000px;}
.y1f9{bottom:109.568339px;}
.y26a{bottom:109.617000px;}
.y8c{bottom:109.792500px;}
.y14c{bottom:109.797000px;}
.y186{bottom:110.163269px;}
.y187{bottom:110.243592px;}
.y20d{bottom:111.727500px;}
.y1ca{bottom:113.332500px;}
.y5e{bottom:115.681500px;}
.yd3{bottom:116.835000px;}
.y1ae{bottom:118.345352px;}
.y1b9{bottom:118.942294px;}
.y2e{bottom:119.242500px;}
.y122{bottom:120.655500px;}
.ya7{bottom:124.290000px;}
.y2d0{bottom:124.926000px;}
.y1ed{bottom:125.895682px;}
.y1a2{bottom:127.312598px;}
.y1f8{bottom:127.561871px;}
.y194{bottom:127.758665px;}
.y17d{bottom:128.463571px;}
.y199{bottom:129.201821px;}
.y16e{bottom:129.337500px;}
.y1b4{bottom:129.444533px;}
.y100{bottom:129.481500px;}
.y28b{bottom:130.359000px;}
.y269{bottom:130.419000px;}
.y8b{bottom:130.594500px;}
.y14b{bottom:130.599000px;}
.y1d4{bottom:132.245455px;}
.yd2{bottom:132.526500px;}
.y20c{bottom:132.529500px;}
.y240{bottom:132.700620px;}
.y1c9{bottom:134.134500px;}
.y302{bottom:135.981000px;}
.yff{bottom:139.560000px;}
.y175{bottom:140.498664px;}
.y2cf{bottom:140.616000px;}
.y1f7{bottom:141.508006px;}
.ya6{bottom:144.882000px;}
.y12e{bottom:148.991400px;}
.yd1{bottom:149.787000px;}
.y1ee{bottom:149.904550px;}
.y16d{bottom:150.139500px;}
.y1a8{bottom:150.186621px;}
.y1e6{bottom:150.344056px;}
.y1af{bottom:150.829481px;}
.y28a{bottom:151.161000px;}
.y268{bottom:151.221000px;}
.y14a{bottom:151.239000px;}
.y8a{bottom:151.396500px;}
.y2b0{bottom:151.401000px;}
.y301{bottom:151.672500px;}
.y17e{bottom:152.962147px;}
.y20b{bottom:153.331500px;}
.y1c8{bottom:154.936500px;}
.y19a{bottom:155.132710px;}
.y18e{bottom:155.244227px;}
.y1b5{bottom:155.322944px;}
.y2ce{bottom:156.307500px;}
.y241{bottom:156.369190px;}
.y129{bottom:156.592440px;}
.y121{bottom:156.987000px;}
.y1d5{bottom:158.618239px;}
.y176{bottom:161.315760px;}
.y2d{bottom:161.851500px;}
.yd0{bottom:165.478500px;}
.ya5{bottom:165.684000px;}
.y5d{bottom:166.261500px;}
.y300{bottom:167.364000px;}
.y16c{bottom:170.941500px;}
.yfe{bottom:171.516000px;}
.y289{bottom:171.963000px;}
.y2cd{bottom:171.999000px;}
.y149{bottom:172.041000px;}
.y89{bottom:172.198500px;}
.y2af{bottom:172.203000px;}
.y1ef{bottom:173.906858px;}
.y20a{bottom:174.133500px;}
.y1c7{bottom:175.738500px;}
.y23a{bottom:177.340238px;}
.y17f{bottom:177.454030px;}
.y267{bottom:177.729000px;}
.y120{bottom:177.789000px;}
.y1e1{bottom:179.120736px;}
.y234{bottom:179.848500px;}
.y242{bottom:180.037759px;}
.y19b{bottom:181.063600px;}
.ycf{bottom:181.170000px;}
.y1b6{bottom:181.207915px;}
.y2c{bottom:182.653500px;}
.y2ff{bottom:183.055500px;}
.y1d6{bottom:184.997717px;}
.y5c{bottom:187.063500px;}
.y2cc{bottom:187.690500px;}
.y177{bottom:190.098240px;}
.y1a7{bottom:190.306358px;}
.y1e7{bottom:191.395285px;}
.y16b{bottom:191.743500px;}
.yfd{bottom:192.318000px;}
.y288{bottom:192.765000px;}
.y148{bottom:192.843000px;}
.y88{bottom:193.000500px;}
.y2ae{bottom:193.005000px;}
.ya4{bottom:194.077500px;}
.y209{bottom:194.935500px;}
.y233{bottom:195.540000px;}
.y1e0{bottom:196.196110px;}
.y1c6{bottom:196.540500px;}
.yce{bottom:196.861500px;}
.y1f0{bottom:197.915726px;}
.y11f{bottom:198.591000px;}
.y2fe{bottom:198.745500px;}
.y23c{bottom:199.830734px;}
.y23b{bottom:201.008808px;}
.y180{bottom:201.952606px;}
.y2cb{bottom:203.380500px;}
.y2b{bottom:203.455500px;}
.y243{bottom:203.706329px;}
.y266{bottom:204.238500px;}
.y19c{bottom:206.994489px;}
.y1b7{bottom:207.092886px;}
.y5b{bottom:207.865500px;}
.y232{bottom:211.231500px;}
.y1d7{bottom:211.377194px;}
.ya1{bottom:211.944000px;}
.yfc{bottom:213.120000px;}
.y1df{bottom:213.271483px;}
.y147{bottom:213.645000px;}
.y87{bottom:213.802500px;}
.y2ad{bottom:213.807000px;}
.ycd{bottom:214.120500px;}
.y208{bottom:215.737500px;}
.y1b0{bottom:217.221217px;}
.y1c5{bottom:217.342500px;}
.y16a{bottom:218.433000px;}
.y18d{bottom:219.031722px;}
.y2ca{bottom:219.072000px;}
.y12a{bottom:219.335445px;}
.y11e{bottom:219.393000px;}
.y131{bottom:219.486915px;}
.y1f1{bottom:221.924594px;}
.y1d0{bottom:223.499304px;}
.y2a{bottom:224.257500px;}
.y287{bottom:226.093500px;}
.y181{bottom:226.451182px;}
.ya3{bottom:226.888500px;}
.y244{bottom:227.381592px;}
.y5a{bottom:228.667500px;}
.y1de{bottom:230.346857px;}
.ya2{bottom:231.370500px;}
.y130{bottom:231.384195px;}
.y19d{bottom:232.925378px;}
.y1b8{bottom:232.971297px;}
.yfb{bottom:233.922000px;}
.y86{bottom:234.604500px;}
.y2ac{bottom:234.607500px;}
.y2c9{bottom:234.763500px;}
.y207{bottom:236.539500px;}
.y1d8{bottom:237.756672px;}
.y1c4{bottom:238.144500px;}
.y146{bottom:240.172500px;}
.y12f{bottom:243.281475px;}
.y29{bottom:245.059500px;}
.y1f2{bottom:245.926902px;}
.y11d{bottom:246.082500px;}
.ycc{bottom:246.280500px;}
.y286{bottom:246.895500px;}
.y231{bottom:247.563000px;}
.y1dd{bottom:248.948371px;}
.y59{bottom:249.469500px;}
.y2c8{bottom:250.455000px;}
.y182{bottom:250.943064px;}
.y245{bottom:251.050162px;}
.y265{bottom:251.988000px;}
.yfa{bottom:254.724000px;}
.y85{bottom:255.406500px;}
.y2ab{bottom:255.409500px;}
.ya0{bottom:256.752000px;}
.y206{bottom:257.341500px;}
.y19e{bottom:258.856268px;}
.y1c3{bottom:258.946500px;}
.y1d9{bottom:264.136150px;}
.y28{bottom:265.861500px;}
.y2c7{bottom:266.146500px;}
.ycb{bottom:267.082500px;}
.y285{bottom:267.697500px;}
.y230{bottom:268.365000px;}
.y169{bottom:268.671000px;}
.y1f3{bottom:269.935770px;}
.y58{bottom:270.268500px;}
.y264{bottom:272.790000px;}
.y246{bottom:274.718731px;}
.y183{bottom:275.441640px;}
.yf9{bottom:275.526000px;}
.y84{bottom:276.208500px;}
.y2aa{bottom:276.211500px;}
.y9f{bottom:277.344000px;}
.y2c6{bottom:281.836500px;}
.y12b{bottom:282.078450px;}
.y27{bottom:286.663500px;}
.y145{bottom:287.824500px;}
.yca{bottom:287.884500px;}
.y284{bottom:288.499500px;}
.y22f{bottom:289.167000px;}
.y168{bottom:289.473000px;}
.y57{bottom:291.070500px;}
.y263{bottom:293.592000px;}
.y11c{bottom:296.320500px;}
.yf8{bottom:296.328000px;}
.y83{bottom:297.010500px;}
.y2a9{bottom:297.013500px;}
.y2c5{bottom:297.528000px;}
.y9e{bottom:298.146000px;}
.y26{bottom:307.465500px;}
.y144{bottom:308.626500px;}
.yc9{bottom:308.686500px;}
.y283{bottom:309.301500px;}
.y22e{bottom:309.969000px;}
.y167{bottom:310.275000px;}
.y56{bottom:311.872500px;}
.y2c4{bottom:313.219500px;}
.y205{bottom:314.376000px;}
.y262{bottom:314.394000px;}
.y1c2{bottom:314.626500px;}
.yf7{bottom:317.130000px;}
.y82{bottom:317.812500px;}
.y2a8{bottom:317.815500px;}
.y9d{bottom:318.948000px;}
.y25{bottom:328.267500px;}
.y2c3{bottom:328.911000px;}
.y143{bottom:329.428500px;}
.yc8{bottom:329.488500px;}
.y282{bottom:330.103500px;}
.y22d{bottom:330.771000px;}
.y166{bottom:331.077000px;}
.y55{bottom:332.674500px;}
.y204{bottom:335.178000px;}
.y261{bottom:335.196000px;}
.y1c1{bottom:335.428500px;}
.yf6{bottom:337.932000px;}
.y2a7{bottom:338.617500px;}
.y9c{bottom:344.325000px;}
.y81{bottom:344.502000px;}
.y2c2{bottom:344.601000px;}
.y2fd{bottom:344.988000px;}
.y24{bottom:349.069500px;}
.y142{bottom:350.230500px;}
.y281{bottom:350.665500px;}
.y22c{bottom:351.573000px;}
.y165{bottom:351.879000px;}
.y54{bottom:353.476500px;}
.y203{bottom:355.980000px;}
.y260{bottom:355.998000px;}
.y1c0{bottom:356.230500px;}
.yf5{bottom:358.734000px;}
.y2a6{bottom:359.419500px;}
.y2c1{bottom:360.292500px;}
.y2fc{bottom:360.679500px;}
.yc7{bottom:360.769500px;}
.y326{bottom:367.478901px;}
.y9b{bottom:369.057000px;}
.y23{bottom:369.871500px;}
.y80{bottom:371.191500px;}
.y11b{bottom:371.455500px;}
.y280{bottom:371.467500px;}
.y164{bottom:372.681000px;}
.y53{bottom:374.278500px;}
.y2c0{bottom:375.984000px;}
.y2fb{bottom:376.371000px;}
.y25f{bottom:376.620000px;}
.y202{bottom:376.782000px;}
.y1bf{bottom:377.032500px;}
.y22b{bottom:378.262500px;}
.yf4{bottom:379.536000px;}
.y141{bottom:382.500000px;}
.y2a5{bottom:386.109000px;}
.y21{bottom:388.593000px;}
.yc6{bottom:388.917000px;}
.y9a{bottom:389.859000px;}
.y22{bottom:390.673500px;}
.y2bf{bottom:391.675500px;}
.y2fa{bottom:392.061000px;}
.y27f{bottom:392.269500px;}
.y163{bottom:393.483000px;}
.y11a{bottom:395.844000px;}
.y25e{bottom:397.422000px;}
.y201{bottom:397.584000px;}
.y1be{bottom:397.834500px;}
.y52{bottom:398.059500px;}
.yf3{bottom:400.338000px;}
.y325{bottom:402.349221px;}
.y2be{bottom:407.367000px;}
.y2f9{bottom:407.752500px;}
.y99{bottom:410.661000px;}
.y119{bottom:412.212000px;}
.y27e{bottom:412.831500px;}
.y162{bottom:414.285000px;}
.y140{bottom:415.393500px;}
.y118{bottom:416.646000px;}
.y25d{bottom:418.224000px;}
.y200{bottom:418.386000px;}
.y1bd{bottom:418.636500px;}
.y51{bottom:418.861500px;}
.yc5{bottom:418.969500px;}
.y324{bottom:419.784381px;}
.yf2{bottom:421.140000px;}
.y7f{bottom:421.827000px;}
.y2bd{bottom:423.057000px;}
.y22a{bottom:428.500500px;}
.y98{bottom:431.463000px;}
.y27d{bottom:433.633500px;}
.y161{bottom:435.087000px;}
.y30a{bottom:435.144000px;}
.y13f{bottom:436.195500px;}
.y2a4{bottom:436.741500px;}
.y323{bottom:437.220994px;}
.y20{bottom:438.163500px;}
.y2bc{bottom:438.748500px;}
.yc4{bottom:439.297500px;}
.y50{bottom:439.663500px;}
.y7e{bottom:442.629000px;}
.y25c{bottom:444.732000px;}
.yf1{bottom:447.828000px;}
.y229{bottom:449.302500px;}
.y1e8{bottom:449.589000px;}
.y195{bottom:449.839500px;}
.y117{bottom:450.063000px;}
.y309{bottom:450.835500px;}
.y97{bottom:452.265000px;}
.y27c{bottom:454.435500px;}
.y2bb{bottom:454.440000px;}
.y322{bottom:454.656154px;}
.y160{bottom:455.889000px;}
.y2a3{bottom:457.543500px;}
.yc3{bottom:460.099500px;}
.y4f{bottom:460.465500px;}
.y13e{bottom:462.723000px;}
.y7d{bottom:463.431000px;}
.y308{bottom:466.527000px;}
.y228{bottom:470.104500px;}
.y2ba{bottom:470.131500px;}
.y321{bottom:472.091314px;}
.y96{bottom:473.067000px;}
.y27b{bottom:474.999000px;}
.y15f{bottom:476.691000px;}
.y2a2{bottom:478.345500px;}
.yc2{bottom:480.901500px;}
.y4e{bottom:481.267500px;}
.y307{bottom:482.217000px;}
.y1e2{bottom:483.463807px;}
.y116{bottom:483.480000px;}
.y7c{bottom:484.233000px;}
.y2b9{bottom:485.821500px;}
.y320{bottom:489.526474px;}
.y18c{bottom:490.451222px;}
.y227{bottom:490.906500px;}
.y25b{bottom:492.085500px;}
.y95{bottom:493.869000px;}
.y27a{bottom:495.801000px;}
.y15e{bottom:497.493000px;}
.y306{bottom:497.908500px;}
.yf0{bottom:498.067500px;}
.y2a1{bottom:499.147500px;}
.y2b8{bottom:501.513000px;}
.y4d{bottom:502.069500px;}
.y115{bottom:504.282000px;}
.y7b{bottom:505.035000px;}
.y2f8{bottom:506.917500px;}
.y31f{bottom:506.963087px;}
.y13d{bottom:510.375000px;}
.yc1{bottom:510.954000px;}
.y226{bottom:511.708500px;}
.y25a{bottom:512.887500px;}
.y305{bottom:513.600000px;}
.y94{bottom:514.671000px;}
.y2b7{bottom:517.204500px;}
.y15d{bottom:518.295000px;}
.yef{bottom:518.869500px;}
.y2a0{bottom:519.949500px;}
.y2f7{bottom:522.609000px;}
.y4c{bottom:522.871500px;}
.y31e{bottom:524.399700px;}
.y114{bottom:525.084000px;}
.y7a{bottom:525.837000px;}
.y304{bottom:529.291500px;}
.y13c{bottom:531.177000px;}
.y225{bottom:532.510500px;}
.y259{bottom:533.508000px;}
.y93{bottom:535.473000px;}
.y2f6{bottom:538.300500px;}
.y15c{bottom:539.097000px;}
.yee{bottom:539.671500px;}
.y29f{bottom:540.751500px;}
.yc0{bottom:541.005000px;}
.y2b6{bottom:543.490500px;}
.y4b{bottom:543.673500px;}
.y303{bottom:544.981500px;}
.y113{bottom:545.886000px;}
.y79{bottom:546.639000px;}
.y13b{bottom:551.979000px;}
.y224{bottom:553.312500px;}
.y2f5{bottom:553.990500px;}
.y258{bottom:554.310000px;}
.y279{bottom:555.184500px;}
.y31d{bottom:559.269600px;}
.y15b{bottom:559.899000px;}
.yed{bottom:560.473500px;}
.y29e{bottom:561.553500px;}
.ybf{bottom:561.807000px;}
.y112{bottom:566.688000px;}
.y1c{bottom:566.778000px;}
.y78{bottom:567.441000px;}
.y4a{bottom:567.454500px;}
.y92{bottom:568.330500px;}
.y2f4{bottom:569.682000px;}
.y13a{bottom:572.619000px;}
.y223{bottom:574.114500px;}
.y257{bottom:575.112000px;}
.yec{bottom:581.275500px;}
.y278{bottom:582.228000px;}
.y29d{bottom:582.355500px;}
.ybe{bottom:582.609000px;}
.y2f3{bottom:585.373500px;}
.y15a{bottom:586.587000px;}
.y111{bottom:587.490000px;}
.y77{bottom:588.243000px;}
.y49{bottom:588.256500px;}
.y139{bottom:593.421000px;}
.y2b5{bottom:594.126000px;}
.y256{bottom:595.914000px;}
.y1b{bottom:598.075500px;}
.y222{bottom:600.804000px;}
.y2f2{bottom:601.065000px;}
.y29c{bottom:603.157500px;}
.ybd{bottom:603.411000px;}
.y76{bottom:609.045000px;}
.y48{bottom:609.058500px;}
.y277{bottom:609.270000px;}
.y31c{bottom:611.574707px;}
.y159{bottom:613.276500px;}
.y138{bottom:614.223000px;}
.y2b4{bottom:614.928000px;}
.y91{bottom:615.213000px;}
.y1a{bottom:616.120500px;}
.y255{bottom:616.716000px;}
.y2f1{bottom:616.755000px;}
.y29b{bottom:623.959500px;}
.ybc{bottom:624.213000px;}
.y31b{bottom:629.011320px;}
.y110{bottom:629.280000px;}
.y75{bottom:629.847000px;}
.y47{bottom:629.860500px;}
.y2f0{bottom:632.446500px;}
.y137{bottom:635.025000px;}
.y2b3{bottom:635.730000px;}
.y90{bottom:636.015000px;}
.y276{bottom:636.313500px;}
.y19{bottom:643.188000px;}
.y254{bottom:643.225500px;}
.y29a{bottom:644.761500px;}
.ybb{bottom:645.015000px;}
.y31a{bottom:646.446480px;}
.y2ef{bottom:648.138000px;}
.y10f{bottom:650.082000px;}
.y74{bottom:650.649000px;}
.y46{bottom:650.662500px;}
.y221{bottom:651.042000px;}
.yeb{bottom:654.856500px;}
.y136{bottom:655.827000px;}
.y2b2{bottom:656.532000px;}
.y8f{bottom:656.817000px;}
.y275{bottom:663.355500px;}
.y2ee{bottom:663.829500px;}
.y319{bottom:663.881640px;}
.y299{bottom:665.563500px;}
.yea{bottom:670.548000px;}
.yba{bottom:671.232000px;}
.y73{bottom:671.451000px;}
.y45{bottom:671.464500px;}
.y220{bottom:671.844000px;}
.y135{bottom:676.629000px;}
.y8e{bottom:677.619000px;}
.y158{bottom:678.619500px;}
.y2ed{bottom:679.521000px;}
.y318{bottom:681.316800px;}
.y2b1{bottom:683.221500px;}
.y18{bottom:685.266000px;}
.ye9{bottom:686.239500px;}
.y298{bottom:686.365500px;}
.y274{bottom:690.397500px;}
.y72{bottom:692.253000px;}
.y44{bottom:692.266500px;}
.y21f{bottom:692.646000px;}
.y2ec{bottom:695.211000px;}
.y253{bottom:698.476500px;}
.y317{bottom:698.751960px;}
.ye8{bottom:701.931000px;}
.y17{bottom:703.311000px;}
.y157{bottom:706.260000px;}
.y297{bottom:707.167500px;}
.y2eb{bottom:710.902500px;}
.y10e{bottom:711.226500px;}
.y71{bottom:713.055000px;}
.y43{bottom:713.065500px;}
.y21e{bottom:713.448000px;}
.yb9{bottom:713.893500px;}
.y316{bottom:716.187120px;}
.y273{bottom:717.441000px;}
.ye7{bottom:717.622500px;}
.y252{bottom:719.278500px;}
.y16{bottom:721.356000px;}
.y2ea{bottom:726.594000px;}
.y296{bottom:727.969500px;}
.y134{bottom:731.814000px;}
.y10d{bottom:732.028500px;}
.y8d{bottom:732.580500px;}
.y156{bottom:733.302000px;}
.ye6{bottom:733.312500px;}
.y315{bottom:733.622280px;}
.y70{bottom:733.857000px;}
.y42{bottom:733.867500px;}
.y21d{bottom:734.250000px;}
.yb8{bottom:734.695500px;}
.y5{bottom:735.537300px;}
.y15{bottom:739.399500px;}
.y251{bottom:740.080500px;}
.y2e9{bottom:742.285500px;}
.y272{bottom:744.483000px;}
.y295{bottom:748.771500px;}
.ye5{bottom:749.004000px;}
.y314{bottom:751.057440px;}
.y133{bottom:752.616000px;}
.y6f{bottom:754.659000px;}
.y41{bottom:754.669500px;}
.y21c{bottom:755.052000px;}
.yb7{bottom:755.497500px;}
.y10c{bottom:756.417000px;}
.y14{bottom:757.444500px;}
.y2e8{bottom:757.975500px;}
.y155{bottom:760.345500px;}
.y18b{bottom:760.882500px;}
.ye4{bottom:764.695500px;}
.y313{bottom:768.492600px;}
.y294{bottom:769.573500px;}
.y271{bottom:771.526500px;}
.y132{bottom:773.418000px;}
.y2e7{bottom:773.667000px;}
.y6e{bottom:775.461000px;}
.y40{bottom:775.471500px;}
.y13{bottom:775.489500px;}
.yb6{bottom:775.825500px;}
.y21b{bottom:775.854000px;}
.ye3{bottom:780.387000px;}
.y18a{bottom:781.684500px;}
.y154{bottom:787.387500px;}
.y2e6{bottom:789.358500px;}
.y10b{bottom:789.835500px;}
.y293{bottom:790.375500px;}
.y12{bottom:793.534500px;}
.ye2{bottom:795.699000px;}
.y6d{bottom:796.263000px;}
.y3f{bottom:796.269000px;}
.yb5{bottom:796.627500px;}
.y21a{bottom:796.656000px;}
.y270{bottom:798.568500px;}
.y4{bottom:802.635237px;}
.y312{bottom:803.362500px;}
.y126{bottom:804.621000px;}
.y2e5{bottom:805.050000px;}
.ye1{bottom:805.516500px;}
.y292{bottom:811.177500px;}
.y11{bottom:811.579500px;}
.y178{bottom:812.887500px;}
.y153{bottom:814.429500px;}
.y10a{bottom:815.838000px;}
.y6c{bottom:817.065000px;}
.y3e{bottom:817.071000px;}
.yb4{bottom:817.429500px;}
.y219{bottom:817.458000px;}
.y2e4{bottom:820.741500px;}
.y26f{bottom:825.610500px;}
.y10{bottom:829.624500px;}
.ye0{bottom:830.448000px;}
.y291{bottom:831.979500px;}
.y2e3{bottom:836.431500px;}
.y6b{bottom:837.867000px;}
.y3d{bottom:837.873000px;}
.yb3{bottom:838.231500px;}
.y218{bottom:838.260000px;}
.y3{bottom:838.958700px;}
.y152{bottom:842.070000px;}
.ydf{bottom:846.139500px;}
.y171{bottom:847.453250px;}
.yf{bottom:847.668000px;}
.y109{bottom:849.255000px;}
.y2e2{bottom:852.123000px;}
.y26e{bottom:852.654000px;}
.y290{bottom:852.781500px;}
.y1cc{bottom:854.327578px;}
.y311{bottom:855.669180px;}
.y6a{bottom:858.669000px;}
.y3c{bottom:858.675000px;}
.yb2{bottom:859.033500px;}
.y217{bottom:859.062000px;}
.yde{bottom:861.831000px;}
.ye{bottom:865.713000px;}
.y2e1{bottom:867.814500px;}
.y151{bottom:869.113500px;}
.y108{bottom:870.057000px;}
.y28f{bottom:873.583500px;}
.ydd{bottom:877.521000px;}
.y235{bottom:879.381722px;}
.y69{bottom:879.471000px;}
.y3b{bottom:879.477000px;}
.yb1{bottom:879.835500px;}
.y2e0{bottom:883.506000px;}
.yd{bottom:883.758000px;}
.y26d{bottom:883.881000px;}
.y216{bottom:885.751500px;}
.y310{bottom:890.539500px;}
.ydc{bottom:893.212500px;}
.y28e{bottom:894.385500px;}
.y150{bottom:896.155500px;}
.y2df{bottom:899.196000px;}
.y68{bottom:900.273000px;}
.y3a{bottom:900.279000px;}
.yc{bottom:901.803000px;}
.yb0{bottom:903.169500px;}
.y107{bottom:903.474000px;}
.y30f{bottom:907.974660px;}
.ydb{bottom:908.904000px;}
.y26c{bottom:911.521500px;}
.y2de{bottom:914.887500px;}
.y28d{bottom:915.187500px;}
.yb{bottom:919.848000px;}
.yad{bottom:921.036000px;}
.y67{bottom:921.075000px;}
.y39{bottom:921.081000px;}
.y14f{bottom:923.796000px;}
.yda{bottom:924.595500px;}
.y30e{bottom:925.409820px;}
.y2dd{bottom:930.579000px;}
.yaf{bottom:935.980500px;}
.y215{bottom:935.989500px;}
.y106{bottom:936.892500px;}
.y26b{bottom:939.162000px;}
.yd9{bottom:940.287000px;}
.yae{bottom:940.462500px;}
.y66{bottom:941.877000px;}
.y38{bottom:941.880000px;}
.y30d{bottom:942.844980px;}
.y2dc{bottom:946.270500px;}
.ya{bottom:946.914000px;}
.y14e{bottom:950.838000px;}
.yd8{bottom:955.977000px;}
.y214{bottom:956.791500px;}
.y30c{bottom:960.280140px;}
.y2db{bottom:961.962000px;}
.y105{bottom:962.062500px;}
.y65{bottom:962.679000px;}
.y37{bottom:962.682000px;}
.yac{bottom:964.434000px;}
.yd7{bottom:971.668500px;}
.y104{bottom:972.141000px;}
.y213{bottom:977.593500px;}
.y2da{bottom:977.652000px;}
.y2{bottom:977.715030px;}
.y30b{bottom:977.715300px;}
.y14d{bottom:982.065000px;}
.y64{bottom:983.481000px;}
.y36{bottom:983.484000px;}
.yab{bottom:985.236000px;}
.yd6{bottom:987.360000px;}
.y2d9{bottom:993.343500px;}
.y9{bottom:996.679500px;}
.y212{bottom:998.395500px;}
.y103{bottom:1004.097000px;}
.y63{bottom:1004.283000px;}
.y35{bottom:1004.286000px;}
.y2d8{bottom:1009.035000px;}
.y1{bottom:1012.585350px;}
.yaa{bottom:1015.404000px;}
.y211{bottom:1019.197500px;}
.y2d7{bottom:1024.726500px;}
.y102{bottom:1024.899000px;}
.y62{bottom:1025.085000px;}
.y34{bottom:1025.088000px;}
.ya9{bottom:1025.482500px;}
.y210{bottom:1039.999500px;}
.y8{bottom:1040.016000px;}
.y2d6{bottom:1040.416500px;}
.y61{bottom:1045.887000px;}
.y33{bottom:1045.890000px;}
.y2d5{bottom:1056.108000px;}
.y20f{bottom:1060.801500px;}
.y32{bottom:1066.689000px;}
.y2d4{bottom:1071.799500px;}
.y7{bottom:1081.860000px;}
.y31{bottom:1087.491000px;}
.y6{bottom:1135.293000px;}
.h16{height:2.391024px;}
.h49{height:16.826720px;}
.h44{height:33.792652px;}
.h2b{height:34.481920px;}
.h5{height:35.435065px;}
.h15{height:35.865450px;}
.ha{height:39.165235px;}
.h50{height:39.297235px;}
.hd{height:39.434227px;}
.h8{height:39.864614px;}
.h51{height:40.333337px;}
.h1c{height:40.348800px;}
.h47{height:41.511644px;}
.h30{height:42.331581px;}
.h1a{height:42.701232px;}
.h1{height:43.587900px;}
.h32{height:45.355507px;}
.h3e{height:46.280621px;}
.h9{height:46.356147px;}
.h46{height:46.523332px;}
.h2e{height:47.472266px;}
.h1d{height:49.311024px;}
.h20{height:51.646464px;}
.h24{height:51.702047px;}
.h37{height:51.996665px;}
.hc{height:52.220314px;}
.h3{height:52.305750px;}
.h4f{height:52.400314px;}
.he{height:52.578970px;}
.h3f{height:53.057239px;}
.h10{height:53.152819px;}
.h13{height:53.798400px;}
.h3a{height:54.224127px;}
.h41{height:55.330134px;}
.h4a{height:55.849725px;}
.h4b{height:55.853055px;}
.h4d{height:55.864741px;}
.h4c{height:55.869012px;}
.h26{height:59.741523px;}
.h14{height:59.747523px;}
.h3b{height:60.206664px;}
.h27{height:60.841397px;}
.h12{height:60.847397px;}
.h42{height:61.434698px;}
.hf{height:61.893450px;}
.h11{height:61.899450px;}
.h7{height:62.011474px;}
.h23{height:63.191391px;}
.h17{height:63.329523px;}
.h25{height:65.481450px;}
.h4e{height:66.753450px;}
.h39{height:68.416664px;}
.h2f{height:69.812156px;}
.h1b{height:71.733024px;}
.h2a{height:74.161581px;}
.h33{height:74.402301px;}
.h38{height:75.344172px;}
.h40{height:76.880964px;}
.h21{height:79.629450px;}
.h1e{height:85.185024px;}
.h2{height:90.401850px;}
.h19{height:92.534314px;}
.h35{height:103.449096px;}
.h6{height:106.305194px;}
.h18{height:107.595024px;}
.h1f{height:107.601024px;}
.h3c{height:132.312216px;}
.h2c{height:138.848531px;}
.hb{height:147.539683px;}
.h34{height:151.151961px;}
.h45{height:154.046906px;}
.h29{height:167.256169px;}
.h48{height:213.030514px;}
.h31{height:233.325526px;}
.h3d{height:238.084658px;}
.h43{height:240.062441px;}
.h28{height:244.958986px;}
.h36{height:283.383360px;}
.h2d{height:289.163520px;}
.h22{height:297.432000px;}
.h4{height:1188.000000px;}
.h0{height:1263.000000px;}
.w6{width:325.202085px;}
.w9{width:327.025709px;}
.w8{width:331.835220px;}
.wa{width:333.307812px;}
.w4{width:333.696041px;}
.w3{width:347.004000px;}
.w7{width:377.844480px;}
.w5{width:385.551360px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.x41{left:-3.199541px;}
.x0{left:0.000000px;}
.x63{left:13.211437px;}
.x76{left:16.841098px;}
.x34{left:18.314100px;}
.x31{left:20.792700px;}
.x64{left:29.565019px;}
.x47{left:34.304700px;}
.x70{left:38.066503px;}
.x32{left:40.408065px;}
.x6c{left:42.149599px;}
.x65{left:45.918600px;}
.x4c{left:49.421533px;}
.x53{left:50.871249px;}
.x5f{left:51.908868px;}
.x55{left:61.130776px;}
.x66{left:62.265622px;}
.x6d{left:69.472874px;}
.x11{left:72.256500px;}
.xe{left:73.962000px;}
.xd{left:75.987000px;}
.x52{left:78.007500px;}
.xc{left:79.912500px;}
.x24{left:81.280500px;}
.x77{left:84.312000px;}
.x4{left:85.656000px;}
.x19{left:86.889000px;}
.x12{left:89.928000px;}
.x10{left:91.372500px;}
.x23{left:93.100500px;}
.x61{left:94.373066px;}
.x4d{left:100.778207px;}
.x13{left:104.623500px;}
.x35{left:107.633205px;}
.x14{left:109.305000px;}
.x4e{left:113.622296px;}
.x15{left:115.764000px;}
.x71{left:117.231710px;}
.xf{left:118.282500px;}
.x62{left:119.380159px;}
.x4b{left:121.203783px;}
.x38{left:123.357000px;}
.x39{left:127.446000px;}
.x5c{left:129.092770px;}
.x37{left:131.911500px;}
.x3f{left:135.199500px;}
.x3b{left:136.393500px;}
.x3d{left:140.392500px;}
.x9{left:142.080000px;}
.x3a{left:143.602500px;}
.x67{left:145.207733px;}
.x48{left:148.169530px;}
.x6{left:149.839500px;}
.x3c{left:151.206000px;}
.x72{left:153.812234px;}
.x3e{left:162.594000px;}
.x57{left:164.978970px;}
.x54{left:169.583950px;}
.x8{left:173.461500px;}
.x4f{left:177.816499px;}
.x60{left:181.235914px;}
.x33{left:192.332475px;}
.x1{left:195.085350px;}
.x25{left:197.179500px;}
.x73{left:198.518789px;}
.x74{left:201.617926px;}
.x2{left:203.090400px;}
.x26{left:210.511500px;}
.x58{left:216.335644px;}
.x78{left:218.115000px;}
.x2a{left:220.320000px;}
.x42{left:223.713499px;}
.x6e{left:233.392445px;}
.x43{left:237.060538px;}
.x50{left:242.017261px;}
.x44{left:250.407576px;}
.x51{left:254.854790px;}
.x45{left:263.754614px;}
.x46{left:266.217000px;}
.x59{left:267.692318px;}
.x5d{left:275.615674px;}
.x6a{left:277.466420px;}
.x2f{left:280.998000px;}
.x7a{left:282.439500px;}
.x30{left:285.495000px;}
.x7b{left:286.528500px;}
.x6b{left:288.276971px;}
.x49{left:291.305472px;}
.x5a{left:293.373935px;}
.x7c{left:296.059500px;}
.x75{left:300.395381px;}
.x7e{left:301.756500px;}
.x68{left:303.981132px;}
.x20{left:306.004500px;}
.x1f{left:307.603500px;}
.x5e{left:308.989963px;}
.x4a{left:310.181424px;}
.x6f{left:315.355577px;}
.x7d{left:321.774000px;}
.x1a{left:335.881500px;}
.x36{left:354.616500px;}
.x21{left:362.919000px;}
.x27{left:364.354500px;}
.x1c{left:365.707500px;}
.x2d{left:374.271000px;}
.x5{left:376.270500px;}
.x29{left:378.754500px;}
.x2b{left:382.657500px;}
.x16{left:389.575500px;}
.x2e{left:395.557500px;}
.x2c{left:405.297000px;}
.x1b{left:417.421500px;}
.xa{left:419.883000px;}
.x22{left:424.186500px;}
.x28{left:428.584500px;}
.x17{left:430.101000px;}
.x7{left:431.718000px;}
.xb{left:452.475000px;}
.x18{left:457.027500px;}
.x1d{left:458.233500px;}
.x5b{left:462.132000px;}
.x1e{left:488.130000px;}
.x7f{left:493.131000px;}
.x69{left:503.504659px;}
.x56{left:505.328283px;}
.x79{left:565.459500px;}
.x40{left:831.253500px;}
.x3{left:837.900000px;}
@media print{
.v24{vertical-align:-64.258560pt;}
.v21{vertical-align:-53.388026pt;}
.v25{vertical-align:-49.241097pt;}
.v31{vertical-align:-45.614384pt;}
.v30{vertical-align:-44.693686pt;}
.v1c{vertical-align:-41.492922pt;}
.v20{vertical-align:-40.046850pt;}
.v23{vertical-align:-19.229969pt;}
.v15{vertical-align:-18.277990pt;}
.v9{vertical-align:-16.042667pt;}
.v1f{vertical-align:-10.682270pt;}
.v3{vertical-align:-9.562667pt;}
.vc{vertical-align:-6.496000pt;}
.vb{vertical-align:-5.312000pt;}
.v2e{vertical-align:-4.151625pt;}
.v14{vertical-align:-3.070131pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:2.617941pt;}
.v28{vertical-align:3.685150pt;}
.vd{vertical-align:6.496000pt;}
.v16{vertical-align:10.447966pt;}
.v17{vertical-align:12.185327pt;}
.v8{vertical-align:15.002667pt;}
.v12{vertical-align:16.661333pt;}
.v1b{vertical-align:19.158571pt;}
.v2{vertical-align:23.136000pt;}
.v4{vertical-align:26.325333pt;}
.v32{vertical-align:27.456000pt;}
.v11{vertical-align:28.565333pt;}
.v1d{vertical-align:30.880623pt;}
.v10{vertical-align:32.042667pt;}
.v7{vertical-align:35.834667pt;}
.v6{vertical-align:38.128000pt;}
.v18{vertical-align:40.078302pt;}
.ve{vertical-align:41.706667pt;}
.v1a{vertical-align:43.981414pt;}
.v1e{vertical-align:51.638746pt;}
.va{vertical-align:61.637333pt;}
.v26{vertical-align:71.510566pt;}
.vf{vertical-align:73.594667pt;}
.v22{vertical-align:77.294852pt;}
.v1{vertical-align:81.360000pt;}
.v29{vertical-align:85.154950pt;}
.v27{vertical-align:89.493165pt;}
.v5{vertical-align:93.514667pt;}
.v2a{vertical-align:97.236644pt;}
.v2f{vertical-align:99.055895pt;}
.v2c{vertical-align:101.248326pt;}
.v2d{vertical-align:105.469922pt;}
.v2b{vertical-align:106.752727pt;}
.v19{vertical-align:118.021555pt;}
.ls0{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000125pt;}
.lsf{letter-spacing:0.000145pt;}
.ls50{letter-spacing:0.000159pt;}
.ls92{letter-spacing:0.000267pt;}
.lsd9{letter-spacing:0.000444pt;}
.ls38{letter-spacing:0.000676pt;}
.ls71{letter-spacing:0.000693pt;}
.ls7f{letter-spacing:0.000749pt;}
.lsc1{letter-spacing:0.000882pt;}
.lsac{letter-spacing:0.000908pt;}
.ls25{letter-spacing:0.000990pt;}
.ls7b{letter-spacing:0.001007pt;}
.lsc8{letter-spacing:0.001036pt;}
.ls46{letter-spacing:0.001146pt;}
.lscc{letter-spacing:0.001207pt;}
.ls89{letter-spacing:0.001249pt;}
.ls23{letter-spacing:0.001396pt;}
.lscd{letter-spacing:0.001495pt;}
.lsa2{letter-spacing:0.001608pt;}
.ls64{letter-spacing:0.001788pt;}
.ls15{letter-spacing:0.002133pt;}
.ls7{letter-spacing:0.002452pt;}
.ls12{letter-spacing:0.002717pt;}
.ls8b{letter-spacing:0.002879pt;}
.ls31{letter-spacing:0.002963pt;}
.ls11f{letter-spacing:0.003046pt;}
.lsc5{letter-spacing:0.003895pt;}
.ls5f{letter-spacing:0.003903pt;}
.lsd8{letter-spacing:0.004025pt;}
.ls6f{letter-spacing:0.004460pt;}
.lsfa{letter-spacing:0.004665pt;}
.ls8f{letter-spacing:0.004695pt;}
.lsbd{letter-spacing:0.004710pt;}
.ls9b{letter-spacing:0.004768pt;}
.ls120{letter-spacing:0.005166pt;}
.lsd3{letter-spacing:0.006009pt;}
.ls101{letter-spacing:0.014021pt;}
.lsf3{letter-spacing:0.016660pt;}
.ls93{letter-spacing:0.334546pt;}
.ls107{letter-spacing:0.401608pt;}
.lsdd{letter-spacing:0.406941pt;}
.ls52{letter-spacing:0.526877pt;}
.ls9e{letter-spacing:0.847362pt;}
.ls11d{letter-spacing:1.044057pt;}
.lsc2{letter-spacing:1.732492pt;}
.ls6{letter-spacing:1.732927pt;}
.lsd7{letter-spacing:2.182541pt;}
.lsbf{letter-spacing:2.283769pt;}
.ls108{letter-spacing:2.287633pt;}
.lsb6{letter-spacing:2.289103pt;}
.ls10f{letter-spacing:2.292966pt;}
.ls79{letter-spacing:2.371905pt;}
.ls7a{letter-spacing:2.387183pt;}
.ls5c{letter-spacing:2.389492pt;}
.ls22{letter-spacing:2.449323pt;}
.ls11{letter-spacing:2.653258pt;}
.ls24{letter-spacing:2.655321pt;}
.ls6b{letter-spacing:2.655362pt;}
.ls109{letter-spacing:2.656092pt;}
.ls7c{letter-spacing:2.656473pt;}
.ls39{letter-spacing:2.657146pt;}
.ls8{letter-spacing:2.658591pt;}
.ls43{letter-spacing:2.660654pt;}
.ls70{letter-spacing:2.660695pt;}
.ls47{letter-spacing:2.662479pt;}
.ls10{letter-spacing:2.779823pt;}
.ls17{letter-spacing:2.840424pt;}
.ls4{letter-spacing:3.162529pt;}
.lse7{letter-spacing:3.531549pt;}
.ls2{letter-spacing:3.689645pt;}
.ls11e{letter-spacing:3.721390pt;}
.ls37{letter-spacing:4.021729pt;}
.ls27{letter-spacing:5.105323pt;}
.ls60{letter-spacing:5.308701pt;}
.lsb8{letter-spacing:5.314034pt;}
.ls30{letter-spacing:5.435823pt;}
.ls45{letter-spacing:6.273817pt;}
.ls6a{letter-spacing:6.384693pt;}
.ls72{letter-spacing:6.390026pt;}
.ls41{letter-spacing:6.807576pt;}
.ls10a{letter-spacing:6.812909pt;}
.lsa0{letter-spacing:7.858452pt;}
.ls42{letter-spacing:7.863786pt;}
.ls10b{letter-spacing:8.050452pt;}
.ls8d{letter-spacing:8.192495pt;}
.ls1c{letter-spacing:8.672391pt;}
.ls26{letter-spacing:8.677724pt;}
.lsc6{letter-spacing:9.867812pt;}
.ls4e{letter-spacing:10.624990pt;}
.ls4d{letter-spacing:10.630323pt;}
.ls66{letter-spacing:10.631121pt;}
.ls14{letter-spacing:10.648098pt;}
.ls69{letter-spacing:10.920212pt;}
.ls88{letter-spacing:10.920368pt;}
.ls91{letter-spacing:10.923162pt;}
.ls90{letter-spacing:10.923916pt;}
.ls97{letter-spacing:10.924052pt;}
.ls63{letter-spacing:11.030941pt;}
.ls3{letter-spacing:11.158417pt;}
.ls19{letter-spacing:11.739976pt;}
.ls36{letter-spacing:11.759572pt;}
.ls35{letter-spacing:11.761980pt;}
.ls1{letter-spacing:12.604448pt;}
.ls57{letter-spacing:12.911633pt;}
.ls10e{letter-spacing:13.126642pt;}
.ls9d{letter-spacing:13.578028pt;}
.ls9a{letter-spacing:13.649188pt;}
.ls81{letter-spacing:13.649782pt;}
.ls86{letter-spacing:13.651034pt;}
.ls85{letter-spacing:13.654521pt;}
.ls77{letter-spacing:13.654583pt;}
.ls98{letter-spacing:13.654719pt;}
.ls87{letter-spacing:13.655115pt;}
.ls80{letter-spacing:13.656368pt;}
.ls2b{letter-spacing:13.871176pt;}
.ls55{letter-spacing:13.871850pt;}
.ls61{letter-spacing:13.877183pt;}
.ls65{letter-spacing:14.163915pt;}
.ls5e{letter-spacing:14.164905pt;}
.ls20{letter-spacing:14.166642pt;}
.ls3c{letter-spacing:14.167313pt;}
.ls53{letter-spacing:14.167786pt;}
.ls10d{letter-spacing:14.169842pt;}
.ls3d{letter-spacing:14.170238pt;}
.ls54{letter-spacing:14.171976pt;}
.lsc{letter-spacing:15.327176pt;}
.lsb{letter-spacing:15.331915pt;}
.ls8c{letter-spacing:15.368689pt;}
.lse4{letter-spacing:15.380874pt;}
.ls4a{letter-spacing:15.683420pt;}
.lsec{letter-spacing:15.757048pt;}
.lsed{letter-spacing:15.780371pt;}
.ls96{letter-spacing:16.308695pt;}
.ls7e{letter-spacing:16.309806pt;}
.ls2c{letter-spacing:16.530591pt;}
.lsf6{letter-spacing:16.673022pt;}
.ls6c{letter-spacing:16.736693pt;}
.ls82{letter-spacing:16.736891pt;}
.ls8e{letter-spacing:16.737007pt;}
.ls83{letter-spacing:16.738133pt;}
.ls8a{letter-spacing:16.742082pt;}
.ls1f{letter-spacing:16.824941pt;}
.ls10c{letter-spacing:16.825987pt;}
.lsbc{letter-spacing:16.827812pt;}
.lsc7{letter-spacing:16.829383pt;}
.ls34{letter-spacing:17.706238pt;}
.ls116{letter-spacing:17.707976pt;}
.lsaa{letter-spacing:17.709164pt;}
.lsc4{letter-spacing:17.710933pt;}
.lsad{letter-spacing:17.711572pt;}
.lsd0{letter-spacing:17.712676pt;}
.ls18{letter-spacing:17.712990pt;}
.ls115{letter-spacing:17.714452pt;}
.ls33{letter-spacing:17.717137pt;}
.ls75{letter-spacing:17.726582pt;}
.ls74{letter-spacing:17.729145pt;}
.lsf0{letter-spacing:17.946400pt;}
.lse3{letter-spacing:18.010400pt;}
.ls4c{letter-spacing:18.238877pt;}
.ls49{letter-spacing:18.340654pt;}
.lsf5{letter-spacing:18.404492pt;}
.ls13{letter-spacing:18.459657pt;}
.lsa{letter-spacing:18.854323pt;}
.ls9{letter-spacing:18.855786pt;}
.ls11a{letter-spacing:19.046009pt;}
.lsa8{letter-spacing:19.107420pt;}
.lsa6{letter-spacing:19.108267pt;}
.ls76{letter-spacing:19.392473pt;}
.ls78{letter-spacing:19.397806pt;}
.lsfc{letter-spacing:19.645119pt;}
.lse6{letter-spacing:19.649608pt;}
.ls2a{letter-spacing:19.846489pt;}
.lsde{letter-spacing:19.999633pt;}
.ls9c{letter-spacing:20.039115pt;}
.lsab{letter-spacing:20.164898pt;}
.ls2f{letter-spacing:20.321156pt;}
.ls2e{letter-spacing:20.326489pt;}
.lse8{letter-spacing:20.329825pt;}
.ls51{letter-spacing:20.367321pt;}
.lsa9{letter-spacing:20.369146pt;}
.ls2d{letter-spacing:20.370591pt;}
.lsc9{letter-spacing:20.370717pt;}
.lsc0{letter-spacing:20.374479pt;}
.ls73{letter-spacing:20.381258pt;}
.ls29{letter-spacing:20.736990pt;}
.ls4f{letter-spacing:20.860800pt;}
.ls1a{letter-spacing:21.004800pt;}
.ls112{letter-spacing:21.140905pt;}
.ls5b{letter-spacing:21.178421pt;}
.ls103{letter-spacing:21.248882pt;}
.lsfb{letter-spacing:21.421752pt;}
.lsd5{letter-spacing:21.610300pt;}
.lsa5{letter-spacing:21.766479pt;}
.ls84{letter-spacing:21.770028pt;}
.lse5{letter-spacing:21.887541pt;}
.lsa1{letter-spacing:22.193146pt;}
.ls4b{letter-spacing:22.233987pt;}
.lsb9{letter-spacing:22.311786pt;}
.ls117{letter-spacing:22.313248pt;}
.lsb3{letter-spacing:22.314470pt;}
.ls1b{letter-spacing:22.315657pt;}
.lsca{letter-spacing:22.315703pt;}
.lscb{letter-spacing:22.315733pt;}
.ls40{letter-spacing:22.316646pt;}
.ls21{letter-spacing:22.316800pt;}
.lsb4{letter-spacing:22.319565pt;}
.lsb2{letter-spacing:22.319804pt;}
.lsd6{letter-spacing:22.320676pt;}
.ls6e{letter-spacing:22.353386pt;}
.ls5a{letter-spacing:22.490300pt;}
.lse2{letter-spacing:22.595628pt;}
.ls114{letter-spacing:22.923812pt;}
.ls58{letter-spacing:22.970400pt;}
.lsa7{letter-spacing:23.070582pt;}
.ls100{letter-spacing:23.103159pt;}
.ls7d{letter-spacing:23.122133pt;}
.ls1e{letter-spacing:23.147823pt;}
.ls106{letter-spacing:23.168990pt;}
.ls111{letter-spacing:23.439633pt;}
.ls32{letter-spacing:23.673987pt;}
.lse{letter-spacing:23.894489pt;}
.lsdb{letter-spacing:23.970452pt;}
.lsda{letter-spacing:23.974009pt;}
.ls6d{letter-spacing:24.067355pt;}
.lse9{letter-spacing:24.733905pt;}
.lsea{letter-spacing:24.757705pt;}
.lsc3{letter-spacing:24.971812pt;}
.ls1d{letter-spacing:24.974275pt;}
.ls110{letter-spacing:25.010452pt;}
.ls68{letter-spacing:25.274400pt;}
.lsdc{letter-spacing:25.702479pt;}
.lsff{letter-spacing:25.743733pt;}
.ls105{letter-spacing:25.785825pt;}
.ls59{letter-spacing:25.951633pt;}
.ls67{letter-spacing:25.999733pt;}
.ls104{letter-spacing:26.297825pt;}
.lsae{letter-spacing:26.560690pt;}
.ls3a{letter-spacing:26.566024pt;}
.ls11c{letter-spacing:26.660492pt;}
.ls3f{letter-spacing:26.932654pt;}
.lsd4{letter-spacing:27.019812pt;}
.ls118{letter-spacing:27.188905pt;}
.ls113{letter-spacing:27.350479pt;}
.lsd2{letter-spacing:27.377146pt;}
.lsa4{letter-spacing:27.510479pt;}
.ls119{letter-spacing:27.883812pt;}
.lsbe{letter-spacing:28.065103pt;}
.ls11b{letter-spacing:28.459549pt;}
.lsa3{letter-spacing:28.555812pt;}
.lsd1{letter-spacing:28.811812pt;}
.lscf{letter-spacing:29.454582pt;}
.lsfe{letter-spacing:29.489146pt;}
.ls16{letter-spacing:29.675057pt;}
.ls3e{letter-spacing:29.713156pt;}
.lsfd{letter-spacing:30.068492pt;}
.ls102{letter-spacing:31.168882pt;}
.lsee{letter-spacing:32.083661pt;}
.lsf4{letter-spacing:32.738070pt;}
.lsf2{letter-spacing:32.809469pt;}
.ls99{letter-spacing:33.474086pt;}
.lsef{letter-spacing:34.202238pt;}
.lsd{letter-spacing:34.250400pt;}
.lsf8{letter-spacing:35.854712pt;}
.lsf7{letter-spacing:35.878036pt;}
.ls5{letter-spacing:38.256891pt;}
.lsce{letter-spacing:40.870216pt;}
.lsf9{letter-spacing:43.504897pt;}
.lseb{letter-spacing:44.392265pt;}
.ls95{letter-spacing:47.819162pt;}
.ls5d{letter-spacing:53.130238pt;}
.lsb7{letter-spacing:53.133119pt;}
.lsbb{letter-spacing:53.134933pt;}
.lsaf{letter-spacing:55.791321pt;}
.lsba{letter-spacing:55.793146pt;}
.ls3b{letter-spacing:63.758582pt;}
.lsb0{letter-spacing:68.537248pt;}
.lsdf{letter-spacing:88.999925pt;}
.lse0{letter-spacing:113.609825pt;}
.lse1{letter-spacing:153.597258pt;}
.lsf1{letter-spacing:179.818774pt;}
.ls94{letter-spacing:190.896495pt;}
.lsb5{letter-spacing:298.691915pt;}
.ls56{letter-spacing:758.240990pt;}
.ls62{letter-spacing:937.442452pt;}
.ls48{letter-spacing:964.832990pt;}
.lsb1{letter-spacing:992.966323pt;}
.ls28{letter-spacing:1049.691657pt;}
.ls9f{letter-spacing:1684.922028pt;}
.wsbe{word-spacing:-63.761067pt;}
.ws76{word-spacing:-51.238393pt;}
.wscb{word-spacing:-49.150218pt;}
.ws79{word-spacing:-46.035490pt;}
.ws7f{word-spacing:-45.163900pt;}
.wsee{word-spacing:-44.632747pt;}
.ws75{word-spacing:-42.146065pt;}
.ws49{word-spacing:-40.590295pt;}
.wsc4{word-spacing:-35.521290pt;}
.wsb0{word-spacing:-32.063846pt;}
.ws1aa{word-spacing:-29.963522pt;}
.ws71{word-spacing:-29.942197pt;}
.ws72{word-spacing:-29.521250pt;}
.wsa3{word-spacing:-26.689789pt;}
.ws14f{word-spacing:-26.261124pt;}
.wsc6{word-spacing:-24.555981pt;}
.wsb1{word-spacing:-23.886490pt;}
.ws10f{word-spacing:-22.896597pt;}
.ws131{word-spacing:-20.588729pt;}
.ws14{word-spacing:-20.233536pt;}
.ws92{word-spacing:-18.881381pt;}
.wsd0{word-spacing:-18.387098pt;}
.ws154{word-spacing:-18.075893pt;}
.ws12c{word-spacing:-17.725577pt;}
.ws1fa{word-spacing:-17.357760pt;}
.ws134{word-spacing:-16.543891pt;}
.ws165{word-spacing:-16.540629pt;}
.ws1ae{word-spacing:-16.426520pt;}
.ws152{word-spacing:-16.209995pt;}
.wsaa{word-spacing:-15.940267pt;}
.ws167{word-spacing:-14.874667pt;}
.ws155{word-spacing:-14.577333pt;}
.ws168{word-spacing:-14.555754pt;}
.ws1fe{word-spacing:-14.464725pt;}
.ws156{word-spacing:-14.264795pt;}
.ws195{word-spacing:-13.233292pt;}
.ws197{word-spacing:-13.232503pt;}
.ws157{word-spacing:-12.828053pt;}
.wsac{word-spacing:-12.693992pt;}
.ws10b{word-spacing:-12.688659pt;}
.wsdf{word-spacing:-11.955200pt;}
.wsc2{word-spacing:-11.936038pt;}
.ws196{word-spacing:-11.900443pt;}
.ws166{word-spacing:-11.247628pt;}
.ws153{word-spacing:-11.022796pt;}
.ws16b{word-spacing:-9.912587pt;}
.ws12a{word-spacing:-9.153363pt;}
.wsf4{word-spacing:-9.152659pt;}
.ws1af{word-spacing:-9.148030pt;}
.wsff{word-spacing:-9.147325pt;}
.ws128{word-spacing:-9.137363pt;}
.ws144{word-spacing:-9.036030pt;}
.ws1b9{word-spacing:-8.497363pt;}
.ws159{word-spacing:-7.900030pt;}
.ws106{word-spacing:-7.625824pt;}
.ws142{word-spacing:-7.617363pt;}
.ws18e{word-spacing:-5.494697pt;}
.ws1a4{word-spacing:-5.355930pt;}
.wsa0{word-spacing:-5.317589pt;}
.ws1a5{word-spacing:-5.292169pt;}
.ws17e{word-spacing:-5.094697pt;}
.ws13c{word-spacing:-4.972030pt;}
.ws17c{word-spacing:-4.705363pt;}
.ws107{word-spacing:-4.545363pt;}
.wsf3{word-spacing:-4.544659pt;}
.ws13e{word-spacing:-4.456727pt;}
.ws1a8{word-spacing:-3.686697pt;}
.ws81{word-spacing:-3.668406pt;}
.ws186{word-spacing:-3.228030pt;}
.ws1f5{word-spacing:-2.964890pt;}
.ws199{word-spacing:-2.805487pt;}
.ws74{word-spacing:-2.804406pt;}
.ws1b2{word-spacing:-2.172030pt;}
.ws198{word-spacing:-2.167876pt;}
.ws1cd{word-spacing:-1.937363pt;}
.ws1f0{word-spacing:-1.769370pt;}
.ws7{word-spacing:-1.673728pt;}
.ws160{word-spacing:-1.657788pt;}
.ws1b3{word-spacing:-1.633363pt;}
.wsc{word-spacing:-1.434624pt;}
.ws1c0{word-spacing:-1.409363pt;}
.ws189{word-spacing:-1.388030pt;}
.ws3f{word-spacing:-1.275588pt;}
.ws3e{word-spacing:-1.275221pt;}
.ws5f{word-spacing:-1.211460pt;}
.ws203{word-spacing:-1.177848pt;}
.ws3b{word-spacing:-1.147699pt;}
.ws86{word-spacing:-1.083938pt;}
.ws8{word-spacing:-1.052058pt;}
.ws169{word-spacing:-1.020177pt;}
.ws1f1{word-spacing:-0.956416pt;}
.ws1f6{word-spacing:-0.765133pt;}
.ws163{word-spacing:-0.637611pt;}
.ws1c3{word-spacing:-0.580386pt;}
.ws13a{word-spacing:-0.573850pt;}
.ws5{word-spacing:-0.526029pt;}
.ws1a1{word-spacing:-0.382566pt;}
.ws52{word-spacing:-0.255044pt;}
.ws53{word-spacing:-0.246596pt;}
.ws60{word-spacing:-0.191283pt;}
.wsd{word-spacing:-0.143462pt;}
.ws67{word-spacing:-0.063761pt;}
.wsb8{word-spacing:-0.047821pt;}
.wsa1{word-spacing:-0.042507pt;}
.ws184{word-spacing:-0.033363pt;}
.wsb2{word-spacing:-0.031881pt;}
.wsbb{word-spacing:-0.009472pt;}
.ws129{word-spacing:-0.003447pt;}
.wsbd{word-spacing:-0.002859pt;}
.ws4{word-spacing:0.000000pt;}
.ws19a{word-spacing:0.063761pt;}
.ws179{word-spacing:0.158637pt;}
.ws1de{word-spacing:0.191283pt;}
.ws1ec{word-spacing:0.239104pt;}
.ws126{word-spacing:0.318805pt;}
.ws1bc{word-spacing:0.329303pt;}
.ws10{word-spacing:0.382566pt;}
.ws4b{word-spacing:0.446327pt;}
.ws112{word-spacing:0.478208pt;}
.ws177{word-spacing:0.483970pt;}
.ws1ee{word-spacing:0.621670pt;}
.ws16e{word-spacing:0.637611pt;}
.ws11{word-spacing:0.669491pt;}
.ws14d{word-spacing:0.701372pt;}
.ws15e{word-spacing:0.718637pt;}
.ws3a{word-spacing:0.765133pt;}
.ws4f{word-spacing:0.828894pt;}
.ws19c{word-spacing:0.892655pt;}
.ws15f{word-spacing:0.956416pt;}
.ws9{word-spacing:1.004237pt;}
.ws59{word-spacing:1.020177pt;}
.ws158{word-spacing:1.211460pt;}
.ws6{word-spacing:1.243341pt;}
.ws1ed{word-spacing:1.338982pt;}
.ws4e{word-spacing:1.402743pt;}
.ws1e6{word-spacing:1.434624pt;}
.ws51{word-spacing:1.466505pt;}
.ws1ea{word-spacing:1.578086pt;}
.ws1e2{word-spacing:1.625907pt;}
.ws1df{word-spacing:1.673728pt;}
.ws5e{word-spacing:1.721549pt;}
.wsf{word-spacing:1.769370pt;}
.ws6b{word-spacing:1.785310pt;}
.ws2f{word-spacing:1.849071pt;}
.ws69{word-spacing:1.912832pt;}
.ws36{word-spacing:1.976593pt;}
.ws1cc{word-spacing:2.026231pt;}
.ws1cb{word-spacing:2.040354pt;}
.ws1b6{word-spacing:2.083970pt;}
.ws16c{word-spacing:2.295398pt;}
.ws111{word-spacing:2.359159pt;}
.ws1e3{word-spacing:2.391040pt;}
.ws1ba{word-spacing:2.422921pt;}
.ws1b8{word-spacing:2.427819pt;}
.ws4c{word-spacing:2.486682pt;}
.ws73{word-spacing:2.520422pt;}
.ws70{word-spacing:2.549905pt;}
.ws6d{word-spacing:2.550443pt;}
.ws5d{word-spacing:2.614204pt;}
.ws146{word-spacing:2.650394pt;}
.ws147{word-spacing:2.656247pt;}
.ws148{word-spacing:2.677965pt;}
.ws1f2{word-spacing:2.725786pt;}
.ws1fd{word-spacing:2.727634pt;}
.ws1fc{word-spacing:2.737966pt;}
.ws1e{word-spacing:2.741726pt;}
.ws200{word-spacing:2.743132pt;}
.ws201{word-spacing:2.789626pt;}
.ws1d0{word-spacing:2.805487pt;}
.ws1f8{word-spacing:2.821427pt;}
.ws171{word-spacing:2.869248pt;}
.ws4a{word-spacing:2.919706pt;}
.ws48{word-spacing:2.933009pt;}
.ws161{word-spacing:2.996770pt;}
.wsb{word-spacing:3.012710pt;}
.ws1eb{word-spacing:3.108352pt;}
.ws145{word-spacing:3.124292pt;}
.ws114{word-spacing:3.203994pt;}
.ws141{word-spacing:3.251814pt;}
.ws143{word-spacing:3.302750pt;}
.ws140{word-spacing:3.315575pt;}
.ws1f9{word-spacing:3.347456pt;}
.ws11d{word-spacing:3.379337pt;}
.ws1d9{word-spacing:3.395277pt;}
.wse6{word-spacing:3.570620pt;}
.ws40{word-spacing:3.634381pt;}
.ws1c{word-spacing:3.698142pt;}
.ws17b{word-spacing:3.708041pt;}
.wsa{word-spacing:3.730022pt;}
.ws1a9{word-spacing:3.761903pt;}
.ws1e0{word-spacing:3.777843pt;}
.wse{word-spacing:3.825664pt;}
.ws191{word-spacing:3.873485pt;}
.ws28{word-spacing:3.953186pt;}
.ws1dc{word-spacing:3.969126pt;}
.ws173{word-spacing:4.080708pt;}
.ws29{word-spacing:4.144469pt;}
.ws35{word-spacing:4.208230pt;}
.ws18c{word-spacing:4.271991pt;}
.ws2a{word-spacing:4.335753pt;}
.wsa4{word-spacing:4.370569pt;}
.ws1c2{word-spacing:4.375322pt;}
.ws1f{word-spacing:4.399514pt;}
.ws110{word-spacing:4.463275pt;}
.ws14a{word-spacing:4.480324pt;}
.ws64{word-spacing:4.527036pt;}
.ws182{word-spacing:4.590797pt;}
.ws1c4{word-spacing:4.652655pt;}
.ws170{word-spacing:4.654558pt;}
.ws1d8{word-spacing:4.686438pt;}
.ws41{word-spacing:4.718319pt;}
.wsd5{word-spacing:4.776422pt;}
.wsce{word-spacing:4.779904pt;}
.wsd2{word-spacing:4.779989pt;}
.ws1e9{word-spacing:4.780126pt;}
.wsd7{word-spacing:4.780621pt;}
.wsaf{word-spacing:4.781867pt;}
.ws12{word-spacing:4.782080pt;}
.ws80{word-spacing:4.791902pt;}
.ws1e7{word-spacing:4.829901pt;}
.ws117{word-spacing:4.845841pt;}
.ws9f{word-spacing:4.909602pt;}
.ws9e{word-spacing:4.924134pt;}
.ws38{word-spacing:4.973363pt;}
.wsb5{word-spacing:5.021184pt;}
.ws78{word-spacing:5.037124pt;}
.ws88{word-spacing:5.043780pt;}
.ws89{word-spacing:5.046630pt;}
.ws1e4{word-spacing:5.069005pt;}
.ws87{word-spacing:5.100885pt;}
.ws1e8{word-spacing:5.116826pt;}
.wsc9{word-spacing:5.132766pt;}
.ws1f3{word-spacing:5.164646pt;}
.ws150{word-spacing:5.252971pt;}
.ws15c{word-spacing:5.283770pt;}
.ws1d4{word-spacing:5.308109pt;}
.ws25{word-spacing:5.355930pt;}
.ws18d{word-spacing:5.419691pt;}
.ws18f{word-spacing:5.429581pt;}
.ws192{word-spacing:5.499392pt;}
.ws19b{word-spacing:5.547213pt;}
.ws149{word-spacing:5.610974pt;}
.ws5c{word-spacing:5.738496pt;}
.ws17f{word-spacing:5.802257pt;}
.ws17d{word-spacing:5.831484pt;}
.ws1ff{word-spacing:5.889240pt;}
.ws13b{word-spacing:5.929779pt;}
.ws13d{word-spacing:5.946914pt;}
.ws30{word-spacing:5.993540pt;}
.ws16f{word-spacing:6.057301pt;}
.wsb7{word-spacing:6.073242pt;}
.ws32{word-spacing:6.121062pt;}
.ws82{word-spacing:6.184823pt;}
.ws190{word-spacing:6.248585pt;}
.ws94{word-spacing:6.312346pt;}
.ws115{word-spacing:6.360166pt;}
.ws90{word-spacing:6.370799pt;}
.wsf7{word-spacing:6.371106pt;}
.ws7e{word-spacing:6.371319pt;}
.ws101{word-spacing:6.371439pt;}
.wsfa{word-spacing:6.372181pt;}
.ws7d{word-spacing:6.373530pt;}
.ws100{word-spacing:6.373598pt;}
.ws108{word-spacing:6.373965pt;}
.ws91{word-spacing:6.374545pt;}
.wsf2{word-spacing:6.374801pt;}
.ws10d{word-spacing:6.374818pt;}
.ws176{word-spacing:6.375253pt;}
.wsfe{word-spacing:6.375706pt;}
.ws1d{word-spacing:6.376107pt;}
.ws105{word-spacing:6.376875pt;}
.ws109{word-spacing:6.377515pt;}
.ws123{word-spacing:6.377600pt;}
.ws10e{word-spacing:6.379494pt;}
.ws1bb{word-spacing:6.380083pt;}
.ws22{word-spacing:6.439868pt;}
.ws62{word-spacing:6.503629pt;}
.ws1d7{word-spacing:6.551450pt;}
.ws1d6{word-spacing:6.599270pt;}
.ws4d{word-spacing:6.631151pt;}
.ws39{word-spacing:6.694912pt;}
.ws21{word-spacing:6.758673pt;}
.ws11c{word-spacing:6.822434pt;}
.ws7b{word-spacing:6.865536pt;}
.ws7a{word-spacing:6.871902pt;}
.ws7c{word-spacing:6.886195pt;}
.wsf0{word-spacing:6.949956pt;}
.wsf1{word-spacing:7.013717pt;}
.ws122{word-spacing:7.077478pt;}
.ws1c6{word-spacing:7.095902pt;}
.wsed{word-spacing:7.132134pt;}
.wsec{word-spacing:7.141239pt;}
.ws120{word-spacing:7.205001pt;}
.ws14b{word-spacing:7.220941pt;}
.ws1a7{word-spacing:7.268762pt;}
.ws1db{word-spacing:7.316582pt;}
.ws99{word-spacing:7.332523pt;}
.ws15b{word-spacing:7.342637pt;}
.wsae{word-spacing:7.396284pt;}
.ws1d5{word-spacing:7.412224pt;}
.wse5{word-spacing:7.460045pt;}
.ws96{word-spacing:7.523806pt;}
.wsb6{word-spacing:7.603507pt;}
.ws93{word-spacing:7.603652pt;}
.ws1e1{word-spacing:7.651328pt;}
.ws185{word-spacing:7.691878pt;}
.ws187{word-spacing:7.695565pt;}
.wsa7{word-spacing:7.715089pt;}
.wsb9{word-spacing:7.746970pt;}
.ws43{word-spacing:7.795862pt;}
.ws63{word-spacing:7.842611pt;}
.ws1c7{word-spacing:7.906372pt;}
.ws66{word-spacing:7.970133pt;}
.ws1e5{word-spacing:7.986074pt;}
.ws121{word-spacing:8.023066pt;}
.ws24{word-spacing:8.033894pt;}
.ws54{word-spacing:8.097655pt;}
.ws1ef{word-spacing:8.129536pt;}
.ws5a{word-spacing:8.161417pt;}
.ws5b{word-spacing:8.186035pt;}
.ws31{word-spacing:8.225178pt;}
.ws1ad{word-spacing:8.226415pt;}
.ws65{word-spacing:8.288939pt;}
.ws8f{word-spacing:8.319642pt;}
.ws1f7{word-spacing:8.320819pt;}
.ws8d{word-spacing:8.322569pt;}
.ws8e{word-spacing:8.352700pt;}
.ws9c{word-spacing:8.389717pt;}
.ws9b{word-spacing:8.401092pt;}
.ws9d{word-spacing:8.416461pt;}
.ws11a{word-spacing:8.426701pt;}
.ws202{word-spacing:8.436034pt;}
.ws204{word-spacing:8.472196pt;}
.ws77{word-spacing:8.480222pt;}
.wsf5{word-spacing:8.607744pt;}
.ws2b{word-spacing:8.671505pt;}
.ws1b1{word-spacing:8.735266pt;}
.ws119{word-spacing:8.799027pt;}
.ws42{word-spacing:8.862788pt;}
.ws1a0{word-spacing:8.926549pt;}
.ws1ce{word-spacing:8.986914pt;}
.ws23{word-spacing:8.990310pt;}
.ws138{word-spacing:9.009485pt;}
.wsba{word-spacing:9.038131pt;}
.ws1ac{word-spacing:9.054071pt;}
.ws46{word-spacing:9.181594pt;}
.ws1d3{word-spacing:9.277235pt;}
.ws37{word-spacing:9.309116pt;}
.ws1d2{word-spacing:9.325056pt;}
.wsb4{word-spacing:9.372877pt;}
.ws1c1{word-spacing:9.398460pt;}
.ws26{word-spacing:9.436638pt;}
.ws33{word-spacing:9.627921pt;}
.ws50{word-spacing:9.691682pt;}
.ws135{word-spacing:9.755443pt;}
.ws104{word-spacing:9.819204pt;}
.ws15d{word-spacing:9.825033pt;}
.ws1f4{word-spacing:9.851085pt;}
.ws15a{word-spacing:9.882965pt;}
.ws27{word-spacing:9.946726pt;}
.wse8{word-spacing:9.957581pt;}
.ws1be{word-spacing:10.010487pt;}
.ws181{word-spacing:10.138010pt;}
.wse9{word-spacing:10.201771pt;}
.wseb{word-spacing:10.265532pt;}
.ws174{word-spacing:10.329293pt;}
.ws44{word-spacing:10.456815pt;}
.ws16d{word-spacing:10.520576pt;}
.ws1bf{word-spacing:10.555853pt;}
.ws18b{word-spacing:10.568678pt;}
.ws188{word-spacing:10.584337pt;}
.ws1b0{word-spacing:10.648098pt;}
.ws1da{word-spacing:10.664038pt;}
.ws56{word-spacing:10.689647pt;}
.ws55{word-spacing:10.711859pt;}
.ws2c{word-spacing:10.775620pt;}
.ws11b{word-spacing:10.839381pt;}
.wsca{word-spacing:10.855322pt;}
.ws183{word-spacing:10.887467pt;}
.ws175{word-spacing:10.903142pt;}
.ws98{word-spacing:10.966903pt;}
.wse7{word-spacing:11.030665pt;}
.ws47{word-spacing:11.094426pt;}
.ws6f{word-spacing:11.349470pt;}
.ws178{word-spacing:11.386266pt;}
.ws13f{word-spacing:11.413231pt;}
.ws1a6{word-spacing:11.476992pt;}
.ws2e{word-spacing:11.540753pt;}
.ws1a{word-spacing:11.668275pt;}
.wsc5{word-spacing:11.679048pt;}
.ws20{word-spacing:11.732036pt;}
.ws1fb{word-spacing:11.778419pt;}
.ws6e{word-spacing:11.795797pt;}
.wse3{word-spacing:11.954133pt;}
.wsc0{word-spacing:11.955200pt;}
.ws1c9{word-spacing:12.050842pt;}
.ws97{word-spacing:12.114603pt;}
.ws162{word-spacing:12.242125pt;}
.ws180{word-spacing:12.369647pt;}
.ws1b5{word-spacing:12.433408pt;}
.ws1c8{word-spacing:12.560930pt;}
.ws3c{word-spacing:12.688452pt;}
.ws9a{word-spacing:12.815974pt;}
.ws57{word-spacing:12.879735pt;}
.ws18{word-spacing:12.943497pt;}
.ws95{word-spacing:13.134780pt;}
.ws136{word-spacing:13.262302pt;}
.ws19e{word-spacing:13.326063pt;}
.ws19{word-spacing:13.389824pt;}
.ws1dd{word-spacing:13.533286pt;}
.wsbf{word-spacing:13.581107pt;}
.ws1d1{word-spacing:13.644868pt;}
.ws84{word-spacing:13.778480pt;}
.ws83{word-spacing:13.792816pt;}
.wse4{word-spacing:13.836151pt;}
.ws58{word-spacing:13.899913pt;}
.ws1cf{word-spacing:14.027435pt;}
.wsa2{word-spacing:14.091196pt;}
.ws10c{word-spacing:14.101144pt;}
.ws1b{word-spacing:14.154957pt;}
.ws194{word-spacing:14.293510pt;}
.ws193{word-spacing:14.294908pt;}
.ws124{word-spacing:14.346240pt;}
.wsdb{word-spacing:14.400346pt;}
.ws3d{word-spacing:14.410001pt;}
.ws2d{word-spacing:14.601284pt;}
.ws19f{word-spacing:14.665045pt;}
.ws113{word-spacing:15.046332pt;}
.ws1ca{word-spacing:15.047612pt;}
.ws125{word-spacing:15.111373pt;}
.ws34{word-spacing:15.366417pt;}
.ws6a{word-spacing:15.621461pt;}
.ws15{word-spacing:15.698113pt;}
.ws45{word-spacing:16.067789pt;}
.wscd{word-spacing:16.274828pt;}
.wsd8{word-spacing:16.276584pt;}
.wsc8{word-spacing:16.687232pt;}
.wsd9{word-spacing:16.689459pt;}
.wscf{word-spacing:16.689562pt;}
.wsad{word-spacing:16.769161pt;}
.ws1ab{word-spacing:16.784134pt;}
.wsda{word-spacing:17.136346pt;}
.ws1{word-spacing:17.151031pt;}
.ws16{word-spacing:17.279249pt;}
.ws17{word-spacing:17.343010pt;}
.ws11e{word-spacing:17.626020pt;}
.ws8a{word-spacing:17.629891pt;}
.wsa5{word-spacing:17.631353pt;}
.wsbc{word-spacing:17.657059pt;}
.ws85{word-spacing:17.661815pt;}
.ws127{word-spacing:17.662251pt;}
.wsc1{word-spacing:17.886242pt;}
.ws14e{word-spacing:18.363187pt;}
.ws172{word-spacing:18.741144pt;}
.ws1c5{word-spacing:19.000798pt;}
.ws6c{word-spacing:19.192081pt;}
.wsb3{word-spacing:19.359251pt;}
.ws0{word-spacing:19.734018pt;}
.wsf6{word-spacing:19.923200pt;}
.wsa8{word-spacing:20.148497pt;}
.wsa6{word-spacing:20.245144pt;}
.wsfc{word-spacing:20.320134pt;}
.ws10a{word-spacing:20.325467pt;}
.wsef{word-spacing:20.607811pt;}
.ws1b4{word-spacing:21.821402pt;}
.wsf8{word-spacing:22.249643pt;}
.ws19d{word-spacing:22.250477pt;}
.ws103{word-spacing:22.252612pt;}
.ws139{word-spacing:22.507657pt;}
.ws12b{word-spacing:23.006437pt;}
.ws3{word-spacing:23.185008pt;}
.wsea{word-spacing:24.803055pt;}
.ws137{word-spacing:24.890477pt;}
.ws18a{word-spacing:25.376905pt;}
.wsa9{word-spacing:26.277467pt;}
.ws68{word-spacing:26.496009pt;}
.ws17a{word-spacing:26.970931pt;}
.ws1bd{word-spacing:27.368069pt;}
.ws1b7{word-spacing:28.883763pt;}
.wsdd{word-spacing:33.422857pt;}
.ws118{word-spacing:37.300224pt;}
.ws130{word-spacing:39.027970pt;}
.ws12f{word-spacing:39.537940pt;}
.ws2{word-spacing:40.071457pt;}
.ws61{word-spacing:46.035490pt;}
.ws132{word-spacing:49.287921pt;}
.ws1a3{word-spacing:49.943245pt;}
.ws16a{word-spacing:50.132032pt;}
.ws14c{word-spacing:51.154574pt;}
.wsab{word-spacing:55.749467pt;}
.ws13{word-spacing:57.427330pt;}
.ws12e{word-spacing:68.275970pt;}
.ws8b{word-spacing:70.134161pt;}
.wsfb{word-spacing:70.139494pt;}
.wsc3{word-spacing:81.875200pt;}
.wse2{word-spacing:83.687467pt;}
.wsc7{word-spacing:83.688533pt;}
.ws133{word-spacing:85.006637pt;}
.ws12d{word-spacing:112.577357pt;}
.ws1a2{word-spacing:113.709867pt;}
.wsf9{word-spacing:115.565867pt;}
.ws116{word-spacing:130.826016pt;}
.ws164{word-spacing:146.195364pt;}
.ws151{word-spacing:147.401330pt;}
.wse0{word-spacing:153.607467pt;}
.wscc{word-spacing:155.416533pt;}
.wsd3{word-spacing:155.420800pt;}
.wsde{word-spacing:233.538133pt;}
.wsd6{word-spacing:315.618133pt;}
.wsfd{word-spacing:889.844675pt;}
.ws102{word-spacing:1002.570008pt;}
.ws11f{word-spacing:1110.337442pt;}
.ws8c{word-spacing:1226.736802pt;}
.wse1{word-spacing:1421.212232pt;}
.wsdc{word-spacing:1528.226828pt;}
.wsd1{word-spacing:1788.480435pt;}
.wsd4{word-spacing:2097.102618pt;}
._15{margin-left:-39.631044pt;}
._13{margin-left:-38.429500pt;}
._17{margin-left:-30.940058pt;}
._21{margin-left:-30.037041pt;}
._51{margin-left:-28.635720pt;}
._58{margin-left:-26.961181pt;}
._1f{margin-left:-25.635557pt;}
._20{margin-left:-23.932919pt;}
._1e{margin-left:-22.762701pt;}
._1c{margin-left:-9.266287pt;}
._44{margin-left:-8.328002pt;}
._a{margin-left:-7.077478pt;}
._4{margin-left:-6.095889pt;}
._43{margin-left:-5.173923pt;}
._1{margin-left:-4.282592pt;}
._2{margin-left:-3.321431pt;}
._0{margin-left:-1.653111pt;}
._6{width:1.115816pt;}
._3{width:2.771751pt;}
._5{width:3.959039pt;}
._e{width:5.284283pt;}
._11{width:7.124169pt;}
._f{width:8.534823pt;}
._16{width:10.648098pt;}
._22{width:14.488151pt;}
._18{width:16.737280pt;}
._10{width:18.592273pt;}
._b{width:20.781431pt;}
._9{width:21.801609pt;}
._14{width:22.769039pt;}
._1d{width:23.910400pt;}
._1b{width:25.792261pt;}
._52{width:26.902494pt;}
._8{width:27.986432pt;}
._d{width:29.978121pt;}
._7{width:32.385946pt;}
._12{width:33.474560pt;}
._19{width:34.765722pt;}
._53{width:36.471330pt;}
._45{width:37.937835pt;}
._56{width:45.415809pt;}
._57{width:46.946441pt;}
._25{width:48.198690pt;}
._55{width:52.597941pt;}
._54{width:55.806874pt;}
._1a{width:58.723942pt;}
._c{width:63.761067pt;}
._27{width:65.882505pt;}
._40{width:72.179234pt;}
._49{width:76.942259pt;}
._48{width:79.149269pt;}
._2a{width:80.222933pt;}
._28{width:81.823787pt;}
._29{width:84.846933pt;}
._3d{width:93.156898pt;}
._3c{width:94.901333pt;}
._2f{width:96.717610pt;}
._30{width:97.762987pt;}
._2b{width:104.853333pt;}
._4b{width:108.708702pt;}
._33{width:112.862268pt;}
._3b{width:124.697600pt;}
._38{width:128.180429pt;}
._26{width:129.675895pt;}
._34{width:136.622933pt;}
._3f{width:142.399198pt;}
._2d{width:152.224000pt;}
._35{width:153.812326pt;}
._2c{width:155.968000pt;}
._36{width:157.420186pt;}
._37{width:159.752371pt;}
._39{width:160.665600pt;}
._4d{width:163.256585pt;}
._23{width:167.372800pt;}
._4e{width:169.572898pt;}
._3e{width:172.490667pt;}
._32{width:176.135467pt;}
._31{width:179.877333pt;}
._3a{width:180.847044pt;}
._42{width:182.376909pt;}
._46{width:184.658410pt;}
._47{width:195.097335pt;}
._2e{width:196.133171pt;}
._4c{width:201.863654pt;}
._4a{width:204.294033pt;}
._50{width:220.169711pt;}
._41{width:221.332932pt;}
._24{width:239.104000pt;}
._4f{width:261.010304pt;}
.fs1f{font-size:14.017886pt;}
.fs1e{font-size:28.151746pt;}
.fs11{font-size:28.725956pt;}
.fsd{font-size:31.880533pt;}
.fs14{font-size:37.784448pt;}
.fse{font-size:38.256533pt;}
.fs1a{font-size:38.555136pt;}
.fs17{font-size:39.650347pt;}
.fs12{font-size:40.459093pt;}
.fs3{font-size:42.507200pt;}
.fs10{font-size:44.064000pt;}
.fs15{font-size:44.315093pt;}
.fs1b{font-size:45.218987pt;}
.fs20{font-size:47.598933pt;}
.fs21{font-size:47.601771pt;}
.fs6{font-size:47.820800pt;}
.fsa{font-size:51.008533pt;}
.fs19{font-size:51.312213pt;}
.fs0{font-size:51.659733pt;}
.fs1d{font-size:52.358827pt;}
.fsc{font-size:53.133867pt;}
.fsf{font-size:53.856000pt;}
.fs16{font-size:58.309333pt;}
.fs7{font-size:58.447467pt;}
.fs13{font-size:59.498667pt;}
.fs8{font-size:59.510400pt;}
.fs2{font-size:61.992000pt;}
.fsb{font-size:63.761067pt;}
.fs18{font-size:72.303573pt;}
.fs1c{font-size:73.778347pt;}
.fs5{font-size:74.387733pt;}
.fs1{font-size:107.142933pt;}
.fs4{font-size:127.521600pt;}
.fs9{font-size:180.146133pt;}
.y172{bottom:-2.492994pt;}
.y1e3{bottom:-2.443161pt;}
.y0{bottom:0.000000pt;}
.y1f5{bottom:6.297408pt;}
.y185{bottom:6.425856pt;}
.y12d{bottom:6.609600pt;}
.y1a0{bottom:9.749321pt;}
.y1db{bottom:9.948177pt;}
.y192{bottom:12.833884pt;}
.y24f{bottom:17.266513pt;}
.y12c{bottom:18.482400pt;}
.y1f4{bottom:18.863069pt;}
.y184{bottom:19.247819pt;}
.y248{bottom:22.151354pt;}
.y1ce{bottom:22.222752pt;}
.y24c{bottom:22.234652pt;}
.y19f{bottom:24.011783pt;}
.y1da{bottom:24.501551pt;}
.y1e4{bottom:24.828114pt;}
.y24a{bottom:25.465429pt;}
.y1ab{bottom:26.169229pt;}
.y247{bottom:26.393609pt;}
.y1e9{bottom:26.554070pt;}
.y1f{bottom:26.749333pt;}
.y179{bottom:27.095693pt;}
.y191{bottom:27.125502pt;}
.y127{bottom:27.650160pt;}
.y24d{bottom:30.695362pt;}
.y24e{bottom:31.629491pt;}
.y24b{bottom:33.682195pt;}
.y1ac{bottom:33.877723pt;}
.y249{bottom:34.003488pt;}
.y1fd{bottom:37.895236pt;}
.y1e{bottom:40.697333pt;}
.y1d{bottom:41.057333pt;}
.y173{bottom:43.779119pt;}
.y1aa{bottom:44.460867pt;}
.y190{bottom:44.530838pt;}
.y1dc{bottom:45.349884pt;}
.y196{bottom:45.697025pt;}
.y1b1{bottom:46.035219pt;}
.y1d1{bottom:47.206242pt;}
.y1ea{bottom:47.895286pt;}
.y1a1{bottom:48.087707pt;}
.y17a{bottom:48.872205pt;}
.y1a6{bottom:52.449245pt;}
.y1ff{bottom:52.769947pt;}
.y1fc{bottom:52.857411pt;}
.y23d{bottom:54.833971pt;}
.y237{bottom:56.642731pt;}
.y1ad{bottom:59.300592pt;}
.y1bc{bottom:59.772898pt;}
.y60{bottom:60.616000pt;}
.y125{bottom:65.406667pt;}
.y236{bottom:66.114918pt;}
.y1a5{bottom:67.207338pt;}
.y1fe{bottom:67.644658pt;}
.y1cd{bottom:68.298519pt;}
.y1cb{bottom:68.445333pt;}
.y1fb{bottom:68.507636pt;}
.y170{bottom:68.724000pt;}
.y197{bottom:68.746704pt;}
.y189{bottom:69.024403pt;}
.y1b2{bottom:69.044082pt;}
.y2d3{bottom:69.201333pt;}
.y1eb{bottom:69.230671pt;}
.y17b{bottom:70.642767pt;}
.y1d2{bottom:70.654667pt;}
.y30{bottom:71.124000pt;}
.y239{bottom:71.374601pt;}
.y193{bottom:72.186955pt;}
.y1e5{bottom:74.408540pt;}
.yd5{bottom:74.564000pt;}
.y1bb{bottom:74.647609pt;}
.y23e{bottom:75.878650pt;}
.y1a9{bottom:78.396899pt;}
.y250{bottom:78.919031pt;}
.y5f{bottom:79.106667pt;}
.y124{bottom:79.354667pt;}
.y238{bottom:79.787712pt;}
.y20e{bottom:80.822667pt;}
.y1a4{bottom:82.087879pt;}
.y1fa{bottom:82.519369pt;}
.y16f{bottom:82.672000pt;}
.y2d2{bottom:83.149333pt;}
.y128{bottom:83.421720pt;}
.y101{bottom:85.286667pt;}
.y188{bottom:85.344887pt;}
.y1cf{bottom:85.648331pt;}
.y174{bottom:88.415019pt;}
.y1ba{bottom:89.522319pt;}
.yd4{bottom:89.906667pt;}
.y1ec{bottom:90.571887pt;}
.y198{bottom:91.796383pt;}
.ya8{bottom:91.989333pt;}
.y2f{bottom:92.046667pt;}
.y1b3{bottom:92.052945pt;}
.y17c{bottom:92.419279pt;}
.y123{bottom:93.302667pt;}
.y1d3{bottom:94.103091pt;}
.y18f{bottom:94.315347pt;}
.y1f6{bottom:95.965501pt;}
.y23f{bottom:96.917378pt;}
.y1a3{bottom:96.962590pt;}
.y2d1{bottom:97.097333pt;}
.y28c{bottom:97.384000pt;}
.y1f9{bottom:97.394079pt;}
.y26a{bottom:97.437333pt;}
.y8c{bottom:97.593333pt;}
.y14c{bottom:97.597333pt;}
.y186{bottom:97.922906pt;}
.y187{bottom:97.994304pt;}
.y20d{bottom:99.313333pt;}
.y1ca{bottom:100.740000pt;}
.y5e{bottom:102.828000pt;}
.yd3{bottom:103.853333pt;}
.y1ae{bottom:105.195868pt;}
.y1b9{bottom:105.726483pt;}
.y2e{bottom:105.993333pt;}
.y122{bottom:107.249333pt;}
.ya7{bottom:110.480000pt;}
.y2d0{bottom:111.045333pt;}
.y1ed{bottom:111.907273pt;}
.y1a2{bottom:113.166754pt;}
.y1f8{bottom:113.388330pt;}
.y194{bottom:113.563258pt;}
.y17d{bottom:114.189841pt;}
.y199{bottom:114.846063pt;}
.y16e{bottom:114.966667pt;}
.y1b4{bottom:115.061807pt;}
.y100{bottom:115.094667pt;}
.y28b{bottom:115.874667pt;}
.y269{bottom:115.928000pt;}
.y8b{bottom:116.084000pt;}
.y14b{bottom:116.088000pt;}
.y1d4{bottom:117.551516pt;}
.yd2{bottom:117.801333pt;}
.y20c{bottom:117.804000pt;}
.y240{bottom:117.956107pt;}
.y1c9{bottom:119.230667pt;}
.y302{bottom:120.872000pt;}
.yff{bottom:124.053333pt;}
.y175{bottom:124.887701pt;}
.y2cf{bottom:124.992000pt;}
.y1f7{bottom:125.784894pt;}
.ya6{bottom:128.784000pt;}
.y12e{bottom:132.436800pt;}
.yd1{bottom:133.144000pt;}
.y1ee{bottom:133.248489pt;}
.y16d{bottom:133.457333pt;}
.y1a8{bottom:133.499219pt;}
.y1e6{bottom:133.639161pt;}
.y1af{bottom:134.070650pt;}
.y28a{bottom:134.365333pt;}
.y268{bottom:134.418667pt;}
.y14a{bottom:134.434667pt;}
.y8a{bottom:134.574667pt;}
.y2b0{bottom:134.578667pt;}
.y301{bottom:134.820000pt;}
.y17e{bottom:135.966353pt;}
.y20b{bottom:136.294667pt;}
.y1c8{bottom:137.721333pt;}
.y19a{bottom:137.895742pt;}
.y18e{bottom:137.994868pt;}
.y1b5{bottom:138.064839pt;}
.y2ce{bottom:138.940000pt;}
.y241{bottom:138.994835pt;}
.y129{bottom:139.193280pt;}
.y121{bottom:139.544000pt;}
.y1d5{bottom:140.993990pt;}
.y176{bottom:143.391787pt;}
.y2d{bottom:143.868000pt;}
.yd0{bottom:147.092000pt;}
.ya5{bottom:147.274667pt;}
.y5d{bottom:147.788000pt;}
.y300{bottom:148.768000pt;}
.y16c{bottom:151.948000pt;}
.yfe{bottom:152.458667pt;}
.y289{bottom:152.856000pt;}
.y2cd{bottom:152.888000pt;}
.y149{bottom:152.925333pt;}
.y89{bottom:153.065333pt;}
.y2af{bottom:153.069333pt;}
.y1ef{bottom:154.583874pt;}
.y20a{bottom:154.785333pt;}
.y1c7{bottom:156.212000pt;}
.y23a{bottom:157.635767pt;}
.y17f{bottom:157.736915pt;}
.y267{bottom:157.981333pt;}
.y120{bottom:158.034667pt;}
.y1e1{bottom:159.218432pt;}
.y234{bottom:159.865333pt;}
.y242{bottom:160.033564pt;}
.y19b{bottom:160.945422pt;}
.ycf{bottom:161.040000pt;}
.y1b6{bottom:161.073702pt;}
.y2c{bottom:162.358667pt;}
.y2ff{bottom:162.716000pt;}
.y1d6{bottom:164.442415pt;}
.y5c{bottom:166.278667pt;}
.y2cc{bottom:166.836000pt;}
.y177{bottom:168.976213pt;}
.y1a7{bottom:169.161207pt;}
.y1e7{bottom:170.129142pt;}
.y16b{bottom:170.438667pt;}
.yfd{bottom:170.949333pt;}
.y288{bottom:171.346667pt;}
.y148{bottom:171.416000pt;}
.y88{bottom:171.556000pt;}
.y2ae{bottom:171.560000pt;}
.ya4{bottom:172.513333pt;}
.y209{bottom:173.276000pt;}
.y233{bottom:173.813333pt;}
.y1e0{bottom:174.396542pt;}
.y1c6{bottom:174.702667pt;}
.yce{bottom:174.988000pt;}
.y1f0{bottom:175.925090pt;}
.y11f{bottom:176.525333pt;}
.y2fe{bottom:176.662667pt;}
.y23c{bottom:177.627319pt;}
.y23b{bottom:178.674496pt;}
.y180{bottom:179.513427pt;}
.y2cb{bottom:180.782667pt;}
.y2b{bottom:180.849333pt;}
.y243{bottom:181.072292pt;}
.y266{bottom:181.545333pt;}
.y19c{bottom:183.995101pt;}
.y1b7{bottom:184.082565pt;}
.y5b{bottom:184.769333pt;}
.y232{bottom:187.761333pt;}
.y1d7{bottom:187.890839pt;}
.ya1{bottom:188.394667pt;}
.yfc{bottom:189.440000pt;}
.y1df{bottom:189.574652pt;}
.y147{bottom:189.906667pt;}
.y87{bottom:190.046667pt;}
.y2ad{bottom:190.050667pt;}
.ycd{bottom:190.329333pt;}
.y208{bottom:191.766667pt;}
.y1b0{bottom:193.085526pt;}
.y1c5{bottom:193.193333pt;}
.y16a{bottom:194.162667pt;}
.y18d{bottom:194.694864pt;}
.y2ca{bottom:194.730667pt;}
.y12a{bottom:194.964840pt;}
.y11e{bottom:195.016000pt;}
.y131{bottom:195.099480pt;}
.y1f1{bottom:197.266306pt;}
.y1d0{bottom:198.666048pt;}
.y2a{bottom:199.340000pt;}
.y287{bottom:200.972000pt;}
.y181{bottom:201.289939pt;}
.ya3{bottom:201.678667pt;}
.y244{bottom:202.116971pt;}
.y5a{bottom:203.260000pt;}
.y1de{bottom:204.752762pt;}
.ya2{bottom:205.662667pt;}
.y130{bottom:205.674840pt;}
.y19d{bottom:207.044781pt;}
.y1b8{bottom:207.085597pt;}
.yfb{bottom:207.930667pt;}
.y86{bottom:208.537333pt;}
.y2ac{bottom:208.540000pt;}
.y2c9{bottom:208.678667pt;}
.y207{bottom:210.257333pt;}
.y1d8{bottom:211.339264pt;}
.y1c4{bottom:211.684000pt;}
.y146{bottom:213.486667pt;}
.y12f{bottom:216.250200pt;}
.y29{bottom:217.830667pt;}
.y1f2{bottom:218.601691pt;}
.y11d{bottom:218.740000pt;}
.ycc{bottom:218.916000pt;}
.y286{bottom:219.462667pt;}
.y231{bottom:220.056000pt;}
.y1dd{bottom:221.287441pt;}
.y59{bottom:221.750667pt;}
.y2c8{bottom:222.626667pt;}
.y182{bottom:223.060501pt;}
.y245{bottom:223.155699pt;}
.y265{bottom:223.989333pt;}
.yfa{bottom:226.421333pt;}
.y85{bottom:227.028000pt;}
.y2ab{bottom:227.030667pt;}
.ya0{bottom:228.224000pt;}
.y206{bottom:228.748000pt;}
.y19e{bottom:230.094460pt;}
.y1c3{bottom:230.174667pt;}
.y1d9{bottom:234.787689pt;}
.y28{bottom:236.321333pt;}
.y2c7{bottom:236.574667pt;}
.ycb{bottom:237.406667pt;}
.y285{bottom:237.953333pt;}
.y230{bottom:238.546667pt;}
.y169{bottom:238.818667pt;}
.y1f3{bottom:239.942907pt;}
.y58{bottom:240.238667pt;}
.y264{bottom:242.480000pt;}
.y246{bottom:244.194428pt;}
.y183{bottom:244.837013pt;}
.yf9{bottom:244.912000pt;}
.y84{bottom:245.518667pt;}
.y2aa{bottom:245.521333pt;}
.y9f{bottom:246.528000pt;}
.y2c6{bottom:250.521333pt;}
.y12b{bottom:250.736400pt;}
.y27{bottom:254.812000pt;}
.y145{bottom:255.844000pt;}
.yca{bottom:255.897333pt;}
.y284{bottom:256.444000pt;}
.y22f{bottom:257.037333pt;}
.y168{bottom:257.309333pt;}
.y57{bottom:258.729333pt;}
.y263{bottom:260.970667pt;}
.y11c{bottom:263.396000pt;}
.yf8{bottom:263.402667pt;}
.y83{bottom:264.009333pt;}
.y2a9{bottom:264.012000pt;}
.y2c5{bottom:264.469333pt;}
.y9e{bottom:265.018667pt;}
.y26{bottom:273.302667pt;}
.y144{bottom:274.334667pt;}
.yc9{bottom:274.388000pt;}
.y283{bottom:274.934667pt;}
.y22e{bottom:275.528000pt;}
.y167{bottom:275.800000pt;}
.y56{bottom:277.220000pt;}
.y2c4{bottom:278.417333pt;}
.y205{bottom:279.445333pt;}
.y262{bottom:279.461333pt;}
.y1c2{bottom:279.668000pt;}
.yf7{bottom:281.893333pt;}
.y82{bottom:282.500000pt;}
.y2a8{bottom:282.502667pt;}
.y9d{bottom:283.509333pt;}
.y25{bottom:291.793333pt;}
.y2c3{bottom:292.365333pt;}
.y143{bottom:292.825333pt;}
.yc8{bottom:292.878667pt;}
.y282{bottom:293.425333pt;}
.y22d{bottom:294.018667pt;}
.y166{bottom:294.290667pt;}
.y55{bottom:295.710667pt;}
.y204{bottom:297.936000pt;}
.y261{bottom:297.952000pt;}
.y1c1{bottom:298.158667pt;}
.yf6{bottom:300.384000pt;}
.y2a7{bottom:300.993333pt;}
.y9c{bottom:306.066667pt;}
.y81{bottom:306.224000pt;}
.y2c2{bottom:306.312000pt;}
.y2fd{bottom:306.656000pt;}
.y24{bottom:310.284000pt;}
.y142{bottom:311.316000pt;}
.y281{bottom:311.702667pt;}
.y22c{bottom:312.509333pt;}
.y165{bottom:312.781333pt;}
.y54{bottom:314.201333pt;}
.y203{bottom:316.426667pt;}
.y260{bottom:316.442667pt;}
.y1c0{bottom:316.649333pt;}
.yf5{bottom:318.874667pt;}
.y2a6{bottom:319.484000pt;}
.y2c1{bottom:320.260000pt;}
.y2fc{bottom:320.604000pt;}
.yc7{bottom:320.684000pt;}
.y326{bottom:326.647912pt;}
.y9b{bottom:328.050667pt;}
.y23{bottom:328.774667pt;}
.y80{bottom:329.948000pt;}
.y11b{bottom:330.182667pt;}
.y280{bottom:330.193333pt;}
.y164{bottom:331.272000pt;}
.y53{bottom:332.692000pt;}
.y2c0{bottom:334.208000pt;}
.y2fb{bottom:334.552000pt;}
.y25f{bottom:334.773333pt;}
.y202{bottom:334.917333pt;}
.y1bf{bottom:335.140000pt;}
.y22b{bottom:336.233333pt;}
.yf4{bottom:337.365333pt;}
.y141{bottom:340.000000pt;}
.y2a5{bottom:343.208000pt;}
.y21{bottom:345.416000pt;}
.yc6{bottom:345.704000pt;}
.y9a{bottom:346.541333pt;}
.y22{bottom:347.265333pt;}
.y2bf{bottom:348.156000pt;}
.y2fa{bottom:348.498667pt;}
.y27f{bottom:348.684000pt;}
.y163{bottom:349.762667pt;}
.y11a{bottom:351.861333pt;}
.y25e{bottom:353.264000pt;}
.y201{bottom:353.408000pt;}
.y1be{bottom:353.630667pt;}
.y52{bottom:353.830667pt;}
.yf3{bottom:355.856000pt;}
.y325{bottom:357.643752pt;}
.y2be{bottom:362.104000pt;}
.y2f9{bottom:362.446667pt;}
.y99{bottom:365.032000pt;}
.y119{bottom:366.410667pt;}
.y27e{bottom:366.961333pt;}
.y162{bottom:368.253333pt;}
.y140{bottom:369.238667pt;}
.y118{bottom:370.352000pt;}
.y25d{bottom:371.754667pt;}
.y200{bottom:371.898667pt;}
.y1bd{bottom:372.121333pt;}
.y51{bottom:372.321333pt;}
.yc5{bottom:372.417333pt;}
.y324{bottom:373.141672pt;}
.yf2{bottom:374.346667pt;}
.y7f{bottom:374.957333pt;}
.y2bd{bottom:376.050667pt;}
.y22a{bottom:380.889333pt;}
.y98{bottom:383.522667pt;}
.y27d{bottom:385.452000pt;}
.y161{bottom:386.744000pt;}
.y30a{bottom:386.794667pt;}
.y13f{bottom:387.729333pt;}
.y2a4{bottom:388.214667pt;}
.y323{bottom:388.640884pt;}
.y20{bottom:389.478667pt;}
.y2bc{bottom:389.998667pt;}
.yc4{bottom:390.486667pt;}
.y50{bottom:390.812000pt;}
.y7e{bottom:393.448000pt;}
.y25c{bottom:395.317333pt;}
.yf1{bottom:398.069333pt;}
.y229{bottom:399.380000pt;}
.y1e8{bottom:399.634667pt;}
.y195{bottom:399.857333pt;}
.y117{bottom:400.056000pt;}
.y309{bottom:400.742667pt;}
.y97{bottom:402.013333pt;}
.y27c{bottom:403.942667pt;}
.y2bb{bottom:403.946667pt;}
.y322{bottom:404.138804pt;}
.y160{bottom:405.234667pt;}
.y2a3{bottom:406.705333pt;}
.yc3{bottom:408.977333pt;}
.y4f{bottom:409.302667pt;}
.y13e{bottom:411.309333pt;}
.y7d{bottom:411.938667pt;}
.y308{bottom:414.690667pt;}
.y228{bottom:417.870667pt;}
.y2ba{bottom:417.894667pt;}
.y321{bottom:419.636724pt;}
.y96{bottom:420.504000pt;}
.y27b{bottom:422.221333pt;}
.y15f{bottom:423.725333pt;}
.y2a2{bottom:425.196000pt;}
.yc2{bottom:427.468000pt;}
.y4e{bottom:427.793333pt;}
.y307{bottom:428.637333pt;}
.y1e2{bottom:429.745606pt;}
.y116{bottom:429.760000pt;}
.y7c{bottom:430.429333pt;}
.y2b9{bottom:431.841333pt;}
.y320{bottom:435.134644pt;}
.y18c{bottom:435.956642pt;}
.y227{bottom:436.361333pt;}
.y25b{bottom:437.409333pt;}
.y95{bottom:438.994667pt;}
.y27a{bottom:440.712000pt;}
.y15e{bottom:442.216000pt;}
.y306{bottom:442.585333pt;}
.yf0{bottom:442.726667pt;}
.y2a1{bottom:443.686667pt;}
.y2b8{bottom:445.789333pt;}
.y4d{bottom:446.284000pt;}
.y115{bottom:448.250667pt;}
.y7b{bottom:448.920000pt;}
.y2f8{bottom:450.593333pt;}
.y31f{bottom:450.633855pt;}
.y13d{bottom:453.666667pt;}
.yc1{bottom:454.181333pt;}
.y226{bottom:454.852000pt;}
.y25a{bottom:455.900000pt;}
.y305{bottom:456.533333pt;}
.y94{bottom:457.485333pt;}
.y2b7{bottom:459.737333pt;}
.y15d{bottom:460.706667pt;}
.yef{bottom:461.217333pt;}
.y2a0{bottom:462.177333pt;}
.y2f7{bottom:464.541333pt;}
.y4c{bottom:464.774667pt;}
.y31e{bottom:466.133067pt;}
.y114{bottom:466.741333pt;}
.y7a{bottom:467.410667pt;}
.y304{bottom:470.481333pt;}
.y13c{bottom:472.157333pt;}
.y225{bottom:473.342667pt;}
.y259{bottom:474.229333pt;}
.y93{bottom:475.976000pt;}
.y2f6{bottom:478.489333pt;}
.y15c{bottom:479.197333pt;}
.yee{bottom:479.708000pt;}
.y29f{bottom:480.668000pt;}
.yc0{bottom:480.893333pt;}
.y2b6{bottom:483.102667pt;}
.y4b{bottom:483.265333pt;}
.y303{bottom:484.428000pt;}
.y113{bottom:485.232000pt;}
.y79{bottom:485.901333pt;}
.y13b{bottom:490.648000pt;}
.y224{bottom:491.833333pt;}
.y2f5{bottom:492.436000pt;}
.y258{bottom:492.720000pt;}
.y279{bottom:493.497333pt;}
.y31d{bottom:497.128533pt;}
.y15b{bottom:497.688000pt;}
.yed{bottom:498.198667pt;}
.y29e{bottom:499.158667pt;}
.ybf{bottom:499.384000pt;}
.y112{bottom:503.722667pt;}
.y1c{bottom:503.802667pt;}
.y78{bottom:504.392000pt;}
.y4a{bottom:504.404000pt;}
.y92{bottom:505.182667pt;}
.y2f4{bottom:506.384000pt;}
.y13a{bottom:508.994667pt;}
.y223{bottom:510.324000pt;}
.y257{bottom:511.210667pt;}
.yec{bottom:516.689333pt;}
.y278{bottom:517.536000pt;}
.y29d{bottom:517.649333pt;}
.ybe{bottom:517.874667pt;}
.y2f3{bottom:520.332000pt;}
.y15a{bottom:521.410667pt;}
.y111{bottom:522.213333pt;}
.y77{bottom:522.882667pt;}
.y49{bottom:522.894667pt;}
.y139{bottom:527.485333pt;}
.y2b5{bottom:528.112000pt;}
.y256{bottom:529.701333pt;}
.y1b{bottom:531.622667pt;}
.y222{bottom:534.048000pt;}
.y2f2{bottom:534.280000pt;}
.y29c{bottom:536.140000pt;}
.ybd{bottom:536.365333pt;}
.y76{bottom:541.373333pt;}
.y48{bottom:541.385333pt;}
.y277{bottom:541.573333pt;}
.y31c{bottom:543.621962pt;}
.y159{bottom:545.134667pt;}
.y138{bottom:545.976000pt;}
.y2b4{bottom:546.602667pt;}
.y91{bottom:546.856000pt;}
.y1a{bottom:547.662667pt;}
.y255{bottom:548.192000pt;}
.y2f1{bottom:548.226667pt;}
.y29b{bottom:554.630667pt;}
.ybc{bottom:554.856000pt;}
.y31b{bottom:559.121173pt;}
.y110{bottom:559.360000pt;}
.y75{bottom:559.864000pt;}
.y47{bottom:559.876000pt;}
.y2f0{bottom:562.174667pt;}
.y137{bottom:564.466667pt;}
.y2b3{bottom:565.093333pt;}
.y90{bottom:565.346667pt;}
.y276{bottom:565.612000pt;}
.y19{bottom:571.722667pt;}
.y254{bottom:571.756000pt;}
.y29a{bottom:573.121333pt;}
.ybb{bottom:573.346667pt;}
.y31a{bottom:574.619093pt;}
.y2ef{bottom:576.122667pt;}
.y10f{bottom:577.850667pt;}
.y74{bottom:578.354667pt;}
.y46{bottom:578.366667pt;}
.y221{bottom:578.704000pt;}
.yeb{bottom:582.094667pt;}
.y136{bottom:582.957333pt;}
.y2b2{bottom:583.584000pt;}
.y8f{bottom:583.837333pt;}
.y275{bottom:589.649333pt;}
.y2ee{bottom:590.070667pt;}
.y319{bottom:590.117013pt;}
.y299{bottom:591.612000pt;}
.yea{bottom:596.042667pt;}
.yba{bottom:596.650667pt;}
.y73{bottom:596.845333pt;}
.y45{bottom:596.857333pt;}
.y220{bottom:597.194667pt;}
.y135{bottom:601.448000pt;}
.y8e{bottom:602.328000pt;}
.y158{bottom:603.217333pt;}
.y2ed{bottom:604.018667pt;}
.y318{bottom:605.614933pt;}
.y2b1{bottom:607.308000pt;}
.y18{bottom:609.125333pt;}
.ye9{bottom:609.990667pt;}
.y298{bottom:610.102667pt;}
.y274{bottom:613.686667pt;}
.y72{bottom:615.336000pt;}
.y44{bottom:615.348000pt;}
.y21f{bottom:615.685333pt;}
.y2ec{bottom:617.965333pt;}
.y253{bottom:620.868000pt;}
.y317{bottom:621.112853pt;}
.ye8{bottom:623.938667pt;}
.y17{bottom:625.165333pt;}
.y157{bottom:627.786667pt;}
.y297{bottom:628.593333pt;}
.y2eb{bottom:631.913333pt;}
.y10e{bottom:632.201333pt;}
.y71{bottom:633.826667pt;}
.y43{bottom:633.836000pt;}
.y21e{bottom:634.176000pt;}
.yb9{bottom:634.572000pt;}
.y316{bottom:636.610773pt;}
.y273{bottom:637.725333pt;}
.ye7{bottom:637.886667pt;}
.y252{bottom:639.358667pt;}
.y16{bottom:641.205333pt;}
.y2ea{bottom:645.861333pt;}
.y296{bottom:647.084000pt;}
.y134{bottom:650.501333pt;}
.y10d{bottom:650.692000pt;}
.y8d{bottom:651.182667pt;}
.y156{bottom:651.824000pt;}
.ye6{bottom:651.833333pt;}
.y315{bottom:652.108693pt;}
.y70{bottom:652.317333pt;}
.y42{bottom:652.326667pt;}
.y21d{bottom:652.666667pt;}
.yb8{bottom:653.062667pt;}
.y5{bottom:653.810933pt;}
.y15{bottom:657.244000pt;}
.y251{bottom:657.849333pt;}
.y2e9{bottom:659.809333pt;}
.y272{bottom:661.762667pt;}
.y295{bottom:665.574667pt;}
.ye5{bottom:665.781333pt;}
.y314{bottom:667.606613pt;}
.y133{bottom:668.992000pt;}
.y6f{bottom:670.808000pt;}
.y41{bottom:670.817333pt;}
.y21c{bottom:671.157333pt;}
.yb7{bottom:671.553333pt;}
.y10c{bottom:672.370667pt;}
.y14{bottom:673.284000pt;}
.y2e8{bottom:673.756000pt;}
.y155{bottom:675.862667pt;}
.y18b{bottom:676.340000pt;}
.ye4{bottom:679.729333pt;}
.y313{bottom:683.104533pt;}
.y294{bottom:684.065333pt;}
.y271{bottom:685.801333pt;}
.y132{bottom:687.482667pt;}
.y2e7{bottom:687.704000pt;}
.y6e{bottom:689.298667pt;}
.y40{bottom:689.308000pt;}
.y13{bottom:689.324000pt;}
.yb6{bottom:689.622667pt;}
.y21b{bottom:689.648000pt;}
.ye3{bottom:693.677333pt;}
.y18a{bottom:694.830667pt;}
.y154{bottom:699.900000pt;}
.y2e6{bottom:701.652000pt;}
.y10b{bottom:702.076000pt;}
.y293{bottom:702.556000pt;}
.y12{bottom:705.364000pt;}
.ye2{bottom:707.288000pt;}
.y6d{bottom:707.789333pt;}
.y3f{bottom:707.794667pt;}
.yb5{bottom:708.113333pt;}
.y21a{bottom:708.138667pt;}
.y270{bottom:709.838667pt;}
.y4{bottom:713.453544pt;}
.y312{bottom:714.100000pt;}
.y126{bottom:715.218667pt;}
.y2e5{bottom:715.600000pt;}
.ye1{bottom:716.014667pt;}
.y292{bottom:721.046667pt;}
.y11{bottom:721.404000pt;}
.y178{bottom:722.566667pt;}
.y153{bottom:723.937333pt;}
.y10a{bottom:725.189333pt;}
.y6c{bottom:726.280000pt;}
.y3e{bottom:726.285333pt;}
.yb4{bottom:726.604000pt;}
.y219{bottom:726.629333pt;}
.y2e4{bottom:729.548000pt;}
.y26f{bottom:733.876000pt;}
.y10{bottom:737.444000pt;}
.ye0{bottom:738.176000pt;}
.y291{bottom:739.537333pt;}
.y2e3{bottom:743.494667pt;}
.y6b{bottom:744.770667pt;}
.y3d{bottom:744.776000pt;}
.yb3{bottom:745.094667pt;}
.y218{bottom:745.120000pt;}
.y3{bottom:745.741067pt;}
.y152{bottom:748.506667pt;}
.ydf{bottom:752.124000pt;}
.y171{bottom:753.291778pt;}
.yf{bottom:753.482667pt;}
.y109{bottom:754.893333pt;}
.y2e2{bottom:757.442667pt;}
.y26e{bottom:757.914667pt;}
.y290{bottom:758.028000pt;}
.y1cc{bottom:759.402291pt;}
.y311{bottom:760.594827pt;}
.y6a{bottom:763.261333pt;}
.y3c{bottom:763.266667pt;}
.yb2{bottom:763.585333pt;}
.y217{bottom:763.610667pt;}
.yde{bottom:766.072000pt;}
.ye{bottom:769.522667pt;}
.y2e1{bottom:771.390667pt;}
.y151{bottom:772.545333pt;}
.y108{bottom:773.384000pt;}
.y28f{bottom:776.518667pt;}
.ydd{bottom:780.018667pt;}
.y235{bottom:781.672642pt;}
.y69{bottom:781.752000pt;}
.y3b{bottom:781.757333pt;}
.yb1{bottom:782.076000pt;}
.y2e0{bottom:785.338667pt;}
.yd{bottom:785.562667pt;}
.y26d{bottom:785.672000pt;}
.y216{bottom:787.334667pt;}
.y310{bottom:791.590667pt;}
.ydc{bottom:793.966667pt;}
.y28e{bottom:795.009333pt;}
.y150{bottom:796.582667pt;}
.y2df{bottom:799.285333pt;}
.y68{bottom:800.242667pt;}
.y3a{bottom:800.248000pt;}
.yc{bottom:801.602667pt;}
.yb0{bottom:802.817333pt;}
.y107{bottom:803.088000pt;}
.y30f{bottom:807.088587pt;}
.ydb{bottom:807.914667pt;}
.y26c{bottom:810.241333pt;}
.y2de{bottom:813.233333pt;}
.y28d{bottom:813.500000pt;}
.yb{bottom:817.642667pt;}
.yad{bottom:818.698667pt;}
.y67{bottom:818.733333pt;}
.y39{bottom:818.738667pt;}
.y14f{bottom:821.152000pt;}
.yda{bottom:821.862667pt;}
.y30e{bottom:822.586507pt;}
.y2dd{bottom:827.181333pt;}
.yaf{bottom:831.982667pt;}
.y215{bottom:831.990667pt;}
.y106{bottom:832.793333pt;}
.y26b{bottom:834.810667pt;}
.yd9{bottom:835.810667pt;}
.yae{bottom:835.966667pt;}
.y66{bottom:837.224000pt;}
.y38{bottom:837.226667pt;}
.y30d{bottom:838.084427pt;}
.y2dc{bottom:841.129333pt;}
.ya{bottom:841.701333pt;}
.y14e{bottom:845.189333pt;}
.yd8{bottom:849.757333pt;}
.y214{bottom:850.481333pt;}
.y30c{bottom:853.582347pt;}
.y2db{bottom:855.077333pt;}
.y105{bottom:855.166667pt;}
.y65{bottom:855.714667pt;}
.y37{bottom:855.717333pt;}
.yac{bottom:857.274667pt;}
.yd7{bottom:863.705333pt;}
.y104{bottom:864.125333pt;}
.y213{bottom:868.972000pt;}
.y2da{bottom:869.024000pt;}
.y2{bottom:869.080027pt;}
.y30b{bottom:869.080267pt;}
.y14d{bottom:872.946667pt;}
.y64{bottom:874.205333pt;}
.y36{bottom:874.208000pt;}
.yab{bottom:875.765333pt;}
.yd6{bottom:877.653333pt;}
.y2d9{bottom:882.972000pt;}
.y9{bottom:885.937333pt;}
.y212{bottom:887.462667pt;}
.y103{bottom:892.530667pt;}
.y63{bottom:892.696000pt;}
.y35{bottom:892.698667pt;}
.y2d8{bottom:896.920000pt;}
.y1{bottom:900.075867pt;}
.yaa{bottom:902.581333pt;}
.y211{bottom:905.953333pt;}
.y2d7{bottom:910.868000pt;}
.y102{bottom:911.021333pt;}
.y62{bottom:911.186667pt;}
.y34{bottom:911.189333pt;}
.ya9{bottom:911.540000pt;}
.y210{bottom:924.444000pt;}
.y8{bottom:924.458667pt;}
.y2d6{bottom:924.814667pt;}
.y61{bottom:929.677333pt;}
.y33{bottom:929.680000pt;}
.y2d5{bottom:938.762667pt;}
.y20f{bottom:942.934667pt;}
.y32{bottom:948.168000pt;}
.y2d4{bottom:952.710667pt;}
.y7{bottom:961.653333pt;}
.y31{bottom:966.658667pt;}
.y6{bottom:1009.149333pt;}
.h16{height:2.125355pt;}
.h49{height:14.957084pt;}
.h44{height:30.037913pt;}
.h2b{height:30.650595pt;}
.h5{height:31.497835pt;}
.h15{height:31.880400pt;}
.ha{height:34.813542pt;}
.h50{height:34.930876pt;}
.hd{height:35.052646pt;}
.h8{height:35.435213pt;}
.h51{height:35.851855pt;}
.h1c{height:35.865600pt;}
.h47{height:36.899239pt;}
.h30{height:37.628072pt;}
.h1a{height:37.956651pt;}
.h1{height:38.744800pt;}
.h32{height:40.316006pt;}
.h3e{height:41.138330pt;}
.h9{height:41.205464pt;}
.h46{height:41.354073pt;}
.h2e{height:42.197570pt;}
.h1d{height:43.832021pt;}
.h20{height:45.907968pt;}
.h24{height:45.957375pt;}
.h37{height:46.219258pt;}
.hc{height:46.418057pt;}
.h3{height:46.494000pt;}
.h4f{height:46.578057pt;}
.he{height:46.736862pt;}
.h3f{height:47.161990pt;}
.h10{height:47.246950pt;}
.h13{height:47.820800pt;}
.h3a{height:48.199224pt;}
.h41{height:49.182342pt;}
.h4a{height:49.644200pt;}
.h4b{height:49.647160pt;}
.h4d{height:49.657548pt;}
.h4c{height:49.661344pt;}
.h26{height:53.103576pt;}
.h14{height:53.108909pt;}
.h3b{height:53.517035pt;}
.h27{height:54.081242pt;}
.h12{height:54.086575pt;}
.h42{height:54.608620pt;}
.hf{height:55.016400pt;}
.h11{height:55.021733pt;}
.h7{height:55.121310pt;}
.h23{height:56.170125pt;}
.h17{height:56.292909pt;}
.h25{height:58.205733pt;}
.h4e{height:59.336400pt;}
.h39{height:60.814813pt;}
.h2f{height:62.055250pt;}
.h1b{height:63.762688pt;}
.h2a{height:65.921405pt;}
.h33{height:66.135379pt;}
.h38{height:66.972597pt;}
.h40{height:68.338635pt;}
.h21{height:70.781733pt;}
.h1e{height:75.720021pt;}
.h2{height:80.357200pt;}
.h19{height:82.252723pt;}
.h35{height:91.954752pt;}
.h6{height:94.493506pt;}
.h18{height:95.640021pt;}
.h1f{height:95.645355pt;}
.h3c{height:117.610858pt;}
.h2c{height:123.420916pt;}
.hb{height:131.146385pt;}
.h34{height:134.357299pt;}
.h45{height:136.930583pt;}
.h29{height:148.672151pt;}
.h48{height:189.360457pt;}
.h31{height:207.400468pt;}
.h3d{height:211.630807pt;}
.h43{height:213.388836pt;}
.h28{height:217.741321pt;}
.h36{height:251.896320pt;}
.h2d{height:257.034240pt;}
.h22{height:264.384000pt;}
.h4{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w6{width:289.068520pt;}
.w9{width:290.689519pt;}
.w8{width:294.964640pt;}
.wa{width:296.273611pt;}
.w4{width:296.618703pt;}
.w3{width:308.448000pt;}
.w7{width:335.861760pt;}
.w5{width:342.712320pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.x41{left:-2.844036pt;}
.x0{left:0.000000pt;}
.x63{left:11.743500pt;}
.x76{left:14.969865pt;}
.x34{left:16.279200pt;}
.x31{left:18.482400pt;}
.x64{left:26.280017pt;}
.x47{left:30.493067pt;}
.x70{left:33.836892pt;}
.x32{left:35.918280pt;}
.x6c{left:37.466310pt;}
.x65{left:40.816533pt;}
.x4c{left:43.930252pt;}
.x53{left:45.218888pt;}
.x5f{left:46.141216pt;}
.x55{left:54.338468pt;}
.x66{left:55.347219pt;}
.x6d{left:61.753666pt;}
.x11{left:64.228000pt;}
.xe{left:65.744000pt;}
.xd{left:67.544000pt;}
.x52{left:69.340000pt;}
.xc{left:71.033333pt;}
.x24{left:72.249333pt;}
.x77{left:74.944000pt;}
.x4{left:76.138667pt;}
.x19{left:77.234667pt;}
.x12{left:79.936000pt;}
.x10{left:81.220000pt;}
.x23{left:82.756000pt;}
.x61{left:83.887170pt;}
.x4d{left:89.580629pt;}
.x13{left:92.998667pt;}
.x35{left:95.673960pt;}
.x14{left:97.160000pt;}
.x4e{left:100.997596pt;}
.x15{left:102.901333pt;}
.x71{left:104.205965pt;}
.xf{left:105.140000pt;}
.x62{left:106.115697pt;}
.x4b{left:107.736696pt;}
.x38{left:109.650667pt;}
.x39{left:113.285333pt;}
.x5c{left:114.749129pt;}
.x37{left:117.254667pt;}
.x3f{left:120.177333pt;}
.x3b{left:121.238667pt;}
.x3d{left:124.793333pt;}
.x9{left:126.293333pt;}
.x3a{left:127.646667pt;}
.x67{left:129.073540pt;}
.x48{left:131.706249pt;}
.x6{left:133.190667pt;}
.x3c{left:134.405333pt;}
.x72{left:136.721986pt;}
.x3e{left:144.528000pt;}
.x57{left:146.647973pt;}
.x54{left:150.741289pt;}
.x8{left:154.188000pt;}
.x4f{left:158.059110pt;}
.x60{left:161.098590pt;}
.x33{left:170.962200pt;}
.x1{left:173.409200pt;}
.x25{left:175.270667pt;}
.x73{left:176.461146pt;}
.x74{left:179.215934pt;}
.x2{left:180.524800pt;}
.x26{left:187.121333pt;}
.x58{left:192.298350pt;}
.x78{left:193.880000pt;}
.x2a{left:195.840000pt;}
.x42{left:198.856444pt;}
.x6e{left:207.459951pt;}
.x43{left:210.720478pt;}
.x50{left:215.126454pt;}
.x44{left:222.584512pt;}
.x51{left:226.537591pt;}
.x45{left:234.448546pt;}
.x46{left:236.637333pt;}
.x59{left:237.948727pt;}
.x5d{left:244.991710pt;}
.x6a{left:246.636818pt;}
.x2f{left:249.776000pt;}
.x7a{left:251.057333pt;}
.x30{left:253.773333pt;}
.x7b{left:254.692000pt;}
.x6b{left:256.246196pt;}
.x49{left:258.938197pt;}
.x5a{left:260.776831pt;}
.x7c{left:263.164000pt;}
.x75{left:267.018116pt;}
.x7e{left:268.228000pt;}
.x68{left:270.205451pt;}
.x20{left:272.004000pt;}
.x1f{left:273.425333pt;}
.x5e{left:274.657745pt;}
.x4a{left:275.716821pt;}
.x6f{left:280.316068pt;}
.x7d{left:286.021333pt;}
.x1a{left:298.561333pt;}
.x36{left:315.214667pt;}
.x21{left:322.594667pt;}
.x27{left:323.870667pt;}
.x1c{left:325.073333pt;}
.x2d{left:332.685333pt;}
.x5{left:334.462667pt;}
.x29{left:336.670667pt;}
.x2b{left:340.140000pt;}
.x16{left:346.289333pt;}
.x2e{left:351.606667pt;}
.x2c{left:360.264000pt;}
.x1b{left:371.041333pt;}
.xa{left:373.229333pt;}
.x22{left:377.054667pt;}
.x28{left:380.964000pt;}
.x17{left:382.312000pt;}
.x7{left:383.749333pt;}
.xb{left:402.200000pt;}
.x18{left:406.246667pt;}
.x1d{left:407.318667pt;}
.x5b{left:410.784000pt;}
.x1e{left:433.893333pt;}
.x7f{left:438.338667pt;}
.x69{left:447.559697pt;}
.x56{left:449.180696pt;}
.x79{left:502.630667pt;}
.x40{left:738.892000pt;}
.x3{left:744.800000pt;}
}




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